composer.lock 384 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849
  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": "b6123e07a5d46021d034b563b38afc91",
  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/async-queue",
  837. "version": "v3.1.42",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/async-queue.git",
  841. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  846. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/command": "~3.1.0",
  853. "hyperf/contract": "~3.1.0",
  854. "hyperf/support": "~3.1.0",
  855. "hyperf/utils": "~3.1.0",
  856. "php": ">=8.1",
  857. "psr/container": "^1.0 || ^2.0",
  858. "psr/event-dispatcher": "^1.0"
  859. },
  860. "suggest": {
  861. "hyperf/di": "Required to use annotations.",
  862. "hyperf/event": "Required to dispatch a event.",
  863. "hyperf/logger": "Required to use QueueHandleListener.",
  864. "hyperf/process": "Auto register the consumer process for server."
  865. },
  866. "type": "library",
  867. "extra": {
  868. "branch-alias": {
  869. "dev-master": "3.1-dev"
  870. },
  871. "hyperf": {
  872. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  873. }
  874. },
  875. "autoload": {
  876. "files": [
  877. "src/Functions.php"
  878. ],
  879. "psr-4": {
  880. "Hyperf\\AsyncQueue\\": "src/"
  881. }
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "description": "A async queue component for hyperf.",
  888. "homepage": "https://hyperf.io",
  889. "keywords": [
  890. "async-queue",
  891. "hyperf",
  892. "php"
  893. ],
  894. "support": {
  895. "docs": "https://hyperf.wiki",
  896. "issues": "https://github.com/hyperf/hyperf/issues",
  897. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  898. "source": "https://github.com/hyperf/hyperf"
  899. },
  900. "funding": [
  901. {
  902. "url": "https://hyperf.wiki/#/zh-cn/donate",
  903. "type": "custom"
  904. },
  905. {
  906. "url": "https://opencollective.com/hyperf",
  907. "type": "open_collective"
  908. }
  909. ],
  910. "time": "2024-09-25T02:54:12+00:00"
  911. },
  912. {
  913. "name": "hyperf/cache",
  914. "version": "v3.1.43",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/hyperf/cache.git",
  918. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  923. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "hyperf/codec": "~3.1.0",
  928. "hyperf/collection": "~3.1.0",
  929. "hyperf/contract": "~3.1.0",
  930. "hyperf/support": "~3.1.0",
  931. "hyperf/utils": "~3.1.0",
  932. "php": ">=8.1",
  933. "psr/container": "^1.0 || ^2.0",
  934. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  935. },
  936. "suggest": {
  937. "hyperf/di": "Use cache annotations.",
  938. "hyperf/event": "Use listener to delete annotation cache."
  939. },
  940. "type": "library",
  941. "extra": {
  942. "branch-alias": {
  943. "dev-master": "3.1-dev"
  944. },
  945. "hyperf": {
  946. "config": "Hyperf\\Cache\\ConfigProvider"
  947. }
  948. },
  949. "autoload": {
  950. "psr-4": {
  951. "Hyperf\\Cache\\": "src/"
  952. }
  953. },
  954. "notification-url": "https://packagist.org/downloads/",
  955. "license": [
  956. "MIT"
  957. ],
  958. "description": "A cache component for hyperf.",
  959. "homepage": "https://hyperf.io",
  960. "keywords": [
  961. "cache",
  962. "hyperf",
  963. "php"
  964. ],
  965. "support": {
  966. "docs": "https://hyperf.wiki",
  967. "issues": "https://github.com/hyperf/hyperf/issues",
  968. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  969. "source": "https://github.com/hyperf/hyperf"
  970. },
  971. "funding": [
  972. {
  973. "url": "https://hyperf.wiki/#/zh-cn/donate",
  974. "type": "custom"
  975. },
  976. {
  977. "url": "https://opencollective.com/hyperf",
  978. "type": "open_collective"
  979. }
  980. ],
  981. "time": "2024-10-09T10:22:39+00:00"
  982. },
  983. {
  984. "name": "hyperf/code-parser",
  985. "version": "v3.1.42",
  986. "source": {
  987. "type": "git",
  988. "url": "https://github.com/hyperf/code-parser.git",
  989. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  990. },
  991. "dist": {
  992. "type": "zip",
  993. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  994. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  995. "shasum": ""
  996. },
  997. "require": {
  998. "hyperf/collection": "~3.1.0",
  999. "hyperf/stringable": "~3.1.0",
  1000. "hyperf/support": "~3.1.0",
  1001. "php": ">=8.1"
  1002. },
  1003. "suggest": {
  1004. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1005. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1006. },
  1007. "type": "library",
  1008. "extra": {
  1009. "branch-alias": {
  1010. "dev-master": "3.1-dev"
  1011. }
  1012. },
  1013. "autoload": {
  1014. "psr-4": {
  1015. "Hyperf\\CodeParser\\": "src/"
  1016. }
  1017. },
  1018. "notification-url": "https://packagist.org/downloads/",
  1019. "license": [
  1020. "MIT"
  1021. ],
  1022. "description": "A code parser component for Hyperf.",
  1023. "homepage": "https://hyperf.io",
  1024. "keywords": [
  1025. "code-parser",
  1026. "hyperf",
  1027. "php",
  1028. "swoole"
  1029. ],
  1030. "support": {
  1031. "docs": "https://hyperf.wiki",
  1032. "issues": "https://github.com/hyperf/hyperf/issues",
  1033. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1034. "source": "https://github.com/hyperf/hyperf"
  1035. },
  1036. "funding": [
  1037. {
  1038. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1039. "type": "custom"
  1040. },
  1041. {
  1042. "url": "https://opencollective.com/hyperf",
  1043. "type": "open_collective"
  1044. }
  1045. ],
  1046. "time": "2024-09-25T02:54:12+00:00"
  1047. },
  1048. {
  1049. "name": "hyperf/codec",
  1050. "version": "v3.1.42",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/hyperf/codec.git",
  1054. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1059. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1060. "shasum": ""
  1061. },
  1062. "require": {
  1063. "ext-json": "*",
  1064. "ext-xml": "*",
  1065. "hyperf/contract": "~3.1.0",
  1066. "php": ">=8.1"
  1067. },
  1068. "suggest": {
  1069. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1070. },
  1071. "type": "library",
  1072. "extra": {
  1073. "branch-alias": {
  1074. "dev-master": "3.1-dev"
  1075. }
  1076. },
  1077. "autoload": {
  1078. "psr-4": {
  1079. "Hyperf\\Codec\\": "src/"
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "description": "A codec component for Hyperf.",
  1087. "homepage": "https://hyperf.io",
  1088. "keywords": [
  1089. "codec",
  1090. "hyperf",
  1091. "php",
  1092. "swoole"
  1093. ],
  1094. "support": {
  1095. "docs": "https://hyperf.wiki",
  1096. "issues": "https://github.com/hyperf/hyperf/issues",
  1097. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1098. "source": "https://github.com/hyperf/hyperf"
  1099. },
  1100. "funding": [
  1101. {
  1102. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1103. "type": "custom"
  1104. },
  1105. {
  1106. "url": "https://opencollective.com/hyperf",
  1107. "type": "open_collective"
  1108. }
  1109. ],
  1110. "time": "2024-09-25T02:54:12+00:00"
  1111. },
  1112. {
  1113. "name": "hyperf/collection",
  1114. "version": "v3.1.44",
  1115. "source": {
  1116. "type": "git",
  1117. "url": "https://github.com/hyperf/collection.git",
  1118. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1119. },
  1120. "dist": {
  1121. "type": "zip",
  1122. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1123. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1124. "shasum": ""
  1125. },
  1126. "require": {
  1127. "hyperf/conditionable": "~3.1.0",
  1128. "hyperf/contract": "~3.1.0",
  1129. "hyperf/macroable": "~3.1.0",
  1130. "hyperf/stringable": "~3.1.0",
  1131. "php": ">=8.1"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "3.1-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "files": [
  1141. "src/Functions.php"
  1142. ],
  1143. "psr-4": {
  1144. "Hyperf\\Collection\\": "src/"
  1145. }
  1146. },
  1147. "notification-url": "https://packagist.org/downloads/",
  1148. "license": [
  1149. "MIT"
  1150. ],
  1151. "description": "Hyperf Collection package which come from illuminate/collections",
  1152. "homepage": "https://hyperf.io",
  1153. "keywords": [
  1154. "collection",
  1155. "hyperf",
  1156. "php",
  1157. "swoole"
  1158. ],
  1159. "support": {
  1160. "docs": "https://hyperf.wiki",
  1161. "issues": "https://github.com/hyperf/hyperf/issues",
  1162. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1163. "source": "https://github.com/hyperf/hyperf"
  1164. },
  1165. "funding": [
  1166. {
  1167. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1168. "type": "custom"
  1169. },
  1170. {
  1171. "url": "https://opencollective.com/hyperf",
  1172. "type": "open_collective"
  1173. }
  1174. ],
  1175. "time": "2024-10-23T10:12:23+00:00"
  1176. },
  1177. {
  1178. "name": "hyperf/command",
  1179. "version": "v3.1.42",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/hyperf/command.git",
  1183. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1188. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "hyperf/collection": "~3.1.0",
  1193. "hyperf/context": "~3.1.0",
  1194. "hyperf/contract": "~3.1.0",
  1195. "hyperf/coroutine": "~3.1.0",
  1196. "hyperf/di": "~3.1.0",
  1197. "hyperf/stringable": "~3.1.0",
  1198. "hyperf/support": "~3.1.0",
  1199. "hyperf/tappable": "~3.1.0",
  1200. "php": ">=8.1",
  1201. "psr/event-dispatcher": "^1.0",
  1202. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1203. },
  1204. "suggest": {
  1205. "hyperf/di": "Required to use annotations.",
  1206. "hyperf/event": "Required to use listeners."
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "3.1-dev"
  1212. },
  1213. "hyperf": {
  1214. "config": "Hyperf\\Command\\ConfigProvider"
  1215. }
  1216. },
  1217. "autoload": {
  1218. "psr-4": {
  1219. "Hyperf\\Command\\": "src/"
  1220. }
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "Command for hyperf",
  1227. "keywords": [
  1228. "command",
  1229. "php",
  1230. "swoole"
  1231. ],
  1232. "support": {
  1233. "issues": "https://github.com/hyperf/command/issues",
  1234. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1235. },
  1236. "funding": [
  1237. {
  1238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1239. "type": "custom"
  1240. },
  1241. {
  1242. "url": "https://opencollective.com/hyperf",
  1243. "type": "open_collective"
  1244. }
  1245. ],
  1246. "time": "2024-09-25T02:54:12+00:00"
  1247. },
  1248. {
  1249. "name": "hyperf/conditionable",
  1250. "version": "v3.1.42",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/hyperf/conditionable.git",
  1254. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1259. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1260. "shasum": ""
  1261. },
  1262. "require": {
  1263. "php": ">=8.1"
  1264. },
  1265. "type": "library",
  1266. "extra": {
  1267. "branch-alias": {
  1268. "dev-master": "3.1-dev"
  1269. }
  1270. },
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Hyperf\\Conditionable\\": "src/"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1281. "homepage": "https://hyperf.io",
  1282. "keywords": [
  1283. "conditionable",
  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",
  1308. "version": "v3.1.42",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config.git",
  1312. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1317. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/collection": "~3.1.0",
  1322. "hyperf/contract": "~3.1.0",
  1323. "hyperf/support": "~3.1.0",
  1324. "php": ">=8.1",
  1325. "psr/container": "^1.0 || ^2.0",
  1326. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1327. },
  1328. "suggest": {
  1329. "hyperf/context": "Required to use config()",
  1330. "hyperf/di": "Allows using @Value annotation",
  1331. "hyperf/event": "Allows using @Value annotation",
  1332. "hyperf/framework": "Allows using @Value annotation",
  1333. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1334. },
  1335. "type": "library",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "3.1-dev"
  1339. },
  1340. "hyperf": {
  1341. "config": "Hyperf\\Config\\ConfigProvider"
  1342. }
  1343. },
  1344. "autoload": {
  1345. "files": [
  1346. "./src/Functions.php"
  1347. ],
  1348. "psr-4": {
  1349. "Hyperf\\Config\\": "src/"
  1350. }
  1351. },
  1352. "notification-url": "https://packagist.org/downloads/",
  1353. "license": [
  1354. "MIT"
  1355. ],
  1356. "description": "An independent component that provides configuration container.",
  1357. "homepage": "https://hyperf.io",
  1358. "keywords": [
  1359. "config",
  1360. "configuration",
  1361. "hyperf",
  1362. "php",
  1363. "swoole"
  1364. ],
  1365. "support": {
  1366. "docs": "https://hyperf.wiki",
  1367. "issues": "https://github.com/hyperf/hyperf/issues",
  1368. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1369. "source": "https://github.com/hyperf/hyperf"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://opencollective.com/hyperf",
  1378. "type": "open_collective"
  1379. }
  1380. ],
  1381. "time": "2024-09-25T02:54:12+00:00"
  1382. },
  1383. {
  1384. "name": "hyperf/config-center",
  1385. "version": "v3.1.42",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/hyperf/config-center.git",
  1389. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1394. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "hyperf/support": "~3.1.0",
  1399. "php": ">=8.1"
  1400. },
  1401. "suggest": {
  1402. "hyperf/process": "^2.1"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "3.1-dev"
  1408. },
  1409. "hyperf": {
  1410. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1411. }
  1412. },
  1413. "autoload": {
  1414. "psr-4": {
  1415. "Hyperf\\ConfigCenter\\": "src/"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "MIT"
  1421. ],
  1422. "description": "The abstraction component of config center",
  1423. "homepage": "https://hyperf.io",
  1424. "keywords": [
  1425. "config-center",
  1426. "hyperf",
  1427. "php"
  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/config-nacos",
  1449. "version": "v3.1.42",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/config-nacos.git",
  1453. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1458. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/codec": "~3.1.0",
  1463. "hyperf/config-center": "~3.1.0",
  1464. "hyperf/contract": "~3.1.0",
  1465. "hyperf/guzzle": "~3.1.0",
  1466. "hyperf/nacos": "~3.1.0",
  1467. "hyperf/support": "~3.1.0",
  1468. "hyperf/utils": "~3.1.0",
  1469. "jetbrains/phpstorm-attributes": "^1.0",
  1470. "php": ">=8.1"
  1471. },
  1472. "suggest": {
  1473. "ext-json": "*",
  1474. "ext-simplexml": "*",
  1475. "ext-yaml": "*",
  1476. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1477. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1478. "hyperf/process": "Required to use processes. (~2.2.0)"
  1479. },
  1480. "type": "library",
  1481. "extra": {
  1482. "branch-alias": {
  1483. "dev-master": "3.1-dev"
  1484. },
  1485. "hyperf": {
  1486. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "psr-4": {
  1491. "Hyperf\\ConfigNacos\\": "src/"
  1492. }
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "MIT"
  1497. ],
  1498. "description": "A nacos adapter for config center component.",
  1499. "homepage": "https://hyperf.io",
  1500. "keywords": [
  1501. "hyperf",
  1502. "nacos",
  1503. "php",
  1504. "swoole"
  1505. ],
  1506. "support": {
  1507. "docs": "https://hyperf.wiki",
  1508. "issues": "https://github.com/hyperf/hyperf/issues",
  1509. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1510. "source": "https://github.com/hyperf/hyperf"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://opencollective.com/hyperf",
  1519. "type": "open_collective"
  1520. }
  1521. ],
  1522. "time": "2024-09-25T02:54:12+00:00"
  1523. },
  1524. {
  1525. "name": "hyperf/constants",
  1526. "version": "v3.1.42",
  1527. "source": {
  1528. "type": "git",
  1529. "url": "https://github.com/hyperf/constants.git",
  1530. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1531. },
  1532. "dist": {
  1533. "type": "zip",
  1534. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1535. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1536. "shasum": ""
  1537. },
  1538. "require": {
  1539. "hyperf/di": "~3.1.0",
  1540. "hyperf/support": "~3.1.0",
  1541. "hyperf/utils": "~3.1.0",
  1542. "php": ">=8.1"
  1543. },
  1544. "suggest": {
  1545. "hyperf/translation": "Required to use translation."
  1546. },
  1547. "type": "library",
  1548. "extra": {
  1549. "branch-alias": {
  1550. "dev-master": "3.1-dev"
  1551. },
  1552. "hyperf": {
  1553. "config": "Hyperf\\Constants\\ConfigProvider"
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-4": {
  1558. "Hyperf\\Constants\\": "src/"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "MIT"
  1564. ],
  1565. "description": "A constants component for hyperf.",
  1566. "homepage": "https://hyperf.io",
  1567. "keywords": [
  1568. "constants",
  1569. "hyperf",
  1570. "php"
  1571. ],
  1572. "support": {
  1573. "docs": "https://hyperf.wiki",
  1574. "issues": "https://github.com/hyperf/hyperf/issues",
  1575. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1576. "source": "https://github.com/hyperf/hyperf"
  1577. },
  1578. "funding": [
  1579. {
  1580. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1581. "type": "custom"
  1582. },
  1583. {
  1584. "url": "https://opencollective.com/hyperf",
  1585. "type": "open_collective"
  1586. }
  1587. ],
  1588. "time": "2024-09-25T02:54:12+00:00"
  1589. },
  1590. {
  1591. "name": "hyperf/consul",
  1592. "version": "v3.1.42",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/hyperf/consul.git",
  1596. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1601. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1606. "php": ">=8.1"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "3.1-dev"
  1612. },
  1613. "hyperf": {
  1614. "config": "Hyperf\\Consul\\ConfigProvider"
  1615. }
  1616. },
  1617. "autoload": {
  1618. "psr-4": {
  1619. "Hyperf\\Consul\\": "src/"
  1620. }
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "description": "A Consul Client for Hyperf.",
  1627. "homepage": "https://hyperf.io",
  1628. "keywords": [
  1629. "consul",
  1630. "consul-client",
  1631. "hyperf",
  1632. "php",
  1633. "swoole"
  1634. ],
  1635. "support": {
  1636. "docs": "https://hyperf.wiki",
  1637. "issues": "https://github.com/hyperf/hyperf/issues",
  1638. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1639. "source": "https://github.com/hyperf/hyperf"
  1640. },
  1641. "funding": [
  1642. {
  1643. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1644. "type": "custom"
  1645. },
  1646. {
  1647. "url": "https://opencollective.com/hyperf",
  1648. "type": "open_collective"
  1649. }
  1650. ],
  1651. "time": "2024-09-25T02:54:12+00:00"
  1652. },
  1653. {
  1654. "name": "hyperf/context",
  1655. "version": "v3.1.42",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/hyperf/context.git",
  1659. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1664. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "hyperf/engine": "^2.0",
  1669. "php": ">=8.1"
  1670. },
  1671. "suggest": {
  1672. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "3.1-dev"
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "Hyperf\\Context\\": "src/"
  1683. }
  1684. },
  1685. "notification-url": "https://packagist.org/downloads/",
  1686. "license": [
  1687. "MIT"
  1688. ],
  1689. "description": "A coroutine/application context library.",
  1690. "homepage": "https://hyperf.io",
  1691. "keywords": [
  1692. "Context",
  1693. "hyperf",
  1694. "php",
  1695. "swoole"
  1696. ],
  1697. "support": {
  1698. "docs": "https://hyperf.wiki",
  1699. "issues": "https://github.com/hyperf/hyperf/issues",
  1700. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1701. "source": "https://github.com/hyperf/hyperf"
  1702. },
  1703. "funding": [
  1704. {
  1705. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1706. "type": "custom"
  1707. },
  1708. {
  1709. "url": "https://opencollective.com/hyperf",
  1710. "type": "open_collective"
  1711. }
  1712. ],
  1713. "time": "2024-09-25T02:54:12+00:00"
  1714. },
  1715. {
  1716. "name": "hyperf/contract",
  1717. "version": "v3.1.42",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/hyperf/contract.git",
  1721. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1726. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "php": ">=8.1"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "3.1-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Hyperf\\Contract\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "description": "The contracts of Hyperf.",
  1748. "homepage": "https://hyperf.io",
  1749. "keywords": [
  1750. "hyperf",
  1751. "php",
  1752. "swoole"
  1753. ],
  1754. "support": {
  1755. "docs": "https://hyperf.wiki",
  1756. "issues": "https://github.com/hyperf/hyperf/issues",
  1757. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1758. "source": "https://github.com/hyperf/hyperf"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1763. "type": "custom"
  1764. },
  1765. {
  1766. "url": "https://opencollective.com/hyperf",
  1767. "type": "open_collective"
  1768. }
  1769. ],
  1770. "time": "2024-09-25T02:54:12+00:00"
  1771. },
  1772. {
  1773. "name": "hyperf/coordinator",
  1774. "version": "v3.1.42",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/hyperf/coordinator.git",
  1778. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1783. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1784. "shasum": ""
  1785. },
  1786. "require": {
  1787. "hyperf/engine": "^2.0",
  1788. "php": ">=8.1"
  1789. },
  1790. "type": "library",
  1791. "extra": {
  1792. "branch-alias": {
  1793. "dev-master": "3.1-dev"
  1794. }
  1795. },
  1796. "autoload": {
  1797. "files": [
  1798. "src/Functions.php"
  1799. ],
  1800. "psr-4": {
  1801. "Hyperf\\Coordinator\\": "src/"
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "description": "Hyperf Coordinator",
  1809. "homepage": "https://hyperf.io",
  1810. "keywords": [
  1811. "Coordinator",
  1812. "hyperf",
  1813. "php",
  1814. "swoole"
  1815. ],
  1816. "support": {
  1817. "docs": "https://hyperf.wiki",
  1818. "issues": "https://github.com/hyperf/hyperf/issues",
  1819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1820. "source": "https://github.com/hyperf/hyperf"
  1821. },
  1822. "funding": [
  1823. {
  1824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1825. "type": "custom"
  1826. },
  1827. {
  1828. "url": "https://opencollective.com/hyperf",
  1829. "type": "open_collective"
  1830. }
  1831. ],
  1832. "time": "2024-09-25T02:54:12+00:00"
  1833. },
  1834. {
  1835. "name": "hyperf/coroutine",
  1836. "version": "v3.1.42",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/hyperf/coroutine.git",
  1840. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1845. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "hyperf/context": "~3.1.0",
  1850. "hyperf/contract": "~3.1.0",
  1851. "hyperf/engine": "^2.0",
  1852. "php": ">=8.1"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "3.1-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "files": [
  1862. "src/Functions.php"
  1863. ],
  1864. "psr-4": {
  1865. "Hyperf\\Coroutine\\": "src/"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "description": "Hyperf Coroutine",
  1873. "homepage": "https://hyperf.io",
  1874. "keywords": [
  1875. "coroutine",
  1876. "hyperf",
  1877. "php",
  1878. "swoole"
  1879. ],
  1880. "support": {
  1881. "docs": "https://hyperf.wiki",
  1882. "issues": "https://github.com/hyperf/hyperf/issues",
  1883. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1884. "source": "https://github.com/hyperf/hyperf"
  1885. },
  1886. "funding": [
  1887. {
  1888. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1889. "type": "custom"
  1890. },
  1891. {
  1892. "url": "https://opencollective.com/hyperf",
  1893. "type": "open_collective"
  1894. }
  1895. ],
  1896. "time": "2024-09-25T02:54:12+00:00"
  1897. },
  1898. {
  1899. "name": "hyperf/database",
  1900. "version": "v3.1.44",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/hyperf/database.git",
  1904. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1909. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "hyperf/code-parser": "~3.1.0",
  1914. "hyperf/collection": "~3.1.23",
  1915. "hyperf/conditionable": "~3.1.0",
  1916. "hyperf/macroable": "~3.1.0",
  1917. "hyperf/support": "~3.1.0",
  1918. "hyperf/tappable": "~3.1.0",
  1919. "hyperf/utils": "~3.1.0",
  1920. "nesbot/carbon": "^2.0",
  1921. "php": ">=8.1",
  1922. "psr/container": "^1.0 || ^2.0",
  1923. "psr/event-dispatcher": "^1.0"
  1924. },
  1925. "suggest": {
  1926. "doctrine/dbal": "Required to rename columns (^3.0).",
  1927. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1928. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1929. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1930. },
  1931. "type": "library",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-master": "3.1-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Hyperf\\Database\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "description": "A flexible database library.",
  1947. "homepage": "https://hyperf.io",
  1948. "keywords": [
  1949. "database",
  1950. "hyperf",
  1951. "php"
  1952. ],
  1953. "support": {
  1954. "docs": "https://hyperf.wiki",
  1955. "issues": "https://github.com/hyperf/hyperf/issues",
  1956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1957. "source": "https://github.com/hyperf/hyperf"
  1958. },
  1959. "funding": [
  1960. {
  1961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1962. "type": "custom"
  1963. },
  1964. {
  1965. "url": "https://opencollective.com/hyperf",
  1966. "type": "open_collective"
  1967. }
  1968. ],
  1969. "time": "2024-10-11T10:25:57+00:00"
  1970. },
  1971. {
  1972. "name": "hyperf/db-connection",
  1973. "version": "v3.1.44",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/hyperf/db-connection.git",
  1977. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1982. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "hyperf/database": "~3.1.0",
  1987. "hyperf/di": "~3.1.0",
  1988. "hyperf/framework": "~3.1.0",
  1989. "hyperf/model-listener": "~3.1.0",
  1990. "hyperf/pool": "~3.1.0",
  1991. "hyperf/support": "~3.1.0",
  1992. "hyperf/utils": "~3.1.0",
  1993. "php": ">=8.1",
  1994. "psr/container": "^1.0 || ^2.0"
  1995. },
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-master": "3.1-dev"
  2000. },
  2001. "hyperf": {
  2002. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Hyperf\\DbConnection\\": "src/"
  2008. }
  2009. },
  2010. "notification-url": "https://packagist.org/downloads/",
  2011. "license": [
  2012. "MIT"
  2013. ],
  2014. "description": "A hyperf db connection handler for hyperf/database.",
  2015. "homepage": "https://hyperf.io",
  2016. "keywords": [
  2017. "Connection",
  2018. "database",
  2019. "hyperf",
  2020. "php"
  2021. ],
  2022. "support": {
  2023. "docs": "https://hyperf.wiki",
  2024. "issues": "https://github.com/hyperf/hyperf/issues",
  2025. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2026. "source": "https://github.com/hyperf/hyperf"
  2027. },
  2028. "funding": [
  2029. {
  2030. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2031. "type": "custom"
  2032. },
  2033. {
  2034. "url": "https://opencollective.com/hyperf",
  2035. "type": "open_collective"
  2036. }
  2037. ],
  2038. "time": "2024-10-11T08:58:16+00:00"
  2039. },
  2040. {
  2041. "name": "hyperf/di",
  2042. "version": "v3.1.42",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/hyperf/di.git",
  2046. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2051. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "doctrine/instantiator": "^1.0",
  2056. "hyperf/code-parser": "~3.1.0",
  2057. "hyperf/pipeline": "~3.1.0",
  2058. "hyperf/stdlib": "~3.1.0",
  2059. "hyperf/support": "~3.1.0",
  2060. "nikic/php-parser": "^4.1",
  2061. "php": ">=8.1",
  2062. "php-di/phpdoc-reader": "^2.2",
  2063. "psr/container": "^1.0 || ^2.0",
  2064. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2065. "vlucas/phpdotenv": "^5.0"
  2066. },
  2067. "suggest": {
  2068. "ext-pcntl": "Required to scan annotations.",
  2069. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "3.1-dev"
  2075. },
  2076. "hyperf": {
  2077. "config": "Hyperf\\Di\\ConfigProvider"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Hyperf\\Di\\": "src/"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "description": "A DI for Hyperf.",
  2090. "homepage": "https://hyperf.io",
  2091. "keywords": [
  2092. "annotation",
  2093. "di",
  2094. "hyperf",
  2095. "php",
  2096. "swoole"
  2097. ],
  2098. "support": {
  2099. "docs": "https://hyperf.wiki",
  2100. "issues": "https://github.com/hyperf/hyperf/issues",
  2101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2102. "source": "https://github.com/hyperf/hyperf"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2107. "type": "custom"
  2108. },
  2109. {
  2110. "url": "https://opencollective.com/hyperf",
  2111. "type": "open_collective"
  2112. }
  2113. ],
  2114. "time": "2024-09-25T02:54:12+00:00"
  2115. },
  2116. {
  2117. "name": "hyperf/dispatcher",
  2118. "version": "v3.1.42",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/hyperf/dispatcher.git",
  2122. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2127. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "hyperf/contract": "~3.1.0",
  2132. "php": ">=8.1",
  2133. "psr/container": "^1.0 || ^2.0",
  2134. "psr/http-message": "^1.0 || ^2.0",
  2135. "psr/http-server-middleware": "^1.0"
  2136. },
  2137. "type": "library",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "3.1-dev"
  2141. },
  2142. "hyperf": {
  2143. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Hyperf\\Dispatcher\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "description": "A HTTP Server for Hyperf.",
  2156. "homepage": "https://hyperf.io",
  2157. "keywords": [
  2158. "dispatcher",
  2159. "filter",
  2160. "hyperf",
  2161. "middleware",
  2162. "php",
  2163. "swoole"
  2164. ],
  2165. "support": {
  2166. "docs": "https://hyperf.wiki",
  2167. "issues": "https://github.com/hyperf/hyperf/issues",
  2168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2169. "source": "https://github.com/hyperf/hyperf"
  2170. },
  2171. "funding": [
  2172. {
  2173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2174. "type": "custom"
  2175. },
  2176. {
  2177. "url": "https://opencollective.com/hyperf",
  2178. "type": "open_collective"
  2179. }
  2180. ],
  2181. "time": "2024-09-25T02:54:12+00:00"
  2182. },
  2183. {
  2184. "name": "hyperf/engine",
  2185. "version": "v2.11.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/hyperf/engine.git",
  2189. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2194. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "hyperf/engine-contract": "~1.10.0",
  2199. "php": ">=8.0"
  2200. },
  2201. "conflict": {
  2202. "ext-swoole": "<5.0"
  2203. },
  2204. "require-dev": {
  2205. "friendsofphp/php-cs-fixer": "^3.0",
  2206. "hyperf/guzzle": "^3.0",
  2207. "hyperf/http-message": "^3.0",
  2208. "mockery/mockery": "^1.5",
  2209. "phpstan/phpstan": "^1.0",
  2210. "phpunit/phpunit": "^9.4",
  2211. "swoole/ide-helper": "5.*"
  2212. },
  2213. "suggest": {
  2214. "ext-sockets": "*",
  2215. "ext-swoole": ">=5.0",
  2216. "hyperf/http-message": "Required to use ResponseEmitter.",
  2217. "psr/http-message": "Required to use WebSocket Frame."
  2218. },
  2219. "type": "library",
  2220. "extra": {
  2221. "branch-alias": {
  2222. "dev-master": "2.11-dev"
  2223. },
  2224. "hyperf": {
  2225. "config": "Hyperf\\Engine\\ConfigProvider"
  2226. }
  2227. },
  2228. "autoload": {
  2229. "files": [
  2230. "src/Functions.php"
  2231. ],
  2232. "psr-4": {
  2233. "Hyperf\\Engine\\": "src/"
  2234. }
  2235. },
  2236. "notification-url": "https://packagist.org/downloads/",
  2237. "license": [
  2238. "MIT"
  2239. ],
  2240. "description": "Coroutine engine provided by swoole.",
  2241. "keywords": [
  2242. "engine",
  2243. "hyperf",
  2244. "php",
  2245. "swoole"
  2246. ],
  2247. "support": {
  2248. "issues": "https://github.com/hyperf/engine/issues",
  2249. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2250. },
  2251. "funding": [
  2252. {
  2253. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2254. "type": "custom"
  2255. },
  2256. {
  2257. "url": "https://opencollective.com/hyperf",
  2258. "type": "open_collective"
  2259. }
  2260. ],
  2261. "time": "2024-04-17T13:36:28+00:00"
  2262. },
  2263. {
  2264. "name": "hyperf/engine-contract",
  2265. "version": "v1.10.1",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/hyperf/engine-contract.git",
  2269. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2274. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "php": ">=8.0"
  2279. },
  2280. "require-dev": {
  2281. "friendsofphp/php-cs-fixer": "^3.0",
  2282. "mockery/mockery": "^1.0",
  2283. "phpstan/phpstan": "^1.0",
  2284. "phpunit/phpunit": ">=7.0",
  2285. "psr/http-message": "^1.0",
  2286. "swoole/ide-helper": "^4.5"
  2287. },
  2288. "suggest": {
  2289. "psr/http-message": "Required to use WebSocket Frame."
  2290. },
  2291. "type": "library",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-master": "1.9-dev"
  2295. }
  2296. },
  2297. "autoload": {
  2298. "psr-4": {
  2299. "Hyperf\\Engine\\Contract\\": "src/"
  2300. }
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "description": "Contract for Coroutine Engine",
  2307. "keywords": [
  2308. "contract",
  2309. "coroutine",
  2310. "engine",
  2311. "hyperf",
  2312. "php"
  2313. ],
  2314. "support": {
  2315. "issues": "https://github.com/hyperf/engine-contract/issues",
  2316. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2317. },
  2318. "funding": [
  2319. {
  2320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2321. "type": "custom"
  2322. },
  2323. {
  2324. "url": "https://opencollective.com/hyperf",
  2325. "type": "open_collective"
  2326. }
  2327. ],
  2328. "time": "2024-04-17T13:34:51+00:00"
  2329. },
  2330. {
  2331. "name": "hyperf/event",
  2332. "version": "v3.1.42",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://github.com/hyperf/event.git",
  2336. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2341. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2342. "shasum": ""
  2343. },
  2344. "require": {
  2345. "hyperf/contract": "~3.1.0",
  2346. "hyperf/stdlib": "~3.1.0",
  2347. "php": ">=8.1",
  2348. "psr/event-dispatcher": "^1.0"
  2349. },
  2350. "suggest": {
  2351. "hyperf/di": "Required to use annotatioins."
  2352. },
  2353. "type": "library",
  2354. "extra": {
  2355. "branch-alias": {
  2356. "dev-master": "3.1-dev"
  2357. },
  2358. "hyperf": {
  2359. "config": "Hyperf\\Event\\ConfigProvider"
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "Hyperf\\Event\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "description": "an event manager that implements PSR-14.",
  2372. "homepage": "https://hyperf.io",
  2373. "keywords": [
  2374. "event",
  2375. "hyperf",
  2376. "php",
  2377. "swoole"
  2378. ],
  2379. "support": {
  2380. "docs": "https://hyperf.wiki",
  2381. "issues": "https://github.com/hyperf/hyperf/issues",
  2382. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2383. "source": "https://github.com/hyperf/hyperf"
  2384. },
  2385. "funding": [
  2386. {
  2387. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2388. "type": "custom"
  2389. },
  2390. {
  2391. "url": "https://opencollective.com/hyperf",
  2392. "type": "open_collective"
  2393. }
  2394. ],
  2395. "time": "2024-09-25T02:54:12+00:00"
  2396. },
  2397. {
  2398. "name": "hyperf/exception-handler",
  2399. "version": "v3.1.42",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://github.com/hyperf/exception-handler.git",
  2403. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2408. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2409. "shasum": ""
  2410. },
  2411. "require": {
  2412. "hyperf/context": "~3.1.0",
  2413. "hyperf/contract": "~3.1.0",
  2414. "hyperf/dispatcher": "~3.1.0",
  2415. "hyperf/http-message": "~3.1.0",
  2416. "hyperf/stdlib": "~3.1.0",
  2417. "hyperf/support": "~3.1.0",
  2418. "php": ">=8.1",
  2419. "psr/container": "^1.0 || ^2.0",
  2420. "psr/http-message": "^1.0 || ^2.0",
  2421. "swow/psr7-plus": "^1.0"
  2422. },
  2423. "suggest": {
  2424. "hyperf/di": "Required to use #[ExceptionHandler]",
  2425. "hyperf/event": "Required to use listeners",
  2426. "hyperf/framework": "Required to use listeners",
  2427. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "3.1-dev"
  2433. },
  2434. "hyperf": {
  2435. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Hyperf\\ExceptionHandler\\": "src/"
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "description": "Exception handler for hyperf",
  2448. "homepage": "https://hyperf.io",
  2449. "keywords": [
  2450. "exception-handler",
  2451. "php",
  2452. "swoole"
  2453. ],
  2454. "support": {
  2455. "docs": "https://hyperf.wiki",
  2456. "issues": "https://github.com/hyperf/hyperf/issues",
  2457. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2458. "source": "https://github.com/hyperf/hyperf"
  2459. },
  2460. "funding": [
  2461. {
  2462. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2463. "type": "custom"
  2464. },
  2465. {
  2466. "url": "https://opencollective.com/hyperf",
  2467. "type": "open_collective"
  2468. }
  2469. ],
  2470. "time": "2024-09-25T02:54:12+00:00"
  2471. },
  2472. {
  2473. "name": "hyperf/framework",
  2474. "version": "v3.1.42",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/hyperf/framework.git",
  2478. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2483. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2484. "shasum": ""
  2485. },
  2486. "require": {
  2487. "fig/http-message-util": "^1.1.2",
  2488. "hyperf/contract": "~3.1.0",
  2489. "hyperf/coordinator": "~3.1.0",
  2490. "hyperf/coroutine": "~3.1.0",
  2491. "php": ">=8.1",
  2492. "psr/container": "^1.0 || ^2.0",
  2493. "psr/event-dispatcher": "^1.0",
  2494. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2495. },
  2496. "suggest": {
  2497. "ext-swoole": "Required to use swoole engine.",
  2498. "hyperf/command": "Required to use Command annotation.",
  2499. "hyperf/di": "Required to use Command annotation.",
  2500. "hyperf/dispatcher": "Required to use BootApplication event.",
  2501. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "3.1-dev"
  2507. },
  2508. "hyperf": {
  2509. "config": "Hyperf\\Framework\\ConfigProvider"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Hyperf\\Framework\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2522. "homepage": "https://hyperf.io",
  2523. "keywords": [
  2524. "Microservice",
  2525. "framework",
  2526. "hyperf",
  2527. "middleware",
  2528. "php",
  2529. "swoole"
  2530. ],
  2531. "support": {
  2532. "docs": "https://hyperf.wiki",
  2533. "issues": "https://github.com/hyperf/hyperf/issues",
  2534. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2535. "source": "https://github.com/hyperf/hyperf"
  2536. },
  2537. "funding": [
  2538. {
  2539. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://opencollective.com/hyperf",
  2544. "type": "open_collective"
  2545. }
  2546. ],
  2547. "time": "2024-09-25T02:54:12+00:00"
  2548. },
  2549. {
  2550. "name": "hyperf/guzzle",
  2551. "version": "v3.1.42",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://github.com/hyperf/guzzle.git",
  2555. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2560. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2561. "shasum": ""
  2562. },
  2563. "require": {
  2564. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2565. "php": ">=8.1",
  2566. "psr/container": "^1.0 || ^2.0",
  2567. "psr/http-message": "^1.0 || ^2.0"
  2568. },
  2569. "suggest": {
  2570. "ext-curl": "Required for CURL handler support",
  2571. "hyperf/pool": "Required to use pool handler."
  2572. },
  2573. "type": "library",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-master": "3.1-dev"
  2577. },
  2578. "hyperf": {
  2579. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2580. }
  2581. },
  2582. "autoload": {
  2583. "psr-4": {
  2584. "Hyperf\\Guzzle\\": "src/"
  2585. }
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "MIT"
  2590. ],
  2591. "description": "Swoole coroutine handler for guzzle",
  2592. "keywords": [
  2593. "Guzzle",
  2594. "handler",
  2595. "php",
  2596. "swoole"
  2597. ],
  2598. "support": {
  2599. "issues": "https://github.com/hyperf/guzzle/issues",
  2600. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2601. },
  2602. "funding": [
  2603. {
  2604. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2605. "type": "custom"
  2606. },
  2607. {
  2608. "url": "https://opencollective.com/hyperf",
  2609. "type": "open_collective"
  2610. }
  2611. ],
  2612. "time": "2024-09-25T02:54:12+00:00"
  2613. },
  2614. {
  2615. "name": "hyperf/http-message",
  2616. "version": "v3.1.42",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/hyperf/http-message.git",
  2620. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2625. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "hyperf/codec": "~3.1.0",
  2630. "hyperf/engine": "^2.11",
  2631. "hyperf/support": "~3.1.0",
  2632. "laminas/laminas-mime": "^2.7",
  2633. "php": ">=8.1",
  2634. "psr/http-message": "^1.0 || ^2.0",
  2635. "swow/psr7-plus": "^1.0"
  2636. },
  2637. "suggest": {
  2638. "psr/container": "Required to replace RequestParserInterface."
  2639. },
  2640. "type": "library",
  2641. "extra": {
  2642. "branch-alias": {
  2643. "dev-master": "3.1-dev"
  2644. },
  2645. "hyperf": {
  2646. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2647. }
  2648. },
  2649. "autoload": {
  2650. "psr-4": {
  2651. "Hyperf\\HttpMessage\\": "src/"
  2652. }
  2653. },
  2654. "notification-url": "https://packagist.org/downloads/",
  2655. "license": [
  2656. "MIT"
  2657. ],
  2658. "description": "microservice framework base on swoole",
  2659. "keywords": [
  2660. "http-message",
  2661. "hyperf",
  2662. "php",
  2663. "swoole"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/hyperf/http-message/issues",
  2667. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2668. },
  2669. "funding": [
  2670. {
  2671. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2672. "type": "custom"
  2673. },
  2674. {
  2675. "url": "https://opencollective.com/hyperf",
  2676. "type": "open_collective"
  2677. }
  2678. ],
  2679. "time": "2024-09-25T02:54:12+00:00"
  2680. },
  2681. {
  2682. "name": "hyperf/http-server",
  2683. "version": "v3.1.42",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/hyperf/http-server.git",
  2687. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2692. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "hyperf/codec": "~3.1.0",
  2697. "hyperf/collection": "~3.1.0",
  2698. "hyperf/context": "~3.1.0",
  2699. "hyperf/contract": "~3.1.0",
  2700. "hyperf/coroutine": "~3.1.0",
  2701. "hyperf/dispatcher": "~3.1.0",
  2702. "hyperf/event": "~3.1.0",
  2703. "hyperf/exception-handler": "~3.1.0",
  2704. "hyperf/http-message": "~3.1.0",
  2705. "hyperf/macroable": "~3.1.0",
  2706. "hyperf/serializer": "~3.1.0",
  2707. "hyperf/server": "~3.1.0",
  2708. "hyperf/stdlib": "~3.1.0",
  2709. "hyperf/support": "~3.1.0",
  2710. "nikic/fast-route": "^1.3",
  2711. "php": ">=8.1",
  2712. "psr/container": "^1.0 || ^2.0",
  2713. "swow/psr7-plus": "^1.0"
  2714. },
  2715. "suggest": {
  2716. "hyperf/di": "Required to use annotations."
  2717. },
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-master": "3.1-dev"
  2722. },
  2723. "hyperf": {
  2724. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2725. }
  2726. },
  2727. "autoload": {
  2728. "psr-4": {
  2729. "Hyperf\\HttpServer\\": "src/"
  2730. }
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "MIT"
  2735. ],
  2736. "description": "A HTTP Server for Hyperf.",
  2737. "homepage": "https://hyperf.io",
  2738. "keywords": [
  2739. "http",
  2740. "http-server",
  2741. "hyperf",
  2742. "php",
  2743. "swoole"
  2744. ],
  2745. "support": {
  2746. "docs": "https://hyperf.wiki",
  2747. "issues": "https://github.com/hyperf/hyperf/issues",
  2748. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2749. "source": "https://github.com/hyperf/hyperf"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2754. "type": "custom"
  2755. },
  2756. {
  2757. "url": "https://opencollective.com/hyperf",
  2758. "type": "open_collective"
  2759. }
  2760. ],
  2761. "time": "2024-09-25T02:54:12+00:00"
  2762. },
  2763. {
  2764. "name": "hyperf/json-rpc",
  2765. "version": "v3.1.42",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/hyperf/json-rpc.git",
  2769. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2774. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "hyperf/codec": "~3.1.0",
  2779. "hyperf/context": "~3.1.0",
  2780. "hyperf/contract": "~3.1.0",
  2781. "hyperf/engine": "^2.0",
  2782. "hyperf/http-message": "~3.1.0",
  2783. "hyperf/load-balancer": "~3.1.0",
  2784. "hyperf/rpc": "~3.1.0",
  2785. "hyperf/serializer": "~3.1.0",
  2786. "hyperf/support": "~3.1.0",
  2787. "hyperf/utils": "~3.1.0",
  2788. "php": ">=8.1",
  2789. "psr/container": "^1.0 || ^2.0",
  2790. "swow/psr7-plus": "^1.0"
  2791. },
  2792. "suggest": {
  2793. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2794. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2795. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2796. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2797. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2798. },
  2799. "type": "library",
  2800. "extra": {
  2801. "branch-alias": {
  2802. "dev-master": "3.1-dev"
  2803. },
  2804. "hyperf": {
  2805. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2806. }
  2807. },
  2808. "autoload": {
  2809. "psr-4": {
  2810. "Hyperf\\JsonRpc\\": "src/"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2818. "homepage": "https://hyperf.io",
  2819. "keywords": [
  2820. "hyperf",
  2821. "json-rpc",
  2822. "php",
  2823. "swoole"
  2824. ],
  2825. "support": {
  2826. "docs": "https://hyperf.wiki",
  2827. "issues": "https://github.com/hyperf/hyperf/issues",
  2828. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2829. "source": "https://github.com/hyperf/hyperf"
  2830. },
  2831. "funding": [
  2832. {
  2833. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2834. "type": "custom"
  2835. },
  2836. {
  2837. "url": "https://opencollective.com/hyperf",
  2838. "type": "open_collective"
  2839. }
  2840. ],
  2841. "time": "2024-09-25T02:54:12+00:00"
  2842. },
  2843. {
  2844. "name": "hyperf/load-balancer",
  2845. "version": "v3.1.42",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/hyperf/load-balancer.git",
  2849. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2854. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "hyperf/coordinator": "~3.1.0",
  2859. "hyperf/coroutine": "~3.1.0",
  2860. "markrogoyski/math-php": "^2.0",
  2861. "php": ">=8.1",
  2862. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-master": "3.1-dev"
  2868. },
  2869. "hyperf": {
  2870. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Hyperf\\LoadBalancer\\": "src/"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "description": "A load balancer library for Hyperf.",
  2883. "homepage": "https://hyperf.io",
  2884. "keywords": [
  2885. "hyperf",
  2886. "load-balancer",
  2887. "php",
  2888. "swoole"
  2889. ],
  2890. "support": {
  2891. "docs": "https://hyperf.wiki",
  2892. "issues": "https://github.com/hyperf/hyperf/issues",
  2893. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2894. "source": "https://github.com/hyperf/hyperf"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2899. "type": "custom"
  2900. },
  2901. {
  2902. "url": "https://opencollective.com/hyperf",
  2903. "type": "open_collective"
  2904. }
  2905. ],
  2906. "time": "2024-09-25T02:54:12+00:00"
  2907. },
  2908. {
  2909. "name": "hyperf/logger",
  2910. "version": "v3.1.42",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://github.com/hyperf/logger.git",
  2914. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2919. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2920. "shasum": ""
  2921. },
  2922. "require": {
  2923. "hyperf/contract": "~3.1.0",
  2924. "hyperf/support": "~3.1.0",
  2925. "hyperf/utils": "~3.1.0",
  2926. "monolog/monolog": "^2.7 || ^3.1",
  2927. "php": ">=8.1",
  2928. "psr/container": "^1.0 || ^2.0",
  2929. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2930. },
  2931. "type": "library",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-master": "3.1-dev"
  2935. },
  2936. "hyperf": {
  2937. "config": "Hyperf\\Logger\\ConfigProvider"
  2938. }
  2939. },
  2940. "autoload": {
  2941. "psr-4": {
  2942. "Hyperf\\Logger\\": "src/"
  2943. }
  2944. },
  2945. "notification-url": "https://packagist.org/downloads/",
  2946. "license": [
  2947. "MIT"
  2948. ],
  2949. "description": "A logger component for hyperf.",
  2950. "homepage": "https://hyperf.io",
  2951. "keywords": [
  2952. "hyperf",
  2953. "logger",
  2954. "php"
  2955. ],
  2956. "support": {
  2957. "docs": "https://hyperf.wiki",
  2958. "issues": "https://github.com/hyperf/hyperf/issues",
  2959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2960. "source": "https://github.com/hyperf/hyperf"
  2961. },
  2962. "funding": [
  2963. {
  2964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2965. "type": "custom"
  2966. },
  2967. {
  2968. "url": "https://opencollective.com/hyperf",
  2969. "type": "open_collective"
  2970. }
  2971. ],
  2972. "time": "2024-09-25T02:54:12+00:00"
  2973. },
  2974. {
  2975. "name": "hyperf/macroable",
  2976. "version": "v3.1.42",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/hyperf/macroable.git",
  2980. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2985. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": ">=8.1"
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Hyperf\\Macroable\\": "src/"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3007. "homepage": "https://hyperf.io",
  3008. "keywords": [
  3009. "hyperf",
  3010. "macroable",
  3011. "php",
  3012. "swoole"
  3013. ],
  3014. "support": {
  3015. "docs": "https://hyperf.wiki",
  3016. "issues": "https://github.com/hyperf/hyperf/issues",
  3017. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3018. "source": "https://github.com/hyperf/hyperf"
  3019. },
  3020. "funding": [
  3021. {
  3022. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3023. "type": "custom"
  3024. },
  3025. {
  3026. "url": "https://opencollective.com/hyperf",
  3027. "type": "open_collective"
  3028. }
  3029. ],
  3030. "time": "2024-09-25T02:54:12+00:00"
  3031. },
  3032. {
  3033. "name": "hyperf/memory",
  3034. "version": "v3.1.42",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://github.com/hyperf/memory.git",
  3038. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3043. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3044. "shasum": ""
  3045. },
  3046. "require": {
  3047. "php": ">=8.1"
  3048. },
  3049. "type": "library",
  3050. "extra": {
  3051. "branch-alias": {
  3052. "dev-master": "3.1-dev"
  3053. },
  3054. "hyperf": {
  3055. "config": "Hyperf\\Memory\\ConfigProvider"
  3056. }
  3057. },
  3058. "autoload": {
  3059. "psr-4": {
  3060. "Hyperf\\Memory\\": "src/"
  3061. }
  3062. },
  3063. "notification-url": "https://packagist.org/downloads/",
  3064. "license": [
  3065. "MIT"
  3066. ],
  3067. "description": "An independent component that use to operate and manage memory.",
  3068. "homepage": "https://hyperf.io",
  3069. "keywords": [
  3070. "hyperf",
  3071. "memory",
  3072. "php",
  3073. "swoole"
  3074. ],
  3075. "support": {
  3076. "docs": "https://hyperf.wiki",
  3077. "issues": "https://github.com/hyperf/hyperf/issues",
  3078. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3079. "source": "https://github.com/hyperf/hyperf"
  3080. },
  3081. "funding": [
  3082. {
  3083. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3084. "type": "custom"
  3085. },
  3086. {
  3087. "url": "https://opencollective.com/hyperf",
  3088. "type": "open_collective"
  3089. }
  3090. ],
  3091. "time": "2024-09-25T02:54:12+00:00"
  3092. },
  3093. {
  3094. "name": "hyperf/model-listener",
  3095. "version": "v3.1.42",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://github.com/hyperf/model-listener.git",
  3099. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3104. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3105. "shasum": ""
  3106. },
  3107. "require": {
  3108. "hyperf/contract": "~3.1.0",
  3109. "hyperf/database": "~3.1.0",
  3110. "hyperf/di": "~3.1.0",
  3111. "hyperf/event": "~3.1.0",
  3112. "hyperf/support": "~3.1.0",
  3113. "hyperf/utils": "~3.1.0",
  3114. "php": ">=8.1",
  3115. "psr/container": "^1.0 || ^2.0"
  3116. },
  3117. "type": "library",
  3118. "extra": {
  3119. "branch-alias": {
  3120. "dev-master": "3.1-dev"
  3121. },
  3122. "hyperf": {
  3123. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3124. }
  3125. },
  3126. "autoload": {
  3127. "psr-4": {
  3128. "Hyperf\\ModelListener\\": "src/"
  3129. }
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "MIT"
  3134. ],
  3135. "description": "A model listener for Hyperf.",
  3136. "homepage": "https://hyperf.io",
  3137. "keywords": [
  3138. "hyperf",
  3139. "model-listener",
  3140. "php",
  3141. "swoole"
  3142. ],
  3143. "support": {
  3144. "docs": "https://hyperf.wiki",
  3145. "issues": "https://github.com/hyperf/hyperf/issues",
  3146. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3147. "source": "https://github.com/hyperf/hyperf"
  3148. },
  3149. "funding": [
  3150. {
  3151. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3152. "type": "custom"
  3153. },
  3154. {
  3155. "url": "https://opencollective.com/hyperf",
  3156. "type": "open_collective"
  3157. }
  3158. ],
  3159. "time": "2024-09-25T02:54:12+00:00"
  3160. },
  3161. {
  3162. "name": "hyperf/nacos",
  3163. "version": "v3.1.42",
  3164. "source": {
  3165. "type": "git",
  3166. "url": "https://github.com/hyperf/nacos.git",
  3167. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3168. },
  3169. "dist": {
  3170. "type": "zip",
  3171. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3172. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3173. "shasum": ""
  3174. },
  3175. "require": {
  3176. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3177. "hyperf/codec": "~3.1.0",
  3178. "hyperf/contract": "~3.1.0",
  3179. "hyperf/support": "~3.1.0",
  3180. "hyperf/utils": "~3.1.0",
  3181. "jetbrains/phpstorm-attributes": "^1.0",
  3182. "php": ">=8.1"
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "branch-alias": {
  3187. "dev-master": "3.1-dev"
  3188. },
  3189. "hyperf": {
  3190. "config": "Hyperf\\Nacos\\ConfigProvider"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Hyperf\\Nacos\\": "src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "description": "Nacos SDK",
  3203. "keywords": [
  3204. "hyperf",
  3205. "nacos",
  3206. "php"
  3207. ],
  3208. "support": {
  3209. "issues": "https://github.com/hyperf/nacos/issues",
  3210. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3211. },
  3212. "funding": [
  3213. {
  3214. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3215. "type": "custom"
  3216. },
  3217. {
  3218. "url": "https://opencollective.com/hyperf",
  3219. "type": "open_collective"
  3220. }
  3221. ],
  3222. "time": "2024-09-25T02:54:12+00:00"
  3223. },
  3224. {
  3225. "name": "hyperf/pipeline",
  3226. "version": "v3.1.42",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/hyperf/pipeline.git",
  3230. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3235. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "php": ">=8.1",
  3240. "psr/container": "^1.0 || ^2.0"
  3241. },
  3242. "type": "library",
  3243. "extra": {
  3244. "branch-alias": {
  3245. "dev-master": "3.1-dev"
  3246. }
  3247. },
  3248. "autoload": {
  3249. "psr-4": {
  3250. "Hyperf\\Pipeline\\": "src/"
  3251. }
  3252. },
  3253. "notification-url": "https://packagist.org/downloads/",
  3254. "license": [
  3255. "MIT"
  3256. ],
  3257. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3258. "homepage": "https://hyperf.io",
  3259. "keywords": [
  3260. "hyperf",
  3261. "php",
  3262. "pipeline",
  3263. "swoole"
  3264. ],
  3265. "support": {
  3266. "docs": "https://hyperf.wiki",
  3267. "issues": "https://github.com/hyperf/hyperf/issues",
  3268. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3269. "source": "https://github.com/hyperf/hyperf"
  3270. },
  3271. "funding": [
  3272. {
  3273. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3274. "type": "custom"
  3275. },
  3276. {
  3277. "url": "https://opencollective.com/hyperf",
  3278. "type": "open_collective"
  3279. }
  3280. ],
  3281. "time": "2024-09-25T02:54:12+00:00"
  3282. },
  3283. {
  3284. "name": "hyperf/pool",
  3285. "version": "v3.1.42",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/hyperf/pool.git",
  3289. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3294. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "hyperf/contract": "~3.1.0",
  3299. "hyperf/support": "~3.1.0",
  3300. "hyperf/utils": "~3.1.0",
  3301. "php": ">=8.1",
  3302. "psr/container": "^1.0 || ^2.0"
  3303. },
  3304. "suggest": {
  3305. "psr/event-dispatcher": "Required to use events."
  3306. },
  3307. "type": "library",
  3308. "extra": {
  3309. "branch-alias": {
  3310. "dev-master": "3.1-dev"
  3311. },
  3312. "hyperf": {
  3313. "config": "Hyperf\\Pool\\ConfigProvider"
  3314. }
  3315. },
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Hyperf\\Pool\\": "src/"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "MIT"
  3324. ],
  3325. "description": "An independent universal connection pool component.",
  3326. "homepage": "https://hyperf.io",
  3327. "keywords": [
  3328. "connection-pool",
  3329. "hyperf",
  3330. "php",
  3331. "swoole"
  3332. ],
  3333. "support": {
  3334. "docs": "https://hyperf.wiki",
  3335. "issues": "https://github.com/hyperf/hyperf/issues",
  3336. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3337. "source": "https://github.com/hyperf/hyperf"
  3338. },
  3339. "funding": [
  3340. {
  3341. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3342. "type": "custom"
  3343. },
  3344. {
  3345. "url": "https://opencollective.com/hyperf",
  3346. "type": "open_collective"
  3347. }
  3348. ],
  3349. "time": "2024-09-25T02:54:12+00:00"
  3350. },
  3351. {
  3352. "name": "hyperf/process",
  3353. "version": "v3.1.42",
  3354. "source": {
  3355. "type": "git",
  3356. "url": "https://github.com/hyperf/process.git",
  3357. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3358. },
  3359. "dist": {
  3360. "type": "zip",
  3361. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3362. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3363. "shasum": ""
  3364. },
  3365. "require": {
  3366. "hyperf/contract": "~3.1.0",
  3367. "hyperf/support": "~3.1.0",
  3368. "hyperf/utils": "~3.1.0",
  3369. "php": ">=8.1",
  3370. "psr/container": "^1.0 || ^2.0",
  3371. "psr/event-dispatcher": "^1.0"
  3372. },
  3373. "suggest": {
  3374. "hyperf/di": "Required to use annotations.",
  3375. "hyperf/event": "Required to dump the message before and after process.",
  3376. "hyperf/framework": "Required to use BootProcessListener."
  3377. },
  3378. "type": "library",
  3379. "extra": {
  3380. "branch-alias": {
  3381. "dev-master": "3.1-dev"
  3382. },
  3383. "hyperf": {
  3384. "config": "Hyperf\\Process\\ConfigProvider"
  3385. }
  3386. },
  3387. "autoload": {
  3388. "psr-4": {
  3389. "Hyperf\\Process\\": "src/"
  3390. }
  3391. },
  3392. "notification-url": "https://packagist.org/downloads/",
  3393. "license": [
  3394. "MIT"
  3395. ],
  3396. "description": "A process component for hyperf.",
  3397. "homepage": "https://hyperf.io",
  3398. "keywords": [
  3399. "hyperf",
  3400. "php",
  3401. "process"
  3402. ],
  3403. "support": {
  3404. "docs": "https://hyperf.wiki",
  3405. "issues": "https://github.com/hyperf/hyperf/issues",
  3406. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3407. "source": "https://github.com/hyperf/hyperf"
  3408. },
  3409. "funding": [
  3410. {
  3411. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3412. "type": "custom"
  3413. },
  3414. {
  3415. "url": "https://opencollective.com/hyperf",
  3416. "type": "open_collective"
  3417. }
  3418. ],
  3419. "time": "2024-09-25T02:54:12+00:00"
  3420. },
  3421. {
  3422. "name": "hyperf/redis",
  3423. "version": "v3.1.42",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/hyperf/redis.git",
  3427. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3432. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "ext-redis": "^5.0 || ^6.0",
  3437. "hyperf/contract": "~3.1.0",
  3438. "hyperf/pool": "~3.1.0",
  3439. "hyperf/support": "~3.1.0",
  3440. "hyperf/tappable": "~3.1.0",
  3441. "hyperf/utils": "~3.1.0",
  3442. "php": ">=8.1",
  3443. "psr/container": "^1.0 || ^2.0"
  3444. },
  3445. "suggest": {
  3446. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3447. "hyperf/di": "Create the RedisPool via dependency injection."
  3448. },
  3449. "type": "library",
  3450. "extra": {
  3451. "branch-alias": {
  3452. "dev-master": "3.1-dev"
  3453. },
  3454. "hyperf": {
  3455. "config": "Hyperf\\Redis\\ConfigProvider"
  3456. }
  3457. },
  3458. "autoload": {
  3459. "psr-4": {
  3460. "Hyperf\\Redis\\": "src/"
  3461. }
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "description": "A redis component for hyperf.",
  3468. "homepage": "https://hyperf.io",
  3469. "keywords": [
  3470. "hyperf",
  3471. "php",
  3472. "pool",
  3473. "redis"
  3474. ],
  3475. "support": {
  3476. "docs": "https://hyperf.wiki",
  3477. "issues": "https://github.com/hyperf/hyperf/issues",
  3478. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3479. "source": "https://github.com/hyperf/hyperf"
  3480. },
  3481. "funding": [
  3482. {
  3483. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3484. "type": "custom"
  3485. },
  3486. {
  3487. "url": "https://opencollective.com/hyperf",
  3488. "type": "open_collective"
  3489. }
  3490. ],
  3491. "time": "2024-09-25T02:54:12+00:00"
  3492. },
  3493. {
  3494. "name": "hyperf/rpc",
  3495. "version": "v3.1.42",
  3496. "source": {
  3497. "type": "git",
  3498. "url": "https://github.com/hyperf/rpc.git",
  3499. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3500. },
  3501. "dist": {
  3502. "type": "zip",
  3503. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3504. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3505. "shasum": ""
  3506. },
  3507. "require": {
  3508. "hyperf/codec": "~3.1.0",
  3509. "hyperf/contract": "~3.1.0",
  3510. "hyperf/support": "~3.1.0",
  3511. "jetbrains/phpstorm-attributes": "^1.0",
  3512. "php": ">=8.1"
  3513. },
  3514. "type": "library",
  3515. "extra": {
  3516. "branch-alias": {
  3517. "dev-master": "3.1-dev"
  3518. },
  3519. "hyperf": []
  3520. },
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Hyperf\\Rpc\\": "src/"
  3524. }
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "description": "A rpc basic library for Hyperf.",
  3531. "homepage": "https://hyperf.io",
  3532. "keywords": [
  3533. "hyperf",
  3534. "php",
  3535. "rpc",
  3536. "swoole"
  3537. ],
  3538. "support": {
  3539. "docs": "https://hyperf.wiki",
  3540. "issues": "https://github.com/hyperf/hyperf/issues",
  3541. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3542. "source": "https://github.com/hyperf/hyperf"
  3543. },
  3544. "funding": [
  3545. {
  3546. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3547. "type": "custom"
  3548. },
  3549. {
  3550. "url": "https://opencollective.com/hyperf",
  3551. "type": "open_collective"
  3552. }
  3553. ],
  3554. "time": "2024-09-25T02:54:12+00:00"
  3555. },
  3556. {
  3557. "name": "hyperf/rpc-server",
  3558. "version": "v3.1.42",
  3559. "source": {
  3560. "type": "git",
  3561. "url": "https://github.com/hyperf/rpc-server.git",
  3562. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3563. },
  3564. "dist": {
  3565. "type": "zip",
  3566. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3567. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3568. "shasum": ""
  3569. },
  3570. "require": {
  3571. "hyperf/http-server": "~3.1.0",
  3572. "hyperf/rpc": "~3.1.0",
  3573. "php": ">=8.1"
  3574. },
  3575. "suggest": {
  3576. "hyperf/di": "Required to use annotations."
  3577. },
  3578. "type": "library",
  3579. "extra": {
  3580. "branch-alias": {
  3581. "dev-master": "3.1-dev"
  3582. },
  3583. "hyperf": {
  3584. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Hyperf\\RpcServer\\": "src/"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "description": "An abstract rpc server component for Hyperf.",
  3597. "homepage": "https://hyperf.io",
  3598. "keywords": [
  3599. "hyperf",
  3600. "php",
  3601. "rpc",
  3602. "rpc-server",
  3603. "swoole"
  3604. ],
  3605. "support": {
  3606. "docs": "https://hyperf.wiki",
  3607. "issues": "https://github.com/hyperf/hyperf/issues",
  3608. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3609. "source": "https://github.com/hyperf/hyperf"
  3610. },
  3611. "funding": [
  3612. {
  3613. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3614. "type": "custom"
  3615. },
  3616. {
  3617. "url": "https://opencollective.com/hyperf",
  3618. "type": "open_collective"
  3619. }
  3620. ],
  3621. "time": "2024-09-25T02:54:12+00:00"
  3622. },
  3623. {
  3624. "name": "hyperf/serializer",
  3625. "version": "v3.1.42",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/hyperf/serializer.git",
  3629. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3634. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "hyperf/contract": "~3.1.0",
  3639. "php": ">=8.1"
  3640. },
  3641. "suggest": {
  3642. "hyperf/di": "Required to use ExceptionNormalizer",
  3643. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3644. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3645. },
  3646. "type": "library",
  3647. "extra": {
  3648. "branch-alias": {
  3649. "dev-master": "3.1-dev"
  3650. },
  3651. "hyperf": {
  3652. "config": "Hyperf\\Serializer\\ConfigProvider"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Hyperf\\Serializer\\": "src/"
  3658. }
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "description": "A serializer component for Hyperf.",
  3665. "homepage": "https://hyperf.io",
  3666. "keywords": [
  3667. "hyperf",
  3668. "php",
  3669. "swoole",
  3670. "tappable"
  3671. ],
  3672. "support": {
  3673. "docs": "https://hyperf.wiki",
  3674. "issues": "https://github.com/hyperf/hyperf/issues",
  3675. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3676. "source": "https://github.com/hyperf/hyperf"
  3677. },
  3678. "funding": [
  3679. {
  3680. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3681. "type": "custom"
  3682. },
  3683. {
  3684. "url": "https://opencollective.com/hyperf",
  3685. "type": "open_collective"
  3686. }
  3687. ],
  3688. "time": "2024-09-25T02:54:12+00:00"
  3689. },
  3690. {
  3691. "name": "hyperf/server",
  3692. "version": "v3.1.42",
  3693. "source": {
  3694. "type": "git",
  3695. "url": "https://github.com/hyperf/server.git",
  3696. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3697. },
  3698. "dist": {
  3699. "type": "zip",
  3700. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3701. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3702. "shasum": ""
  3703. },
  3704. "require": {
  3705. "hyperf/contract": "~3.1.0",
  3706. "hyperf/coordinator": "~3.1.0",
  3707. "hyperf/engine": "^2.8",
  3708. "hyperf/support": "~3.1.0",
  3709. "hyperf/tappable": "~3.1.0",
  3710. "php": ">=8.1",
  3711. "psr/container": "^1.0 || ^2.0",
  3712. "psr/event-dispatcher": "^1.0",
  3713. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3714. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3715. },
  3716. "suggest": {
  3717. "hyperf/event": "Dump the info after server start.",
  3718. "hyperf/framework": "Dump the info after server start."
  3719. },
  3720. "type": "library",
  3721. "extra": {
  3722. "branch-alias": {
  3723. "dev-master": "3.1-dev"
  3724. },
  3725. "hyperf": {
  3726. "config": "Hyperf\\Server\\ConfigProvider"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Hyperf\\Server\\": "src/"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "description": "A base server library for Hyperf.",
  3739. "homepage": "https://hyperf.io",
  3740. "keywords": [
  3741. "hyperf",
  3742. "php",
  3743. "server",
  3744. "swoole"
  3745. ],
  3746. "support": {
  3747. "docs": "https://hyperf.wiki",
  3748. "issues": "https://github.com/hyperf/hyperf/issues",
  3749. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3750. "source": "https://github.com/hyperf/hyperf"
  3751. },
  3752. "funding": [
  3753. {
  3754. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3755. "type": "custom"
  3756. },
  3757. {
  3758. "url": "https://opencollective.com/hyperf",
  3759. "type": "open_collective"
  3760. }
  3761. ],
  3762. "time": "2024-09-25T02:54:12+00:00"
  3763. },
  3764. {
  3765. "name": "hyperf/service-governance",
  3766. "version": "v3.1.42",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/hyperf/service-governance.git",
  3770. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3775. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "hyperf/contract": "~3.1.0",
  3780. "hyperf/support": "~3.1.0",
  3781. "jetbrains/phpstorm-attributes": "^1.0",
  3782. "php": ">=8.1"
  3783. },
  3784. "suggest": {
  3785. "hyperf/event": "Required to use RegisterServiceListener.",
  3786. "hyperf/framework": "Required to use RegisterServiceListener.",
  3787. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3788. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "branch-alias": {
  3793. "dev-master": "3.1-dev"
  3794. },
  3795. "hyperf": {
  3796. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Hyperf\\ServiceGovernance\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "description": "A service governance component for Hyperf.",
  3809. "homepage": "https://hyperf.io",
  3810. "keywords": [
  3811. "hyperf",
  3812. "php",
  3813. "service-governance",
  3814. "swoole"
  3815. ],
  3816. "support": {
  3817. "docs": "https://hyperf.wiki",
  3818. "issues": "https://github.com/hyperf/hyperf/issues",
  3819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3820. "source": "https://github.com/hyperf/hyperf"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://opencollective.com/hyperf",
  3829. "type": "open_collective"
  3830. }
  3831. ],
  3832. "time": "2024-09-25T02:54:12+00:00"
  3833. },
  3834. {
  3835. "name": "hyperf/service-governance-consul",
  3836. "version": "v3.1.42",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/hyperf/service-governance-consul.git",
  3840. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3845. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "hyperf/consul": "~3.1.0",
  3850. "hyperf/contract": "~3.1.0",
  3851. "hyperf/service-governance": "~3.1.0",
  3852. "hyperf/support": "~3.1.0",
  3853. "hyperf/utils": "~3.1.0",
  3854. "php": ">=8.1"
  3855. },
  3856. "type": "library",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-master": "3.1-dev"
  3860. },
  3861. "hyperf": {
  3862. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "description": "A consul adapter for service governance.",
  3875. "homepage": "https://hyperf.io",
  3876. "keywords": [
  3877. "consul-adapter",
  3878. "hyperf",
  3879. "php",
  3880. "service-governance",
  3881. "swoole"
  3882. ],
  3883. "support": {
  3884. "docs": "https://hyperf.wiki",
  3885. "issues": "https://github.com/hyperf/hyperf/issues",
  3886. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3887. "source": "https://github.com/hyperf/hyperf"
  3888. },
  3889. "funding": [
  3890. {
  3891. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3892. "type": "custom"
  3893. },
  3894. {
  3895. "url": "https://opencollective.com/hyperf",
  3896. "type": "open_collective"
  3897. }
  3898. ],
  3899. "time": "2024-09-25T02:54:12+00:00"
  3900. },
  3901. {
  3902. "name": "hyperf/service-governance-nacos",
  3903. "version": "v3.1.42",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3907. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3912. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "hyperf/codec": "~3.1.0",
  3917. "hyperf/contract": "~3.1.0",
  3918. "hyperf/nacos": "~3.1.0",
  3919. "hyperf/service-governance": "~3.1.0",
  3920. "hyperf/support": "~3.1.0",
  3921. "hyperf/utils": "~3.1.0",
  3922. "php": ">=8.1"
  3923. },
  3924. "type": "library",
  3925. "extra": {
  3926. "branch-alias": {
  3927. "dev-master": "3.1-dev"
  3928. },
  3929. "hyperf": {
  3930. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3931. }
  3932. },
  3933. "autoload": {
  3934. "psr-4": {
  3935. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3936. }
  3937. },
  3938. "notification-url": "https://packagist.org/downloads/",
  3939. "license": [
  3940. "MIT"
  3941. ],
  3942. "description": "A nacos adapter for service governance.",
  3943. "homepage": "https://hyperf.io",
  3944. "keywords": [
  3945. "hyperf",
  3946. "nacos-adapter",
  3947. "php",
  3948. "service-governance",
  3949. "swoole"
  3950. ],
  3951. "support": {
  3952. "docs": "https://hyperf.wiki",
  3953. "issues": "https://github.com/hyperf/hyperf/issues",
  3954. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3955. "source": "https://github.com/hyperf/hyperf"
  3956. },
  3957. "funding": [
  3958. {
  3959. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3960. "type": "custom"
  3961. },
  3962. {
  3963. "url": "https://opencollective.com/hyperf",
  3964. "type": "open_collective"
  3965. }
  3966. ],
  3967. "time": "2024-09-25T02:54:12+00:00"
  3968. },
  3969. {
  3970. "name": "hyperf/stdlib",
  3971. "version": "v3.1.42",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/hyperf/stdlib.git",
  3975. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3980. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": ">=8.1"
  3985. },
  3986. "type": "library",
  3987. "extra": {
  3988. "branch-alias": {
  3989. "dev-master": "3.1-dev"
  3990. }
  3991. },
  3992. "autoload": {
  3993. "psr-4": {
  3994. "Hyperf\\Stdlib\\": "src/"
  3995. }
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "description": "A stdlib component for Hyperf.",
  4002. "homepage": "https://hyperf.io",
  4003. "keywords": [
  4004. "hyperf",
  4005. "php",
  4006. "stdlib",
  4007. "swoole"
  4008. ],
  4009. "support": {
  4010. "docs": "https://hyperf.wiki",
  4011. "issues": "https://github.com/hyperf/hyperf/issues",
  4012. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4013. "source": "https://github.com/hyperf/hyperf"
  4014. },
  4015. "funding": [
  4016. {
  4017. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4018. "type": "custom"
  4019. },
  4020. {
  4021. "url": "https://opencollective.com/hyperf",
  4022. "type": "open_collective"
  4023. }
  4024. ],
  4025. "time": "2024-09-25T02:54:12+00:00"
  4026. },
  4027. {
  4028. "name": "hyperf/stringable",
  4029. "version": "v3.1.43",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/hyperf/stringable.git",
  4033. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4038. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4039. "shasum": ""
  4040. },
  4041. "require": {
  4042. "ext-mbstring": "*",
  4043. "hyperf/collection": "~3.1.0",
  4044. "hyperf/conditionable": "~3.1.0",
  4045. "hyperf/macroable": "~3.1.0",
  4046. "hyperf/tappable": "~3.1.0",
  4047. "php": ">=8.1"
  4048. },
  4049. "suggest": {
  4050. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4051. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4052. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4053. },
  4054. "type": "library",
  4055. "extra": {
  4056. "branch-alias": {
  4057. "dev-master": "3.1-dev"
  4058. }
  4059. },
  4060. "autoload": {
  4061. "files": [
  4062. "src/Functions.php"
  4063. ],
  4064. "psr-4": {
  4065. "Hyperf\\Stringable\\": "src/"
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "description": "Hyperf Stringable package which come from illuminate/support",
  4073. "homepage": "https://hyperf.io",
  4074. "keywords": [
  4075. "hyperf",
  4076. "php",
  4077. "stringable",
  4078. "swoole"
  4079. ],
  4080. "support": {
  4081. "docs": "https://hyperf.wiki",
  4082. "issues": "https://github.com/hyperf/hyperf/issues",
  4083. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4084. "source": "https://github.com/hyperf/hyperf"
  4085. },
  4086. "funding": [
  4087. {
  4088. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4089. "type": "custom"
  4090. },
  4091. {
  4092. "url": "https://opencollective.com/hyperf",
  4093. "type": "open_collective"
  4094. }
  4095. ],
  4096. "time": "2024-10-09T02:28:40+00:00"
  4097. },
  4098. {
  4099. "name": "hyperf/support",
  4100. "version": "v3.1.42",
  4101. "source": {
  4102. "type": "git",
  4103. "url": "https://github.com/hyperf/support.git",
  4104. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4105. },
  4106. "dist": {
  4107. "type": "zip",
  4108. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4109. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4110. "shasum": ""
  4111. },
  4112. "require": {
  4113. "hyperf/collection": "~3.1.0",
  4114. "hyperf/context": "~3.1.0",
  4115. "hyperf/contract": "~3.1.0",
  4116. "hyperf/coroutine": "~3.1.0",
  4117. "hyperf/macroable": "~3.1.0",
  4118. "hyperf/stringable": "~3.1.0",
  4119. "php": ">=8.1"
  4120. },
  4121. "suggest": {
  4122. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "3.1-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "files": [
  4132. "src/Functions.php"
  4133. ],
  4134. "psr-4": {
  4135. "Hyperf\\Support\\": "src/"
  4136. }
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "description": "A support component for Hyperf.",
  4143. "homepage": "https://hyperf.io",
  4144. "keywords": [
  4145. "hyperf",
  4146. "php",
  4147. "support",
  4148. "swoole"
  4149. ],
  4150. "support": {
  4151. "docs": "https://hyperf.wiki",
  4152. "issues": "https://github.com/hyperf/hyperf/issues",
  4153. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4154. "source": "https://github.com/hyperf/hyperf"
  4155. },
  4156. "funding": [
  4157. {
  4158. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4159. "type": "custom"
  4160. },
  4161. {
  4162. "url": "https://opencollective.com/hyperf",
  4163. "type": "open_collective"
  4164. }
  4165. ],
  4166. "time": "2024-09-25T02:54:12+00:00"
  4167. },
  4168. {
  4169. "name": "hyperf/tappable",
  4170. "version": "v3.1.42",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/hyperf/tappable.git",
  4174. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4179. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4180. "shasum": ""
  4181. },
  4182. "require": {
  4183. "php": ">=8.1"
  4184. },
  4185. "type": "library",
  4186. "extra": {
  4187. "branch-alias": {
  4188. "dev-master": "3.1-dev"
  4189. }
  4190. },
  4191. "autoload": {
  4192. "files": [
  4193. "src/Functions.php"
  4194. ],
  4195. "psr-4": {
  4196. "Hyperf\\Tappable\\": "src/"
  4197. }
  4198. },
  4199. "notification-url": "https://packagist.org/downloads/",
  4200. "license": [
  4201. "MIT"
  4202. ],
  4203. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4204. "homepage": "https://hyperf.io",
  4205. "keywords": [
  4206. "hyperf",
  4207. "php",
  4208. "swoole",
  4209. "tappable"
  4210. ],
  4211. "support": {
  4212. "docs": "https://hyperf.wiki",
  4213. "issues": "https://github.com/hyperf/hyperf/issues",
  4214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4215. "source": "https://github.com/hyperf/hyperf"
  4216. },
  4217. "funding": [
  4218. {
  4219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4220. "type": "custom"
  4221. },
  4222. {
  4223. "url": "https://opencollective.com/hyperf",
  4224. "type": "open_collective"
  4225. }
  4226. ],
  4227. "time": "2024-09-25T02:54:12+00:00"
  4228. },
  4229. {
  4230. "name": "hyperf/utils",
  4231. "version": "v3.1.42",
  4232. "source": {
  4233. "type": "git",
  4234. "url": "https://github.com/hyperf/utils.git",
  4235. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4236. },
  4237. "dist": {
  4238. "type": "zip",
  4239. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4240. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4241. "shasum": ""
  4242. },
  4243. "require": {
  4244. "doctrine/inflector": "^2.0",
  4245. "hyperf/code-parser": "~3.1.0",
  4246. "hyperf/codec": "~3.1.0",
  4247. "hyperf/collection": "~3.1.0",
  4248. "hyperf/context": "~3.1.0",
  4249. "hyperf/contract": "~3.1.0",
  4250. "hyperf/coordinator": "~3.1.0",
  4251. "hyperf/coroutine": "~3.1.0",
  4252. "hyperf/engine": "^2.0",
  4253. "hyperf/macroable": "~3.1.0",
  4254. "hyperf/serializer": "~3.1.0",
  4255. "hyperf/stringable": "~3.1.0",
  4256. "hyperf/support": "~3.1.0",
  4257. "php": ">=8.1"
  4258. },
  4259. "type": "library",
  4260. "extra": {
  4261. "branch-alias": {
  4262. "dev-master": "3.1-dev"
  4263. }
  4264. },
  4265. "notification-url": "https://packagist.org/downloads/",
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "description": "A tools package that could help developer solved the problem quickly.",
  4270. "homepage": "https://hyperf.io",
  4271. "keywords": [
  4272. "hyperf",
  4273. "php",
  4274. "swoole",
  4275. "utils"
  4276. ],
  4277. "support": {
  4278. "docs": "https://hyperf.wiki",
  4279. "issues": "https://github.com/hyperf/hyperf/issues",
  4280. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4281. "source": "https://github.com/hyperf/hyperf"
  4282. },
  4283. "funding": [
  4284. {
  4285. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4286. "type": "custom"
  4287. },
  4288. {
  4289. "url": "https://opencollective.com/hyperf",
  4290. "type": "open_collective"
  4291. }
  4292. ],
  4293. "time": "2024-09-25T02:54:12+00:00"
  4294. },
  4295. {
  4296. "name": "jaeger/g-http",
  4297. "version": "V2.0.1",
  4298. "source": {
  4299. "type": "git",
  4300. "url": "https://github.com/jae-jae/GHttp.git",
  4301. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4302. },
  4303. "dist": {
  4304. "type": "zip",
  4305. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4306. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4307. "shasum": ""
  4308. },
  4309. "require": {
  4310. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4311. "php": ">=8.1",
  4312. "symfony/cache": "^6.4 || ^7.0"
  4313. },
  4314. "require-dev": {
  4315. "predis/predis": "^2.2"
  4316. },
  4317. "type": "library",
  4318. "autoload": {
  4319. "psr-4": {
  4320. "Jaeger\\": "src"
  4321. }
  4322. },
  4323. "notification-url": "https://packagist.org/downloads/",
  4324. "license": [
  4325. "MIT"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "Jaeger",
  4330. "email": "JaegerCode@gmail.com"
  4331. }
  4332. ],
  4333. "description": "Simple Http client base on GuzzleHttp",
  4334. "support": {
  4335. "issues": "https://github.com/jae-jae/GHttp/issues",
  4336. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4337. },
  4338. "time": "2024-06-14T08:13:32+00:00"
  4339. },
  4340. {
  4341. "name": "jaeger/phpquery-single",
  4342. "version": "1.1.1",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4346. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4351. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4352. "shasum": ""
  4353. },
  4354. "require": {
  4355. "php": ">=5.3.0"
  4356. },
  4357. "type": "library",
  4358. "autoload": {
  4359. "classmap": [
  4360. "phpQuery.php"
  4361. ]
  4362. },
  4363. "notification-url": "https://packagist.org/downloads/",
  4364. "license": [
  4365. "MIT"
  4366. ],
  4367. "authors": [
  4368. {
  4369. "name": "Tobiasz Cudnik",
  4370. "email": "tobiasz.cudnik@gmail.com",
  4371. "homepage": "https://github.com/TobiaszCudnik",
  4372. "role": "Developer"
  4373. },
  4374. {
  4375. "name": "Jaeger",
  4376. "role": "Packager"
  4377. }
  4378. ],
  4379. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4380. "homepage": "http://code.google.com/p/phpquery/",
  4381. "support": {
  4382. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4383. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4384. },
  4385. "time": "2022-03-26T15:01:16+00:00"
  4386. },
  4387. {
  4388. "name": "jaeger/querylist",
  4389. "version": "V4.4.5",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/jae-jae/QueryList.git",
  4393. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4398. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4399. "shasum": ""
  4400. },
  4401. "require": {
  4402. "ext-dom": "*",
  4403. "jaeger/g-http": "^2.0",
  4404. "jaeger/phpquery-single": "^1",
  4405. "php": ">=8.1",
  4406. "symfony/var-dumper": ">3.4"
  4407. },
  4408. "require-dev": {
  4409. "phpunit/phpunit": "^8.5"
  4410. },
  4411. "type": "library",
  4412. "autoload": {
  4413. "files": [
  4414. "src/Collect/Support/helpers.php",
  4415. "src/Collect/Support/alias.php"
  4416. ],
  4417. "psr-4": {
  4418. "QL\\": "src"
  4419. }
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Jaeger",
  4428. "email": "JaegerCode@gmail.com"
  4429. }
  4430. ],
  4431. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4432. "homepage": "http://querylist.cc",
  4433. "keywords": [
  4434. "QueryList",
  4435. "phpQuery",
  4436. "spider"
  4437. ],
  4438. "support": {
  4439. "issues": "https://github.com/jae-jae/QueryList/issues",
  4440. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.5"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://opencollective.com/querylist",
  4445. "type": "open_collective"
  4446. }
  4447. ],
  4448. "time": "2024-07-16T07:11:08+00:00"
  4449. },
  4450. {
  4451. "name": "jetbrains/phpstorm-attributes",
  4452. "version": "1.1",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4456. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4461. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4462. "shasum": ""
  4463. },
  4464. "type": "library",
  4465. "autoload": {
  4466. "psr-4": {
  4467. "JetBrains\\PhpStorm\\": "src/"
  4468. }
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "Apache-2.0"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "JetBrains",
  4477. "homepage": "https://www.jetbrains.com"
  4478. }
  4479. ],
  4480. "description": "PhpStorm specific attributes",
  4481. "keywords": [
  4482. "attributes",
  4483. "jetbrains",
  4484. "phpstorm"
  4485. ],
  4486. "support": {
  4487. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4488. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4489. },
  4490. "time": "2023-09-01T08:50:25+00:00"
  4491. },
  4492. {
  4493. "name": "laminas/laminas-mime",
  4494. "version": "2.12.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/laminas/laminas-mime.git",
  4498. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4503. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4504. "shasum": ""
  4505. },
  4506. "require": {
  4507. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4508. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4509. },
  4510. "conflict": {
  4511. "zendframework/zend-mime": "*"
  4512. },
  4513. "require-dev": {
  4514. "laminas/laminas-coding-standard": "~2.4.0",
  4515. "laminas/laminas-mail": "^2.19.0",
  4516. "phpunit/phpunit": "~9.5.25"
  4517. },
  4518. "suggest": {
  4519. "laminas/laminas-mail": "Laminas\\Mail component"
  4520. },
  4521. "type": "library",
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Laminas\\Mime\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "BSD-3-Clause"
  4530. ],
  4531. "description": "Create and parse MIME messages and parts",
  4532. "homepage": "https://laminas.dev",
  4533. "keywords": [
  4534. "laminas",
  4535. "mime"
  4536. ],
  4537. "support": {
  4538. "chat": "https://laminas.dev/chat",
  4539. "docs": "https://docs.laminas.dev/laminas-mime/",
  4540. "forum": "https://discourse.laminas.dev",
  4541. "issues": "https://github.com/laminas/laminas-mime/issues",
  4542. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4543. "source": "https://github.com/laminas/laminas-mime"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4548. "type": "community_bridge"
  4549. }
  4550. ],
  4551. "time": "2023-11-02T16:47:19+00:00"
  4552. },
  4553. {
  4554. "name": "laminas/laminas-stdlib",
  4555. "version": "3.20.0",
  4556. "source": {
  4557. "type": "git",
  4558. "url": "https://github.com/laminas/laminas-stdlib.git",
  4559. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4560. },
  4561. "dist": {
  4562. "type": "zip",
  4563. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4564. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4565. "shasum": ""
  4566. },
  4567. "require": {
  4568. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4569. },
  4570. "conflict": {
  4571. "zendframework/zend-stdlib": "*"
  4572. },
  4573. "require-dev": {
  4574. "laminas/laminas-coding-standard": "^3.0",
  4575. "phpbench/phpbench": "^1.3.1",
  4576. "phpunit/phpunit": "^10.5.38",
  4577. "psalm/plugin-phpunit": "^0.19.0",
  4578. "vimeo/psalm": "^5.26.1"
  4579. },
  4580. "type": "library",
  4581. "autoload": {
  4582. "psr-4": {
  4583. "Laminas\\Stdlib\\": "src/"
  4584. }
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "BSD-3-Clause"
  4589. ],
  4590. "description": "SPL extensions, array utilities, error handlers, and more",
  4591. "homepage": "https://laminas.dev",
  4592. "keywords": [
  4593. "laminas",
  4594. "stdlib"
  4595. ],
  4596. "support": {
  4597. "chat": "https://laminas.dev/chat",
  4598. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4599. "forum": "https://discourse.laminas.dev",
  4600. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4601. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4602. "source": "https://github.com/laminas/laminas-stdlib"
  4603. },
  4604. "funding": [
  4605. {
  4606. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4607. "type": "community_bridge"
  4608. }
  4609. ],
  4610. "time": "2024-10-29T13:46:07+00:00"
  4611. },
  4612. {
  4613. "name": "markrogoyski/math-php",
  4614. "version": "v2.10.0",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/markrogoyski/math-php.git",
  4618. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4623. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "ext-json": "*",
  4628. "php": ">=7.2.0"
  4629. },
  4630. "require-dev": {
  4631. "php-coveralls/php-coveralls": "^2.0",
  4632. "php-parallel-lint/php-parallel-lint": "^1.2",
  4633. "phploc/phploc": "*",
  4634. "phpmd/phpmd": "^2.6",
  4635. "phpstan/phpstan": "^1.10",
  4636. "phpunit/phpunit": "^8.5",
  4637. "squizlabs/php_codesniffer": "3.*"
  4638. },
  4639. "type": "library",
  4640. "autoload": {
  4641. "psr-4": {
  4642. "MathPHP\\": "src/"
  4643. }
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "Mark Rogoyski",
  4652. "email": "mark@rogoyski.com",
  4653. "homepage": "https://github.com/markrogoyski",
  4654. "role": "Lead developer"
  4655. },
  4656. {
  4657. "name": "Kevin Nowaczyk",
  4658. "homepage": "https://github.com/Beakerboy",
  4659. "role": "Developer"
  4660. },
  4661. {
  4662. "name": "MathPHP Community of Contributors",
  4663. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4664. }
  4665. ],
  4666. "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",
  4667. "homepage": "https://github.com/markrogoyski/math-php/",
  4668. "keywords": [
  4669. "algebra",
  4670. "combinatorics",
  4671. "distributions",
  4672. "linear algebra",
  4673. "math",
  4674. "mathematics",
  4675. "matrix",
  4676. "numerical analysis",
  4677. "probability",
  4678. "regressions",
  4679. "statistics"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/markrogoyski/math-php/issues",
  4683. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4684. },
  4685. "time": "2024-04-17T00:09:51+00:00"
  4686. },
  4687. {
  4688. "name": "monolog/monolog",
  4689. "version": "3.7.0",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/Seldaek/monolog.git",
  4693. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4698. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "php": ">=8.1",
  4703. "psr/log": "^2.0 || ^3.0"
  4704. },
  4705. "provide": {
  4706. "psr/log-implementation": "3.0.0"
  4707. },
  4708. "require-dev": {
  4709. "aws/aws-sdk-php": "^3.0",
  4710. "doctrine/couchdb": "~1.0@dev",
  4711. "elasticsearch/elasticsearch": "^7 || ^8",
  4712. "ext-json": "*",
  4713. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4714. "guzzlehttp/guzzle": "^7.4.5",
  4715. "guzzlehttp/psr7": "^2.2",
  4716. "mongodb/mongodb": "^1.8",
  4717. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4718. "phpstan/phpstan": "^1.9",
  4719. "phpstan/phpstan-deprecation-rules": "^1.0",
  4720. "phpstan/phpstan-strict-rules": "^1.4",
  4721. "phpunit/phpunit": "^10.5.17",
  4722. "predis/predis": "^1.1 || ^2",
  4723. "ruflin/elastica": "^7",
  4724. "symfony/mailer": "^5.4 || ^6",
  4725. "symfony/mime": "^5.4 || ^6"
  4726. },
  4727. "suggest": {
  4728. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4729. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4730. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4731. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4732. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4733. "ext-mbstring": "Allow to work properly with unicode symbols",
  4734. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4735. "ext-openssl": "Required to send log messages using SSL",
  4736. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4737. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4738. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4739. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4740. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4741. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-main": "3.x-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "psr-4": {
  4751. "Monolog\\": "src/Monolog"
  4752. }
  4753. },
  4754. "notification-url": "https://packagist.org/downloads/",
  4755. "license": [
  4756. "MIT"
  4757. ],
  4758. "authors": [
  4759. {
  4760. "name": "Jordi Boggiano",
  4761. "email": "j.boggiano@seld.be",
  4762. "homepage": "https://seld.be"
  4763. }
  4764. ],
  4765. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4766. "homepage": "https://github.com/Seldaek/monolog",
  4767. "keywords": [
  4768. "log",
  4769. "logging",
  4770. "psr-3"
  4771. ],
  4772. "support": {
  4773. "issues": "https://github.com/Seldaek/monolog/issues",
  4774. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4775. },
  4776. "funding": [
  4777. {
  4778. "url": "https://github.com/Seldaek",
  4779. "type": "github"
  4780. },
  4781. {
  4782. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4783. "type": "tidelift"
  4784. }
  4785. ],
  4786. "time": "2024-06-28T09:40:51+00:00"
  4787. },
  4788. {
  4789. "name": "nesbot/carbon",
  4790. "version": "2.72.5",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/briannesbitt/Carbon.git",
  4794. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4799. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4800. "shasum": ""
  4801. },
  4802. "require": {
  4803. "carbonphp/carbon-doctrine-types": "*",
  4804. "ext-json": "*",
  4805. "php": "^7.1.8 || ^8.0",
  4806. "psr/clock": "^1.0",
  4807. "symfony/polyfill-mbstring": "^1.0",
  4808. "symfony/polyfill-php80": "^1.16",
  4809. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4810. },
  4811. "provide": {
  4812. "psr/clock-implementation": "1.0"
  4813. },
  4814. "require-dev": {
  4815. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4816. "doctrine/orm": "^2.7 || ^3.0",
  4817. "friendsofphp/php-cs-fixer": "^3.0",
  4818. "kylekatarnls/multi-tester": "^2.0",
  4819. "ondrejmirtes/better-reflection": "*",
  4820. "phpmd/phpmd": "^2.9",
  4821. "phpstan/extension-installer": "^1.0",
  4822. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4823. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4824. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4825. "squizlabs/php_codesniffer": "^3.4"
  4826. },
  4827. "bin": [
  4828. "bin/carbon"
  4829. ],
  4830. "type": "library",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-master": "3.x-dev",
  4834. "dev-2.x": "2.x-dev"
  4835. },
  4836. "laravel": {
  4837. "providers": [
  4838. "Carbon\\Laravel\\ServiceProvider"
  4839. ]
  4840. },
  4841. "phpstan": {
  4842. "includes": [
  4843. "extension.neon"
  4844. ]
  4845. }
  4846. },
  4847. "autoload": {
  4848. "psr-4": {
  4849. "Carbon\\": "src/Carbon/"
  4850. }
  4851. },
  4852. "notification-url": "https://packagist.org/downloads/",
  4853. "license": [
  4854. "MIT"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Brian Nesbitt",
  4859. "email": "brian@nesbot.com",
  4860. "homepage": "https://markido.com"
  4861. },
  4862. {
  4863. "name": "kylekatarnls",
  4864. "homepage": "https://github.com/kylekatarnls"
  4865. }
  4866. ],
  4867. "description": "An API extension for DateTime that supports 281 different languages.",
  4868. "homepage": "https://carbon.nesbot.com",
  4869. "keywords": [
  4870. "date",
  4871. "datetime",
  4872. "time"
  4873. ],
  4874. "support": {
  4875. "docs": "https://carbon.nesbot.com/docs",
  4876. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4877. "source": "https://github.com/briannesbitt/Carbon"
  4878. },
  4879. "funding": [
  4880. {
  4881. "url": "https://github.com/sponsors/kylekatarnls",
  4882. "type": "github"
  4883. },
  4884. {
  4885. "url": "https://opencollective.com/Carbon#sponsor",
  4886. "type": "opencollective"
  4887. },
  4888. {
  4889. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4890. "type": "tidelift"
  4891. }
  4892. ],
  4893. "time": "2024-06-03T19:18:41+00:00"
  4894. },
  4895. {
  4896. "name": "nikic/fast-route",
  4897. "version": "v1.3.0",
  4898. "source": {
  4899. "type": "git",
  4900. "url": "https://github.com/nikic/FastRoute.git",
  4901. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4902. },
  4903. "dist": {
  4904. "type": "zip",
  4905. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4906. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4907. "shasum": ""
  4908. },
  4909. "require": {
  4910. "php": ">=5.4.0"
  4911. },
  4912. "require-dev": {
  4913. "phpunit/phpunit": "^4.8.35|~5.7"
  4914. },
  4915. "type": "library",
  4916. "autoload": {
  4917. "files": [
  4918. "src/functions.php"
  4919. ],
  4920. "psr-4": {
  4921. "FastRoute\\": "src/"
  4922. }
  4923. },
  4924. "notification-url": "https://packagist.org/downloads/",
  4925. "license": [
  4926. "BSD-3-Clause"
  4927. ],
  4928. "authors": [
  4929. {
  4930. "name": "Nikita Popov",
  4931. "email": "nikic@php.net"
  4932. }
  4933. ],
  4934. "description": "Fast request router for PHP",
  4935. "keywords": [
  4936. "router",
  4937. "routing"
  4938. ],
  4939. "support": {
  4940. "issues": "https://github.com/nikic/FastRoute/issues",
  4941. "source": "https://github.com/nikic/FastRoute/tree/master"
  4942. },
  4943. "time": "2018-02-13T20:26:39+00:00"
  4944. },
  4945. {
  4946. "name": "nikic/php-parser",
  4947. "version": "v4.19.4",
  4948. "source": {
  4949. "type": "git",
  4950. "url": "https://github.com/nikic/PHP-Parser.git",
  4951. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4952. },
  4953. "dist": {
  4954. "type": "zip",
  4955. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4956. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4957. "shasum": ""
  4958. },
  4959. "require": {
  4960. "ext-tokenizer": "*",
  4961. "php": ">=7.1"
  4962. },
  4963. "require-dev": {
  4964. "ircmaxell/php-yacc": "^0.0.7",
  4965. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4966. },
  4967. "bin": [
  4968. "bin/php-parse"
  4969. ],
  4970. "type": "library",
  4971. "extra": {
  4972. "branch-alias": {
  4973. "dev-master": "4.9-dev"
  4974. }
  4975. },
  4976. "autoload": {
  4977. "psr-4": {
  4978. "PhpParser\\": "lib/PhpParser"
  4979. }
  4980. },
  4981. "notification-url": "https://packagist.org/downloads/",
  4982. "license": [
  4983. "BSD-3-Clause"
  4984. ],
  4985. "authors": [
  4986. {
  4987. "name": "Nikita Popov"
  4988. }
  4989. ],
  4990. "description": "A PHP parser written in PHP",
  4991. "keywords": [
  4992. "parser",
  4993. "php"
  4994. ],
  4995. "support": {
  4996. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4997. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4998. },
  4999. "time": "2024-09-29T15:01:53+00:00"
  5000. },
  5001. {
  5002. "name": "php-di/phpdoc-reader",
  5003. "version": "2.2.1",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5007. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5012. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": ">=7.2.0"
  5017. },
  5018. "require-dev": {
  5019. "mnapoli/hard-mode": "~0.3.0",
  5020. "phpunit/phpunit": "^8.5|^9.0"
  5021. },
  5022. "type": "library",
  5023. "autoload": {
  5024. "psr-4": {
  5025. "PhpDocReader\\": "src/PhpDocReader"
  5026. }
  5027. },
  5028. "notification-url": "https://packagist.org/downloads/",
  5029. "license": [
  5030. "MIT"
  5031. ],
  5032. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5033. "keywords": [
  5034. "phpdoc",
  5035. "reflection"
  5036. ],
  5037. "support": {
  5038. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5039. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5040. },
  5041. "time": "2020-10-12T12:39:22+00:00"
  5042. },
  5043. {
  5044. "name": "phpoption/phpoption",
  5045. "version": "1.9.3",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/schmittjoh/php-option.git",
  5049. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5054. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5055. "shasum": ""
  5056. },
  5057. "require": {
  5058. "php": "^7.2.5 || ^8.0"
  5059. },
  5060. "require-dev": {
  5061. "bamarni/composer-bin-plugin": "^1.8.2",
  5062. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5063. },
  5064. "type": "library",
  5065. "extra": {
  5066. "bamarni-bin": {
  5067. "bin-links": true,
  5068. "forward-command": false
  5069. },
  5070. "branch-alias": {
  5071. "dev-master": "1.9-dev"
  5072. }
  5073. },
  5074. "autoload": {
  5075. "psr-4": {
  5076. "PhpOption\\": "src/PhpOption/"
  5077. }
  5078. },
  5079. "notification-url": "https://packagist.org/downloads/",
  5080. "license": [
  5081. "Apache-2.0"
  5082. ],
  5083. "authors": [
  5084. {
  5085. "name": "Johannes M. Schmitt",
  5086. "email": "schmittjoh@gmail.com",
  5087. "homepage": "https://github.com/schmittjoh"
  5088. },
  5089. {
  5090. "name": "Graham Campbell",
  5091. "email": "hello@gjcampbell.co.uk",
  5092. "homepage": "https://github.com/GrahamCampbell"
  5093. }
  5094. ],
  5095. "description": "Option Type for PHP",
  5096. "keywords": [
  5097. "language",
  5098. "option",
  5099. "php",
  5100. "type"
  5101. ],
  5102. "support": {
  5103. "issues": "https://github.com/schmittjoh/php-option/issues",
  5104. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5105. },
  5106. "funding": [
  5107. {
  5108. "url": "https://github.com/GrahamCampbell",
  5109. "type": "github"
  5110. },
  5111. {
  5112. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5113. "type": "tidelift"
  5114. }
  5115. ],
  5116. "time": "2024-07-20T21:41:07+00:00"
  5117. },
  5118. {
  5119. "name": "psr/cache",
  5120. "version": "3.0.0",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/php-fig/cache.git",
  5124. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5129. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5130. "shasum": ""
  5131. },
  5132. "require": {
  5133. "php": ">=8.0.0"
  5134. },
  5135. "type": "library",
  5136. "extra": {
  5137. "branch-alias": {
  5138. "dev-master": "1.0.x-dev"
  5139. }
  5140. },
  5141. "autoload": {
  5142. "psr-4": {
  5143. "Psr\\Cache\\": "src/"
  5144. }
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "MIT"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "PHP-FIG",
  5153. "homepage": "https://www.php-fig.org/"
  5154. }
  5155. ],
  5156. "description": "Common interface for caching libraries",
  5157. "keywords": [
  5158. "cache",
  5159. "psr",
  5160. "psr-6"
  5161. ],
  5162. "support": {
  5163. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5164. },
  5165. "time": "2021-02-03T23:26:27+00:00"
  5166. },
  5167. {
  5168. "name": "psr/clock",
  5169. "version": "1.0.0",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/php-fig/clock.git",
  5173. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5178. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "php": "^7.0 || ^8.0"
  5183. },
  5184. "type": "library",
  5185. "autoload": {
  5186. "psr-4": {
  5187. "Psr\\Clock\\": "src/"
  5188. }
  5189. },
  5190. "notification-url": "https://packagist.org/downloads/",
  5191. "license": [
  5192. "MIT"
  5193. ],
  5194. "authors": [
  5195. {
  5196. "name": "PHP-FIG",
  5197. "homepage": "https://www.php-fig.org/"
  5198. }
  5199. ],
  5200. "description": "Common interface for reading the clock.",
  5201. "homepage": "https://github.com/php-fig/clock",
  5202. "keywords": [
  5203. "clock",
  5204. "now",
  5205. "psr",
  5206. "psr-20",
  5207. "time"
  5208. ],
  5209. "support": {
  5210. "issues": "https://github.com/php-fig/clock/issues",
  5211. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5212. },
  5213. "time": "2022-11-25T14:36:26+00:00"
  5214. },
  5215. {
  5216. "name": "psr/container",
  5217. "version": "2.0.2",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/php-fig/container.git",
  5221. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5226. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "php": ">=7.4.0"
  5231. },
  5232. "type": "library",
  5233. "extra": {
  5234. "branch-alias": {
  5235. "dev-master": "2.0.x-dev"
  5236. }
  5237. },
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Psr\\Container\\": "src/"
  5241. }
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "PHP-FIG",
  5250. "homepage": "https://www.php-fig.org/"
  5251. }
  5252. ],
  5253. "description": "Common Container Interface (PHP FIG PSR-11)",
  5254. "homepage": "https://github.com/php-fig/container",
  5255. "keywords": [
  5256. "PSR-11",
  5257. "container",
  5258. "container-interface",
  5259. "container-interop",
  5260. "psr"
  5261. ],
  5262. "support": {
  5263. "issues": "https://github.com/php-fig/container/issues",
  5264. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5265. },
  5266. "time": "2021-11-05T16:47:00+00:00"
  5267. },
  5268. {
  5269. "name": "psr/event-dispatcher",
  5270. "version": "1.0.0",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/php-fig/event-dispatcher.git",
  5274. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5279. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "php": ">=7.2.0"
  5284. },
  5285. "type": "library",
  5286. "extra": {
  5287. "branch-alias": {
  5288. "dev-master": "1.0.x-dev"
  5289. }
  5290. },
  5291. "autoload": {
  5292. "psr-4": {
  5293. "Psr\\EventDispatcher\\": "src/"
  5294. }
  5295. },
  5296. "notification-url": "https://packagist.org/downloads/",
  5297. "license": [
  5298. "MIT"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "PHP-FIG",
  5303. "homepage": "http://www.php-fig.org/"
  5304. }
  5305. ],
  5306. "description": "Standard interfaces for event handling.",
  5307. "keywords": [
  5308. "events",
  5309. "psr",
  5310. "psr-14"
  5311. ],
  5312. "support": {
  5313. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5314. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5315. },
  5316. "time": "2019-01-08T18:20:26+00:00"
  5317. },
  5318. {
  5319. "name": "psr/http-client",
  5320. "version": "1.0.3",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://github.com/php-fig/http-client.git",
  5324. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5329. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5330. "shasum": ""
  5331. },
  5332. "require": {
  5333. "php": "^7.0 || ^8.0",
  5334. "psr/http-message": "^1.0 || ^2.0"
  5335. },
  5336. "type": "library",
  5337. "extra": {
  5338. "branch-alias": {
  5339. "dev-master": "1.0.x-dev"
  5340. }
  5341. },
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Psr\\Http\\Client\\": "src/"
  5345. }
  5346. },
  5347. "notification-url": "https://packagist.org/downloads/",
  5348. "license": [
  5349. "MIT"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "PHP-FIG",
  5354. "homepage": "https://www.php-fig.org/"
  5355. }
  5356. ],
  5357. "description": "Common interface for HTTP clients",
  5358. "homepage": "https://github.com/php-fig/http-client",
  5359. "keywords": [
  5360. "http",
  5361. "http-client",
  5362. "psr",
  5363. "psr-18"
  5364. ],
  5365. "support": {
  5366. "source": "https://github.com/php-fig/http-client"
  5367. },
  5368. "time": "2023-09-23T14:17:50+00:00"
  5369. },
  5370. {
  5371. "name": "psr/http-factory",
  5372. "version": "1.1.0",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/php-fig/http-factory.git",
  5376. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5381. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=7.1",
  5386. "psr/http-message": "^1.0 || ^2.0"
  5387. },
  5388. "type": "library",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-master": "1.0.x-dev"
  5392. }
  5393. },
  5394. "autoload": {
  5395. "psr-4": {
  5396. "Psr\\Http\\Message\\": "src/"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "MIT"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "PHP-FIG",
  5406. "homepage": "https://www.php-fig.org/"
  5407. }
  5408. ],
  5409. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5410. "keywords": [
  5411. "factory",
  5412. "http",
  5413. "message",
  5414. "psr",
  5415. "psr-17",
  5416. "psr-7",
  5417. "request",
  5418. "response"
  5419. ],
  5420. "support": {
  5421. "source": "https://github.com/php-fig/http-factory"
  5422. },
  5423. "time": "2024-04-15T12:06:14+00:00"
  5424. },
  5425. {
  5426. "name": "psr/http-message",
  5427. "version": "2.0",
  5428. "source": {
  5429. "type": "git",
  5430. "url": "https://github.com/php-fig/http-message.git",
  5431. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5432. },
  5433. "dist": {
  5434. "type": "zip",
  5435. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5436. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5437. "shasum": ""
  5438. },
  5439. "require": {
  5440. "php": "^7.2 || ^8.0"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-master": "2.0.x-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "Psr\\Http\\Message\\": "src/"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "MIT"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "PHP-FIG",
  5460. "homepage": "https://www.php-fig.org/"
  5461. }
  5462. ],
  5463. "description": "Common interface for HTTP messages",
  5464. "homepage": "https://github.com/php-fig/http-message",
  5465. "keywords": [
  5466. "http",
  5467. "http-message",
  5468. "psr",
  5469. "psr-7",
  5470. "request",
  5471. "response"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5475. },
  5476. "time": "2023-04-04T09:54:51+00:00"
  5477. },
  5478. {
  5479. "name": "psr/http-server-handler",
  5480. "version": "1.0.2",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/php-fig/http-server-handler.git",
  5484. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5489. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "php": ">=7.0",
  5494. "psr/http-message": "^1.0 || ^2.0"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-master": "1.0.x-dev"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "psr-4": {
  5504. "Psr\\Http\\Server\\": "src/"
  5505. }
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "PHP-FIG",
  5514. "homepage": "https://www.php-fig.org/"
  5515. }
  5516. ],
  5517. "description": "Common interface for HTTP server-side request handler",
  5518. "keywords": [
  5519. "handler",
  5520. "http",
  5521. "http-interop",
  5522. "psr",
  5523. "psr-15",
  5524. "psr-7",
  5525. "request",
  5526. "response",
  5527. "server"
  5528. ],
  5529. "support": {
  5530. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5531. },
  5532. "time": "2023-04-10T20:06:20+00:00"
  5533. },
  5534. {
  5535. "name": "psr/http-server-middleware",
  5536. "version": "1.0.2",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/php-fig/http-server-middleware.git",
  5540. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5545. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5546. "shasum": ""
  5547. },
  5548. "require": {
  5549. "php": ">=7.0",
  5550. "psr/http-message": "^1.0 || ^2.0",
  5551. "psr/http-server-handler": "^1.0"
  5552. },
  5553. "type": "library",
  5554. "extra": {
  5555. "branch-alias": {
  5556. "dev-master": "1.0.x-dev"
  5557. }
  5558. },
  5559. "autoload": {
  5560. "psr-4": {
  5561. "Psr\\Http\\Server\\": "src/"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "authors": [
  5569. {
  5570. "name": "PHP-FIG",
  5571. "homepage": "https://www.php-fig.org/"
  5572. }
  5573. ],
  5574. "description": "Common interface for HTTP server-side middleware",
  5575. "keywords": [
  5576. "http",
  5577. "http-interop",
  5578. "middleware",
  5579. "psr",
  5580. "psr-15",
  5581. "psr-7",
  5582. "request",
  5583. "response"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5587. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5588. },
  5589. "time": "2023-04-11T06:14:47+00:00"
  5590. },
  5591. {
  5592. "name": "psr/log",
  5593. "version": "3.0.2",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/php-fig/log.git",
  5597. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5602. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": ">=8.0.0"
  5607. },
  5608. "type": "library",
  5609. "extra": {
  5610. "branch-alias": {
  5611. "dev-master": "3.x-dev"
  5612. }
  5613. },
  5614. "autoload": {
  5615. "psr-4": {
  5616. "Psr\\Log\\": "src"
  5617. }
  5618. },
  5619. "notification-url": "https://packagist.org/downloads/",
  5620. "license": [
  5621. "MIT"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "PHP-FIG",
  5626. "homepage": "https://www.php-fig.org/"
  5627. }
  5628. ],
  5629. "description": "Common interface for logging libraries",
  5630. "homepage": "https://github.com/php-fig/log",
  5631. "keywords": [
  5632. "log",
  5633. "psr",
  5634. "psr-3"
  5635. ],
  5636. "support": {
  5637. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5638. },
  5639. "time": "2024-09-11T13:17:53+00:00"
  5640. },
  5641. {
  5642. "name": "psr/simple-cache",
  5643. "version": "3.0.0",
  5644. "source": {
  5645. "type": "git",
  5646. "url": "https://github.com/php-fig/simple-cache.git",
  5647. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5648. },
  5649. "dist": {
  5650. "type": "zip",
  5651. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5652. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5653. "shasum": ""
  5654. },
  5655. "require": {
  5656. "php": ">=8.0.0"
  5657. },
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-master": "3.0.x-dev"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "psr-4": {
  5666. "Psr\\SimpleCache\\": "src/"
  5667. }
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "PHP-FIG",
  5676. "homepage": "https://www.php-fig.org/"
  5677. }
  5678. ],
  5679. "description": "Common interfaces for simple caching",
  5680. "keywords": [
  5681. "cache",
  5682. "caching",
  5683. "psr",
  5684. "psr-16",
  5685. "simple-cache"
  5686. ],
  5687. "support": {
  5688. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5689. },
  5690. "time": "2021-10-29T13:26:27+00:00"
  5691. },
  5692. {
  5693. "name": "ralouphie/getallheaders",
  5694. "version": "3.0.3",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/ralouphie/getallheaders.git",
  5698. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5703. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "php": ">=5.6"
  5708. },
  5709. "require-dev": {
  5710. "php-coveralls/php-coveralls": "^2.1",
  5711. "phpunit/phpunit": "^5 || ^6.5"
  5712. },
  5713. "type": "library",
  5714. "autoload": {
  5715. "files": [
  5716. "src/getallheaders.php"
  5717. ]
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Ralph Khattar",
  5726. "email": "ralph.khattar@gmail.com"
  5727. }
  5728. ],
  5729. "description": "A polyfill for getallheaders.",
  5730. "support": {
  5731. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5732. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5733. },
  5734. "time": "2019-03-08T08:55:37+00:00"
  5735. },
  5736. {
  5737. "name": "swow/psr7-plus",
  5738. "version": "v1.1.2",
  5739. "source": {
  5740. "type": "git",
  5741. "url": "https://github.com/swow/psr7-plus.git",
  5742. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5743. },
  5744. "dist": {
  5745. "type": "zip",
  5746. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5747. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5748. "shasum": ""
  5749. },
  5750. "require": {
  5751. "php": ">=8.0",
  5752. "psr/http-client": "^1.0",
  5753. "psr/http-factory": "^1.0",
  5754. "psr/http-message": "^1.1|^2.0"
  5755. },
  5756. "type": "library",
  5757. "autoload": {
  5758. "psr-4": {
  5759. "Swow\\Psr7\\Message\\": "src/Message/"
  5760. }
  5761. },
  5762. "notification-url": "https://packagist.org/downloads/",
  5763. "license": [
  5764. "Apache-2.0"
  5765. ],
  5766. "authors": [
  5767. {
  5768. "name": "twose",
  5769. "email": "twosee@php.net"
  5770. }
  5771. ],
  5772. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5773. "keywords": [
  5774. "http",
  5775. "psr17",
  5776. "psr7",
  5777. "swow",
  5778. "websocket"
  5779. ],
  5780. "support": {
  5781. "issues": "https://github.com/swow/swow",
  5782. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5783. },
  5784. "time": "2023-06-15T09:18:11+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/cache",
  5788. "version": "v6.4.14",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/cache.git",
  5792. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/cache/zipball/36fb8aa88833708e9f29014b6f15fac051a8b613",
  5797. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": ">=8.1",
  5802. "psr/cache": "^2.0|^3.0",
  5803. "psr/log": "^1.1|^2|^3",
  5804. "symfony/cache-contracts": "^2.5|^3",
  5805. "symfony/service-contracts": "^2.5|^3",
  5806. "symfony/var-exporter": "^6.3.6|^7.0"
  5807. },
  5808. "conflict": {
  5809. "doctrine/dbal": "<2.13.1",
  5810. "symfony/dependency-injection": "<5.4",
  5811. "symfony/http-kernel": "<5.4",
  5812. "symfony/var-dumper": "<5.4"
  5813. },
  5814. "provide": {
  5815. "psr/cache-implementation": "2.0|3.0",
  5816. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5817. "symfony/cache-implementation": "1.1|2.0|3.0"
  5818. },
  5819. "require-dev": {
  5820. "cache/integration-tests": "dev-master",
  5821. "doctrine/dbal": "^2.13.1|^3|^4",
  5822. "predis/predis": "^1.1|^2.0",
  5823. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5824. "symfony/config": "^5.4|^6.0|^7.0",
  5825. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5826. "symfony/filesystem": "^5.4|^6.0|^7.0",
  5827. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5828. "symfony/messenger": "^5.4|^6.0|^7.0",
  5829. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5830. },
  5831. "type": "library",
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Component\\Cache\\": ""
  5835. },
  5836. "classmap": [
  5837. "Traits/ValueWrapper.php"
  5838. ],
  5839. "exclude-from-classmap": [
  5840. "/Tests/"
  5841. ]
  5842. },
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "MIT"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Nicolas Grekas",
  5850. "email": "p@tchwork.com"
  5851. },
  5852. {
  5853. "name": "Symfony Community",
  5854. "homepage": "https://symfony.com/contributors"
  5855. }
  5856. ],
  5857. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5858. "homepage": "https://symfony.com",
  5859. "keywords": [
  5860. "caching",
  5861. "psr6"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/cache/tree/v6.4.14"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2024-11-05T15:34:40+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/cache-contracts",
  5884. "version": "v3.5.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/cache-contracts.git",
  5888. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5893. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=8.1",
  5898. "psr/cache": "^3.0"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-main": "3.5-dev"
  5904. },
  5905. "thanks": {
  5906. "name": "symfony/contracts",
  5907. "url": "https://github.com/symfony/contracts"
  5908. }
  5909. },
  5910. "autoload": {
  5911. "psr-4": {
  5912. "Symfony\\Contracts\\Cache\\": ""
  5913. }
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Generic abstractions related to caching",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "abstractions",
  5933. "contracts",
  5934. "decoupling",
  5935. "interfaces",
  5936. "interoperability",
  5937. "standards"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2024-04-18T09:32:20+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/console",
  5960. "version": "v6.4.14",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/console.git",
  5964. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5969. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=8.1",
  5974. "symfony/deprecation-contracts": "^2.5|^3",
  5975. "symfony/polyfill-mbstring": "~1.0",
  5976. "symfony/service-contracts": "^2.5|^3",
  5977. "symfony/string": "^5.4|^6.0|^7.0"
  5978. },
  5979. "conflict": {
  5980. "symfony/dependency-injection": "<5.4",
  5981. "symfony/dotenv": "<5.4",
  5982. "symfony/event-dispatcher": "<5.4",
  5983. "symfony/lock": "<5.4",
  5984. "symfony/process": "<5.4"
  5985. },
  5986. "provide": {
  5987. "psr/log-implementation": "1.0|2.0|3.0"
  5988. },
  5989. "require-dev": {
  5990. "psr/log": "^1|^2|^3",
  5991. "symfony/config": "^5.4|^6.0|^7.0",
  5992. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5993. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5994. "symfony/http-foundation": "^6.4|^7.0",
  5995. "symfony/http-kernel": "^6.4|^7.0",
  5996. "symfony/lock": "^5.4|^6.0|^7.0",
  5997. "symfony/messenger": "^5.4|^6.0|^7.0",
  5998. "symfony/process": "^5.4|^6.0|^7.0",
  5999. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6000. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6001. },
  6002. "type": "library",
  6003. "autoload": {
  6004. "psr-4": {
  6005. "Symfony\\Component\\Console\\": ""
  6006. },
  6007. "exclude-from-classmap": [
  6008. "/Tests/"
  6009. ]
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "MIT"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Fabien Potencier",
  6018. "email": "fabien@symfony.com"
  6019. },
  6020. {
  6021. "name": "Symfony Community",
  6022. "homepage": "https://symfony.com/contributors"
  6023. }
  6024. ],
  6025. "description": "Eases the creation of beautiful and testable command line interfaces",
  6026. "homepage": "https://symfony.com",
  6027. "keywords": [
  6028. "cli",
  6029. "command-line",
  6030. "console",
  6031. "terminal"
  6032. ],
  6033. "support": {
  6034. "source": "https://github.com/symfony/console/tree/v6.4.14"
  6035. },
  6036. "funding": [
  6037. {
  6038. "url": "https://symfony.com/sponsor",
  6039. "type": "custom"
  6040. },
  6041. {
  6042. "url": "https://github.com/fabpot",
  6043. "type": "github"
  6044. },
  6045. {
  6046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6047. "type": "tidelift"
  6048. }
  6049. ],
  6050. "time": "2024-11-05T15:34:40+00:00"
  6051. },
  6052. {
  6053. "name": "symfony/deprecation-contracts",
  6054. "version": "v3.5.0",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/symfony/deprecation-contracts.git",
  6058. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6063. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6064. "shasum": ""
  6065. },
  6066. "require": {
  6067. "php": ">=8.1"
  6068. },
  6069. "type": "library",
  6070. "extra": {
  6071. "branch-alias": {
  6072. "dev-main": "3.5-dev"
  6073. },
  6074. "thanks": {
  6075. "name": "symfony/contracts",
  6076. "url": "https://github.com/symfony/contracts"
  6077. }
  6078. },
  6079. "autoload": {
  6080. "files": [
  6081. "function.php"
  6082. ]
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "MIT"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "Nicolas Grekas",
  6091. "email": "p@tchwork.com"
  6092. },
  6093. {
  6094. "name": "Symfony Community",
  6095. "homepage": "https://symfony.com/contributors"
  6096. }
  6097. ],
  6098. "description": "A generic function and convention to trigger deprecation notices",
  6099. "homepage": "https://symfony.com",
  6100. "support": {
  6101. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6102. },
  6103. "funding": [
  6104. {
  6105. "url": "https://symfony.com/sponsor",
  6106. "type": "custom"
  6107. },
  6108. {
  6109. "url": "https://github.com/fabpot",
  6110. "type": "github"
  6111. },
  6112. {
  6113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6114. "type": "tidelift"
  6115. }
  6116. ],
  6117. "time": "2024-04-18T09:32:20+00:00"
  6118. },
  6119. {
  6120. "name": "symfony/finder",
  6121. "version": "v6.4.13",
  6122. "source": {
  6123. "type": "git",
  6124. "url": "https://github.com/symfony/finder.git",
  6125. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6126. },
  6127. "dist": {
  6128. "type": "zip",
  6129. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6130. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6131. "shasum": ""
  6132. },
  6133. "require": {
  6134. "php": ">=8.1"
  6135. },
  6136. "require-dev": {
  6137. "symfony/filesystem": "^6.0|^7.0"
  6138. },
  6139. "type": "library",
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Symfony\\Component\\Finder\\": ""
  6143. },
  6144. "exclude-from-classmap": [
  6145. "/Tests/"
  6146. ]
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Fabien Potencier",
  6155. "email": "fabien@symfony.com"
  6156. },
  6157. {
  6158. "name": "Symfony Community",
  6159. "homepage": "https://symfony.com/contributors"
  6160. }
  6161. ],
  6162. "description": "Finds files and directories via an intuitive fluent interface",
  6163. "homepage": "https://symfony.com",
  6164. "support": {
  6165. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6166. },
  6167. "funding": [
  6168. {
  6169. "url": "https://symfony.com/sponsor",
  6170. "type": "custom"
  6171. },
  6172. {
  6173. "url": "https://github.com/fabpot",
  6174. "type": "github"
  6175. },
  6176. {
  6177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6178. "type": "tidelift"
  6179. }
  6180. ],
  6181. "time": "2024-10-01T08:30:56+00:00"
  6182. },
  6183. {
  6184. "name": "symfony/polyfill-ctype",
  6185. "version": "v1.31.0",
  6186. "source": {
  6187. "type": "git",
  6188. "url": "https://github.com/symfony/polyfill-ctype.git",
  6189. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6190. },
  6191. "dist": {
  6192. "type": "zip",
  6193. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6194. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6195. "shasum": ""
  6196. },
  6197. "require": {
  6198. "php": ">=7.2"
  6199. },
  6200. "provide": {
  6201. "ext-ctype": "*"
  6202. },
  6203. "suggest": {
  6204. "ext-ctype": "For best performance"
  6205. },
  6206. "type": "library",
  6207. "extra": {
  6208. "thanks": {
  6209. "name": "symfony/polyfill",
  6210. "url": "https://github.com/symfony/polyfill"
  6211. }
  6212. },
  6213. "autoload": {
  6214. "files": [
  6215. "bootstrap.php"
  6216. ],
  6217. "psr-4": {
  6218. "Symfony\\Polyfill\\Ctype\\": ""
  6219. }
  6220. },
  6221. "notification-url": "https://packagist.org/downloads/",
  6222. "license": [
  6223. "MIT"
  6224. ],
  6225. "authors": [
  6226. {
  6227. "name": "Gert de Pagter",
  6228. "email": "BackEndTea@gmail.com"
  6229. },
  6230. {
  6231. "name": "Symfony Community",
  6232. "homepage": "https://symfony.com/contributors"
  6233. }
  6234. ],
  6235. "description": "Symfony polyfill for ctype functions",
  6236. "homepage": "https://symfony.com",
  6237. "keywords": [
  6238. "compatibility",
  6239. "ctype",
  6240. "polyfill",
  6241. "portable"
  6242. ],
  6243. "support": {
  6244. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6245. },
  6246. "funding": [
  6247. {
  6248. "url": "https://symfony.com/sponsor",
  6249. "type": "custom"
  6250. },
  6251. {
  6252. "url": "https://github.com/fabpot",
  6253. "type": "github"
  6254. },
  6255. {
  6256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6257. "type": "tidelift"
  6258. }
  6259. ],
  6260. "time": "2024-09-09T11:45:10+00:00"
  6261. },
  6262. {
  6263. "name": "symfony/polyfill-intl-grapheme",
  6264. "version": "v1.31.0",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6268. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6273. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6274. "shasum": ""
  6275. },
  6276. "require": {
  6277. "php": ">=7.2"
  6278. },
  6279. "suggest": {
  6280. "ext-intl": "For best performance"
  6281. },
  6282. "type": "library",
  6283. "extra": {
  6284. "thanks": {
  6285. "name": "symfony/polyfill",
  6286. "url": "https://github.com/symfony/polyfill"
  6287. }
  6288. },
  6289. "autoload": {
  6290. "files": [
  6291. "bootstrap.php"
  6292. ],
  6293. "psr-4": {
  6294. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Nicolas Grekas",
  6304. "email": "p@tchwork.com"
  6305. },
  6306. {
  6307. "name": "Symfony Community",
  6308. "homepage": "https://symfony.com/contributors"
  6309. }
  6310. ],
  6311. "description": "Symfony polyfill for intl's grapheme_* functions",
  6312. "homepage": "https://symfony.com",
  6313. "keywords": [
  6314. "compatibility",
  6315. "grapheme",
  6316. "intl",
  6317. "polyfill",
  6318. "portable",
  6319. "shim"
  6320. ],
  6321. "support": {
  6322. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6323. },
  6324. "funding": [
  6325. {
  6326. "url": "https://symfony.com/sponsor",
  6327. "type": "custom"
  6328. },
  6329. {
  6330. "url": "https://github.com/fabpot",
  6331. "type": "github"
  6332. },
  6333. {
  6334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6335. "type": "tidelift"
  6336. }
  6337. ],
  6338. "time": "2024-09-09T11:45:10+00:00"
  6339. },
  6340. {
  6341. "name": "symfony/polyfill-intl-normalizer",
  6342. "version": "v1.31.0",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6346. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6351. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6352. "shasum": ""
  6353. },
  6354. "require": {
  6355. "php": ">=7.2"
  6356. },
  6357. "suggest": {
  6358. "ext-intl": "For best performance"
  6359. },
  6360. "type": "library",
  6361. "extra": {
  6362. "thanks": {
  6363. "name": "symfony/polyfill",
  6364. "url": "https://github.com/symfony/polyfill"
  6365. }
  6366. },
  6367. "autoload": {
  6368. "files": [
  6369. "bootstrap.php"
  6370. ],
  6371. "psr-4": {
  6372. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6373. },
  6374. "classmap": [
  6375. "Resources/stubs"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Nicolas Grekas",
  6385. "email": "p@tchwork.com"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6393. "homepage": "https://symfony.com",
  6394. "keywords": [
  6395. "compatibility",
  6396. "intl",
  6397. "normalizer",
  6398. "polyfill",
  6399. "portable",
  6400. "shim"
  6401. ],
  6402. "support": {
  6403. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-09-09T11:45:10+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/polyfill-mbstring",
  6423. "version": "v1.31.0",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6427. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6432. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=7.2"
  6437. },
  6438. "provide": {
  6439. "ext-mbstring": "*"
  6440. },
  6441. "suggest": {
  6442. "ext-mbstring": "For best performance"
  6443. },
  6444. "type": "library",
  6445. "extra": {
  6446. "thanks": {
  6447. "name": "symfony/polyfill",
  6448. "url": "https://github.com/symfony/polyfill"
  6449. }
  6450. },
  6451. "autoload": {
  6452. "files": [
  6453. "bootstrap.php"
  6454. ],
  6455. "psr-4": {
  6456. "Symfony\\Polyfill\\Mbstring\\": ""
  6457. }
  6458. },
  6459. "notification-url": "https://packagist.org/downloads/",
  6460. "license": [
  6461. "MIT"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Nicolas Grekas",
  6466. "email": "p@tchwork.com"
  6467. },
  6468. {
  6469. "name": "Symfony Community",
  6470. "homepage": "https://symfony.com/contributors"
  6471. }
  6472. ],
  6473. "description": "Symfony polyfill for the Mbstring extension",
  6474. "homepage": "https://symfony.com",
  6475. "keywords": [
  6476. "compatibility",
  6477. "mbstring",
  6478. "polyfill",
  6479. "portable",
  6480. "shim"
  6481. ],
  6482. "support": {
  6483. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6484. },
  6485. "funding": [
  6486. {
  6487. "url": "https://symfony.com/sponsor",
  6488. "type": "custom"
  6489. },
  6490. {
  6491. "url": "https://github.com/fabpot",
  6492. "type": "github"
  6493. },
  6494. {
  6495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6496. "type": "tidelift"
  6497. }
  6498. ],
  6499. "time": "2024-09-09T11:45:10+00:00"
  6500. },
  6501. {
  6502. "name": "symfony/polyfill-php80",
  6503. "version": "v1.31.0",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/symfony/polyfill-php80.git",
  6507. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6512. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "php": ">=7.2"
  6517. },
  6518. "type": "library",
  6519. "extra": {
  6520. "thanks": {
  6521. "name": "symfony/polyfill",
  6522. "url": "https://github.com/symfony/polyfill"
  6523. }
  6524. },
  6525. "autoload": {
  6526. "files": [
  6527. "bootstrap.php"
  6528. ],
  6529. "psr-4": {
  6530. "Symfony\\Polyfill\\Php80\\": ""
  6531. },
  6532. "classmap": [
  6533. "Resources/stubs"
  6534. ]
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Ion Bazan",
  6543. "email": "ion.bazan@gmail.com"
  6544. },
  6545. {
  6546. "name": "Nicolas Grekas",
  6547. "email": "p@tchwork.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6555. "homepage": "https://symfony.com",
  6556. "keywords": [
  6557. "compatibility",
  6558. "polyfill",
  6559. "portable",
  6560. "shim"
  6561. ],
  6562. "support": {
  6563. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6564. },
  6565. "funding": [
  6566. {
  6567. "url": "https://symfony.com/sponsor",
  6568. "type": "custom"
  6569. },
  6570. {
  6571. "url": "https://github.com/fabpot",
  6572. "type": "github"
  6573. },
  6574. {
  6575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6576. "type": "tidelift"
  6577. }
  6578. ],
  6579. "time": "2024-09-09T11:45:10+00:00"
  6580. },
  6581. {
  6582. "name": "symfony/service-contracts",
  6583. "version": "v3.5.0",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://github.com/symfony/service-contracts.git",
  6587. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6592. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6593. "shasum": ""
  6594. },
  6595. "require": {
  6596. "php": ">=8.1",
  6597. "psr/container": "^1.1|^2.0",
  6598. "symfony/deprecation-contracts": "^2.5|^3"
  6599. },
  6600. "conflict": {
  6601. "ext-psr": "<1.1|>=2"
  6602. },
  6603. "type": "library",
  6604. "extra": {
  6605. "branch-alias": {
  6606. "dev-main": "3.5-dev"
  6607. },
  6608. "thanks": {
  6609. "name": "symfony/contracts",
  6610. "url": "https://github.com/symfony/contracts"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "psr-4": {
  6615. "Symfony\\Contracts\\Service\\": ""
  6616. },
  6617. "exclude-from-classmap": [
  6618. "/Test/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Nicolas Grekas",
  6628. "email": "p@tchwork.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Generic abstractions related to writing services",
  6636. "homepage": "https://symfony.com",
  6637. "keywords": [
  6638. "abstractions",
  6639. "contracts",
  6640. "decoupling",
  6641. "interfaces",
  6642. "interoperability",
  6643. "standards"
  6644. ],
  6645. "support": {
  6646. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://symfony.com/sponsor",
  6651. "type": "custom"
  6652. },
  6653. {
  6654. "url": "https://github.com/fabpot",
  6655. "type": "github"
  6656. },
  6657. {
  6658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6659. "type": "tidelift"
  6660. }
  6661. ],
  6662. "time": "2024-04-18T09:32:20+00:00"
  6663. },
  6664. {
  6665. "name": "symfony/string",
  6666. "version": "v6.4.13",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/symfony/string.git",
  6670. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6675. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6676. "shasum": ""
  6677. },
  6678. "require": {
  6679. "php": ">=8.1",
  6680. "symfony/polyfill-ctype": "~1.8",
  6681. "symfony/polyfill-intl-grapheme": "~1.0",
  6682. "symfony/polyfill-intl-normalizer": "~1.0",
  6683. "symfony/polyfill-mbstring": "~1.0"
  6684. },
  6685. "conflict": {
  6686. "symfony/translation-contracts": "<2.5"
  6687. },
  6688. "require-dev": {
  6689. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6690. "symfony/http-client": "^5.4|^6.0|^7.0",
  6691. "symfony/intl": "^6.2|^7.0",
  6692. "symfony/translation-contracts": "^2.5|^3.0",
  6693. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6694. },
  6695. "type": "library",
  6696. "autoload": {
  6697. "files": [
  6698. "Resources/functions.php"
  6699. ],
  6700. "psr-4": {
  6701. "Symfony\\Component\\String\\": ""
  6702. },
  6703. "exclude-from-classmap": [
  6704. "/Tests/"
  6705. ]
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Nicolas Grekas",
  6714. "email": "p@tchwork.com"
  6715. },
  6716. {
  6717. "name": "Symfony Community",
  6718. "homepage": "https://symfony.com/contributors"
  6719. }
  6720. ],
  6721. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6722. "homepage": "https://symfony.com",
  6723. "keywords": [
  6724. "grapheme",
  6725. "i18n",
  6726. "string",
  6727. "unicode",
  6728. "utf-8",
  6729. "utf8"
  6730. ],
  6731. "support": {
  6732. "source": "https://github.com/symfony/string/tree/v6.4.13"
  6733. },
  6734. "funding": [
  6735. {
  6736. "url": "https://symfony.com/sponsor",
  6737. "type": "custom"
  6738. },
  6739. {
  6740. "url": "https://github.com/fabpot",
  6741. "type": "github"
  6742. },
  6743. {
  6744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6745. "type": "tidelift"
  6746. }
  6747. ],
  6748. "time": "2024-09-25T14:18:03+00:00"
  6749. },
  6750. {
  6751. "name": "symfony/translation",
  6752. "version": "v6.4.13",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://github.com/symfony/translation.git",
  6756. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6761. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6762. "shasum": ""
  6763. },
  6764. "require": {
  6765. "php": ">=8.1",
  6766. "symfony/deprecation-contracts": "^2.5|^3",
  6767. "symfony/polyfill-mbstring": "~1.0",
  6768. "symfony/translation-contracts": "^2.5|^3.0"
  6769. },
  6770. "conflict": {
  6771. "symfony/config": "<5.4",
  6772. "symfony/console": "<5.4",
  6773. "symfony/dependency-injection": "<5.4",
  6774. "symfony/http-client-contracts": "<2.5",
  6775. "symfony/http-kernel": "<5.4",
  6776. "symfony/service-contracts": "<2.5",
  6777. "symfony/twig-bundle": "<5.4",
  6778. "symfony/yaml": "<5.4"
  6779. },
  6780. "provide": {
  6781. "symfony/translation-implementation": "2.3|3.0"
  6782. },
  6783. "require-dev": {
  6784. "nikic/php-parser": "^4.18|^5.0",
  6785. "psr/log": "^1|^2|^3",
  6786. "symfony/config": "^5.4|^6.0|^7.0",
  6787. "symfony/console": "^5.4|^6.0|^7.0",
  6788. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6789. "symfony/finder": "^5.4|^6.0|^7.0",
  6790. "symfony/http-client-contracts": "^2.5|^3.0",
  6791. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6792. "symfony/intl": "^5.4|^6.0|^7.0",
  6793. "symfony/polyfill-intl-icu": "^1.21",
  6794. "symfony/routing": "^5.4|^6.0|^7.0",
  6795. "symfony/service-contracts": "^2.5|^3",
  6796. "symfony/yaml": "^5.4|^6.0|^7.0"
  6797. },
  6798. "type": "library",
  6799. "autoload": {
  6800. "files": [
  6801. "Resources/functions.php"
  6802. ],
  6803. "psr-4": {
  6804. "Symfony\\Component\\Translation\\": ""
  6805. },
  6806. "exclude-from-classmap": [
  6807. "/Tests/"
  6808. ]
  6809. },
  6810. "notification-url": "https://packagist.org/downloads/",
  6811. "license": [
  6812. "MIT"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "Fabien Potencier",
  6817. "email": "fabien@symfony.com"
  6818. },
  6819. {
  6820. "name": "Symfony Community",
  6821. "homepage": "https://symfony.com/contributors"
  6822. }
  6823. ],
  6824. "description": "Provides tools to internationalize your application",
  6825. "homepage": "https://symfony.com",
  6826. "support": {
  6827. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6828. },
  6829. "funding": [
  6830. {
  6831. "url": "https://symfony.com/sponsor",
  6832. "type": "custom"
  6833. },
  6834. {
  6835. "url": "https://github.com/fabpot",
  6836. "type": "github"
  6837. },
  6838. {
  6839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6840. "type": "tidelift"
  6841. }
  6842. ],
  6843. "time": "2024-09-27T18:14:25+00:00"
  6844. },
  6845. {
  6846. "name": "symfony/translation-contracts",
  6847. "version": "v3.5.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/symfony/translation-contracts.git",
  6851. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6856. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "php": ">=8.1"
  6861. },
  6862. "type": "library",
  6863. "extra": {
  6864. "branch-alias": {
  6865. "dev-main": "3.5-dev"
  6866. },
  6867. "thanks": {
  6868. "name": "symfony/contracts",
  6869. "url": "https://github.com/symfony/contracts"
  6870. }
  6871. },
  6872. "autoload": {
  6873. "psr-4": {
  6874. "Symfony\\Contracts\\Translation\\": ""
  6875. },
  6876. "exclude-from-classmap": [
  6877. "/Test/"
  6878. ]
  6879. },
  6880. "notification-url": "https://packagist.org/downloads/",
  6881. "license": [
  6882. "MIT"
  6883. ],
  6884. "authors": [
  6885. {
  6886. "name": "Nicolas Grekas",
  6887. "email": "p@tchwork.com"
  6888. },
  6889. {
  6890. "name": "Symfony Community",
  6891. "homepage": "https://symfony.com/contributors"
  6892. }
  6893. ],
  6894. "description": "Generic abstractions related to translation",
  6895. "homepage": "https://symfony.com",
  6896. "keywords": [
  6897. "abstractions",
  6898. "contracts",
  6899. "decoupling",
  6900. "interfaces",
  6901. "interoperability",
  6902. "standards"
  6903. ],
  6904. "support": {
  6905. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6906. },
  6907. "funding": [
  6908. {
  6909. "url": "https://symfony.com/sponsor",
  6910. "type": "custom"
  6911. },
  6912. {
  6913. "url": "https://github.com/fabpot",
  6914. "type": "github"
  6915. },
  6916. {
  6917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6918. "type": "tidelift"
  6919. }
  6920. ],
  6921. "time": "2024-04-18T09:32:20+00:00"
  6922. },
  6923. {
  6924. "name": "symfony/var-dumper",
  6925. "version": "v6.4.14",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/symfony/var-dumper.git",
  6929. "reference": "93c09246038178717a9c14b809ea8151ffcf7091"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/93c09246038178717a9c14b809ea8151ffcf7091",
  6934. "reference": "93c09246038178717a9c14b809ea8151ffcf7091",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "php": ">=8.1",
  6939. "symfony/deprecation-contracts": "^2.5|^3",
  6940. "symfony/polyfill-mbstring": "~1.0"
  6941. },
  6942. "conflict": {
  6943. "symfony/console": "<5.4"
  6944. },
  6945. "require-dev": {
  6946. "ext-iconv": "*",
  6947. "symfony/console": "^5.4|^6.0|^7.0",
  6948. "symfony/error-handler": "^6.3|^7.0",
  6949. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6950. "symfony/process": "^5.4|^6.0|^7.0",
  6951. "symfony/uid": "^5.4|^6.0|^7.0",
  6952. "twig/twig": "^2.13|^3.0.4"
  6953. },
  6954. "bin": [
  6955. "Resources/bin/var-dump-server"
  6956. ],
  6957. "type": "library",
  6958. "autoload": {
  6959. "files": [
  6960. "Resources/functions/dump.php"
  6961. ],
  6962. "psr-4": {
  6963. "Symfony\\Component\\VarDumper\\": ""
  6964. },
  6965. "exclude-from-classmap": [
  6966. "/Tests/"
  6967. ]
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Nicolas Grekas",
  6976. "email": "p@tchwork.com"
  6977. },
  6978. {
  6979. "name": "Symfony Community",
  6980. "homepage": "https://symfony.com/contributors"
  6981. }
  6982. ],
  6983. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6984. "homepage": "https://symfony.com",
  6985. "keywords": [
  6986. "debug",
  6987. "dump"
  6988. ],
  6989. "support": {
  6990. "source": "https://github.com/symfony/var-dumper/tree/v6.4.14"
  6991. },
  6992. "funding": [
  6993. {
  6994. "url": "https://symfony.com/sponsor",
  6995. "type": "custom"
  6996. },
  6997. {
  6998. "url": "https://github.com/fabpot",
  6999. "type": "github"
  7000. },
  7001. {
  7002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7003. "type": "tidelift"
  7004. }
  7005. ],
  7006. "time": "2024-11-05T15:34:40+00:00"
  7007. },
  7008. {
  7009. "name": "symfony/var-exporter",
  7010. "version": "v6.4.13",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/symfony/var-exporter.git",
  7014. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7019. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "php": ">=8.1",
  7024. "symfony/deprecation-contracts": "^2.5|^3"
  7025. },
  7026. "require-dev": {
  7027. "symfony/property-access": "^6.4|^7.0",
  7028. "symfony/serializer": "^6.4|^7.0",
  7029. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Symfony\\Component\\VarExporter\\": ""
  7035. },
  7036. "exclude-from-classmap": [
  7037. "/Tests/"
  7038. ]
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "MIT"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Nicolas Grekas",
  7047. "email": "p@tchwork.com"
  7048. },
  7049. {
  7050. "name": "Symfony Community",
  7051. "homepage": "https://symfony.com/contributors"
  7052. }
  7053. ],
  7054. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7055. "homepage": "https://symfony.com",
  7056. "keywords": [
  7057. "clone",
  7058. "construct",
  7059. "export",
  7060. "hydrate",
  7061. "instantiate",
  7062. "lazy-loading",
  7063. "proxy",
  7064. "serialize"
  7065. ],
  7066. "support": {
  7067. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7068. },
  7069. "funding": [
  7070. {
  7071. "url": "https://symfony.com/sponsor",
  7072. "type": "custom"
  7073. },
  7074. {
  7075. "url": "https://github.com/fabpot",
  7076. "type": "github"
  7077. },
  7078. {
  7079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7080. "type": "tidelift"
  7081. }
  7082. ],
  7083. "time": "2024-09-25T14:18:03+00:00"
  7084. },
  7085. {
  7086. "name": "vlucas/phpdotenv",
  7087. "version": "v5.6.1",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://github.com/vlucas/phpdotenv.git",
  7091. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7096. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7097. "shasum": ""
  7098. },
  7099. "require": {
  7100. "ext-pcre": "*",
  7101. "graham-campbell/result-type": "^1.1.3",
  7102. "php": "^7.2.5 || ^8.0",
  7103. "phpoption/phpoption": "^1.9.3",
  7104. "symfony/polyfill-ctype": "^1.24",
  7105. "symfony/polyfill-mbstring": "^1.24",
  7106. "symfony/polyfill-php80": "^1.24"
  7107. },
  7108. "require-dev": {
  7109. "bamarni/composer-bin-plugin": "^1.8.2",
  7110. "ext-filter": "*",
  7111. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7112. },
  7113. "suggest": {
  7114. "ext-filter": "Required to use the boolean validator."
  7115. },
  7116. "type": "library",
  7117. "extra": {
  7118. "bamarni-bin": {
  7119. "bin-links": true,
  7120. "forward-command": false
  7121. },
  7122. "branch-alias": {
  7123. "dev-master": "5.6-dev"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "psr-4": {
  7128. "Dotenv\\": "src/"
  7129. }
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "license": [
  7133. "BSD-3-Clause"
  7134. ],
  7135. "authors": [
  7136. {
  7137. "name": "Graham Campbell",
  7138. "email": "hello@gjcampbell.co.uk",
  7139. "homepage": "https://github.com/GrahamCampbell"
  7140. },
  7141. {
  7142. "name": "Vance Lucas",
  7143. "email": "vance@vancelucas.com",
  7144. "homepage": "https://github.com/vlucas"
  7145. }
  7146. ],
  7147. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7148. "keywords": [
  7149. "dotenv",
  7150. "env",
  7151. "environment"
  7152. ],
  7153. "support": {
  7154. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7155. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7156. },
  7157. "funding": [
  7158. {
  7159. "url": "https://github.com/GrahamCampbell",
  7160. "type": "github"
  7161. },
  7162. {
  7163. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7164. "type": "tidelift"
  7165. }
  7166. ],
  7167. "time": "2024-07-20T21:52:34+00:00"
  7168. }
  7169. ],
  7170. "packages-dev": [
  7171. {
  7172. "name": "clue/ndjson-react",
  7173. "version": "v1.3.0",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://github.com/clue/reactphp-ndjson.git",
  7177. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7182. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7183. "shasum": ""
  7184. },
  7185. "require": {
  7186. "php": ">=5.3",
  7187. "react/stream": "^1.2"
  7188. },
  7189. "require-dev": {
  7190. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7191. "react/event-loop": "^1.2"
  7192. },
  7193. "type": "library",
  7194. "autoload": {
  7195. "psr-4": {
  7196. "Clue\\React\\NDJson\\": "src/"
  7197. }
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "MIT"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Christian Lück",
  7206. "email": "christian@clue.engineering"
  7207. }
  7208. ],
  7209. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7210. "homepage": "https://github.com/clue/reactphp-ndjson",
  7211. "keywords": [
  7212. "NDJSON",
  7213. "json",
  7214. "jsonlines",
  7215. "newline",
  7216. "reactphp",
  7217. "streaming"
  7218. ],
  7219. "support": {
  7220. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7221. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7222. },
  7223. "funding": [
  7224. {
  7225. "url": "https://clue.engineering/support",
  7226. "type": "custom"
  7227. },
  7228. {
  7229. "url": "https://github.com/clue",
  7230. "type": "github"
  7231. }
  7232. ],
  7233. "time": "2022-12-23T10:58:28+00:00"
  7234. },
  7235. {
  7236. "name": "composer/pcre",
  7237. "version": "3.3.1",
  7238. "source": {
  7239. "type": "git",
  7240. "url": "https://github.com/composer/pcre.git",
  7241. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  7242. },
  7243. "dist": {
  7244. "type": "zip",
  7245. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7246. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7247. "shasum": ""
  7248. },
  7249. "require": {
  7250. "php": "^7.4 || ^8.0"
  7251. },
  7252. "conflict": {
  7253. "phpstan/phpstan": "<1.11.10"
  7254. },
  7255. "require-dev": {
  7256. "phpstan/phpstan": "^1.11.10",
  7257. "phpstan/phpstan-strict-rules": "^1.1",
  7258. "phpunit/phpunit": "^8 || ^9"
  7259. },
  7260. "type": "library",
  7261. "extra": {
  7262. "branch-alias": {
  7263. "dev-main": "3.x-dev"
  7264. },
  7265. "phpstan": {
  7266. "includes": [
  7267. "extension.neon"
  7268. ]
  7269. }
  7270. },
  7271. "autoload": {
  7272. "psr-4": {
  7273. "Composer\\Pcre\\": "src"
  7274. }
  7275. },
  7276. "notification-url": "https://packagist.org/downloads/",
  7277. "license": [
  7278. "MIT"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "Jordi Boggiano",
  7283. "email": "j.boggiano@seld.be",
  7284. "homepage": "http://seld.be"
  7285. }
  7286. ],
  7287. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7288. "keywords": [
  7289. "PCRE",
  7290. "preg",
  7291. "regex",
  7292. "regular expression"
  7293. ],
  7294. "support": {
  7295. "issues": "https://github.com/composer/pcre/issues",
  7296. "source": "https://github.com/composer/pcre/tree/3.3.1"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://packagist.com",
  7301. "type": "custom"
  7302. },
  7303. {
  7304. "url": "https://github.com/composer",
  7305. "type": "github"
  7306. },
  7307. {
  7308. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7309. "type": "tidelift"
  7310. }
  7311. ],
  7312. "time": "2024-08-27T18:44:43+00:00"
  7313. },
  7314. {
  7315. "name": "composer/semver",
  7316. "version": "3.4.3",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/composer/semver.git",
  7320. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7325. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "php": "^5.3.2 || ^7.0 || ^8.0"
  7330. },
  7331. "require-dev": {
  7332. "phpstan/phpstan": "^1.11",
  7333. "symfony/phpunit-bridge": "^3 || ^7"
  7334. },
  7335. "type": "library",
  7336. "extra": {
  7337. "branch-alias": {
  7338. "dev-main": "3.x-dev"
  7339. }
  7340. },
  7341. "autoload": {
  7342. "psr-4": {
  7343. "Composer\\Semver\\": "src"
  7344. }
  7345. },
  7346. "notification-url": "https://packagist.org/downloads/",
  7347. "license": [
  7348. "MIT"
  7349. ],
  7350. "authors": [
  7351. {
  7352. "name": "Nils Adermann",
  7353. "email": "naderman@naderman.de",
  7354. "homepage": "http://www.naderman.de"
  7355. },
  7356. {
  7357. "name": "Jordi Boggiano",
  7358. "email": "j.boggiano@seld.be",
  7359. "homepage": "http://seld.be"
  7360. },
  7361. {
  7362. "name": "Rob Bast",
  7363. "email": "rob.bast@gmail.com",
  7364. "homepage": "http://robbast.nl"
  7365. }
  7366. ],
  7367. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7368. "keywords": [
  7369. "semantic",
  7370. "semver",
  7371. "validation",
  7372. "versioning"
  7373. ],
  7374. "support": {
  7375. "irc": "ircs://irc.libera.chat:6697/composer",
  7376. "issues": "https://github.com/composer/semver/issues",
  7377. "source": "https://github.com/composer/semver/tree/3.4.3"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://packagist.com",
  7382. "type": "custom"
  7383. },
  7384. {
  7385. "url": "https://github.com/composer",
  7386. "type": "github"
  7387. },
  7388. {
  7389. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7390. "type": "tidelift"
  7391. }
  7392. ],
  7393. "time": "2024-09-19T14:15:21+00:00"
  7394. },
  7395. {
  7396. "name": "composer/xdebug-handler",
  7397. "version": "3.0.5",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/composer/xdebug-handler.git",
  7401. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7406. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "composer/pcre": "^1 || ^2 || ^3",
  7411. "php": "^7.2.5 || ^8.0",
  7412. "psr/log": "^1 || ^2 || ^3"
  7413. },
  7414. "require-dev": {
  7415. "phpstan/phpstan": "^1.0",
  7416. "phpstan/phpstan-strict-rules": "^1.1",
  7417. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7418. },
  7419. "type": "library",
  7420. "autoload": {
  7421. "psr-4": {
  7422. "Composer\\XdebugHandler\\": "src"
  7423. }
  7424. },
  7425. "notification-url": "https://packagist.org/downloads/",
  7426. "license": [
  7427. "MIT"
  7428. ],
  7429. "authors": [
  7430. {
  7431. "name": "John Stevenson",
  7432. "email": "john-stevenson@blueyonder.co.uk"
  7433. }
  7434. ],
  7435. "description": "Restarts a process without Xdebug.",
  7436. "keywords": [
  7437. "Xdebug",
  7438. "performance"
  7439. ],
  7440. "support": {
  7441. "irc": "ircs://irc.libera.chat:6697/composer",
  7442. "issues": "https://github.com/composer/xdebug-handler/issues",
  7443. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7444. },
  7445. "funding": [
  7446. {
  7447. "url": "https://packagist.com",
  7448. "type": "custom"
  7449. },
  7450. {
  7451. "url": "https://github.com/composer",
  7452. "type": "github"
  7453. },
  7454. {
  7455. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7456. "type": "tidelift"
  7457. }
  7458. ],
  7459. "time": "2024-05-06T16:37:16+00:00"
  7460. },
  7461. {
  7462. "name": "evenement/evenement",
  7463. "version": "v3.0.2",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://github.com/igorw/evenement.git",
  7467. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7472. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7473. "shasum": ""
  7474. },
  7475. "require": {
  7476. "php": ">=7.0"
  7477. },
  7478. "require-dev": {
  7479. "phpunit/phpunit": "^9 || ^6"
  7480. },
  7481. "type": "library",
  7482. "autoload": {
  7483. "psr-4": {
  7484. "Evenement\\": "src/"
  7485. }
  7486. },
  7487. "notification-url": "https://packagist.org/downloads/",
  7488. "license": [
  7489. "MIT"
  7490. ],
  7491. "authors": [
  7492. {
  7493. "name": "Igor Wiedler",
  7494. "email": "igor@wiedler.ch"
  7495. }
  7496. ],
  7497. "description": "Événement is a very simple event dispatching library for PHP",
  7498. "keywords": [
  7499. "event-dispatcher",
  7500. "event-emitter"
  7501. ],
  7502. "support": {
  7503. "issues": "https://github.com/igorw/evenement/issues",
  7504. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7505. },
  7506. "time": "2023-08-08T05:53:35+00:00"
  7507. },
  7508. {
  7509. "name": "fidry/cpu-core-counter",
  7510. "version": "1.2.0",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7514. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7519. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "php": "^7.2 || ^8.0"
  7524. },
  7525. "require-dev": {
  7526. "fidry/makefile": "^0.2.0",
  7527. "fidry/php-cs-fixer-config": "^1.1.2",
  7528. "phpstan/extension-installer": "^1.2.0",
  7529. "phpstan/phpstan": "^1.9.2",
  7530. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7531. "phpstan/phpstan-phpunit": "^1.2.2",
  7532. "phpstan/phpstan-strict-rules": "^1.4.4",
  7533. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7534. "webmozarts/strict-phpunit": "^7.5"
  7535. },
  7536. "type": "library",
  7537. "autoload": {
  7538. "psr-4": {
  7539. "Fidry\\CpuCoreCounter\\": "src/"
  7540. }
  7541. },
  7542. "notification-url": "https://packagist.org/downloads/",
  7543. "license": [
  7544. "MIT"
  7545. ],
  7546. "authors": [
  7547. {
  7548. "name": "Théo FIDRY",
  7549. "email": "theo.fidry@gmail.com"
  7550. }
  7551. ],
  7552. "description": "Tiny utility to get the number of CPU cores.",
  7553. "keywords": [
  7554. "CPU",
  7555. "core"
  7556. ],
  7557. "support": {
  7558. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7559. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7560. },
  7561. "funding": [
  7562. {
  7563. "url": "https://github.com/theofidry",
  7564. "type": "github"
  7565. }
  7566. ],
  7567. "time": "2024-08-06T10:04:20+00:00"
  7568. },
  7569. {
  7570. "name": "friendsofphp/php-cs-fixer",
  7571. "version": "v3.64.0",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7575. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  7580. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  7581. "shasum": ""
  7582. },
  7583. "require": {
  7584. "clue/ndjson-react": "^1.0",
  7585. "composer/semver": "^3.4",
  7586. "composer/xdebug-handler": "^3.0.3",
  7587. "ext-filter": "*",
  7588. "ext-json": "*",
  7589. "ext-tokenizer": "*",
  7590. "fidry/cpu-core-counter": "^1.0",
  7591. "php": "^7.4 || ^8.0",
  7592. "react/child-process": "^0.6.5",
  7593. "react/event-loop": "^1.0",
  7594. "react/promise": "^2.0 || ^3.0",
  7595. "react/socket": "^1.0",
  7596. "react/stream": "^1.0",
  7597. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7598. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7599. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7600. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7601. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7602. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7603. "symfony/polyfill-mbstring": "^1.28",
  7604. "symfony/polyfill-php80": "^1.28",
  7605. "symfony/polyfill-php81": "^1.28",
  7606. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7607. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7608. },
  7609. "require-dev": {
  7610. "facile-it/paraunit": "^1.3 || ^2.3",
  7611. "infection/infection": "^0.29.5",
  7612. "justinrainbow/json-schema": "^5.2",
  7613. "keradus/cli-executor": "^2.1",
  7614. "mikey179/vfsstream": "^1.6.11",
  7615. "php-coveralls/php-coveralls": "^2.7",
  7616. "php-cs-fixer/accessible-object": "^1.1",
  7617. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7618. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7619. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  7620. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7621. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7622. },
  7623. "suggest": {
  7624. "ext-dom": "For handling output formats in XML",
  7625. "ext-mbstring": "For handling non-UTF8 characters."
  7626. },
  7627. "bin": [
  7628. "php-cs-fixer"
  7629. ],
  7630. "type": "application",
  7631. "autoload": {
  7632. "psr-4": {
  7633. "PhpCsFixer\\": "src/"
  7634. },
  7635. "exclude-from-classmap": [
  7636. "src/Fixer/Internal/*"
  7637. ]
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "authors": [
  7644. {
  7645. "name": "Fabien Potencier",
  7646. "email": "fabien@symfony.com"
  7647. },
  7648. {
  7649. "name": "Dariusz Rumiński",
  7650. "email": "dariusz.ruminski@gmail.com"
  7651. }
  7652. ],
  7653. "description": "A tool to automatically fix PHP code style",
  7654. "keywords": [
  7655. "Static code analysis",
  7656. "fixer",
  7657. "standards",
  7658. "static analysis"
  7659. ],
  7660. "support": {
  7661. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7662. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://github.com/keradus",
  7667. "type": "github"
  7668. }
  7669. ],
  7670. "time": "2024-08-30T23:09:38+00:00"
  7671. },
  7672. {
  7673. "name": "hamcrest/hamcrest-php",
  7674. "version": "v2.0.1",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7678. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7683. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "php": "^5.3|^7.0|^8.0"
  7688. },
  7689. "replace": {
  7690. "cordoval/hamcrest-php": "*",
  7691. "davedevelopment/hamcrest-php": "*",
  7692. "kodova/hamcrest-php": "*"
  7693. },
  7694. "require-dev": {
  7695. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7696. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7697. },
  7698. "type": "library",
  7699. "extra": {
  7700. "branch-alias": {
  7701. "dev-master": "2.1-dev"
  7702. }
  7703. },
  7704. "autoload": {
  7705. "classmap": [
  7706. "hamcrest"
  7707. ]
  7708. },
  7709. "notification-url": "https://packagist.org/downloads/",
  7710. "license": [
  7711. "BSD-3-Clause"
  7712. ],
  7713. "description": "This is the PHP port of Hamcrest Matchers",
  7714. "keywords": [
  7715. "test"
  7716. ],
  7717. "support": {
  7718. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7719. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7720. },
  7721. "time": "2020-07-09T08:09:16+00:00"
  7722. },
  7723. {
  7724. "name": "hyperf/devtool",
  7725. "version": "v3.1.42",
  7726. "source": {
  7727. "type": "git",
  7728. "url": "https://github.com/hyperf/devtool.git",
  7729. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7730. },
  7731. "dist": {
  7732. "type": "zip",
  7733. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7734. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7735. "shasum": ""
  7736. },
  7737. "require": {
  7738. "hyperf/code-parser": "~3.1.0",
  7739. "hyperf/command": "~3.1.0",
  7740. "hyperf/contract": "~3.1.0",
  7741. "hyperf/di": "~3.1.0",
  7742. "hyperf/support": "~3.1.0",
  7743. "hyperf/utils": "~3.1.0",
  7744. "php": ">=8.1"
  7745. },
  7746. "type": "library",
  7747. "extra": {
  7748. "branch-alias": {
  7749. "dev-master": "3.1-dev"
  7750. },
  7751. "hyperf": {
  7752. "config": "Hyperf\\Devtool\\ConfigProvider"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "psr-4": {
  7757. "Hyperf\\Devtool\\": "src/"
  7758. }
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "MIT"
  7763. ],
  7764. "description": "A Devtool for Hyperf.",
  7765. "homepage": "https://hyperf.io",
  7766. "keywords": [
  7767. "dev",
  7768. "devtool",
  7769. "hyperf",
  7770. "php",
  7771. "swoole"
  7772. ],
  7773. "support": {
  7774. "docs": "https://hyperf.wiki",
  7775. "issues": "https://github.com/hyperf/hyperf/issues",
  7776. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7777. "source": "https://github.com/hyperf/hyperf"
  7778. },
  7779. "funding": [
  7780. {
  7781. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7782. "type": "custom"
  7783. },
  7784. {
  7785. "url": "https://opencollective.com/hyperf",
  7786. "type": "open_collective"
  7787. }
  7788. ],
  7789. "time": "2024-09-25T02:54:12+00:00"
  7790. },
  7791. {
  7792. "name": "hyperf/testing",
  7793. "version": "v3.1.44",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/hyperf/testing.git",
  7797. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7802. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7803. "shasum": ""
  7804. },
  7805. "require": {
  7806. "hyperf/codec": "~3.1.0",
  7807. "hyperf/collection": "~3.1.0",
  7808. "hyperf/contract": "~3.1.0",
  7809. "hyperf/coroutine": "~3.1.0",
  7810. "hyperf/http-message": "~3.1.0",
  7811. "hyperf/http-server": "~3.1.0",
  7812. "hyperf/support": "~3.1.0",
  7813. "hyperf/utils": "~3.1.0",
  7814. "php": ">=8.1",
  7815. "phpunit/phpunit": "^10.0",
  7816. "psr/container": "^1.0 || ^2.0",
  7817. "symfony/http-foundation": "^5.4 || ^6.0"
  7818. },
  7819. "suggest": {
  7820. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7821. },
  7822. "bin": [
  7823. "co-phpunit"
  7824. ],
  7825. "type": "library",
  7826. "extra": {
  7827. "branch-alias": {
  7828. "dev-master": "3.1-dev"
  7829. }
  7830. },
  7831. "autoload": {
  7832. "psr-4": {
  7833. "Hyperf\\Testing\\": "src/"
  7834. }
  7835. },
  7836. "notification-url": "https://packagist.org/downloads/",
  7837. "license": [
  7838. "MIT"
  7839. ],
  7840. "description": "Testing for hyperf",
  7841. "keywords": [
  7842. "dev",
  7843. "php",
  7844. "swoole",
  7845. "testing"
  7846. ],
  7847. "support": {
  7848. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  7849. },
  7850. "funding": [
  7851. {
  7852. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7853. "type": "custom"
  7854. },
  7855. {
  7856. "url": "https://opencollective.com/hyperf",
  7857. "type": "open_collective"
  7858. }
  7859. ],
  7860. "time": "2024-10-23T10:24:12+00:00"
  7861. },
  7862. {
  7863. "name": "hyperf/watcher",
  7864. "version": "v3.1.43",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/hyperf/watcher.git",
  7868. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7873. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "ext-posix": "*",
  7878. "hyperf/codec": "~3.1.0",
  7879. "hyperf/command": "~3.1.0",
  7880. "hyperf/di": "~3.1.0",
  7881. "hyperf/framework": "~3.1.0",
  7882. "hyperf/support": "~3.1.0",
  7883. "php": ">=8.1"
  7884. },
  7885. "type": "library",
  7886. "extra": {
  7887. "branch-alias": {
  7888. "dev-master": "3.1-dev"
  7889. },
  7890. "hyperf": {
  7891. "config": "Hyperf\\Watcher\\ConfigProvider"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "files": [
  7896. "src/Functions.php"
  7897. ],
  7898. "psr-4": {
  7899. "Hyperf\\Watcher\\": "src/"
  7900. }
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "description": "Hot reload watcher for Hyperf",
  7907. "keywords": [
  7908. "dev",
  7909. "hyperf",
  7910. "php"
  7911. ],
  7912. "support": {
  7913. "issues": "https://github.com/hyperf/watcher/issues",
  7914. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  7915. },
  7916. "funding": [
  7917. {
  7918. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7919. "type": "custom"
  7920. },
  7921. {
  7922. "url": "https://opencollective.com/hyperf",
  7923. "type": "open_collective"
  7924. }
  7925. ],
  7926. "time": "2024-10-06T12:33:12+00:00"
  7927. },
  7928. {
  7929. "name": "mockery/mockery",
  7930. "version": "1.6.12",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/mockery/mockery.git",
  7934. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7939. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "hamcrest/hamcrest-php": "^2.0.1",
  7944. "lib-pcre": ">=7.0",
  7945. "php": ">=7.3"
  7946. },
  7947. "conflict": {
  7948. "phpunit/phpunit": "<8.0"
  7949. },
  7950. "require-dev": {
  7951. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7952. "symplify/easy-coding-standard": "^12.1.14"
  7953. },
  7954. "type": "library",
  7955. "autoload": {
  7956. "files": [
  7957. "library/helpers.php",
  7958. "library/Mockery.php"
  7959. ],
  7960. "psr-4": {
  7961. "Mockery\\": "library/Mockery"
  7962. }
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "BSD-3-Clause"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Pádraic Brady",
  7971. "email": "padraic.brady@gmail.com",
  7972. "homepage": "https://github.com/padraic",
  7973. "role": "Author"
  7974. },
  7975. {
  7976. "name": "Dave Marshall",
  7977. "email": "dave.marshall@atstsolutions.co.uk",
  7978. "homepage": "https://davedevelopment.co.uk",
  7979. "role": "Developer"
  7980. },
  7981. {
  7982. "name": "Nathanael Esayeas",
  7983. "email": "nathanael.esayeas@protonmail.com",
  7984. "homepage": "https://github.com/ghostwriter",
  7985. "role": "Lead Developer"
  7986. }
  7987. ],
  7988. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7989. "homepage": "https://github.com/mockery/mockery",
  7990. "keywords": [
  7991. "BDD",
  7992. "TDD",
  7993. "library",
  7994. "mock",
  7995. "mock objects",
  7996. "mockery",
  7997. "stub",
  7998. "test",
  7999. "test double",
  8000. "testing"
  8001. ],
  8002. "support": {
  8003. "docs": "https://docs.mockery.io/",
  8004. "issues": "https://github.com/mockery/mockery/issues",
  8005. "rss": "https://github.com/mockery/mockery/releases.atom",
  8006. "security": "https://github.com/mockery/mockery/security/advisories",
  8007. "source": "https://github.com/mockery/mockery"
  8008. },
  8009. "time": "2024-05-16T03:13:13+00:00"
  8010. },
  8011. {
  8012. "name": "myclabs/deep-copy",
  8013. "version": "1.12.1",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://github.com/myclabs/DeepCopy.git",
  8017. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8022. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8023. "shasum": ""
  8024. },
  8025. "require": {
  8026. "php": "^7.1 || ^8.0"
  8027. },
  8028. "conflict": {
  8029. "doctrine/collections": "<1.6.8",
  8030. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8031. },
  8032. "require-dev": {
  8033. "doctrine/collections": "^1.6.8",
  8034. "doctrine/common": "^2.13.3 || ^3.2.2",
  8035. "phpspec/prophecy": "^1.10",
  8036. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8037. },
  8038. "type": "library",
  8039. "autoload": {
  8040. "files": [
  8041. "src/DeepCopy/deep_copy.php"
  8042. ],
  8043. "psr-4": {
  8044. "DeepCopy\\": "src/DeepCopy/"
  8045. }
  8046. },
  8047. "notification-url": "https://packagist.org/downloads/",
  8048. "license": [
  8049. "MIT"
  8050. ],
  8051. "description": "Create deep copies (clones) of your objects",
  8052. "keywords": [
  8053. "clone",
  8054. "copy",
  8055. "duplicate",
  8056. "object",
  8057. "object graph"
  8058. ],
  8059. "support": {
  8060. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8061. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8062. },
  8063. "funding": [
  8064. {
  8065. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8066. "type": "tidelift"
  8067. }
  8068. ],
  8069. "time": "2024-11-08T17:47:46+00:00"
  8070. },
  8071. {
  8072. "name": "phar-io/manifest",
  8073. "version": "2.0.4",
  8074. "source": {
  8075. "type": "git",
  8076. "url": "https://github.com/phar-io/manifest.git",
  8077. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8078. },
  8079. "dist": {
  8080. "type": "zip",
  8081. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8082. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8083. "shasum": ""
  8084. },
  8085. "require": {
  8086. "ext-dom": "*",
  8087. "ext-libxml": "*",
  8088. "ext-phar": "*",
  8089. "ext-xmlwriter": "*",
  8090. "phar-io/version": "^3.0.1",
  8091. "php": "^7.2 || ^8.0"
  8092. },
  8093. "type": "library",
  8094. "extra": {
  8095. "branch-alias": {
  8096. "dev-master": "2.0.x-dev"
  8097. }
  8098. },
  8099. "autoload": {
  8100. "classmap": [
  8101. "src/"
  8102. ]
  8103. },
  8104. "notification-url": "https://packagist.org/downloads/",
  8105. "license": [
  8106. "BSD-3-Clause"
  8107. ],
  8108. "authors": [
  8109. {
  8110. "name": "Arne Blankerts",
  8111. "email": "arne@blankerts.de",
  8112. "role": "Developer"
  8113. },
  8114. {
  8115. "name": "Sebastian Heuer",
  8116. "email": "sebastian@phpeople.de",
  8117. "role": "Developer"
  8118. },
  8119. {
  8120. "name": "Sebastian Bergmann",
  8121. "email": "sebastian@phpunit.de",
  8122. "role": "Developer"
  8123. }
  8124. ],
  8125. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8126. "support": {
  8127. "issues": "https://github.com/phar-io/manifest/issues",
  8128. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8129. },
  8130. "funding": [
  8131. {
  8132. "url": "https://github.com/theseer",
  8133. "type": "github"
  8134. }
  8135. ],
  8136. "time": "2024-03-03T12:33:53+00:00"
  8137. },
  8138. {
  8139. "name": "phar-io/version",
  8140. "version": "3.2.1",
  8141. "source": {
  8142. "type": "git",
  8143. "url": "https://github.com/phar-io/version.git",
  8144. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8145. },
  8146. "dist": {
  8147. "type": "zip",
  8148. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8149. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8150. "shasum": ""
  8151. },
  8152. "require": {
  8153. "php": "^7.2 || ^8.0"
  8154. },
  8155. "type": "library",
  8156. "autoload": {
  8157. "classmap": [
  8158. "src/"
  8159. ]
  8160. },
  8161. "notification-url": "https://packagist.org/downloads/",
  8162. "license": [
  8163. "BSD-3-Clause"
  8164. ],
  8165. "authors": [
  8166. {
  8167. "name": "Arne Blankerts",
  8168. "email": "arne@blankerts.de",
  8169. "role": "Developer"
  8170. },
  8171. {
  8172. "name": "Sebastian Heuer",
  8173. "email": "sebastian@phpeople.de",
  8174. "role": "Developer"
  8175. },
  8176. {
  8177. "name": "Sebastian Bergmann",
  8178. "email": "sebastian@phpunit.de",
  8179. "role": "Developer"
  8180. }
  8181. ],
  8182. "description": "Library for handling version information and constraints",
  8183. "support": {
  8184. "issues": "https://github.com/phar-io/version/issues",
  8185. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8186. },
  8187. "time": "2022-02-21T01:04:05+00:00"
  8188. },
  8189. {
  8190. "name": "phpstan/phpstan",
  8191. "version": "1.12.9",
  8192. "source": {
  8193. "type": "git",
  8194. "url": "https://github.com/phpstan/phpstan.git",
  8195. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  8196. },
  8197. "dist": {
  8198. "type": "zip",
  8199. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  8200. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  8201. "shasum": ""
  8202. },
  8203. "require": {
  8204. "php": "^7.2|^8.0"
  8205. },
  8206. "conflict": {
  8207. "phpstan/phpstan-shim": "*"
  8208. },
  8209. "bin": [
  8210. "phpstan",
  8211. "phpstan.phar"
  8212. ],
  8213. "type": "library",
  8214. "autoload": {
  8215. "files": [
  8216. "bootstrap.php"
  8217. ]
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "MIT"
  8222. ],
  8223. "description": "PHPStan - PHP Static Analysis Tool",
  8224. "keywords": [
  8225. "dev",
  8226. "static analysis"
  8227. ],
  8228. "support": {
  8229. "docs": "https://phpstan.org/user-guide/getting-started",
  8230. "forum": "https://github.com/phpstan/phpstan/discussions",
  8231. "issues": "https://github.com/phpstan/phpstan/issues",
  8232. "security": "https://github.com/phpstan/phpstan/security/policy",
  8233. "source": "https://github.com/phpstan/phpstan-src"
  8234. },
  8235. "funding": [
  8236. {
  8237. "url": "https://github.com/ondrejmirtes",
  8238. "type": "github"
  8239. },
  8240. {
  8241. "url": "https://github.com/phpstan",
  8242. "type": "github"
  8243. }
  8244. ],
  8245. "time": "2024-11-10T17:10:04+00:00"
  8246. },
  8247. {
  8248. "name": "phpunit/php-code-coverage",
  8249. "version": "10.1.16",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8253. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8258. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8259. "shasum": ""
  8260. },
  8261. "require": {
  8262. "ext-dom": "*",
  8263. "ext-libxml": "*",
  8264. "ext-xmlwriter": "*",
  8265. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8266. "php": ">=8.1",
  8267. "phpunit/php-file-iterator": "^4.1.0",
  8268. "phpunit/php-text-template": "^3.0.1",
  8269. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8270. "sebastian/complexity": "^3.2.0",
  8271. "sebastian/environment": "^6.1.0",
  8272. "sebastian/lines-of-code": "^2.0.2",
  8273. "sebastian/version": "^4.0.1",
  8274. "theseer/tokenizer": "^1.2.3"
  8275. },
  8276. "require-dev": {
  8277. "phpunit/phpunit": "^10.1"
  8278. },
  8279. "suggest": {
  8280. "ext-pcov": "PHP extension that provides line coverage",
  8281. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8282. },
  8283. "type": "library",
  8284. "extra": {
  8285. "branch-alias": {
  8286. "dev-main": "10.1.x-dev"
  8287. }
  8288. },
  8289. "autoload": {
  8290. "classmap": [
  8291. "src/"
  8292. ]
  8293. },
  8294. "notification-url": "https://packagist.org/downloads/",
  8295. "license": [
  8296. "BSD-3-Clause"
  8297. ],
  8298. "authors": [
  8299. {
  8300. "name": "Sebastian Bergmann",
  8301. "email": "sebastian@phpunit.de",
  8302. "role": "lead"
  8303. }
  8304. ],
  8305. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8306. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8307. "keywords": [
  8308. "coverage",
  8309. "testing",
  8310. "xunit"
  8311. ],
  8312. "support": {
  8313. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8314. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8315. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://github.com/sebastianbergmann",
  8320. "type": "github"
  8321. }
  8322. ],
  8323. "time": "2024-08-22T04:31:57+00:00"
  8324. },
  8325. {
  8326. "name": "phpunit/php-file-iterator",
  8327. "version": "4.1.0",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8331. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8336. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=8.1"
  8341. },
  8342. "require-dev": {
  8343. "phpunit/phpunit": "^10.0"
  8344. },
  8345. "type": "library",
  8346. "extra": {
  8347. "branch-alias": {
  8348. "dev-main": "4.0-dev"
  8349. }
  8350. },
  8351. "autoload": {
  8352. "classmap": [
  8353. "src/"
  8354. ]
  8355. },
  8356. "notification-url": "https://packagist.org/downloads/",
  8357. "license": [
  8358. "BSD-3-Clause"
  8359. ],
  8360. "authors": [
  8361. {
  8362. "name": "Sebastian Bergmann",
  8363. "email": "sebastian@phpunit.de",
  8364. "role": "lead"
  8365. }
  8366. ],
  8367. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8368. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8369. "keywords": [
  8370. "filesystem",
  8371. "iterator"
  8372. ],
  8373. "support": {
  8374. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8375. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8376. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8377. },
  8378. "funding": [
  8379. {
  8380. "url": "https://github.com/sebastianbergmann",
  8381. "type": "github"
  8382. }
  8383. ],
  8384. "time": "2023-08-31T06:24:48+00:00"
  8385. },
  8386. {
  8387. "name": "phpunit/php-invoker",
  8388. "version": "4.0.0",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8392. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8397. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "php": ">=8.1"
  8402. },
  8403. "require-dev": {
  8404. "ext-pcntl": "*",
  8405. "phpunit/phpunit": "^10.0"
  8406. },
  8407. "suggest": {
  8408. "ext-pcntl": "*"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-main": "4.0-dev"
  8414. }
  8415. },
  8416. "autoload": {
  8417. "classmap": [
  8418. "src/"
  8419. ]
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "BSD-3-Clause"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Sebastian Bergmann",
  8428. "email": "sebastian@phpunit.de",
  8429. "role": "lead"
  8430. }
  8431. ],
  8432. "description": "Invoke callables with a timeout",
  8433. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8434. "keywords": [
  8435. "process"
  8436. ],
  8437. "support": {
  8438. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8439. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8440. },
  8441. "funding": [
  8442. {
  8443. "url": "https://github.com/sebastianbergmann",
  8444. "type": "github"
  8445. }
  8446. ],
  8447. "time": "2023-02-03T06:56:09+00:00"
  8448. },
  8449. {
  8450. "name": "phpunit/php-text-template",
  8451. "version": "3.0.1",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8455. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8460. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": ">=8.1"
  8465. },
  8466. "require-dev": {
  8467. "phpunit/phpunit": "^10.0"
  8468. },
  8469. "type": "library",
  8470. "extra": {
  8471. "branch-alias": {
  8472. "dev-main": "3.0-dev"
  8473. }
  8474. },
  8475. "autoload": {
  8476. "classmap": [
  8477. "src/"
  8478. ]
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "BSD-3-Clause"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Sebastian Bergmann",
  8487. "email": "sebastian@phpunit.de",
  8488. "role": "lead"
  8489. }
  8490. ],
  8491. "description": "Simple template engine.",
  8492. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8493. "keywords": [
  8494. "template"
  8495. ],
  8496. "support": {
  8497. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8498. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8499. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8500. },
  8501. "funding": [
  8502. {
  8503. "url": "https://github.com/sebastianbergmann",
  8504. "type": "github"
  8505. }
  8506. ],
  8507. "time": "2023-08-31T14:07:24+00:00"
  8508. },
  8509. {
  8510. "name": "phpunit/php-timer",
  8511. "version": "6.0.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8515. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8520. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "php": ">=8.1"
  8525. },
  8526. "require-dev": {
  8527. "phpunit/phpunit": "^10.0"
  8528. },
  8529. "type": "library",
  8530. "extra": {
  8531. "branch-alias": {
  8532. "dev-main": "6.0-dev"
  8533. }
  8534. },
  8535. "autoload": {
  8536. "classmap": [
  8537. "src/"
  8538. ]
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "BSD-3-Clause"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "Sebastian Bergmann",
  8547. "email": "sebastian@phpunit.de",
  8548. "role": "lead"
  8549. }
  8550. ],
  8551. "description": "Utility class for timing",
  8552. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8553. "keywords": [
  8554. "timer"
  8555. ],
  8556. "support": {
  8557. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8558. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8559. },
  8560. "funding": [
  8561. {
  8562. "url": "https://github.com/sebastianbergmann",
  8563. "type": "github"
  8564. }
  8565. ],
  8566. "time": "2023-02-03T06:57:52+00:00"
  8567. },
  8568. {
  8569. "name": "phpunit/phpunit",
  8570. "version": "10.5.38",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8574. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8579. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8580. "shasum": ""
  8581. },
  8582. "require": {
  8583. "ext-dom": "*",
  8584. "ext-json": "*",
  8585. "ext-libxml": "*",
  8586. "ext-mbstring": "*",
  8587. "ext-xml": "*",
  8588. "ext-xmlwriter": "*",
  8589. "myclabs/deep-copy": "^1.12.0",
  8590. "phar-io/manifest": "^2.0.4",
  8591. "phar-io/version": "^3.2.1",
  8592. "php": ">=8.1",
  8593. "phpunit/php-code-coverage": "^10.1.16",
  8594. "phpunit/php-file-iterator": "^4.1.0",
  8595. "phpunit/php-invoker": "^4.0.0",
  8596. "phpunit/php-text-template": "^3.0.1",
  8597. "phpunit/php-timer": "^6.0.0",
  8598. "sebastian/cli-parser": "^2.0.1",
  8599. "sebastian/code-unit": "^2.0.0",
  8600. "sebastian/comparator": "^5.0.3",
  8601. "sebastian/diff": "^5.1.1",
  8602. "sebastian/environment": "^6.1.0",
  8603. "sebastian/exporter": "^5.1.2",
  8604. "sebastian/global-state": "^6.0.2",
  8605. "sebastian/object-enumerator": "^5.0.0",
  8606. "sebastian/recursion-context": "^5.0.0",
  8607. "sebastian/type": "^4.0.0",
  8608. "sebastian/version": "^4.0.1"
  8609. },
  8610. "suggest": {
  8611. "ext-soap": "To be able to generate mocks based on WSDL files"
  8612. },
  8613. "bin": [
  8614. "phpunit"
  8615. ],
  8616. "type": "library",
  8617. "extra": {
  8618. "branch-alias": {
  8619. "dev-main": "10.5-dev"
  8620. }
  8621. },
  8622. "autoload": {
  8623. "files": [
  8624. "src/Framework/Assert/Functions.php"
  8625. ],
  8626. "classmap": [
  8627. "src/"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "BSD-3-Clause"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Sebastian Bergmann",
  8637. "email": "sebastian@phpunit.de",
  8638. "role": "lead"
  8639. }
  8640. ],
  8641. "description": "The PHP Unit Testing framework.",
  8642. "homepage": "https://phpunit.de/",
  8643. "keywords": [
  8644. "phpunit",
  8645. "testing",
  8646. "xunit"
  8647. ],
  8648. "support": {
  8649. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8650. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8651. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  8652. },
  8653. "funding": [
  8654. {
  8655. "url": "https://phpunit.de/sponsors.html",
  8656. "type": "custom"
  8657. },
  8658. {
  8659. "url": "https://github.com/sebastianbergmann",
  8660. "type": "github"
  8661. },
  8662. {
  8663. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8664. "type": "tidelift"
  8665. }
  8666. ],
  8667. "time": "2024-10-28T13:06:21+00:00"
  8668. },
  8669. {
  8670. "name": "react/cache",
  8671. "version": "v1.2.0",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/reactphp/cache.git",
  8675. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8680. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "php": ">=5.3.0",
  8685. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8686. },
  8687. "require-dev": {
  8688. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8689. },
  8690. "type": "library",
  8691. "autoload": {
  8692. "psr-4": {
  8693. "React\\Cache\\": "src/"
  8694. }
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "MIT"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Christian Lück",
  8703. "email": "christian@clue.engineering",
  8704. "homepage": "https://clue.engineering/"
  8705. },
  8706. {
  8707. "name": "Cees-Jan Kiewiet",
  8708. "email": "reactphp@ceesjankiewiet.nl",
  8709. "homepage": "https://wyrihaximus.net/"
  8710. },
  8711. {
  8712. "name": "Jan Sorgalla",
  8713. "email": "jsorgalla@gmail.com",
  8714. "homepage": "https://sorgalla.com/"
  8715. },
  8716. {
  8717. "name": "Chris Boden",
  8718. "email": "cboden@gmail.com",
  8719. "homepage": "https://cboden.dev/"
  8720. }
  8721. ],
  8722. "description": "Async, Promise-based cache interface for ReactPHP",
  8723. "keywords": [
  8724. "cache",
  8725. "caching",
  8726. "promise",
  8727. "reactphp"
  8728. ],
  8729. "support": {
  8730. "issues": "https://github.com/reactphp/cache/issues",
  8731. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://opencollective.com/reactphp",
  8736. "type": "open_collective"
  8737. }
  8738. ],
  8739. "time": "2022-11-30T15:59:55+00:00"
  8740. },
  8741. {
  8742. "name": "react/child-process",
  8743. "version": "v0.6.5",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/reactphp/child-process.git",
  8747. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8752. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8757. "php": ">=5.3.0",
  8758. "react/event-loop": "^1.2",
  8759. "react/stream": "^1.2"
  8760. },
  8761. "require-dev": {
  8762. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8763. "react/socket": "^1.8",
  8764. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8765. },
  8766. "type": "library",
  8767. "autoload": {
  8768. "psr-4": {
  8769. "React\\ChildProcess\\": "src"
  8770. }
  8771. },
  8772. "notification-url": "https://packagist.org/downloads/",
  8773. "license": [
  8774. "MIT"
  8775. ],
  8776. "authors": [
  8777. {
  8778. "name": "Christian Lück",
  8779. "email": "christian@clue.engineering",
  8780. "homepage": "https://clue.engineering/"
  8781. },
  8782. {
  8783. "name": "Cees-Jan Kiewiet",
  8784. "email": "reactphp@ceesjankiewiet.nl",
  8785. "homepage": "https://wyrihaximus.net/"
  8786. },
  8787. {
  8788. "name": "Jan Sorgalla",
  8789. "email": "jsorgalla@gmail.com",
  8790. "homepage": "https://sorgalla.com/"
  8791. },
  8792. {
  8793. "name": "Chris Boden",
  8794. "email": "cboden@gmail.com",
  8795. "homepage": "https://cboden.dev/"
  8796. }
  8797. ],
  8798. "description": "Event-driven library for executing child processes with ReactPHP.",
  8799. "keywords": [
  8800. "event-driven",
  8801. "process",
  8802. "reactphp"
  8803. ],
  8804. "support": {
  8805. "issues": "https://github.com/reactphp/child-process/issues",
  8806. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8807. },
  8808. "funding": [
  8809. {
  8810. "url": "https://github.com/WyriHaximus",
  8811. "type": "github"
  8812. },
  8813. {
  8814. "url": "https://github.com/clue",
  8815. "type": "github"
  8816. }
  8817. ],
  8818. "time": "2022-09-16T13:41:56+00:00"
  8819. },
  8820. {
  8821. "name": "react/dns",
  8822. "version": "v1.13.0",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/reactphp/dns.git",
  8826. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8831. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "php": ">=5.3.0",
  8836. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8837. "react/event-loop": "^1.2",
  8838. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8839. },
  8840. "require-dev": {
  8841. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8842. "react/async": "^4.3 || ^3 || ^2",
  8843. "react/promise-timer": "^1.11"
  8844. },
  8845. "type": "library",
  8846. "autoload": {
  8847. "psr-4": {
  8848. "React\\Dns\\": "src/"
  8849. }
  8850. },
  8851. "notification-url": "https://packagist.org/downloads/",
  8852. "license": [
  8853. "MIT"
  8854. ],
  8855. "authors": [
  8856. {
  8857. "name": "Christian Lück",
  8858. "email": "christian@clue.engineering",
  8859. "homepage": "https://clue.engineering/"
  8860. },
  8861. {
  8862. "name": "Cees-Jan Kiewiet",
  8863. "email": "reactphp@ceesjankiewiet.nl",
  8864. "homepage": "https://wyrihaximus.net/"
  8865. },
  8866. {
  8867. "name": "Jan Sorgalla",
  8868. "email": "jsorgalla@gmail.com",
  8869. "homepage": "https://sorgalla.com/"
  8870. },
  8871. {
  8872. "name": "Chris Boden",
  8873. "email": "cboden@gmail.com",
  8874. "homepage": "https://cboden.dev/"
  8875. }
  8876. ],
  8877. "description": "Async DNS resolver for ReactPHP",
  8878. "keywords": [
  8879. "async",
  8880. "dns",
  8881. "dns-resolver",
  8882. "reactphp"
  8883. ],
  8884. "support": {
  8885. "issues": "https://github.com/reactphp/dns/issues",
  8886. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8887. },
  8888. "funding": [
  8889. {
  8890. "url": "https://opencollective.com/reactphp",
  8891. "type": "open_collective"
  8892. }
  8893. ],
  8894. "time": "2024-06-13T14:18:03+00:00"
  8895. },
  8896. {
  8897. "name": "react/event-loop",
  8898. "version": "v1.5.0",
  8899. "source": {
  8900. "type": "git",
  8901. "url": "https://github.com/reactphp/event-loop.git",
  8902. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8903. },
  8904. "dist": {
  8905. "type": "zip",
  8906. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8907. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8908. "shasum": ""
  8909. },
  8910. "require": {
  8911. "php": ">=5.3.0"
  8912. },
  8913. "require-dev": {
  8914. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8915. },
  8916. "suggest": {
  8917. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8918. },
  8919. "type": "library",
  8920. "autoload": {
  8921. "psr-4": {
  8922. "React\\EventLoop\\": "src/"
  8923. }
  8924. },
  8925. "notification-url": "https://packagist.org/downloads/",
  8926. "license": [
  8927. "MIT"
  8928. ],
  8929. "authors": [
  8930. {
  8931. "name": "Christian Lück",
  8932. "email": "christian@clue.engineering",
  8933. "homepage": "https://clue.engineering/"
  8934. },
  8935. {
  8936. "name": "Cees-Jan Kiewiet",
  8937. "email": "reactphp@ceesjankiewiet.nl",
  8938. "homepage": "https://wyrihaximus.net/"
  8939. },
  8940. {
  8941. "name": "Jan Sorgalla",
  8942. "email": "jsorgalla@gmail.com",
  8943. "homepage": "https://sorgalla.com/"
  8944. },
  8945. {
  8946. "name": "Chris Boden",
  8947. "email": "cboden@gmail.com",
  8948. "homepage": "https://cboden.dev/"
  8949. }
  8950. ],
  8951. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8952. "keywords": [
  8953. "asynchronous",
  8954. "event-loop"
  8955. ],
  8956. "support": {
  8957. "issues": "https://github.com/reactphp/event-loop/issues",
  8958. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8959. },
  8960. "funding": [
  8961. {
  8962. "url": "https://opencollective.com/reactphp",
  8963. "type": "open_collective"
  8964. }
  8965. ],
  8966. "time": "2023-11-13T13:48:05+00:00"
  8967. },
  8968. {
  8969. "name": "react/promise",
  8970. "version": "v3.2.0",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/reactphp/promise.git",
  8974. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8979. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8980. "shasum": ""
  8981. },
  8982. "require": {
  8983. "php": ">=7.1.0"
  8984. },
  8985. "require-dev": {
  8986. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8987. "phpunit/phpunit": "^9.6 || ^7.5"
  8988. },
  8989. "type": "library",
  8990. "autoload": {
  8991. "files": [
  8992. "src/functions_include.php"
  8993. ],
  8994. "psr-4": {
  8995. "React\\Promise\\": "src/"
  8996. }
  8997. },
  8998. "notification-url": "https://packagist.org/downloads/",
  8999. "license": [
  9000. "MIT"
  9001. ],
  9002. "authors": [
  9003. {
  9004. "name": "Jan Sorgalla",
  9005. "email": "jsorgalla@gmail.com",
  9006. "homepage": "https://sorgalla.com/"
  9007. },
  9008. {
  9009. "name": "Christian Lück",
  9010. "email": "christian@clue.engineering",
  9011. "homepage": "https://clue.engineering/"
  9012. },
  9013. {
  9014. "name": "Cees-Jan Kiewiet",
  9015. "email": "reactphp@ceesjankiewiet.nl",
  9016. "homepage": "https://wyrihaximus.net/"
  9017. },
  9018. {
  9019. "name": "Chris Boden",
  9020. "email": "cboden@gmail.com",
  9021. "homepage": "https://cboden.dev/"
  9022. }
  9023. ],
  9024. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9025. "keywords": [
  9026. "promise",
  9027. "promises"
  9028. ],
  9029. "support": {
  9030. "issues": "https://github.com/reactphp/promise/issues",
  9031. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9032. },
  9033. "funding": [
  9034. {
  9035. "url": "https://opencollective.com/reactphp",
  9036. "type": "open_collective"
  9037. }
  9038. ],
  9039. "time": "2024-05-24T10:39:05+00:00"
  9040. },
  9041. {
  9042. "name": "react/socket",
  9043. "version": "v1.16.0",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/reactphp/socket.git",
  9047. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9052. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9057. "php": ">=5.3.0",
  9058. "react/dns": "^1.13",
  9059. "react/event-loop": "^1.2",
  9060. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9061. "react/stream": "^1.4"
  9062. },
  9063. "require-dev": {
  9064. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9065. "react/async": "^4.3 || ^3.3 || ^2",
  9066. "react/promise-stream": "^1.4",
  9067. "react/promise-timer": "^1.11"
  9068. },
  9069. "type": "library",
  9070. "autoload": {
  9071. "psr-4": {
  9072. "React\\Socket\\": "src/"
  9073. }
  9074. },
  9075. "notification-url": "https://packagist.org/downloads/",
  9076. "license": [
  9077. "MIT"
  9078. ],
  9079. "authors": [
  9080. {
  9081. "name": "Christian Lück",
  9082. "email": "christian@clue.engineering",
  9083. "homepage": "https://clue.engineering/"
  9084. },
  9085. {
  9086. "name": "Cees-Jan Kiewiet",
  9087. "email": "reactphp@ceesjankiewiet.nl",
  9088. "homepage": "https://wyrihaximus.net/"
  9089. },
  9090. {
  9091. "name": "Jan Sorgalla",
  9092. "email": "jsorgalla@gmail.com",
  9093. "homepage": "https://sorgalla.com/"
  9094. },
  9095. {
  9096. "name": "Chris Boden",
  9097. "email": "cboden@gmail.com",
  9098. "homepage": "https://cboden.dev/"
  9099. }
  9100. ],
  9101. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9102. "keywords": [
  9103. "Connection",
  9104. "Socket",
  9105. "async",
  9106. "reactphp",
  9107. "stream"
  9108. ],
  9109. "support": {
  9110. "issues": "https://github.com/reactphp/socket/issues",
  9111. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9112. },
  9113. "funding": [
  9114. {
  9115. "url": "https://opencollective.com/reactphp",
  9116. "type": "open_collective"
  9117. }
  9118. ],
  9119. "time": "2024-07-26T10:38:09+00:00"
  9120. },
  9121. {
  9122. "name": "react/stream",
  9123. "version": "v1.4.0",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/reactphp/stream.git",
  9127. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9132. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9137. "php": ">=5.3.8",
  9138. "react/event-loop": "^1.2"
  9139. },
  9140. "require-dev": {
  9141. "clue/stream-filter": "~1.2",
  9142. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9143. },
  9144. "type": "library",
  9145. "autoload": {
  9146. "psr-4": {
  9147. "React\\Stream\\": "src/"
  9148. }
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "MIT"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Christian Lück",
  9157. "email": "christian@clue.engineering",
  9158. "homepage": "https://clue.engineering/"
  9159. },
  9160. {
  9161. "name": "Cees-Jan Kiewiet",
  9162. "email": "reactphp@ceesjankiewiet.nl",
  9163. "homepage": "https://wyrihaximus.net/"
  9164. },
  9165. {
  9166. "name": "Jan Sorgalla",
  9167. "email": "jsorgalla@gmail.com",
  9168. "homepage": "https://sorgalla.com/"
  9169. },
  9170. {
  9171. "name": "Chris Boden",
  9172. "email": "cboden@gmail.com",
  9173. "homepage": "https://cboden.dev/"
  9174. }
  9175. ],
  9176. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9177. "keywords": [
  9178. "event-driven",
  9179. "io",
  9180. "non-blocking",
  9181. "pipe",
  9182. "reactphp",
  9183. "readable",
  9184. "stream",
  9185. "writable"
  9186. ],
  9187. "support": {
  9188. "issues": "https://github.com/reactphp/stream/issues",
  9189. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://opencollective.com/reactphp",
  9194. "type": "open_collective"
  9195. }
  9196. ],
  9197. "time": "2024-06-11T12:45:25+00:00"
  9198. },
  9199. {
  9200. "name": "sebastian/cli-parser",
  9201. "version": "2.0.1",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9205. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9210. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "php": ">=8.1"
  9215. },
  9216. "require-dev": {
  9217. "phpunit/phpunit": "^10.0"
  9218. },
  9219. "type": "library",
  9220. "extra": {
  9221. "branch-alias": {
  9222. "dev-main": "2.0-dev"
  9223. }
  9224. },
  9225. "autoload": {
  9226. "classmap": [
  9227. "src/"
  9228. ]
  9229. },
  9230. "notification-url": "https://packagist.org/downloads/",
  9231. "license": [
  9232. "BSD-3-Clause"
  9233. ],
  9234. "authors": [
  9235. {
  9236. "name": "Sebastian Bergmann",
  9237. "email": "sebastian@phpunit.de",
  9238. "role": "lead"
  9239. }
  9240. ],
  9241. "description": "Library for parsing CLI options",
  9242. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9243. "support": {
  9244. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9245. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9246. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9247. },
  9248. "funding": [
  9249. {
  9250. "url": "https://github.com/sebastianbergmann",
  9251. "type": "github"
  9252. }
  9253. ],
  9254. "time": "2024-03-02T07:12:49+00:00"
  9255. },
  9256. {
  9257. "name": "sebastian/code-unit",
  9258. "version": "2.0.0",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9262. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9267. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": ">=8.1"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^10.0"
  9275. },
  9276. "type": "library",
  9277. "extra": {
  9278. "branch-alias": {
  9279. "dev-main": "2.0-dev"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "classmap": [
  9284. "src/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Sebastian Bergmann",
  9294. "email": "sebastian@phpunit.de",
  9295. "role": "lead"
  9296. }
  9297. ],
  9298. "description": "Collection of value objects that represent the PHP code units",
  9299. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9300. "support": {
  9301. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9302. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9303. },
  9304. "funding": [
  9305. {
  9306. "url": "https://github.com/sebastianbergmann",
  9307. "type": "github"
  9308. }
  9309. ],
  9310. "time": "2023-02-03T06:58:43+00:00"
  9311. },
  9312. {
  9313. "name": "sebastian/code-unit-reverse-lookup",
  9314. "version": "3.0.0",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9318. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9323. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9324. "shasum": ""
  9325. },
  9326. "require": {
  9327. "php": ">=8.1"
  9328. },
  9329. "require-dev": {
  9330. "phpunit/phpunit": "^10.0"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-main": "3.0-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "classmap": [
  9340. "src/"
  9341. ]
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Sebastian Bergmann",
  9350. "email": "sebastian@phpunit.de"
  9351. }
  9352. ],
  9353. "description": "Looks up which function or method a line of code belongs to",
  9354. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9355. "support": {
  9356. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9357. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9358. },
  9359. "funding": [
  9360. {
  9361. "url": "https://github.com/sebastianbergmann",
  9362. "type": "github"
  9363. }
  9364. ],
  9365. "time": "2023-02-03T06:59:15+00:00"
  9366. },
  9367. {
  9368. "name": "sebastian/comparator",
  9369. "version": "5.0.3",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/sebastianbergmann/comparator.git",
  9373. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9378. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "ext-dom": "*",
  9383. "ext-mbstring": "*",
  9384. "php": ">=8.1",
  9385. "sebastian/diff": "^5.0",
  9386. "sebastian/exporter": "^5.0"
  9387. },
  9388. "require-dev": {
  9389. "phpunit/phpunit": "^10.5"
  9390. },
  9391. "type": "library",
  9392. "extra": {
  9393. "branch-alias": {
  9394. "dev-main": "5.0-dev"
  9395. }
  9396. },
  9397. "autoload": {
  9398. "classmap": [
  9399. "src/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "BSD-3-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Sebastian Bergmann",
  9409. "email": "sebastian@phpunit.de"
  9410. },
  9411. {
  9412. "name": "Jeff Welch",
  9413. "email": "whatthejeff@gmail.com"
  9414. },
  9415. {
  9416. "name": "Volker Dusch",
  9417. "email": "github@wallbash.com"
  9418. },
  9419. {
  9420. "name": "Bernhard Schussek",
  9421. "email": "bschussek@2bepublished.at"
  9422. }
  9423. ],
  9424. "description": "Provides the functionality to compare PHP values for equality",
  9425. "homepage": "https://github.com/sebastianbergmann/comparator",
  9426. "keywords": [
  9427. "comparator",
  9428. "compare",
  9429. "equality"
  9430. ],
  9431. "support": {
  9432. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9433. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9434. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9435. },
  9436. "funding": [
  9437. {
  9438. "url": "https://github.com/sebastianbergmann",
  9439. "type": "github"
  9440. }
  9441. ],
  9442. "time": "2024-10-18T14:56:07+00:00"
  9443. },
  9444. {
  9445. "name": "sebastian/complexity",
  9446. "version": "3.2.0",
  9447. "source": {
  9448. "type": "git",
  9449. "url": "https://github.com/sebastianbergmann/complexity.git",
  9450. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9451. },
  9452. "dist": {
  9453. "type": "zip",
  9454. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9455. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9456. "shasum": ""
  9457. },
  9458. "require": {
  9459. "nikic/php-parser": "^4.18 || ^5.0",
  9460. "php": ">=8.1"
  9461. },
  9462. "require-dev": {
  9463. "phpunit/phpunit": "^10.0"
  9464. },
  9465. "type": "library",
  9466. "extra": {
  9467. "branch-alias": {
  9468. "dev-main": "3.2-dev"
  9469. }
  9470. },
  9471. "autoload": {
  9472. "classmap": [
  9473. "src/"
  9474. ]
  9475. },
  9476. "notification-url": "https://packagist.org/downloads/",
  9477. "license": [
  9478. "BSD-3-Clause"
  9479. ],
  9480. "authors": [
  9481. {
  9482. "name": "Sebastian Bergmann",
  9483. "email": "sebastian@phpunit.de",
  9484. "role": "lead"
  9485. }
  9486. ],
  9487. "description": "Library for calculating the complexity of PHP code units",
  9488. "homepage": "https://github.com/sebastianbergmann/complexity",
  9489. "support": {
  9490. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9491. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9492. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9493. },
  9494. "funding": [
  9495. {
  9496. "url": "https://github.com/sebastianbergmann",
  9497. "type": "github"
  9498. }
  9499. ],
  9500. "time": "2023-12-21T08:37:17+00:00"
  9501. },
  9502. {
  9503. "name": "sebastian/diff",
  9504. "version": "5.1.1",
  9505. "source": {
  9506. "type": "git",
  9507. "url": "https://github.com/sebastianbergmann/diff.git",
  9508. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9509. },
  9510. "dist": {
  9511. "type": "zip",
  9512. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9513. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9514. "shasum": ""
  9515. },
  9516. "require": {
  9517. "php": ">=8.1"
  9518. },
  9519. "require-dev": {
  9520. "phpunit/phpunit": "^10.0",
  9521. "symfony/process": "^6.4"
  9522. },
  9523. "type": "library",
  9524. "extra": {
  9525. "branch-alias": {
  9526. "dev-main": "5.1-dev"
  9527. }
  9528. },
  9529. "autoload": {
  9530. "classmap": [
  9531. "src/"
  9532. ]
  9533. },
  9534. "notification-url": "https://packagist.org/downloads/",
  9535. "license": [
  9536. "BSD-3-Clause"
  9537. ],
  9538. "authors": [
  9539. {
  9540. "name": "Sebastian Bergmann",
  9541. "email": "sebastian@phpunit.de"
  9542. },
  9543. {
  9544. "name": "Kore Nordmann",
  9545. "email": "mail@kore-nordmann.de"
  9546. }
  9547. ],
  9548. "description": "Diff implementation",
  9549. "homepage": "https://github.com/sebastianbergmann/diff",
  9550. "keywords": [
  9551. "diff",
  9552. "udiff",
  9553. "unidiff",
  9554. "unified diff"
  9555. ],
  9556. "support": {
  9557. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9558. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9559. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9560. },
  9561. "funding": [
  9562. {
  9563. "url": "https://github.com/sebastianbergmann",
  9564. "type": "github"
  9565. }
  9566. ],
  9567. "time": "2024-03-02T07:15:17+00:00"
  9568. },
  9569. {
  9570. "name": "sebastian/environment",
  9571. "version": "6.1.0",
  9572. "source": {
  9573. "type": "git",
  9574. "url": "https://github.com/sebastianbergmann/environment.git",
  9575. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9576. },
  9577. "dist": {
  9578. "type": "zip",
  9579. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9580. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9581. "shasum": ""
  9582. },
  9583. "require": {
  9584. "php": ">=8.1"
  9585. },
  9586. "require-dev": {
  9587. "phpunit/phpunit": "^10.0"
  9588. },
  9589. "suggest": {
  9590. "ext-posix": "*"
  9591. },
  9592. "type": "library",
  9593. "extra": {
  9594. "branch-alias": {
  9595. "dev-main": "6.1-dev"
  9596. }
  9597. },
  9598. "autoload": {
  9599. "classmap": [
  9600. "src/"
  9601. ]
  9602. },
  9603. "notification-url": "https://packagist.org/downloads/",
  9604. "license": [
  9605. "BSD-3-Clause"
  9606. ],
  9607. "authors": [
  9608. {
  9609. "name": "Sebastian Bergmann",
  9610. "email": "sebastian@phpunit.de"
  9611. }
  9612. ],
  9613. "description": "Provides functionality to handle HHVM/PHP environments",
  9614. "homepage": "https://github.com/sebastianbergmann/environment",
  9615. "keywords": [
  9616. "Xdebug",
  9617. "environment",
  9618. "hhvm"
  9619. ],
  9620. "support": {
  9621. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9622. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9623. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9624. },
  9625. "funding": [
  9626. {
  9627. "url": "https://github.com/sebastianbergmann",
  9628. "type": "github"
  9629. }
  9630. ],
  9631. "time": "2024-03-23T08:47:14+00:00"
  9632. },
  9633. {
  9634. "name": "sebastian/exporter",
  9635. "version": "5.1.2",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/sebastianbergmann/exporter.git",
  9639. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9644. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "ext-mbstring": "*",
  9649. "php": ">=8.1",
  9650. "sebastian/recursion-context": "^5.0"
  9651. },
  9652. "require-dev": {
  9653. "phpunit/phpunit": "^10.0"
  9654. },
  9655. "type": "library",
  9656. "extra": {
  9657. "branch-alias": {
  9658. "dev-main": "5.1-dev"
  9659. }
  9660. },
  9661. "autoload": {
  9662. "classmap": [
  9663. "src/"
  9664. ]
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "BSD-3-Clause"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Sebastian Bergmann",
  9673. "email": "sebastian@phpunit.de"
  9674. },
  9675. {
  9676. "name": "Jeff Welch",
  9677. "email": "whatthejeff@gmail.com"
  9678. },
  9679. {
  9680. "name": "Volker Dusch",
  9681. "email": "github@wallbash.com"
  9682. },
  9683. {
  9684. "name": "Adam Harvey",
  9685. "email": "aharvey@php.net"
  9686. },
  9687. {
  9688. "name": "Bernhard Schussek",
  9689. "email": "bschussek@gmail.com"
  9690. }
  9691. ],
  9692. "description": "Provides the functionality to export PHP variables for visualization",
  9693. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9694. "keywords": [
  9695. "export",
  9696. "exporter"
  9697. ],
  9698. "support": {
  9699. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9700. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9701. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9702. },
  9703. "funding": [
  9704. {
  9705. "url": "https://github.com/sebastianbergmann",
  9706. "type": "github"
  9707. }
  9708. ],
  9709. "time": "2024-03-02T07:17:12+00:00"
  9710. },
  9711. {
  9712. "name": "sebastian/global-state",
  9713. "version": "6.0.2",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/sebastianbergmann/global-state.git",
  9717. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9722. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9723. "shasum": ""
  9724. },
  9725. "require": {
  9726. "php": ">=8.1",
  9727. "sebastian/object-reflector": "^3.0",
  9728. "sebastian/recursion-context": "^5.0"
  9729. },
  9730. "require-dev": {
  9731. "ext-dom": "*",
  9732. "phpunit/phpunit": "^10.0"
  9733. },
  9734. "type": "library",
  9735. "extra": {
  9736. "branch-alias": {
  9737. "dev-main": "6.0-dev"
  9738. }
  9739. },
  9740. "autoload": {
  9741. "classmap": [
  9742. "src/"
  9743. ]
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "BSD-3-Clause"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Sebastian Bergmann",
  9752. "email": "sebastian@phpunit.de"
  9753. }
  9754. ],
  9755. "description": "Snapshotting of global state",
  9756. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9757. "keywords": [
  9758. "global state"
  9759. ],
  9760. "support": {
  9761. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9762. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9763. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9764. },
  9765. "funding": [
  9766. {
  9767. "url": "https://github.com/sebastianbergmann",
  9768. "type": "github"
  9769. }
  9770. ],
  9771. "time": "2024-03-02T07:19:19+00:00"
  9772. },
  9773. {
  9774. "name": "sebastian/lines-of-code",
  9775. "version": "2.0.2",
  9776. "source": {
  9777. "type": "git",
  9778. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9779. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9780. },
  9781. "dist": {
  9782. "type": "zip",
  9783. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9784. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9785. "shasum": ""
  9786. },
  9787. "require": {
  9788. "nikic/php-parser": "^4.18 || ^5.0",
  9789. "php": ">=8.1"
  9790. },
  9791. "require-dev": {
  9792. "phpunit/phpunit": "^10.0"
  9793. },
  9794. "type": "library",
  9795. "extra": {
  9796. "branch-alias": {
  9797. "dev-main": "2.0-dev"
  9798. }
  9799. },
  9800. "autoload": {
  9801. "classmap": [
  9802. "src/"
  9803. ]
  9804. },
  9805. "notification-url": "https://packagist.org/downloads/",
  9806. "license": [
  9807. "BSD-3-Clause"
  9808. ],
  9809. "authors": [
  9810. {
  9811. "name": "Sebastian Bergmann",
  9812. "email": "sebastian@phpunit.de",
  9813. "role": "lead"
  9814. }
  9815. ],
  9816. "description": "Library for counting the lines of code in PHP source code",
  9817. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9818. "support": {
  9819. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9820. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9821. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9822. },
  9823. "funding": [
  9824. {
  9825. "url": "https://github.com/sebastianbergmann",
  9826. "type": "github"
  9827. }
  9828. ],
  9829. "time": "2023-12-21T08:38:20+00:00"
  9830. },
  9831. {
  9832. "name": "sebastian/object-enumerator",
  9833. "version": "5.0.0",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9837. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9842. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "php": ">=8.1",
  9847. "sebastian/object-reflector": "^3.0",
  9848. "sebastian/recursion-context": "^5.0"
  9849. },
  9850. "require-dev": {
  9851. "phpunit/phpunit": "^10.0"
  9852. },
  9853. "type": "library",
  9854. "extra": {
  9855. "branch-alias": {
  9856. "dev-main": "5.0-dev"
  9857. }
  9858. },
  9859. "autoload": {
  9860. "classmap": [
  9861. "src/"
  9862. ]
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "BSD-3-Clause"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Sebastian Bergmann",
  9871. "email": "sebastian@phpunit.de"
  9872. }
  9873. ],
  9874. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9875. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9876. "support": {
  9877. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9878. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9879. },
  9880. "funding": [
  9881. {
  9882. "url": "https://github.com/sebastianbergmann",
  9883. "type": "github"
  9884. }
  9885. ],
  9886. "time": "2023-02-03T07:08:32+00:00"
  9887. },
  9888. {
  9889. "name": "sebastian/object-reflector",
  9890. "version": "3.0.0",
  9891. "source": {
  9892. "type": "git",
  9893. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9894. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9895. },
  9896. "dist": {
  9897. "type": "zip",
  9898. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9899. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9900. "shasum": ""
  9901. },
  9902. "require": {
  9903. "php": ">=8.1"
  9904. },
  9905. "require-dev": {
  9906. "phpunit/phpunit": "^10.0"
  9907. },
  9908. "type": "library",
  9909. "extra": {
  9910. "branch-alias": {
  9911. "dev-main": "3.0-dev"
  9912. }
  9913. },
  9914. "autoload": {
  9915. "classmap": [
  9916. "src/"
  9917. ]
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "BSD-3-Clause"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Sebastian Bergmann",
  9926. "email": "sebastian@phpunit.de"
  9927. }
  9928. ],
  9929. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9930. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9931. "support": {
  9932. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9933. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://github.com/sebastianbergmann",
  9938. "type": "github"
  9939. }
  9940. ],
  9941. "time": "2023-02-03T07:06:18+00:00"
  9942. },
  9943. {
  9944. "name": "sebastian/recursion-context",
  9945. "version": "5.0.0",
  9946. "source": {
  9947. "type": "git",
  9948. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9949. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9950. },
  9951. "dist": {
  9952. "type": "zip",
  9953. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9954. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9955. "shasum": ""
  9956. },
  9957. "require": {
  9958. "php": ">=8.1"
  9959. },
  9960. "require-dev": {
  9961. "phpunit/phpunit": "^10.0"
  9962. },
  9963. "type": "library",
  9964. "extra": {
  9965. "branch-alias": {
  9966. "dev-main": "5.0-dev"
  9967. }
  9968. },
  9969. "autoload": {
  9970. "classmap": [
  9971. "src/"
  9972. ]
  9973. },
  9974. "notification-url": "https://packagist.org/downloads/",
  9975. "license": [
  9976. "BSD-3-Clause"
  9977. ],
  9978. "authors": [
  9979. {
  9980. "name": "Sebastian Bergmann",
  9981. "email": "sebastian@phpunit.de"
  9982. },
  9983. {
  9984. "name": "Jeff Welch",
  9985. "email": "whatthejeff@gmail.com"
  9986. },
  9987. {
  9988. "name": "Adam Harvey",
  9989. "email": "aharvey@php.net"
  9990. }
  9991. ],
  9992. "description": "Provides functionality to recursively process PHP variables",
  9993. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9994. "support": {
  9995. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9996. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9997. },
  9998. "funding": [
  9999. {
  10000. "url": "https://github.com/sebastianbergmann",
  10001. "type": "github"
  10002. }
  10003. ],
  10004. "time": "2023-02-03T07:05:40+00:00"
  10005. },
  10006. {
  10007. "name": "sebastian/type",
  10008. "version": "4.0.0",
  10009. "source": {
  10010. "type": "git",
  10011. "url": "https://github.com/sebastianbergmann/type.git",
  10012. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10013. },
  10014. "dist": {
  10015. "type": "zip",
  10016. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10017. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10018. "shasum": ""
  10019. },
  10020. "require": {
  10021. "php": ">=8.1"
  10022. },
  10023. "require-dev": {
  10024. "phpunit/phpunit": "^10.0"
  10025. },
  10026. "type": "library",
  10027. "extra": {
  10028. "branch-alias": {
  10029. "dev-main": "4.0-dev"
  10030. }
  10031. },
  10032. "autoload": {
  10033. "classmap": [
  10034. "src/"
  10035. ]
  10036. },
  10037. "notification-url": "https://packagist.org/downloads/",
  10038. "license": [
  10039. "BSD-3-Clause"
  10040. ],
  10041. "authors": [
  10042. {
  10043. "name": "Sebastian Bergmann",
  10044. "email": "sebastian@phpunit.de",
  10045. "role": "lead"
  10046. }
  10047. ],
  10048. "description": "Collection of value objects that represent the types of the PHP type system",
  10049. "homepage": "https://github.com/sebastianbergmann/type",
  10050. "support": {
  10051. "issues": "https://github.com/sebastianbergmann/type/issues",
  10052. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10053. },
  10054. "funding": [
  10055. {
  10056. "url": "https://github.com/sebastianbergmann",
  10057. "type": "github"
  10058. }
  10059. ],
  10060. "time": "2023-02-03T07:10:45+00:00"
  10061. },
  10062. {
  10063. "name": "sebastian/version",
  10064. "version": "4.0.1",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/sebastianbergmann/version.git",
  10068. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10073. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10074. "shasum": ""
  10075. },
  10076. "require": {
  10077. "php": ">=8.1"
  10078. },
  10079. "type": "library",
  10080. "extra": {
  10081. "branch-alias": {
  10082. "dev-main": "4.0-dev"
  10083. }
  10084. },
  10085. "autoload": {
  10086. "classmap": [
  10087. "src/"
  10088. ]
  10089. },
  10090. "notification-url": "https://packagist.org/downloads/",
  10091. "license": [
  10092. "BSD-3-Clause"
  10093. ],
  10094. "authors": [
  10095. {
  10096. "name": "Sebastian Bergmann",
  10097. "email": "sebastian@phpunit.de",
  10098. "role": "lead"
  10099. }
  10100. ],
  10101. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10102. "homepage": "https://github.com/sebastianbergmann/version",
  10103. "support": {
  10104. "issues": "https://github.com/sebastianbergmann/version/issues",
  10105. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10106. },
  10107. "funding": [
  10108. {
  10109. "url": "https://github.com/sebastianbergmann",
  10110. "type": "github"
  10111. }
  10112. ],
  10113. "time": "2023-02-07T11:34:05+00:00"
  10114. },
  10115. {
  10116. "name": "swoole/ide-helper",
  10117. "version": "5.1.5",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/swoole/ide-helper.git",
  10121. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10126. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10127. "shasum": ""
  10128. },
  10129. "type": "library",
  10130. "notification-url": "https://packagist.org/downloads/",
  10131. "license": [
  10132. "Apache-2.0"
  10133. ],
  10134. "authors": [
  10135. {
  10136. "name": "Team Swoole",
  10137. "email": "team@swoole.com"
  10138. }
  10139. ],
  10140. "description": "IDE help files for Swoole.",
  10141. "support": {
  10142. "issues": "https://github.com/swoole/ide-helper/issues",
  10143. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10144. },
  10145. "time": "2024-11-05T07:35:30+00:00"
  10146. },
  10147. {
  10148. "name": "symfony/event-dispatcher",
  10149. "version": "v6.4.13",
  10150. "source": {
  10151. "type": "git",
  10152. "url": "https://github.com/symfony/event-dispatcher.git",
  10153. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10154. },
  10155. "dist": {
  10156. "type": "zip",
  10157. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10158. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10159. "shasum": ""
  10160. },
  10161. "require": {
  10162. "php": ">=8.1",
  10163. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10164. },
  10165. "conflict": {
  10166. "symfony/dependency-injection": "<5.4",
  10167. "symfony/service-contracts": "<2.5"
  10168. },
  10169. "provide": {
  10170. "psr/event-dispatcher-implementation": "1.0",
  10171. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10172. },
  10173. "require-dev": {
  10174. "psr/log": "^1|^2|^3",
  10175. "symfony/config": "^5.4|^6.0|^7.0",
  10176. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10177. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10178. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10179. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10180. "symfony/service-contracts": "^2.5|^3",
  10181. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10182. },
  10183. "type": "library",
  10184. "autoload": {
  10185. "psr-4": {
  10186. "Symfony\\Component\\EventDispatcher\\": ""
  10187. },
  10188. "exclude-from-classmap": [
  10189. "/Tests/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "MIT"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Fabien Potencier",
  10199. "email": "fabien@symfony.com"
  10200. },
  10201. {
  10202. "name": "Symfony Community",
  10203. "homepage": "https://symfony.com/contributors"
  10204. }
  10205. ],
  10206. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10207. "homepage": "https://symfony.com",
  10208. "support": {
  10209. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10210. },
  10211. "funding": [
  10212. {
  10213. "url": "https://symfony.com/sponsor",
  10214. "type": "custom"
  10215. },
  10216. {
  10217. "url": "https://github.com/fabpot",
  10218. "type": "github"
  10219. },
  10220. {
  10221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10222. "type": "tidelift"
  10223. }
  10224. ],
  10225. "time": "2024-09-25T14:18:03+00:00"
  10226. },
  10227. {
  10228. "name": "symfony/event-dispatcher-contracts",
  10229. "version": "v3.5.0",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10233. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10238. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "php": ">=8.1",
  10243. "psr/event-dispatcher": "^1"
  10244. },
  10245. "type": "library",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-main": "3.5-dev"
  10249. },
  10250. "thanks": {
  10251. "name": "symfony/contracts",
  10252. "url": "https://github.com/symfony/contracts"
  10253. }
  10254. },
  10255. "autoload": {
  10256. "psr-4": {
  10257. "Symfony\\Contracts\\EventDispatcher\\": ""
  10258. }
  10259. },
  10260. "notification-url": "https://packagist.org/downloads/",
  10261. "license": [
  10262. "MIT"
  10263. ],
  10264. "authors": [
  10265. {
  10266. "name": "Nicolas Grekas",
  10267. "email": "p@tchwork.com"
  10268. },
  10269. {
  10270. "name": "Symfony Community",
  10271. "homepage": "https://symfony.com/contributors"
  10272. }
  10273. ],
  10274. "description": "Generic abstractions related to dispatching event",
  10275. "homepage": "https://symfony.com",
  10276. "keywords": [
  10277. "abstractions",
  10278. "contracts",
  10279. "decoupling",
  10280. "interfaces",
  10281. "interoperability",
  10282. "standards"
  10283. ],
  10284. "support": {
  10285. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10286. },
  10287. "funding": [
  10288. {
  10289. "url": "https://symfony.com/sponsor",
  10290. "type": "custom"
  10291. },
  10292. {
  10293. "url": "https://github.com/fabpot",
  10294. "type": "github"
  10295. },
  10296. {
  10297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10298. "type": "tidelift"
  10299. }
  10300. ],
  10301. "time": "2024-04-18T09:32:20+00:00"
  10302. },
  10303. {
  10304. "name": "symfony/filesystem",
  10305. "version": "v6.4.13",
  10306. "source": {
  10307. "type": "git",
  10308. "url": "https://github.com/symfony/filesystem.git",
  10309. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10310. },
  10311. "dist": {
  10312. "type": "zip",
  10313. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10314. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10315. "shasum": ""
  10316. },
  10317. "require": {
  10318. "php": ">=8.1",
  10319. "symfony/polyfill-ctype": "~1.8",
  10320. "symfony/polyfill-mbstring": "~1.8"
  10321. },
  10322. "require-dev": {
  10323. "symfony/process": "^5.4|^6.4|^7.0"
  10324. },
  10325. "type": "library",
  10326. "autoload": {
  10327. "psr-4": {
  10328. "Symfony\\Component\\Filesystem\\": ""
  10329. },
  10330. "exclude-from-classmap": [
  10331. "/Tests/"
  10332. ]
  10333. },
  10334. "notification-url": "https://packagist.org/downloads/",
  10335. "license": [
  10336. "MIT"
  10337. ],
  10338. "authors": [
  10339. {
  10340. "name": "Fabien Potencier",
  10341. "email": "fabien@symfony.com"
  10342. },
  10343. {
  10344. "name": "Symfony Community",
  10345. "homepage": "https://symfony.com/contributors"
  10346. }
  10347. ],
  10348. "description": "Provides basic utilities for the filesystem",
  10349. "homepage": "https://symfony.com",
  10350. "support": {
  10351. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10352. },
  10353. "funding": [
  10354. {
  10355. "url": "https://symfony.com/sponsor",
  10356. "type": "custom"
  10357. },
  10358. {
  10359. "url": "https://github.com/fabpot",
  10360. "type": "github"
  10361. },
  10362. {
  10363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10364. "type": "tidelift"
  10365. }
  10366. ],
  10367. "time": "2024-10-25T15:07:50+00:00"
  10368. },
  10369. {
  10370. "name": "symfony/http-foundation",
  10371. "version": "v6.4.14",
  10372. "source": {
  10373. "type": "git",
  10374. "url": "https://github.com/symfony/http-foundation.git",
  10375. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  10376. },
  10377. "dist": {
  10378. "type": "zip",
  10379. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  10380. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  10381. "shasum": ""
  10382. },
  10383. "require": {
  10384. "php": ">=8.1",
  10385. "symfony/deprecation-contracts": "^2.5|^3",
  10386. "symfony/polyfill-mbstring": "~1.1",
  10387. "symfony/polyfill-php83": "^1.27"
  10388. },
  10389. "conflict": {
  10390. "symfony/cache": "<6.3"
  10391. },
  10392. "require-dev": {
  10393. "doctrine/dbal": "^2.13.1|^3|^4",
  10394. "predis/predis": "^1.1|^2.0",
  10395. "symfony/cache": "^6.3|^7.0",
  10396. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10397. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10398. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10399. "symfony/mime": "^5.4|^6.0|^7.0",
  10400. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10401. },
  10402. "type": "library",
  10403. "autoload": {
  10404. "psr-4": {
  10405. "Symfony\\Component\\HttpFoundation\\": ""
  10406. },
  10407. "exclude-from-classmap": [
  10408. "/Tests/"
  10409. ]
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "MIT"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Fabien Potencier",
  10418. "email": "fabien@symfony.com"
  10419. },
  10420. {
  10421. "name": "Symfony Community",
  10422. "homepage": "https://symfony.com/contributors"
  10423. }
  10424. ],
  10425. "description": "Defines an object-oriented layer for the HTTP specification",
  10426. "homepage": "https://symfony.com",
  10427. "support": {
  10428. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  10429. },
  10430. "funding": [
  10431. {
  10432. "url": "https://symfony.com/sponsor",
  10433. "type": "custom"
  10434. },
  10435. {
  10436. "url": "https://github.com/fabpot",
  10437. "type": "github"
  10438. },
  10439. {
  10440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10441. "type": "tidelift"
  10442. }
  10443. ],
  10444. "time": "2024-11-05T16:39:55+00:00"
  10445. },
  10446. {
  10447. "name": "symfony/options-resolver",
  10448. "version": "v6.4.13",
  10449. "source": {
  10450. "type": "git",
  10451. "url": "https://github.com/symfony/options-resolver.git",
  10452. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  10453. },
  10454. "dist": {
  10455. "type": "zip",
  10456. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  10457. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  10458. "shasum": ""
  10459. },
  10460. "require": {
  10461. "php": ">=8.1",
  10462. "symfony/deprecation-contracts": "^2.5|^3"
  10463. },
  10464. "type": "library",
  10465. "autoload": {
  10466. "psr-4": {
  10467. "Symfony\\Component\\OptionsResolver\\": ""
  10468. },
  10469. "exclude-from-classmap": [
  10470. "/Tests/"
  10471. ]
  10472. },
  10473. "notification-url": "https://packagist.org/downloads/",
  10474. "license": [
  10475. "MIT"
  10476. ],
  10477. "authors": [
  10478. {
  10479. "name": "Fabien Potencier",
  10480. "email": "fabien@symfony.com"
  10481. },
  10482. {
  10483. "name": "Symfony Community",
  10484. "homepage": "https://symfony.com/contributors"
  10485. }
  10486. ],
  10487. "description": "Provides an improved replacement for the array_replace PHP function",
  10488. "homepage": "https://symfony.com",
  10489. "keywords": [
  10490. "config",
  10491. "configuration",
  10492. "options"
  10493. ],
  10494. "support": {
  10495. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://symfony.com/sponsor",
  10500. "type": "custom"
  10501. },
  10502. {
  10503. "url": "https://github.com/fabpot",
  10504. "type": "github"
  10505. },
  10506. {
  10507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10508. "type": "tidelift"
  10509. }
  10510. ],
  10511. "time": "2024-09-25T14:18:03+00:00"
  10512. },
  10513. {
  10514. "name": "symfony/polyfill-php81",
  10515. "version": "v1.31.0",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/symfony/polyfill-php81.git",
  10519. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10524. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10525. "shasum": ""
  10526. },
  10527. "require": {
  10528. "php": ">=7.2"
  10529. },
  10530. "type": "library",
  10531. "extra": {
  10532. "thanks": {
  10533. "name": "symfony/polyfill",
  10534. "url": "https://github.com/symfony/polyfill"
  10535. }
  10536. },
  10537. "autoload": {
  10538. "files": [
  10539. "bootstrap.php"
  10540. ],
  10541. "psr-4": {
  10542. "Symfony\\Polyfill\\Php81\\": ""
  10543. },
  10544. "classmap": [
  10545. "Resources/stubs"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "MIT"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Nicolas Grekas",
  10555. "email": "p@tchwork.com"
  10556. },
  10557. {
  10558. "name": "Symfony Community",
  10559. "homepage": "https://symfony.com/contributors"
  10560. }
  10561. ],
  10562. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10563. "homepage": "https://symfony.com",
  10564. "keywords": [
  10565. "compatibility",
  10566. "polyfill",
  10567. "portable",
  10568. "shim"
  10569. ],
  10570. "support": {
  10571. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://symfony.com/sponsor",
  10576. "type": "custom"
  10577. },
  10578. {
  10579. "url": "https://github.com/fabpot",
  10580. "type": "github"
  10581. },
  10582. {
  10583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10584. "type": "tidelift"
  10585. }
  10586. ],
  10587. "time": "2024-09-09T11:45:10+00:00"
  10588. },
  10589. {
  10590. "name": "symfony/polyfill-php83",
  10591. "version": "v1.31.0",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/symfony/polyfill-php83.git",
  10595. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10600. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=7.2"
  10605. },
  10606. "type": "library",
  10607. "extra": {
  10608. "thanks": {
  10609. "name": "symfony/polyfill",
  10610. "url": "https://github.com/symfony/polyfill"
  10611. }
  10612. },
  10613. "autoload": {
  10614. "files": [
  10615. "bootstrap.php"
  10616. ],
  10617. "psr-4": {
  10618. "Symfony\\Polyfill\\Php83\\": ""
  10619. },
  10620. "classmap": [
  10621. "Resources/stubs"
  10622. ]
  10623. },
  10624. "notification-url": "https://packagist.org/downloads/",
  10625. "license": [
  10626. "MIT"
  10627. ],
  10628. "authors": [
  10629. {
  10630. "name": "Nicolas Grekas",
  10631. "email": "p@tchwork.com"
  10632. },
  10633. {
  10634. "name": "Symfony Community",
  10635. "homepage": "https://symfony.com/contributors"
  10636. }
  10637. ],
  10638. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10639. "homepage": "https://symfony.com",
  10640. "keywords": [
  10641. "compatibility",
  10642. "polyfill",
  10643. "portable",
  10644. "shim"
  10645. ],
  10646. "support": {
  10647. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10648. },
  10649. "funding": [
  10650. {
  10651. "url": "https://symfony.com/sponsor",
  10652. "type": "custom"
  10653. },
  10654. {
  10655. "url": "https://github.com/fabpot",
  10656. "type": "github"
  10657. },
  10658. {
  10659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10660. "type": "tidelift"
  10661. }
  10662. ],
  10663. "time": "2024-09-09T11:45:10+00:00"
  10664. },
  10665. {
  10666. "name": "symfony/process",
  10667. "version": "v6.4.14",
  10668. "source": {
  10669. "type": "git",
  10670. "url": "https://github.com/symfony/process.git",
  10671. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  10672. },
  10673. "dist": {
  10674. "type": "zip",
  10675. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  10676. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  10677. "shasum": ""
  10678. },
  10679. "require": {
  10680. "php": ">=8.1"
  10681. },
  10682. "type": "library",
  10683. "autoload": {
  10684. "psr-4": {
  10685. "Symfony\\Component\\Process\\": ""
  10686. },
  10687. "exclude-from-classmap": [
  10688. "/Tests/"
  10689. ]
  10690. },
  10691. "notification-url": "https://packagist.org/downloads/",
  10692. "license": [
  10693. "MIT"
  10694. ],
  10695. "authors": [
  10696. {
  10697. "name": "Fabien Potencier",
  10698. "email": "fabien@symfony.com"
  10699. },
  10700. {
  10701. "name": "Symfony Community",
  10702. "homepage": "https://symfony.com/contributors"
  10703. }
  10704. ],
  10705. "description": "Executes commands in sub-processes",
  10706. "homepage": "https://symfony.com",
  10707. "support": {
  10708. "source": "https://github.com/symfony/process/tree/v6.4.14"
  10709. },
  10710. "funding": [
  10711. {
  10712. "url": "https://symfony.com/sponsor",
  10713. "type": "custom"
  10714. },
  10715. {
  10716. "url": "https://github.com/fabpot",
  10717. "type": "github"
  10718. },
  10719. {
  10720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10721. "type": "tidelift"
  10722. }
  10723. ],
  10724. "time": "2024-11-06T09:25:01+00:00"
  10725. },
  10726. {
  10727. "name": "symfony/stopwatch",
  10728. "version": "v6.4.13",
  10729. "source": {
  10730. "type": "git",
  10731. "url": "https://github.com/symfony/stopwatch.git",
  10732. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  10733. },
  10734. "dist": {
  10735. "type": "zip",
  10736. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10737. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10738. "shasum": ""
  10739. },
  10740. "require": {
  10741. "php": ">=8.1",
  10742. "symfony/service-contracts": "^2.5|^3"
  10743. },
  10744. "type": "library",
  10745. "autoload": {
  10746. "psr-4": {
  10747. "Symfony\\Component\\Stopwatch\\": ""
  10748. },
  10749. "exclude-from-classmap": [
  10750. "/Tests/"
  10751. ]
  10752. },
  10753. "notification-url": "https://packagist.org/downloads/",
  10754. "license": [
  10755. "MIT"
  10756. ],
  10757. "authors": [
  10758. {
  10759. "name": "Fabien Potencier",
  10760. "email": "fabien@symfony.com"
  10761. },
  10762. {
  10763. "name": "Symfony Community",
  10764. "homepage": "https://symfony.com/contributors"
  10765. }
  10766. ],
  10767. "description": "Provides a way to profile code",
  10768. "homepage": "https://symfony.com",
  10769. "support": {
  10770. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  10771. },
  10772. "funding": [
  10773. {
  10774. "url": "https://symfony.com/sponsor",
  10775. "type": "custom"
  10776. },
  10777. {
  10778. "url": "https://github.com/fabpot",
  10779. "type": "github"
  10780. },
  10781. {
  10782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10783. "type": "tidelift"
  10784. }
  10785. ],
  10786. "time": "2024-09-25T14:18:03+00:00"
  10787. },
  10788. {
  10789. "name": "theseer/tokenizer",
  10790. "version": "1.2.3",
  10791. "source": {
  10792. "type": "git",
  10793. "url": "https://github.com/theseer/tokenizer.git",
  10794. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10795. },
  10796. "dist": {
  10797. "type": "zip",
  10798. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10799. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10800. "shasum": ""
  10801. },
  10802. "require": {
  10803. "ext-dom": "*",
  10804. "ext-tokenizer": "*",
  10805. "ext-xmlwriter": "*",
  10806. "php": "^7.2 || ^8.0"
  10807. },
  10808. "type": "library",
  10809. "autoload": {
  10810. "classmap": [
  10811. "src/"
  10812. ]
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "BSD-3-Clause"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Arne Blankerts",
  10821. "email": "arne@blankerts.de",
  10822. "role": "Developer"
  10823. }
  10824. ],
  10825. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10826. "support": {
  10827. "issues": "https://github.com/theseer/tokenizer/issues",
  10828. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10829. },
  10830. "funding": [
  10831. {
  10832. "url": "https://github.com/theseer",
  10833. "type": "github"
  10834. }
  10835. ],
  10836. "time": "2024-03-03T12:36:25+00:00"
  10837. }
  10838. ],
  10839. "aliases": [],
  10840. "minimum-stability": "dev",
  10841. "stability-flags": [],
  10842. "prefer-stable": true,
  10843. "prefer-lowest": false,
  10844. "platform": {
  10845. "php": ">=8.1"
  10846. },
  10847. "platform-dev": [],
  10848. "plugin-api-version": "2.6.0"
  10849. }