composer.lock 366 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354
  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": "9464531324876b68f8d73156c7d11cf3",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  89. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.10.28",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6.4 || ^7",
  104. "vimeo/psalm": "^4.30 || ^5.14"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  151. },
  152. "time": "2024-09-05T10:17:24+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  459. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.3"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2024-07-20T21:45:45+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.9.2",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  521. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  527. "guzzlehttp/psr7": "^2.7.0",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "guzzle/client-integration-tests": "3.0.2",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-07-24T11:22:20+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.4",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  647. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2024-10-17T10:06:22+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.7.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  730. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "0.9.0",
  746. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2024-07-18T11:15:46+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.43",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  846. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0 || ^2.0",
  857. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-10-09T10:22:39+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.42",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  917. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-09-25T02:54:12+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.42",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  982. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-09-25T02:54:12+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.44",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1046. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-10-23T10:12:23+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.42",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1111. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  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-09-25T02:54:12+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.42",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1182. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-09-25T02:54:12+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.42",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1240. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0 || ^2.0",
  1249. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-09-25T02:54:12+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.42",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1317. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-09-25T02:54:12+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.42",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1381. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-09-25T02:54:12+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.42",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1458. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-09-25T02:54:12+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.42",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1524. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "type": "library",
  1532. "extra": {
  1533. "branch-alias": {
  1534. "dev-master": "3.1-dev"
  1535. },
  1536. "hyperf": {
  1537. "config": "Hyperf\\Consul\\ConfigProvider"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Hyperf\\Consul\\": "src/"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "description": "A Consul Client for Hyperf.",
  1550. "homepage": "https://hyperf.io",
  1551. "keywords": [
  1552. "consul",
  1553. "consul-client",
  1554. "hyperf",
  1555. "php",
  1556. "swoole"
  1557. ],
  1558. "support": {
  1559. "docs": "https://hyperf.wiki",
  1560. "issues": "https://github.com/hyperf/hyperf/issues",
  1561. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1562. "source": "https://github.com/hyperf/hyperf"
  1563. },
  1564. "funding": [
  1565. {
  1566. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1567. "type": "custom"
  1568. },
  1569. {
  1570. "url": "https://opencollective.com/hyperf",
  1571. "type": "open_collective"
  1572. }
  1573. ],
  1574. "time": "2024-09-25T02:54:12+00:00"
  1575. },
  1576. {
  1577. "name": "hyperf/context",
  1578. "version": "v3.1.42",
  1579. "source": {
  1580. "type": "git",
  1581. "url": "https://github.com/hyperf/context.git",
  1582. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1583. },
  1584. "dist": {
  1585. "type": "zip",
  1586. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1587. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1588. "shasum": ""
  1589. },
  1590. "require": {
  1591. "hyperf/engine": "^2.0",
  1592. "php": ">=8.1"
  1593. },
  1594. "suggest": {
  1595. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "3.1-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-4": {
  1605. "Hyperf\\Context\\": "src/"
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "MIT"
  1611. ],
  1612. "description": "A coroutine/application context library.",
  1613. "homepage": "https://hyperf.io",
  1614. "keywords": [
  1615. "Context",
  1616. "hyperf",
  1617. "php",
  1618. "swoole"
  1619. ],
  1620. "support": {
  1621. "docs": "https://hyperf.wiki",
  1622. "issues": "https://github.com/hyperf/hyperf/issues",
  1623. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1624. "source": "https://github.com/hyperf/hyperf"
  1625. },
  1626. "funding": [
  1627. {
  1628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1629. "type": "custom"
  1630. },
  1631. {
  1632. "url": "https://opencollective.com/hyperf",
  1633. "type": "open_collective"
  1634. }
  1635. ],
  1636. "time": "2024-09-25T02:54:12+00:00"
  1637. },
  1638. {
  1639. "name": "hyperf/contract",
  1640. "version": "v3.1.42",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/hyperf/contract.git",
  1644. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1649. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": ">=8.1"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-master": "3.1-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Hyperf\\Contract\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "description": "The contracts of Hyperf.",
  1671. "homepage": "https://hyperf.io",
  1672. "keywords": [
  1673. "hyperf",
  1674. "php",
  1675. "swoole"
  1676. ],
  1677. "support": {
  1678. "docs": "https://hyperf.wiki",
  1679. "issues": "https://github.com/hyperf/hyperf/issues",
  1680. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1681. "source": "https://github.com/hyperf/hyperf"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1686. "type": "custom"
  1687. },
  1688. {
  1689. "url": "https://opencollective.com/hyperf",
  1690. "type": "open_collective"
  1691. }
  1692. ],
  1693. "time": "2024-09-25T02:54:12+00:00"
  1694. },
  1695. {
  1696. "name": "hyperf/coordinator",
  1697. "version": "v3.1.42",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/hyperf/coordinator.git",
  1701. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1706. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "hyperf/engine": "^2.0",
  1711. "php": ">=8.1"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "3.1-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "files": [
  1721. "src/Functions.php"
  1722. ],
  1723. "psr-4": {
  1724. "Hyperf\\Coordinator\\": "src/"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "description": "Hyperf Coordinator",
  1732. "homepage": "https://hyperf.io",
  1733. "keywords": [
  1734. "Coordinator",
  1735. "hyperf",
  1736. "php",
  1737. "swoole"
  1738. ],
  1739. "support": {
  1740. "docs": "https://hyperf.wiki",
  1741. "issues": "https://github.com/hyperf/hyperf/issues",
  1742. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1743. "source": "https://github.com/hyperf/hyperf"
  1744. },
  1745. "funding": [
  1746. {
  1747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1748. "type": "custom"
  1749. },
  1750. {
  1751. "url": "https://opencollective.com/hyperf",
  1752. "type": "open_collective"
  1753. }
  1754. ],
  1755. "time": "2024-09-25T02:54:12+00:00"
  1756. },
  1757. {
  1758. "name": "hyperf/coroutine",
  1759. "version": "v3.1.42",
  1760. "source": {
  1761. "type": "git",
  1762. "url": "https://github.com/hyperf/coroutine.git",
  1763. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1764. },
  1765. "dist": {
  1766. "type": "zip",
  1767. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1768. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1769. "shasum": ""
  1770. },
  1771. "require": {
  1772. "hyperf/context": "~3.1.0",
  1773. "hyperf/contract": "~3.1.0",
  1774. "hyperf/engine": "^2.0",
  1775. "php": ">=8.1"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "3.1-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "files": [
  1785. "src/Functions.php"
  1786. ],
  1787. "psr-4": {
  1788. "Hyperf\\Coroutine\\": "src/"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "description": "Hyperf Coroutine",
  1796. "homepage": "https://hyperf.io",
  1797. "keywords": [
  1798. "coroutine",
  1799. "hyperf",
  1800. "php",
  1801. "swoole"
  1802. ],
  1803. "support": {
  1804. "docs": "https://hyperf.wiki",
  1805. "issues": "https://github.com/hyperf/hyperf/issues",
  1806. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1807. "source": "https://github.com/hyperf/hyperf"
  1808. },
  1809. "funding": [
  1810. {
  1811. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1812. "type": "custom"
  1813. },
  1814. {
  1815. "url": "https://opencollective.com/hyperf",
  1816. "type": "open_collective"
  1817. }
  1818. ],
  1819. "time": "2024-09-25T02:54:12+00:00"
  1820. },
  1821. {
  1822. "name": "hyperf/crontab",
  1823. "version": "v3.1.42",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://github.com/hyperf/crontab.git",
  1827. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7"
  1828. },
  1829. "dist": {
  1830. "type": "zip",
  1831. "url": "https://api.github.com/repos/hyperf/crontab/zipball/be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  1832. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  1833. "shasum": ""
  1834. },
  1835. "require": {
  1836. "hyperf/conditionable": "~3.1.0",
  1837. "hyperf/framework": "~3.1.0",
  1838. "hyperf/support": "~3.1.0",
  1839. "hyperf/tappable": "~3.1.0",
  1840. "hyperf/utils": "~3.1.0",
  1841. "nesbot/carbon": "^2.0",
  1842. "php": ">=8.1"
  1843. },
  1844. "suggest": {
  1845. "hyperf/command": "Required to use command trigger.",
  1846. "hyperf/process": "Auto register the Crontab process for server."
  1847. },
  1848. "type": "library",
  1849. "extra": {
  1850. "branch-alias": {
  1851. "dev-master": "3.1-dev"
  1852. },
  1853. "hyperf": {
  1854. "config": "Hyperf\\Crontab\\ConfigProvider"
  1855. }
  1856. },
  1857. "autoload": {
  1858. "psr-4": {
  1859. "Hyperf\\Crontab\\": "src/"
  1860. }
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "MIT"
  1865. ],
  1866. "description": "A crontab component for Hyperf.",
  1867. "homepage": "https://hyperf.io",
  1868. "keywords": [
  1869. "crontab",
  1870. "hyperf",
  1871. "php",
  1872. "swoole"
  1873. ],
  1874. "support": {
  1875. "docs": "https://hyperf.wiki",
  1876. "issues": "https://github.com/hyperf/hyperf/issues",
  1877. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1878. "source": "https://github.com/hyperf/hyperf"
  1879. },
  1880. "funding": [
  1881. {
  1882. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1883. "type": "custom"
  1884. },
  1885. {
  1886. "url": "https://opencollective.com/hyperf",
  1887. "type": "open_collective"
  1888. }
  1889. ],
  1890. "time": "2024-09-25T02:54:12+00:00"
  1891. },
  1892. {
  1893. "name": "hyperf/database",
  1894. "version": "v3.1.44",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/hyperf/database.git",
  1898. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1903. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "hyperf/code-parser": "~3.1.0",
  1908. "hyperf/collection": "~3.1.23",
  1909. "hyperf/conditionable": "~3.1.0",
  1910. "hyperf/macroable": "~3.1.0",
  1911. "hyperf/support": "~3.1.0",
  1912. "hyperf/tappable": "~3.1.0",
  1913. "hyperf/utils": "~3.1.0",
  1914. "nesbot/carbon": "^2.0",
  1915. "php": ">=8.1",
  1916. "psr/container": "^1.0 || ^2.0",
  1917. "psr/event-dispatcher": "^1.0"
  1918. },
  1919. "suggest": {
  1920. "doctrine/dbal": "Required to rename columns (^3.0).",
  1921. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1922. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1923. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1924. },
  1925. "type": "library",
  1926. "extra": {
  1927. "branch-alias": {
  1928. "dev-master": "3.1-dev"
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Hyperf\\Database\\": "src/"
  1934. }
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "description": "A flexible database library.",
  1941. "homepage": "https://hyperf.io",
  1942. "keywords": [
  1943. "database",
  1944. "hyperf",
  1945. "php"
  1946. ],
  1947. "support": {
  1948. "docs": "https://hyperf.wiki",
  1949. "issues": "https://github.com/hyperf/hyperf/issues",
  1950. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1951. "source": "https://github.com/hyperf/hyperf"
  1952. },
  1953. "funding": [
  1954. {
  1955. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1956. "type": "custom"
  1957. },
  1958. {
  1959. "url": "https://opencollective.com/hyperf",
  1960. "type": "open_collective"
  1961. }
  1962. ],
  1963. "time": "2024-10-11T10:25:57+00:00"
  1964. },
  1965. {
  1966. "name": "hyperf/db-connection",
  1967. "version": "v3.1.44",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/hyperf/db-connection.git",
  1971. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1976. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1977. "shasum": ""
  1978. },
  1979. "require": {
  1980. "hyperf/database": "~3.1.0",
  1981. "hyperf/di": "~3.1.0",
  1982. "hyperf/framework": "~3.1.0",
  1983. "hyperf/model-listener": "~3.1.0",
  1984. "hyperf/pool": "~3.1.0",
  1985. "hyperf/support": "~3.1.0",
  1986. "hyperf/utils": "~3.1.0",
  1987. "php": ">=8.1",
  1988. "psr/container": "^1.0 || ^2.0"
  1989. },
  1990. "type": "library",
  1991. "extra": {
  1992. "branch-alias": {
  1993. "dev-master": "3.1-dev"
  1994. },
  1995. "hyperf": {
  1996. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1997. }
  1998. },
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Hyperf\\DbConnection\\": "src/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "description": "A hyperf db connection handler for hyperf/database.",
  2009. "homepage": "https://hyperf.io",
  2010. "keywords": [
  2011. "Connection",
  2012. "database",
  2013. "hyperf",
  2014. "php"
  2015. ],
  2016. "support": {
  2017. "docs": "https://hyperf.wiki",
  2018. "issues": "https://github.com/hyperf/hyperf/issues",
  2019. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2020. "source": "https://github.com/hyperf/hyperf"
  2021. },
  2022. "funding": [
  2023. {
  2024. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2025. "type": "custom"
  2026. },
  2027. {
  2028. "url": "https://opencollective.com/hyperf",
  2029. "type": "open_collective"
  2030. }
  2031. ],
  2032. "time": "2024-10-11T08:58:16+00:00"
  2033. },
  2034. {
  2035. "name": "hyperf/di",
  2036. "version": "v3.1.42",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/hyperf/di.git",
  2040. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2045. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "doctrine/instantiator": "^1.0",
  2050. "hyperf/code-parser": "~3.1.0",
  2051. "hyperf/pipeline": "~3.1.0",
  2052. "hyperf/stdlib": "~3.1.0",
  2053. "hyperf/support": "~3.1.0",
  2054. "nikic/php-parser": "^4.1",
  2055. "php": ">=8.1",
  2056. "php-di/phpdoc-reader": "^2.2",
  2057. "psr/container": "^1.0 || ^2.0",
  2058. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2059. "vlucas/phpdotenv": "^5.0"
  2060. },
  2061. "suggest": {
  2062. "ext-pcntl": "Required to scan annotations.",
  2063. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2064. },
  2065. "type": "library",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "3.1-dev"
  2069. },
  2070. "hyperf": {
  2071. "config": "Hyperf\\Di\\ConfigProvider"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "psr-4": {
  2076. "Hyperf\\Di\\": "src/"
  2077. }
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "MIT"
  2082. ],
  2083. "description": "A DI for Hyperf.",
  2084. "homepage": "https://hyperf.io",
  2085. "keywords": [
  2086. "annotation",
  2087. "di",
  2088. "hyperf",
  2089. "php",
  2090. "swoole"
  2091. ],
  2092. "support": {
  2093. "docs": "https://hyperf.wiki",
  2094. "issues": "https://github.com/hyperf/hyperf/issues",
  2095. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2096. "source": "https://github.com/hyperf/hyperf"
  2097. },
  2098. "funding": [
  2099. {
  2100. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2101. "type": "custom"
  2102. },
  2103. {
  2104. "url": "https://opencollective.com/hyperf",
  2105. "type": "open_collective"
  2106. }
  2107. ],
  2108. "time": "2024-09-25T02:54:12+00:00"
  2109. },
  2110. {
  2111. "name": "hyperf/dispatcher",
  2112. "version": "v3.1.42",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://github.com/hyperf/dispatcher.git",
  2116. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2121. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2122. "shasum": ""
  2123. },
  2124. "require": {
  2125. "hyperf/contract": "~3.1.0",
  2126. "php": ">=8.1",
  2127. "psr/container": "^1.0 || ^2.0",
  2128. "psr/http-message": "^1.0 || ^2.0",
  2129. "psr/http-server-middleware": "^1.0"
  2130. },
  2131. "type": "library",
  2132. "extra": {
  2133. "branch-alias": {
  2134. "dev-master": "3.1-dev"
  2135. },
  2136. "hyperf": {
  2137. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2138. }
  2139. },
  2140. "autoload": {
  2141. "psr-4": {
  2142. "Hyperf\\Dispatcher\\": "src/"
  2143. }
  2144. },
  2145. "notification-url": "https://packagist.org/downloads/",
  2146. "license": [
  2147. "MIT"
  2148. ],
  2149. "description": "A HTTP Server for Hyperf.",
  2150. "homepage": "https://hyperf.io",
  2151. "keywords": [
  2152. "dispatcher",
  2153. "filter",
  2154. "hyperf",
  2155. "middleware",
  2156. "php",
  2157. "swoole"
  2158. ],
  2159. "support": {
  2160. "docs": "https://hyperf.wiki",
  2161. "issues": "https://github.com/hyperf/hyperf/issues",
  2162. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2163. "source": "https://github.com/hyperf/hyperf"
  2164. },
  2165. "funding": [
  2166. {
  2167. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2168. "type": "custom"
  2169. },
  2170. {
  2171. "url": "https://opencollective.com/hyperf",
  2172. "type": "open_collective"
  2173. }
  2174. ],
  2175. "time": "2024-09-25T02:54:12+00:00"
  2176. },
  2177. {
  2178. "name": "hyperf/engine",
  2179. "version": "v2.11.0",
  2180. "source": {
  2181. "type": "git",
  2182. "url": "https://github.com/hyperf/engine.git",
  2183. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2184. },
  2185. "dist": {
  2186. "type": "zip",
  2187. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2188. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2189. "shasum": ""
  2190. },
  2191. "require": {
  2192. "hyperf/engine-contract": "~1.10.0",
  2193. "php": ">=8.0"
  2194. },
  2195. "conflict": {
  2196. "ext-swoole": "<5.0"
  2197. },
  2198. "require-dev": {
  2199. "friendsofphp/php-cs-fixer": "^3.0",
  2200. "hyperf/guzzle": "^3.0",
  2201. "hyperf/http-message": "^3.0",
  2202. "mockery/mockery": "^1.5",
  2203. "phpstan/phpstan": "^1.0",
  2204. "phpunit/phpunit": "^9.4",
  2205. "swoole/ide-helper": "5.*"
  2206. },
  2207. "suggest": {
  2208. "ext-sockets": "*",
  2209. "ext-swoole": ">=5.0",
  2210. "hyperf/http-message": "Required to use ResponseEmitter.",
  2211. "psr/http-message": "Required to use WebSocket Frame."
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "2.11-dev"
  2217. },
  2218. "hyperf": {
  2219. "config": "Hyperf\\Engine\\ConfigProvider"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "files": [
  2224. "src/Functions.php"
  2225. ],
  2226. "psr-4": {
  2227. "Hyperf\\Engine\\": "src/"
  2228. }
  2229. },
  2230. "notification-url": "https://packagist.org/downloads/",
  2231. "license": [
  2232. "MIT"
  2233. ],
  2234. "description": "Coroutine engine provided by swoole.",
  2235. "keywords": [
  2236. "engine",
  2237. "hyperf",
  2238. "php",
  2239. "swoole"
  2240. ],
  2241. "support": {
  2242. "issues": "https://github.com/hyperf/engine/issues",
  2243. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2244. },
  2245. "funding": [
  2246. {
  2247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2248. "type": "custom"
  2249. },
  2250. {
  2251. "url": "https://opencollective.com/hyperf",
  2252. "type": "open_collective"
  2253. }
  2254. ],
  2255. "time": "2024-04-17T13:36:28+00:00"
  2256. },
  2257. {
  2258. "name": "hyperf/engine-contract",
  2259. "version": "v1.10.1",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/hyperf/engine-contract.git",
  2263. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2268. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "php": ">=8.0"
  2273. },
  2274. "require-dev": {
  2275. "friendsofphp/php-cs-fixer": "^3.0",
  2276. "mockery/mockery": "^1.0",
  2277. "phpstan/phpstan": "^1.0",
  2278. "phpunit/phpunit": ">=7.0",
  2279. "psr/http-message": "^1.0",
  2280. "swoole/ide-helper": "^4.5"
  2281. },
  2282. "suggest": {
  2283. "psr/http-message": "Required to use WebSocket Frame."
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "1.9-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Hyperf\\Engine\\Contract\\": "src/"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "description": "Contract for Coroutine Engine",
  2301. "keywords": [
  2302. "contract",
  2303. "coroutine",
  2304. "engine",
  2305. "hyperf",
  2306. "php"
  2307. ],
  2308. "support": {
  2309. "issues": "https://github.com/hyperf/engine-contract/issues",
  2310. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2311. },
  2312. "funding": [
  2313. {
  2314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2315. "type": "custom"
  2316. },
  2317. {
  2318. "url": "https://opencollective.com/hyperf",
  2319. "type": "open_collective"
  2320. }
  2321. ],
  2322. "time": "2024-04-17T13:34:51+00:00"
  2323. },
  2324. {
  2325. "name": "hyperf/event",
  2326. "version": "v3.1.42",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/hyperf/event.git",
  2330. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2335. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2336. "shasum": ""
  2337. },
  2338. "require": {
  2339. "hyperf/contract": "~3.1.0",
  2340. "hyperf/stdlib": "~3.1.0",
  2341. "php": ">=8.1",
  2342. "psr/event-dispatcher": "^1.0"
  2343. },
  2344. "suggest": {
  2345. "hyperf/di": "Required to use annotatioins."
  2346. },
  2347. "type": "library",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-master": "3.1-dev"
  2351. },
  2352. "hyperf": {
  2353. "config": "Hyperf\\Event\\ConfigProvider"
  2354. }
  2355. },
  2356. "autoload": {
  2357. "psr-4": {
  2358. "Hyperf\\Event\\": "src/"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "description": "an event manager that implements PSR-14.",
  2366. "homepage": "https://hyperf.io",
  2367. "keywords": [
  2368. "event",
  2369. "hyperf",
  2370. "php",
  2371. "swoole"
  2372. ],
  2373. "support": {
  2374. "docs": "https://hyperf.wiki",
  2375. "issues": "https://github.com/hyperf/hyperf/issues",
  2376. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2377. "source": "https://github.com/hyperf/hyperf"
  2378. },
  2379. "funding": [
  2380. {
  2381. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2382. "type": "custom"
  2383. },
  2384. {
  2385. "url": "https://opencollective.com/hyperf",
  2386. "type": "open_collective"
  2387. }
  2388. ],
  2389. "time": "2024-09-25T02:54:12+00:00"
  2390. },
  2391. {
  2392. "name": "hyperf/exception-handler",
  2393. "version": "v3.1.42",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://github.com/hyperf/exception-handler.git",
  2397. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2402. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2403. "shasum": ""
  2404. },
  2405. "require": {
  2406. "hyperf/context": "~3.1.0",
  2407. "hyperf/contract": "~3.1.0",
  2408. "hyperf/dispatcher": "~3.1.0",
  2409. "hyperf/http-message": "~3.1.0",
  2410. "hyperf/stdlib": "~3.1.0",
  2411. "hyperf/support": "~3.1.0",
  2412. "php": ">=8.1",
  2413. "psr/container": "^1.0 || ^2.0",
  2414. "psr/http-message": "^1.0 || ^2.0",
  2415. "swow/psr7-plus": "^1.0"
  2416. },
  2417. "suggest": {
  2418. "hyperf/di": "Required to use #[ExceptionHandler]",
  2419. "hyperf/event": "Required to use listeners",
  2420. "hyperf/framework": "Required to use listeners",
  2421. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2422. },
  2423. "type": "library",
  2424. "extra": {
  2425. "branch-alias": {
  2426. "dev-master": "3.1-dev"
  2427. },
  2428. "hyperf": {
  2429. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2430. }
  2431. },
  2432. "autoload": {
  2433. "psr-4": {
  2434. "Hyperf\\ExceptionHandler\\": "src/"
  2435. }
  2436. },
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "description": "Exception handler for hyperf",
  2442. "homepage": "https://hyperf.io",
  2443. "keywords": [
  2444. "exception-handler",
  2445. "php",
  2446. "swoole"
  2447. ],
  2448. "support": {
  2449. "docs": "https://hyperf.wiki",
  2450. "issues": "https://github.com/hyperf/hyperf/issues",
  2451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2452. "source": "https://github.com/hyperf/hyperf"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://opencollective.com/hyperf",
  2461. "type": "open_collective"
  2462. }
  2463. ],
  2464. "time": "2024-09-25T02:54:12+00:00"
  2465. },
  2466. {
  2467. "name": "hyperf/framework",
  2468. "version": "v3.1.42",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/hyperf/framework.git",
  2472. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2477. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "fig/http-message-util": "^1.1.2",
  2482. "hyperf/contract": "~3.1.0",
  2483. "hyperf/coordinator": "~3.1.0",
  2484. "hyperf/coroutine": "~3.1.0",
  2485. "php": ">=8.1",
  2486. "psr/container": "^1.0 || ^2.0",
  2487. "psr/event-dispatcher": "^1.0",
  2488. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2489. },
  2490. "suggest": {
  2491. "ext-swoole": "Required to use swoole engine.",
  2492. "hyperf/command": "Required to use Command annotation.",
  2493. "hyperf/di": "Required to use Command annotation.",
  2494. "hyperf/dispatcher": "Required to use BootApplication event.",
  2495. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "3.1-dev"
  2501. },
  2502. "hyperf": {
  2503. "config": "Hyperf\\Framework\\ConfigProvider"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "Hyperf\\Framework\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2516. "homepage": "https://hyperf.io",
  2517. "keywords": [
  2518. "Microservice",
  2519. "framework",
  2520. "hyperf",
  2521. "middleware",
  2522. "php",
  2523. "swoole"
  2524. ],
  2525. "support": {
  2526. "docs": "https://hyperf.wiki",
  2527. "issues": "https://github.com/hyperf/hyperf/issues",
  2528. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2529. "source": "https://github.com/hyperf/hyperf"
  2530. },
  2531. "funding": [
  2532. {
  2533. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2534. "type": "custom"
  2535. },
  2536. {
  2537. "url": "https://opencollective.com/hyperf",
  2538. "type": "open_collective"
  2539. }
  2540. ],
  2541. "time": "2024-09-25T02:54:12+00:00"
  2542. },
  2543. {
  2544. "name": "hyperf/guzzle",
  2545. "version": "v3.1.42",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/hyperf/guzzle.git",
  2549. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2554. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2559. "php": ">=8.1",
  2560. "psr/container": "^1.0 || ^2.0",
  2561. "psr/http-message": "^1.0 || ^2.0"
  2562. },
  2563. "suggest": {
  2564. "ext-curl": "Required for CURL handler support",
  2565. "hyperf/pool": "Required to use pool handler."
  2566. },
  2567. "type": "library",
  2568. "extra": {
  2569. "branch-alias": {
  2570. "dev-master": "3.1-dev"
  2571. },
  2572. "hyperf": {
  2573. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "psr-4": {
  2578. "Hyperf\\Guzzle\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "description": "Swoole coroutine handler for guzzle",
  2586. "keywords": [
  2587. "Guzzle",
  2588. "handler",
  2589. "php",
  2590. "swoole"
  2591. ],
  2592. "support": {
  2593. "issues": "https://github.com/hyperf/guzzle/issues",
  2594. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2595. },
  2596. "funding": [
  2597. {
  2598. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2599. "type": "custom"
  2600. },
  2601. {
  2602. "url": "https://opencollective.com/hyperf",
  2603. "type": "open_collective"
  2604. }
  2605. ],
  2606. "time": "2024-09-25T02:54:12+00:00"
  2607. },
  2608. {
  2609. "name": "hyperf/http-message",
  2610. "version": "v3.1.42",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/hyperf/http-message.git",
  2614. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2619. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2620. "shasum": ""
  2621. },
  2622. "require": {
  2623. "hyperf/codec": "~3.1.0",
  2624. "hyperf/engine": "^2.11",
  2625. "hyperf/support": "~3.1.0",
  2626. "laminas/laminas-mime": "^2.7",
  2627. "php": ">=8.1",
  2628. "psr/http-message": "^1.0 || ^2.0",
  2629. "swow/psr7-plus": "^1.0"
  2630. },
  2631. "suggest": {
  2632. "psr/container": "Required to replace RequestParserInterface."
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-master": "3.1-dev"
  2638. },
  2639. "hyperf": {
  2640. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2641. }
  2642. },
  2643. "autoload": {
  2644. "psr-4": {
  2645. "Hyperf\\HttpMessage\\": "src/"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "description": "microservice framework base on swoole",
  2653. "keywords": [
  2654. "http-message",
  2655. "hyperf",
  2656. "php",
  2657. "swoole"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/hyperf/http-message/issues",
  2661. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2662. },
  2663. "funding": [
  2664. {
  2665. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2666. "type": "custom"
  2667. },
  2668. {
  2669. "url": "https://opencollective.com/hyperf",
  2670. "type": "open_collective"
  2671. }
  2672. ],
  2673. "time": "2024-09-25T02:54:12+00:00"
  2674. },
  2675. {
  2676. "name": "hyperf/http-server",
  2677. "version": "v3.1.42",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/hyperf/http-server.git",
  2681. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2686. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2687. "shasum": ""
  2688. },
  2689. "require": {
  2690. "hyperf/codec": "~3.1.0",
  2691. "hyperf/collection": "~3.1.0",
  2692. "hyperf/context": "~3.1.0",
  2693. "hyperf/contract": "~3.1.0",
  2694. "hyperf/coroutine": "~3.1.0",
  2695. "hyperf/dispatcher": "~3.1.0",
  2696. "hyperf/event": "~3.1.0",
  2697. "hyperf/exception-handler": "~3.1.0",
  2698. "hyperf/http-message": "~3.1.0",
  2699. "hyperf/macroable": "~3.1.0",
  2700. "hyperf/serializer": "~3.1.0",
  2701. "hyperf/server": "~3.1.0",
  2702. "hyperf/stdlib": "~3.1.0",
  2703. "hyperf/support": "~3.1.0",
  2704. "nikic/fast-route": "^1.3",
  2705. "php": ">=8.1",
  2706. "psr/container": "^1.0 || ^2.0",
  2707. "swow/psr7-plus": "^1.0"
  2708. },
  2709. "suggest": {
  2710. "hyperf/di": "Required to use annotations."
  2711. },
  2712. "type": "library",
  2713. "extra": {
  2714. "branch-alias": {
  2715. "dev-master": "3.1-dev"
  2716. },
  2717. "hyperf": {
  2718. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2719. }
  2720. },
  2721. "autoload": {
  2722. "psr-4": {
  2723. "Hyperf\\HttpServer\\": "src/"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "description": "A HTTP Server for Hyperf.",
  2731. "homepage": "https://hyperf.io",
  2732. "keywords": [
  2733. "http",
  2734. "http-server",
  2735. "hyperf",
  2736. "php",
  2737. "swoole"
  2738. ],
  2739. "support": {
  2740. "docs": "https://hyperf.wiki",
  2741. "issues": "https://github.com/hyperf/hyperf/issues",
  2742. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2743. "source": "https://github.com/hyperf/hyperf"
  2744. },
  2745. "funding": [
  2746. {
  2747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2748. "type": "custom"
  2749. },
  2750. {
  2751. "url": "https://opencollective.com/hyperf",
  2752. "type": "open_collective"
  2753. }
  2754. ],
  2755. "time": "2024-09-25T02:54:12+00:00"
  2756. },
  2757. {
  2758. "name": "hyperf/json-rpc",
  2759. "version": "v3.1.42",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/hyperf/json-rpc.git",
  2763. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2768. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "hyperf/codec": "~3.1.0",
  2773. "hyperf/context": "~3.1.0",
  2774. "hyperf/contract": "~3.1.0",
  2775. "hyperf/engine": "^2.0",
  2776. "hyperf/http-message": "~3.1.0",
  2777. "hyperf/load-balancer": "~3.1.0",
  2778. "hyperf/rpc": "~3.1.0",
  2779. "hyperf/serializer": "~3.1.0",
  2780. "hyperf/support": "~3.1.0",
  2781. "hyperf/utils": "~3.1.0",
  2782. "php": ">=8.1",
  2783. "psr/container": "^1.0 || ^2.0",
  2784. "swow/psr7-plus": "^1.0"
  2785. },
  2786. "suggest": {
  2787. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2788. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2789. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2790. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2791. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2792. },
  2793. "type": "library",
  2794. "extra": {
  2795. "branch-alias": {
  2796. "dev-master": "3.1-dev"
  2797. },
  2798. "hyperf": {
  2799. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2800. }
  2801. },
  2802. "autoload": {
  2803. "psr-4": {
  2804. "Hyperf\\JsonRpc\\": "src/"
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2812. "homepage": "https://hyperf.io",
  2813. "keywords": [
  2814. "hyperf",
  2815. "json-rpc",
  2816. "php",
  2817. "swoole"
  2818. ],
  2819. "support": {
  2820. "docs": "https://hyperf.wiki",
  2821. "issues": "https://github.com/hyperf/hyperf/issues",
  2822. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2823. "source": "https://github.com/hyperf/hyperf"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2828. "type": "custom"
  2829. },
  2830. {
  2831. "url": "https://opencollective.com/hyperf",
  2832. "type": "open_collective"
  2833. }
  2834. ],
  2835. "time": "2024-09-25T02:54:12+00:00"
  2836. },
  2837. {
  2838. "name": "hyperf/load-balancer",
  2839. "version": "v3.1.42",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/hyperf/load-balancer.git",
  2843. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2848. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "hyperf/coordinator": "~3.1.0",
  2853. "hyperf/coroutine": "~3.1.0",
  2854. "markrogoyski/math-php": "^2.0",
  2855. "php": ">=8.1",
  2856. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2857. },
  2858. "type": "library",
  2859. "extra": {
  2860. "branch-alias": {
  2861. "dev-master": "3.1-dev"
  2862. },
  2863. "hyperf": {
  2864. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2865. }
  2866. },
  2867. "autoload": {
  2868. "psr-4": {
  2869. "Hyperf\\LoadBalancer\\": "src/"
  2870. }
  2871. },
  2872. "notification-url": "https://packagist.org/downloads/",
  2873. "license": [
  2874. "MIT"
  2875. ],
  2876. "description": "A load balancer library for Hyperf.",
  2877. "homepage": "https://hyperf.io",
  2878. "keywords": [
  2879. "hyperf",
  2880. "load-balancer",
  2881. "php",
  2882. "swoole"
  2883. ],
  2884. "support": {
  2885. "docs": "https://hyperf.wiki",
  2886. "issues": "https://github.com/hyperf/hyperf/issues",
  2887. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2888. "source": "https://github.com/hyperf/hyperf"
  2889. },
  2890. "funding": [
  2891. {
  2892. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2893. "type": "custom"
  2894. },
  2895. {
  2896. "url": "https://opencollective.com/hyperf",
  2897. "type": "open_collective"
  2898. }
  2899. ],
  2900. "time": "2024-09-25T02:54:12+00:00"
  2901. },
  2902. {
  2903. "name": "hyperf/logger",
  2904. "version": "v3.1.42",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/hyperf/logger.git",
  2908. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2913. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "hyperf/contract": "~3.1.0",
  2918. "hyperf/support": "~3.1.0",
  2919. "hyperf/utils": "~3.1.0",
  2920. "monolog/monolog": "^2.7 || ^3.1",
  2921. "php": ">=8.1",
  2922. "psr/container": "^1.0 || ^2.0",
  2923. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "3.1-dev"
  2929. },
  2930. "hyperf": {
  2931. "config": "Hyperf\\Logger\\ConfigProvider"
  2932. }
  2933. },
  2934. "autoload": {
  2935. "psr-4": {
  2936. "Hyperf\\Logger\\": "src/"
  2937. }
  2938. },
  2939. "notification-url": "https://packagist.org/downloads/",
  2940. "license": [
  2941. "MIT"
  2942. ],
  2943. "description": "A logger component for hyperf.",
  2944. "homepage": "https://hyperf.io",
  2945. "keywords": [
  2946. "hyperf",
  2947. "logger",
  2948. "php"
  2949. ],
  2950. "support": {
  2951. "docs": "https://hyperf.wiki",
  2952. "issues": "https://github.com/hyperf/hyperf/issues",
  2953. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2954. "source": "https://github.com/hyperf/hyperf"
  2955. },
  2956. "funding": [
  2957. {
  2958. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2959. "type": "custom"
  2960. },
  2961. {
  2962. "url": "https://opencollective.com/hyperf",
  2963. "type": "open_collective"
  2964. }
  2965. ],
  2966. "time": "2024-09-25T02:54:12+00:00"
  2967. },
  2968. {
  2969. "name": "hyperf/macroable",
  2970. "version": "v3.1.42",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/hyperf/macroable.git",
  2974. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2979. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "php": ">=8.1"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-master": "3.1-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Hyperf\\Macroable\\": "src/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3001. "homepage": "https://hyperf.io",
  3002. "keywords": [
  3003. "hyperf",
  3004. "macroable",
  3005. "php",
  3006. "swoole"
  3007. ],
  3008. "support": {
  3009. "docs": "https://hyperf.wiki",
  3010. "issues": "https://github.com/hyperf/hyperf/issues",
  3011. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3012. "source": "https://github.com/hyperf/hyperf"
  3013. },
  3014. "funding": [
  3015. {
  3016. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3017. "type": "custom"
  3018. },
  3019. {
  3020. "url": "https://opencollective.com/hyperf",
  3021. "type": "open_collective"
  3022. }
  3023. ],
  3024. "time": "2024-09-25T02:54:12+00:00"
  3025. },
  3026. {
  3027. "name": "hyperf/memory",
  3028. "version": "v3.1.42",
  3029. "source": {
  3030. "type": "git",
  3031. "url": "https://github.com/hyperf/memory.git",
  3032. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3033. },
  3034. "dist": {
  3035. "type": "zip",
  3036. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3037. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3038. "shasum": ""
  3039. },
  3040. "require": {
  3041. "php": ">=8.1"
  3042. },
  3043. "type": "library",
  3044. "extra": {
  3045. "branch-alias": {
  3046. "dev-master": "3.1-dev"
  3047. },
  3048. "hyperf": {
  3049. "config": "Hyperf\\Memory\\ConfigProvider"
  3050. }
  3051. },
  3052. "autoload": {
  3053. "psr-4": {
  3054. "Hyperf\\Memory\\": "src/"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "description": "An independent component that use to operate and manage memory.",
  3062. "homepage": "https://hyperf.io",
  3063. "keywords": [
  3064. "hyperf",
  3065. "memory",
  3066. "php",
  3067. "swoole"
  3068. ],
  3069. "support": {
  3070. "docs": "https://hyperf.wiki",
  3071. "issues": "https://github.com/hyperf/hyperf/issues",
  3072. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3073. "source": "https://github.com/hyperf/hyperf"
  3074. },
  3075. "funding": [
  3076. {
  3077. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3078. "type": "custom"
  3079. },
  3080. {
  3081. "url": "https://opencollective.com/hyperf",
  3082. "type": "open_collective"
  3083. }
  3084. ],
  3085. "time": "2024-09-25T02:54:12+00:00"
  3086. },
  3087. {
  3088. "name": "hyperf/model-listener",
  3089. "version": "v3.1.42",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/hyperf/model-listener.git",
  3093. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3098. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "hyperf/contract": "~3.1.0",
  3103. "hyperf/database": "~3.1.0",
  3104. "hyperf/di": "~3.1.0",
  3105. "hyperf/event": "~3.1.0",
  3106. "hyperf/support": "~3.1.0",
  3107. "hyperf/utils": "~3.1.0",
  3108. "php": ">=8.1",
  3109. "psr/container": "^1.0 || ^2.0"
  3110. },
  3111. "type": "library",
  3112. "extra": {
  3113. "branch-alias": {
  3114. "dev-master": "3.1-dev"
  3115. },
  3116. "hyperf": {
  3117. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "psr-4": {
  3122. "Hyperf\\ModelListener\\": "src/"
  3123. }
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "description": "A model listener for Hyperf.",
  3130. "homepage": "https://hyperf.io",
  3131. "keywords": [
  3132. "hyperf",
  3133. "model-listener",
  3134. "php",
  3135. "swoole"
  3136. ],
  3137. "support": {
  3138. "docs": "https://hyperf.wiki",
  3139. "issues": "https://github.com/hyperf/hyperf/issues",
  3140. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3141. "source": "https://github.com/hyperf/hyperf"
  3142. },
  3143. "funding": [
  3144. {
  3145. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3146. "type": "custom"
  3147. },
  3148. {
  3149. "url": "https://opencollective.com/hyperf",
  3150. "type": "open_collective"
  3151. }
  3152. ],
  3153. "time": "2024-09-25T02:54:12+00:00"
  3154. },
  3155. {
  3156. "name": "hyperf/nacos",
  3157. "version": "v3.1.42",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/hyperf/nacos.git",
  3161. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3166. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3171. "hyperf/codec": "~3.1.0",
  3172. "hyperf/contract": "~3.1.0",
  3173. "hyperf/support": "~3.1.0",
  3174. "hyperf/utils": "~3.1.0",
  3175. "jetbrains/phpstorm-attributes": "^1.0",
  3176. "php": ">=8.1"
  3177. },
  3178. "type": "library",
  3179. "extra": {
  3180. "branch-alias": {
  3181. "dev-master": "3.1-dev"
  3182. },
  3183. "hyperf": {
  3184. "config": "Hyperf\\Nacos\\ConfigProvider"
  3185. }
  3186. },
  3187. "autoload": {
  3188. "psr-4": {
  3189. "Hyperf\\Nacos\\": "src/"
  3190. }
  3191. },
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "MIT"
  3195. ],
  3196. "description": "Nacos SDK",
  3197. "keywords": [
  3198. "hyperf",
  3199. "nacos",
  3200. "php"
  3201. ],
  3202. "support": {
  3203. "issues": "https://github.com/hyperf/nacos/issues",
  3204. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3205. },
  3206. "funding": [
  3207. {
  3208. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3209. "type": "custom"
  3210. },
  3211. {
  3212. "url": "https://opencollective.com/hyperf",
  3213. "type": "open_collective"
  3214. }
  3215. ],
  3216. "time": "2024-09-25T02:54:12+00:00"
  3217. },
  3218. {
  3219. "name": "hyperf/pipeline",
  3220. "version": "v3.1.42",
  3221. "source": {
  3222. "type": "git",
  3223. "url": "https://github.com/hyperf/pipeline.git",
  3224. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3225. },
  3226. "dist": {
  3227. "type": "zip",
  3228. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3229. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3230. "shasum": ""
  3231. },
  3232. "require": {
  3233. "php": ">=8.1",
  3234. "psr/container": "^1.0 || ^2.0"
  3235. },
  3236. "type": "library",
  3237. "extra": {
  3238. "branch-alias": {
  3239. "dev-master": "3.1-dev"
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Hyperf\\Pipeline\\": "src/"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3252. "homepage": "https://hyperf.io",
  3253. "keywords": [
  3254. "hyperf",
  3255. "php",
  3256. "pipeline",
  3257. "swoole"
  3258. ],
  3259. "support": {
  3260. "docs": "https://hyperf.wiki",
  3261. "issues": "https://github.com/hyperf/hyperf/issues",
  3262. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3263. "source": "https://github.com/hyperf/hyperf"
  3264. },
  3265. "funding": [
  3266. {
  3267. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3268. "type": "custom"
  3269. },
  3270. {
  3271. "url": "https://opencollective.com/hyperf",
  3272. "type": "open_collective"
  3273. }
  3274. ],
  3275. "time": "2024-09-25T02:54:12+00:00"
  3276. },
  3277. {
  3278. "name": "hyperf/pool",
  3279. "version": "v3.1.42",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/hyperf/pool.git",
  3283. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3288. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "hyperf/contract": "~3.1.0",
  3293. "hyperf/support": "~3.1.0",
  3294. "hyperf/utils": "~3.1.0",
  3295. "php": ">=8.1",
  3296. "psr/container": "^1.0 || ^2.0"
  3297. },
  3298. "suggest": {
  3299. "psr/event-dispatcher": "Required to use events."
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-master": "3.1-dev"
  3305. },
  3306. "hyperf": {
  3307. "config": "Hyperf\\Pool\\ConfigProvider"
  3308. }
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Hyperf\\Pool\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "description": "An independent universal connection pool component.",
  3320. "homepage": "https://hyperf.io",
  3321. "keywords": [
  3322. "connection-pool",
  3323. "hyperf",
  3324. "php",
  3325. "swoole"
  3326. ],
  3327. "support": {
  3328. "docs": "https://hyperf.wiki",
  3329. "issues": "https://github.com/hyperf/hyperf/issues",
  3330. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3331. "source": "https://github.com/hyperf/hyperf"
  3332. },
  3333. "funding": [
  3334. {
  3335. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3336. "type": "custom"
  3337. },
  3338. {
  3339. "url": "https://opencollective.com/hyperf",
  3340. "type": "open_collective"
  3341. }
  3342. ],
  3343. "time": "2024-09-25T02:54:12+00:00"
  3344. },
  3345. {
  3346. "name": "hyperf/process",
  3347. "version": "v3.1.42",
  3348. "source": {
  3349. "type": "git",
  3350. "url": "https://github.com/hyperf/process.git",
  3351. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3352. },
  3353. "dist": {
  3354. "type": "zip",
  3355. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3356. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3357. "shasum": ""
  3358. },
  3359. "require": {
  3360. "hyperf/contract": "~3.1.0",
  3361. "hyperf/support": "~3.1.0",
  3362. "hyperf/utils": "~3.1.0",
  3363. "php": ">=8.1",
  3364. "psr/container": "^1.0 || ^2.0",
  3365. "psr/event-dispatcher": "^1.0"
  3366. },
  3367. "suggest": {
  3368. "hyperf/di": "Required to use annotations.",
  3369. "hyperf/event": "Required to dump the message before and after process.",
  3370. "hyperf/framework": "Required to use BootProcessListener."
  3371. },
  3372. "type": "library",
  3373. "extra": {
  3374. "branch-alias": {
  3375. "dev-master": "3.1-dev"
  3376. },
  3377. "hyperf": {
  3378. "config": "Hyperf\\Process\\ConfigProvider"
  3379. }
  3380. },
  3381. "autoload": {
  3382. "psr-4": {
  3383. "Hyperf\\Process\\": "src/"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "description": "A process component for hyperf.",
  3391. "homepage": "https://hyperf.io",
  3392. "keywords": [
  3393. "hyperf",
  3394. "php",
  3395. "process"
  3396. ],
  3397. "support": {
  3398. "docs": "https://hyperf.wiki",
  3399. "issues": "https://github.com/hyperf/hyperf/issues",
  3400. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3401. "source": "https://github.com/hyperf/hyperf"
  3402. },
  3403. "funding": [
  3404. {
  3405. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3406. "type": "custom"
  3407. },
  3408. {
  3409. "url": "https://opencollective.com/hyperf",
  3410. "type": "open_collective"
  3411. }
  3412. ],
  3413. "time": "2024-09-25T02:54:12+00:00"
  3414. },
  3415. {
  3416. "name": "hyperf/redis",
  3417. "version": "v3.1.42",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/hyperf/redis.git",
  3421. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3426. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "ext-redis": "^5.0 || ^6.0",
  3431. "hyperf/contract": "~3.1.0",
  3432. "hyperf/pool": "~3.1.0",
  3433. "hyperf/support": "~3.1.0",
  3434. "hyperf/tappable": "~3.1.0",
  3435. "hyperf/utils": "~3.1.0",
  3436. "php": ">=8.1",
  3437. "psr/container": "^1.0 || ^2.0"
  3438. },
  3439. "suggest": {
  3440. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3441. "hyperf/di": "Create the RedisPool via dependency injection."
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "branch-alias": {
  3446. "dev-master": "3.1-dev"
  3447. },
  3448. "hyperf": {
  3449. "config": "Hyperf\\Redis\\ConfigProvider"
  3450. }
  3451. },
  3452. "autoload": {
  3453. "psr-4": {
  3454. "Hyperf\\Redis\\": "src/"
  3455. }
  3456. },
  3457. "notification-url": "https://packagist.org/downloads/",
  3458. "license": [
  3459. "MIT"
  3460. ],
  3461. "description": "A redis component for hyperf.",
  3462. "homepage": "https://hyperf.io",
  3463. "keywords": [
  3464. "hyperf",
  3465. "php",
  3466. "pool",
  3467. "redis"
  3468. ],
  3469. "support": {
  3470. "docs": "https://hyperf.wiki",
  3471. "issues": "https://github.com/hyperf/hyperf/issues",
  3472. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3473. "source": "https://github.com/hyperf/hyperf"
  3474. },
  3475. "funding": [
  3476. {
  3477. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3478. "type": "custom"
  3479. },
  3480. {
  3481. "url": "https://opencollective.com/hyperf",
  3482. "type": "open_collective"
  3483. }
  3484. ],
  3485. "time": "2024-09-25T02:54:12+00:00"
  3486. },
  3487. {
  3488. "name": "hyperf/rpc",
  3489. "version": "v3.1.42",
  3490. "source": {
  3491. "type": "git",
  3492. "url": "https://github.com/hyperf/rpc.git",
  3493. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3494. },
  3495. "dist": {
  3496. "type": "zip",
  3497. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3498. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3499. "shasum": ""
  3500. },
  3501. "require": {
  3502. "hyperf/codec": "~3.1.0",
  3503. "hyperf/contract": "~3.1.0",
  3504. "hyperf/support": "~3.1.0",
  3505. "jetbrains/phpstorm-attributes": "^1.0",
  3506. "php": ">=8.1"
  3507. },
  3508. "type": "library",
  3509. "extra": {
  3510. "branch-alias": {
  3511. "dev-master": "3.1-dev"
  3512. },
  3513. "hyperf": []
  3514. },
  3515. "autoload": {
  3516. "psr-4": {
  3517. "Hyperf\\Rpc\\": "src/"
  3518. }
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "description": "A rpc basic library for Hyperf.",
  3525. "homepage": "https://hyperf.io",
  3526. "keywords": [
  3527. "hyperf",
  3528. "php",
  3529. "rpc",
  3530. "swoole"
  3531. ],
  3532. "support": {
  3533. "docs": "https://hyperf.wiki",
  3534. "issues": "https://github.com/hyperf/hyperf/issues",
  3535. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3536. "source": "https://github.com/hyperf/hyperf"
  3537. },
  3538. "funding": [
  3539. {
  3540. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3541. "type": "custom"
  3542. },
  3543. {
  3544. "url": "https://opencollective.com/hyperf",
  3545. "type": "open_collective"
  3546. }
  3547. ],
  3548. "time": "2024-09-25T02:54:12+00:00"
  3549. },
  3550. {
  3551. "name": "hyperf/rpc-server",
  3552. "version": "v3.1.42",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/hyperf/rpc-server.git",
  3556. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3561. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "hyperf/http-server": "~3.1.0",
  3566. "hyperf/rpc": "~3.1.0",
  3567. "php": ">=8.1"
  3568. },
  3569. "suggest": {
  3570. "hyperf/di": "Required to use annotations."
  3571. },
  3572. "type": "library",
  3573. "extra": {
  3574. "branch-alias": {
  3575. "dev-master": "3.1-dev"
  3576. },
  3577. "hyperf": {
  3578. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "psr-4": {
  3583. "Hyperf\\RpcServer\\": "src/"
  3584. }
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "MIT"
  3589. ],
  3590. "description": "An abstract rpc server component for Hyperf.",
  3591. "homepage": "https://hyperf.io",
  3592. "keywords": [
  3593. "hyperf",
  3594. "php",
  3595. "rpc",
  3596. "rpc-server",
  3597. "swoole"
  3598. ],
  3599. "support": {
  3600. "docs": "https://hyperf.wiki",
  3601. "issues": "https://github.com/hyperf/hyperf/issues",
  3602. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3603. "source": "https://github.com/hyperf/hyperf"
  3604. },
  3605. "funding": [
  3606. {
  3607. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3608. "type": "custom"
  3609. },
  3610. {
  3611. "url": "https://opencollective.com/hyperf",
  3612. "type": "open_collective"
  3613. }
  3614. ],
  3615. "time": "2024-09-25T02:54:12+00:00"
  3616. },
  3617. {
  3618. "name": "hyperf/serializer",
  3619. "version": "v3.1.42",
  3620. "source": {
  3621. "type": "git",
  3622. "url": "https://github.com/hyperf/serializer.git",
  3623. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3624. },
  3625. "dist": {
  3626. "type": "zip",
  3627. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3628. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3629. "shasum": ""
  3630. },
  3631. "require": {
  3632. "hyperf/contract": "~3.1.0",
  3633. "php": ">=8.1"
  3634. },
  3635. "suggest": {
  3636. "hyperf/di": "Required to use ExceptionNormalizer",
  3637. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3638. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3639. },
  3640. "type": "library",
  3641. "extra": {
  3642. "branch-alias": {
  3643. "dev-master": "3.1-dev"
  3644. },
  3645. "hyperf": {
  3646. "config": "Hyperf\\Serializer\\ConfigProvider"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "psr-4": {
  3651. "Hyperf\\Serializer\\": "src/"
  3652. }
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "MIT"
  3657. ],
  3658. "description": "A serializer component for Hyperf.",
  3659. "homepage": "https://hyperf.io",
  3660. "keywords": [
  3661. "hyperf",
  3662. "php",
  3663. "swoole",
  3664. "tappable"
  3665. ],
  3666. "support": {
  3667. "docs": "https://hyperf.wiki",
  3668. "issues": "https://github.com/hyperf/hyperf/issues",
  3669. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3670. "source": "https://github.com/hyperf/hyperf"
  3671. },
  3672. "funding": [
  3673. {
  3674. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3675. "type": "custom"
  3676. },
  3677. {
  3678. "url": "https://opencollective.com/hyperf",
  3679. "type": "open_collective"
  3680. }
  3681. ],
  3682. "time": "2024-09-25T02:54:12+00:00"
  3683. },
  3684. {
  3685. "name": "hyperf/server",
  3686. "version": "v3.1.42",
  3687. "source": {
  3688. "type": "git",
  3689. "url": "https://github.com/hyperf/server.git",
  3690. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3691. },
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3695. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "hyperf/contract": "~3.1.0",
  3700. "hyperf/coordinator": "~3.1.0",
  3701. "hyperf/engine": "^2.8",
  3702. "hyperf/support": "~3.1.0",
  3703. "hyperf/tappable": "~3.1.0",
  3704. "php": ">=8.1",
  3705. "psr/container": "^1.0 || ^2.0",
  3706. "psr/event-dispatcher": "^1.0",
  3707. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3708. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3709. },
  3710. "suggest": {
  3711. "hyperf/event": "Dump the info after server start.",
  3712. "hyperf/framework": "Dump the info after server start."
  3713. },
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "3.1-dev"
  3718. },
  3719. "hyperf": {
  3720. "config": "Hyperf\\Server\\ConfigProvider"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Hyperf\\Server\\": "src/"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "description": "A base server library for Hyperf.",
  3733. "homepage": "https://hyperf.io",
  3734. "keywords": [
  3735. "hyperf",
  3736. "php",
  3737. "server",
  3738. "swoole"
  3739. ],
  3740. "support": {
  3741. "docs": "https://hyperf.wiki",
  3742. "issues": "https://github.com/hyperf/hyperf/issues",
  3743. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3744. "source": "https://github.com/hyperf/hyperf"
  3745. },
  3746. "funding": [
  3747. {
  3748. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3749. "type": "custom"
  3750. },
  3751. {
  3752. "url": "https://opencollective.com/hyperf",
  3753. "type": "open_collective"
  3754. }
  3755. ],
  3756. "time": "2024-09-25T02:54:12+00:00"
  3757. },
  3758. {
  3759. "name": "hyperf/service-governance",
  3760. "version": "v3.1.42",
  3761. "source": {
  3762. "type": "git",
  3763. "url": "https://github.com/hyperf/service-governance.git",
  3764. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3765. },
  3766. "dist": {
  3767. "type": "zip",
  3768. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3769. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3770. "shasum": ""
  3771. },
  3772. "require": {
  3773. "hyperf/contract": "~3.1.0",
  3774. "hyperf/support": "~3.1.0",
  3775. "jetbrains/phpstorm-attributes": "^1.0",
  3776. "php": ">=8.1"
  3777. },
  3778. "suggest": {
  3779. "hyperf/event": "Required to use RegisterServiceListener.",
  3780. "hyperf/framework": "Required to use RegisterServiceListener.",
  3781. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3782. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3783. },
  3784. "type": "library",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-master": "3.1-dev"
  3788. },
  3789. "hyperf": {
  3790. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3791. }
  3792. },
  3793. "autoload": {
  3794. "psr-4": {
  3795. "Hyperf\\ServiceGovernance\\": "src/"
  3796. }
  3797. },
  3798. "notification-url": "https://packagist.org/downloads/",
  3799. "license": [
  3800. "MIT"
  3801. ],
  3802. "description": "A service governance component for Hyperf.",
  3803. "homepage": "https://hyperf.io",
  3804. "keywords": [
  3805. "hyperf",
  3806. "php",
  3807. "service-governance",
  3808. "swoole"
  3809. ],
  3810. "support": {
  3811. "docs": "https://hyperf.wiki",
  3812. "issues": "https://github.com/hyperf/hyperf/issues",
  3813. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3814. "source": "https://github.com/hyperf/hyperf"
  3815. },
  3816. "funding": [
  3817. {
  3818. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3819. "type": "custom"
  3820. },
  3821. {
  3822. "url": "https://opencollective.com/hyperf",
  3823. "type": "open_collective"
  3824. }
  3825. ],
  3826. "time": "2024-09-25T02:54:12+00:00"
  3827. },
  3828. {
  3829. "name": "hyperf/service-governance-consul",
  3830. "version": "v3.1.42",
  3831. "source": {
  3832. "type": "git",
  3833. "url": "https://github.com/hyperf/service-governance-consul.git",
  3834. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3835. },
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3839. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3840. "shasum": ""
  3841. },
  3842. "require": {
  3843. "hyperf/consul": "~3.1.0",
  3844. "hyperf/contract": "~3.1.0",
  3845. "hyperf/service-governance": "~3.1.0",
  3846. "hyperf/support": "~3.1.0",
  3847. "hyperf/utils": "~3.1.0",
  3848. "php": ">=8.1"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "branch-alias": {
  3853. "dev-master": "3.1-dev"
  3854. },
  3855. "hyperf": {
  3856. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3857. }
  3858. },
  3859. "autoload": {
  3860. "psr-4": {
  3861. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3862. }
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "MIT"
  3867. ],
  3868. "description": "A consul adapter for service governance.",
  3869. "homepage": "https://hyperf.io",
  3870. "keywords": [
  3871. "consul-adapter",
  3872. "hyperf",
  3873. "php",
  3874. "service-governance",
  3875. "swoole"
  3876. ],
  3877. "support": {
  3878. "docs": "https://hyperf.wiki",
  3879. "issues": "https://github.com/hyperf/hyperf/issues",
  3880. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3881. "source": "https://github.com/hyperf/hyperf"
  3882. },
  3883. "funding": [
  3884. {
  3885. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3886. "type": "custom"
  3887. },
  3888. {
  3889. "url": "https://opencollective.com/hyperf",
  3890. "type": "open_collective"
  3891. }
  3892. ],
  3893. "time": "2024-09-25T02:54:12+00:00"
  3894. },
  3895. {
  3896. "name": "hyperf/service-governance-nacos",
  3897. "version": "v3.1.42",
  3898. "source": {
  3899. "type": "git",
  3900. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3901. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3902. },
  3903. "dist": {
  3904. "type": "zip",
  3905. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3906. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3907. "shasum": ""
  3908. },
  3909. "require": {
  3910. "hyperf/codec": "~3.1.0",
  3911. "hyperf/contract": "~3.1.0",
  3912. "hyperf/nacos": "~3.1.0",
  3913. "hyperf/service-governance": "~3.1.0",
  3914. "hyperf/support": "~3.1.0",
  3915. "hyperf/utils": "~3.1.0",
  3916. "php": ">=8.1"
  3917. },
  3918. "type": "library",
  3919. "extra": {
  3920. "branch-alias": {
  3921. "dev-master": "3.1-dev"
  3922. },
  3923. "hyperf": {
  3924. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3925. }
  3926. },
  3927. "autoload": {
  3928. "psr-4": {
  3929. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3930. }
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "MIT"
  3935. ],
  3936. "description": "A nacos adapter for service governance.",
  3937. "homepage": "https://hyperf.io",
  3938. "keywords": [
  3939. "hyperf",
  3940. "nacos-adapter",
  3941. "php",
  3942. "service-governance",
  3943. "swoole"
  3944. ],
  3945. "support": {
  3946. "docs": "https://hyperf.wiki",
  3947. "issues": "https://github.com/hyperf/hyperf/issues",
  3948. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3949. "source": "https://github.com/hyperf/hyperf"
  3950. },
  3951. "funding": [
  3952. {
  3953. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3954. "type": "custom"
  3955. },
  3956. {
  3957. "url": "https://opencollective.com/hyperf",
  3958. "type": "open_collective"
  3959. }
  3960. ],
  3961. "time": "2024-09-25T02:54:12+00:00"
  3962. },
  3963. {
  3964. "name": "hyperf/stdlib",
  3965. "version": "v3.1.42",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/hyperf/stdlib.git",
  3969. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3974. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "php": ">=8.1"
  3979. },
  3980. "type": "library",
  3981. "extra": {
  3982. "branch-alias": {
  3983. "dev-master": "3.1-dev"
  3984. }
  3985. },
  3986. "autoload": {
  3987. "psr-4": {
  3988. "Hyperf\\Stdlib\\": "src/"
  3989. }
  3990. },
  3991. "notification-url": "https://packagist.org/downloads/",
  3992. "license": [
  3993. "MIT"
  3994. ],
  3995. "description": "A stdlib component for Hyperf.",
  3996. "homepage": "https://hyperf.io",
  3997. "keywords": [
  3998. "hyperf",
  3999. "php",
  4000. "stdlib",
  4001. "swoole"
  4002. ],
  4003. "support": {
  4004. "docs": "https://hyperf.wiki",
  4005. "issues": "https://github.com/hyperf/hyperf/issues",
  4006. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4007. "source": "https://github.com/hyperf/hyperf"
  4008. },
  4009. "funding": [
  4010. {
  4011. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4012. "type": "custom"
  4013. },
  4014. {
  4015. "url": "https://opencollective.com/hyperf",
  4016. "type": "open_collective"
  4017. }
  4018. ],
  4019. "time": "2024-09-25T02:54:12+00:00"
  4020. },
  4021. {
  4022. "name": "hyperf/stringable",
  4023. "version": "v3.1.43",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/hyperf/stringable.git",
  4027. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4032. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "ext-mbstring": "*",
  4037. "hyperf/collection": "~3.1.0",
  4038. "hyperf/conditionable": "~3.1.0",
  4039. "hyperf/macroable": "~3.1.0",
  4040. "hyperf/tappable": "~3.1.0",
  4041. "php": ">=8.1"
  4042. },
  4043. "suggest": {
  4044. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4045. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4046. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4047. },
  4048. "type": "library",
  4049. "extra": {
  4050. "branch-alias": {
  4051. "dev-master": "3.1-dev"
  4052. }
  4053. },
  4054. "autoload": {
  4055. "files": [
  4056. "src/Functions.php"
  4057. ],
  4058. "psr-4": {
  4059. "Hyperf\\Stringable\\": "src/"
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "description": "Hyperf Stringable package which come from illuminate/support",
  4067. "homepage": "https://hyperf.io",
  4068. "keywords": [
  4069. "hyperf",
  4070. "php",
  4071. "stringable",
  4072. "swoole"
  4073. ],
  4074. "support": {
  4075. "docs": "https://hyperf.wiki",
  4076. "issues": "https://github.com/hyperf/hyperf/issues",
  4077. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4078. "source": "https://github.com/hyperf/hyperf"
  4079. },
  4080. "funding": [
  4081. {
  4082. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4083. "type": "custom"
  4084. },
  4085. {
  4086. "url": "https://opencollective.com/hyperf",
  4087. "type": "open_collective"
  4088. }
  4089. ],
  4090. "time": "2024-10-09T02:28:40+00:00"
  4091. },
  4092. {
  4093. "name": "hyperf/support",
  4094. "version": "v3.1.42",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/hyperf/support.git",
  4098. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4103. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "hyperf/collection": "~3.1.0",
  4108. "hyperf/context": "~3.1.0",
  4109. "hyperf/contract": "~3.1.0",
  4110. "hyperf/coroutine": "~3.1.0",
  4111. "hyperf/macroable": "~3.1.0",
  4112. "hyperf/stringable": "~3.1.0",
  4113. "php": ">=8.1"
  4114. },
  4115. "suggest": {
  4116. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4117. },
  4118. "type": "library",
  4119. "extra": {
  4120. "branch-alias": {
  4121. "dev-master": "3.1-dev"
  4122. }
  4123. },
  4124. "autoload": {
  4125. "files": [
  4126. "src/Functions.php"
  4127. ],
  4128. "psr-4": {
  4129. "Hyperf\\Support\\": "src/"
  4130. }
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "MIT"
  4135. ],
  4136. "description": "A support component for Hyperf.",
  4137. "homepage": "https://hyperf.io",
  4138. "keywords": [
  4139. "hyperf",
  4140. "php",
  4141. "support",
  4142. "swoole"
  4143. ],
  4144. "support": {
  4145. "docs": "https://hyperf.wiki",
  4146. "issues": "https://github.com/hyperf/hyperf/issues",
  4147. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4148. "source": "https://github.com/hyperf/hyperf"
  4149. },
  4150. "funding": [
  4151. {
  4152. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4153. "type": "custom"
  4154. },
  4155. {
  4156. "url": "https://opencollective.com/hyperf",
  4157. "type": "open_collective"
  4158. }
  4159. ],
  4160. "time": "2024-09-25T02:54:12+00:00"
  4161. },
  4162. {
  4163. "name": "hyperf/tappable",
  4164. "version": "v3.1.42",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://github.com/hyperf/tappable.git",
  4168. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4173. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "php": ">=8.1"
  4178. },
  4179. "type": "library",
  4180. "extra": {
  4181. "branch-alias": {
  4182. "dev-master": "3.1-dev"
  4183. }
  4184. },
  4185. "autoload": {
  4186. "files": [
  4187. "src/Functions.php"
  4188. ],
  4189. "psr-4": {
  4190. "Hyperf\\Tappable\\": "src/"
  4191. }
  4192. },
  4193. "notification-url": "https://packagist.org/downloads/",
  4194. "license": [
  4195. "MIT"
  4196. ],
  4197. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4198. "homepage": "https://hyperf.io",
  4199. "keywords": [
  4200. "hyperf",
  4201. "php",
  4202. "swoole",
  4203. "tappable"
  4204. ],
  4205. "support": {
  4206. "docs": "https://hyperf.wiki",
  4207. "issues": "https://github.com/hyperf/hyperf/issues",
  4208. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4209. "source": "https://github.com/hyperf/hyperf"
  4210. },
  4211. "funding": [
  4212. {
  4213. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4214. "type": "custom"
  4215. },
  4216. {
  4217. "url": "https://opencollective.com/hyperf",
  4218. "type": "open_collective"
  4219. }
  4220. ],
  4221. "time": "2024-09-25T02:54:12+00:00"
  4222. },
  4223. {
  4224. "name": "hyperf/utils",
  4225. "version": "v3.1.42",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/hyperf/utils.git",
  4229. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4234. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "doctrine/inflector": "^2.0",
  4239. "hyperf/code-parser": "~3.1.0",
  4240. "hyperf/codec": "~3.1.0",
  4241. "hyperf/collection": "~3.1.0",
  4242. "hyperf/context": "~3.1.0",
  4243. "hyperf/contract": "~3.1.0",
  4244. "hyperf/coordinator": "~3.1.0",
  4245. "hyperf/coroutine": "~3.1.0",
  4246. "hyperf/engine": "^2.0",
  4247. "hyperf/macroable": "~3.1.0",
  4248. "hyperf/serializer": "~3.1.0",
  4249. "hyperf/stringable": "~3.1.0",
  4250. "hyperf/support": "~3.1.0",
  4251. "php": ">=8.1"
  4252. },
  4253. "type": "library",
  4254. "extra": {
  4255. "branch-alias": {
  4256. "dev-master": "3.1-dev"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "description": "A tools package that could help developer solved the problem quickly.",
  4264. "homepage": "https://hyperf.io",
  4265. "keywords": [
  4266. "hyperf",
  4267. "php",
  4268. "swoole",
  4269. "utils"
  4270. ],
  4271. "support": {
  4272. "docs": "https://hyperf.wiki",
  4273. "issues": "https://github.com/hyperf/hyperf/issues",
  4274. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4275. "source": "https://github.com/hyperf/hyperf"
  4276. },
  4277. "funding": [
  4278. {
  4279. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4280. "type": "custom"
  4281. },
  4282. {
  4283. "url": "https://opencollective.com/hyperf",
  4284. "type": "open_collective"
  4285. }
  4286. ],
  4287. "time": "2024-09-25T02:54:12+00:00"
  4288. },
  4289. {
  4290. "name": "jetbrains/phpstorm-attributes",
  4291. "version": "1.1",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4295. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4300. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4301. "shasum": ""
  4302. },
  4303. "type": "library",
  4304. "autoload": {
  4305. "psr-4": {
  4306. "JetBrains\\PhpStorm\\": "src/"
  4307. }
  4308. },
  4309. "notification-url": "https://packagist.org/downloads/",
  4310. "license": [
  4311. "Apache-2.0"
  4312. ],
  4313. "authors": [
  4314. {
  4315. "name": "JetBrains",
  4316. "homepage": "https://www.jetbrains.com"
  4317. }
  4318. ],
  4319. "description": "PhpStorm specific attributes",
  4320. "keywords": [
  4321. "attributes",
  4322. "jetbrains",
  4323. "phpstorm"
  4324. ],
  4325. "support": {
  4326. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4327. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4328. },
  4329. "time": "2023-09-01T08:50:25+00:00"
  4330. },
  4331. {
  4332. "name": "laminas/laminas-mime",
  4333. "version": "2.12.0",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/laminas/laminas-mime.git",
  4337. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4342. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4347. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4348. },
  4349. "conflict": {
  4350. "zendframework/zend-mime": "*"
  4351. },
  4352. "require-dev": {
  4353. "laminas/laminas-coding-standard": "~2.4.0",
  4354. "laminas/laminas-mail": "^2.19.0",
  4355. "phpunit/phpunit": "~9.5.25"
  4356. },
  4357. "suggest": {
  4358. "laminas/laminas-mail": "Laminas\\Mail component"
  4359. },
  4360. "type": "library",
  4361. "autoload": {
  4362. "psr-4": {
  4363. "Laminas\\Mime\\": "src/"
  4364. }
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "BSD-3-Clause"
  4369. ],
  4370. "description": "Create and parse MIME messages and parts",
  4371. "homepage": "https://laminas.dev",
  4372. "keywords": [
  4373. "laminas",
  4374. "mime"
  4375. ],
  4376. "support": {
  4377. "chat": "https://laminas.dev/chat",
  4378. "docs": "https://docs.laminas.dev/laminas-mime/",
  4379. "forum": "https://discourse.laminas.dev",
  4380. "issues": "https://github.com/laminas/laminas-mime/issues",
  4381. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4382. "source": "https://github.com/laminas/laminas-mime"
  4383. },
  4384. "funding": [
  4385. {
  4386. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4387. "type": "community_bridge"
  4388. }
  4389. ],
  4390. "time": "2023-11-02T16:47:19+00:00"
  4391. },
  4392. {
  4393. "name": "laminas/laminas-stdlib",
  4394. "version": "3.20.0",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/laminas/laminas-stdlib.git",
  4398. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4403. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4408. },
  4409. "conflict": {
  4410. "zendframework/zend-stdlib": "*"
  4411. },
  4412. "require-dev": {
  4413. "laminas/laminas-coding-standard": "^3.0",
  4414. "phpbench/phpbench": "^1.3.1",
  4415. "phpunit/phpunit": "^10.5.38",
  4416. "psalm/plugin-phpunit": "^0.19.0",
  4417. "vimeo/psalm": "^5.26.1"
  4418. },
  4419. "type": "library",
  4420. "autoload": {
  4421. "psr-4": {
  4422. "Laminas\\Stdlib\\": "src/"
  4423. }
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "BSD-3-Clause"
  4428. ],
  4429. "description": "SPL extensions, array utilities, error handlers, and more",
  4430. "homepage": "https://laminas.dev",
  4431. "keywords": [
  4432. "laminas",
  4433. "stdlib"
  4434. ],
  4435. "support": {
  4436. "chat": "https://laminas.dev/chat",
  4437. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4438. "forum": "https://discourse.laminas.dev",
  4439. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4440. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4441. "source": "https://github.com/laminas/laminas-stdlib"
  4442. },
  4443. "funding": [
  4444. {
  4445. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4446. "type": "community_bridge"
  4447. }
  4448. ],
  4449. "time": "2024-10-29T13:46:07+00:00"
  4450. },
  4451. {
  4452. "name": "markrogoyski/math-php",
  4453. "version": "v2.10.0",
  4454. "source": {
  4455. "type": "git",
  4456. "url": "https://github.com/markrogoyski/math-php.git",
  4457. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4458. },
  4459. "dist": {
  4460. "type": "zip",
  4461. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4462. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4463. "shasum": ""
  4464. },
  4465. "require": {
  4466. "ext-json": "*",
  4467. "php": ">=7.2.0"
  4468. },
  4469. "require-dev": {
  4470. "php-coveralls/php-coveralls": "^2.0",
  4471. "php-parallel-lint/php-parallel-lint": "^1.2",
  4472. "phploc/phploc": "*",
  4473. "phpmd/phpmd": "^2.6",
  4474. "phpstan/phpstan": "^1.10",
  4475. "phpunit/phpunit": "^8.5",
  4476. "squizlabs/php_codesniffer": "3.*"
  4477. },
  4478. "type": "library",
  4479. "autoload": {
  4480. "psr-4": {
  4481. "MathPHP\\": "src/"
  4482. }
  4483. },
  4484. "notification-url": "https://packagist.org/downloads/",
  4485. "license": [
  4486. "MIT"
  4487. ],
  4488. "authors": [
  4489. {
  4490. "name": "Mark Rogoyski",
  4491. "email": "mark@rogoyski.com",
  4492. "homepage": "https://github.com/markrogoyski",
  4493. "role": "Lead developer"
  4494. },
  4495. {
  4496. "name": "Kevin Nowaczyk",
  4497. "homepage": "https://github.com/Beakerboy",
  4498. "role": "Developer"
  4499. },
  4500. {
  4501. "name": "MathPHP Community of Contributors",
  4502. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4503. }
  4504. ],
  4505. "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",
  4506. "homepage": "https://github.com/markrogoyski/math-php/",
  4507. "keywords": [
  4508. "algebra",
  4509. "combinatorics",
  4510. "distributions",
  4511. "linear algebra",
  4512. "math",
  4513. "mathematics",
  4514. "matrix",
  4515. "numerical analysis",
  4516. "probability",
  4517. "regressions",
  4518. "statistics"
  4519. ],
  4520. "support": {
  4521. "issues": "https://github.com/markrogoyski/math-php/issues",
  4522. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4523. },
  4524. "time": "2024-04-17T00:09:51+00:00"
  4525. },
  4526. {
  4527. "name": "monolog/monolog",
  4528. "version": "3.7.0",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/Seldaek/monolog.git",
  4532. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4537. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4538. "shasum": ""
  4539. },
  4540. "require": {
  4541. "php": ">=8.1",
  4542. "psr/log": "^2.0 || ^3.0"
  4543. },
  4544. "provide": {
  4545. "psr/log-implementation": "3.0.0"
  4546. },
  4547. "require-dev": {
  4548. "aws/aws-sdk-php": "^3.0",
  4549. "doctrine/couchdb": "~1.0@dev",
  4550. "elasticsearch/elasticsearch": "^7 || ^8",
  4551. "ext-json": "*",
  4552. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4553. "guzzlehttp/guzzle": "^7.4.5",
  4554. "guzzlehttp/psr7": "^2.2",
  4555. "mongodb/mongodb": "^1.8",
  4556. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4557. "phpstan/phpstan": "^1.9",
  4558. "phpstan/phpstan-deprecation-rules": "^1.0",
  4559. "phpstan/phpstan-strict-rules": "^1.4",
  4560. "phpunit/phpunit": "^10.5.17",
  4561. "predis/predis": "^1.1 || ^2",
  4562. "ruflin/elastica": "^7",
  4563. "symfony/mailer": "^5.4 || ^6",
  4564. "symfony/mime": "^5.4 || ^6"
  4565. },
  4566. "suggest": {
  4567. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4568. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4569. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4570. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4571. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4572. "ext-mbstring": "Allow to work properly with unicode symbols",
  4573. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4574. "ext-openssl": "Required to send log messages using SSL",
  4575. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4576. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4577. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4578. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4579. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4580. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4581. },
  4582. "type": "library",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-main": "3.x-dev"
  4586. }
  4587. },
  4588. "autoload": {
  4589. "psr-4": {
  4590. "Monolog\\": "src/Monolog"
  4591. }
  4592. },
  4593. "notification-url": "https://packagist.org/downloads/",
  4594. "license": [
  4595. "MIT"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Jordi Boggiano",
  4600. "email": "j.boggiano@seld.be",
  4601. "homepage": "https://seld.be"
  4602. }
  4603. ],
  4604. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4605. "homepage": "https://github.com/Seldaek/monolog",
  4606. "keywords": [
  4607. "log",
  4608. "logging",
  4609. "psr-3"
  4610. ],
  4611. "support": {
  4612. "issues": "https://github.com/Seldaek/monolog/issues",
  4613. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4614. },
  4615. "funding": [
  4616. {
  4617. "url": "https://github.com/Seldaek",
  4618. "type": "github"
  4619. },
  4620. {
  4621. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4622. "type": "tidelift"
  4623. }
  4624. ],
  4625. "time": "2024-06-28T09:40:51+00:00"
  4626. },
  4627. {
  4628. "name": "nesbot/carbon",
  4629. "version": "2.72.5",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://github.com/briannesbitt/Carbon.git",
  4633. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4638. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4639. "shasum": ""
  4640. },
  4641. "require": {
  4642. "carbonphp/carbon-doctrine-types": "*",
  4643. "ext-json": "*",
  4644. "php": "^7.1.8 || ^8.0",
  4645. "psr/clock": "^1.0",
  4646. "symfony/polyfill-mbstring": "^1.0",
  4647. "symfony/polyfill-php80": "^1.16",
  4648. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4649. },
  4650. "provide": {
  4651. "psr/clock-implementation": "1.0"
  4652. },
  4653. "require-dev": {
  4654. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4655. "doctrine/orm": "^2.7 || ^3.0",
  4656. "friendsofphp/php-cs-fixer": "^3.0",
  4657. "kylekatarnls/multi-tester": "^2.0",
  4658. "ondrejmirtes/better-reflection": "*",
  4659. "phpmd/phpmd": "^2.9",
  4660. "phpstan/extension-installer": "^1.0",
  4661. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4662. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4663. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4664. "squizlabs/php_codesniffer": "^3.4"
  4665. },
  4666. "bin": [
  4667. "bin/carbon"
  4668. ],
  4669. "type": "library",
  4670. "extra": {
  4671. "branch-alias": {
  4672. "dev-master": "3.x-dev",
  4673. "dev-2.x": "2.x-dev"
  4674. },
  4675. "laravel": {
  4676. "providers": [
  4677. "Carbon\\Laravel\\ServiceProvider"
  4678. ]
  4679. },
  4680. "phpstan": {
  4681. "includes": [
  4682. "extension.neon"
  4683. ]
  4684. }
  4685. },
  4686. "autoload": {
  4687. "psr-4": {
  4688. "Carbon\\": "src/Carbon/"
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Brian Nesbitt",
  4698. "email": "brian@nesbot.com",
  4699. "homepage": "https://markido.com"
  4700. },
  4701. {
  4702. "name": "kylekatarnls",
  4703. "homepage": "https://github.com/kylekatarnls"
  4704. }
  4705. ],
  4706. "description": "An API extension for DateTime that supports 281 different languages.",
  4707. "homepage": "https://carbon.nesbot.com",
  4708. "keywords": [
  4709. "date",
  4710. "datetime",
  4711. "time"
  4712. ],
  4713. "support": {
  4714. "docs": "https://carbon.nesbot.com/docs",
  4715. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4716. "source": "https://github.com/briannesbitt/Carbon"
  4717. },
  4718. "funding": [
  4719. {
  4720. "url": "https://github.com/sponsors/kylekatarnls",
  4721. "type": "github"
  4722. },
  4723. {
  4724. "url": "https://opencollective.com/Carbon#sponsor",
  4725. "type": "opencollective"
  4726. },
  4727. {
  4728. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4729. "type": "tidelift"
  4730. }
  4731. ],
  4732. "time": "2024-06-03T19:18:41+00:00"
  4733. },
  4734. {
  4735. "name": "nikic/fast-route",
  4736. "version": "v1.3.0",
  4737. "source": {
  4738. "type": "git",
  4739. "url": "https://github.com/nikic/FastRoute.git",
  4740. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4741. },
  4742. "dist": {
  4743. "type": "zip",
  4744. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4745. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4746. "shasum": ""
  4747. },
  4748. "require": {
  4749. "php": ">=5.4.0"
  4750. },
  4751. "require-dev": {
  4752. "phpunit/phpunit": "^4.8.35|~5.7"
  4753. },
  4754. "type": "library",
  4755. "autoload": {
  4756. "files": [
  4757. "src/functions.php"
  4758. ],
  4759. "psr-4": {
  4760. "FastRoute\\": "src/"
  4761. }
  4762. },
  4763. "notification-url": "https://packagist.org/downloads/",
  4764. "license": [
  4765. "BSD-3-Clause"
  4766. ],
  4767. "authors": [
  4768. {
  4769. "name": "Nikita Popov",
  4770. "email": "nikic@php.net"
  4771. }
  4772. ],
  4773. "description": "Fast request router for PHP",
  4774. "keywords": [
  4775. "router",
  4776. "routing"
  4777. ],
  4778. "support": {
  4779. "issues": "https://github.com/nikic/FastRoute/issues",
  4780. "source": "https://github.com/nikic/FastRoute/tree/master"
  4781. },
  4782. "time": "2018-02-13T20:26:39+00:00"
  4783. },
  4784. {
  4785. "name": "nikic/php-parser",
  4786. "version": "v4.19.4",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/nikic/PHP-Parser.git",
  4790. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4795. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4796. "shasum": ""
  4797. },
  4798. "require": {
  4799. "ext-tokenizer": "*",
  4800. "php": ">=7.1"
  4801. },
  4802. "require-dev": {
  4803. "ircmaxell/php-yacc": "^0.0.7",
  4804. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4805. },
  4806. "bin": [
  4807. "bin/php-parse"
  4808. ],
  4809. "type": "library",
  4810. "extra": {
  4811. "branch-alias": {
  4812. "dev-master": "4.9-dev"
  4813. }
  4814. },
  4815. "autoload": {
  4816. "psr-4": {
  4817. "PhpParser\\": "lib/PhpParser"
  4818. }
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "BSD-3-Clause"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Nikita Popov"
  4827. }
  4828. ],
  4829. "description": "A PHP parser written in PHP",
  4830. "keywords": [
  4831. "parser",
  4832. "php"
  4833. ],
  4834. "support": {
  4835. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4836. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4837. },
  4838. "time": "2024-09-29T15:01:53+00:00"
  4839. },
  4840. {
  4841. "name": "php-di/phpdoc-reader",
  4842. "version": "2.2.1",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4846. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4851. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "php": ">=7.2.0"
  4856. },
  4857. "require-dev": {
  4858. "mnapoli/hard-mode": "~0.3.0",
  4859. "phpunit/phpunit": "^8.5|^9.0"
  4860. },
  4861. "type": "library",
  4862. "autoload": {
  4863. "psr-4": {
  4864. "PhpDocReader\\": "src/PhpDocReader"
  4865. }
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4872. "keywords": [
  4873. "phpdoc",
  4874. "reflection"
  4875. ],
  4876. "support": {
  4877. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4878. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4879. },
  4880. "time": "2020-10-12T12:39:22+00:00"
  4881. },
  4882. {
  4883. "name": "phpoption/phpoption",
  4884. "version": "1.9.3",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/schmittjoh/php-option.git",
  4888. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4893. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": "^7.2.5 || ^8.0"
  4898. },
  4899. "require-dev": {
  4900. "bamarni/composer-bin-plugin": "^1.8.2",
  4901. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4902. },
  4903. "type": "library",
  4904. "extra": {
  4905. "bamarni-bin": {
  4906. "bin-links": true,
  4907. "forward-command": false
  4908. },
  4909. "branch-alias": {
  4910. "dev-master": "1.9-dev"
  4911. }
  4912. },
  4913. "autoload": {
  4914. "psr-4": {
  4915. "PhpOption\\": "src/PhpOption/"
  4916. }
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "Apache-2.0"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Johannes M. Schmitt",
  4925. "email": "schmittjoh@gmail.com",
  4926. "homepage": "https://github.com/schmittjoh"
  4927. },
  4928. {
  4929. "name": "Graham Campbell",
  4930. "email": "hello@gjcampbell.co.uk",
  4931. "homepage": "https://github.com/GrahamCampbell"
  4932. }
  4933. ],
  4934. "description": "Option Type for PHP",
  4935. "keywords": [
  4936. "language",
  4937. "option",
  4938. "php",
  4939. "type"
  4940. ],
  4941. "support": {
  4942. "issues": "https://github.com/schmittjoh/php-option/issues",
  4943. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4944. },
  4945. "funding": [
  4946. {
  4947. "url": "https://github.com/GrahamCampbell",
  4948. "type": "github"
  4949. },
  4950. {
  4951. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4952. "type": "tidelift"
  4953. }
  4954. ],
  4955. "time": "2024-07-20T21:41:07+00:00"
  4956. },
  4957. {
  4958. "name": "psr/cache",
  4959. "version": "3.0.0",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://github.com/php-fig/cache.git",
  4963. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4964. },
  4965. "dist": {
  4966. "type": "zip",
  4967. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4968. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4969. "shasum": ""
  4970. },
  4971. "require": {
  4972. "php": ">=8.0.0"
  4973. },
  4974. "type": "library",
  4975. "extra": {
  4976. "branch-alias": {
  4977. "dev-master": "1.0.x-dev"
  4978. }
  4979. },
  4980. "autoload": {
  4981. "psr-4": {
  4982. "Psr\\Cache\\": "src/"
  4983. }
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "PHP-FIG",
  4992. "homepage": "https://www.php-fig.org/"
  4993. }
  4994. ],
  4995. "description": "Common interface for caching libraries",
  4996. "keywords": [
  4997. "cache",
  4998. "psr",
  4999. "psr-6"
  5000. ],
  5001. "support": {
  5002. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5003. },
  5004. "time": "2021-02-03T23:26:27+00:00"
  5005. },
  5006. {
  5007. "name": "psr/clock",
  5008. "version": "1.0.0",
  5009. "source": {
  5010. "type": "git",
  5011. "url": "https://github.com/php-fig/clock.git",
  5012. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5013. },
  5014. "dist": {
  5015. "type": "zip",
  5016. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5017. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5018. "shasum": ""
  5019. },
  5020. "require": {
  5021. "php": "^7.0 || ^8.0"
  5022. },
  5023. "type": "library",
  5024. "autoload": {
  5025. "psr-4": {
  5026. "Psr\\Clock\\": "src/"
  5027. }
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "MIT"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "PHP-FIG",
  5036. "homepage": "https://www.php-fig.org/"
  5037. }
  5038. ],
  5039. "description": "Common interface for reading the clock.",
  5040. "homepage": "https://github.com/php-fig/clock",
  5041. "keywords": [
  5042. "clock",
  5043. "now",
  5044. "psr",
  5045. "psr-20",
  5046. "time"
  5047. ],
  5048. "support": {
  5049. "issues": "https://github.com/php-fig/clock/issues",
  5050. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5051. },
  5052. "time": "2022-11-25T14:36:26+00:00"
  5053. },
  5054. {
  5055. "name": "psr/container",
  5056. "version": "2.0.2",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://github.com/php-fig/container.git",
  5060. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5065. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5066. "shasum": ""
  5067. },
  5068. "require": {
  5069. "php": ">=7.4.0"
  5070. },
  5071. "type": "library",
  5072. "extra": {
  5073. "branch-alias": {
  5074. "dev-master": "2.0.x-dev"
  5075. }
  5076. },
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Psr\\Container\\": "src/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "PHP-FIG",
  5089. "homepage": "https://www.php-fig.org/"
  5090. }
  5091. ],
  5092. "description": "Common Container Interface (PHP FIG PSR-11)",
  5093. "homepage": "https://github.com/php-fig/container",
  5094. "keywords": [
  5095. "PSR-11",
  5096. "container",
  5097. "container-interface",
  5098. "container-interop",
  5099. "psr"
  5100. ],
  5101. "support": {
  5102. "issues": "https://github.com/php-fig/container/issues",
  5103. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5104. },
  5105. "time": "2021-11-05T16:47:00+00:00"
  5106. },
  5107. {
  5108. "name": "psr/event-dispatcher",
  5109. "version": "1.0.0",
  5110. "source": {
  5111. "type": "git",
  5112. "url": "https://github.com/php-fig/event-dispatcher.git",
  5113. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5114. },
  5115. "dist": {
  5116. "type": "zip",
  5117. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5118. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5119. "shasum": ""
  5120. },
  5121. "require": {
  5122. "php": ">=7.2.0"
  5123. },
  5124. "type": "library",
  5125. "extra": {
  5126. "branch-alias": {
  5127. "dev-master": "1.0.x-dev"
  5128. }
  5129. },
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Psr\\EventDispatcher\\": "src/"
  5133. }
  5134. },
  5135. "notification-url": "https://packagist.org/downloads/",
  5136. "license": [
  5137. "MIT"
  5138. ],
  5139. "authors": [
  5140. {
  5141. "name": "PHP-FIG",
  5142. "homepage": "http://www.php-fig.org/"
  5143. }
  5144. ],
  5145. "description": "Standard interfaces for event handling.",
  5146. "keywords": [
  5147. "events",
  5148. "psr",
  5149. "psr-14"
  5150. ],
  5151. "support": {
  5152. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5153. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5154. },
  5155. "time": "2019-01-08T18:20:26+00:00"
  5156. },
  5157. {
  5158. "name": "psr/http-client",
  5159. "version": "1.0.3",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/php-fig/http-client.git",
  5163. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5168. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "php": "^7.0 || ^8.0",
  5173. "psr/http-message": "^1.0 || ^2.0"
  5174. },
  5175. "type": "library",
  5176. "extra": {
  5177. "branch-alias": {
  5178. "dev-master": "1.0.x-dev"
  5179. }
  5180. },
  5181. "autoload": {
  5182. "psr-4": {
  5183. "Psr\\Http\\Client\\": "src/"
  5184. }
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "PHP-FIG",
  5193. "homepage": "https://www.php-fig.org/"
  5194. }
  5195. ],
  5196. "description": "Common interface for HTTP clients",
  5197. "homepage": "https://github.com/php-fig/http-client",
  5198. "keywords": [
  5199. "http",
  5200. "http-client",
  5201. "psr",
  5202. "psr-18"
  5203. ],
  5204. "support": {
  5205. "source": "https://github.com/php-fig/http-client"
  5206. },
  5207. "time": "2023-09-23T14:17:50+00:00"
  5208. },
  5209. {
  5210. "name": "psr/http-factory",
  5211. "version": "1.1.0",
  5212. "source": {
  5213. "type": "git",
  5214. "url": "https://github.com/php-fig/http-factory.git",
  5215. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5216. },
  5217. "dist": {
  5218. "type": "zip",
  5219. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5220. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5221. "shasum": ""
  5222. },
  5223. "require": {
  5224. "php": ">=7.1",
  5225. "psr/http-message": "^1.0 || ^2.0"
  5226. },
  5227. "type": "library",
  5228. "extra": {
  5229. "branch-alias": {
  5230. "dev-master": "1.0.x-dev"
  5231. }
  5232. },
  5233. "autoload": {
  5234. "psr-4": {
  5235. "Psr\\Http\\Message\\": "src/"
  5236. }
  5237. },
  5238. "notification-url": "https://packagist.org/downloads/",
  5239. "license": [
  5240. "MIT"
  5241. ],
  5242. "authors": [
  5243. {
  5244. "name": "PHP-FIG",
  5245. "homepage": "https://www.php-fig.org/"
  5246. }
  5247. ],
  5248. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5249. "keywords": [
  5250. "factory",
  5251. "http",
  5252. "message",
  5253. "psr",
  5254. "psr-17",
  5255. "psr-7",
  5256. "request",
  5257. "response"
  5258. ],
  5259. "support": {
  5260. "source": "https://github.com/php-fig/http-factory"
  5261. },
  5262. "time": "2024-04-15T12:06:14+00:00"
  5263. },
  5264. {
  5265. "name": "psr/http-message",
  5266. "version": "2.0",
  5267. "source": {
  5268. "type": "git",
  5269. "url": "https://github.com/php-fig/http-message.git",
  5270. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5271. },
  5272. "dist": {
  5273. "type": "zip",
  5274. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5275. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5276. "shasum": ""
  5277. },
  5278. "require": {
  5279. "php": "^7.2 || ^8.0"
  5280. },
  5281. "type": "library",
  5282. "extra": {
  5283. "branch-alias": {
  5284. "dev-master": "2.0.x-dev"
  5285. }
  5286. },
  5287. "autoload": {
  5288. "psr-4": {
  5289. "Psr\\Http\\Message\\": "src/"
  5290. }
  5291. },
  5292. "notification-url": "https://packagist.org/downloads/",
  5293. "license": [
  5294. "MIT"
  5295. ],
  5296. "authors": [
  5297. {
  5298. "name": "PHP-FIG",
  5299. "homepage": "https://www.php-fig.org/"
  5300. }
  5301. ],
  5302. "description": "Common interface for HTTP messages",
  5303. "homepage": "https://github.com/php-fig/http-message",
  5304. "keywords": [
  5305. "http",
  5306. "http-message",
  5307. "psr",
  5308. "psr-7",
  5309. "request",
  5310. "response"
  5311. ],
  5312. "support": {
  5313. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5314. },
  5315. "time": "2023-04-04T09:54:51+00:00"
  5316. },
  5317. {
  5318. "name": "psr/http-server-handler",
  5319. "version": "1.0.2",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/php-fig/http-server-handler.git",
  5323. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5328. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "php": ">=7.0",
  5333. "psr/http-message": "^1.0 || ^2.0"
  5334. },
  5335. "type": "library",
  5336. "extra": {
  5337. "branch-alias": {
  5338. "dev-master": "1.0.x-dev"
  5339. }
  5340. },
  5341. "autoload": {
  5342. "psr-4": {
  5343. "Psr\\Http\\Server\\": "src/"
  5344. }
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "PHP-FIG",
  5353. "homepage": "https://www.php-fig.org/"
  5354. }
  5355. ],
  5356. "description": "Common interface for HTTP server-side request handler",
  5357. "keywords": [
  5358. "handler",
  5359. "http",
  5360. "http-interop",
  5361. "psr",
  5362. "psr-15",
  5363. "psr-7",
  5364. "request",
  5365. "response",
  5366. "server"
  5367. ],
  5368. "support": {
  5369. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5370. },
  5371. "time": "2023-04-10T20:06:20+00:00"
  5372. },
  5373. {
  5374. "name": "psr/http-server-middleware",
  5375. "version": "1.0.2",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/php-fig/http-server-middleware.git",
  5379. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5384. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "php": ">=7.0",
  5389. "psr/http-message": "^1.0 || ^2.0",
  5390. "psr/http-server-handler": "^1.0"
  5391. },
  5392. "type": "library",
  5393. "extra": {
  5394. "branch-alias": {
  5395. "dev-master": "1.0.x-dev"
  5396. }
  5397. },
  5398. "autoload": {
  5399. "psr-4": {
  5400. "Psr\\Http\\Server\\": "src/"
  5401. }
  5402. },
  5403. "notification-url": "https://packagist.org/downloads/",
  5404. "license": [
  5405. "MIT"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "PHP-FIG",
  5410. "homepage": "https://www.php-fig.org/"
  5411. }
  5412. ],
  5413. "description": "Common interface for HTTP server-side middleware",
  5414. "keywords": [
  5415. "http",
  5416. "http-interop",
  5417. "middleware",
  5418. "psr",
  5419. "psr-15",
  5420. "psr-7",
  5421. "request",
  5422. "response"
  5423. ],
  5424. "support": {
  5425. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5426. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5427. },
  5428. "time": "2023-04-11T06:14:47+00:00"
  5429. },
  5430. {
  5431. "name": "psr/log",
  5432. "version": "3.0.2",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://github.com/php-fig/log.git",
  5436. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5441. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5442. "shasum": ""
  5443. },
  5444. "require": {
  5445. "php": ">=8.0.0"
  5446. },
  5447. "type": "library",
  5448. "extra": {
  5449. "branch-alias": {
  5450. "dev-master": "3.x-dev"
  5451. }
  5452. },
  5453. "autoload": {
  5454. "psr-4": {
  5455. "Psr\\Log\\": "src"
  5456. }
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "PHP-FIG",
  5465. "homepage": "https://www.php-fig.org/"
  5466. }
  5467. ],
  5468. "description": "Common interface for logging libraries",
  5469. "homepage": "https://github.com/php-fig/log",
  5470. "keywords": [
  5471. "log",
  5472. "psr",
  5473. "psr-3"
  5474. ],
  5475. "support": {
  5476. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5477. },
  5478. "time": "2024-09-11T13:17:53+00:00"
  5479. },
  5480. {
  5481. "name": "psr/simple-cache",
  5482. "version": "3.0.0",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/php-fig/simple-cache.git",
  5486. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5491. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5492. "shasum": ""
  5493. },
  5494. "require": {
  5495. "php": ">=8.0.0"
  5496. },
  5497. "type": "library",
  5498. "extra": {
  5499. "branch-alias": {
  5500. "dev-master": "3.0.x-dev"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "psr-4": {
  5505. "Psr\\SimpleCache\\": "src/"
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "PHP-FIG",
  5515. "homepage": "https://www.php-fig.org/"
  5516. }
  5517. ],
  5518. "description": "Common interfaces for simple caching",
  5519. "keywords": [
  5520. "cache",
  5521. "caching",
  5522. "psr",
  5523. "psr-16",
  5524. "simple-cache"
  5525. ],
  5526. "support": {
  5527. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5528. },
  5529. "time": "2021-10-29T13:26:27+00:00"
  5530. },
  5531. {
  5532. "name": "ralouphie/getallheaders",
  5533. "version": "3.0.3",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/ralouphie/getallheaders.git",
  5537. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5542. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=5.6"
  5547. },
  5548. "require-dev": {
  5549. "php-coveralls/php-coveralls": "^2.1",
  5550. "phpunit/phpunit": "^5 || ^6.5"
  5551. },
  5552. "type": "library",
  5553. "autoload": {
  5554. "files": [
  5555. "src/getallheaders.php"
  5556. ]
  5557. },
  5558. "notification-url": "https://packagist.org/downloads/",
  5559. "license": [
  5560. "MIT"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Ralph Khattar",
  5565. "email": "ralph.khattar@gmail.com"
  5566. }
  5567. ],
  5568. "description": "A polyfill for getallheaders.",
  5569. "support": {
  5570. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5571. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5572. },
  5573. "time": "2019-03-08T08:55:37+00:00"
  5574. },
  5575. {
  5576. "name": "swow/psr7-plus",
  5577. "version": "v1.1.2",
  5578. "source": {
  5579. "type": "git",
  5580. "url": "https://github.com/swow/psr7-plus.git",
  5581. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5582. },
  5583. "dist": {
  5584. "type": "zip",
  5585. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5586. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5587. "shasum": ""
  5588. },
  5589. "require": {
  5590. "php": ">=8.0",
  5591. "psr/http-client": "^1.0",
  5592. "psr/http-factory": "^1.0",
  5593. "psr/http-message": "^1.1|^2.0"
  5594. },
  5595. "type": "library",
  5596. "autoload": {
  5597. "psr-4": {
  5598. "Swow\\Psr7\\Message\\": "src/Message/"
  5599. }
  5600. },
  5601. "notification-url": "https://packagist.org/downloads/",
  5602. "license": [
  5603. "Apache-2.0"
  5604. ],
  5605. "authors": [
  5606. {
  5607. "name": "twose",
  5608. "email": "twosee@php.net"
  5609. }
  5610. ],
  5611. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5612. "keywords": [
  5613. "http",
  5614. "psr17",
  5615. "psr7",
  5616. "swow",
  5617. "websocket"
  5618. ],
  5619. "support": {
  5620. "issues": "https://github.com/swow/swow",
  5621. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5622. },
  5623. "time": "2023-06-15T09:18:11+00:00"
  5624. },
  5625. {
  5626. "name": "symfony/console",
  5627. "version": "v6.4.14",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/symfony/console.git",
  5631. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5636. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "php": ">=8.1",
  5641. "symfony/deprecation-contracts": "^2.5|^3",
  5642. "symfony/polyfill-mbstring": "~1.0",
  5643. "symfony/service-contracts": "^2.5|^3",
  5644. "symfony/string": "^5.4|^6.0|^7.0"
  5645. },
  5646. "conflict": {
  5647. "symfony/dependency-injection": "<5.4",
  5648. "symfony/dotenv": "<5.4",
  5649. "symfony/event-dispatcher": "<5.4",
  5650. "symfony/lock": "<5.4",
  5651. "symfony/process": "<5.4"
  5652. },
  5653. "provide": {
  5654. "psr/log-implementation": "1.0|2.0|3.0"
  5655. },
  5656. "require-dev": {
  5657. "psr/log": "^1|^2|^3",
  5658. "symfony/config": "^5.4|^6.0|^7.0",
  5659. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5660. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5661. "symfony/http-foundation": "^6.4|^7.0",
  5662. "symfony/http-kernel": "^6.4|^7.0",
  5663. "symfony/lock": "^5.4|^6.0|^7.0",
  5664. "symfony/messenger": "^5.4|^6.0|^7.0",
  5665. "symfony/process": "^5.4|^6.0|^7.0",
  5666. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5667. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5668. },
  5669. "type": "library",
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Symfony\\Component\\Console\\": ""
  5673. },
  5674. "exclude-from-classmap": [
  5675. "/Tests/"
  5676. ]
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "Fabien Potencier",
  5685. "email": "fabien@symfony.com"
  5686. },
  5687. {
  5688. "name": "Symfony Community",
  5689. "homepage": "https://symfony.com/contributors"
  5690. }
  5691. ],
  5692. "description": "Eases the creation of beautiful and testable command line interfaces",
  5693. "homepage": "https://symfony.com",
  5694. "keywords": [
  5695. "cli",
  5696. "command-line",
  5697. "console",
  5698. "terminal"
  5699. ],
  5700. "support": {
  5701. "source": "https://github.com/symfony/console/tree/v6.4.14"
  5702. },
  5703. "funding": [
  5704. {
  5705. "url": "https://symfony.com/sponsor",
  5706. "type": "custom"
  5707. },
  5708. {
  5709. "url": "https://github.com/fabpot",
  5710. "type": "github"
  5711. },
  5712. {
  5713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5714. "type": "tidelift"
  5715. }
  5716. ],
  5717. "time": "2024-11-05T15:34:40+00:00"
  5718. },
  5719. {
  5720. "name": "symfony/deprecation-contracts",
  5721. "version": "v3.5.0",
  5722. "source": {
  5723. "type": "git",
  5724. "url": "https://github.com/symfony/deprecation-contracts.git",
  5725. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5726. },
  5727. "dist": {
  5728. "type": "zip",
  5729. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5730. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5731. "shasum": ""
  5732. },
  5733. "require": {
  5734. "php": ">=8.1"
  5735. },
  5736. "type": "library",
  5737. "extra": {
  5738. "branch-alias": {
  5739. "dev-main": "3.5-dev"
  5740. },
  5741. "thanks": {
  5742. "name": "symfony/contracts",
  5743. "url": "https://github.com/symfony/contracts"
  5744. }
  5745. },
  5746. "autoload": {
  5747. "files": [
  5748. "function.php"
  5749. ]
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Nicolas Grekas",
  5758. "email": "p@tchwork.com"
  5759. },
  5760. {
  5761. "name": "Symfony Community",
  5762. "homepage": "https://symfony.com/contributors"
  5763. }
  5764. ],
  5765. "description": "A generic function and convention to trigger deprecation notices",
  5766. "homepage": "https://symfony.com",
  5767. "support": {
  5768. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5769. },
  5770. "funding": [
  5771. {
  5772. "url": "https://symfony.com/sponsor",
  5773. "type": "custom"
  5774. },
  5775. {
  5776. "url": "https://github.com/fabpot",
  5777. "type": "github"
  5778. },
  5779. {
  5780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5781. "type": "tidelift"
  5782. }
  5783. ],
  5784. "time": "2024-04-18T09:32:20+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/finder",
  5788. "version": "v6.4.13",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/finder.git",
  5792. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5797. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": ">=8.1"
  5802. },
  5803. "require-dev": {
  5804. "symfony/filesystem": "^6.0|^7.0"
  5805. },
  5806. "type": "library",
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Symfony\\Component\\Finder\\": ""
  5810. },
  5811. "exclude-from-classmap": [
  5812. "/Tests/"
  5813. ]
  5814. },
  5815. "notification-url": "https://packagist.org/downloads/",
  5816. "license": [
  5817. "MIT"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Fabien Potencier",
  5822. "email": "fabien@symfony.com"
  5823. },
  5824. {
  5825. "name": "Symfony Community",
  5826. "homepage": "https://symfony.com/contributors"
  5827. }
  5828. ],
  5829. "description": "Finds files and directories via an intuitive fluent interface",
  5830. "homepage": "https://symfony.com",
  5831. "support": {
  5832. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  5833. },
  5834. "funding": [
  5835. {
  5836. "url": "https://symfony.com/sponsor",
  5837. "type": "custom"
  5838. },
  5839. {
  5840. "url": "https://github.com/fabpot",
  5841. "type": "github"
  5842. },
  5843. {
  5844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5845. "type": "tidelift"
  5846. }
  5847. ],
  5848. "time": "2024-10-01T08:30:56+00:00"
  5849. },
  5850. {
  5851. "name": "symfony/polyfill-ctype",
  5852. "version": "v1.31.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/symfony/polyfill-ctype.git",
  5856. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5861. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=7.2"
  5866. },
  5867. "provide": {
  5868. "ext-ctype": "*"
  5869. },
  5870. "suggest": {
  5871. "ext-ctype": "For best performance"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "thanks": {
  5876. "name": "symfony/polyfill",
  5877. "url": "https://github.com/symfony/polyfill"
  5878. }
  5879. },
  5880. "autoload": {
  5881. "files": [
  5882. "bootstrap.php"
  5883. ],
  5884. "psr-4": {
  5885. "Symfony\\Polyfill\\Ctype\\": ""
  5886. }
  5887. },
  5888. "notification-url": "https://packagist.org/downloads/",
  5889. "license": [
  5890. "MIT"
  5891. ],
  5892. "authors": [
  5893. {
  5894. "name": "Gert de Pagter",
  5895. "email": "BackEndTea@gmail.com"
  5896. },
  5897. {
  5898. "name": "Symfony Community",
  5899. "homepage": "https://symfony.com/contributors"
  5900. }
  5901. ],
  5902. "description": "Symfony polyfill for ctype functions",
  5903. "homepage": "https://symfony.com",
  5904. "keywords": [
  5905. "compatibility",
  5906. "ctype",
  5907. "polyfill",
  5908. "portable"
  5909. ],
  5910. "support": {
  5911. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5912. },
  5913. "funding": [
  5914. {
  5915. "url": "https://symfony.com/sponsor",
  5916. "type": "custom"
  5917. },
  5918. {
  5919. "url": "https://github.com/fabpot",
  5920. "type": "github"
  5921. },
  5922. {
  5923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5924. "type": "tidelift"
  5925. }
  5926. ],
  5927. "time": "2024-09-09T11:45:10+00:00"
  5928. },
  5929. {
  5930. "name": "symfony/polyfill-intl-grapheme",
  5931. "version": "v1.31.0",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5935. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5940. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5941. "shasum": ""
  5942. },
  5943. "require": {
  5944. "php": ">=7.2"
  5945. },
  5946. "suggest": {
  5947. "ext-intl": "For best performance"
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "thanks": {
  5952. "name": "symfony/polyfill",
  5953. "url": "https://github.com/symfony/polyfill"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "files": [
  5958. "bootstrap.php"
  5959. ],
  5960. "psr-4": {
  5961. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Nicolas Grekas",
  5971. "email": "p@tchwork.com"
  5972. },
  5973. {
  5974. "name": "Symfony Community",
  5975. "homepage": "https://symfony.com/contributors"
  5976. }
  5977. ],
  5978. "description": "Symfony polyfill for intl's grapheme_* functions",
  5979. "homepage": "https://symfony.com",
  5980. "keywords": [
  5981. "compatibility",
  5982. "grapheme",
  5983. "intl",
  5984. "polyfill",
  5985. "portable",
  5986. "shim"
  5987. ],
  5988. "support": {
  5989. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5990. },
  5991. "funding": [
  5992. {
  5993. "url": "https://symfony.com/sponsor",
  5994. "type": "custom"
  5995. },
  5996. {
  5997. "url": "https://github.com/fabpot",
  5998. "type": "github"
  5999. },
  6000. {
  6001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6002. "type": "tidelift"
  6003. }
  6004. ],
  6005. "time": "2024-09-09T11:45:10+00:00"
  6006. },
  6007. {
  6008. "name": "symfony/polyfill-intl-normalizer",
  6009. "version": "v1.31.0",
  6010. "source": {
  6011. "type": "git",
  6012. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6013. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6014. },
  6015. "dist": {
  6016. "type": "zip",
  6017. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6018. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6019. "shasum": ""
  6020. },
  6021. "require": {
  6022. "php": ">=7.2"
  6023. },
  6024. "suggest": {
  6025. "ext-intl": "For best performance"
  6026. },
  6027. "type": "library",
  6028. "extra": {
  6029. "thanks": {
  6030. "name": "symfony/polyfill",
  6031. "url": "https://github.com/symfony/polyfill"
  6032. }
  6033. },
  6034. "autoload": {
  6035. "files": [
  6036. "bootstrap.php"
  6037. ],
  6038. "psr-4": {
  6039. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6040. },
  6041. "classmap": [
  6042. "Resources/stubs"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Nicolas Grekas",
  6052. "email": "p@tchwork.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6060. "homepage": "https://symfony.com",
  6061. "keywords": [
  6062. "compatibility",
  6063. "intl",
  6064. "normalizer",
  6065. "polyfill",
  6066. "portable",
  6067. "shim"
  6068. ],
  6069. "support": {
  6070. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6071. },
  6072. "funding": [
  6073. {
  6074. "url": "https://symfony.com/sponsor",
  6075. "type": "custom"
  6076. },
  6077. {
  6078. "url": "https://github.com/fabpot",
  6079. "type": "github"
  6080. },
  6081. {
  6082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6083. "type": "tidelift"
  6084. }
  6085. ],
  6086. "time": "2024-09-09T11:45:10+00:00"
  6087. },
  6088. {
  6089. "name": "symfony/polyfill-mbstring",
  6090. "version": "v1.31.0",
  6091. "source": {
  6092. "type": "git",
  6093. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6094. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6095. },
  6096. "dist": {
  6097. "type": "zip",
  6098. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6099. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6100. "shasum": ""
  6101. },
  6102. "require": {
  6103. "php": ">=7.2"
  6104. },
  6105. "provide": {
  6106. "ext-mbstring": "*"
  6107. },
  6108. "suggest": {
  6109. "ext-mbstring": "For best performance"
  6110. },
  6111. "type": "library",
  6112. "extra": {
  6113. "thanks": {
  6114. "name": "symfony/polyfill",
  6115. "url": "https://github.com/symfony/polyfill"
  6116. }
  6117. },
  6118. "autoload": {
  6119. "files": [
  6120. "bootstrap.php"
  6121. ],
  6122. "psr-4": {
  6123. "Symfony\\Polyfill\\Mbstring\\": ""
  6124. }
  6125. },
  6126. "notification-url": "https://packagist.org/downloads/",
  6127. "license": [
  6128. "MIT"
  6129. ],
  6130. "authors": [
  6131. {
  6132. "name": "Nicolas Grekas",
  6133. "email": "p@tchwork.com"
  6134. },
  6135. {
  6136. "name": "Symfony Community",
  6137. "homepage": "https://symfony.com/contributors"
  6138. }
  6139. ],
  6140. "description": "Symfony polyfill for the Mbstring extension",
  6141. "homepage": "https://symfony.com",
  6142. "keywords": [
  6143. "compatibility",
  6144. "mbstring",
  6145. "polyfill",
  6146. "portable",
  6147. "shim"
  6148. ],
  6149. "support": {
  6150. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6151. },
  6152. "funding": [
  6153. {
  6154. "url": "https://symfony.com/sponsor",
  6155. "type": "custom"
  6156. },
  6157. {
  6158. "url": "https://github.com/fabpot",
  6159. "type": "github"
  6160. },
  6161. {
  6162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6163. "type": "tidelift"
  6164. }
  6165. ],
  6166. "time": "2024-09-09T11:45:10+00:00"
  6167. },
  6168. {
  6169. "name": "symfony/polyfill-php80",
  6170. "version": "v1.31.0",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://github.com/symfony/polyfill-php80.git",
  6174. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6179. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6180. "shasum": ""
  6181. },
  6182. "require": {
  6183. "php": ">=7.2"
  6184. },
  6185. "type": "library",
  6186. "extra": {
  6187. "thanks": {
  6188. "name": "symfony/polyfill",
  6189. "url": "https://github.com/symfony/polyfill"
  6190. }
  6191. },
  6192. "autoload": {
  6193. "files": [
  6194. "bootstrap.php"
  6195. ],
  6196. "psr-4": {
  6197. "Symfony\\Polyfill\\Php80\\": ""
  6198. },
  6199. "classmap": [
  6200. "Resources/stubs"
  6201. ]
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "MIT"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "Ion Bazan",
  6210. "email": "ion.bazan@gmail.com"
  6211. },
  6212. {
  6213. "name": "Nicolas Grekas",
  6214. "email": "p@tchwork.com"
  6215. },
  6216. {
  6217. "name": "Symfony Community",
  6218. "homepage": "https://symfony.com/contributors"
  6219. }
  6220. ],
  6221. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6222. "homepage": "https://symfony.com",
  6223. "keywords": [
  6224. "compatibility",
  6225. "polyfill",
  6226. "portable",
  6227. "shim"
  6228. ],
  6229. "support": {
  6230. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://symfony.com/sponsor",
  6235. "type": "custom"
  6236. },
  6237. {
  6238. "url": "https://github.com/fabpot",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2024-09-09T11:45:10+00:00"
  6247. },
  6248. {
  6249. "name": "symfony/service-contracts",
  6250. "version": "v3.5.0",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/symfony/service-contracts.git",
  6254. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6259. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=8.1",
  6264. "psr/container": "^1.1|^2.0",
  6265. "symfony/deprecation-contracts": "^2.5|^3"
  6266. },
  6267. "conflict": {
  6268. "ext-psr": "<1.1|>=2"
  6269. },
  6270. "type": "library",
  6271. "extra": {
  6272. "branch-alias": {
  6273. "dev-main": "3.5-dev"
  6274. },
  6275. "thanks": {
  6276. "name": "symfony/contracts",
  6277. "url": "https://github.com/symfony/contracts"
  6278. }
  6279. },
  6280. "autoload": {
  6281. "psr-4": {
  6282. "Symfony\\Contracts\\Service\\": ""
  6283. },
  6284. "exclude-from-classmap": [
  6285. "/Test/"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Nicolas Grekas",
  6295. "email": "p@tchwork.com"
  6296. },
  6297. {
  6298. "name": "Symfony Community",
  6299. "homepage": "https://symfony.com/contributors"
  6300. }
  6301. ],
  6302. "description": "Generic abstractions related to writing services",
  6303. "homepage": "https://symfony.com",
  6304. "keywords": [
  6305. "abstractions",
  6306. "contracts",
  6307. "decoupling",
  6308. "interfaces",
  6309. "interoperability",
  6310. "standards"
  6311. ],
  6312. "support": {
  6313. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6314. },
  6315. "funding": [
  6316. {
  6317. "url": "https://symfony.com/sponsor",
  6318. "type": "custom"
  6319. },
  6320. {
  6321. "url": "https://github.com/fabpot",
  6322. "type": "github"
  6323. },
  6324. {
  6325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6326. "type": "tidelift"
  6327. }
  6328. ],
  6329. "time": "2024-04-18T09:32:20+00:00"
  6330. },
  6331. {
  6332. "name": "symfony/string",
  6333. "version": "v6.4.13",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://github.com/symfony/string.git",
  6337. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6342. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6343. "shasum": ""
  6344. },
  6345. "require": {
  6346. "php": ">=8.1",
  6347. "symfony/polyfill-ctype": "~1.8",
  6348. "symfony/polyfill-intl-grapheme": "~1.0",
  6349. "symfony/polyfill-intl-normalizer": "~1.0",
  6350. "symfony/polyfill-mbstring": "~1.0"
  6351. },
  6352. "conflict": {
  6353. "symfony/translation-contracts": "<2.5"
  6354. },
  6355. "require-dev": {
  6356. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6357. "symfony/http-client": "^5.4|^6.0|^7.0",
  6358. "symfony/intl": "^6.2|^7.0",
  6359. "symfony/translation-contracts": "^2.5|^3.0",
  6360. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6361. },
  6362. "type": "library",
  6363. "autoload": {
  6364. "files": [
  6365. "Resources/functions.php"
  6366. ],
  6367. "psr-4": {
  6368. "Symfony\\Component\\String\\": ""
  6369. },
  6370. "exclude-from-classmap": [
  6371. "/Tests/"
  6372. ]
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "MIT"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "Nicolas Grekas",
  6381. "email": "p@tchwork.com"
  6382. },
  6383. {
  6384. "name": "Symfony Community",
  6385. "homepage": "https://symfony.com/contributors"
  6386. }
  6387. ],
  6388. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6389. "homepage": "https://symfony.com",
  6390. "keywords": [
  6391. "grapheme",
  6392. "i18n",
  6393. "string",
  6394. "unicode",
  6395. "utf-8",
  6396. "utf8"
  6397. ],
  6398. "support": {
  6399. "source": "https://github.com/symfony/string/tree/v6.4.13"
  6400. },
  6401. "funding": [
  6402. {
  6403. "url": "https://symfony.com/sponsor",
  6404. "type": "custom"
  6405. },
  6406. {
  6407. "url": "https://github.com/fabpot",
  6408. "type": "github"
  6409. },
  6410. {
  6411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6412. "type": "tidelift"
  6413. }
  6414. ],
  6415. "time": "2024-09-25T14:18:03+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/translation",
  6419. "version": "v6.4.13",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/translation.git",
  6423. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6428. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": ">=8.1",
  6433. "symfony/deprecation-contracts": "^2.5|^3",
  6434. "symfony/polyfill-mbstring": "~1.0",
  6435. "symfony/translation-contracts": "^2.5|^3.0"
  6436. },
  6437. "conflict": {
  6438. "symfony/config": "<5.4",
  6439. "symfony/console": "<5.4",
  6440. "symfony/dependency-injection": "<5.4",
  6441. "symfony/http-client-contracts": "<2.5",
  6442. "symfony/http-kernel": "<5.4",
  6443. "symfony/service-contracts": "<2.5",
  6444. "symfony/twig-bundle": "<5.4",
  6445. "symfony/yaml": "<5.4"
  6446. },
  6447. "provide": {
  6448. "symfony/translation-implementation": "2.3|3.0"
  6449. },
  6450. "require-dev": {
  6451. "nikic/php-parser": "^4.18|^5.0",
  6452. "psr/log": "^1|^2|^3",
  6453. "symfony/config": "^5.4|^6.0|^7.0",
  6454. "symfony/console": "^5.4|^6.0|^7.0",
  6455. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6456. "symfony/finder": "^5.4|^6.0|^7.0",
  6457. "symfony/http-client-contracts": "^2.5|^3.0",
  6458. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6459. "symfony/intl": "^5.4|^6.0|^7.0",
  6460. "symfony/polyfill-intl-icu": "^1.21",
  6461. "symfony/routing": "^5.4|^6.0|^7.0",
  6462. "symfony/service-contracts": "^2.5|^3",
  6463. "symfony/yaml": "^5.4|^6.0|^7.0"
  6464. },
  6465. "type": "library",
  6466. "autoload": {
  6467. "files": [
  6468. "Resources/functions.php"
  6469. ],
  6470. "psr-4": {
  6471. "Symfony\\Component\\Translation\\": ""
  6472. },
  6473. "exclude-from-classmap": [
  6474. "/Tests/"
  6475. ]
  6476. },
  6477. "notification-url": "https://packagist.org/downloads/",
  6478. "license": [
  6479. "MIT"
  6480. ],
  6481. "authors": [
  6482. {
  6483. "name": "Fabien Potencier",
  6484. "email": "fabien@symfony.com"
  6485. },
  6486. {
  6487. "name": "Symfony Community",
  6488. "homepage": "https://symfony.com/contributors"
  6489. }
  6490. ],
  6491. "description": "Provides tools to internationalize your application",
  6492. "homepage": "https://symfony.com",
  6493. "support": {
  6494. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6495. },
  6496. "funding": [
  6497. {
  6498. "url": "https://symfony.com/sponsor",
  6499. "type": "custom"
  6500. },
  6501. {
  6502. "url": "https://github.com/fabpot",
  6503. "type": "github"
  6504. },
  6505. {
  6506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6507. "type": "tidelift"
  6508. }
  6509. ],
  6510. "time": "2024-09-27T18:14:25+00:00"
  6511. },
  6512. {
  6513. "name": "symfony/translation-contracts",
  6514. "version": "v3.5.0",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/symfony/translation-contracts.git",
  6518. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6523. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "php": ">=8.1"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "branch-alias": {
  6532. "dev-main": "3.5-dev"
  6533. },
  6534. "thanks": {
  6535. "name": "symfony/contracts",
  6536. "url": "https://github.com/symfony/contracts"
  6537. }
  6538. },
  6539. "autoload": {
  6540. "psr-4": {
  6541. "Symfony\\Contracts\\Translation\\": ""
  6542. },
  6543. "exclude-from-classmap": [
  6544. "/Test/"
  6545. ]
  6546. },
  6547. "notification-url": "https://packagist.org/downloads/",
  6548. "license": [
  6549. "MIT"
  6550. ],
  6551. "authors": [
  6552. {
  6553. "name": "Nicolas Grekas",
  6554. "email": "p@tchwork.com"
  6555. },
  6556. {
  6557. "name": "Symfony Community",
  6558. "homepage": "https://symfony.com/contributors"
  6559. }
  6560. ],
  6561. "description": "Generic abstractions related to translation",
  6562. "homepage": "https://symfony.com",
  6563. "keywords": [
  6564. "abstractions",
  6565. "contracts",
  6566. "decoupling",
  6567. "interfaces",
  6568. "interoperability",
  6569. "standards"
  6570. ],
  6571. "support": {
  6572. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6573. },
  6574. "funding": [
  6575. {
  6576. "url": "https://symfony.com/sponsor",
  6577. "type": "custom"
  6578. },
  6579. {
  6580. "url": "https://github.com/fabpot",
  6581. "type": "github"
  6582. },
  6583. {
  6584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6585. "type": "tidelift"
  6586. }
  6587. ],
  6588. "time": "2024-04-18T09:32:20+00:00"
  6589. },
  6590. {
  6591. "name": "vlucas/phpdotenv",
  6592. "version": "v5.6.1",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/vlucas/phpdotenv.git",
  6596. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6601. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "ext-pcre": "*",
  6606. "graham-campbell/result-type": "^1.1.3",
  6607. "php": "^7.2.5 || ^8.0",
  6608. "phpoption/phpoption": "^1.9.3",
  6609. "symfony/polyfill-ctype": "^1.24",
  6610. "symfony/polyfill-mbstring": "^1.24",
  6611. "symfony/polyfill-php80": "^1.24"
  6612. },
  6613. "require-dev": {
  6614. "bamarni/composer-bin-plugin": "^1.8.2",
  6615. "ext-filter": "*",
  6616. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6617. },
  6618. "suggest": {
  6619. "ext-filter": "Required to use the boolean validator."
  6620. },
  6621. "type": "library",
  6622. "extra": {
  6623. "bamarni-bin": {
  6624. "bin-links": true,
  6625. "forward-command": false
  6626. },
  6627. "branch-alias": {
  6628. "dev-master": "5.6-dev"
  6629. }
  6630. },
  6631. "autoload": {
  6632. "psr-4": {
  6633. "Dotenv\\": "src/"
  6634. }
  6635. },
  6636. "notification-url": "https://packagist.org/downloads/",
  6637. "license": [
  6638. "BSD-3-Clause"
  6639. ],
  6640. "authors": [
  6641. {
  6642. "name": "Graham Campbell",
  6643. "email": "hello@gjcampbell.co.uk",
  6644. "homepage": "https://github.com/GrahamCampbell"
  6645. },
  6646. {
  6647. "name": "Vance Lucas",
  6648. "email": "vance@vancelucas.com",
  6649. "homepage": "https://github.com/vlucas"
  6650. }
  6651. ],
  6652. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6653. "keywords": [
  6654. "dotenv",
  6655. "env",
  6656. "environment"
  6657. ],
  6658. "support": {
  6659. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6660. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://github.com/GrahamCampbell",
  6665. "type": "github"
  6666. },
  6667. {
  6668. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6669. "type": "tidelift"
  6670. }
  6671. ],
  6672. "time": "2024-07-20T21:52:34+00:00"
  6673. }
  6674. ],
  6675. "packages-dev": [
  6676. {
  6677. "name": "clue/ndjson-react",
  6678. "version": "v1.3.0",
  6679. "source": {
  6680. "type": "git",
  6681. "url": "https://github.com/clue/reactphp-ndjson.git",
  6682. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6683. },
  6684. "dist": {
  6685. "type": "zip",
  6686. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6687. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6688. "shasum": ""
  6689. },
  6690. "require": {
  6691. "php": ">=5.3",
  6692. "react/stream": "^1.2"
  6693. },
  6694. "require-dev": {
  6695. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6696. "react/event-loop": "^1.2"
  6697. },
  6698. "type": "library",
  6699. "autoload": {
  6700. "psr-4": {
  6701. "Clue\\React\\NDJson\\": "src/"
  6702. }
  6703. },
  6704. "notification-url": "https://packagist.org/downloads/",
  6705. "license": [
  6706. "MIT"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "Christian Lück",
  6711. "email": "christian@clue.engineering"
  6712. }
  6713. ],
  6714. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6715. "homepage": "https://github.com/clue/reactphp-ndjson",
  6716. "keywords": [
  6717. "NDJSON",
  6718. "json",
  6719. "jsonlines",
  6720. "newline",
  6721. "reactphp",
  6722. "streaming"
  6723. ],
  6724. "support": {
  6725. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6726. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6727. },
  6728. "funding": [
  6729. {
  6730. "url": "https://clue.engineering/support",
  6731. "type": "custom"
  6732. },
  6733. {
  6734. "url": "https://github.com/clue",
  6735. "type": "github"
  6736. }
  6737. ],
  6738. "time": "2022-12-23T10:58:28+00:00"
  6739. },
  6740. {
  6741. "name": "composer/pcre",
  6742. "version": "3.3.1",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/composer/pcre.git",
  6746. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6751. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": "^7.4 || ^8.0"
  6756. },
  6757. "conflict": {
  6758. "phpstan/phpstan": "<1.11.10"
  6759. },
  6760. "require-dev": {
  6761. "phpstan/phpstan": "^1.11.10",
  6762. "phpstan/phpstan-strict-rules": "^1.1",
  6763. "phpunit/phpunit": "^8 || ^9"
  6764. },
  6765. "type": "library",
  6766. "extra": {
  6767. "branch-alias": {
  6768. "dev-main": "3.x-dev"
  6769. },
  6770. "phpstan": {
  6771. "includes": [
  6772. "extension.neon"
  6773. ]
  6774. }
  6775. },
  6776. "autoload": {
  6777. "psr-4": {
  6778. "Composer\\Pcre\\": "src"
  6779. }
  6780. },
  6781. "notification-url": "https://packagist.org/downloads/",
  6782. "license": [
  6783. "MIT"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Jordi Boggiano",
  6788. "email": "j.boggiano@seld.be",
  6789. "homepage": "http://seld.be"
  6790. }
  6791. ],
  6792. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6793. "keywords": [
  6794. "PCRE",
  6795. "preg",
  6796. "regex",
  6797. "regular expression"
  6798. ],
  6799. "support": {
  6800. "issues": "https://github.com/composer/pcre/issues",
  6801. "source": "https://github.com/composer/pcre/tree/3.3.1"
  6802. },
  6803. "funding": [
  6804. {
  6805. "url": "https://packagist.com",
  6806. "type": "custom"
  6807. },
  6808. {
  6809. "url": "https://github.com/composer",
  6810. "type": "github"
  6811. },
  6812. {
  6813. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6814. "type": "tidelift"
  6815. }
  6816. ],
  6817. "time": "2024-08-27T18:44:43+00:00"
  6818. },
  6819. {
  6820. "name": "composer/semver",
  6821. "version": "3.4.3",
  6822. "source": {
  6823. "type": "git",
  6824. "url": "https://github.com/composer/semver.git",
  6825. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  6826. },
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6830. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6831. "shasum": ""
  6832. },
  6833. "require": {
  6834. "php": "^5.3.2 || ^7.0 || ^8.0"
  6835. },
  6836. "require-dev": {
  6837. "phpstan/phpstan": "^1.11",
  6838. "symfony/phpunit-bridge": "^3 || ^7"
  6839. },
  6840. "type": "library",
  6841. "extra": {
  6842. "branch-alias": {
  6843. "dev-main": "3.x-dev"
  6844. }
  6845. },
  6846. "autoload": {
  6847. "psr-4": {
  6848. "Composer\\Semver\\": "src"
  6849. }
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Nils Adermann",
  6858. "email": "naderman@naderman.de",
  6859. "homepage": "http://www.naderman.de"
  6860. },
  6861. {
  6862. "name": "Jordi Boggiano",
  6863. "email": "j.boggiano@seld.be",
  6864. "homepage": "http://seld.be"
  6865. },
  6866. {
  6867. "name": "Rob Bast",
  6868. "email": "rob.bast@gmail.com",
  6869. "homepage": "http://robbast.nl"
  6870. }
  6871. ],
  6872. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6873. "keywords": [
  6874. "semantic",
  6875. "semver",
  6876. "validation",
  6877. "versioning"
  6878. ],
  6879. "support": {
  6880. "irc": "ircs://irc.libera.chat:6697/composer",
  6881. "issues": "https://github.com/composer/semver/issues",
  6882. "source": "https://github.com/composer/semver/tree/3.4.3"
  6883. },
  6884. "funding": [
  6885. {
  6886. "url": "https://packagist.com",
  6887. "type": "custom"
  6888. },
  6889. {
  6890. "url": "https://github.com/composer",
  6891. "type": "github"
  6892. },
  6893. {
  6894. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6895. "type": "tidelift"
  6896. }
  6897. ],
  6898. "time": "2024-09-19T14:15:21+00:00"
  6899. },
  6900. {
  6901. "name": "composer/xdebug-handler",
  6902. "version": "3.0.5",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/composer/xdebug-handler.git",
  6906. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6911. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "composer/pcre": "^1 || ^2 || ^3",
  6916. "php": "^7.2.5 || ^8.0",
  6917. "psr/log": "^1 || ^2 || ^3"
  6918. },
  6919. "require-dev": {
  6920. "phpstan/phpstan": "^1.0",
  6921. "phpstan/phpstan-strict-rules": "^1.1",
  6922. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6923. },
  6924. "type": "library",
  6925. "autoload": {
  6926. "psr-4": {
  6927. "Composer\\XdebugHandler\\": "src"
  6928. }
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "John Stevenson",
  6937. "email": "john-stevenson@blueyonder.co.uk"
  6938. }
  6939. ],
  6940. "description": "Restarts a process without Xdebug.",
  6941. "keywords": [
  6942. "Xdebug",
  6943. "performance"
  6944. ],
  6945. "support": {
  6946. "irc": "ircs://irc.libera.chat:6697/composer",
  6947. "issues": "https://github.com/composer/xdebug-handler/issues",
  6948. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6949. },
  6950. "funding": [
  6951. {
  6952. "url": "https://packagist.com",
  6953. "type": "custom"
  6954. },
  6955. {
  6956. "url": "https://github.com/composer",
  6957. "type": "github"
  6958. },
  6959. {
  6960. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6961. "type": "tidelift"
  6962. }
  6963. ],
  6964. "time": "2024-05-06T16:37:16+00:00"
  6965. },
  6966. {
  6967. "name": "evenement/evenement",
  6968. "version": "v3.0.2",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/igorw/evenement.git",
  6972. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6977. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "php": ">=7.0"
  6982. },
  6983. "require-dev": {
  6984. "phpunit/phpunit": "^9 || ^6"
  6985. },
  6986. "type": "library",
  6987. "autoload": {
  6988. "psr-4": {
  6989. "Evenement\\": "src/"
  6990. }
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Igor Wiedler",
  6999. "email": "igor@wiedler.ch"
  7000. }
  7001. ],
  7002. "description": "Événement is a very simple event dispatching library for PHP",
  7003. "keywords": [
  7004. "event-dispatcher",
  7005. "event-emitter"
  7006. ],
  7007. "support": {
  7008. "issues": "https://github.com/igorw/evenement/issues",
  7009. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7010. },
  7011. "time": "2023-08-08T05:53:35+00:00"
  7012. },
  7013. {
  7014. "name": "fidry/cpu-core-counter",
  7015. "version": "1.2.0",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7019. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7024. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7025. "shasum": ""
  7026. },
  7027. "require": {
  7028. "php": "^7.2 || ^8.0"
  7029. },
  7030. "require-dev": {
  7031. "fidry/makefile": "^0.2.0",
  7032. "fidry/php-cs-fixer-config": "^1.1.2",
  7033. "phpstan/extension-installer": "^1.2.0",
  7034. "phpstan/phpstan": "^1.9.2",
  7035. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7036. "phpstan/phpstan-phpunit": "^1.2.2",
  7037. "phpstan/phpstan-strict-rules": "^1.4.4",
  7038. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7039. "webmozarts/strict-phpunit": "^7.5"
  7040. },
  7041. "type": "library",
  7042. "autoload": {
  7043. "psr-4": {
  7044. "Fidry\\CpuCoreCounter\\": "src/"
  7045. }
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Théo FIDRY",
  7054. "email": "theo.fidry@gmail.com"
  7055. }
  7056. ],
  7057. "description": "Tiny utility to get the number of CPU cores.",
  7058. "keywords": [
  7059. "CPU",
  7060. "core"
  7061. ],
  7062. "support": {
  7063. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7064. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7065. },
  7066. "funding": [
  7067. {
  7068. "url": "https://github.com/theofidry",
  7069. "type": "github"
  7070. }
  7071. ],
  7072. "time": "2024-08-06T10:04:20+00:00"
  7073. },
  7074. {
  7075. "name": "friendsofphp/php-cs-fixer",
  7076. "version": "v3.64.0",
  7077. "source": {
  7078. "type": "git",
  7079. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7080. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  7081. },
  7082. "dist": {
  7083. "type": "zip",
  7084. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  7085. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  7086. "shasum": ""
  7087. },
  7088. "require": {
  7089. "clue/ndjson-react": "^1.0",
  7090. "composer/semver": "^3.4",
  7091. "composer/xdebug-handler": "^3.0.3",
  7092. "ext-filter": "*",
  7093. "ext-json": "*",
  7094. "ext-tokenizer": "*",
  7095. "fidry/cpu-core-counter": "^1.0",
  7096. "php": "^7.4 || ^8.0",
  7097. "react/child-process": "^0.6.5",
  7098. "react/event-loop": "^1.0",
  7099. "react/promise": "^2.0 || ^3.0",
  7100. "react/socket": "^1.0",
  7101. "react/stream": "^1.0",
  7102. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7103. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7104. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7105. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7106. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7107. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7108. "symfony/polyfill-mbstring": "^1.28",
  7109. "symfony/polyfill-php80": "^1.28",
  7110. "symfony/polyfill-php81": "^1.28",
  7111. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7112. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7113. },
  7114. "require-dev": {
  7115. "facile-it/paraunit": "^1.3 || ^2.3",
  7116. "infection/infection": "^0.29.5",
  7117. "justinrainbow/json-schema": "^5.2",
  7118. "keradus/cli-executor": "^2.1",
  7119. "mikey179/vfsstream": "^1.6.11",
  7120. "php-coveralls/php-coveralls": "^2.7",
  7121. "php-cs-fixer/accessible-object": "^1.1",
  7122. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7123. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7124. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  7125. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7126. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7127. },
  7128. "suggest": {
  7129. "ext-dom": "For handling output formats in XML",
  7130. "ext-mbstring": "For handling non-UTF8 characters."
  7131. },
  7132. "bin": [
  7133. "php-cs-fixer"
  7134. ],
  7135. "type": "application",
  7136. "autoload": {
  7137. "psr-4": {
  7138. "PhpCsFixer\\": "src/"
  7139. },
  7140. "exclude-from-classmap": [
  7141. "src/Fixer/Internal/*"
  7142. ]
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Fabien Potencier",
  7151. "email": "fabien@symfony.com"
  7152. },
  7153. {
  7154. "name": "Dariusz Rumiński",
  7155. "email": "dariusz.ruminski@gmail.com"
  7156. }
  7157. ],
  7158. "description": "A tool to automatically fix PHP code style",
  7159. "keywords": [
  7160. "Static code analysis",
  7161. "fixer",
  7162. "standards",
  7163. "static analysis"
  7164. ],
  7165. "support": {
  7166. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7167. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  7168. },
  7169. "funding": [
  7170. {
  7171. "url": "https://github.com/keradus",
  7172. "type": "github"
  7173. }
  7174. ],
  7175. "time": "2024-08-30T23:09:38+00:00"
  7176. },
  7177. {
  7178. "name": "hamcrest/hamcrest-php",
  7179. "version": "v2.0.1",
  7180. "source": {
  7181. "type": "git",
  7182. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7183. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7184. },
  7185. "dist": {
  7186. "type": "zip",
  7187. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7188. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7189. "shasum": ""
  7190. },
  7191. "require": {
  7192. "php": "^5.3|^7.0|^8.0"
  7193. },
  7194. "replace": {
  7195. "cordoval/hamcrest-php": "*",
  7196. "davedevelopment/hamcrest-php": "*",
  7197. "kodova/hamcrest-php": "*"
  7198. },
  7199. "require-dev": {
  7200. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7201. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7202. },
  7203. "type": "library",
  7204. "extra": {
  7205. "branch-alias": {
  7206. "dev-master": "2.1-dev"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "classmap": [
  7211. "hamcrest"
  7212. ]
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "BSD-3-Clause"
  7217. ],
  7218. "description": "This is the PHP port of Hamcrest Matchers",
  7219. "keywords": [
  7220. "test"
  7221. ],
  7222. "support": {
  7223. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7224. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7225. },
  7226. "time": "2020-07-09T08:09:16+00:00"
  7227. },
  7228. {
  7229. "name": "hyperf/devtool",
  7230. "version": "v3.1.42",
  7231. "source": {
  7232. "type": "git",
  7233. "url": "https://github.com/hyperf/devtool.git",
  7234. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7235. },
  7236. "dist": {
  7237. "type": "zip",
  7238. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7239. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7240. "shasum": ""
  7241. },
  7242. "require": {
  7243. "hyperf/code-parser": "~3.1.0",
  7244. "hyperf/command": "~3.1.0",
  7245. "hyperf/contract": "~3.1.0",
  7246. "hyperf/di": "~3.1.0",
  7247. "hyperf/support": "~3.1.0",
  7248. "hyperf/utils": "~3.1.0",
  7249. "php": ">=8.1"
  7250. },
  7251. "type": "library",
  7252. "extra": {
  7253. "branch-alias": {
  7254. "dev-master": "3.1-dev"
  7255. },
  7256. "hyperf": {
  7257. "config": "Hyperf\\Devtool\\ConfigProvider"
  7258. }
  7259. },
  7260. "autoload": {
  7261. "psr-4": {
  7262. "Hyperf\\Devtool\\": "src/"
  7263. }
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "description": "A Devtool for Hyperf.",
  7270. "homepage": "https://hyperf.io",
  7271. "keywords": [
  7272. "dev",
  7273. "devtool",
  7274. "hyperf",
  7275. "php",
  7276. "swoole"
  7277. ],
  7278. "support": {
  7279. "docs": "https://hyperf.wiki",
  7280. "issues": "https://github.com/hyperf/hyperf/issues",
  7281. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7282. "source": "https://github.com/hyperf/hyperf"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://opencollective.com/hyperf",
  7291. "type": "open_collective"
  7292. }
  7293. ],
  7294. "time": "2024-09-25T02:54:12+00:00"
  7295. },
  7296. {
  7297. "name": "hyperf/testing",
  7298. "version": "v3.1.44",
  7299. "source": {
  7300. "type": "git",
  7301. "url": "https://github.com/hyperf/testing.git",
  7302. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  7303. },
  7304. "dist": {
  7305. "type": "zip",
  7306. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7307. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7308. "shasum": ""
  7309. },
  7310. "require": {
  7311. "hyperf/codec": "~3.1.0",
  7312. "hyperf/collection": "~3.1.0",
  7313. "hyperf/contract": "~3.1.0",
  7314. "hyperf/coroutine": "~3.1.0",
  7315. "hyperf/http-message": "~3.1.0",
  7316. "hyperf/http-server": "~3.1.0",
  7317. "hyperf/support": "~3.1.0",
  7318. "hyperf/utils": "~3.1.0",
  7319. "php": ">=8.1",
  7320. "phpunit/phpunit": "^10.0",
  7321. "psr/container": "^1.0 || ^2.0",
  7322. "symfony/http-foundation": "^5.4 || ^6.0"
  7323. },
  7324. "suggest": {
  7325. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7326. },
  7327. "bin": [
  7328. "co-phpunit"
  7329. ],
  7330. "type": "library",
  7331. "extra": {
  7332. "branch-alias": {
  7333. "dev-master": "3.1-dev"
  7334. }
  7335. },
  7336. "autoload": {
  7337. "psr-4": {
  7338. "Hyperf\\Testing\\": "src/"
  7339. }
  7340. },
  7341. "notification-url": "https://packagist.org/downloads/",
  7342. "license": [
  7343. "MIT"
  7344. ],
  7345. "description": "Testing for hyperf",
  7346. "keywords": [
  7347. "dev",
  7348. "php",
  7349. "swoole",
  7350. "testing"
  7351. ],
  7352. "support": {
  7353. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  7354. },
  7355. "funding": [
  7356. {
  7357. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7358. "type": "custom"
  7359. },
  7360. {
  7361. "url": "https://opencollective.com/hyperf",
  7362. "type": "open_collective"
  7363. }
  7364. ],
  7365. "time": "2024-10-23T10:24:12+00:00"
  7366. },
  7367. {
  7368. "name": "hyperf/watcher",
  7369. "version": "v3.1.43",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/hyperf/watcher.git",
  7373. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7378. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7379. "shasum": ""
  7380. },
  7381. "require": {
  7382. "ext-posix": "*",
  7383. "hyperf/codec": "~3.1.0",
  7384. "hyperf/command": "~3.1.0",
  7385. "hyperf/di": "~3.1.0",
  7386. "hyperf/framework": "~3.1.0",
  7387. "hyperf/support": "~3.1.0",
  7388. "php": ">=8.1"
  7389. },
  7390. "type": "library",
  7391. "extra": {
  7392. "branch-alias": {
  7393. "dev-master": "3.1-dev"
  7394. },
  7395. "hyperf": {
  7396. "config": "Hyperf\\Watcher\\ConfigProvider"
  7397. }
  7398. },
  7399. "autoload": {
  7400. "files": [
  7401. "src/Functions.php"
  7402. ],
  7403. "psr-4": {
  7404. "Hyperf\\Watcher\\": "src/"
  7405. }
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "description": "Hot reload watcher for Hyperf",
  7412. "keywords": [
  7413. "dev",
  7414. "hyperf",
  7415. "php"
  7416. ],
  7417. "support": {
  7418. "issues": "https://github.com/hyperf/watcher/issues",
  7419. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  7420. },
  7421. "funding": [
  7422. {
  7423. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7424. "type": "custom"
  7425. },
  7426. {
  7427. "url": "https://opencollective.com/hyperf",
  7428. "type": "open_collective"
  7429. }
  7430. ],
  7431. "time": "2024-10-06T12:33:12+00:00"
  7432. },
  7433. {
  7434. "name": "mockery/mockery",
  7435. "version": "1.6.12",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/mockery/mockery.git",
  7439. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7444. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "hamcrest/hamcrest-php": "^2.0.1",
  7449. "lib-pcre": ">=7.0",
  7450. "php": ">=7.3"
  7451. },
  7452. "conflict": {
  7453. "phpunit/phpunit": "<8.0"
  7454. },
  7455. "require-dev": {
  7456. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7457. "symplify/easy-coding-standard": "^12.1.14"
  7458. },
  7459. "type": "library",
  7460. "autoload": {
  7461. "files": [
  7462. "library/helpers.php",
  7463. "library/Mockery.php"
  7464. ],
  7465. "psr-4": {
  7466. "Mockery\\": "library/Mockery"
  7467. }
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "BSD-3-Clause"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Pádraic Brady",
  7476. "email": "padraic.brady@gmail.com",
  7477. "homepage": "https://github.com/padraic",
  7478. "role": "Author"
  7479. },
  7480. {
  7481. "name": "Dave Marshall",
  7482. "email": "dave.marshall@atstsolutions.co.uk",
  7483. "homepage": "https://davedevelopment.co.uk",
  7484. "role": "Developer"
  7485. },
  7486. {
  7487. "name": "Nathanael Esayeas",
  7488. "email": "nathanael.esayeas@protonmail.com",
  7489. "homepage": "https://github.com/ghostwriter",
  7490. "role": "Lead Developer"
  7491. }
  7492. ],
  7493. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7494. "homepage": "https://github.com/mockery/mockery",
  7495. "keywords": [
  7496. "BDD",
  7497. "TDD",
  7498. "library",
  7499. "mock",
  7500. "mock objects",
  7501. "mockery",
  7502. "stub",
  7503. "test",
  7504. "test double",
  7505. "testing"
  7506. ],
  7507. "support": {
  7508. "docs": "https://docs.mockery.io/",
  7509. "issues": "https://github.com/mockery/mockery/issues",
  7510. "rss": "https://github.com/mockery/mockery/releases.atom",
  7511. "security": "https://github.com/mockery/mockery/security/advisories",
  7512. "source": "https://github.com/mockery/mockery"
  7513. },
  7514. "time": "2024-05-16T03:13:13+00:00"
  7515. },
  7516. {
  7517. "name": "myclabs/deep-copy",
  7518. "version": "1.12.1",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/myclabs/DeepCopy.git",
  7522. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  7527. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": "^7.1 || ^8.0"
  7532. },
  7533. "conflict": {
  7534. "doctrine/collections": "<1.6.8",
  7535. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7536. },
  7537. "require-dev": {
  7538. "doctrine/collections": "^1.6.8",
  7539. "doctrine/common": "^2.13.3 || ^3.2.2",
  7540. "phpspec/prophecy": "^1.10",
  7541. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7542. },
  7543. "type": "library",
  7544. "autoload": {
  7545. "files": [
  7546. "src/DeepCopy/deep_copy.php"
  7547. ],
  7548. "psr-4": {
  7549. "DeepCopy\\": "src/DeepCopy/"
  7550. }
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "description": "Create deep copies (clones) of your objects",
  7557. "keywords": [
  7558. "clone",
  7559. "copy",
  7560. "duplicate",
  7561. "object",
  7562. "object graph"
  7563. ],
  7564. "support": {
  7565. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7566. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  7567. },
  7568. "funding": [
  7569. {
  7570. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7571. "type": "tidelift"
  7572. }
  7573. ],
  7574. "time": "2024-11-08T17:47:46+00:00"
  7575. },
  7576. {
  7577. "name": "phar-io/manifest",
  7578. "version": "2.0.4",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/phar-io/manifest.git",
  7582. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7587. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "ext-dom": "*",
  7592. "ext-libxml": "*",
  7593. "ext-phar": "*",
  7594. "ext-xmlwriter": "*",
  7595. "phar-io/version": "^3.0.1",
  7596. "php": "^7.2 || ^8.0"
  7597. },
  7598. "type": "library",
  7599. "extra": {
  7600. "branch-alias": {
  7601. "dev-master": "2.0.x-dev"
  7602. }
  7603. },
  7604. "autoload": {
  7605. "classmap": [
  7606. "src/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "BSD-3-Clause"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Arne Blankerts",
  7616. "email": "arne@blankerts.de",
  7617. "role": "Developer"
  7618. },
  7619. {
  7620. "name": "Sebastian Heuer",
  7621. "email": "sebastian@phpeople.de",
  7622. "role": "Developer"
  7623. },
  7624. {
  7625. "name": "Sebastian Bergmann",
  7626. "email": "sebastian@phpunit.de",
  7627. "role": "Developer"
  7628. }
  7629. ],
  7630. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7631. "support": {
  7632. "issues": "https://github.com/phar-io/manifest/issues",
  7633. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://github.com/theseer",
  7638. "type": "github"
  7639. }
  7640. ],
  7641. "time": "2024-03-03T12:33:53+00:00"
  7642. },
  7643. {
  7644. "name": "phar-io/version",
  7645. "version": "3.2.1",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/phar-io/version.git",
  7649. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7654. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": "^7.2 || ^8.0"
  7659. },
  7660. "type": "library",
  7661. "autoload": {
  7662. "classmap": [
  7663. "src/"
  7664. ]
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "BSD-3-Clause"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Arne Blankerts",
  7673. "email": "arne@blankerts.de",
  7674. "role": "Developer"
  7675. },
  7676. {
  7677. "name": "Sebastian Heuer",
  7678. "email": "sebastian@phpeople.de",
  7679. "role": "Developer"
  7680. },
  7681. {
  7682. "name": "Sebastian Bergmann",
  7683. "email": "sebastian@phpunit.de",
  7684. "role": "Developer"
  7685. }
  7686. ],
  7687. "description": "Library for handling version information and constraints",
  7688. "support": {
  7689. "issues": "https://github.com/phar-io/version/issues",
  7690. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7691. },
  7692. "time": "2022-02-21T01:04:05+00:00"
  7693. },
  7694. {
  7695. "name": "phpstan/phpstan",
  7696. "version": "1.12.9",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/phpstan/phpstan.git",
  7700. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  7705. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  7706. "shasum": ""
  7707. },
  7708. "require": {
  7709. "php": "^7.2|^8.0"
  7710. },
  7711. "conflict": {
  7712. "phpstan/phpstan-shim": "*"
  7713. },
  7714. "bin": [
  7715. "phpstan",
  7716. "phpstan.phar"
  7717. ],
  7718. "type": "library",
  7719. "autoload": {
  7720. "files": [
  7721. "bootstrap.php"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "description": "PHPStan - PHP Static Analysis Tool",
  7729. "keywords": [
  7730. "dev",
  7731. "static analysis"
  7732. ],
  7733. "support": {
  7734. "docs": "https://phpstan.org/user-guide/getting-started",
  7735. "forum": "https://github.com/phpstan/phpstan/discussions",
  7736. "issues": "https://github.com/phpstan/phpstan/issues",
  7737. "security": "https://github.com/phpstan/phpstan/security/policy",
  7738. "source": "https://github.com/phpstan/phpstan-src"
  7739. },
  7740. "funding": [
  7741. {
  7742. "url": "https://github.com/ondrejmirtes",
  7743. "type": "github"
  7744. },
  7745. {
  7746. "url": "https://github.com/phpstan",
  7747. "type": "github"
  7748. }
  7749. ],
  7750. "time": "2024-11-10T17:10:04+00:00"
  7751. },
  7752. {
  7753. "name": "phpunit/php-code-coverage",
  7754. "version": "10.1.16",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7758. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  7763. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "ext-dom": "*",
  7768. "ext-libxml": "*",
  7769. "ext-xmlwriter": "*",
  7770. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7771. "php": ">=8.1",
  7772. "phpunit/php-file-iterator": "^4.1.0",
  7773. "phpunit/php-text-template": "^3.0.1",
  7774. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7775. "sebastian/complexity": "^3.2.0",
  7776. "sebastian/environment": "^6.1.0",
  7777. "sebastian/lines-of-code": "^2.0.2",
  7778. "sebastian/version": "^4.0.1",
  7779. "theseer/tokenizer": "^1.2.3"
  7780. },
  7781. "require-dev": {
  7782. "phpunit/phpunit": "^10.1"
  7783. },
  7784. "suggest": {
  7785. "ext-pcov": "PHP extension that provides line coverage",
  7786. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7787. },
  7788. "type": "library",
  7789. "extra": {
  7790. "branch-alias": {
  7791. "dev-main": "10.1.x-dev"
  7792. }
  7793. },
  7794. "autoload": {
  7795. "classmap": [
  7796. "src/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "BSD-3-Clause"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Sebastian Bergmann",
  7806. "email": "sebastian@phpunit.de",
  7807. "role": "lead"
  7808. }
  7809. ],
  7810. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7811. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7812. "keywords": [
  7813. "coverage",
  7814. "testing",
  7815. "xunit"
  7816. ],
  7817. "support": {
  7818. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7819. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7820. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  7821. },
  7822. "funding": [
  7823. {
  7824. "url": "https://github.com/sebastianbergmann",
  7825. "type": "github"
  7826. }
  7827. ],
  7828. "time": "2024-08-22T04:31:57+00:00"
  7829. },
  7830. {
  7831. "name": "phpunit/php-file-iterator",
  7832. "version": "4.1.0",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7836. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7841. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "php": ">=8.1"
  7846. },
  7847. "require-dev": {
  7848. "phpunit/phpunit": "^10.0"
  7849. },
  7850. "type": "library",
  7851. "extra": {
  7852. "branch-alias": {
  7853. "dev-main": "4.0-dev"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "classmap": [
  7858. "src/"
  7859. ]
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "BSD-3-Clause"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Sebastian Bergmann",
  7868. "email": "sebastian@phpunit.de",
  7869. "role": "lead"
  7870. }
  7871. ],
  7872. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7873. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7874. "keywords": [
  7875. "filesystem",
  7876. "iterator"
  7877. ],
  7878. "support": {
  7879. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7880. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7881. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7882. },
  7883. "funding": [
  7884. {
  7885. "url": "https://github.com/sebastianbergmann",
  7886. "type": "github"
  7887. }
  7888. ],
  7889. "time": "2023-08-31T06:24:48+00:00"
  7890. },
  7891. {
  7892. "name": "phpunit/php-invoker",
  7893. "version": "4.0.0",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7897. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7902. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "php": ">=8.1"
  7907. },
  7908. "require-dev": {
  7909. "ext-pcntl": "*",
  7910. "phpunit/phpunit": "^10.0"
  7911. },
  7912. "suggest": {
  7913. "ext-pcntl": "*"
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "branch-alias": {
  7918. "dev-main": "4.0-dev"
  7919. }
  7920. },
  7921. "autoload": {
  7922. "classmap": [
  7923. "src/"
  7924. ]
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "BSD-3-Clause"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Sebastian Bergmann",
  7933. "email": "sebastian@phpunit.de",
  7934. "role": "lead"
  7935. }
  7936. ],
  7937. "description": "Invoke callables with a timeout",
  7938. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7939. "keywords": [
  7940. "process"
  7941. ],
  7942. "support": {
  7943. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7944. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7945. },
  7946. "funding": [
  7947. {
  7948. "url": "https://github.com/sebastianbergmann",
  7949. "type": "github"
  7950. }
  7951. ],
  7952. "time": "2023-02-03T06:56:09+00:00"
  7953. },
  7954. {
  7955. "name": "phpunit/php-text-template",
  7956. "version": "3.0.1",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7960. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7965. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": ">=8.1"
  7970. },
  7971. "require-dev": {
  7972. "phpunit/phpunit": "^10.0"
  7973. },
  7974. "type": "library",
  7975. "extra": {
  7976. "branch-alias": {
  7977. "dev-main": "3.0-dev"
  7978. }
  7979. },
  7980. "autoload": {
  7981. "classmap": [
  7982. "src/"
  7983. ]
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "BSD-3-Clause"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Sebastian Bergmann",
  7992. "email": "sebastian@phpunit.de",
  7993. "role": "lead"
  7994. }
  7995. ],
  7996. "description": "Simple template engine.",
  7997. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7998. "keywords": [
  7999. "template"
  8000. ],
  8001. "support": {
  8002. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8003. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8004. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8005. },
  8006. "funding": [
  8007. {
  8008. "url": "https://github.com/sebastianbergmann",
  8009. "type": "github"
  8010. }
  8011. ],
  8012. "time": "2023-08-31T14:07:24+00:00"
  8013. },
  8014. {
  8015. "name": "phpunit/php-timer",
  8016. "version": "6.0.0",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8020. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8025. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8026. "shasum": ""
  8027. },
  8028. "require": {
  8029. "php": ">=8.1"
  8030. },
  8031. "require-dev": {
  8032. "phpunit/phpunit": "^10.0"
  8033. },
  8034. "type": "library",
  8035. "extra": {
  8036. "branch-alias": {
  8037. "dev-main": "6.0-dev"
  8038. }
  8039. },
  8040. "autoload": {
  8041. "classmap": [
  8042. "src/"
  8043. ]
  8044. },
  8045. "notification-url": "https://packagist.org/downloads/",
  8046. "license": [
  8047. "BSD-3-Clause"
  8048. ],
  8049. "authors": [
  8050. {
  8051. "name": "Sebastian Bergmann",
  8052. "email": "sebastian@phpunit.de",
  8053. "role": "lead"
  8054. }
  8055. ],
  8056. "description": "Utility class for timing",
  8057. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8058. "keywords": [
  8059. "timer"
  8060. ],
  8061. "support": {
  8062. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8063. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8064. },
  8065. "funding": [
  8066. {
  8067. "url": "https://github.com/sebastianbergmann",
  8068. "type": "github"
  8069. }
  8070. ],
  8071. "time": "2023-02-03T06:57:52+00:00"
  8072. },
  8073. {
  8074. "name": "phpunit/phpunit",
  8075. "version": "10.5.38",
  8076. "source": {
  8077. "type": "git",
  8078. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8079. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8080. },
  8081. "dist": {
  8082. "type": "zip",
  8083. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8084. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8085. "shasum": ""
  8086. },
  8087. "require": {
  8088. "ext-dom": "*",
  8089. "ext-json": "*",
  8090. "ext-libxml": "*",
  8091. "ext-mbstring": "*",
  8092. "ext-xml": "*",
  8093. "ext-xmlwriter": "*",
  8094. "myclabs/deep-copy": "^1.12.0",
  8095. "phar-io/manifest": "^2.0.4",
  8096. "phar-io/version": "^3.2.1",
  8097. "php": ">=8.1",
  8098. "phpunit/php-code-coverage": "^10.1.16",
  8099. "phpunit/php-file-iterator": "^4.1.0",
  8100. "phpunit/php-invoker": "^4.0.0",
  8101. "phpunit/php-text-template": "^3.0.1",
  8102. "phpunit/php-timer": "^6.0.0",
  8103. "sebastian/cli-parser": "^2.0.1",
  8104. "sebastian/code-unit": "^2.0.0",
  8105. "sebastian/comparator": "^5.0.3",
  8106. "sebastian/diff": "^5.1.1",
  8107. "sebastian/environment": "^6.1.0",
  8108. "sebastian/exporter": "^5.1.2",
  8109. "sebastian/global-state": "^6.0.2",
  8110. "sebastian/object-enumerator": "^5.0.0",
  8111. "sebastian/recursion-context": "^5.0.0",
  8112. "sebastian/type": "^4.0.0",
  8113. "sebastian/version": "^4.0.1"
  8114. },
  8115. "suggest": {
  8116. "ext-soap": "To be able to generate mocks based on WSDL files"
  8117. },
  8118. "bin": [
  8119. "phpunit"
  8120. ],
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-main": "10.5-dev"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "files": [
  8129. "src/Framework/Assert/Functions.php"
  8130. ],
  8131. "classmap": [
  8132. "src/"
  8133. ]
  8134. },
  8135. "notification-url": "https://packagist.org/downloads/",
  8136. "license": [
  8137. "BSD-3-Clause"
  8138. ],
  8139. "authors": [
  8140. {
  8141. "name": "Sebastian Bergmann",
  8142. "email": "sebastian@phpunit.de",
  8143. "role": "lead"
  8144. }
  8145. ],
  8146. "description": "The PHP Unit Testing framework.",
  8147. "homepage": "https://phpunit.de/",
  8148. "keywords": [
  8149. "phpunit",
  8150. "testing",
  8151. "xunit"
  8152. ],
  8153. "support": {
  8154. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8155. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8156. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  8157. },
  8158. "funding": [
  8159. {
  8160. "url": "https://phpunit.de/sponsors.html",
  8161. "type": "custom"
  8162. },
  8163. {
  8164. "url": "https://github.com/sebastianbergmann",
  8165. "type": "github"
  8166. },
  8167. {
  8168. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8169. "type": "tidelift"
  8170. }
  8171. ],
  8172. "time": "2024-10-28T13:06:21+00:00"
  8173. },
  8174. {
  8175. "name": "react/cache",
  8176. "version": "v1.2.0",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/reactphp/cache.git",
  8180. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8185. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8186. "shasum": ""
  8187. },
  8188. "require": {
  8189. "php": ">=5.3.0",
  8190. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8191. },
  8192. "require-dev": {
  8193. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8194. },
  8195. "type": "library",
  8196. "autoload": {
  8197. "psr-4": {
  8198. "React\\Cache\\": "src/"
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "Christian Lück",
  8208. "email": "christian@clue.engineering",
  8209. "homepage": "https://clue.engineering/"
  8210. },
  8211. {
  8212. "name": "Cees-Jan Kiewiet",
  8213. "email": "reactphp@ceesjankiewiet.nl",
  8214. "homepage": "https://wyrihaximus.net/"
  8215. },
  8216. {
  8217. "name": "Jan Sorgalla",
  8218. "email": "jsorgalla@gmail.com",
  8219. "homepage": "https://sorgalla.com/"
  8220. },
  8221. {
  8222. "name": "Chris Boden",
  8223. "email": "cboden@gmail.com",
  8224. "homepage": "https://cboden.dev/"
  8225. }
  8226. ],
  8227. "description": "Async, Promise-based cache interface for ReactPHP",
  8228. "keywords": [
  8229. "cache",
  8230. "caching",
  8231. "promise",
  8232. "reactphp"
  8233. ],
  8234. "support": {
  8235. "issues": "https://github.com/reactphp/cache/issues",
  8236. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8237. },
  8238. "funding": [
  8239. {
  8240. "url": "https://opencollective.com/reactphp",
  8241. "type": "open_collective"
  8242. }
  8243. ],
  8244. "time": "2022-11-30T15:59:55+00:00"
  8245. },
  8246. {
  8247. "name": "react/child-process",
  8248. "version": "v0.6.5",
  8249. "source": {
  8250. "type": "git",
  8251. "url": "https://github.com/reactphp/child-process.git",
  8252. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8253. },
  8254. "dist": {
  8255. "type": "zip",
  8256. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8257. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8258. "shasum": ""
  8259. },
  8260. "require": {
  8261. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8262. "php": ">=5.3.0",
  8263. "react/event-loop": "^1.2",
  8264. "react/stream": "^1.2"
  8265. },
  8266. "require-dev": {
  8267. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8268. "react/socket": "^1.8",
  8269. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8270. },
  8271. "type": "library",
  8272. "autoload": {
  8273. "psr-4": {
  8274. "React\\ChildProcess\\": "src"
  8275. }
  8276. },
  8277. "notification-url": "https://packagist.org/downloads/",
  8278. "license": [
  8279. "MIT"
  8280. ],
  8281. "authors": [
  8282. {
  8283. "name": "Christian Lück",
  8284. "email": "christian@clue.engineering",
  8285. "homepage": "https://clue.engineering/"
  8286. },
  8287. {
  8288. "name": "Cees-Jan Kiewiet",
  8289. "email": "reactphp@ceesjankiewiet.nl",
  8290. "homepage": "https://wyrihaximus.net/"
  8291. },
  8292. {
  8293. "name": "Jan Sorgalla",
  8294. "email": "jsorgalla@gmail.com",
  8295. "homepage": "https://sorgalla.com/"
  8296. },
  8297. {
  8298. "name": "Chris Boden",
  8299. "email": "cboden@gmail.com",
  8300. "homepage": "https://cboden.dev/"
  8301. }
  8302. ],
  8303. "description": "Event-driven library for executing child processes with ReactPHP.",
  8304. "keywords": [
  8305. "event-driven",
  8306. "process",
  8307. "reactphp"
  8308. ],
  8309. "support": {
  8310. "issues": "https://github.com/reactphp/child-process/issues",
  8311. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8312. },
  8313. "funding": [
  8314. {
  8315. "url": "https://github.com/WyriHaximus",
  8316. "type": "github"
  8317. },
  8318. {
  8319. "url": "https://github.com/clue",
  8320. "type": "github"
  8321. }
  8322. ],
  8323. "time": "2022-09-16T13:41:56+00:00"
  8324. },
  8325. {
  8326. "name": "react/dns",
  8327. "version": "v1.13.0",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/reactphp/dns.git",
  8331. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8336. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=5.3.0",
  8341. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8342. "react/event-loop": "^1.2",
  8343. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8344. },
  8345. "require-dev": {
  8346. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8347. "react/async": "^4.3 || ^3 || ^2",
  8348. "react/promise-timer": "^1.11"
  8349. },
  8350. "type": "library",
  8351. "autoload": {
  8352. "psr-4": {
  8353. "React\\Dns\\": "src/"
  8354. }
  8355. },
  8356. "notification-url": "https://packagist.org/downloads/",
  8357. "license": [
  8358. "MIT"
  8359. ],
  8360. "authors": [
  8361. {
  8362. "name": "Christian Lück",
  8363. "email": "christian@clue.engineering",
  8364. "homepage": "https://clue.engineering/"
  8365. },
  8366. {
  8367. "name": "Cees-Jan Kiewiet",
  8368. "email": "reactphp@ceesjankiewiet.nl",
  8369. "homepage": "https://wyrihaximus.net/"
  8370. },
  8371. {
  8372. "name": "Jan Sorgalla",
  8373. "email": "jsorgalla@gmail.com",
  8374. "homepage": "https://sorgalla.com/"
  8375. },
  8376. {
  8377. "name": "Chris Boden",
  8378. "email": "cboden@gmail.com",
  8379. "homepage": "https://cboden.dev/"
  8380. }
  8381. ],
  8382. "description": "Async DNS resolver for ReactPHP",
  8383. "keywords": [
  8384. "async",
  8385. "dns",
  8386. "dns-resolver",
  8387. "reactphp"
  8388. ],
  8389. "support": {
  8390. "issues": "https://github.com/reactphp/dns/issues",
  8391. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8392. },
  8393. "funding": [
  8394. {
  8395. "url": "https://opencollective.com/reactphp",
  8396. "type": "open_collective"
  8397. }
  8398. ],
  8399. "time": "2024-06-13T14:18:03+00:00"
  8400. },
  8401. {
  8402. "name": "react/event-loop",
  8403. "version": "v1.5.0",
  8404. "source": {
  8405. "type": "git",
  8406. "url": "https://github.com/reactphp/event-loop.git",
  8407. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8408. },
  8409. "dist": {
  8410. "type": "zip",
  8411. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8412. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8413. "shasum": ""
  8414. },
  8415. "require": {
  8416. "php": ">=5.3.0"
  8417. },
  8418. "require-dev": {
  8419. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8420. },
  8421. "suggest": {
  8422. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8423. },
  8424. "type": "library",
  8425. "autoload": {
  8426. "psr-4": {
  8427. "React\\EventLoop\\": "src/"
  8428. }
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "MIT"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Christian Lück",
  8437. "email": "christian@clue.engineering",
  8438. "homepage": "https://clue.engineering/"
  8439. },
  8440. {
  8441. "name": "Cees-Jan Kiewiet",
  8442. "email": "reactphp@ceesjankiewiet.nl",
  8443. "homepage": "https://wyrihaximus.net/"
  8444. },
  8445. {
  8446. "name": "Jan Sorgalla",
  8447. "email": "jsorgalla@gmail.com",
  8448. "homepage": "https://sorgalla.com/"
  8449. },
  8450. {
  8451. "name": "Chris Boden",
  8452. "email": "cboden@gmail.com",
  8453. "homepage": "https://cboden.dev/"
  8454. }
  8455. ],
  8456. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8457. "keywords": [
  8458. "asynchronous",
  8459. "event-loop"
  8460. ],
  8461. "support": {
  8462. "issues": "https://github.com/reactphp/event-loop/issues",
  8463. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8464. },
  8465. "funding": [
  8466. {
  8467. "url": "https://opencollective.com/reactphp",
  8468. "type": "open_collective"
  8469. }
  8470. ],
  8471. "time": "2023-11-13T13:48:05+00:00"
  8472. },
  8473. {
  8474. "name": "react/promise",
  8475. "version": "v3.2.0",
  8476. "source": {
  8477. "type": "git",
  8478. "url": "https://github.com/reactphp/promise.git",
  8479. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8480. },
  8481. "dist": {
  8482. "type": "zip",
  8483. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8484. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8485. "shasum": ""
  8486. },
  8487. "require": {
  8488. "php": ">=7.1.0"
  8489. },
  8490. "require-dev": {
  8491. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8492. "phpunit/phpunit": "^9.6 || ^7.5"
  8493. },
  8494. "type": "library",
  8495. "autoload": {
  8496. "files": [
  8497. "src/functions_include.php"
  8498. ],
  8499. "psr-4": {
  8500. "React\\Promise\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Jan Sorgalla",
  8510. "email": "jsorgalla@gmail.com",
  8511. "homepage": "https://sorgalla.com/"
  8512. },
  8513. {
  8514. "name": "Christian Lück",
  8515. "email": "christian@clue.engineering",
  8516. "homepage": "https://clue.engineering/"
  8517. },
  8518. {
  8519. "name": "Cees-Jan Kiewiet",
  8520. "email": "reactphp@ceesjankiewiet.nl",
  8521. "homepage": "https://wyrihaximus.net/"
  8522. },
  8523. {
  8524. "name": "Chris Boden",
  8525. "email": "cboden@gmail.com",
  8526. "homepage": "https://cboden.dev/"
  8527. }
  8528. ],
  8529. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8530. "keywords": [
  8531. "promise",
  8532. "promises"
  8533. ],
  8534. "support": {
  8535. "issues": "https://github.com/reactphp/promise/issues",
  8536. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8537. },
  8538. "funding": [
  8539. {
  8540. "url": "https://opencollective.com/reactphp",
  8541. "type": "open_collective"
  8542. }
  8543. ],
  8544. "time": "2024-05-24T10:39:05+00:00"
  8545. },
  8546. {
  8547. "name": "react/socket",
  8548. "version": "v1.16.0",
  8549. "source": {
  8550. "type": "git",
  8551. "url": "https://github.com/reactphp/socket.git",
  8552. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8553. },
  8554. "dist": {
  8555. "type": "zip",
  8556. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8557. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8558. "shasum": ""
  8559. },
  8560. "require": {
  8561. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8562. "php": ">=5.3.0",
  8563. "react/dns": "^1.13",
  8564. "react/event-loop": "^1.2",
  8565. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8566. "react/stream": "^1.4"
  8567. },
  8568. "require-dev": {
  8569. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8570. "react/async": "^4.3 || ^3.3 || ^2",
  8571. "react/promise-stream": "^1.4",
  8572. "react/promise-timer": "^1.11"
  8573. },
  8574. "type": "library",
  8575. "autoload": {
  8576. "psr-4": {
  8577. "React\\Socket\\": "src/"
  8578. }
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "MIT"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Christian Lück",
  8587. "email": "christian@clue.engineering",
  8588. "homepage": "https://clue.engineering/"
  8589. },
  8590. {
  8591. "name": "Cees-Jan Kiewiet",
  8592. "email": "reactphp@ceesjankiewiet.nl",
  8593. "homepage": "https://wyrihaximus.net/"
  8594. },
  8595. {
  8596. "name": "Jan Sorgalla",
  8597. "email": "jsorgalla@gmail.com",
  8598. "homepage": "https://sorgalla.com/"
  8599. },
  8600. {
  8601. "name": "Chris Boden",
  8602. "email": "cboden@gmail.com",
  8603. "homepage": "https://cboden.dev/"
  8604. }
  8605. ],
  8606. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8607. "keywords": [
  8608. "Connection",
  8609. "Socket",
  8610. "async",
  8611. "reactphp",
  8612. "stream"
  8613. ],
  8614. "support": {
  8615. "issues": "https://github.com/reactphp/socket/issues",
  8616. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8617. },
  8618. "funding": [
  8619. {
  8620. "url": "https://opencollective.com/reactphp",
  8621. "type": "open_collective"
  8622. }
  8623. ],
  8624. "time": "2024-07-26T10:38:09+00:00"
  8625. },
  8626. {
  8627. "name": "react/stream",
  8628. "version": "v1.4.0",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/reactphp/stream.git",
  8632. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8637. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8642. "php": ">=5.3.8",
  8643. "react/event-loop": "^1.2"
  8644. },
  8645. "require-dev": {
  8646. "clue/stream-filter": "~1.2",
  8647. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8648. },
  8649. "type": "library",
  8650. "autoload": {
  8651. "psr-4": {
  8652. "React\\Stream\\": "src/"
  8653. }
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "MIT"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Christian Lück",
  8662. "email": "christian@clue.engineering",
  8663. "homepage": "https://clue.engineering/"
  8664. },
  8665. {
  8666. "name": "Cees-Jan Kiewiet",
  8667. "email": "reactphp@ceesjankiewiet.nl",
  8668. "homepage": "https://wyrihaximus.net/"
  8669. },
  8670. {
  8671. "name": "Jan Sorgalla",
  8672. "email": "jsorgalla@gmail.com",
  8673. "homepage": "https://sorgalla.com/"
  8674. },
  8675. {
  8676. "name": "Chris Boden",
  8677. "email": "cboden@gmail.com",
  8678. "homepage": "https://cboden.dev/"
  8679. }
  8680. ],
  8681. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8682. "keywords": [
  8683. "event-driven",
  8684. "io",
  8685. "non-blocking",
  8686. "pipe",
  8687. "reactphp",
  8688. "readable",
  8689. "stream",
  8690. "writable"
  8691. ],
  8692. "support": {
  8693. "issues": "https://github.com/reactphp/stream/issues",
  8694. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  8695. },
  8696. "funding": [
  8697. {
  8698. "url": "https://opencollective.com/reactphp",
  8699. "type": "open_collective"
  8700. }
  8701. ],
  8702. "time": "2024-06-11T12:45:25+00:00"
  8703. },
  8704. {
  8705. "name": "sebastian/cli-parser",
  8706. "version": "2.0.1",
  8707. "source": {
  8708. "type": "git",
  8709. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8710. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8711. },
  8712. "dist": {
  8713. "type": "zip",
  8714. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8715. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8716. "shasum": ""
  8717. },
  8718. "require": {
  8719. "php": ">=8.1"
  8720. },
  8721. "require-dev": {
  8722. "phpunit/phpunit": "^10.0"
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-main": "2.0-dev"
  8728. }
  8729. },
  8730. "autoload": {
  8731. "classmap": [
  8732. "src/"
  8733. ]
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "BSD-3-Clause"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "Sebastian Bergmann",
  8742. "email": "sebastian@phpunit.de",
  8743. "role": "lead"
  8744. }
  8745. ],
  8746. "description": "Library for parsing CLI options",
  8747. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8748. "support": {
  8749. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8750. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8751. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://github.com/sebastianbergmann",
  8756. "type": "github"
  8757. }
  8758. ],
  8759. "time": "2024-03-02T07:12:49+00:00"
  8760. },
  8761. {
  8762. "name": "sebastian/code-unit",
  8763. "version": "2.0.0",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8767. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8772. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8773. "shasum": ""
  8774. },
  8775. "require": {
  8776. "php": ">=8.1"
  8777. },
  8778. "require-dev": {
  8779. "phpunit/phpunit": "^10.0"
  8780. },
  8781. "type": "library",
  8782. "extra": {
  8783. "branch-alias": {
  8784. "dev-main": "2.0-dev"
  8785. }
  8786. },
  8787. "autoload": {
  8788. "classmap": [
  8789. "src/"
  8790. ]
  8791. },
  8792. "notification-url": "https://packagist.org/downloads/",
  8793. "license": [
  8794. "BSD-3-Clause"
  8795. ],
  8796. "authors": [
  8797. {
  8798. "name": "Sebastian Bergmann",
  8799. "email": "sebastian@phpunit.de",
  8800. "role": "lead"
  8801. }
  8802. ],
  8803. "description": "Collection of value objects that represent the PHP code units",
  8804. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8805. "support": {
  8806. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8807. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8808. },
  8809. "funding": [
  8810. {
  8811. "url": "https://github.com/sebastianbergmann",
  8812. "type": "github"
  8813. }
  8814. ],
  8815. "time": "2023-02-03T06:58:43+00:00"
  8816. },
  8817. {
  8818. "name": "sebastian/code-unit-reverse-lookup",
  8819. "version": "3.0.0",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8823. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8828. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": ">=8.1"
  8833. },
  8834. "require-dev": {
  8835. "phpunit/phpunit": "^10.0"
  8836. },
  8837. "type": "library",
  8838. "extra": {
  8839. "branch-alias": {
  8840. "dev-main": "3.0-dev"
  8841. }
  8842. },
  8843. "autoload": {
  8844. "classmap": [
  8845. "src/"
  8846. ]
  8847. },
  8848. "notification-url": "https://packagist.org/downloads/",
  8849. "license": [
  8850. "BSD-3-Clause"
  8851. ],
  8852. "authors": [
  8853. {
  8854. "name": "Sebastian Bergmann",
  8855. "email": "sebastian@phpunit.de"
  8856. }
  8857. ],
  8858. "description": "Looks up which function or method a line of code belongs to",
  8859. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8860. "support": {
  8861. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8862. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8863. },
  8864. "funding": [
  8865. {
  8866. "url": "https://github.com/sebastianbergmann",
  8867. "type": "github"
  8868. }
  8869. ],
  8870. "time": "2023-02-03T06:59:15+00:00"
  8871. },
  8872. {
  8873. "name": "sebastian/comparator",
  8874. "version": "5.0.3",
  8875. "source": {
  8876. "type": "git",
  8877. "url": "https://github.com/sebastianbergmann/comparator.git",
  8878. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  8879. },
  8880. "dist": {
  8881. "type": "zip",
  8882. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8883. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8884. "shasum": ""
  8885. },
  8886. "require": {
  8887. "ext-dom": "*",
  8888. "ext-mbstring": "*",
  8889. "php": ">=8.1",
  8890. "sebastian/diff": "^5.0",
  8891. "sebastian/exporter": "^5.0"
  8892. },
  8893. "require-dev": {
  8894. "phpunit/phpunit": "^10.5"
  8895. },
  8896. "type": "library",
  8897. "extra": {
  8898. "branch-alias": {
  8899. "dev-main": "5.0-dev"
  8900. }
  8901. },
  8902. "autoload": {
  8903. "classmap": [
  8904. "src/"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "BSD-3-Clause"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Sebastian Bergmann",
  8914. "email": "sebastian@phpunit.de"
  8915. },
  8916. {
  8917. "name": "Jeff Welch",
  8918. "email": "whatthejeff@gmail.com"
  8919. },
  8920. {
  8921. "name": "Volker Dusch",
  8922. "email": "github@wallbash.com"
  8923. },
  8924. {
  8925. "name": "Bernhard Schussek",
  8926. "email": "bschussek@2bepublished.at"
  8927. }
  8928. ],
  8929. "description": "Provides the functionality to compare PHP values for equality",
  8930. "homepage": "https://github.com/sebastianbergmann/comparator",
  8931. "keywords": [
  8932. "comparator",
  8933. "compare",
  8934. "equality"
  8935. ],
  8936. "support": {
  8937. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8938. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8939. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  8940. },
  8941. "funding": [
  8942. {
  8943. "url": "https://github.com/sebastianbergmann",
  8944. "type": "github"
  8945. }
  8946. ],
  8947. "time": "2024-10-18T14:56:07+00:00"
  8948. },
  8949. {
  8950. "name": "sebastian/complexity",
  8951. "version": "3.2.0",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/sebastianbergmann/complexity.git",
  8955. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8960. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "nikic/php-parser": "^4.18 || ^5.0",
  8965. "php": ">=8.1"
  8966. },
  8967. "require-dev": {
  8968. "phpunit/phpunit": "^10.0"
  8969. },
  8970. "type": "library",
  8971. "extra": {
  8972. "branch-alias": {
  8973. "dev-main": "3.2-dev"
  8974. }
  8975. },
  8976. "autoload": {
  8977. "classmap": [
  8978. "src/"
  8979. ]
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "BSD-3-Clause"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Sebastian Bergmann",
  8988. "email": "sebastian@phpunit.de",
  8989. "role": "lead"
  8990. }
  8991. ],
  8992. "description": "Library for calculating the complexity of PHP code units",
  8993. "homepage": "https://github.com/sebastianbergmann/complexity",
  8994. "support": {
  8995. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8996. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8997. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8998. },
  8999. "funding": [
  9000. {
  9001. "url": "https://github.com/sebastianbergmann",
  9002. "type": "github"
  9003. }
  9004. ],
  9005. "time": "2023-12-21T08:37:17+00:00"
  9006. },
  9007. {
  9008. "name": "sebastian/diff",
  9009. "version": "5.1.1",
  9010. "source": {
  9011. "type": "git",
  9012. "url": "https://github.com/sebastianbergmann/diff.git",
  9013. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9014. },
  9015. "dist": {
  9016. "type": "zip",
  9017. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9018. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9019. "shasum": ""
  9020. },
  9021. "require": {
  9022. "php": ">=8.1"
  9023. },
  9024. "require-dev": {
  9025. "phpunit/phpunit": "^10.0",
  9026. "symfony/process": "^6.4"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-main": "5.1-dev"
  9032. }
  9033. },
  9034. "autoload": {
  9035. "classmap": [
  9036. "src/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "BSD-3-Clause"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Sebastian Bergmann",
  9046. "email": "sebastian@phpunit.de"
  9047. },
  9048. {
  9049. "name": "Kore Nordmann",
  9050. "email": "mail@kore-nordmann.de"
  9051. }
  9052. ],
  9053. "description": "Diff implementation",
  9054. "homepage": "https://github.com/sebastianbergmann/diff",
  9055. "keywords": [
  9056. "diff",
  9057. "udiff",
  9058. "unidiff",
  9059. "unified diff"
  9060. ],
  9061. "support": {
  9062. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9063. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9064. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9065. },
  9066. "funding": [
  9067. {
  9068. "url": "https://github.com/sebastianbergmann",
  9069. "type": "github"
  9070. }
  9071. ],
  9072. "time": "2024-03-02T07:15:17+00:00"
  9073. },
  9074. {
  9075. "name": "sebastian/environment",
  9076. "version": "6.1.0",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/sebastianbergmann/environment.git",
  9080. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9085. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "php": ">=8.1"
  9090. },
  9091. "require-dev": {
  9092. "phpunit/phpunit": "^10.0"
  9093. },
  9094. "suggest": {
  9095. "ext-posix": "*"
  9096. },
  9097. "type": "library",
  9098. "extra": {
  9099. "branch-alias": {
  9100. "dev-main": "6.1-dev"
  9101. }
  9102. },
  9103. "autoload": {
  9104. "classmap": [
  9105. "src/"
  9106. ]
  9107. },
  9108. "notification-url": "https://packagist.org/downloads/",
  9109. "license": [
  9110. "BSD-3-Clause"
  9111. ],
  9112. "authors": [
  9113. {
  9114. "name": "Sebastian Bergmann",
  9115. "email": "sebastian@phpunit.de"
  9116. }
  9117. ],
  9118. "description": "Provides functionality to handle HHVM/PHP environments",
  9119. "homepage": "https://github.com/sebastianbergmann/environment",
  9120. "keywords": [
  9121. "Xdebug",
  9122. "environment",
  9123. "hhvm"
  9124. ],
  9125. "support": {
  9126. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9127. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9128. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2024-03-23T08:47:14+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/exporter",
  9140. "version": "5.1.2",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/exporter.git",
  9144. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9149. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "ext-mbstring": "*",
  9154. "php": ">=8.1",
  9155. "sebastian/recursion-context": "^5.0"
  9156. },
  9157. "require-dev": {
  9158. "phpunit/phpunit": "^10.0"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-main": "5.1-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de"
  9179. },
  9180. {
  9181. "name": "Jeff Welch",
  9182. "email": "whatthejeff@gmail.com"
  9183. },
  9184. {
  9185. "name": "Volker Dusch",
  9186. "email": "github@wallbash.com"
  9187. },
  9188. {
  9189. "name": "Adam Harvey",
  9190. "email": "aharvey@php.net"
  9191. },
  9192. {
  9193. "name": "Bernhard Schussek",
  9194. "email": "bschussek@gmail.com"
  9195. }
  9196. ],
  9197. "description": "Provides the functionality to export PHP variables for visualization",
  9198. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9199. "keywords": [
  9200. "export",
  9201. "exporter"
  9202. ],
  9203. "support": {
  9204. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9205. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9206. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9207. },
  9208. "funding": [
  9209. {
  9210. "url": "https://github.com/sebastianbergmann",
  9211. "type": "github"
  9212. }
  9213. ],
  9214. "time": "2024-03-02T07:17:12+00:00"
  9215. },
  9216. {
  9217. "name": "sebastian/global-state",
  9218. "version": "6.0.2",
  9219. "source": {
  9220. "type": "git",
  9221. "url": "https://github.com/sebastianbergmann/global-state.git",
  9222. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9223. },
  9224. "dist": {
  9225. "type": "zip",
  9226. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9227. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9228. "shasum": ""
  9229. },
  9230. "require": {
  9231. "php": ">=8.1",
  9232. "sebastian/object-reflector": "^3.0",
  9233. "sebastian/recursion-context": "^5.0"
  9234. },
  9235. "require-dev": {
  9236. "ext-dom": "*",
  9237. "phpunit/phpunit": "^10.0"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-main": "6.0-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "classmap": [
  9247. "src/"
  9248. ]
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "BSD-3-Clause"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "Sebastian Bergmann",
  9257. "email": "sebastian@phpunit.de"
  9258. }
  9259. ],
  9260. "description": "Snapshotting of global state",
  9261. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9262. "keywords": [
  9263. "global state"
  9264. ],
  9265. "support": {
  9266. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9267. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9268. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9269. },
  9270. "funding": [
  9271. {
  9272. "url": "https://github.com/sebastianbergmann",
  9273. "type": "github"
  9274. }
  9275. ],
  9276. "time": "2024-03-02T07:19:19+00:00"
  9277. },
  9278. {
  9279. "name": "sebastian/lines-of-code",
  9280. "version": "2.0.2",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9284. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9289. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9290. "shasum": ""
  9291. },
  9292. "require": {
  9293. "nikic/php-parser": "^4.18 || ^5.0",
  9294. "php": ">=8.1"
  9295. },
  9296. "require-dev": {
  9297. "phpunit/phpunit": "^10.0"
  9298. },
  9299. "type": "library",
  9300. "extra": {
  9301. "branch-alias": {
  9302. "dev-main": "2.0-dev"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "classmap": [
  9307. "src/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "BSD-3-Clause"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Sebastian Bergmann",
  9317. "email": "sebastian@phpunit.de",
  9318. "role": "lead"
  9319. }
  9320. ],
  9321. "description": "Library for counting the lines of code in PHP source code",
  9322. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9323. "support": {
  9324. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9325. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9326. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9327. },
  9328. "funding": [
  9329. {
  9330. "url": "https://github.com/sebastianbergmann",
  9331. "type": "github"
  9332. }
  9333. ],
  9334. "time": "2023-12-21T08:38:20+00:00"
  9335. },
  9336. {
  9337. "name": "sebastian/object-enumerator",
  9338. "version": "5.0.0",
  9339. "source": {
  9340. "type": "git",
  9341. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9342. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9343. },
  9344. "dist": {
  9345. "type": "zip",
  9346. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9347. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9348. "shasum": ""
  9349. },
  9350. "require": {
  9351. "php": ">=8.1",
  9352. "sebastian/object-reflector": "^3.0",
  9353. "sebastian/recursion-context": "^5.0"
  9354. },
  9355. "require-dev": {
  9356. "phpunit/phpunit": "^10.0"
  9357. },
  9358. "type": "library",
  9359. "extra": {
  9360. "branch-alias": {
  9361. "dev-main": "5.0-dev"
  9362. }
  9363. },
  9364. "autoload": {
  9365. "classmap": [
  9366. "src/"
  9367. ]
  9368. },
  9369. "notification-url": "https://packagist.org/downloads/",
  9370. "license": [
  9371. "BSD-3-Clause"
  9372. ],
  9373. "authors": [
  9374. {
  9375. "name": "Sebastian Bergmann",
  9376. "email": "sebastian@phpunit.de"
  9377. }
  9378. ],
  9379. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9380. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9381. "support": {
  9382. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9383. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9384. },
  9385. "funding": [
  9386. {
  9387. "url": "https://github.com/sebastianbergmann",
  9388. "type": "github"
  9389. }
  9390. ],
  9391. "time": "2023-02-03T07:08:32+00:00"
  9392. },
  9393. {
  9394. "name": "sebastian/object-reflector",
  9395. "version": "3.0.0",
  9396. "source": {
  9397. "type": "git",
  9398. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9399. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9400. },
  9401. "dist": {
  9402. "type": "zip",
  9403. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9404. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9405. "shasum": ""
  9406. },
  9407. "require": {
  9408. "php": ">=8.1"
  9409. },
  9410. "require-dev": {
  9411. "phpunit/phpunit": "^10.0"
  9412. },
  9413. "type": "library",
  9414. "extra": {
  9415. "branch-alias": {
  9416. "dev-main": "3.0-dev"
  9417. }
  9418. },
  9419. "autoload": {
  9420. "classmap": [
  9421. "src/"
  9422. ]
  9423. },
  9424. "notification-url": "https://packagist.org/downloads/",
  9425. "license": [
  9426. "BSD-3-Clause"
  9427. ],
  9428. "authors": [
  9429. {
  9430. "name": "Sebastian Bergmann",
  9431. "email": "sebastian@phpunit.de"
  9432. }
  9433. ],
  9434. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9435. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9436. "support": {
  9437. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9438. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9439. },
  9440. "funding": [
  9441. {
  9442. "url": "https://github.com/sebastianbergmann",
  9443. "type": "github"
  9444. }
  9445. ],
  9446. "time": "2023-02-03T07:06:18+00:00"
  9447. },
  9448. {
  9449. "name": "sebastian/recursion-context",
  9450. "version": "5.0.0",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9454. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9459. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9460. "shasum": ""
  9461. },
  9462. "require": {
  9463. "php": ">=8.1"
  9464. },
  9465. "require-dev": {
  9466. "phpunit/phpunit": "^10.0"
  9467. },
  9468. "type": "library",
  9469. "extra": {
  9470. "branch-alias": {
  9471. "dev-main": "5.0-dev"
  9472. }
  9473. },
  9474. "autoload": {
  9475. "classmap": [
  9476. "src/"
  9477. ]
  9478. },
  9479. "notification-url": "https://packagist.org/downloads/",
  9480. "license": [
  9481. "BSD-3-Clause"
  9482. ],
  9483. "authors": [
  9484. {
  9485. "name": "Sebastian Bergmann",
  9486. "email": "sebastian@phpunit.de"
  9487. },
  9488. {
  9489. "name": "Jeff Welch",
  9490. "email": "whatthejeff@gmail.com"
  9491. },
  9492. {
  9493. "name": "Adam Harvey",
  9494. "email": "aharvey@php.net"
  9495. }
  9496. ],
  9497. "description": "Provides functionality to recursively process PHP variables",
  9498. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9499. "support": {
  9500. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9501. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://github.com/sebastianbergmann",
  9506. "type": "github"
  9507. }
  9508. ],
  9509. "time": "2023-02-03T07:05:40+00:00"
  9510. },
  9511. {
  9512. "name": "sebastian/type",
  9513. "version": "4.0.0",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/sebastianbergmann/type.git",
  9517. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9522. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "php": ">=8.1"
  9527. },
  9528. "require-dev": {
  9529. "phpunit/phpunit": "^10.0"
  9530. },
  9531. "type": "library",
  9532. "extra": {
  9533. "branch-alias": {
  9534. "dev-main": "4.0-dev"
  9535. }
  9536. },
  9537. "autoload": {
  9538. "classmap": [
  9539. "src/"
  9540. ]
  9541. },
  9542. "notification-url": "https://packagist.org/downloads/",
  9543. "license": [
  9544. "BSD-3-Clause"
  9545. ],
  9546. "authors": [
  9547. {
  9548. "name": "Sebastian Bergmann",
  9549. "email": "sebastian@phpunit.de",
  9550. "role": "lead"
  9551. }
  9552. ],
  9553. "description": "Collection of value objects that represent the types of the PHP type system",
  9554. "homepage": "https://github.com/sebastianbergmann/type",
  9555. "support": {
  9556. "issues": "https://github.com/sebastianbergmann/type/issues",
  9557. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9558. },
  9559. "funding": [
  9560. {
  9561. "url": "https://github.com/sebastianbergmann",
  9562. "type": "github"
  9563. }
  9564. ],
  9565. "time": "2023-02-03T07:10:45+00:00"
  9566. },
  9567. {
  9568. "name": "sebastian/version",
  9569. "version": "4.0.1",
  9570. "source": {
  9571. "type": "git",
  9572. "url": "https://github.com/sebastianbergmann/version.git",
  9573. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9574. },
  9575. "dist": {
  9576. "type": "zip",
  9577. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9578. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9579. "shasum": ""
  9580. },
  9581. "require": {
  9582. "php": ">=8.1"
  9583. },
  9584. "type": "library",
  9585. "extra": {
  9586. "branch-alias": {
  9587. "dev-main": "4.0-dev"
  9588. }
  9589. },
  9590. "autoload": {
  9591. "classmap": [
  9592. "src/"
  9593. ]
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "BSD-3-Clause"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Sebastian Bergmann",
  9602. "email": "sebastian@phpunit.de",
  9603. "role": "lead"
  9604. }
  9605. ],
  9606. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9607. "homepage": "https://github.com/sebastianbergmann/version",
  9608. "support": {
  9609. "issues": "https://github.com/sebastianbergmann/version/issues",
  9610. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9611. },
  9612. "funding": [
  9613. {
  9614. "url": "https://github.com/sebastianbergmann",
  9615. "type": "github"
  9616. }
  9617. ],
  9618. "time": "2023-02-07T11:34:05+00:00"
  9619. },
  9620. {
  9621. "name": "swoole/ide-helper",
  9622. "version": "5.1.5",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/swoole/ide-helper.git",
  9626. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  9631. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  9632. "shasum": ""
  9633. },
  9634. "type": "library",
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "Apache-2.0"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Team Swoole",
  9642. "email": "team@swoole.com"
  9643. }
  9644. ],
  9645. "description": "IDE help files for Swoole.",
  9646. "support": {
  9647. "issues": "https://github.com/swoole/ide-helper/issues",
  9648. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  9649. },
  9650. "time": "2024-11-05T07:35:30+00:00"
  9651. },
  9652. {
  9653. "name": "symfony/event-dispatcher",
  9654. "version": "v6.4.13",
  9655. "source": {
  9656. "type": "git",
  9657. "url": "https://github.com/symfony/event-dispatcher.git",
  9658. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9659. },
  9660. "dist": {
  9661. "type": "zip",
  9662. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9663. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9664. "shasum": ""
  9665. },
  9666. "require": {
  9667. "php": ">=8.1",
  9668. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9669. },
  9670. "conflict": {
  9671. "symfony/dependency-injection": "<5.4",
  9672. "symfony/service-contracts": "<2.5"
  9673. },
  9674. "provide": {
  9675. "psr/event-dispatcher-implementation": "1.0",
  9676. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9677. },
  9678. "require-dev": {
  9679. "psr/log": "^1|^2|^3",
  9680. "symfony/config": "^5.4|^6.0|^7.0",
  9681. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9682. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9683. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9684. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9685. "symfony/service-contracts": "^2.5|^3",
  9686. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9687. },
  9688. "type": "library",
  9689. "autoload": {
  9690. "psr-4": {
  9691. "Symfony\\Component\\EventDispatcher\\": ""
  9692. },
  9693. "exclude-from-classmap": [
  9694. "/Tests/"
  9695. ]
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "MIT"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Fabien Potencier",
  9704. "email": "fabien@symfony.com"
  9705. },
  9706. {
  9707. "name": "Symfony Community",
  9708. "homepage": "https://symfony.com/contributors"
  9709. }
  9710. ],
  9711. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9712. "homepage": "https://symfony.com",
  9713. "support": {
  9714. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  9715. },
  9716. "funding": [
  9717. {
  9718. "url": "https://symfony.com/sponsor",
  9719. "type": "custom"
  9720. },
  9721. {
  9722. "url": "https://github.com/fabpot",
  9723. "type": "github"
  9724. },
  9725. {
  9726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9727. "type": "tidelift"
  9728. }
  9729. ],
  9730. "time": "2024-09-25T14:18:03+00:00"
  9731. },
  9732. {
  9733. "name": "symfony/event-dispatcher-contracts",
  9734. "version": "v3.5.0",
  9735. "source": {
  9736. "type": "git",
  9737. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9738. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9739. },
  9740. "dist": {
  9741. "type": "zip",
  9742. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9743. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9744. "shasum": ""
  9745. },
  9746. "require": {
  9747. "php": ">=8.1",
  9748. "psr/event-dispatcher": "^1"
  9749. },
  9750. "type": "library",
  9751. "extra": {
  9752. "branch-alias": {
  9753. "dev-main": "3.5-dev"
  9754. },
  9755. "thanks": {
  9756. "name": "symfony/contracts",
  9757. "url": "https://github.com/symfony/contracts"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "psr-4": {
  9762. "Symfony\\Contracts\\EventDispatcher\\": ""
  9763. }
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "MIT"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Nicolas Grekas",
  9772. "email": "p@tchwork.com"
  9773. },
  9774. {
  9775. "name": "Symfony Community",
  9776. "homepage": "https://symfony.com/contributors"
  9777. }
  9778. ],
  9779. "description": "Generic abstractions related to dispatching event",
  9780. "homepage": "https://symfony.com",
  9781. "keywords": [
  9782. "abstractions",
  9783. "contracts",
  9784. "decoupling",
  9785. "interfaces",
  9786. "interoperability",
  9787. "standards"
  9788. ],
  9789. "support": {
  9790. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9791. },
  9792. "funding": [
  9793. {
  9794. "url": "https://symfony.com/sponsor",
  9795. "type": "custom"
  9796. },
  9797. {
  9798. "url": "https://github.com/fabpot",
  9799. "type": "github"
  9800. },
  9801. {
  9802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9803. "type": "tidelift"
  9804. }
  9805. ],
  9806. "time": "2024-04-18T09:32:20+00:00"
  9807. },
  9808. {
  9809. "name": "symfony/filesystem",
  9810. "version": "v6.4.13",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/symfony/filesystem.git",
  9814. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9819. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9820. "shasum": ""
  9821. },
  9822. "require": {
  9823. "php": ">=8.1",
  9824. "symfony/polyfill-ctype": "~1.8",
  9825. "symfony/polyfill-mbstring": "~1.8"
  9826. },
  9827. "require-dev": {
  9828. "symfony/process": "^5.4|^6.4|^7.0"
  9829. },
  9830. "type": "library",
  9831. "autoload": {
  9832. "psr-4": {
  9833. "Symfony\\Component\\Filesystem\\": ""
  9834. },
  9835. "exclude-from-classmap": [
  9836. "/Tests/"
  9837. ]
  9838. },
  9839. "notification-url": "https://packagist.org/downloads/",
  9840. "license": [
  9841. "MIT"
  9842. ],
  9843. "authors": [
  9844. {
  9845. "name": "Fabien Potencier",
  9846. "email": "fabien@symfony.com"
  9847. },
  9848. {
  9849. "name": "Symfony Community",
  9850. "homepage": "https://symfony.com/contributors"
  9851. }
  9852. ],
  9853. "description": "Provides basic utilities for the filesystem",
  9854. "homepage": "https://symfony.com",
  9855. "support": {
  9856. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  9857. },
  9858. "funding": [
  9859. {
  9860. "url": "https://symfony.com/sponsor",
  9861. "type": "custom"
  9862. },
  9863. {
  9864. "url": "https://github.com/fabpot",
  9865. "type": "github"
  9866. },
  9867. {
  9868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9869. "type": "tidelift"
  9870. }
  9871. ],
  9872. "time": "2024-10-25T15:07:50+00:00"
  9873. },
  9874. {
  9875. "name": "symfony/http-foundation",
  9876. "version": "v6.4.14",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/symfony/http-foundation.git",
  9880. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  9885. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  9886. "shasum": ""
  9887. },
  9888. "require": {
  9889. "php": ">=8.1",
  9890. "symfony/deprecation-contracts": "^2.5|^3",
  9891. "symfony/polyfill-mbstring": "~1.1",
  9892. "symfony/polyfill-php83": "^1.27"
  9893. },
  9894. "conflict": {
  9895. "symfony/cache": "<6.3"
  9896. },
  9897. "require-dev": {
  9898. "doctrine/dbal": "^2.13.1|^3|^4",
  9899. "predis/predis": "^1.1|^2.0",
  9900. "symfony/cache": "^6.3|^7.0",
  9901. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9902. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9903. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9904. "symfony/mime": "^5.4|^6.0|^7.0",
  9905. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9906. },
  9907. "type": "library",
  9908. "autoload": {
  9909. "psr-4": {
  9910. "Symfony\\Component\\HttpFoundation\\": ""
  9911. },
  9912. "exclude-from-classmap": [
  9913. "/Tests/"
  9914. ]
  9915. },
  9916. "notification-url": "https://packagist.org/downloads/",
  9917. "license": [
  9918. "MIT"
  9919. ],
  9920. "authors": [
  9921. {
  9922. "name": "Fabien Potencier",
  9923. "email": "fabien@symfony.com"
  9924. },
  9925. {
  9926. "name": "Symfony Community",
  9927. "homepage": "https://symfony.com/contributors"
  9928. }
  9929. ],
  9930. "description": "Defines an object-oriented layer for the HTTP specification",
  9931. "homepage": "https://symfony.com",
  9932. "support": {
  9933. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://symfony.com/sponsor",
  9938. "type": "custom"
  9939. },
  9940. {
  9941. "url": "https://github.com/fabpot",
  9942. "type": "github"
  9943. },
  9944. {
  9945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9946. "type": "tidelift"
  9947. }
  9948. ],
  9949. "time": "2024-11-05T16:39:55+00:00"
  9950. },
  9951. {
  9952. "name": "symfony/options-resolver",
  9953. "version": "v6.4.13",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/symfony/options-resolver.git",
  9957. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  9962. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  9963. "shasum": ""
  9964. },
  9965. "require": {
  9966. "php": ">=8.1",
  9967. "symfony/deprecation-contracts": "^2.5|^3"
  9968. },
  9969. "type": "library",
  9970. "autoload": {
  9971. "psr-4": {
  9972. "Symfony\\Component\\OptionsResolver\\": ""
  9973. },
  9974. "exclude-from-classmap": [
  9975. "/Tests/"
  9976. ]
  9977. },
  9978. "notification-url": "https://packagist.org/downloads/",
  9979. "license": [
  9980. "MIT"
  9981. ],
  9982. "authors": [
  9983. {
  9984. "name": "Fabien Potencier",
  9985. "email": "fabien@symfony.com"
  9986. },
  9987. {
  9988. "name": "Symfony Community",
  9989. "homepage": "https://symfony.com/contributors"
  9990. }
  9991. ],
  9992. "description": "Provides an improved replacement for the array_replace PHP function",
  9993. "homepage": "https://symfony.com",
  9994. "keywords": [
  9995. "config",
  9996. "configuration",
  9997. "options"
  9998. ],
  9999. "support": {
  10000. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://symfony.com/sponsor",
  10005. "type": "custom"
  10006. },
  10007. {
  10008. "url": "https://github.com/fabpot",
  10009. "type": "github"
  10010. },
  10011. {
  10012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10013. "type": "tidelift"
  10014. }
  10015. ],
  10016. "time": "2024-09-25T14:18:03+00:00"
  10017. },
  10018. {
  10019. "name": "symfony/polyfill-php81",
  10020. "version": "v1.31.0",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/symfony/polyfill-php81.git",
  10024. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10029. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10030. "shasum": ""
  10031. },
  10032. "require": {
  10033. "php": ">=7.2"
  10034. },
  10035. "type": "library",
  10036. "extra": {
  10037. "thanks": {
  10038. "name": "symfony/polyfill",
  10039. "url": "https://github.com/symfony/polyfill"
  10040. }
  10041. },
  10042. "autoload": {
  10043. "files": [
  10044. "bootstrap.php"
  10045. ],
  10046. "psr-4": {
  10047. "Symfony\\Polyfill\\Php81\\": ""
  10048. },
  10049. "classmap": [
  10050. "Resources/stubs"
  10051. ]
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "MIT"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Nicolas Grekas",
  10060. "email": "p@tchwork.com"
  10061. },
  10062. {
  10063. "name": "Symfony Community",
  10064. "homepage": "https://symfony.com/contributors"
  10065. }
  10066. ],
  10067. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10068. "homepage": "https://symfony.com",
  10069. "keywords": [
  10070. "compatibility",
  10071. "polyfill",
  10072. "portable",
  10073. "shim"
  10074. ],
  10075. "support": {
  10076. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10077. },
  10078. "funding": [
  10079. {
  10080. "url": "https://symfony.com/sponsor",
  10081. "type": "custom"
  10082. },
  10083. {
  10084. "url": "https://github.com/fabpot",
  10085. "type": "github"
  10086. },
  10087. {
  10088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10089. "type": "tidelift"
  10090. }
  10091. ],
  10092. "time": "2024-09-09T11:45:10+00:00"
  10093. },
  10094. {
  10095. "name": "symfony/polyfill-php83",
  10096. "version": "v1.31.0",
  10097. "source": {
  10098. "type": "git",
  10099. "url": "https://github.com/symfony/polyfill-php83.git",
  10100. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10101. },
  10102. "dist": {
  10103. "type": "zip",
  10104. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10105. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10106. "shasum": ""
  10107. },
  10108. "require": {
  10109. "php": ">=7.2"
  10110. },
  10111. "type": "library",
  10112. "extra": {
  10113. "thanks": {
  10114. "name": "symfony/polyfill",
  10115. "url": "https://github.com/symfony/polyfill"
  10116. }
  10117. },
  10118. "autoload": {
  10119. "files": [
  10120. "bootstrap.php"
  10121. ],
  10122. "psr-4": {
  10123. "Symfony\\Polyfill\\Php83\\": ""
  10124. },
  10125. "classmap": [
  10126. "Resources/stubs"
  10127. ]
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "MIT"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Nicolas Grekas",
  10136. "email": "p@tchwork.com"
  10137. },
  10138. {
  10139. "name": "Symfony Community",
  10140. "homepage": "https://symfony.com/contributors"
  10141. }
  10142. ],
  10143. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10144. "homepage": "https://symfony.com",
  10145. "keywords": [
  10146. "compatibility",
  10147. "polyfill",
  10148. "portable",
  10149. "shim"
  10150. ],
  10151. "support": {
  10152. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10153. },
  10154. "funding": [
  10155. {
  10156. "url": "https://symfony.com/sponsor",
  10157. "type": "custom"
  10158. },
  10159. {
  10160. "url": "https://github.com/fabpot",
  10161. "type": "github"
  10162. },
  10163. {
  10164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10165. "type": "tidelift"
  10166. }
  10167. ],
  10168. "time": "2024-09-09T11:45:10+00:00"
  10169. },
  10170. {
  10171. "name": "symfony/process",
  10172. "version": "v6.4.14",
  10173. "source": {
  10174. "type": "git",
  10175. "url": "https://github.com/symfony/process.git",
  10176. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  10177. },
  10178. "dist": {
  10179. "type": "zip",
  10180. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  10181. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  10182. "shasum": ""
  10183. },
  10184. "require": {
  10185. "php": ">=8.1"
  10186. },
  10187. "type": "library",
  10188. "autoload": {
  10189. "psr-4": {
  10190. "Symfony\\Component\\Process\\": ""
  10191. },
  10192. "exclude-from-classmap": [
  10193. "/Tests/"
  10194. ]
  10195. },
  10196. "notification-url": "https://packagist.org/downloads/",
  10197. "license": [
  10198. "MIT"
  10199. ],
  10200. "authors": [
  10201. {
  10202. "name": "Fabien Potencier",
  10203. "email": "fabien@symfony.com"
  10204. },
  10205. {
  10206. "name": "Symfony Community",
  10207. "homepage": "https://symfony.com/contributors"
  10208. }
  10209. ],
  10210. "description": "Executes commands in sub-processes",
  10211. "homepage": "https://symfony.com",
  10212. "support": {
  10213. "source": "https://github.com/symfony/process/tree/v6.4.14"
  10214. },
  10215. "funding": [
  10216. {
  10217. "url": "https://symfony.com/sponsor",
  10218. "type": "custom"
  10219. },
  10220. {
  10221. "url": "https://github.com/fabpot",
  10222. "type": "github"
  10223. },
  10224. {
  10225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10226. "type": "tidelift"
  10227. }
  10228. ],
  10229. "time": "2024-11-06T09:25:01+00:00"
  10230. },
  10231. {
  10232. "name": "symfony/stopwatch",
  10233. "version": "v6.4.13",
  10234. "source": {
  10235. "type": "git",
  10236. "url": "https://github.com/symfony/stopwatch.git",
  10237. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  10238. },
  10239. "dist": {
  10240. "type": "zip",
  10241. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10242. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10243. "shasum": ""
  10244. },
  10245. "require": {
  10246. "php": ">=8.1",
  10247. "symfony/service-contracts": "^2.5|^3"
  10248. },
  10249. "type": "library",
  10250. "autoload": {
  10251. "psr-4": {
  10252. "Symfony\\Component\\Stopwatch\\": ""
  10253. },
  10254. "exclude-from-classmap": [
  10255. "/Tests/"
  10256. ]
  10257. },
  10258. "notification-url": "https://packagist.org/downloads/",
  10259. "license": [
  10260. "MIT"
  10261. ],
  10262. "authors": [
  10263. {
  10264. "name": "Fabien Potencier",
  10265. "email": "fabien@symfony.com"
  10266. },
  10267. {
  10268. "name": "Symfony Community",
  10269. "homepage": "https://symfony.com/contributors"
  10270. }
  10271. ],
  10272. "description": "Provides a way to profile code",
  10273. "homepage": "https://symfony.com",
  10274. "support": {
  10275. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://symfony.com/sponsor",
  10280. "type": "custom"
  10281. },
  10282. {
  10283. "url": "https://github.com/fabpot",
  10284. "type": "github"
  10285. },
  10286. {
  10287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10288. "type": "tidelift"
  10289. }
  10290. ],
  10291. "time": "2024-09-25T14:18:03+00:00"
  10292. },
  10293. {
  10294. "name": "theseer/tokenizer",
  10295. "version": "1.2.3",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/theseer/tokenizer.git",
  10299. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10304. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "ext-dom": "*",
  10309. "ext-tokenizer": "*",
  10310. "ext-xmlwriter": "*",
  10311. "php": "^7.2 || ^8.0"
  10312. },
  10313. "type": "library",
  10314. "autoload": {
  10315. "classmap": [
  10316. "src/"
  10317. ]
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "BSD-3-Clause"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "Arne Blankerts",
  10326. "email": "arne@blankerts.de",
  10327. "role": "Developer"
  10328. }
  10329. ],
  10330. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10331. "support": {
  10332. "issues": "https://github.com/theseer/tokenizer/issues",
  10333. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/theseer",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2024-03-03T12:36:25+00:00"
  10342. }
  10343. ],
  10344. "aliases": [],
  10345. "minimum-stability": "dev",
  10346. "stability-flags": [],
  10347. "prefer-stable": true,
  10348. "prefer-lowest": false,
  10349. "platform": {
  10350. "php": ">=8.1"
  10351. },
  10352. "platform-dev": [],
  10353. "plugin-api-version": "2.6.0"
  10354. }