composer.lock 378 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687
  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": "1f3e4f9eb6cb2b59a5b4e2acc6bc716e",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  20. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^10.1",
  29. "vimeo/psalm": "6.8.8"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.12.3"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2025-02-28T13:11:00+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "doctrine/annotations",
  140. "version": "2.0.1",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/doctrine/annotations.git",
  144. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "doctrine/lexer": "^2 || ^3",
  154. "ext-tokenizer": "*",
  155. "php": "^7.2 || ^8.0",
  156. "psr/cache": "^1 || ^2 || ^3"
  157. },
  158. "require-dev": {
  159. "doctrine/cache": "^2.0",
  160. "doctrine/coding-standard": "^10",
  161. "phpstan/phpstan": "^1.8.0",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  163. "symfony/cache": "^5.4 || ^6",
  164. "vimeo/psalm": "^4.10"
  165. },
  166. "suggest": {
  167. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "Docblock Annotations Parser",
  202. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  203. "keywords": [
  204. "annotations",
  205. "docblock",
  206. "parser"
  207. ],
  208. "support": {
  209. "issues": "https://github.com/doctrine/annotations/issues",
  210. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  211. },
  212. "time": "2023-02-02T22:02:53+00:00"
  213. },
  214. {
  215. "name": "doctrine/inflector",
  216. "version": "2.0.10",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/doctrine/inflector.git",
  220. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  225. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "doctrine/coding-standard": "^11.0",
  233. "phpstan/phpstan": "^1.8",
  234. "phpstan/phpstan-phpunit": "^1.1",
  235. "phpstan/phpstan-strict-rules": "^1.3",
  236. "phpunit/phpunit": "^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.25 || ^5.4"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com"
  265. },
  266. {
  267. "name": "Johannes Schmitt",
  268. "email": "schmittjoh@gmail.com"
  269. }
  270. ],
  271. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  272. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  273. "keywords": [
  274. "inflection",
  275. "inflector",
  276. "lowercase",
  277. "manipulation",
  278. "php",
  279. "plural",
  280. "singular",
  281. "strings",
  282. "uppercase",
  283. "words"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/inflector/issues",
  287. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2024-02-18T20:23:39+00:00"
  304. },
  305. {
  306. "name": "doctrine/instantiator",
  307. "version": "1.5.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/instantiator.git",
  311. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  316. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^11",
  324. "ext-pdo": "*",
  325. "ext-phar": "*",
  326. "phpbench/phpbench": "^0.16 || ^1",
  327. "phpstan/phpstan": "^1.4",
  328. "phpstan/phpstan-phpunit": "^1",
  329. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  330. "vimeo/psalm": "^4.30 || ^5.4"
  331. },
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Marco Pivetta",
  345. "email": "ocramius@gmail.com",
  346. "homepage": "https://ocramius.github.io/"
  347. }
  348. ],
  349. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  350. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  351. "keywords": [
  352. "constructor",
  353. "instantiate"
  354. ],
  355. "support": {
  356. "issues": "https://github.com/doctrine/instantiator/issues",
  357. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  358. },
  359. "funding": [
  360. {
  361. "url": "https://www.doctrine-project.org/sponsorship.html",
  362. "type": "custom"
  363. },
  364. {
  365. "url": "https://www.patreon.com/phpdoctrine",
  366. "type": "patreon"
  367. },
  368. {
  369. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  370. "type": "tidelift"
  371. }
  372. ],
  373. "time": "2022-12-30T00:15:36+00:00"
  374. },
  375. {
  376. "name": "doctrine/lexer",
  377. "version": "3.0.1",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/doctrine/lexer.git",
  381. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  386. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "php": "^8.1"
  391. },
  392. "require-dev": {
  393. "doctrine/coding-standard": "^12",
  394. "phpstan/phpstan": "^1.10",
  395. "phpunit/phpunit": "^10.5",
  396. "psalm/plugin-phpunit": "^0.18.3",
  397. "vimeo/psalm": "^5.21"
  398. },
  399. "type": "library",
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/doctrine/lexer/issues",
  434. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://www.doctrine-project.org/sponsorship.html",
  439. "type": "custom"
  440. },
  441. {
  442. "url": "https://www.patreon.com/phpdoctrine",
  443. "type": "patreon"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2024-02-05T11:56:58+00:00"
  451. },
  452. {
  453. "name": "fig/http-message-util",
  454. "version": "1.1.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/php-fig/http-message-util.git",
  458. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  463. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^5.3 || ^7.0 || ^8.0"
  468. },
  469. "suggest": {
  470. "psr/http-message": "The package containing the PSR-7 interfaces"
  471. },
  472. "type": "library",
  473. "extra": {
  474. "branch-alias": {
  475. "dev-master": "1.1.x-dev"
  476. }
  477. },
  478. "autoload": {
  479. "psr-4": {
  480. "Fig\\Http\\Message\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "PHP-FIG",
  490. "homepage": "https://www.php-fig.org/"
  491. }
  492. ],
  493. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  494. "keywords": [
  495. "http",
  496. "http-message",
  497. "psr",
  498. "psr-7",
  499. "request",
  500. "response"
  501. ],
  502. "support": {
  503. "issues": "https://github.com/php-fig/http-message-util/issues",
  504. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  505. },
  506. "time": "2020-11-24T22:02:12+00:00"
  507. },
  508. {
  509. "name": "fukuball/jieba-php",
  510. "version": "0.34",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/fukuball/jieba-php.git",
  514. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/44d62bda8b80fe07ff59e8fc654f477685109a66",
  519. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": ">= 5.3"
  524. },
  525. "require-dev": {
  526. "php-coveralls/php-coveralls": "dev-master",
  527. "phpunit/phpunit": "~9.0",
  528. "squizlabs/php_codesniffer": "4.0.x-dev"
  529. },
  530. "type": "library",
  531. "autoload": {
  532. "files": [
  533. "src/vendor/multi-array/MultiArray.php",
  534. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  535. ],
  536. "psr-4": {
  537. "Fukuball\\Jieba\\": "src/class/"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "fukuball",
  547. "email": "fukuball@gmail.com"
  548. }
  549. ],
  550. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  551. "keywords": [
  552. "Jieba",
  553. "php"
  554. ],
  555. "support": {
  556. "issues": "https://github.com/fukuball/jieba-php/issues",
  557. "source": "https://github.com/fukuball/jieba-php/tree/0.34"
  558. },
  559. "time": "2022-08-15T06:26:03+00:00"
  560. },
  561. {
  562. "name": "graham-campbell/result-type",
  563. "version": "v1.1.2",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  567. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  572. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": "^7.2.5 || ^8.0",
  577. "phpoption/phpoption": "^1.9.2"
  578. },
  579. "require-dev": {
  580. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  581. },
  582. "type": "library",
  583. "autoload": {
  584. "psr-4": {
  585. "GrahamCampbell\\ResultType\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Graham Campbell",
  595. "email": "hello@gjcampbell.co.uk",
  596. "homepage": "https://github.com/GrahamCampbell"
  597. }
  598. ],
  599. "description": "An Implementation Of The Result Type",
  600. "keywords": [
  601. "Graham Campbell",
  602. "GrahamCampbell",
  603. "Result Type",
  604. "Result-Type",
  605. "result"
  606. ],
  607. "support": {
  608. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  609. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  610. },
  611. "funding": [
  612. {
  613. "url": "https://github.com/GrahamCampbell",
  614. "type": "github"
  615. },
  616. {
  617. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  618. "type": "tidelift"
  619. }
  620. ],
  621. "time": "2023-11-12T22:16:48+00:00"
  622. },
  623. {
  624. "name": "guzzlehttp/guzzle",
  625. "version": "7.8.1",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/guzzle/guzzle.git",
  629. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  634. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "ext-json": "*",
  639. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  640. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  641. "php": "^7.2.5 || ^8.0",
  642. "psr/http-client": "^1.0",
  643. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  644. },
  645. "provide": {
  646. "psr/http-client-implementation": "1.0"
  647. },
  648. "require-dev": {
  649. "bamarni/composer-bin-plugin": "^1.8.2",
  650. "ext-curl": "*",
  651. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  652. "php-http/message-factory": "^1.1",
  653. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  654. "psr/log": "^1.1 || ^2.0 || ^3.0"
  655. },
  656. "suggest": {
  657. "ext-curl": "Required for CURL handler support",
  658. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  659. "psr/log": "Required for using the Log middleware"
  660. },
  661. "type": "library",
  662. "extra": {
  663. "bamarni-bin": {
  664. "bin-links": true,
  665. "forward-command": false
  666. }
  667. },
  668. "autoload": {
  669. "files": [
  670. "src/functions_include.php"
  671. ],
  672. "psr-4": {
  673. "GuzzleHttp\\": "src/"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Graham Campbell",
  683. "email": "hello@gjcampbell.co.uk",
  684. "homepage": "https://github.com/GrahamCampbell"
  685. },
  686. {
  687. "name": "Michael Dowling",
  688. "email": "mtdowling@gmail.com",
  689. "homepage": "https://github.com/mtdowling"
  690. },
  691. {
  692. "name": "Jeremy Lindblom",
  693. "email": "jeremeamia@gmail.com",
  694. "homepage": "https://github.com/jeremeamia"
  695. },
  696. {
  697. "name": "George Mponos",
  698. "email": "gmponos@gmail.com",
  699. "homepage": "https://github.com/gmponos"
  700. },
  701. {
  702. "name": "Tobias Nyholm",
  703. "email": "tobias.nyholm@gmail.com",
  704. "homepage": "https://github.com/Nyholm"
  705. },
  706. {
  707. "name": "Márk Sági-Kazár",
  708. "email": "mark.sagikazar@gmail.com",
  709. "homepage": "https://github.com/sagikazarmark"
  710. },
  711. {
  712. "name": "Tobias Schultze",
  713. "email": "webmaster@tubo-world.de",
  714. "homepage": "https://github.com/Tobion"
  715. }
  716. ],
  717. "description": "Guzzle is a PHP HTTP client library",
  718. "keywords": [
  719. "client",
  720. "curl",
  721. "framework",
  722. "http",
  723. "http client",
  724. "psr-18",
  725. "psr-7",
  726. "rest",
  727. "web service"
  728. ],
  729. "support": {
  730. "issues": "https://github.com/guzzle/guzzle/issues",
  731. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  732. },
  733. "funding": [
  734. {
  735. "url": "https://github.com/GrahamCampbell",
  736. "type": "github"
  737. },
  738. {
  739. "url": "https://github.com/Nyholm",
  740. "type": "github"
  741. },
  742. {
  743. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  744. "type": "tidelift"
  745. }
  746. ],
  747. "time": "2023-12-03T20:35:24+00:00"
  748. },
  749. {
  750. "name": "guzzlehttp/promises",
  751. "version": "2.0.2",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/guzzle/promises.git",
  755. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  760. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "php": "^7.2.5 || ^8.0"
  765. },
  766. "require-dev": {
  767. "bamarni/composer-bin-plugin": "^1.8.2",
  768. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  769. },
  770. "type": "library",
  771. "extra": {
  772. "bamarni-bin": {
  773. "bin-links": true,
  774. "forward-command": false
  775. }
  776. },
  777. "autoload": {
  778. "psr-4": {
  779. "GuzzleHttp\\Promise\\": "src/"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Graham Campbell",
  789. "email": "hello@gjcampbell.co.uk",
  790. "homepage": "https://github.com/GrahamCampbell"
  791. },
  792. {
  793. "name": "Michael Dowling",
  794. "email": "mtdowling@gmail.com",
  795. "homepage": "https://github.com/mtdowling"
  796. },
  797. {
  798. "name": "Tobias Nyholm",
  799. "email": "tobias.nyholm@gmail.com",
  800. "homepage": "https://github.com/Nyholm"
  801. },
  802. {
  803. "name": "Tobias Schultze",
  804. "email": "webmaster@tubo-world.de",
  805. "homepage": "https://github.com/Tobion"
  806. }
  807. ],
  808. "description": "Guzzle promises library",
  809. "keywords": [
  810. "promise"
  811. ],
  812. "support": {
  813. "issues": "https://github.com/guzzle/promises/issues",
  814. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  815. },
  816. "funding": [
  817. {
  818. "url": "https://github.com/GrahamCampbell",
  819. "type": "github"
  820. },
  821. {
  822. "url": "https://github.com/Nyholm",
  823. "type": "github"
  824. },
  825. {
  826. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  827. "type": "tidelift"
  828. }
  829. ],
  830. "time": "2023-12-03T20:19:20+00:00"
  831. },
  832. {
  833. "name": "guzzlehttp/psr7",
  834. "version": "2.6.2",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/guzzle/psr7.git",
  838. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  843. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "php": "^7.2.5 || ^8.0",
  848. "psr/http-factory": "^1.0",
  849. "psr/http-message": "^1.1 || ^2.0",
  850. "ralouphie/getallheaders": "^3.0"
  851. },
  852. "provide": {
  853. "psr/http-factory-implementation": "1.0",
  854. "psr/http-message-implementation": "1.0"
  855. },
  856. "require-dev": {
  857. "bamarni/composer-bin-plugin": "^1.8.2",
  858. "http-interop/http-factory-tests": "^0.9",
  859. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  860. },
  861. "suggest": {
  862. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "bamarni-bin": {
  867. "bin-links": true,
  868. "forward-command": false
  869. }
  870. },
  871. "autoload": {
  872. "psr-4": {
  873. "GuzzleHttp\\Psr7\\": "src/"
  874. }
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "MIT"
  879. ],
  880. "authors": [
  881. {
  882. "name": "Graham Campbell",
  883. "email": "hello@gjcampbell.co.uk",
  884. "homepage": "https://github.com/GrahamCampbell"
  885. },
  886. {
  887. "name": "Michael Dowling",
  888. "email": "mtdowling@gmail.com",
  889. "homepage": "https://github.com/mtdowling"
  890. },
  891. {
  892. "name": "George Mponos",
  893. "email": "gmponos@gmail.com",
  894. "homepage": "https://github.com/gmponos"
  895. },
  896. {
  897. "name": "Tobias Nyholm",
  898. "email": "tobias.nyholm@gmail.com",
  899. "homepage": "https://github.com/Nyholm"
  900. },
  901. {
  902. "name": "Márk Sági-Kazár",
  903. "email": "mark.sagikazar@gmail.com",
  904. "homepage": "https://github.com/sagikazarmark"
  905. },
  906. {
  907. "name": "Tobias Schultze",
  908. "email": "webmaster@tubo-world.de",
  909. "homepage": "https://github.com/Tobion"
  910. },
  911. {
  912. "name": "Márk Sági-Kazár",
  913. "email": "mark.sagikazar@gmail.com",
  914. "homepage": "https://sagikazarmark.hu"
  915. }
  916. ],
  917. "description": "PSR-7 message implementation that also provides common utility methods",
  918. "keywords": [
  919. "http",
  920. "message",
  921. "psr-7",
  922. "request",
  923. "response",
  924. "stream",
  925. "uri",
  926. "url"
  927. ],
  928. "support": {
  929. "issues": "https://github.com/guzzle/psr7/issues",
  930. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  931. },
  932. "funding": [
  933. {
  934. "url": "https://github.com/GrahamCampbell",
  935. "type": "github"
  936. },
  937. {
  938. "url": "https://github.com/Nyholm",
  939. "type": "github"
  940. },
  941. {
  942. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  943. "type": "tidelift"
  944. }
  945. ],
  946. "time": "2023-12-03T20:05:35+00:00"
  947. },
  948. {
  949. "name": "hyperf/cache",
  950. "version": "v3.1.23",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/hyperf/cache.git",
  954. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  959. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "hyperf/codec": "~3.1.0",
  964. "hyperf/collection": "~3.1.0",
  965. "hyperf/contract": "~3.1.0",
  966. "hyperf/support": "~3.1.0",
  967. "hyperf/utils": "~3.1.0",
  968. "php": ">=8.1",
  969. "psr/container": "^1.0|^2.0",
  970. "psr/simple-cache": "^1.0|^2.0|^3.0"
  971. },
  972. "suggest": {
  973. "hyperf/di": "Use cache annotations.",
  974. "hyperf/event": "Use listener to delete annotation cache."
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-master": "3.1-dev"
  980. },
  981. "hyperf": {
  982. "config": "Hyperf\\Cache\\ConfigProvider"
  983. }
  984. },
  985. "autoload": {
  986. "psr-4": {
  987. "Hyperf\\Cache\\": "src/"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "description": "A cache component for hyperf.",
  995. "homepage": "https://hyperf.io",
  996. "keywords": [
  997. "cache",
  998. "hyperf",
  999. "php"
  1000. ],
  1001. "support": {
  1002. "docs": "https://hyperf.wiki",
  1003. "issues": "https://github.com/hyperf/hyperf/issues",
  1004. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1005. "source": "https://github.com/hyperf/hyperf"
  1006. },
  1007. "funding": [
  1008. {
  1009. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1010. "type": "custom"
  1011. },
  1012. {
  1013. "url": "https://opencollective.com/hyperf",
  1014. "type": "open_collective"
  1015. }
  1016. ],
  1017. "time": "2024-05-23T03:43:58+00:00"
  1018. },
  1019. {
  1020. "name": "hyperf/code-parser",
  1021. "version": "v3.1.15",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/hyperf/code-parser.git",
  1025. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1030. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "hyperf/collection": "~3.1.0",
  1035. "hyperf/stringable": "~3.1.0",
  1036. "hyperf/support": "~3.1.0",
  1037. "php": ">=8.1"
  1038. },
  1039. "suggest": {
  1040. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1041. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "3.1-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-4": {
  1051. "Hyperf\\CodeParser\\": "src/"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "description": "A code parser component for Hyperf.",
  1059. "homepage": "https://hyperf.io",
  1060. "keywords": [
  1061. "code-parser",
  1062. "hyperf",
  1063. "php",
  1064. "swoole"
  1065. ],
  1066. "support": {
  1067. "docs": "https://hyperf.wiki",
  1068. "issues": "https://github.com/hyperf/hyperf/issues",
  1069. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1070. "source": "https://github.com/hyperf/hyperf"
  1071. },
  1072. "funding": [
  1073. {
  1074. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1075. "type": "custom"
  1076. },
  1077. {
  1078. "url": "https://opencollective.com/hyperf",
  1079. "type": "open_collective"
  1080. }
  1081. ],
  1082. "time": "2024-03-23T11:28:51+00:00"
  1083. },
  1084. {
  1085. "name": "hyperf/codec",
  1086. "version": "v3.1.15",
  1087. "source": {
  1088. "type": "git",
  1089. "url": "https://github.com/hyperf/codec.git",
  1090. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1091. },
  1092. "dist": {
  1093. "type": "zip",
  1094. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1095. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1096. "shasum": ""
  1097. },
  1098. "require": {
  1099. "ext-json": "*",
  1100. "ext-xml": "*",
  1101. "hyperf/contract": "~3.1.0",
  1102. "php": ">=8.1"
  1103. },
  1104. "suggest": {
  1105. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "3.1-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Hyperf\\Codec\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "description": "A codec component for Hyperf.",
  1123. "homepage": "https://hyperf.io",
  1124. "keywords": [
  1125. "codec",
  1126. "hyperf",
  1127. "php",
  1128. "swoole"
  1129. ],
  1130. "support": {
  1131. "docs": "https://hyperf.wiki",
  1132. "issues": "https://github.com/hyperf/hyperf/issues",
  1133. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1134. "source": "https://github.com/hyperf/hyperf"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://opencollective.com/hyperf",
  1143. "type": "open_collective"
  1144. }
  1145. ],
  1146. "time": "2024-03-23T11:28:51+00:00"
  1147. },
  1148. {
  1149. "name": "hyperf/collection",
  1150. "version": "v3.1.23.2",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/hyperf/collection.git",
  1154. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1159. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "hyperf/conditionable": "~3.1.0",
  1164. "hyperf/contract": "~3.1.0",
  1165. "hyperf/macroable": "~3.1.0",
  1166. "hyperf/stringable": "~3.1.0",
  1167. "php": ">=8.1"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "3.1-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "files": [
  1177. "src/Functions.php"
  1178. ],
  1179. "psr-4": {
  1180. "Hyperf\\Collection\\": "src/"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "description": "Hyperf Collection package which come from illuminate/collections",
  1188. "homepage": "https://hyperf.io",
  1189. "keywords": [
  1190. "collection",
  1191. "hyperf",
  1192. "php",
  1193. "swoole"
  1194. ],
  1195. "support": {
  1196. "docs": "https://hyperf.wiki",
  1197. "issues": "https://github.com/hyperf/hyperf/issues",
  1198. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1199. "source": "https://github.com/hyperf/hyperf"
  1200. },
  1201. "funding": [
  1202. {
  1203. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1204. "type": "custom"
  1205. },
  1206. {
  1207. "url": "https://opencollective.com/hyperf",
  1208. "type": "open_collective"
  1209. }
  1210. ],
  1211. "time": "2024-05-24T08:33:42+00:00"
  1212. },
  1213. {
  1214. "name": "hyperf/command",
  1215. "version": "v3.1.24",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/hyperf/command.git",
  1219. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1224. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "hyperf/collection": "~3.1.0",
  1229. "hyperf/context": "~3.1.0",
  1230. "hyperf/contract": "~3.1.0",
  1231. "hyperf/coroutine": "~3.1.0",
  1232. "hyperf/di": "~3.1.0",
  1233. "hyperf/stringable": "~3.1.0",
  1234. "hyperf/support": "~3.1.0",
  1235. "hyperf/tappable": "~3.1.0",
  1236. "php": ">=8.1",
  1237. "psr/event-dispatcher": "^1.0",
  1238. "symfony/console": "^5.0|^6.0|^7.0"
  1239. },
  1240. "suggest": {
  1241. "hyperf/di": "Required to use annotations.",
  1242. "hyperf/event": "Required to use listeners."
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "3.1-dev"
  1248. },
  1249. "hyperf": {
  1250. "config": "Hyperf\\Command\\ConfigProvider"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Hyperf\\Command\\": "src/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "description": "Command for hyperf",
  1263. "keywords": [
  1264. "command",
  1265. "php",
  1266. "swoole"
  1267. ],
  1268. "support": {
  1269. "issues": "https://github.com/hyperf/command/issues",
  1270. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1271. },
  1272. "funding": [
  1273. {
  1274. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1275. "type": "custom"
  1276. },
  1277. {
  1278. "url": "https://opencollective.com/hyperf",
  1279. "type": "open_collective"
  1280. }
  1281. ],
  1282. "time": "2024-05-27T12:37:07+00:00"
  1283. },
  1284. {
  1285. "name": "hyperf/conditionable",
  1286. "version": "v3.1.15",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/hyperf/conditionable.git",
  1290. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1295. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=8.1"
  1300. },
  1301. "type": "library",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "3.1-dev"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-4": {
  1309. "Hyperf\\Conditionable\\": "src/"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1317. "homepage": "https://hyperf.io",
  1318. "keywords": [
  1319. "conditionable",
  1320. "hyperf",
  1321. "php",
  1322. "swoole"
  1323. ],
  1324. "support": {
  1325. "docs": "https://hyperf.wiki",
  1326. "issues": "https://github.com/hyperf/hyperf/issues",
  1327. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1328. "source": "https://github.com/hyperf/hyperf"
  1329. },
  1330. "funding": [
  1331. {
  1332. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1333. "type": "custom"
  1334. },
  1335. {
  1336. "url": "https://opencollective.com/hyperf",
  1337. "type": "open_collective"
  1338. }
  1339. ],
  1340. "time": "2024-03-23T11:28:51+00:00"
  1341. },
  1342. {
  1343. "name": "hyperf/config",
  1344. "version": "v3.1.15",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/hyperf/config.git",
  1348. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1353. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "hyperf/collection": "~3.1.0",
  1358. "hyperf/contract": "~3.1.0",
  1359. "hyperf/support": "~3.1.0",
  1360. "php": ">=8.1",
  1361. "psr/container": "^1.0|^2.0",
  1362. "symfony/finder": "^5.0|^6.0|^7.0"
  1363. },
  1364. "suggest": {
  1365. "hyperf/context": "Required to use config()",
  1366. "hyperf/di": "Allows using @Value annotation",
  1367. "hyperf/event": "Allows using @Value annotation",
  1368. "hyperf/framework": "Allows using @Value annotation",
  1369. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1370. },
  1371. "type": "library",
  1372. "extra": {
  1373. "branch-alias": {
  1374. "dev-master": "3.1-dev"
  1375. },
  1376. "hyperf": {
  1377. "config": "Hyperf\\Config\\ConfigProvider"
  1378. }
  1379. },
  1380. "autoload": {
  1381. "files": [
  1382. "./src/Functions.php"
  1383. ],
  1384. "psr-4": {
  1385. "Hyperf\\Config\\": "src/"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "description": "An independent component that provides configuration container.",
  1393. "homepage": "https://hyperf.io",
  1394. "keywords": [
  1395. "config",
  1396. "configuration",
  1397. "hyperf",
  1398. "php",
  1399. "swoole"
  1400. ],
  1401. "support": {
  1402. "docs": "https://hyperf.wiki",
  1403. "issues": "https://github.com/hyperf/hyperf/issues",
  1404. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1405. "source": "https://github.com/hyperf/hyperf"
  1406. },
  1407. "funding": [
  1408. {
  1409. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1410. "type": "custom"
  1411. },
  1412. {
  1413. "url": "https://opencollective.com/hyperf",
  1414. "type": "open_collective"
  1415. }
  1416. ],
  1417. "time": "2024-03-23T11:28:51+00:00"
  1418. },
  1419. {
  1420. "name": "hyperf/config-center",
  1421. "version": "v3.1.15",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/hyperf/config-center.git",
  1425. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1430. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1431. "shasum": ""
  1432. },
  1433. "require": {
  1434. "hyperf/support": "~3.1.0",
  1435. "php": ">=8.1"
  1436. },
  1437. "suggest": {
  1438. "hyperf/process": "^2.1"
  1439. },
  1440. "type": "library",
  1441. "extra": {
  1442. "branch-alias": {
  1443. "dev-master": "3.1-dev"
  1444. },
  1445. "hyperf": {
  1446. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1447. }
  1448. },
  1449. "autoload": {
  1450. "psr-4": {
  1451. "Hyperf\\ConfigCenter\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "description": "The abstraction component of config center",
  1459. "homepage": "https://hyperf.io",
  1460. "keywords": [
  1461. "config-center",
  1462. "hyperf",
  1463. "php"
  1464. ],
  1465. "support": {
  1466. "docs": "https://hyperf.wiki",
  1467. "issues": "https://github.com/hyperf/hyperf/issues",
  1468. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1469. "source": "https://github.com/hyperf/hyperf"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://opencollective.com/hyperf",
  1478. "type": "open_collective"
  1479. }
  1480. ],
  1481. "time": "2024-03-23T11:28:51+00:00"
  1482. },
  1483. {
  1484. "name": "hyperf/config-nacos",
  1485. "version": "v3.1.15",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/hyperf/config-nacos.git",
  1489. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1494. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "hyperf/codec": "~3.1.0",
  1499. "hyperf/config-center": "~3.1.0",
  1500. "hyperf/contract": "~3.1.0",
  1501. "hyperf/guzzle": "~3.1.0",
  1502. "hyperf/nacos": "~3.1.0",
  1503. "hyperf/support": "~3.1.0",
  1504. "hyperf/utils": "~3.1.0",
  1505. "jetbrains/phpstorm-attributes": "^1.0",
  1506. "php": ">=8.1"
  1507. },
  1508. "suggest": {
  1509. "ext-json": "*",
  1510. "ext-simplexml": "*",
  1511. "ext-yaml": "*",
  1512. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1513. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1514. "hyperf/process": "Required to use processes. (~2.2.0)"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "3.1-dev"
  1520. },
  1521. "hyperf": {
  1522. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1523. }
  1524. },
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Hyperf\\ConfigNacos\\": "src/"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "description": "A nacos adapter for config center component.",
  1535. "homepage": "https://hyperf.io",
  1536. "keywords": [
  1537. "hyperf",
  1538. "nacos",
  1539. "php",
  1540. "swoole"
  1541. ],
  1542. "support": {
  1543. "docs": "https://hyperf.wiki",
  1544. "issues": "https://github.com/hyperf/hyperf/issues",
  1545. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1546. "source": "https://github.com/hyperf/hyperf"
  1547. },
  1548. "funding": [
  1549. {
  1550. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1551. "type": "custom"
  1552. },
  1553. {
  1554. "url": "https://opencollective.com/hyperf",
  1555. "type": "open_collective"
  1556. }
  1557. ],
  1558. "time": "2024-03-23T11:28:51+00:00"
  1559. },
  1560. {
  1561. "name": "hyperf/constants",
  1562. "version": "v3.1.16",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/hyperf/constants.git",
  1566. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1571. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "hyperf/di": "~3.1.0",
  1576. "hyperf/support": "~3.1.0",
  1577. "hyperf/utils": "~3.1.0",
  1578. "php": ">=8.1"
  1579. },
  1580. "suggest": {
  1581. "hyperf/translation": "Required to use translation."
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "3.1-dev"
  1587. },
  1588. "hyperf": {
  1589. "config": "Hyperf\\Constants\\ConfigProvider"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Hyperf\\Constants\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "description": "A constants component for hyperf.",
  1602. "homepage": "https://hyperf.io",
  1603. "keywords": [
  1604. "constants",
  1605. "hyperf",
  1606. "php"
  1607. ],
  1608. "support": {
  1609. "docs": "https://hyperf.wiki",
  1610. "issues": "https://github.com/hyperf/hyperf/issues",
  1611. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1612. "source": "https://github.com/hyperf/hyperf"
  1613. },
  1614. "funding": [
  1615. {
  1616. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1617. "type": "custom"
  1618. },
  1619. {
  1620. "url": "https://opencollective.com/hyperf",
  1621. "type": "open_collective"
  1622. }
  1623. ],
  1624. "time": "2024-03-31T11:35:28+00:00"
  1625. },
  1626. {
  1627. "name": "hyperf/consul",
  1628. "version": "v3.1.22",
  1629. "source": {
  1630. "type": "git",
  1631. "url": "https://github.com/hyperf/consul.git",
  1632. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1633. },
  1634. "dist": {
  1635. "type": "zip",
  1636. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1637. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1638. "shasum": ""
  1639. },
  1640. "require": {
  1641. "guzzlehttp/guzzle": "^6.3|^7.0",
  1642. "php": ">=8.1"
  1643. },
  1644. "require-dev": {
  1645. "hyperf/guzzle": "~3.1.0"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "3.1-dev"
  1651. },
  1652. "hyperf": {
  1653. "config": "Hyperf\\Consul\\ConfigProvider"
  1654. }
  1655. },
  1656. "autoload": {
  1657. "psr-4": {
  1658. "Hyperf\\Consul\\": "src/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "description": "A Consul Client for Hyperf.",
  1666. "homepage": "https://hyperf.io",
  1667. "keywords": [
  1668. "consul",
  1669. "consul-client",
  1670. "hyperf",
  1671. "php",
  1672. "swoole"
  1673. ],
  1674. "support": {
  1675. "docs": "https://hyperf.wiki",
  1676. "issues": "https://github.com/hyperf/hyperf/issues",
  1677. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1678. "source": "https://github.com/hyperf/hyperf"
  1679. },
  1680. "funding": [
  1681. {
  1682. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1683. "type": "custom"
  1684. },
  1685. {
  1686. "url": "https://opencollective.com/hyperf",
  1687. "type": "open_collective"
  1688. }
  1689. ],
  1690. "time": "2024-05-15T06:42:24+00:00"
  1691. },
  1692. {
  1693. "name": "hyperf/context",
  1694. "version": "v3.1.15",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/hyperf/context.git",
  1698. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1703. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "hyperf/engine": "^2.0",
  1708. "php": ">=8.1"
  1709. },
  1710. "suggest": {
  1711. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "3.1-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "Hyperf\\Context\\": "src/"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "description": "A coroutine/application context library.",
  1729. "homepage": "https://hyperf.io",
  1730. "keywords": [
  1731. "Context",
  1732. "hyperf",
  1733. "php",
  1734. "swoole"
  1735. ],
  1736. "support": {
  1737. "docs": "https://hyperf.wiki",
  1738. "issues": "https://github.com/hyperf/hyperf/issues",
  1739. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1740. "source": "https://github.com/hyperf/hyperf"
  1741. },
  1742. "funding": [
  1743. {
  1744. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1745. "type": "custom"
  1746. },
  1747. {
  1748. "url": "https://opencollective.com/hyperf",
  1749. "type": "open_collective"
  1750. }
  1751. ],
  1752. "time": "2024-03-23T11:28:51+00:00"
  1753. },
  1754. {
  1755. "name": "hyperf/contract",
  1756. "version": "v3.1.15",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/hyperf/contract.git",
  1760. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1765. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "php": ">=8.1"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "3.1-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Hyperf\\Contract\\": "src/"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "description": "The contracts of Hyperf.",
  1787. "homepage": "https://hyperf.io",
  1788. "keywords": [
  1789. "hyperf",
  1790. "php",
  1791. "swoole"
  1792. ],
  1793. "support": {
  1794. "docs": "https://hyperf.wiki",
  1795. "issues": "https://github.com/hyperf/hyperf/issues",
  1796. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1797. "source": "https://github.com/hyperf/hyperf"
  1798. },
  1799. "funding": [
  1800. {
  1801. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1802. "type": "custom"
  1803. },
  1804. {
  1805. "url": "https://opencollective.com/hyperf",
  1806. "type": "open_collective"
  1807. }
  1808. ],
  1809. "time": "2024-03-23T11:28:51+00:00"
  1810. },
  1811. {
  1812. "name": "hyperf/coordinator",
  1813. "version": "v3.1.21",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/hyperf/coordinator.git",
  1817. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1822. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1823. "shasum": ""
  1824. },
  1825. "require": {
  1826. "hyperf/engine": "^2.0",
  1827. "php": ">=8.1"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-master": "3.1-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "files": [
  1837. "src/Functions.php"
  1838. ],
  1839. "psr-4": {
  1840. "Hyperf\\Coordinator\\": "src/"
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "description": "Hyperf Coordinator",
  1848. "homepage": "https://hyperf.io",
  1849. "keywords": [
  1850. "Coordinator",
  1851. "hyperf",
  1852. "php",
  1853. "swoole"
  1854. ],
  1855. "support": {
  1856. "docs": "https://hyperf.wiki",
  1857. "issues": "https://github.com/hyperf/hyperf/issues",
  1858. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1859. "source": "https://github.com/hyperf/hyperf"
  1860. },
  1861. "funding": [
  1862. {
  1863. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1864. "type": "custom"
  1865. },
  1866. {
  1867. "url": "https://opencollective.com/hyperf",
  1868. "type": "open_collective"
  1869. }
  1870. ],
  1871. "time": "2024-05-09T02:35:08+00:00"
  1872. },
  1873. {
  1874. "name": "hyperf/coroutine",
  1875. "version": "v3.1.15",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/hyperf/coroutine.git",
  1879. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1884. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "hyperf/context": "~3.1.0",
  1889. "hyperf/contract": "~3.1.0",
  1890. "hyperf/engine": "^2.0",
  1891. "php": ">=8.1"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "3.1-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "files": [
  1901. "src/Functions.php"
  1902. ],
  1903. "psr-4": {
  1904. "Hyperf\\Coroutine\\": "src/"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "description": "Hyperf Coroutine",
  1912. "homepage": "https://hyperf.io",
  1913. "keywords": [
  1914. "coroutine",
  1915. "hyperf",
  1916. "php",
  1917. "swoole"
  1918. ],
  1919. "support": {
  1920. "docs": "https://hyperf.wiki",
  1921. "issues": "https://github.com/hyperf/hyperf/issues",
  1922. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1923. "source": "https://github.com/hyperf/hyperf"
  1924. },
  1925. "funding": [
  1926. {
  1927. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1928. "type": "custom"
  1929. },
  1930. {
  1931. "url": "https://opencollective.com/hyperf",
  1932. "type": "open_collective"
  1933. }
  1934. ],
  1935. "time": "2024-03-23T11:28:51+00:00"
  1936. },
  1937. {
  1938. "name": "hyperf/database",
  1939. "version": "v3.1.24",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/hyperf/database.git",
  1943. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1948. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1949. "shasum": ""
  1950. },
  1951. "require": {
  1952. "hyperf/code-parser": "~3.1.0",
  1953. "hyperf/collection": "~3.1.0",
  1954. "hyperf/macroable": "~3.1.0",
  1955. "hyperf/support": "~3.1.0",
  1956. "hyperf/tappable": "~3.1.0",
  1957. "hyperf/utils": "~3.1.0",
  1958. "nesbot/carbon": "^2.0",
  1959. "php": ">=8.1",
  1960. "psr/container": "^1.0|^2.0",
  1961. "psr/event-dispatcher": "^1.0"
  1962. },
  1963. "suggest": {
  1964. "doctrine/dbal": "Required to rename columns (^3.0).",
  1965. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1966. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1967. },
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "3.1-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Hyperf\\Database\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "description": "A flexible database library.",
  1984. "homepage": "https://hyperf.io",
  1985. "keywords": [
  1986. "database",
  1987. "hyperf",
  1988. "php"
  1989. ],
  1990. "support": {
  1991. "docs": "https://hyperf.wiki",
  1992. "issues": "https://github.com/hyperf/hyperf/issues",
  1993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1994. "source": "https://github.com/hyperf/hyperf"
  1995. },
  1996. "funding": [
  1997. {
  1998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1999. "type": "custom"
  2000. },
  2001. {
  2002. "url": "https://opencollective.com/hyperf",
  2003. "type": "open_collective"
  2004. }
  2005. ],
  2006. "time": "2024-05-24T06:14:27+00:00"
  2007. },
  2008. {
  2009. "name": "hyperf/db-connection",
  2010. "version": "v3.1.15",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hyperf/db-connection.git",
  2014. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2019. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "hyperf/database": "~3.1.0",
  2024. "hyperf/di": "~3.1.0",
  2025. "hyperf/framework": "~3.1.0",
  2026. "hyperf/model-listener": "~3.1.0",
  2027. "hyperf/pool": "~3.1.0",
  2028. "hyperf/support": "~3.1.0",
  2029. "hyperf/utils": "~3.1.0",
  2030. "php": ">=8.1",
  2031. "psr/container": "^1.0|^2.0"
  2032. },
  2033. "type": "library",
  2034. "extra": {
  2035. "branch-alias": {
  2036. "dev-master": "3.1-dev"
  2037. },
  2038. "hyperf": {
  2039. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-4": {
  2044. "Hyperf\\DbConnection\\": "src/"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "MIT"
  2050. ],
  2051. "description": "A hyperf db connection handler for hyperf/database.",
  2052. "homepage": "https://hyperf.io",
  2053. "keywords": [
  2054. "Connection",
  2055. "database",
  2056. "hyperf",
  2057. "php"
  2058. ],
  2059. "support": {
  2060. "docs": "https://hyperf.wiki",
  2061. "issues": "https://github.com/hyperf/hyperf/issues",
  2062. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2063. "source": "https://github.com/hyperf/hyperf"
  2064. },
  2065. "funding": [
  2066. {
  2067. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2068. "type": "custom"
  2069. },
  2070. {
  2071. "url": "https://opencollective.com/hyperf",
  2072. "type": "open_collective"
  2073. }
  2074. ],
  2075. "time": "2024-03-23T11:28:51+00:00"
  2076. },
  2077. {
  2078. "name": "hyperf/di",
  2079. "version": "v3.1.28",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/hyperf/di.git",
  2083. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2088. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "doctrine/instantiator": "^1.0",
  2093. "hyperf/code-parser": "~3.1.0",
  2094. "hyperf/pipeline": "~3.1.0",
  2095. "hyperf/stdlib": "~3.1.0",
  2096. "hyperf/support": "~3.1.0",
  2097. "nikic/php-parser": "^4.1",
  2098. "php": ">=8.1",
  2099. "php-di/phpdoc-reader": "^2.2",
  2100. "psr/container": "^1.0 || ^2.0",
  2101. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2102. "vlucas/phpdotenv": "^5.0"
  2103. },
  2104. "suggest": {
  2105. "ext-pcntl": "Required to scan annotations.",
  2106. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "branch-alias": {
  2111. "dev-master": "3.1-dev"
  2112. },
  2113. "hyperf": {
  2114. "config": "Hyperf\\Di\\ConfigProvider"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "psr-4": {
  2119. "Hyperf\\Di\\": "src/"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "description": "A DI for Hyperf.",
  2127. "homepage": "https://hyperf.io",
  2128. "keywords": [
  2129. "annotation",
  2130. "di",
  2131. "hyperf",
  2132. "php",
  2133. "swoole"
  2134. ],
  2135. "support": {
  2136. "docs": "https://hyperf.wiki",
  2137. "issues": "https://github.com/hyperf/hyperf/issues",
  2138. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2139. "source": "https://github.com/hyperf/hyperf"
  2140. },
  2141. "funding": [
  2142. {
  2143. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2144. "type": "custom"
  2145. },
  2146. {
  2147. "url": "https://opencollective.com/hyperf",
  2148. "type": "open_collective"
  2149. }
  2150. ],
  2151. "time": "2024-06-26T03:31:21+00:00"
  2152. },
  2153. {
  2154. "name": "hyperf/dispatcher",
  2155. "version": "v3.1.15",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/hyperf/dispatcher.git",
  2159. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2164. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "hyperf/contract": "~3.1.0",
  2169. "php": ">=8.1",
  2170. "psr/container": "^1.0|^2.0",
  2171. "psr/http-message": "^1.0|^2.0",
  2172. "psr/http-server-middleware": "^1.0"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "3.1-dev"
  2178. },
  2179. "hyperf": {
  2180. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "psr-4": {
  2185. "Hyperf\\Dispatcher\\": "src/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "description": "A HTTP Server for Hyperf.",
  2193. "homepage": "https://hyperf.io",
  2194. "keywords": [
  2195. "dispatcher",
  2196. "filter",
  2197. "hyperf",
  2198. "middleware",
  2199. "php",
  2200. "swoole"
  2201. ],
  2202. "support": {
  2203. "docs": "https://hyperf.wiki",
  2204. "issues": "https://github.com/hyperf/hyperf/issues",
  2205. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2206. "source": "https://github.com/hyperf/hyperf"
  2207. },
  2208. "funding": [
  2209. {
  2210. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2211. "type": "custom"
  2212. },
  2213. {
  2214. "url": "https://opencollective.com/hyperf",
  2215. "type": "open_collective"
  2216. }
  2217. ],
  2218. "time": "2024-03-23T11:28:51+00:00"
  2219. },
  2220. {
  2221. "name": "hyperf/engine",
  2222. "version": "v2.11.0",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/hyperf/engine.git",
  2226. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2231. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2232. "shasum": ""
  2233. },
  2234. "require": {
  2235. "hyperf/engine-contract": "~1.10.0",
  2236. "php": ">=8.0"
  2237. },
  2238. "conflict": {
  2239. "ext-swoole": "<5.0"
  2240. },
  2241. "require-dev": {
  2242. "friendsofphp/php-cs-fixer": "^3.0",
  2243. "hyperf/guzzle": "^3.0",
  2244. "hyperf/http-message": "^3.0",
  2245. "mockery/mockery": "^1.5",
  2246. "phpstan/phpstan": "^1.0",
  2247. "phpunit/phpunit": "^9.4",
  2248. "swoole/ide-helper": "5.*"
  2249. },
  2250. "suggest": {
  2251. "ext-sockets": "*",
  2252. "ext-swoole": ">=5.0",
  2253. "hyperf/http-message": "Required to use ResponseEmitter.",
  2254. "psr/http-message": "Required to use WebSocket Frame."
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-master": "2.11-dev"
  2260. },
  2261. "hyperf": {
  2262. "config": "Hyperf\\Engine\\ConfigProvider"
  2263. }
  2264. },
  2265. "autoload": {
  2266. "files": [
  2267. "src/Functions.php"
  2268. ],
  2269. "psr-4": {
  2270. "Hyperf\\Engine\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "description": "Coroutine engine provided by swoole.",
  2278. "keywords": [
  2279. "engine",
  2280. "hyperf",
  2281. "php",
  2282. "swoole"
  2283. ],
  2284. "support": {
  2285. "issues": "https://github.com/hyperf/engine/issues",
  2286. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2287. },
  2288. "funding": [
  2289. {
  2290. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2291. "type": "custom"
  2292. },
  2293. {
  2294. "url": "https://opencollective.com/hyperf",
  2295. "type": "open_collective"
  2296. }
  2297. ],
  2298. "time": "2024-04-17T13:36:28+00:00"
  2299. },
  2300. {
  2301. "name": "hyperf/engine-contract",
  2302. "version": "v1.10.1",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/hyperf/engine-contract.git",
  2306. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2311. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "php": ">=8.0"
  2316. },
  2317. "require-dev": {
  2318. "friendsofphp/php-cs-fixer": "^3.0",
  2319. "mockery/mockery": "^1.0",
  2320. "phpstan/phpstan": "^1.0",
  2321. "phpunit/phpunit": ">=7.0",
  2322. "psr/http-message": "^1.0",
  2323. "swoole/ide-helper": "^4.5"
  2324. },
  2325. "suggest": {
  2326. "psr/http-message": "Required to use WebSocket Frame."
  2327. },
  2328. "type": "library",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-master": "1.9-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Hyperf\\Engine\\Contract\\": "src/"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "description": "Contract for Coroutine Engine",
  2344. "keywords": [
  2345. "contract",
  2346. "coroutine",
  2347. "engine",
  2348. "hyperf",
  2349. "php"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/hyperf/engine-contract/issues",
  2353. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2354. },
  2355. "funding": [
  2356. {
  2357. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2358. "type": "custom"
  2359. },
  2360. {
  2361. "url": "https://opencollective.com/hyperf",
  2362. "type": "open_collective"
  2363. }
  2364. ],
  2365. "time": "2024-04-17T13:34:51+00:00"
  2366. },
  2367. {
  2368. "name": "hyperf/event",
  2369. "version": "v3.1.15",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/hyperf/event.git",
  2373. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2378. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "hyperf/contract": "~3.1.0",
  2383. "hyperf/stdlib": "~3.1.0",
  2384. "php": ">=8.1",
  2385. "psr/event-dispatcher": "^1.0"
  2386. },
  2387. "suggest": {
  2388. "hyperf/di": "Required to use annotatioins."
  2389. },
  2390. "type": "library",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "3.1-dev"
  2394. },
  2395. "hyperf": {
  2396. "config": "Hyperf\\Event\\ConfigProvider"
  2397. }
  2398. },
  2399. "autoload": {
  2400. "psr-4": {
  2401. "Hyperf\\Event\\": "src/"
  2402. }
  2403. },
  2404. "notification-url": "https://packagist.org/downloads/",
  2405. "license": [
  2406. "MIT"
  2407. ],
  2408. "description": "an event manager that implements PSR-14.",
  2409. "homepage": "https://hyperf.io",
  2410. "keywords": [
  2411. "event",
  2412. "hyperf",
  2413. "php",
  2414. "swoole"
  2415. ],
  2416. "support": {
  2417. "docs": "https://hyperf.wiki",
  2418. "issues": "https://github.com/hyperf/hyperf/issues",
  2419. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2420. "source": "https://github.com/hyperf/hyperf"
  2421. },
  2422. "funding": [
  2423. {
  2424. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2425. "type": "custom"
  2426. },
  2427. {
  2428. "url": "https://opencollective.com/hyperf",
  2429. "type": "open_collective"
  2430. }
  2431. ],
  2432. "time": "2024-03-23T11:28:51+00:00"
  2433. },
  2434. {
  2435. "name": "hyperf/exception-handler",
  2436. "version": "v3.1.22",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/hyperf/exception-handler.git",
  2440. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2445. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "hyperf/context": "~3.1.0",
  2450. "hyperf/contract": "~3.1.0",
  2451. "hyperf/dispatcher": "~3.1.0",
  2452. "hyperf/http-message": "~3.1.0",
  2453. "hyperf/stdlib": "~3.1.0",
  2454. "hyperf/support": "~3.1.0",
  2455. "php": ">=8.1",
  2456. "psr/container": "^1.0|^2.0",
  2457. "psr/http-message": "^1.0|^2.0",
  2458. "swow/psr7-plus": "^1.0"
  2459. },
  2460. "suggest": {
  2461. "hyperf/di": "Required to use #[ExceptionHandler]",
  2462. "hyperf/event": "Required to use listeners",
  2463. "hyperf/framework": "Required to use listeners",
  2464. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2465. },
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "3.1-dev"
  2470. },
  2471. "hyperf": {
  2472. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2473. }
  2474. },
  2475. "autoload": {
  2476. "psr-4": {
  2477. "Hyperf\\ExceptionHandler\\": "src/"
  2478. }
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "description": "Exception handler for hyperf",
  2485. "homepage": "https://hyperf.io",
  2486. "keywords": [
  2487. "exception-handler",
  2488. "php",
  2489. "swoole"
  2490. ],
  2491. "support": {
  2492. "docs": "https://hyperf.wiki",
  2493. "issues": "https://github.com/hyperf/hyperf/issues",
  2494. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2495. "source": "https://github.com/hyperf/hyperf"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2500. "type": "custom"
  2501. },
  2502. {
  2503. "url": "https://opencollective.com/hyperf",
  2504. "type": "open_collective"
  2505. }
  2506. ],
  2507. "time": "2024-05-15T07:12:41+00:00"
  2508. },
  2509. {
  2510. "name": "hyperf/framework",
  2511. "version": "v3.1.23",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/hyperf/framework.git",
  2515. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2520. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "fig/http-message-util": "^1.1.2",
  2525. "hyperf/contract": "~3.1.0",
  2526. "hyperf/coordinator": "~3.1.0",
  2527. "hyperf/coroutine": "~3.1.0",
  2528. "php": ">=8.1",
  2529. "psr/container": "^1.0|^2.0",
  2530. "psr/event-dispatcher": "^1.0",
  2531. "psr/log": "^1.0|^2.0|^3.0"
  2532. },
  2533. "suggest": {
  2534. "ext-swoole": "Required to use swoole engine.",
  2535. "hyperf/command": "Required to use Command annotation.",
  2536. "hyperf/di": "Required to use Command annotation.",
  2537. "hyperf/dispatcher": "Required to use BootApplication event.",
  2538. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2539. },
  2540. "type": "library",
  2541. "extra": {
  2542. "branch-alias": {
  2543. "dev-master": "3.1-dev"
  2544. },
  2545. "hyperf": {
  2546. "config": "Hyperf\\Framework\\ConfigProvider"
  2547. }
  2548. },
  2549. "autoload": {
  2550. "psr-4": {
  2551. "Hyperf\\Framework\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2559. "homepage": "https://hyperf.io",
  2560. "keywords": [
  2561. "Microservice",
  2562. "framework",
  2563. "hyperf",
  2564. "middleware",
  2565. "php",
  2566. "swoole"
  2567. ],
  2568. "support": {
  2569. "docs": "https://hyperf.wiki",
  2570. "issues": "https://github.com/hyperf/hyperf/issues",
  2571. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2572. "source": "https://github.com/hyperf/hyperf"
  2573. },
  2574. "funding": [
  2575. {
  2576. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2577. "type": "custom"
  2578. },
  2579. {
  2580. "url": "https://opencollective.com/hyperf",
  2581. "type": "open_collective"
  2582. }
  2583. ],
  2584. "time": "2024-05-21T05:43:48+00:00"
  2585. },
  2586. {
  2587. "name": "hyperf/guzzle",
  2588. "version": "v3.1.15",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/hyperf/guzzle.git",
  2592. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2597. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "guzzlehttp/guzzle": "^6.3|^7.0",
  2602. "php": ">=8.1",
  2603. "psr/container": "^1.0|^2.0",
  2604. "psr/http-message": "^1.0|^2.0"
  2605. },
  2606. "suggest": {
  2607. "ext-curl": "Required for CURL handler support",
  2608. "hyperf/pool": "Required to use pool handler."
  2609. },
  2610. "type": "library",
  2611. "extra": {
  2612. "branch-alias": {
  2613. "dev-master": "3.1-dev"
  2614. },
  2615. "hyperf": {
  2616. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Hyperf\\Guzzle\\": "src/"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "description": "Swoole coroutine handler for guzzle",
  2629. "keywords": [
  2630. "Guzzle",
  2631. "handler",
  2632. "php",
  2633. "swoole"
  2634. ],
  2635. "support": {
  2636. "issues": "https://github.com/hyperf/guzzle/issues",
  2637. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2638. },
  2639. "funding": [
  2640. {
  2641. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2642. "type": "custom"
  2643. },
  2644. {
  2645. "url": "https://opencollective.com/hyperf",
  2646. "type": "open_collective"
  2647. }
  2648. ],
  2649. "time": "2024-03-23T11:28:51+00:00"
  2650. },
  2651. {
  2652. "name": "hyperf/http-message",
  2653. "version": "v3.1.19",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/hyperf/http-message.git",
  2657. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2662. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "hyperf/codec": "~3.1.0",
  2667. "hyperf/engine": "^2.11",
  2668. "hyperf/support": "~3.1.0",
  2669. "laminas/laminas-mime": "^2.7",
  2670. "php": ">=8.1",
  2671. "psr/http-message": "^1.0|^2.0",
  2672. "swow/psr7-plus": "^1.0"
  2673. },
  2674. "suggest": {
  2675. "psr/container": "Required to replace RequestParserInterface."
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "3.1-dev"
  2681. },
  2682. "hyperf": {
  2683. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Hyperf\\HttpMessage\\": "src/"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "description": "microservice framework base on swoole",
  2696. "keywords": [
  2697. "http-message",
  2698. "hyperf",
  2699. "php",
  2700. "swoole"
  2701. ],
  2702. "support": {
  2703. "issues": "https://github.com/hyperf/http-message/issues",
  2704. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2705. },
  2706. "funding": [
  2707. {
  2708. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2709. "type": "custom"
  2710. },
  2711. {
  2712. "url": "https://opencollective.com/hyperf",
  2713. "type": "open_collective"
  2714. }
  2715. ],
  2716. "time": "2024-04-17T13:55:51+00:00"
  2717. },
  2718. {
  2719. "name": "hyperf/http-server",
  2720. "version": "v3.1.17",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://github.com/hyperf/http-server.git",
  2724. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2729. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2730. "shasum": ""
  2731. },
  2732. "require": {
  2733. "hyperf/codec": "~3.1.0",
  2734. "hyperf/collection": "~3.1.0",
  2735. "hyperf/context": "~3.1.0",
  2736. "hyperf/contract": "~3.1.0",
  2737. "hyperf/coroutine": "~3.1.0",
  2738. "hyperf/dispatcher": "~3.1.0",
  2739. "hyperf/event": "~3.1.0",
  2740. "hyperf/exception-handler": "~3.1.0",
  2741. "hyperf/http-message": "~3.1.0",
  2742. "hyperf/macroable": "~3.1.0",
  2743. "hyperf/serializer": "~3.1.0",
  2744. "hyperf/server": "~3.1.0",
  2745. "hyperf/stdlib": "~3.1.0",
  2746. "hyperf/support": "~3.1.0",
  2747. "nikic/fast-route": "^1.3",
  2748. "php": ">=8.1",
  2749. "psr/container": "^1.0|^2.0",
  2750. "swow/psr7-plus": "^1.0"
  2751. },
  2752. "suggest": {
  2753. "hyperf/di": "Required to use annotations."
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "3.1-dev"
  2759. },
  2760. "hyperf": {
  2761. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Hyperf\\HttpServer\\": "src/"
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "description": "A HTTP Server for Hyperf.",
  2774. "homepage": "https://hyperf.io",
  2775. "keywords": [
  2776. "http",
  2777. "http-server",
  2778. "hyperf",
  2779. "php",
  2780. "swoole"
  2781. ],
  2782. "support": {
  2783. "docs": "https://hyperf.wiki",
  2784. "issues": "https://github.com/hyperf/hyperf/issues",
  2785. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2786. "source": "https://github.com/hyperf/hyperf"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2791. "type": "custom"
  2792. },
  2793. {
  2794. "url": "https://opencollective.com/hyperf",
  2795. "type": "open_collective"
  2796. }
  2797. ],
  2798. "time": "2024-04-08T07:53:54+00:00"
  2799. },
  2800. {
  2801. "name": "hyperf/json-rpc",
  2802. "version": "v3.1.23",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/hyperf/json-rpc.git",
  2806. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2811. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2812. "shasum": ""
  2813. },
  2814. "require": {
  2815. "hyperf/codec": "~3.1.0",
  2816. "hyperf/context": "~3.1.0",
  2817. "hyperf/contract": "~3.1.0",
  2818. "hyperf/engine": "^2.0",
  2819. "hyperf/http-message": "~3.1.0",
  2820. "hyperf/load-balancer": "~3.1.0",
  2821. "hyperf/rpc": "~3.1.0",
  2822. "hyperf/serializer": "~3.1.0",
  2823. "hyperf/support": "~3.1.0",
  2824. "hyperf/utils": "~3.1.0",
  2825. "php": ">=8.1",
  2826. "psr/container": "^1.0|^2.0",
  2827. "swow/psr7-plus": "^1.0"
  2828. },
  2829. "suggest": {
  2830. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2831. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2832. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2833. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2834. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "3.1-dev"
  2840. },
  2841. "hyperf": {
  2842. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "Hyperf\\JsonRpc\\": "src/"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2855. "homepage": "https://hyperf.io",
  2856. "keywords": [
  2857. "hyperf",
  2858. "json-rpc",
  2859. "php",
  2860. "swoole"
  2861. ],
  2862. "support": {
  2863. "docs": "https://hyperf.wiki",
  2864. "issues": "https://github.com/hyperf/hyperf/issues",
  2865. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2866. "source": "https://github.com/hyperf/hyperf"
  2867. },
  2868. "funding": [
  2869. {
  2870. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2871. "type": "custom"
  2872. },
  2873. {
  2874. "url": "https://opencollective.com/hyperf",
  2875. "type": "open_collective"
  2876. }
  2877. ],
  2878. "time": "2024-05-23T03:43:58+00:00"
  2879. },
  2880. {
  2881. "name": "hyperf/load-balancer",
  2882. "version": "v3.1.15",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/hyperf/load-balancer.git",
  2886. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2891. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "hyperf/coordinator": "~3.1.0",
  2896. "hyperf/coroutine": "~3.1.0",
  2897. "markrogoyski/math-php": "^2.0",
  2898. "php": ">=8.1",
  2899. "psr/log": "^1.0|^2.0|^3.0"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-master": "3.1-dev"
  2905. },
  2906. "hyperf": {
  2907. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Hyperf\\LoadBalancer\\": "src/"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "description": "A load balancer library for Hyperf.",
  2920. "homepage": "https://hyperf.io",
  2921. "keywords": [
  2922. "hyperf",
  2923. "load-balancer",
  2924. "php",
  2925. "swoole"
  2926. ],
  2927. "support": {
  2928. "docs": "https://hyperf.wiki",
  2929. "issues": "https://github.com/hyperf/hyperf/issues",
  2930. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2931. "source": "https://github.com/hyperf/hyperf"
  2932. },
  2933. "funding": [
  2934. {
  2935. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2936. "type": "custom"
  2937. },
  2938. {
  2939. "url": "https://opencollective.com/hyperf",
  2940. "type": "open_collective"
  2941. }
  2942. ],
  2943. "time": "2024-03-23T11:28:51+00:00"
  2944. },
  2945. {
  2946. "name": "hyperf/logger",
  2947. "version": "v3.1.15",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/hyperf/logger.git",
  2951. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2956. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "hyperf/contract": "~3.1.0",
  2961. "hyperf/support": "~3.1.0",
  2962. "hyperf/utils": "~3.1.0",
  2963. "monolog/monolog": "^2.7|^3.1",
  2964. "php": ">=8.1",
  2965. "psr/container": "^1.0|^2.0",
  2966. "psr/log": "^1.0|^2.0|^3.0"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "3.1-dev"
  2972. },
  2973. "hyperf": {
  2974. "config": "Hyperf\\Logger\\ConfigProvider"
  2975. }
  2976. },
  2977. "autoload": {
  2978. "psr-4": {
  2979. "Hyperf\\Logger\\": "src/"
  2980. }
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "description": "A logger component for hyperf.",
  2987. "homepage": "https://hyperf.io",
  2988. "keywords": [
  2989. "hyperf",
  2990. "logger",
  2991. "php"
  2992. ],
  2993. "support": {
  2994. "docs": "https://hyperf.wiki",
  2995. "issues": "https://github.com/hyperf/hyperf/issues",
  2996. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2997. "source": "https://github.com/hyperf/hyperf"
  2998. },
  2999. "funding": [
  3000. {
  3001. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3002. "type": "custom"
  3003. },
  3004. {
  3005. "url": "https://opencollective.com/hyperf",
  3006. "type": "open_collective"
  3007. }
  3008. ],
  3009. "time": "2024-03-23T11:28:51+00:00"
  3010. },
  3011. {
  3012. "name": "hyperf/macroable",
  3013. "version": "v3.1.23",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/hyperf/macroable.git",
  3017. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3022. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=8.1"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-master": "3.1-dev"
  3032. }
  3033. },
  3034. "autoload": {
  3035. "psr-4": {
  3036. "Hyperf\\Macroable\\": "src/"
  3037. }
  3038. },
  3039. "notification-url": "https://packagist.org/downloads/",
  3040. "license": [
  3041. "MIT"
  3042. ],
  3043. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3044. "homepage": "https://hyperf.io",
  3045. "keywords": [
  3046. "hyperf",
  3047. "macroable",
  3048. "php",
  3049. "swoole"
  3050. ],
  3051. "support": {
  3052. "docs": "https://hyperf.wiki",
  3053. "issues": "https://github.com/hyperf/hyperf/issues",
  3054. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3055. "source": "https://github.com/hyperf/hyperf"
  3056. },
  3057. "funding": [
  3058. {
  3059. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3060. "type": "custom"
  3061. },
  3062. {
  3063. "url": "https://opencollective.com/hyperf",
  3064. "type": "open_collective"
  3065. }
  3066. ],
  3067. "time": "2024-05-20T09:55:40+00:00"
  3068. },
  3069. {
  3070. "name": "hyperf/memory",
  3071. "version": "v3.1.15",
  3072. "source": {
  3073. "type": "git",
  3074. "url": "https://github.com/hyperf/memory.git",
  3075. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3076. },
  3077. "dist": {
  3078. "type": "zip",
  3079. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3080. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3081. "shasum": ""
  3082. },
  3083. "require": {
  3084. "php": ">=8.1"
  3085. },
  3086. "type": "library",
  3087. "extra": {
  3088. "branch-alias": {
  3089. "dev-master": "3.1-dev"
  3090. },
  3091. "hyperf": {
  3092. "config": "Hyperf\\Memory\\ConfigProvider"
  3093. }
  3094. },
  3095. "autoload": {
  3096. "psr-4": {
  3097. "Hyperf\\Memory\\": "src/"
  3098. }
  3099. },
  3100. "notification-url": "https://packagist.org/downloads/",
  3101. "license": [
  3102. "MIT"
  3103. ],
  3104. "description": "An independent component that use to operate and manage memory.",
  3105. "homepage": "https://hyperf.io",
  3106. "keywords": [
  3107. "hyperf",
  3108. "memory",
  3109. "php",
  3110. "swoole"
  3111. ],
  3112. "support": {
  3113. "docs": "https://hyperf.wiki",
  3114. "issues": "https://github.com/hyperf/hyperf/issues",
  3115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3116. "source": "https://github.com/hyperf/hyperf"
  3117. },
  3118. "funding": [
  3119. {
  3120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3121. "type": "custom"
  3122. },
  3123. {
  3124. "url": "https://opencollective.com/hyperf",
  3125. "type": "open_collective"
  3126. }
  3127. ],
  3128. "time": "2024-03-23T11:28:51+00:00"
  3129. },
  3130. {
  3131. "name": "hyperf/model-listener",
  3132. "version": "v3.1.15",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/hyperf/model-listener.git",
  3136. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3141. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "hyperf/contract": "~3.1.0",
  3146. "hyperf/database": "~3.1.0",
  3147. "hyperf/di": "~3.1.0",
  3148. "hyperf/event": "~3.1.0",
  3149. "hyperf/support": "~3.1.0",
  3150. "hyperf/utils": "~3.1.0",
  3151. "php": ">=8.1",
  3152. "psr/container": "^1.0|^2.0"
  3153. },
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-master": "3.1-dev"
  3158. },
  3159. "hyperf": {
  3160. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3161. }
  3162. },
  3163. "autoload": {
  3164. "psr-4": {
  3165. "Hyperf\\ModelListener\\": "src/"
  3166. }
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "description": "A model listener for Hyperf.",
  3173. "homepage": "https://hyperf.io",
  3174. "keywords": [
  3175. "hyperf",
  3176. "model-listener",
  3177. "php",
  3178. "swoole"
  3179. ],
  3180. "support": {
  3181. "docs": "https://hyperf.wiki",
  3182. "issues": "https://github.com/hyperf/hyperf/issues",
  3183. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3184. "source": "https://github.com/hyperf/hyperf"
  3185. },
  3186. "funding": [
  3187. {
  3188. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3189. "type": "custom"
  3190. },
  3191. {
  3192. "url": "https://opencollective.com/hyperf",
  3193. "type": "open_collective"
  3194. }
  3195. ],
  3196. "time": "2024-03-23T11:28:51+00:00"
  3197. },
  3198. {
  3199. "name": "hyperf/nacos",
  3200. "version": "v3.1.15",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://github.com/hyperf/nacos.git",
  3204. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3209. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3210. "shasum": ""
  3211. },
  3212. "require": {
  3213. "guzzlehttp/guzzle": "^6.5|^7.0",
  3214. "hyperf/codec": "~3.1.0",
  3215. "hyperf/contract": "~3.1.0",
  3216. "hyperf/support": "~3.1.0",
  3217. "hyperf/utils": "~3.1.0",
  3218. "jetbrains/phpstorm-attributes": "^1.0",
  3219. "php": ">=8.1"
  3220. },
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-master": "3.1-dev"
  3225. },
  3226. "hyperf": {
  3227. "config": "Hyperf\\Nacos\\ConfigProvider"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Hyperf\\Nacos\\": "src/"
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "description": "Nacos SDK",
  3240. "keywords": [
  3241. "hyperf",
  3242. "nacos",
  3243. "php"
  3244. ],
  3245. "support": {
  3246. "issues": "https://github.com/hyperf/nacos/issues",
  3247. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://opencollective.com/hyperf",
  3256. "type": "open_collective"
  3257. }
  3258. ],
  3259. "time": "2024-03-23T11:28:51+00:00"
  3260. },
  3261. {
  3262. "name": "hyperf/paginator",
  3263. "version": "v3.1.49",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/hyperf/paginator.git",
  3267. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3272. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "hyperf/contract": "~3.1.0",
  3277. "hyperf/support": "~3.1.0",
  3278. "hyperf/utils": "~3.1.0",
  3279. "php": ">=8.1"
  3280. },
  3281. "suggest": {
  3282. "hyperf/event": "Reqiured to use PageResolverListener.",
  3283. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3284. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "hyperf": {
  3289. "config": "Hyperf\\Paginator\\ConfigProvider"
  3290. },
  3291. "branch-alias": {
  3292. "dev-master": "3.1-dev"
  3293. }
  3294. },
  3295. "autoload": {
  3296. "psr-4": {
  3297. "Hyperf\\Paginator\\": "src/"
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "description": "A paginator component for hyperf.",
  3305. "homepage": "https://hyperf.io",
  3306. "keywords": [
  3307. "hyperf",
  3308. "paginator",
  3309. "php"
  3310. ],
  3311. "support": {
  3312. "docs": "https://hyperf.wiki",
  3313. "issues": "https://github.com/hyperf/hyperf/issues",
  3314. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3315. "source": "https://github.com/hyperf/hyperf"
  3316. },
  3317. "funding": [
  3318. {
  3319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3320. "type": "custom"
  3321. },
  3322. {
  3323. "url": "https://opencollective.com/hyperf",
  3324. "type": "open_collective"
  3325. }
  3326. ],
  3327. "time": "2024-12-17T09:42:13+00:00"
  3328. },
  3329. {
  3330. "name": "hyperf/pipeline",
  3331. "version": "v3.1.15",
  3332. "source": {
  3333. "type": "git",
  3334. "url": "https://github.com/hyperf/pipeline.git",
  3335. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3336. },
  3337. "dist": {
  3338. "type": "zip",
  3339. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3340. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3341. "shasum": ""
  3342. },
  3343. "require": {
  3344. "php": ">=8.1",
  3345. "psr/container": "^1.0|^2.0"
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "3.1-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Hyperf\\Pipeline\\": "src/"
  3356. }
  3357. },
  3358. "notification-url": "https://packagist.org/downloads/",
  3359. "license": [
  3360. "MIT"
  3361. ],
  3362. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3363. "homepage": "https://hyperf.io",
  3364. "keywords": [
  3365. "hyperf",
  3366. "php",
  3367. "pipeline",
  3368. "swoole"
  3369. ],
  3370. "support": {
  3371. "docs": "https://hyperf.wiki",
  3372. "issues": "https://github.com/hyperf/hyperf/issues",
  3373. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3374. "source": "https://github.com/hyperf/hyperf"
  3375. },
  3376. "funding": [
  3377. {
  3378. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3379. "type": "custom"
  3380. },
  3381. {
  3382. "url": "https://opencollective.com/hyperf",
  3383. "type": "open_collective"
  3384. }
  3385. ],
  3386. "time": "2024-03-23T11:28:51+00:00"
  3387. },
  3388. {
  3389. "name": "hyperf/pool",
  3390. "version": "v3.1.15",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://github.com/hyperf/pool.git",
  3394. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3399. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3400. "shasum": ""
  3401. },
  3402. "require": {
  3403. "hyperf/contract": "~3.1.0",
  3404. "hyperf/support": "~3.1.0",
  3405. "hyperf/utils": "~3.1.0",
  3406. "php": ">=8.1",
  3407. "psr/container": "^1.0|^2.0"
  3408. },
  3409. "suggest": {
  3410. "psr/event-dispatcher": "Required to use events."
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "3.1-dev"
  3416. },
  3417. "hyperf": {
  3418. "config": "Hyperf\\Pool\\ConfigProvider"
  3419. }
  3420. },
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Hyperf\\Pool\\": "src/"
  3424. }
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "description": "An independent universal connection pool component.",
  3431. "homepage": "https://hyperf.io",
  3432. "keywords": [
  3433. "connection-pool",
  3434. "hyperf",
  3435. "php",
  3436. "swoole"
  3437. ],
  3438. "support": {
  3439. "docs": "https://hyperf.wiki",
  3440. "issues": "https://github.com/hyperf/hyperf/issues",
  3441. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3442. "source": "https://github.com/hyperf/hyperf"
  3443. },
  3444. "funding": [
  3445. {
  3446. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3447. "type": "custom"
  3448. },
  3449. {
  3450. "url": "https://opencollective.com/hyperf",
  3451. "type": "open_collective"
  3452. }
  3453. ],
  3454. "time": "2024-03-23T11:28:51+00:00"
  3455. },
  3456. {
  3457. "name": "hyperf/process",
  3458. "version": "v3.1.15",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/hyperf/process.git",
  3462. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3467. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "hyperf/contract": "~3.1.0",
  3472. "hyperf/support": "~3.1.0",
  3473. "hyperf/utils": "~3.1.0",
  3474. "php": ">=8.1",
  3475. "psr/container": "^1.0|^2.0",
  3476. "psr/event-dispatcher": "^1.0"
  3477. },
  3478. "suggest": {
  3479. "hyperf/di": "Required to use annotations.",
  3480. "hyperf/event": "Required to dump the message before and after process.",
  3481. "hyperf/framework": "Required to use BootProcessListener."
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "3.1-dev"
  3487. },
  3488. "hyperf": {
  3489. "config": "Hyperf\\Process\\ConfigProvider"
  3490. }
  3491. },
  3492. "autoload": {
  3493. "psr-4": {
  3494. "Hyperf\\Process\\": "src/"
  3495. }
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "description": "A process component for hyperf.",
  3502. "homepage": "https://hyperf.io",
  3503. "keywords": [
  3504. "hyperf",
  3505. "php",
  3506. "process"
  3507. ],
  3508. "support": {
  3509. "docs": "https://hyperf.wiki",
  3510. "issues": "https://github.com/hyperf/hyperf/issues",
  3511. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3512. "source": "https://github.com/hyperf/hyperf"
  3513. },
  3514. "funding": [
  3515. {
  3516. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3517. "type": "custom"
  3518. },
  3519. {
  3520. "url": "https://opencollective.com/hyperf",
  3521. "type": "open_collective"
  3522. }
  3523. ],
  3524. "time": "2024-03-23T11:28:51+00:00"
  3525. },
  3526. {
  3527. "name": "hyperf/redis",
  3528. "version": "v3.1.18",
  3529. "source": {
  3530. "type": "git",
  3531. "url": "https://github.com/hyperf/redis.git",
  3532. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3533. },
  3534. "dist": {
  3535. "type": "zip",
  3536. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3537. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3538. "shasum": ""
  3539. },
  3540. "require": {
  3541. "ext-redis": "^5.0|^6.0",
  3542. "hyperf/contract": "~3.1.0",
  3543. "hyperf/pool": "~3.1.0",
  3544. "hyperf/support": "~3.1.0",
  3545. "hyperf/tappable": "~3.1.0",
  3546. "hyperf/utils": "~3.1.0",
  3547. "php": ">=8.1",
  3548. "psr/container": "^1.0|^2.0"
  3549. },
  3550. "suggest": {
  3551. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3552. "hyperf/di": "Create the RedisPool via dependency injection."
  3553. },
  3554. "type": "library",
  3555. "extra": {
  3556. "branch-alias": {
  3557. "dev-master": "3.1-dev"
  3558. },
  3559. "hyperf": {
  3560. "config": "Hyperf\\Redis\\ConfigProvider"
  3561. }
  3562. },
  3563. "autoload": {
  3564. "psr-4": {
  3565. "Hyperf\\Redis\\": "src/"
  3566. }
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "MIT"
  3571. ],
  3572. "description": "A redis component for hyperf.",
  3573. "homepage": "https://hyperf.io",
  3574. "keywords": [
  3575. "hyperf",
  3576. "php",
  3577. "pool",
  3578. "redis"
  3579. ],
  3580. "support": {
  3581. "docs": "https://hyperf.wiki",
  3582. "issues": "https://github.com/hyperf/hyperf/issues",
  3583. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3584. "source": "https://github.com/hyperf/hyperf"
  3585. },
  3586. "funding": [
  3587. {
  3588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3589. "type": "custom"
  3590. },
  3591. {
  3592. "url": "https://opencollective.com/hyperf",
  3593. "type": "open_collective"
  3594. }
  3595. ],
  3596. "time": "2024-04-11T10:18:35+00:00"
  3597. },
  3598. {
  3599. "name": "hyperf/rpc",
  3600. "version": "v3.1.15",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/hyperf/rpc.git",
  3604. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3609. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3610. "shasum": ""
  3611. },
  3612. "require": {
  3613. "hyperf/codec": "~3.1.0",
  3614. "hyperf/contract": "~3.1.0",
  3615. "hyperf/support": "~3.1.0",
  3616. "jetbrains/phpstorm-attributes": "^1.0",
  3617. "php": ">=8.1"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "3.1-dev"
  3623. },
  3624. "hyperf": []
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Hyperf\\Rpc\\": "src/"
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "description": "A rpc basic library for Hyperf.",
  3636. "homepage": "https://hyperf.io",
  3637. "keywords": [
  3638. "hyperf",
  3639. "php",
  3640. "rpc",
  3641. "swoole"
  3642. ],
  3643. "support": {
  3644. "docs": "https://hyperf.wiki",
  3645. "issues": "https://github.com/hyperf/hyperf/issues",
  3646. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3647. "source": "https://github.com/hyperf/hyperf"
  3648. },
  3649. "funding": [
  3650. {
  3651. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3652. "type": "custom"
  3653. },
  3654. {
  3655. "url": "https://opencollective.com/hyperf",
  3656. "type": "open_collective"
  3657. }
  3658. ],
  3659. "time": "2024-03-23T11:28:51+00:00"
  3660. },
  3661. {
  3662. "name": "hyperf/rpc-server",
  3663. "version": "v3.1.20",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/hyperf/rpc-server.git",
  3667. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3672. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "hyperf/http-server": "~3.1.0",
  3677. "hyperf/rpc": "~3.1.0",
  3678. "php": ">=8.1"
  3679. },
  3680. "suggest": {
  3681. "hyperf/di": "Required to use annotations."
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-master": "3.1-dev"
  3687. },
  3688. "hyperf": {
  3689. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "Hyperf\\RpcServer\\": "src/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "description": "An abstract rpc server component for Hyperf.",
  3702. "homepage": "https://hyperf.io",
  3703. "keywords": [
  3704. "hyperf",
  3705. "php",
  3706. "rpc",
  3707. "rpc-server",
  3708. "swoole"
  3709. ],
  3710. "support": {
  3711. "docs": "https://hyperf.wiki",
  3712. "issues": "https://github.com/hyperf/hyperf/issues",
  3713. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3714. "source": "https://github.com/hyperf/hyperf"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://opencollective.com/hyperf",
  3723. "type": "open_collective"
  3724. }
  3725. ],
  3726. "time": "2024-04-22T01:46:29+00:00"
  3727. },
  3728. {
  3729. "name": "hyperf/serializer",
  3730. "version": "v3.1.23",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/hyperf/serializer.git",
  3734. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3739. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "hyperf/contract": "~3.1.0",
  3744. "php": ">=8.1"
  3745. },
  3746. "suggest": {
  3747. "hyperf/di": "Required to use ExceptionNormalizer",
  3748. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3749. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-master": "3.1-dev"
  3755. },
  3756. "hyperf": {
  3757. "config": "Hyperf\\Serializer\\ConfigProvider"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Hyperf\\Serializer\\": "src/"
  3763. }
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "description": "A serializer component for Hyperf.",
  3770. "homepage": "https://hyperf.io",
  3771. "keywords": [
  3772. "hyperf",
  3773. "php",
  3774. "swoole",
  3775. "tappable"
  3776. ],
  3777. "support": {
  3778. "docs": "https://hyperf.wiki",
  3779. "issues": "https://github.com/hyperf/hyperf/issues",
  3780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3781. "source": "https://github.com/hyperf/hyperf"
  3782. },
  3783. "funding": [
  3784. {
  3785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3786. "type": "custom"
  3787. },
  3788. {
  3789. "url": "https://opencollective.com/hyperf",
  3790. "type": "open_collective"
  3791. }
  3792. ],
  3793. "time": "2024-05-23T03:43:58+00:00"
  3794. },
  3795. {
  3796. "name": "hyperf/server",
  3797. "version": "v3.1.23",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/hyperf/server.git",
  3801. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3806. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "hyperf/contract": "~3.1.0",
  3811. "hyperf/coordinator": "~3.1.0",
  3812. "hyperf/engine": "^2.8",
  3813. "hyperf/support": "~3.1.0",
  3814. "hyperf/tappable": "~3.1.0",
  3815. "php": ">=8.1",
  3816. "psr/container": "^1.0|^2.0",
  3817. "psr/event-dispatcher": "^1.0",
  3818. "psr/log": "^1.0|^2.0|^3.0",
  3819. "symfony/console": "^5.0|^6.0|^7.0"
  3820. },
  3821. "suggest": {
  3822. "hyperf/event": "Dump the info after server start.",
  3823. "hyperf/framework": "Dump the info after server start."
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "3.1-dev"
  3829. },
  3830. "hyperf": {
  3831. "config": "Hyperf\\Server\\ConfigProvider"
  3832. }
  3833. },
  3834. "autoload": {
  3835. "psr-4": {
  3836. "Hyperf\\Server\\": "src/"
  3837. }
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "MIT"
  3842. ],
  3843. "description": "A base server library for Hyperf.",
  3844. "homepage": "https://hyperf.io",
  3845. "keywords": [
  3846. "hyperf",
  3847. "php",
  3848. "server",
  3849. "swoole"
  3850. ],
  3851. "support": {
  3852. "docs": "https://hyperf.wiki",
  3853. "issues": "https://github.com/hyperf/hyperf/issues",
  3854. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3855. "source": "https://github.com/hyperf/hyperf"
  3856. },
  3857. "funding": [
  3858. {
  3859. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3860. "type": "custom"
  3861. },
  3862. {
  3863. "url": "https://opencollective.com/hyperf",
  3864. "type": "open_collective"
  3865. }
  3866. ],
  3867. "time": "2024-05-23T03:43:58+00:00"
  3868. },
  3869. {
  3870. "name": "hyperf/service-governance",
  3871. "version": "v3.1.15",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/hyperf/service-governance.git",
  3875. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3880. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "hyperf/contract": "~3.1.0",
  3885. "hyperf/support": "~3.1.0",
  3886. "jetbrains/phpstorm-attributes": "^1.0",
  3887. "php": ">=8.1"
  3888. },
  3889. "suggest": {
  3890. "hyperf/event": "Required to use RegisterServiceListener.",
  3891. "hyperf/framework": "Required to use RegisterServiceListener.",
  3892. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3893. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3894. },
  3895. "type": "library",
  3896. "extra": {
  3897. "branch-alias": {
  3898. "dev-master": "3.1-dev"
  3899. },
  3900. "hyperf": {
  3901. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Hyperf\\ServiceGovernance\\": "src/"
  3907. }
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "description": "A service governance component for Hyperf.",
  3914. "homepage": "https://hyperf.io",
  3915. "keywords": [
  3916. "hyperf",
  3917. "php",
  3918. "service-governance",
  3919. "swoole"
  3920. ],
  3921. "support": {
  3922. "docs": "https://hyperf.wiki",
  3923. "issues": "https://github.com/hyperf/hyperf/issues",
  3924. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3925. "source": "https://github.com/hyperf/hyperf"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3930. "type": "custom"
  3931. },
  3932. {
  3933. "url": "https://opencollective.com/hyperf",
  3934. "type": "open_collective"
  3935. }
  3936. ],
  3937. "time": "2024-03-23T11:28:51+00:00"
  3938. },
  3939. {
  3940. "name": "hyperf/service-governance-consul",
  3941. "version": "v3.1.15",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/hyperf/service-governance-consul.git",
  3945. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3950. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3951. "shasum": ""
  3952. },
  3953. "require": {
  3954. "hyperf/consul": "~3.1.0",
  3955. "hyperf/contract": "~3.1.0",
  3956. "hyperf/service-governance": "~3.1.0",
  3957. "hyperf/support": "~3.1.0",
  3958. "hyperf/utils": "~3.1.0",
  3959. "php": ">=8.1"
  3960. },
  3961. "type": "library",
  3962. "extra": {
  3963. "branch-alias": {
  3964. "dev-master": "3.1-dev"
  3965. },
  3966. "hyperf": {
  3967. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "description": "A consul adapter for service governance.",
  3980. "homepage": "https://hyperf.io",
  3981. "keywords": [
  3982. "consul-adapter",
  3983. "hyperf",
  3984. "php",
  3985. "service-governance",
  3986. "swoole"
  3987. ],
  3988. "support": {
  3989. "docs": "https://hyperf.wiki",
  3990. "issues": "https://github.com/hyperf/hyperf/issues",
  3991. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3992. "source": "https://github.com/hyperf/hyperf"
  3993. },
  3994. "funding": [
  3995. {
  3996. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3997. "type": "custom"
  3998. },
  3999. {
  4000. "url": "https://opencollective.com/hyperf",
  4001. "type": "open_collective"
  4002. }
  4003. ],
  4004. "time": "2024-03-23T11:28:51+00:00"
  4005. },
  4006. {
  4007. "name": "hyperf/service-governance-nacos",
  4008. "version": "v3.1.15",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4012. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4017. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4018. "shasum": ""
  4019. },
  4020. "require": {
  4021. "hyperf/codec": "~3.1.0",
  4022. "hyperf/contract": "~3.1.0",
  4023. "hyperf/nacos": "~3.1.0",
  4024. "hyperf/service-governance": "~3.1.0",
  4025. "hyperf/support": "~3.1.0",
  4026. "hyperf/utils": "~3.1.0",
  4027. "php": ">=8.1"
  4028. },
  4029. "type": "library",
  4030. "extra": {
  4031. "branch-alias": {
  4032. "dev-master": "3.1-dev"
  4033. },
  4034. "hyperf": {
  4035. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4036. }
  4037. },
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4041. }
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "description": "A nacos adapter for service governance.",
  4048. "homepage": "https://hyperf.io",
  4049. "keywords": [
  4050. "hyperf",
  4051. "nacos-adapter",
  4052. "php",
  4053. "service-governance",
  4054. "swoole"
  4055. ],
  4056. "support": {
  4057. "docs": "https://hyperf.wiki",
  4058. "issues": "https://github.com/hyperf/hyperf/issues",
  4059. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4060. "source": "https://github.com/hyperf/hyperf"
  4061. },
  4062. "funding": [
  4063. {
  4064. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4065. "type": "custom"
  4066. },
  4067. {
  4068. "url": "https://opencollective.com/hyperf",
  4069. "type": "open_collective"
  4070. }
  4071. ],
  4072. "time": "2024-03-23T11:28:51+00:00"
  4073. },
  4074. {
  4075. "name": "hyperf/snowflake",
  4076. "version": "v3.1.42",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/hyperf/snowflake.git",
  4080. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4085. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "hyperf/contract": "~3.1.0",
  4090. "php": ">=8.1"
  4091. },
  4092. "suggest": {
  4093. "hyperf/config": "Required to read snowflake config.",
  4094. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4095. "psr/container": "Required to use MetaGeneratorFactory."
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "hyperf": {
  4100. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4101. },
  4102. "branch-alias": {
  4103. "dev-master": "3.1-dev"
  4104. }
  4105. },
  4106. "autoload": {
  4107. "psr-4": {
  4108. "Hyperf\\Snowflake\\": "src/"
  4109. }
  4110. },
  4111. "notification-url": "https://packagist.org/downloads/",
  4112. "license": [
  4113. "MIT"
  4114. ],
  4115. "description": "A snowflake library",
  4116. "homepage": "https://hyperf.io",
  4117. "keywords": [
  4118. "php",
  4119. "snowflake"
  4120. ],
  4121. "support": {
  4122. "docs": "https://hyperf.wiki",
  4123. "issues": "https://github.com/hyperf/hyperf/issues",
  4124. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4125. "source": "https://github.com/hyperf/hyperf"
  4126. },
  4127. "funding": [
  4128. {
  4129. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4130. "type": "custom"
  4131. },
  4132. {
  4133. "url": "https://opencollective.com/hyperf",
  4134. "type": "open_collective"
  4135. }
  4136. ],
  4137. "time": "2024-09-25T02:54:12+00:00"
  4138. },
  4139. {
  4140. "name": "hyperf/stdlib",
  4141. "version": "v3.1.15",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/hyperf/stdlib.git",
  4145. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4150. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "php": ">=8.1"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "branch-alias": {
  4159. "dev-master": "3.1-dev"
  4160. }
  4161. },
  4162. "autoload": {
  4163. "psr-4": {
  4164. "Hyperf\\Stdlib\\": "src/"
  4165. }
  4166. },
  4167. "notification-url": "https://packagist.org/downloads/",
  4168. "license": [
  4169. "MIT"
  4170. ],
  4171. "description": "A stdlib component for Hyperf.",
  4172. "homepage": "https://hyperf.io",
  4173. "keywords": [
  4174. "hyperf",
  4175. "php",
  4176. "stdlib",
  4177. "swoole"
  4178. ],
  4179. "support": {
  4180. "docs": "https://hyperf.wiki",
  4181. "issues": "https://github.com/hyperf/hyperf/issues",
  4182. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4183. "source": "https://github.com/hyperf/hyperf"
  4184. },
  4185. "funding": [
  4186. {
  4187. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4188. "type": "custom"
  4189. },
  4190. {
  4191. "url": "https://opencollective.com/hyperf",
  4192. "type": "open_collective"
  4193. }
  4194. ],
  4195. "time": "2024-03-23T11:28:51+00:00"
  4196. },
  4197. {
  4198. "name": "hyperf/stringable",
  4199. "version": "v3.1.24",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://github.com/hyperf/stringable.git",
  4203. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4208. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4209. "shasum": ""
  4210. },
  4211. "require": {
  4212. "ext-mbstring": "*",
  4213. "hyperf/collection": "~3.1.0",
  4214. "hyperf/conditionable": "~3.1.0",
  4215. "hyperf/macroable": "~3.1.0",
  4216. "hyperf/tappable": "~3.1.0",
  4217. "php": ">=8.1"
  4218. },
  4219. "suggest": {
  4220. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4221. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4222. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "branch-alias": {
  4227. "dev-master": "3.1-dev"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "files": [
  4232. "src/Functions.php"
  4233. ],
  4234. "psr-4": {
  4235. "Hyperf\\Stringable\\": "src/"
  4236. }
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "description": "Hyperf Stringable package which come from illuminate/support",
  4243. "homepage": "https://hyperf.io",
  4244. "keywords": [
  4245. "hyperf",
  4246. "php",
  4247. "stringable",
  4248. "swoole"
  4249. ],
  4250. "support": {
  4251. "docs": "https://hyperf.wiki",
  4252. "issues": "https://github.com/hyperf/hyperf/issues",
  4253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4254. "source": "https://github.com/hyperf/hyperf"
  4255. },
  4256. "funding": [
  4257. {
  4258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4259. "type": "custom"
  4260. },
  4261. {
  4262. "url": "https://opencollective.com/hyperf",
  4263. "type": "open_collective"
  4264. }
  4265. ],
  4266. "time": "2024-05-27T03:20:24+00:00"
  4267. },
  4268. {
  4269. "name": "hyperf/support",
  4270. "version": "v3.1.15",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/hyperf/support.git",
  4274. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4279. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "hyperf/collection": "~3.1.0",
  4284. "hyperf/context": "~3.1.0",
  4285. "hyperf/contract": "~3.1.0",
  4286. "hyperf/coroutine": "~3.1.0",
  4287. "hyperf/macroable": "~3.1.0",
  4288. "hyperf/stringable": "~3.1.0",
  4289. "php": ">=8.1"
  4290. },
  4291. "suggest": {
  4292. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4293. },
  4294. "type": "library",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "3.1-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "files": [
  4302. "src/Functions.php"
  4303. ],
  4304. "psr-4": {
  4305. "Hyperf\\Support\\": "src/"
  4306. }
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "description": "A support component for Hyperf.",
  4313. "homepage": "https://hyperf.io",
  4314. "keywords": [
  4315. "hyperf",
  4316. "php",
  4317. "support",
  4318. "swoole"
  4319. ],
  4320. "support": {
  4321. "docs": "https://hyperf.wiki",
  4322. "issues": "https://github.com/hyperf/hyperf/issues",
  4323. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4324. "source": "https://github.com/hyperf/hyperf"
  4325. },
  4326. "funding": [
  4327. {
  4328. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4329. "type": "custom"
  4330. },
  4331. {
  4332. "url": "https://opencollective.com/hyperf",
  4333. "type": "open_collective"
  4334. }
  4335. ],
  4336. "time": "2024-03-23T11:28:51+00:00"
  4337. },
  4338. {
  4339. "name": "hyperf/tappable",
  4340. "version": "v3.1.15",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/hyperf/tappable.git",
  4344. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4349. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "php": ">=8.1"
  4354. },
  4355. "type": "library",
  4356. "extra": {
  4357. "branch-alias": {
  4358. "dev-master": "3.1-dev"
  4359. }
  4360. },
  4361. "autoload": {
  4362. "files": [
  4363. "src/Functions.php"
  4364. ],
  4365. "psr-4": {
  4366. "Hyperf\\Tappable\\": "src/"
  4367. }
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4374. "homepage": "https://hyperf.io",
  4375. "keywords": [
  4376. "hyperf",
  4377. "php",
  4378. "swoole",
  4379. "tappable"
  4380. ],
  4381. "support": {
  4382. "docs": "https://hyperf.wiki",
  4383. "issues": "https://github.com/hyperf/hyperf/issues",
  4384. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4385. "source": "https://github.com/hyperf/hyperf"
  4386. },
  4387. "funding": [
  4388. {
  4389. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4390. "type": "custom"
  4391. },
  4392. {
  4393. "url": "https://opencollective.com/hyperf",
  4394. "type": "open_collective"
  4395. }
  4396. ],
  4397. "time": "2024-03-23T11:28:51+00:00"
  4398. },
  4399. {
  4400. "name": "hyperf/utils",
  4401. "version": "v3.1.0",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/hyperf/utils.git",
  4405. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4410. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4411. "shasum": ""
  4412. },
  4413. "require": {
  4414. "doctrine/inflector": "^2.0",
  4415. "hyperf/code-parser": "~3.1.0",
  4416. "hyperf/codec": "~3.1.0",
  4417. "hyperf/collection": "~3.1.0",
  4418. "hyperf/context": "~3.1.0",
  4419. "hyperf/contract": "~3.1.0",
  4420. "hyperf/coordinator": "~3.1.0",
  4421. "hyperf/coroutine": "~3.1.0",
  4422. "hyperf/engine": "^2.0",
  4423. "hyperf/macroable": "~3.1.0",
  4424. "hyperf/serializer": "~3.1.0",
  4425. "hyperf/stringable": "~3.1.0",
  4426. "hyperf/support": "~3.1.0",
  4427. "php": ">=8.1"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "3.1-dev"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "description": "A tools package that could help developer solved the problem quickly.",
  4440. "homepage": "https://hyperf.io",
  4441. "keywords": [
  4442. "hyperf",
  4443. "php",
  4444. "swoole",
  4445. "utils"
  4446. ],
  4447. "support": {
  4448. "docs": "https://hyperf.wiki",
  4449. "issues": "https://github.com/hyperf/hyperf/issues",
  4450. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4451. "source": "https://github.com/hyperf/hyperf"
  4452. },
  4453. "funding": [
  4454. {
  4455. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4456. "type": "custom"
  4457. },
  4458. {
  4459. "url": "https://opencollective.com/hyperf",
  4460. "type": "open_collective"
  4461. }
  4462. ],
  4463. "time": "2023-11-24T03:10:53+00:00"
  4464. },
  4465. {
  4466. "name": "jetbrains/phpstorm-attributes",
  4467. "version": "1.1",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4471. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4476. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4477. "shasum": ""
  4478. },
  4479. "type": "library",
  4480. "autoload": {
  4481. "psr-4": {
  4482. "JetBrains\\PhpStorm\\": "src/"
  4483. }
  4484. },
  4485. "notification-url": "https://packagist.org/downloads/",
  4486. "license": [
  4487. "Apache-2.0"
  4488. ],
  4489. "authors": [
  4490. {
  4491. "name": "JetBrains",
  4492. "homepage": "https://www.jetbrains.com"
  4493. }
  4494. ],
  4495. "description": "PhpStorm specific attributes",
  4496. "keywords": [
  4497. "attributes",
  4498. "jetbrains",
  4499. "phpstorm"
  4500. ],
  4501. "support": {
  4502. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4503. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4504. },
  4505. "time": "2023-09-01T08:50:25+00:00"
  4506. },
  4507. {
  4508. "name": "laminas/laminas-mime",
  4509. "version": "2.12.0",
  4510. "source": {
  4511. "type": "git",
  4512. "url": "https://github.com/laminas/laminas-mime.git",
  4513. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4514. },
  4515. "dist": {
  4516. "type": "zip",
  4517. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4518. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4519. "shasum": ""
  4520. },
  4521. "require": {
  4522. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4523. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4524. },
  4525. "conflict": {
  4526. "zendframework/zend-mime": "*"
  4527. },
  4528. "require-dev": {
  4529. "laminas/laminas-coding-standard": "~2.4.0",
  4530. "laminas/laminas-mail": "^2.19.0",
  4531. "phpunit/phpunit": "~9.5.25"
  4532. },
  4533. "suggest": {
  4534. "laminas/laminas-mail": "Laminas\\Mail component"
  4535. },
  4536. "type": "library",
  4537. "autoload": {
  4538. "psr-4": {
  4539. "Laminas\\Mime\\": "src/"
  4540. }
  4541. },
  4542. "notification-url": "https://packagist.org/downloads/",
  4543. "license": [
  4544. "BSD-3-Clause"
  4545. ],
  4546. "description": "Create and parse MIME messages and parts",
  4547. "homepage": "https://laminas.dev",
  4548. "keywords": [
  4549. "laminas",
  4550. "mime"
  4551. ],
  4552. "support": {
  4553. "chat": "https://laminas.dev/chat",
  4554. "docs": "https://docs.laminas.dev/laminas-mime/",
  4555. "forum": "https://discourse.laminas.dev",
  4556. "issues": "https://github.com/laminas/laminas-mime/issues",
  4557. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4558. "source": "https://github.com/laminas/laminas-mime"
  4559. },
  4560. "funding": [
  4561. {
  4562. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4563. "type": "community_bridge"
  4564. }
  4565. ],
  4566. "time": "2023-11-02T16:47:19+00:00"
  4567. },
  4568. {
  4569. "name": "laminas/laminas-stdlib",
  4570. "version": "3.19.0",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://github.com/laminas/laminas-stdlib.git",
  4574. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4579. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4580. "shasum": ""
  4581. },
  4582. "require": {
  4583. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4584. },
  4585. "conflict": {
  4586. "zendframework/zend-stdlib": "*"
  4587. },
  4588. "require-dev": {
  4589. "laminas/laminas-coding-standard": "^2.5",
  4590. "phpbench/phpbench": "^1.2.15",
  4591. "phpunit/phpunit": "^10.5.8",
  4592. "psalm/plugin-phpunit": "^0.18.4",
  4593. "vimeo/psalm": "^5.20.0"
  4594. },
  4595. "type": "library",
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Laminas\\Stdlib\\": "src/"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "BSD-3-Clause"
  4604. ],
  4605. "description": "SPL extensions, array utilities, error handlers, and more",
  4606. "homepage": "https://laminas.dev",
  4607. "keywords": [
  4608. "laminas",
  4609. "stdlib"
  4610. ],
  4611. "support": {
  4612. "chat": "https://laminas.dev/chat",
  4613. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4614. "forum": "https://discourse.laminas.dev",
  4615. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4616. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4617. "source": "https://github.com/laminas/laminas-stdlib"
  4618. },
  4619. "funding": [
  4620. {
  4621. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4622. "type": "community_bridge"
  4623. }
  4624. ],
  4625. "time": "2024-01-19T12:39:49+00:00"
  4626. },
  4627. {
  4628. "name": "markrogoyski/math-php",
  4629. "version": "v2.10.0",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://github.com/markrogoyski/math-php.git",
  4633. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4638. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4639. "shasum": ""
  4640. },
  4641. "require": {
  4642. "ext-json": "*",
  4643. "php": ">=7.2.0"
  4644. },
  4645. "require-dev": {
  4646. "php-coveralls/php-coveralls": "^2.0",
  4647. "php-parallel-lint/php-parallel-lint": "^1.2",
  4648. "phploc/phploc": "*",
  4649. "phpmd/phpmd": "^2.6",
  4650. "phpstan/phpstan": "^1.10",
  4651. "phpunit/phpunit": "^8.5",
  4652. "squizlabs/php_codesniffer": "3.*"
  4653. },
  4654. "type": "library",
  4655. "autoload": {
  4656. "psr-4": {
  4657. "MathPHP\\": "src/"
  4658. }
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "MIT"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "Mark Rogoyski",
  4667. "email": "mark@rogoyski.com",
  4668. "homepage": "https://github.com/markrogoyski",
  4669. "role": "Lead developer"
  4670. },
  4671. {
  4672. "name": "Kevin Nowaczyk",
  4673. "homepage": "https://github.com/Beakerboy",
  4674. "role": "Developer"
  4675. },
  4676. {
  4677. "name": "MathPHP Community of Contributors",
  4678. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4679. }
  4680. ],
  4681. "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",
  4682. "homepage": "https://github.com/markrogoyski/math-php/",
  4683. "keywords": [
  4684. "algebra",
  4685. "combinatorics",
  4686. "distributions",
  4687. "linear algebra",
  4688. "math",
  4689. "mathematics",
  4690. "matrix",
  4691. "numerical analysis",
  4692. "probability",
  4693. "regressions",
  4694. "statistics"
  4695. ],
  4696. "support": {
  4697. "issues": "https://github.com/markrogoyski/math-php/issues",
  4698. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4699. },
  4700. "time": "2024-04-17T00:09:51+00:00"
  4701. },
  4702. {
  4703. "name": "monolog/monolog",
  4704. "version": "3.6.0",
  4705. "source": {
  4706. "type": "git",
  4707. "url": "https://github.com/Seldaek/monolog.git",
  4708. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4709. },
  4710. "dist": {
  4711. "type": "zip",
  4712. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4713. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4714. "shasum": ""
  4715. },
  4716. "require": {
  4717. "php": ">=8.1",
  4718. "psr/log": "^2.0 || ^3.0"
  4719. },
  4720. "provide": {
  4721. "psr/log-implementation": "3.0.0"
  4722. },
  4723. "require-dev": {
  4724. "aws/aws-sdk-php": "^3.0",
  4725. "doctrine/couchdb": "~1.0@dev",
  4726. "elasticsearch/elasticsearch": "^7 || ^8",
  4727. "ext-json": "*",
  4728. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4729. "guzzlehttp/guzzle": "^7.4.5",
  4730. "guzzlehttp/psr7": "^2.2",
  4731. "mongodb/mongodb": "^1.8",
  4732. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4733. "phpstan/phpstan": "^1.9",
  4734. "phpstan/phpstan-deprecation-rules": "^1.0",
  4735. "phpstan/phpstan-strict-rules": "^1.4",
  4736. "phpunit/phpunit": "^10.5.17",
  4737. "predis/predis": "^1.1 || ^2",
  4738. "ruflin/elastica": "^7",
  4739. "symfony/mailer": "^5.4 || ^6",
  4740. "symfony/mime": "^5.4 || ^6"
  4741. },
  4742. "suggest": {
  4743. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4744. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4745. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4746. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4747. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4748. "ext-mbstring": "Allow to work properly with unicode symbols",
  4749. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4750. "ext-openssl": "Required to send log messages using SSL",
  4751. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4752. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4753. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4754. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4755. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4756. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4757. },
  4758. "type": "library",
  4759. "extra": {
  4760. "branch-alias": {
  4761. "dev-main": "3.x-dev"
  4762. }
  4763. },
  4764. "autoload": {
  4765. "psr-4": {
  4766. "Monolog\\": "src/Monolog"
  4767. }
  4768. },
  4769. "notification-url": "https://packagist.org/downloads/",
  4770. "license": [
  4771. "MIT"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "Jordi Boggiano",
  4776. "email": "j.boggiano@seld.be",
  4777. "homepage": "https://seld.be"
  4778. }
  4779. ],
  4780. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4781. "homepage": "https://github.com/Seldaek/monolog",
  4782. "keywords": [
  4783. "log",
  4784. "logging",
  4785. "psr-3"
  4786. ],
  4787. "support": {
  4788. "issues": "https://github.com/Seldaek/monolog/issues",
  4789. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4790. },
  4791. "funding": [
  4792. {
  4793. "url": "https://github.com/Seldaek",
  4794. "type": "github"
  4795. },
  4796. {
  4797. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4798. "type": "tidelift"
  4799. }
  4800. ],
  4801. "time": "2024-04-12T21:02:21+00:00"
  4802. },
  4803. {
  4804. "name": "nesbot/carbon",
  4805. "version": "2.72.5",
  4806. "source": {
  4807. "type": "git",
  4808. "url": "https://github.com/briannesbitt/Carbon.git",
  4809. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4810. },
  4811. "dist": {
  4812. "type": "zip",
  4813. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4814. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4815. "shasum": ""
  4816. },
  4817. "require": {
  4818. "carbonphp/carbon-doctrine-types": "*",
  4819. "ext-json": "*",
  4820. "php": "^7.1.8 || ^8.0",
  4821. "psr/clock": "^1.0",
  4822. "symfony/polyfill-mbstring": "^1.0",
  4823. "symfony/polyfill-php80": "^1.16",
  4824. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4825. },
  4826. "provide": {
  4827. "psr/clock-implementation": "1.0"
  4828. },
  4829. "require-dev": {
  4830. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4831. "doctrine/orm": "^2.7 || ^3.0",
  4832. "friendsofphp/php-cs-fixer": "^3.0",
  4833. "kylekatarnls/multi-tester": "^2.0",
  4834. "ondrejmirtes/better-reflection": "*",
  4835. "phpmd/phpmd": "^2.9",
  4836. "phpstan/extension-installer": "^1.0",
  4837. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4838. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4839. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4840. "squizlabs/php_codesniffer": "^3.4"
  4841. },
  4842. "bin": [
  4843. "bin/carbon"
  4844. ],
  4845. "type": "library",
  4846. "extra": {
  4847. "branch-alias": {
  4848. "dev-master": "3.x-dev",
  4849. "dev-2.x": "2.x-dev"
  4850. },
  4851. "laravel": {
  4852. "providers": [
  4853. "Carbon\\Laravel\\ServiceProvider"
  4854. ]
  4855. },
  4856. "phpstan": {
  4857. "includes": [
  4858. "extension.neon"
  4859. ]
  4860. }
  4861. },
  4862. "autoload": {
  4863. "psr-4": {
  4864. "Carbon\\": "src/Carbon/"
  4865. }
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "Brian Nesbitt",
  4874. "email": "brian@nesbot.com",
  4875. "homepage": "https://markido.com"
  4876. },
  4877. {
  4878. "name": "kylekatarnls",
  4879. "homepage": "https://github.com/kylekatarnls"
  4880. }
  4881. ],
  4882. "description": "An API extension for DateTime that supports 281 different languages.",
  4883. "homepage": "https://carbon.nesbot.com",
  4884. "keywords": [
  4885. "date",
  4886. "datetime",
  4887. "time"
  4888. ],
  4889. "support": {
  4890. "docs": "https://carbon.nesbot.com/docs",
  4891. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4892. "source": "https://github.com/briannesbitt/Carbon"
  4893. },
  4894. "funding": [
  4895. {
  4896. "url": "https://github.com/sponsors/kylekatarnls",
  4897. "type": "github"
  4898. },
  4899. {
  4900. "url": "https://opencollective.com/Carbon#sponsor",
  4901. "type": "opencollective"
  4902. },
  4903. {
  4904. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4905. "type": "tidelift"
  4906. }
  4907. ],
  4908. "time": "2024-06-03T19:18:41+00:00"
  4909. },
  4910. {
  4911. "name": "nikic/fast-route",
  4912. "version": "v1.3.0",
  4913. "source": {
  4914. "type": "git",
  4915. "url": "https://github.com/nikic/FastRoute.git",
  4916. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4917. },
  4918. "dist": {
  4919. "type": "zip",
  4920. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4921. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4922. "shasum": ""
  4923. },
  4924. "require": {
  4925. "php": ">=5.4.0"
  4926. },
  4927. "require-dev": {
  4928. "phpunit/phpunit": "^4.8.35|~5.7"
  4929. },
  4930. "type": "library",
  4931. "autoload": {
  4932. "files": [
  4933. "src/functions.php"
  4934. ],
  4935. "psr-4": {
  4936. "FastRoute\\": "src/"
  4937. }
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "BSD-3-Clause"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Nikita Popov",
  4946. "email": "nikic@php.net"
  4947. }
  4948. ],
  4949. "description": "Fast request router for PHP",
  4950. "keywords": [
  4951. "router",
  4952. "routing"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/nikic/FastRoute/issues",
  4956. "source": "https://github.com/nikic/FastRoute/tree/master"
  4957. },
  4958. "time": "2018-02-13T20:26:39+00:00"
  4959. },
  4960. {
  4961. "name": "nikic/php-parser",
  4962. "version": "v4.19.1",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/nikic/PHP-Parser.git",
  4966. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  4971. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "ext-tokenizer": "*",
  4976. "php": ">=7.1"
  4977. },
  4978. "require-dev": {
  4979. "ircmaxell/php-yacc": "^0.0.7",
  4980. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4981. },
  4982. "bin": [
  4983. "bin/php-parse"
  4984. ],
  4985. "type": "library",
  4986. "extra": {
  4987. "branch-alias": {
  4988. "dev-master": "4.9-dev"
  4989. }
  4990. },
  4991. "autoload": {
  4992. "psr-4": {
  4993. "PhpParser\\": "lib/PhpParser"
  4994. }
  4995. },
  4996. "notification-url": "https://packagist.org/downloads/",
  4997. "license": [
  4998. "BSD-3-Clause"
  4999. ],
  5000. "authors": [
  5001. {
  5002. "name": "Nikita Popov"
  5003. }
  5004. ],
  5005. "description": "A PHP parser written in PHP",
  5006. "keywords": [
  5007. "parser",
  5008. "php"
  5009. ],
  5010. "support": {
  5011. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5012. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5013. },
  5014. "time": "2024-03-17T08:10:35+00:00"
  5015. },
  5016. {
  5017. "name": "php-di/phpdoc-reader",
  5018. "version": "2.2.1",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5022. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5027. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5028. "shasum": ""
  5029. },
  5030. "require": {
  5031. "php": ">=7.2.0"
  5032. },
  5033. "require-dev": {
  5034. "mnapoli/hard-mode": "~0.3.0",
  5035. "phpunit/phpunit": "^8.5|^9.0"
  5036. },
  5037. "type": "library",
  5038. "autoload": {
  5039. "psr-4": {
  5040. "PhpDocReader\\": "src/PhpDocReader"
  5041. }
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5048. "keywords": [
  5049. "phpdoc",
  5050. "reflection"
  5051. ],
  5052. "support": {
  5053. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5054. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5055. },
  5056. "time": "2020-10-12T12:39:22+00:00"
  5057. },
  5058. {
  5059. "name": "phpoption/phpoption",
  5060. "version": "1.9.2",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/schmittjoh/php-option.git",
  5064. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5069. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5070. "shasum": ""
  5071. },
  5072. "require": {
  5073. "php": "^7.2.5 || ^8.0"
  5074. },
  5075. "require-dev": {
  5076. "bamarni/composer-bin-plugin": "^1.8.2",
  5077. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5078. },
  5079. "type": "library",
  5080. "extra": {
  5081. "bamarni-bin": {
  5082. "bin-links": true,
  5083. "forward-command": true
  5084. },
  5085. "branch-alias": {
  5086. "dev-master": "1.9-dev"
  5087. }
  5088. },
  5089. "autoload": {
  5090. "psr-4": {
  5091. "PhpOption\\": "src/PhpOption/"
  5092. }
  5093. },
  5094. "notification-url": "https://packagist.org/downloads/",
  5095. "license": [
  5096. "Apache-2.0"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Johannes M. Schmitt",
  5101. "email": "schmittjoh@gmail.com",
  5102. "homepage": "https://github.com/schmittjoh"
  5103. },
  5104. {
  5105. "name": "Graham Campbell",
  5106. "email": "hello@gjcampbell.co.uk",
  5107. "homepage": "https://github.com/GrahamCampbell"
  5108. }
  5109. ],
  5110. "description": "Option Type for PHP",
  5111. "keywords": [
  5112. "language",
  5113. "option",
  5114. "php",
  5115. "type"
  5116. ],
  5117. "support": {
  5118. "issues": "https://github.com/schmittjoh/php-option/issues",
  5119. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5120. },
  5121. "funding": [
  5122. {
  5123. "url": "https://github.com/GrahamCampbell",
  5124. "type": "github"
  5125. },
  5126. {
  5127. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5128. "type": "tidelift"
  5129. }
  5130. ],
  5131. "time": "2023-11-12T21:59:55+00:00"
  5132. },
  5133. {
  5134. "name": "psr/cache",
  5135. "version": "3.0.0",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://github.com/php-fig/cache.git",
  5139. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5140. },
  5141. "dist": {
  5142. "type": "zip",
  5143. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5144. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5145. "shasum": ""
  5146. },
  5147. "require": {
  5148. "php": ">=8.0.0"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "branch-alias": {
  5153. "dev-master": "1.0.x-dev"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "psr-4": {
  5158. "Psr\\Cache\\": "src/"
  5159. }
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "PHP-FIG",
  5168. "homepage": "https://www.php-fig.org/"
  5169. }
  5170. ],
  5171. "description": "Common interface for caching libraries",
  5172. "keywords": [
  5173. "cache",
  5174. "psr",
  5175. "psr-6"
  5176. ],
  5177. "support": {
  5178. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5179. },
  5180. "time": "2021-02-03T23:26:27+00:00"
  5181. },
  5182. {
  5183. "name": "psr/clock",
  5184. "version": "1.0.0",
  5185. "source": {
  5186. "type": "git",
  5187. "url": "https://github.com/php-fig/clock.git",
  5188. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5189. },
  5190. "dist": {
  5191. "type": "zip",
  5192. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5193. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5194. "shasum": ""
  5195. },
  5196. "require": {
  5197. "php": "^7.0 || ^8.0"
  5198. },
  5199. "type": "library",
  5200. "autoload": {
  5201. "psr-4": {
  5202. "Psr\\Clock\\": "src/"
  5203. }
  5204. },
  5205. "notification-url": "https://packagist.org/downloads/",
  5206. "license": [
  5207. "MIT"
  5208. ],
  5209. "authors": [
  5210. {
  5211. "name": "PHP-FIG",
  5212. "homepage": "https://www.php-fig.org/"
  5213. }
  5214. ],
  5215. "description": "Common interface for reading the clock.",
  5216. "homepage": "https://github.com/php-fig/clock",
  5217. "keywords": [
  5218. "clock",
  5219. "now",
  5220. "psr",
  5221. "psr-20",
  5222. "time"
  5223. ],
  5224. "support": {
  5225. "issues": "https://github.com/php-fig/clock/issues",
  5226. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5227. },
  5228. "time": "2022-11-25T14:36:26+00:00"
  5229. },
  5230. {
  5231. "name": "psr/container",
  5232. "version": "2.0.2",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/php-fig/container.git",
  5236. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5241. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "php": ">=7.4.0"
  5246. },
  5247. "type": "library",
  5248. "extra": {
  5249. "branch-alias": {
  5250. "dev-master": "2.0.x-dev"
  5251. }
  5252. },
  5253. "autoload": {
  5254. "psr-4": {
  5255. "Psr\\Container\\": "src/"
  5256. }
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "PHP-FIG",
  5265. "homepage": "https://www.php-fig.org/"
  5266. }
  5267. ],
  5268. "description": "Common Container Interface (PHP FIG PSR-11)",
  5269. "homepage": "https://github.com/php-fig/container",
  5270. "keywords": [
  5271. "PSR-11",
  5272. "container",
  5273. "container-interface",
  5274. "container-interop",
  5275. "psr"
  5276. ],
  5277. "support": {
  5278. "issues": "https://github.com/php-fig/container/issues",
  5279. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5280. },
  5281. "time": "2021-11-05T16:47:00+00:00"
  5282. },
  5283. {
  5284. "name": "psr/event-dispatcher",
  5285. "version": "1.0.0",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://github.com/php-fig/event-dispatcher.git",
  5289. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5294. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5295. "shasum": ""
  5296. },
  5297. "require": {
  5298. "php": ">=7.2.0"
  5299. },
  5300. "type": "library",
  5301. "extra": {
  5302. "branch-alias": {
  5303. "dev-master": "1.0.x-dev"
  5304. }
  5305. },
  5306. "autoload": {
  5307. "psr-4": {
  5308. "Psr\\EventDispatcher\\": "src/"
  5309. }
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "PHP-FIG",
  5318. "homepage": "http://www.php-fig.org/"
  5319. }
  5320. ],
  5321. "description": "Standard interfaces for event handling.",
  5322. "keywords": [
  5323. "events",
  5324. "psr",
  5325. "psr-14"
  5326. ],
  5327. "support": {
  5328. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5329. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5330. },
  5331. "time": "2019-01-08T18:20:26+00:00"
  5332. },
  5333. {
  5334. "name": "psr/http-client",
  5335. "version": "1.0.3",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/php-fig/http-client.git",
  5339. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5344. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5345. "shasum": ""
  5346. },
  5347. "require": {
  5348. "php": "^7.0 || ^8.0",
  5349. "psr/http-message": "^1.0 || ^2.0"
  5350. },
  5351. "type": "library",
  5352. "extra": {
  5353. "branch-alias": {
  5354. "dev-master": "1.0.x-dev"
  5355. }
  5356. },
  5357. "autoload": {
  5358. "psr-4": {
  5359. "Psr\\Http\\Client\\": "src/"
  5360. }
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "PHP-FIG",
  5369. "homepage": "https://www.php-fig.org/"
  5370. }
  5371. ],
  5372. "description": "Common interface for HTTP clients",
  5373. "homepage": "https://github.com/php-fig/http-client",
  5374. "keywords": [
  5375. "http",
  5376. "http-client",
  5377. "psr",
  5378. "psr-18"
  5379. ],
  5380. "support": {
  5381. "source": "https://github.com/php-fig/http-client"
  5382. },
  5383. "time": "2023-09-23T14:17:50+00:00"
  5384. },
  5385. {
  5386. "name": "psr/http-factory",
  5387. "version": "1.1.0",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/php-fig/http-factory.git",
  5391. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5396. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "php": ">=7.1",
  5401. "psr/http-message": "^1.0 || ^2.0"
  5402. },
  5403. "type": "library",
  5404. "extra": {
  5405. "branch-alias": {
  5406. "dev-master": "1.0.x-dev"
  5407. }
  5408. },
  5409. "autoload": {
  5410. "psr-4": {
  5411. "Psr\\Http\\Message\\": "src/"
  5412. }
  5413. },
  5414. "notification-url": "https://packagist.org/downloads/",
  5415. "license": [
  5416. "MIT"
  5417. ],
  5418. "authors": [
  5419. {
  5420. "name": "PHP-FIG",
  5421. "homepage": "https://www.php-fig.org/"
  5422. }
  5423. ],
  5424. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5425. "keywords": [
  5426. "factory",
  5427. "http",
  5428. "message",
  5429. "psr",
  5430. "psr-17",
  5431. "psr-7",
  5432. "request",
  5433. "response"
  5434. ],
  5435. "support": {
  5436. "source": "https://github.com/php-fig/http-factory"
  5437. },
  5438. "time": "2024-04-15T12:06:14+00:00"
  5439. },
  5440. {
  5441. "name": "psr/http-message",
  5442. "version": "2.0",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://github.com/php-fig/http-message.git",
  5446. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5451. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5452. "shasum": ""
  5453. },
  5454. "require": {
  5455. "php": "^7.2 || ^8.0"
  5456. },
  5457. "type": "library",
  5458. "extra": {
  5459. "branch-alias": {
  5460. "dev-master": "2.0.x-dev"
  5461. }
  5462. },
  5463. "autoload": {
  5464. "psr-4": {
  5465. "Psr\\Http\\Message\\": "src/"
  5466. }
  5467. },
  5468. "notification-url": "https://packagist.org/downloads/",
  5469. "license": [
  5470. "MIT"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "PHP-FIG",
  5475. "homepage": "https://www.php-fig.org/"
  5476. }
  5477. ],
  5478. "description": "Common interface for HTTP messages",
  5479. "homepage": "https://github.com/php-fig/http-message",
  5480. "keywords": [
  5481. "http",
  5482. "http-message",
  5483. "psr",
  5484. "psr-7",
  5485. "request",
  5486. "response"
  5487. ],
  5488. "support": {
  5489. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5490. },
  5491. "time": "2023-04-04T09:54:51+00:00"
  5492. },
  5493. {
  5494. "name": "psr/http-server-handler",
  5495. "version": "1.0.2",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/php-fig/http-server-handler.git",
  5499. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5504. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5505. "shasum": ""
  5506. },
  5507. "require": {
  5508. "php": ">=7.0",
  5509. "psr/http-message": "^1.0 || ^2.0"
  5510. },
  5511. "type": "library",
  5512. "extra": {
  5513. "branch-alias": {
  5514. "dev-master": "1.0.x-dev"
  5515. }
  5516. },
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Psr\\Http\\Server\\": "src/"
  5520. }
  5521. },
  5522. "notification-url": "https://packagist.org/downloads/",
  5523. "license": [
  5524. "MIT"
  5525. ],
  5526. "authors": [
  5527. {
  5528. "name": "PHP-FIG",
  5529. "homepage": "https://www.php-fig.org/"
  5530. }
  5531. ],
  5532. "description": "Common interface for HTTP server-side request handler",
  5533. "keywords": [
  5534. "handler",
  5535. "http",
  5536. "http-interop",
  5537. "psr",
  5538. "psr-15",
  5539. "psr-7",
  5540. "request",
  5541. "response",
  5542. "server"
  5543. ],
  5544. "support": {
  5545. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5546. },
  5547. "time": "2023-04-10T20:06:20+00:00"
  5548. },
  5549. {
  5550. "name": "psr/http-server-middleware",
  5551. "version": "1.0.2",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://github.com/php-fig/http-server-middleware.git",
  5555. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5560. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5561. "shasum": ""
  5562. },
  5563. "require": {
  5564. "php": ">=7.0",
  5565. "psr/http-message": "^1.0 || ^2.0",
  5566. "psr/http-server-handler": "^1.0"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-master": "1.0.x-dev"
  5572. }
  5573. },
  5574. "autoload": {
  5575. "psr-4": {
  5576. "Psr\\Http\\Server\\": "src/"
  5577. }
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "MIT"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "PHP-FIG",
  5586. "homepage": "https://www.php-fig.org/"
  5587. }
  5588. ],
  5589. "description": "Common interface for HTTP server-side middleware",
  5590. "keywords": [
  5591. "http",
  5592. "http-interop",
  5593. "middleware",
  5594. "psr",
  5595. "psr-15",
  5596. "psr-7",
  5597. "request",
  5598. "response"
  5599. ],
  5600. "support": {
  5601. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5602. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5603. },
  5604. "time": "2023-04-11T06:14:47+00:00"
  5605. },
  5606. {
  5607. "name": "psr/log",
  5608. "version": "3.0.0",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/php-fig/log.git",
  5612. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5617. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "php": ">=8.0.0"
  5622. },
  5623. "type": "library",
  5624. "extra": {
  5625. "branch-alias": {
  5626. "dev-master": "3.x-dev"
  5627. }
  5628. },
  5629. "autoload": {
  5630. "psr-4": {
  5631. "Psr\\Log\\": "src"
  5632. }
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "PHP-FIG",
  5641. "homepage": "https://www.php-fig.org/"
  5642. }
  5643. ],
  5644. "description": "Common interface for logging libraries",
  5645. "homepage": "https://github.com/php-fig/log",
  5646. "keywords": [
  5647. "log",
  5648. "psr",
  5649. "psr-3"
  5650. ],
  5651. "support": {
  5652. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5653. },
  5654. "time": "2021-07-14T16:46:02+00:00"
  5655. },
  5656. {
  5657. "name": "psr/simple-cache",
  5658. "version": "3.0.0",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://github.com/php-fig/simple-cache.git",
  5662. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5667. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5668. "shasum": ""
  5669. },
  5670. "require": {
  5671. "php": ">=8.0.0"
  5672. },
  5673. "type": "library",
  5674. "extra": {
  5675. "branch-alias": {
  5676. "dev-master": "3.0.x-dev"
  5677. }
  5678. },
  5679. "autoload": {
  5680. "psr-4": {
  5681. "Psr\\SimpleCache\\": "src/"
  5682. }
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "PHP-FIG",
  5691. "homepage": "https://www.php-fig.org/"
  5692. }
  5693. ],
  5694. "description": "Common interfaces for simple caching",
  5695. "keywords": [
  5696. "cache",
  5697. "caching",
  5698. "psr",
  5699. "psr-16",
  5700. "simple-cache"
  5701. ],
  5702. "support": {
  5703. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5704. },
  5705. "time": "2021-10-29T13:26:27+00:00"
  5706. },
  5707. {
  5708. "name": "ralouphie/getallheaders",
  5709. "version": "3.0.3",
  5710. "source": {
  5711. "type": "git",
  5712. "url": "https://github.com/ralouphie/getallheaders.git",
  5713. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5714. },
  5715. "dist": {
  5716. "type": "zip",
  5717. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5718. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5719. "shasum": ""
  5720. },
  5721. "require": {
  5722. "php": ">=5.6"
  5723. },
  5724. "require-dev": {
  5725. "php-coveralls/php-coveralls": "^2.1",
  5726. "phpunit/phpunit": "^5 || ^6.5"
  5727. },
  5728. "type": "library",
  5729. "autoload": {
  5730. "files": [
  5731. "src/getallheaders.php"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Ralph Khattar",
  5741. "email": "ralph.khattar@gmail.com"
  5742. }
  5743. ],
  5744. "description": "A polyfill for getallheaders.",
  5745. "support": {
  5746. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5747. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5748. },
  5749. "time": "2019-03-08T08:55:37+00:00"
  5750. },
  5751. {
  5752. "name": "ramsey/collection",
  5753. "version": "2.1.1",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/ramsey/collection.git",
  5757. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  5762. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": "^8.1"
  5767. },
  5768. "require-dev": {
  5769. "captainhook/plugin-composer": "^5.3",
  5770. "ergebnis/composer-normalize": "^2.45",
  5771. "fakerphp/faker": "^1.24",
  5772. "hamcrest/hamcrest-php": "^2.0",
  5773. "jangregor/phpstan-prophecy": "^2.1",
  5774. "mockery/mockery": "^1.6",
  5775. "php-parallel-lint/php-console-highlighter": "^1.0",
  5776. "php-parallel-lint/php-parallel-lint": "^1.4",
  5777. "phpspec/prophecy-phpunit": "^2.3",
  5778. "phpstan/extension-installer": "^1.4",
  5779. "phpstan/phpstan": "^2.1",
  5780. "phpstan/phpstan-mockery": "^2.0",
  5781. "phpstan/phpstan-phpunit": "^2.0",
  5782. "phpunit/phpunit": "^10.5",
  5783. "ramsey/coding-standard": "^2.3",
  5784. "ramsey/conventional-commits": "^1.6",
  5785. "roave/security-advisories": "dev-latest"
  5786. },
  5787. "type": "library",
  5788. "extra": {
  5789. "captainhook": {
  5790. "force-install": true
  5791. },
  5792. "ramsey/conventional-commits": {
  5793. "configFile": "conventional-commits.json"
  5794. }
  5795. },
  5796. "autoload": {
  5797. "psr-4": {
  5798. "Ramsey\\Collection\\": "src/"
  5799. }
  5800. },
  5801. "notification-url": "https://packagist.org/downloads/",
  5802. "license": [
  5803. "MIT"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Ben Ramsey",
  5808. "email": "ben@benramsey.com",
  5809. "homepage": "https://benramsey.com"
  5810. }
  5811. ],
  5812. "description": "A PHP library for representing and manipulating collections.",
  5813. "keywords": [
  5814. "array",
  5815. "collection",
  5816. "hash",
  5817. "map",
  5818. "queue",
  5819. "set"
  5820. ],
  5821. "support": {
  5822. "issues": "https://github.com/ramsey/collection/issues",
  5823. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  5824. },
  5825. "time": "2025-03-22T05:38:12+00:00"
  5826. },
  5827. {
  5828. "name": "ramsey/uuid",
  5829. "version": "4.7.6",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/ramsey/uuid.git",
  5833. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  5838. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  5843. "ext-json": "*",
  5844. "php": "^8.0",
  5845. "ramsey/collection": "^1.2 || ^2.0"
  5846. },
  5847. "replace": {
  5848. "rhumsaa/uuid": "self.version"
  5849. },
  5850. "require-dev": {
  5851. "captainhook/captainhook": "^5.10",
  5852. "captainhook/plugin-composer": "^5.3",
  5853. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5854. "doctrine/annotations": "^1.8",
  5855. "ergebnis/composer-normalize": "^2.15",
  5856. "mockery/mockery": "^1.3",
  5857. "paragonie/random-lib": "^2",
  5858. "php-mock/php-mock": "^2.2",
  5859. "php-mock/php-mock-mockery": "^1.3",
  5860. "php-parallel-lint/php-parallel-lint": "^1.1",
  5861. "phpbench/phpbench": "^1.0",
  5862. "phpstan/extension-installer": "^1.1",
  5863. "phpstan/phpstan": "^1.8",
  5864. "phpstan/phpstan-mockery": "^1.1",
  5865. "phpstan/phpstan-phpunit": "^1.1",
  5866. "phpunit/phpunit": "^8.5 || ^9",
  5867. "ramsey/composer-repl": "^1.4",
  5868. "slevomat/coding-standard": "^8.4",
  5869. "squizlabs/php_codesniffer": "^3.5",
  5870. "vimeo/psalm": "^4.9"
  5871. },
  5872. "suggest": {
  5873. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5874. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5875. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5876. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5877. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5878. },
  5879. "type": "library",
  5880. "extra": {
  5881. "captainhook": {
  5882. "force-install": true
  5883. }
  5884. },
  5885. "autoload": {
  5886. "files": [
  5887. "src/functions.php"
  5888. ],
  5889. "psr-4": {
  5890. "Ramsey\\Uuid\\": "src/"
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5898. "keywords": [
  5899. "guid",
  5900. "identifier",
  5901. "uuid"
  5902. ],
  5903. "support": {
  5904. "issues": "https://github.com/ramsey/uuid/issues",
  5905. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  5906. },
  5907. "funding": [
  5908. {
  5909. "url": "https://github.com/ramsey",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2024-04-27T21:32:50+00:00"
  5918. },
  5919. {
  5920. "name": "swow/psr7-plus",
  5921. "version": "v1.1.2",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/swow/psr7-plus.git",
  5925. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5930. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=8.0",
  5935. "psr/http-client": "^1.0",
  5936. "psr/http-factory": "^1.0",
  5937. "psr/http-message": "^1.1|^2.0"
  5938. },
  5939. "type": "library",
  5940. "autoload": {
  5941. "psr-4": {
  5942. "Swow\\Psr7\\Message\\": "src/Message/"
  5943. }
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "Apache-2.0"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "twose",
  5952. "email": "twosee@php.net"
  5953. }
  5954. ],
  5955. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5956. "keywords": [
  5957. "http",
  5958. "psr17",
  5959. "psr7",
  5960. "swow",
  5961. "websocket"
  5962. ],
  5963. "support": {
  5964. "issues": "https://github.com/swow/swow",
  5965. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5966. },
  5967. "time": "2023-06-15T09:18:11+00:00"
  5968. },
  5969. {
  5970. "name": "symfony/console",
  5971. "version": "v6.4.8",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://github.com/symfony/console.git",
  5975. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5980. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5981. "shasum": ""
  5982. },
  5983. "require": {
  5984. "php": ">=8.1",
  5985. "symfony/deprecation-contracts": "^2.5|^3",
  5986. "symfony/polyfill-mbstring": "~1.0",
  5987. "symfony/service-contracts": "^2.5|^3",
  5988. "symfony/string": "^5.4|^6.0|^7.0"
  5989. },
  5990. "conflict": {
  5991. "symfony/dependency-injection": "<5.4",
  5992. "symfony/dotenv": "<5.4",
  5993. "symfony/event-dispatcher": "<5.4",
  5994. "symfony/lock": "<5.4",
  5995. "symfony/process": "<5.4"
  5996. },
  5997. "provide": {
  5998. "psr/log-implementation": "1.0|2.0|3.0"
  5999. },
  6000. "require-dev": {
  6001. "psr/log": "^1|^2|^3",
  6002. "symfony/config": "^5.4|^6.0|^7.0",
  6003. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6004. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6005. "symfony/http-foundation": "^6.4|^7.0",
  6006. "symfony/http-kernel": "^6.4|^7.0",
  6007. "symfony/lock": "^5.4|^6.0|^7.0",
  6008. "symfony/messenger": "^5.4|^6.0|^7.0",
  6009. "symfony/process": "^5.4|^6.0|^7.0",
  6010. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6011. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6012. },
  6013. "type": "library",
  6014. "autoload": {
  6015. "psr-4": {
  6016. "Symfony\\Component\\Console\\": ""
  6017. },
  6018. "exclude-from-classmap": [
  6019. "/Tests/"
  6020. ]
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Fabien Potencier",
  6029. "email": "fabien@symfony.com"
  6030. },
  6031. {
  6032. "name": "Symfony Community",
  6033. "homepage": "https://symfony.com/contributors"
  6034. }
  6035. ],
  6036. "description": "Eases the creation of beautiful and testable command line interfaces",
  6037. "homepage": "https://symfony.com",
  6038. "keywords": [
  6039. "cli",
  6040. "command-line",
  6041. "console",
  6042. "terminal"
  6043. ],
  6044. "support": {
  6045. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2024-05-31T14:49:08+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/deprecation-contracts",
  6065. "version": "v3.5.0",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/deprecation-contracts.git",
  6069. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6074. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "php": ">=8.1"
  6079. },
  6080. "type": "library",
  6081. "extra": {
  6082. "branch-alias": {
  6083. "dev-main": "3.5-dev"
  6084. },
  6085. "thanks": {
  6086. "name": "symfony/contracts",
  6087. "url": "https://github.com/symfony/contracts"
  6088. }
  6089. },
  6090. "autoload": {
  6091. "files": [
  6092. "function.php"
  6093. ]
  6094. },
  6095. "notification-url": "https://packagist.org/downloads/",
  6096. "license": [
  6097. "MIT"
  6098. ],
  6099. "authors": [
  6100. {
  6101. "name": "Nicolas Grekas",
  6102. "email": "p@tchwork.com"
  6103. },
  6104. {
  6105. "name": "Symfony Community",
  6106. "homepage": "https://symfony.com/contributors"
  6107. }
  6108. ],
  6109. "description": "A generic function and convention to trigger deprecation notices",
  6110. "homepage": "https://symfony.com",
  6111. "support": {
  6112. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6113. },
  6114. "funding": [
  6115. {
  6116. "url": "https://symfony.com/sponsor",
  6117. "type": "custom"
  6118. },
  6119. {
  6120. "url": "https://github.com/fabpot",
  6121. "type": "github"
  6122. },
  6123. {
  6124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6125. "type": "tidelift"
  6126. }
  6127. ],
  6128. "time": "2024-04-18T09:32:20+00:00"
  6129. },
  6130. {
  6131. "name": "symfony/finder",
  6132. "version": "v6.4.8",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/symfony/finder.git",
  6136. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6141. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6142. "shasum": ""
  6143. },
  6144. "require": {
  6145. "php": ">=8.1"
  6146. },
  6147. "require-dev": {
  6148. "symfony/filesystem": "^6.0|^7.0"
  6149. },
  6150. "type": "library",
  6151. "autoload": {
  6152. "psr-4": {
  6153. "Symfony\\Component\\Finder\\": ""
  6154. },
  6155. "exclude-from-classmap": [
  6156. "/Tests/"
  6157. ]
  6158. },
  6159. "notification-url": "https://packagist.org/downloads/",
  6160. "license": [
  6161. "MIT"
  6162. ],
  6163. "authors": [
  6164. {
  6165. "name": "Fabien Potencier",
  6166. "email": "fabien@symfony.com"
  6167. },
  6168. {
  6169. "name": "Symfony Community",
  6170. "homepage": "https://symfony.com/contributors"
  6171. }
  6172. ],
  6173. "description": "Finds files and directories via an intuitive fluent interface",
  6174. "homepage": "https://symfony.com",
  6175. "support": {
  6176. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6177. },
  6178. "funding": [
  6179. {
  6180. "url": "https://symfony.com/sponsor",
  6181. "type": "custom"
  6182. },
  6183. {
  6184. "url": "https://github.com/fabpot",
  6185. "type": "github"
  6186. },
  6187. {
  6188. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6189. "type": "tidelift"
  6190. }
  6191. ],
  6192. "time": "2024-05-31T14:49:08+00:00"
  6193. },
  6194. {
  6195. "name": "symfony/polyfill-ctype",
  6196. "version": "v1.29.0",
  6197. "source": {
  6198. "type": "git",
  6199. "url": "https://github.com/symfony/polyfill-ctype.git",
  6200. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6201. },
  6202. "dist": {
  6203. "type": "zip",
  6204. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6205. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6206. "shasum": ""
  6207. },
  6208. "require": {
  6209. "php": ">=7.1"
  6210. },
  6211. "provide": {
  6212. "ext-ctype": "*"
  6213. },
  6214. "suggest": {
  6215. "ext-ctype": "For best performance"
  6216. },
  6217. "type": "library",
  6218. "extra": {
  6219. "thanks": {
  6220. "name": "symfony/polyfill",
  6221. "url": "https://github.com/symfony/polyfill"
  6222. }
  6223. },
  6224. "autoload": {
  6225. "files": [
  6226. "bootstrap.php"
  6227. ],
  6228. "psr-4": {
  6229. "Symfony\\Polyfill\\Ctype\\": ""
  6230. }
  6231. },
  6232. "notification-url": "https://packagist.org/downloads/",
  6233. "license": [
  6234. "MIT"
  6235. ],
  6236. "authors": [
  6237. {
  6238. "name": "Gert de Pagter",
  6239. "email": "BackEndTea@gmail.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Symfony polyfill for ctype functions",
  6247. "homepage": "https://symfony.com",
  6248. "keywords": [
  6249. "compatibility",
  6250. "ctype",
  6251. "polyfill",
  6252. "portable"
  6253. ],
  6254. "support": {
  6255. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6256. },
  6257. "funding": [
  6258. {
  6259. "url": "https://symfony.com/sponsor",
  6260. "type": "custom"
  6261. },
  6262. {
  6263. "url": "https://github.com/fabpot",
  6264. "type": "github"
  6265. },
  6266. {
  6267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6268. "type": "tidelift"
  6269. }
  6270. ],
  6271. "time": "2024-01-29T20:11:03+00:00"
  6272. },
  6273. {
  6274. "name": "symfony/polyfill-intl-grapheme",
  6275. "version": "v1.29.0",
  6276. "source": {
  6277. "type": "git",
  6278. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6279. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6280. },
  6281. "dist": {
  6282. "type": "zip",
  6283. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6284. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6285. "shasum": ""
  6286. },
  6287. "require": {
  6288. "php": ">=7.1"
  6289. },
  6290. "suggest": {
  6291. "ext-intl": "For best performance"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "thanks": {
  6296. "name": "symfony/polyfill",
  6297. "url": "https://github.com/symfony/polyfill"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "files": [
  6302. "bootstrap.php"
  6303. ],
  6304. "psr-4": {
  6305. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6306. }
  6307. },
  6308. "notification-url": "https://packagist.org/downloads/",
  6309. "license": [
  6310. "MIT"
  6311. ],
  6312. "authors": [
  6313. {
  6314. "name": "Nicolas Grekas",
  6315. "email": "p@tchwork.com"
  6316. },
  6317. {
  6318. "name": "Symfony Community",
  6319. "homepage": "https://symfony.com/contributors"
  6320. }
  6321. ],
  6322. "description": "Symfony polyfill for intl's grapheme_* functions",
  6323. "homepage": "https://symfony.com",
  6324. "keywords": [
  6325. "compatibility",
  6326. "grapheme",
  6327. "intl",
  6328. "polyfill",
  6329. "portable",
  6330. "shim"
  6331. ],
  6332. "support": {
  6333. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2024-01-29T20:11:03+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/polyfill-intl-normalizer",
  6353. "version": "v1.29.0",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6357. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6362. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "php": ">=7.1"
  6367. },
  6368. "suggest": {
  6369. "ext-intl": "For best performance"
  6370. },
  6371. "type": "library",
  6372. "extra": {
  6373. "thanks": {
  6374. "name": "symfony/polyfill",
  6375. "url": "https://github.com/symfony/polyfill"
  6376. }
  6377. },
  6378. "autoload": {
  6379. "files": [
  6380. "bootstrap.php"
  6381. ],
  6382. "psr-4": {
  6383. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6384. },
  6385. "classmap": [
  6386. "Resources/stubs"
  6387. ]
  6388. },
  6389. "notification-url": "https://packagist.org/downloads/",
  6390. "license": [
  6391. "MIT"
  6392. ],
  6393. "authors": [
  6394. {
  6395. "name": "Nicolas Grekas",
  6396. "email": "p@tchwork.com"
  6397. },
  6398. {
  6399. "name": "Symfony Community",
  6400. "homepage": "https://symfony.com/contributors"
  6401. }
  6402. ],
  6403. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6404. "homepage": "https://symfony.com",
  6405. "keywords": [
  6406. "compatibility",
  6407. "intl",
  6408. "normalizer",
  6409. "polyfill",
  6410. "portable",
  6411. "shim"
  6412. ],
  6413. "support": {
  6414. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6415. },
  6416. "funding": [
  6417. {
  6418. "url": "https://symfony.com/sponsor",
  6419. "type": "custom"
  6420. },
  6421. {
  6422. "url": "https://github.com/fabpot",
  6423. "type": "github"
  6424. },
  6425. {
  6426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6427. "type": "tidelift"
  6428. }
  6429. ],
  6430. "time": "2024-01-29T20:11:03+00:00"
  6431. },
  6432. {
  6433. "name": "symfony/polyfill-mbstring",
  6434. "version": "v1.29.0",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6438. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6443. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6444. "shasum": ""
  6445. },
  6446. "require": {
  6447. "php": ">=7.1"
  6448. },
  6449. "provide": {
  6450. "ext-mbstring": "*"
  6451. },
  6452. "suggest": {
  6453. "ext-mbstring": "For best performance"
  6454. },
  6455. "type": "library",
  6456. "extra": {
  6457. "thanks": {
  6458. "name": "symfony/polyfill",
  6459. "url": "https://github.com/symfony/polyfill"
  6460. }
  6461. },
  6462. "autoload": {
  6463. "files": [
  6464. "bootstrap.php"
  6465. ],
  6466. "psr-4": {
  6467. "Symfony\\Polyfill\\Mbstring\\": ""
  6468. }
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "MIT"
  6473. ],
  6474. "authors": [
  6475. {
  6476. "name": "Nicolas Grekas",
  6477. "email": "p@tchwork.com"
  6478. },
  6479. {
  6480. "name": "Symfony Community",
  6481. "homepage": "https://symfony.com/contributors"
  6482. }
  6483. ],
  6484. "description": "Symfony polyfill for the Mbstring extension",
  6485. "homepage": "https://symfony.com",
  6486. "keywords": [
  6487. "compatibility",
  6488. "mbstring",
  6489. "polyfill",
  6490. "portable",
  6491. "shim"
  6492. ],
  6493. "support": {
  6494. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6495. },
  6496. "funding": [
  6497. {
  6498. "url": "https://symfony.com/sponsor",
  6499. "type": "custom"
  6500. },
  6501. {
  6502. "url": "https://github.com/fabpot",
  6503. "type": "github"
  6504. },
  6505. {
  6506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6507. "type": "tidelift"
  6508. }
  6509. ],
  6510. "time": "2024-01-29T20:11:03+00:00"
  6511. },
  6512. {
  6513. "name": "symfony/polyfill-php80",
  6514. "version": "v1.29.0",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/symfony/polyfill-php80.git",
  6518. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6523. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "php": ">=7.1"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "thanks": {
  6532. "name": "symfony/polyfill",
  6533. "url": "https://github.com/symfony/polyfill"
  6534. }
  6535. },
  6536. "autoload": {
  6537. "files": [
  6538. "bootstrap.php"
  6539. ],
  6540. "psr-4": {
  6541. "Symfony\\Polyfill\\Php80\\": ""
  6542. },
  6543. "classmap": [
  6544. "Resources/stubs"
  6545. ]
  6546. },
  6547. "notification-url": "https://packagist.org/downloads/",
  6548. "license": [
  6549. "MIT"
  6550. ],
  6551. "authors": [
  6552. {
  6553. "name": "Ion Bazan",
  6554. "email": "ion.bazan@gmail.com"
  6555. },
  6556. {
  6557. "name": "Nicolas Grekas",
  6558. "email": "p@tchwork.com"
  6559. },
  6560. {
  6561. "name": "Symfony Community",
  6562. "homepage": "https://symfony.com/contributors"
  6563. }
  6564. ],
  6565. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6566. "homepage": "https://symfony.com",
  6567. "keywords": [
  6568. "compatibility",
  6569. "polyfill",
  6570. "portable",
  6571. "shim"
  6572. ],
  6573. "support": {
  6574. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6575. },
  6576. "funding": [
  6577. {
  6578. "url": "https://symfony.com/sponsor",
  6579. "type": "custom"
  6580. },
  6581. {
  6582. "url": "https://github.com/fabpot",
  6583. "type": "github"
  6584. },
  6585. {
  6586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6587. "type": "tidelift"
  6588. }
  6589. ],
  6590. "time": "2024-01-29T20:11:03+00:00"
  6591. },
  6592. {
  6593. "name": "symfony/service-contracts",
  6594. "version": "v3.5.0",
  6595. "source": {
  6596. "type": "git",
  6597. "url": "https://github.com/symfony/service-contracts.git",
  6598. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6599. },
  6600. "dist": {
  6601. "type": "zip",
  6602. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6603. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6604. "shasum": ""
  6605. },
  6606. "require": {
  6607. "php": ">=8.1",
  6608. "psr/container": "^1.1|^2.0",
  6609. "symfony/deprecation-contracts": "^2.5|^3"
  6610. },
  6611. "conflict": {
  6612. "ext-psr": "<1.1|>=2"
  6613. },
  6614. "type": "library",
  6615. "extra": {
  6616. "branch-alias": {
  6617. "dev-main": "3.5-dev"
  6618. },
  6619. "thanks": {
  6620. "name": "symfony/contracts",
  6621. "url": "https://github.com/symfony/contracts"
  6622. }
  6623. },
  6624. "autoload": {
  6625. "psr-4": {
  6626. "Symfony\\Contracts\\Service\\": ""
  6627. },
  6628. "exclude-from-classmap": [
  6629. "/Test/"
  6630. ]
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Nicolas Grekas",
  6639. "email": "p@tchwork.com"
  6640. },
  6641. {
  6642. "name": "Symfony Community",
  6643. "homepage": "https://symfony.com/contributors"
  6644. }
  6645. ],
  6646. "description": "Generic abstractions related to writing services",
  6647. "homepage": "https://symfony.com",
  6648. "keywords": [
  6649. "abstractions",
  6650. "contracts",
  6651. "decoupling",
  6652. "interfaces",
  6653. "interoperability",
  6654. "standards"
  6655. ],
  6656. "support": {
  6657. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6658. },
  6659. "funding": [
  6660. {
  6661. "url": "https://symfony.com/sponsor",
  6662. "type": "custom"
  6663. },
  6664. {
  6665. "url": "https://github.com/fabpot",
  6666. "type": "github"
  6667. },
  6668. {
  6669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6670. "type": "tidelift"
  6671. }
  6672. ],
  6673. "time": "2024-04-18T09:32:20+00:00"
  6674. },
  6675. {
  6676. "name": "symfony/string",
  6677. "version": "v6.4.8",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://github.com/symfony/string.git",
  6681. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6682. },
  6683. "dist": {
  6684. "type": "zip",
  6685. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6686. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6687. "shasum": ""
  6688. },
  6689. "require": {
  6690. "php": ">=8.1",
  6691. "symfony/polyfill-ctype": "~1.8",
  6692. "symfony/polyfill-intl-grapheme": "~1.0",
  6693. "symfony/polyfill-intl-normalizer": "~1.0",
  6694. "symfony/polyfill-mbstring": "~1.0"
  6695. },
  6696. "conflict": {
  6697. "symfony/translation-contracts": "<2.5"
  6698. },
  6699. "require-dev": {
  6700. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6701. "symfony/http-client": "^5.4|^6.0|^7.0",
  6702. "symfony/intl": "^6.2|^7.0",
  6703. "symfony/translation-contracts": "^2.5|^3.0",
  6704. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6705. },
  6706. "type": "library",
  6707. "autoload": {
  6708. "files": [
  6709. "Resources/functions.php"
  6710. ],
  6711. "psr-4": {
  6712. "Symfony\\Component\\String\\": ""
  6713. },
  6714. "exclude-from-classmap": [
  6715. "/Tests/"
  6716. ]
  6717. },
  6718. "notification-url": "https://packagist.org/downloads/",
  6719. "license": [
  6720. "MIT"
  6721. ],
  6722. "authors": [
  6723. {
  6724. "name": "Nicolas Grekas",
  6725. "email": "p@tchwork.com"
  6726. },
  6727. {
  6728. "name": "Symfony Community",
  6729. "homepage": "https://symfony.com/contributors"
  6730. }
  6731. ],
  6732. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6733. "homepage": "https://symfony.com",
  6734. "keywords": [
  6735. "grapheme",
  6736. "i18n",
  6737. "string",
  6738. "unicode",
  6739. "utf-8",
  6740. "utf8"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2024-05-31T14:49:08+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/translation",
  6763. "version": "v6.4.8",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/translation.git",
  6767. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6772. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=8.1",
  6777. "symfony/deprecation-contracts": "^2.5|^3",
  6778. "symfony/polyfill-mbstring": "~1.0",
  6779. "symfony/translation-contracts": "^2.5|^3.0"
  6780. },
  6781. "conflict": {
  6782. "symfony/config": "<5.4",
  6783. "symfony/console": "<5.4",
  6784. "symfony/dependency-injection": "<5.4",
  6785. "symfony/http-client-contracts": "<2.5",
  6786. "symfony/http-kernel": "<5.4",
  6787. "symfony/service-contracts": "<2.5",
  6788. "symfony/twig-bundle": "<5.4",
  6789. "symfony/yaml": "<5.4"
  6790. },
  6791. "provide": {
  6792. "symfony/translation-implementation": "2.3|3.0"
  6793. },
  6794. "require-dev": {
  6795. "nikic/php-parser": "^4.18|^5.0",
  6796. "psr/log": "^1|^2|^3",
  6797. "symfony/config": "^5.4|^6.0|^7.0",
  6798. "symfony/console": "^5.4|^6.0|^7.0",
  6799. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6800. "symfony/finder": "^5.4|^6.0|^7.0",
  6801. "symfony/http-client-contracts": "^2.5|^3.0",
  6802. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6803. "symfony/intl": "^5.4|^6.0|^7.0",
  6804. "symfony/polyfill-intl-icu": "^1.21",
  6805. "symfony/routing": "^5.4|^6.0|^7.0",
  6806. "symfony/service-contracts": "^2.5|^3",
  6807. "symfony/yaml": "^5.4|^6.0|^7.0"
  6808. },
  6809. "type": "library",
  6810. "autoload": {
  6811. "files": [
  6812. "Resources/functions.php"
  6813. ],
  6814. "psr-4": {
  6815. "Symfony\\Component\\Translation\\": ""
  6816. },
  6817. "exclude-from-classmap": [
  6818. "/Tests/"
  6819. ]
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "MIT"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Fabien Potencier",
  6828. "email": "fabien@symfony.com"
  6829. },
  6830. {
  6831. "name": "Symfony Community",
  6832. "homepage": "https://symfony.com/contributors"
  6833. }
  6834. ],
  6835. "description": "Provides tools to internationalize your application",
  6836. "homepage": "https://symfony.com",
  6837. "support": {
  6838. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6839. },
  6840. "funding": [
  6841. {
  6842. "url": "https://symfony.com/sponsor",
  6843. "type": "custom"
  6844. },
  6845. {
  6846. "url": "https://github.com/fabpot",
  6847. "type": "github"
  6848. },
  6849. {
  6850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6851. "type": "tidelift"
  6852. }
  6853. ],
  6854. "time": "2024-05-31T14:49:08+00:00"
  6855. },
  6856. {
  6857. "name": "symfony/translation-contracts",
  6858. "version": "v3.5.0",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/symfony/translation-contracts.git",
  6862. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6867. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6868. "shasum": ""
  6869. },
  6870. "require": {
  6871. "php": ">=8.1"
  6872. },
  6873. "type": "library",
  6874. "extra": {
  6875. "branch-alias": {
  6876. "dev-main": "3.5-dev"
  6877. },
  6878. "thanks": {
  6879. "name": "symfony/contracts",
  6880. "url": "https://github.com/symfony/contracts"
  6881. }
  6882. },
  6883. "autoload": {
  6884. "psr-4": {
  6885. "Symfony\\Contracts\\Translation\\": ""
  6886. },
  6887. "exclude-from-classmap": [
  6888. "/Test/"
  6889. ]
  6890. },
  6891. "notification-url": "https://packagist.org/downloads/",
  6892. "license": [
  6893. "MIT"
  6894. ],
  6895. "authors": [
  6896. {
  6897. "name": "Nicolas Grekas",
  6898. "email": "p@tchwork.com"
  6899. },
  6900. {
  6901. "name": "Symfony Community",
  6902. "homepage": "https://symfony.com/contributors"
  6903. }
  6904. ],
  6905. "description": "Generic abstractions related to translation",
  6906. "homepage": "https://symfony.com",
  6907. "keywords": [
  6908. "abstractions",
  6909. "contracts",
  6910. "decoupling",
  6911. "interfaces",
  6912. "interoperability",
  6913. "standards"
  6914. ],
  6915. "support": {
  6916. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6917. },
  6918. "funding": [
  6919. {
  6920. "url": "https://symfony.com/sponsor",
  6921. "type": "custom"
  6922. },
  6923. {
  6924. "url": "https://github.com/fabpot",
  6925. "type": "github"
  6926. },
  6927. {
  6928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6929. "type": "tidelift"
  6930. }
  6931. ],
  6932. "time": "2024-04-18T09:32:20+00:00"
  6933. },
  6934. {
  6935. "name": "vlucas/phpdotenv",
  6936. "version": "v5.6.0",
  6937. "source": {
  6938. "type": "git",
  6939. "url": "https://github.com/vlucas/phpdotenv.git",
  6940. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6941. },
  6942. "dist": {
  6943. "type": "zip",
  6944. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6945. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6946. "shasum": ""
  6947. },
  6948. "require": {
  6949. "ext-pcre": "*",
  6950. "graham-campbell/result-type": "^1.1.2",
  6951. "php": "^7.2.5 || ^8.0",
  6952. "phpoption/phpoption": "^1.9.2",
  6953. "symfony/polyfill-ctype": "^1.24",
  6954. "symfony/polyfill-mbstring": "^1.24",
  6955. "symfony/polyfill-php80": "^1.24"
  6956. },
  6957. "require-dev": {
  6958. "bamarni/composer-bin-plugin": "^1.8.2",
  6959. "ext-filter": "*",
  6960. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6961. },
  6962. "suggest": {
  6963. "ext-filter": "Required to use the boolean validator."
  6964. },
  6965. "type": "library",
  6966. "extra": {
  6967. "bamarni-bin": {
  6968. "bin-links": true,
  6969. "forward-command": true
  6970. },
  6971. "branch-alias": {
  6972. "dev-master": "5.6-dev"
  6973. }
  6974. },
  6975. "autoload": {
  6976. "psr-4": {
  6977. "Dotenv\\": "src/"
  6978. }
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "BSD-3-Clause"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Graham Campbell",
  6987. "email": "hello@gjcampbell.co.uk",
  6988. "homepage": "https://github.com/GrahamCampbell"
  6989. },
  6990. {
  6991. "name": "Vance Lucas",
  6992. "email": "vance@vancelucas.com",
  6993. "homepage": "https://github.com/vlucas"
  6994. }
  6995. ],
  6996. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6997. "keywords": [
  6998. "dotenv",
  6999. "env",
  7000. "environment"
  7001. ],
  7002. "support": {
  7003. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7004. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7005. },
  7006. "funding": [
  7007. {
  7008. "url": "https://github.com/GrahamCampbell",
  7009. "type": "github"
  7010. },
  7011. {
  7012. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7013. "type": "tidelift"
  7014. }
  7015. ],
  7016. "time": "2023-11-12T22:43:29+00:00"
  7017. }
  7018. ],
  7019. "packages-dev": [
  7020. {
  7021. "name": "clue/ndjson-react",
  7022. "version": "v1.3.0",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/clue/reactphp-ndjson.git",
  7026. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7031. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "php": ">=5.3",
  7036. "react/stream": "^1.2"
  7037. },
  7038. "require-dev": {
  7039. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7040. "react/event-loop": "^1.2"
  7041. },
  7042. "type": "library",
  7043. "autoload": {
  7044. "psr-4": {
  7045. "Clue\\React\\NDJson\\": "src/"
  7046. }
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Christian Lück",
  7055. "email": "christian@clue.engineering"
  7056. }
  7057. ],
  7058. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7059. "homepage": "https://github.com/clue/reactphp-ndjson",
  7060. "keywords": [
  7061. "NDJSON",
  7062. "json",
  7063. "jsonlines",
  7064. "newline",
  7065. "reactphp",
  7066. "streaming"
  7067. ],
  7068. "support": {
  7069. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7070. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7071. },
  7072. "funding": [
  7073. {
  7074. "url": "https://clue.engineering/support",
  7075. "type": "custom"
  7076. },
  7077. {
  7078. "url": "https://github.com/clue",
  7079. "type": "github"
  7080. }
  7081. ],
  7082. "time": "2022-12-23T10:58:28+00:00"
  7083. },
  7084. {
  7085. "name": "composer/pcre",
  7086. "version": "3.1.4",
  7087. "source": {
  7088. "type": "git",
  7089. "url": "https://github.com/composer/pcre.git",
  7090. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7091. },
  7092. "dist": {
  7093. "type": "zip",
  7094. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7095. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7096. "shasum": ""
  7097. },
  7098. "require": {
  7099. "php": "^7.4 || ^8.0"
  7100. },
  7101. "require-dev": {
  7102. "phpstan/phpstan": "^1.3",
  7103. "phpstan/phpstan-strict-rules": "^1.1",
  7104. "symfony/phpunit-bridge": "^5"
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-main": "3.x-dev"
  7110. }
  7111. },
  7112. "autoload": {
  7113. "psr-4": {
  7114. "Composer\\Pcre\\": "src"
  7115. }
  7116. },
  7117. "notification-url": "https://packagist.org/downloads/",
  7118. "license": [
  7119. "MIT"
  7120. ],
  7121. "authors": [
  7122. {
  7123. "name": "Jordi Boggiano",
  7124. "email": "j.boggiano@seld.be",
  7125. "homepage": "http://seld.be"
  7126. }
  7127. ],
  7128. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7129. "keywords": [
  7130. "PCRE",
  7131. "preg",
  7132. "regex",
  7133. "regular expression"
  7134. ],
  7135. "support": {
  7136. "issues": "https://github.com/composer/pcre/issues",
  7137. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7138. },
  7139. "funding": [
  7140. {
  7141. "url": "https://packagist.com",
  7142. "type": "custom"
  7143. },
  7144. {
  7145. "url": "https://github.com/composer",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7150. "type": "tidelift"
  7151. }
  7152. ],
  7153. "time": "2024-05-27T13:40:54+00:00"
  7154. },
  7155. {
  7156. "name": "composer/semver",
  7157. "version": "3.4.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/composer/semver.git",
  7161. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7166. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": "^5.3.2 || ^7.0 || ^8.0"
  7171. },
  7172. "require-dev": {
  7173. "phpstan/phpstan": "^1.4",
  7174. "symfony/phpunit-bridge": "^4.2 || ^5"
  7175. },
  7176. "type": "library",
  7177. "extra": {
  7178. "branch-alias": {
  7179. "dev-main": "3.x-dev"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Composer\\Semver\\": "src"
  7185. }
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Nils Adermann",
  7194. "email": "naderman@naderman.de",
  7195. "homepage": "http://www.naderman.de"
  7196. },
  7197. {
  7198. "name": "Jordi Boggiano",
  7199. "email": "j.boggiano@seld.be",
  7200. "homepage": "http://seld.be"
  7201. },
  7202. {
  7203. "name": "Rob Bast",
  7204. "email": "rob.bast@gmail.com",
  7205. "homepage": "http://robbast.nl"
  7206. }
  7207. ],
  7208. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7209. "keywords": [
  7210. "semantic",
  7211. "semver",
  7212. "validation",
  7213. "versioning"
  7214. ],
  7215. "support": {
  7216. "irc": "ircs://irc.libera.chat:6697/composer",
  7217. "issues": "https://github.com/composer/semver/issues",
  7218. "source": "https://github.com/composer/semver/tree/3.4.0"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://packagist.com",
  7223. "type": "custom"
  7224. },
  7225. {
  7226. "url": "https://github.com/composer",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7231. "type": "tidelift"
  7232. }
  7233. ],
  7234. "time": "2023-08-31T09:50:34+00:00"
  7235. },
  7236. {
  7237. "name": "composer/xdebug-handler",
  7238. "version": "3.0.5",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/composer/xdebug-handler.git",
  7242. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7247. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "composer/pcre": "^1 || ^2 || ^3",
  7252. "php": "^7.2.5 || ^8.0",
  7253. "psr/log": "^1 || ^2 || ^3"
  7254. },
  7255. "require-dev": {
  7256. "phpstan/phpstan": "^1.0",
  7257. "phpstan/phpstan-strict-rules": "^1.1",
  7258. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7259. },
  7260. "type": "library",
  7261. "autoload": {
  7262. "psr-4": {
  7263. "Composer\\XdebugHandler\\": "src"
  7264. }
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "MIT"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "John Stevenson",
  7273. "email": "john-stevenson@blueyonder.co.uk"
  7274. }
  7275. ],
  7276. "description": "Restarts a process without Xdebug.",
  7277. "keywords": [
  7278. "Xdebug",
  7279. "performance"
  7280. ],
  7281. "support": {
  7282. "irc": "ircs://irc.libera.chat:6697/composer",
  7283. "issues": "https://github.com/composer/xdebug-handler/issues",
  7284. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7285. },
  7286. "funding": [
  7287. {
  7288. "url": "https://packagist.com",
  7289. "type": "custom"
  7290. },
  7291. {
  7292. "url": "https://github.com/composer",
  7293. "type": "github"
  7294. },
  7295. {
  7296. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7297. "type": "tidelift"
  7298. }
  7299. ],
  7300. "time": "2024-05-06T16:37:16+00:00"
  7301. },
  7302. {
  7303. "name": "evenement/evenement",
  7304. "version": "v3.0.2",
  7305. "source": {
  7306. "type": "git",
  7307. "url": "https://github.com/igorw/evenement.git",
  7308. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7309. },
  7310. "dist": {
  7311. "type": "zip",
  7312. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7313. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7314. "shasum": ""
  7315. },
  7316. "require": {
  7317. "php": ">=7.0"
  7318. },
  7319. "require-dev": {
  7320. "phpunit/phpunit": "^9 || ^6"
  7321. },
  7322. "type": "library",
  7323. "autoload": {
  7324. "psr-4": {
  7325. "Evenement\\": "src/"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "Igor Wiedler",
  7335. "email": "igor@wiedler.ch"
  7336. }
  7337. ],
  7338. "description": "Événement is a very simple event dispatching library for PHP",
  7339. "keywords": [
  7340. "event-dispatcher",
  7341. "event-emitter"
  7342. ],
  7343. "support": {
  7344. "issues": "https://github.com/igorw/evenement/issues",
  7345. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7346. },
  7347. "time": "2023-08-08T05:53:35+00:00"
  7348. },
  7349. {
  7350. "name": "fidry/cpu-core-counter",
  7351. "version": "1.1.0",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7355. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7360. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": "^7.2 || ^8.0"
  7365. },
  7366. "require-dev": {
  7367. "fidry/makefile": "^0.2.0",
  7368. "fidry/php-cs-fixer-config": "^1.1.2",
  7369. "phpstan/extension-installer": "^1.2.0",
  7370. "phpstan/phpstan": "^1.9.2",
  7371. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7372. "phpstan/phpstan-phpunit": "^1.2.2",
  7373. "phpstan/phpstan-strict-rules": "^1.4.4",
  7374. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7375. "webmozarts/strict-phpunit": "^7.5"
  7376. },
  7377. "type": "library",
  7378. "autoload": {
  7379. "psr-4": {
  7380. "Fidry\\CpuCoreCounter\\": "src/"
  7381. }
  7382. },
  7383. "notification-url": "https://packagist.org/downloads/",
  7384. "license": [
  7385. "MIT"
  7386. ],
  7387. "authors": [
  7388. {
  7389. "name": "Théo FIDRY",
  7390. "email": "theo.fidry@gmail.com"
  7391. }
  7392. ],
  7393. "description": "Tiny utility to get the number of CPU cores.",
  7394. "keywords": [
  7395. "CPU",
  7396. "core"
  7397. ],
  7398. "support": {
  7399. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7400. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7401. },
  7402. "funding": [
  7403. {
  7404. "url": "https://github.com/theofidry",
  7405. "type": "github"
  7406. }
  7407. ],
  7408. "time": "2024-02-07T09:43:46+00:00"
  7409. },
  7410. {
  7411. "name": "friendsofphp/php-cs-fixer",
  7412. "version": "v3.58.1",
  7413. "source": {
  7414. "type": "git",
  7415. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7416. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7417. },
  7418. "dist": {
  7419. "type": "zip",
  7420. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7421. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7422. "shasum": ""
  7423. },
  7424. "require": {
  7425. "clue/ndjson-react": "^1.0",
  7426. "composer/semver": "^3.4",
  7427. "composer/xdebug-handler": "^3.0.3",
  7428. "ext-filter": "*",
  7429. "ext-json": "*",
  7430. "ext-tokenizer": "*",
  7431. "fidry/cpu-core-counter": "^1.0",
  7432. "php": "^7.4 || ^8.0",
  7433. "react/child-process": "^0.6.5",
  7434. "react/event-loop": "^1.0",
  7435. "react/promise": "^2.0 || ^3.0",
  7436. "react/socket": "^1.0",
  7437. "react/stream": "^1.0",
  7438. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7439. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7440. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7441. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7442. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7443. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7444. "symfony/polyfill-mbstring": "^1.28",
  7445. "symfony/polyfill-php80": "^1.28",
  7446. "symfony/polyfill-php81": "^1.28",
  7447. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7448. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7449. },
  7450. "require-dev": {
  7451. "facile-it/paraunit": "^1.3 || ^2.0",
  7452. "infection/infection": "^0.27.11",
  7453. "justinrainbow/json-schema": "^5.2",
  7454. "keradus/cli-executor": "^2.1",
  7455. "mikey179/vfsstream": "^1.6.11",
  7456. "php-coveralls/php-coveralls": "^2.7",
  7457. "php-cs-fixer/accessible-object": "^1.1",
  7458. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7459. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7460. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7461. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7462. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7463. },
  7464. "suggest": {
  7465. "ext-dom": "For handling output formats in XML",
  7466. "ext-mbstring": "For handling non-UTF8 characters."
  7467. },
  7468. "bin": [
  7469. "php-cs-fixer"
  7470. ],
  7471. "type": "application",
  7472. "autoload": {
  7473. "psr-4": {
  7474. "PhpCsFixer\\": "src/"
  7475. }
  7476. },
  7477. "notification-url": "https://packagist.org/downloads/",
  7478. "license": [
  7479. "MIT"
  7480. ],
  7481. "authors": [
  7482. {
  7483. "name": "Fabien Potencier",
  7484. "email": "fabien@symfony.com"
  7485. },
  7486. {
  7487. "name": "Dariusz Rumiński",
  7488. "email": "dariusz.ruminski@gmail.com"
  7489. }
  7490. ],
  7491. "description": "A tool to automatically fix PHP code style",
  7492. "keywords": [
  7493. "Static code analysis",
  7494. "fixer",
  7495. "standards",
  7496. "static analysis"
  7497. ],
  7498. "support": {
  7499. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7500. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7501. },
  7502. "funding": [
  7503. {
  7504. "url": "https://github.com/keradus",
  7505. "type": "github"
  7506. }
  7507. ],
  7508. "time": "2024-05-29T16:39:07+00:00"
  7509. },
  7510. {
  7511. "name": "hamcrest/hamcrest-php",
  7512. "version": "v2.0.1",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7516. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7521. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7522. "shasum": ""
  7523. },
  7524. "require": {
  7525. "php": "^5.3|^7.0|^8.0"
  7526. },
  7527. "replace": {
  7528. "cordoval/hamcrest-php": "*",
  7529. "davedevelopment/hamcrest-php": "*",
  7530. "kodova/hamcrest-php": "*"
  7531. },
  7532. "require-dev": {
  7533. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7534. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7535. },
  7536. "type": "library",
  7537. "extra": {
  7538. "branch-alias": {
  7539. "dev-master": "2.1-dev"
  7540. }
  7541. },
  7542. "autoload": {
  7543. "classmap": [
  7544. "hamcrest"
  7545. ]
  7546. },
  7547. "notification-url": "https://packagist.org/downloads/",
  7548. "license": [
  7549. "BSD-3-Clause"
  7550. ],
  7551. "description": "This is the PHP port of Hamcrest Matchers",
  7552. "keywords": [
  7553. "test"
  7554. ],
  7555. "support": {
  7556. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7557. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7558. },
  7559. "time": "2020-07-09T08:09:16+00:00"
  7560. },
  7561. {
  7562. "name": "hyperf/devtool",
  7563. "version": "v3.1.19",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/hyperf/devtool.git",
  7567. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7572. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "hyperf/code-parser": "~3.1.0",
  7577. "hyperf/command": "~3.1.0",
  7578. "hyperf/contract": "~3.1.0",
  7579. "hyperf/di": "~3.1.0",
  7580. "hyperf/support": "~3.1.0",
  7581. "hyperf/utils": "~3.1.0",
  7582. "php": ">=8.1"
  7583. },
  7584. "type": "library",
  7585. "extra": {
  7586. "branch-alias": {
  7587. "dev-master": "3.1-dev"
  7588. },
  7589. "hyperf": {
  7590. "config": "Hyperf\\Devtool\\ConfigProvider"
  7591. }
  7592. },
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Hyperf\\Devtool\\": "src/"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "description": "A Devtool for Hyperf.",
  7603. "homepage": "https://hyperf.io",
  7604. "keywords": [
  7605. "dev",
  7606. "devtool",
  7607. "hyperf",
  7608. "php",
  7609. "swoole"
  7610. ],
  7611. "support": {
  7612. "docs": "https://hyperf.wiki",
  7613. "issues": "https://github.com/hyperf/hyperf/issues",
  7614. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7615. "source": "https://github.com/hyperf/hyperf"
  7616. },
  7617. "funding": [
  7618. {
  7619. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7620. "type": "custom"
  7621. },
  7622. {
  7623. "url": "https://opencollective.com/hyperf",
  7624. "type": "open_collective"
  7625. }
  7626. ],
  7627. "time": "2024-04-13T06:53:08+00:00"
  7628. },
  7629. {
  7630. "name": "hyperf/testing",
  7631. "version": "v3.1.21",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/hyperf/testing.git",
  7635. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7640. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "hyperf/codec": "~3.1.0",
  7645. "hyperf/collection": "~3.1.0",
  7646. "hyperf/contract": "~3.1.0",
  7647. "hyperf/coroutine": "~3.1.0",
  7648. "hyperf/http-message": "~3.1.0",
  7649. "hyperf/http-server": "~3.1.0",
  7650. "hyperf/support": "~3.1.0",
  7651. "hyperf/utils": "~3.1.0",
  7652. "php": ">=8.1",
  7653. "phpunit/phpunit": "^10.0",
  7654. "psr/container": "^1.0|^2.0",
  7655. "symfony/http-foundation": "^5.4|^6.0"
  7656. },
  7657. "suggest": {
  7658. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7659. },
  7660. "bin": [
  7661. "co-phpunit"
  7662. ],
  7663. "type": "library",
  7664. "extra": {
  7665. "branch-alias": {
  7666. "dev-master": "3.1-dev"
  7667. }
  7668. },
  7669. "autoload": {
  7670. "psr-4": {
  7671. "Hyperf\\Testing\\": "src/"
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "description": "Testing for hyperf",
  7679. "keywords": [
  7680. "dev",
  7681. "php",
  7682. "swoole",
  7683. "testing"
  7684. ],
  7685. "support": {
  7686. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7691. "type": "custom"
  7692. },
  7693. {
  7694. "url": "https://opencollective.com/hyperf",
  7695. "type": "open_collective"
  7696. }
  7697. ],
  7698. "time": "2024-05-07T05:34:51+00:00"
  7699. },
  7700. {
  7701. "name": "hyperf/watcher",
  7702. "version": "v3.1.21",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/hyperf/watcher.git",
  7706. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7711. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7712. "shasum": ""
  7713. },
  7714. "require": {
  7715. "ext-posix": "*",
  7716. "hyperf/codec": "~3.1.0",
  7717. "hyperf/command": "~3.1.0",
  7718. "hyperf/di": "~3.1.0",
  7719. "hyperf/framework": "~3.1.0",
  7720. "hyperf/support": "~3.1.0",
  7721. "php": ">=8.1"
  7722. },
  7723. "type": "library",
  7724. "extra": {
  7725. "branch-alias": {
  7726. "dev-master": "3.1-dev"
  7727. },
  7728. "hyperf": {
  7729. "config": "Hyperf\\Watcher\\ConfigProvider"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "files": [
  7734. "src/Functions.php"
  7735. ],
  7736. "psr-4": {
  7737. "Hyperf\\Watcher\\": "src/"
  7738. }
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "description": "Hot reload watcher for Hyperf",
  7745. "keywords": [
  7746. "dev",
  7747. "hyperf",
  7748. "php"
  7749. ],
  7750. "support": {
  7751. "issues": "https://github.com/hyperf/watcher/issues",
  7752. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7757. "type": "custom"
  7758. },
  7759. {
  7760. "url": "https://opencollective.com/hyperf",
  7761. "type": "open_collective"
  7762. }
  7763. ],
  7764. "time": "2024-05-09T13:40:44+00:00"
  7765. },
  7766. {
  7767. "name": "mockery/mockery",
  7768. "version": "1.6.12",
  7769. "source": {
  7770. "type": "git",
  7771. "url": "https://github.com/mockery/mockery.git",
  7772. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7773. },
  7774. "dist": {
  7775. "type": "zip",
  7776. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7777. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7778. "shasum": ""
  7779. },
  7780. "require": {
  7781. "hamcrest/hamcrest-php": "^2.0.1",
  7782. "lib-pcre": ">=7.0",
  7783. "php": ">=7.3"
  7784. },
  7785. "conflict": {
  7786. "phpunit/phpunit": "<8.0"
  7787. },
  7788. "require-dev": {
  7789. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7790. "symplify/easy-coding-standard": "^12.1.14"
  7791. },
  7792. "type": "library",
  7793. "autoload": {
  7794. "files": [
  7795. "library/helpers.php",
  7796. "library/Mockery.php"
  7797. ],
  7798. "psr-4": {
  7799. "Mockery\\": "library/Mockery"
  7800. }
  7801. },
  7802. "notification-url": "https://packagist.org/downloads/",
  7803. "license": [
  7804. "BSD-3-Clause"
  7805. ],
  7806. "authors": [
  7807. {
  7808. "name": "Pádraic Brady",
  7809. "email": "padraic.brady@gmail.com",
  7810. "homepage": "https://github.com/padraic",
  7811. "role": "Author"
  7812. },
  7813. {
  7814. "name": "Dave Marshall",
  7815. "email": "dave.marshall@atstsolutions.co.uk",
  7816. "homepage": "https://davedevelopment.co.uk",
  7817. "role": "Developer"
  7818. },
  7819. {
  7820. "name": "Nathanael Esayeas",
  7821. "email": "nathanael.esayeas@protonmail.com",
  7822. "homepage": "https://github.com/ghostwriter",
  7823. "role": "Lead Developer"
  7824. }
  7825. ],
  7826. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7827. "homepage": "https://github.com/mockery/mockery",
  7828. "keywords": [
  7829. "BDD",
  7830. "TDD",
  7831. "library",
  7832. "mock",
  7833. "mock objects",
  7834. "mockery",
  7835. "stub",
  7836. "test",
  7837. "test double",
  7838. "testing"
  7839. ],
  7840. "support": {
  7841. "docs": "https://docs.mockery.io/",
  7842. "issues": "https://github.com/mockery/mockery/issues",
  7843. "rss": "https://github.com/mockery/mockery/releases.atom",
  7844. "security": "https://github.com/mockery/mockery/security/advisories",
  7845. "source": "https://github.com/mockery/mockery"
  7846. },
  7847. "time": "2024-05-16T03:13:13+00:00"
  7848. },
  7849. {
  7850. "name": "myclabs/deep-copy",
  7851. "version": "1.11.1",
  7852. "source": {
  7853. "type": "git",
  7854. "url": "https://github.com/myclabs/DeepCopy.git",
  7855. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7856. },
  7857. "dist": {
  7858. "type": "zip",
  7859. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7860. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7861. "shasum": ""
  7862. },
  7863. "require": {
  7864. "php": "^7.1 || ^8.0"
  7865. },
  7866. "conflict": {
  7867. "doctrine/collections": "<1.6.8",
  7868. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7869. },
  7870. "require-dev": {
  7871. "doctrine/collections": "^1.6.8",
  7872. "doctrine/common": "^2.13.3 || ^3.2.2",
  7873. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7874. },
  7875. "type": "library",
  7876. "autoload": {
  7877. "files": [
  7878. "src/DeepCopy/deep_copy.php"
  7879. ],
  7880. "psr-4": {
  7881. "DeepCopy\\": "src/DeepCopy/"
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "description": "Create deep copies (clones) of your objects",
  7889. "keywords": [
  7890. "clone",
  7891. "copy",
  7892. "duplicate",
  7893. "object",
  7894. "object graph"
  7895. ],
  7896. "support": {
  7897. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7898. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7899. },
  7900. "funding": [
  7901. {
  7902. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7903. "type": "tidelift"
  7904. }
  7905. ],
  7906. "time": "2023-03-08T13:26:56+00:00"
  7907. },
  7908. {
  7909. "name": "phar-io/manifest",
  7910. "version": "2.0.4",
  7911. "source": {
  7912. "type": "git",
  7913. "url": "https://github.com/phar-io/manifest.git",
  7914. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7915. },
  7916. "dist": {
  7917. "type": "zip",
  7918. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7919. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7920. "shasum": ""
  7921. },
  7922. "require": {
  7923. "ext-dom": "*",
  7924. "ext-libxml": "*",
  7925. "ext-phar": "*",
  7926. "ext-xmlwriter": "*",
  7927. "phar-io/version": "^3.0.1",
  7928. "php": "^7.2 || ^8.0"
  7929. },
  7930. "type": "library",
  7931. "extra": {
  7932. "branch-alias": {
  7933. "dev-master": "2.0.x-dev"
  7934. }
  7935. },
  7936. "autoload": {
  7937. "classmap": [
  7938. "src/"
  7939. ]
  7940. },
  7941. "notification-url": "https://packagist.org/downloads/",
  7942. "license": [
  7943. "BSD-3-Clause"
  7944. ],
  7945. "authors": [
  7946. {
  7947. "name": "Arne Blankerts",
  7948. "email": "arne@blankerts.de",
  7949. "role": "Developer"
  7950. },
  7951. {
  7952. "name": "Sebastian Heuer",
  7953. "email": "sebastian@phpeople.de",
  7954. "role": "Developer"
  7955. },
  7956. {
  7957. "name": "Sebastian Bergmann",
  7958. "email": "sebastian@phpunit.de",
  7959. "role": "Developer"
  7960. }
  7961. ],
  7962. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7963. "support": {
  7964. "issues": "https://github.com/phar-io/manifest/issues",
  7965. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7966. },
  7967. "funding": [
  7968. {
  7969. "url": "https://github.com/theseer",
  7970. "type": "github"
  7971. }
  7972. ],
  7973. "time": "2024-03-03T12:33:53+00:00"
  7974. },
  7975. {
  7976. "name": "phar-io/version",
  7977. "version": "3.2.1",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/phar-io/version.git",
  7981. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7986. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^7.2 || ^8.0"
  7991. },
  7992. "type": "library",
  7993. "autoload": {
  7994. "classmap": [
  7995. "src/"
  7996. ]
  7997. },
  7998. "notification-url": "https://packagist.org/downloads/",
  7999. "license": [
  8000. "BSD-3-Clause"
  8001. ],
  8002. "authors": [
  8003. {
  8004. "name": "Arne Blankerts",
  8005. "email": "arne@blankerts.de",
  8006. "role": "Developer"
  8007. },
  8008. {
  8009. "name": "Sebastian Heuer",
  8010. "email": "sebastian@phpeople.de",
  8011. "role": "Developer"
  8012. },
  8013. {
  8014. "name": "Sebastian Bergmann",
  8015. "email": "sebastian@phpunit.de",
  8016. "role": "Developer"
  8017. }
  8018. ],
  8019. "description": "Library for handling version information and constraints",
  8020. "support": {
  8021. "issues": "https://github.com/phar-io/version/issues",
  8022. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8023. },
  8024. "time": "2022-02-21T01:04:05+00:00"
  8025. },
  8026. {
  8027. "name": "phpstan/phpstan",
  8028. "version": "1.11.3",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/phpstan/phpstan.git",
  8032. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8037. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8038. "shasum": ""
  8039. },
  8040. "require": {
  8041. "php": "^7.2|^8.0"
  8042. },
  8043. "conflict": {
  8044. "phpstan/phpstan-shim": "*"
  8045. },
  8046. "bin": [
  8047. "phpstan",
  8048. "phpstan.phar"
  8049. ],
  8050. "type": "library",
  8051. "autoload": {
  8052. "files": [
  8053. "bootstrap.php"
  8054. ]
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "MIT"
  8059. ],
  8060. "description": "PHPStan - PHP Static Analysis Tool",
  8061. "keywords": [
  8062. "dev",
  8063. "static analysis"
  8064. ],
  8065. "support": {
  8066. "docs": "https://phpstan.org/user-guide/getting-started",
  8067. "forum": "https://github.com/phpstan/phpstan/discussions",
  8068. "issues": "https://github.com/phpstan/phpstan/issues",
  8069. "security": "https://github.com/phpstan/phpstan/security/policy",
  8070. "source": "https://github.com/phpstan/phpstan-src"
  8071. },
  8072. "funding": [
  8073. {
  8074. "url": "https://github.com/ondrejmirtes",
  8075. "type": "github"
  8076. },
  8077. {
  8078. "url": "https://github.com/phpstan",
  8079. "type": "github"
  8080. }
  8081. ],
  8082. "time": "2024-05-31T13:53:37+00:00"
  8083. },
  8084. {
  8085. "name": "phpunit/php-code-coverage",
  8086. "version": "10.1.14",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8090. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8095. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8096. "shasum": ""
  8097. },
  8098. "require": {
  8099. "ext-dom": "*",
  8100. "ext-libxml": "*",
  8101. "ext-xmlwriter": "*",
  8102. "nikic/php-parser": "^4.18 || ^5.0",
  8103. "php": ">=8.1",
  8104. "phpunit/php-file-iterator": "^4.0",
  8105. "phpunit/php-text-template": "^3.0",
  8106. "sebastian/code-unit-reverse-lookup": "^3.0",
  8107. "sebastian/complexity": "^3.0",
  8108. "sebastian/environment": "^6.0",
  8109. "sebastian/lines-of-code": "^2.0",
  8110. "sebastian/version": "^4.0",
  8111. "theseer/tokenizer": "^1.2.0"
  8112. },
  8113. "require-dev": {
  8114. "phpunit/phpunit": "^10.1"
  8115. },
  8116. "suggest": {
  8117. "ext-pcov": "PHP extension that provides line coverage",
  8118. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8119. },
  8120. "type": "library",
  8121. "extra": {
  8122. "branch-alias": {
  8123. "dev-main": "10.1-dev"
  8124. }
  8125. },
  8126. "autoload": {
  8127. "classmap": [
  8128. "src/"
  8129. ]
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "BSD-3-Clause"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Sebastian Bergmann",
  8138. "email": "sebastian@phpunit.de",
  8139. "role": "lead"
  8140. }
  8141. ],
  8142. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8143. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8144. "keywords": [
  8145. "coverage",
  8146. "testing",
  8147. "xunit"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8151. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8152. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8153. },
  8154. "funding": [
  8155. {
  8156. "url": "https://github.com/sebastianbergmann",
  8157. "type": "github"
  8158. }
  8159. ],
  8160. "time": "2024-03-12T15:33:41+00:00"
  8161. },
  8162. {
  8163. "name": "phpunit/php-file-iterator",
  8164. "version": "4.1.0",
  8165. "source": {
  8166. "type": "git",
  8167. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8168. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8169. },
  8170. "dist": {
  8171. "type": "zip",
  8172. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8173. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8174. "shasum": ""
  8175. },
  8176. "require": {
  8177. "php": ">=8.1"
  8178. },
  8179. "require-dev": {
  8180. "phpunit/phpunit": "^10.0"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "branch-alias": {
  8185. "dev-main": "4.0-dev"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "classmap": [
  8190. "src/"
  8191. ]
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "BSD-3-Clause"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Sebastian Bergmann",
  8200. "email": "sebastian@phpunit.de",
  8201. "role": "lead"
  8202. }
  8203. ],
  8204. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8205. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8206. "keywords": [
  8207. "filesystem",
  8208. "iterator"
  8209. ],
  8210. "support": {
  8211. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8212. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8213. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://github.com/sebastianbergmann",
  8218. "type": "github"
  8219. }
  8220. ],
  8221. "time": "2023-08-31T06:24:48+00:00"
  8222. },
  8223. {
  8224. "name": "phpunit/php-invoker",
  8225. "version": "4.0.0",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8229. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8234. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "php": ">=8.1"
  8239. },
  8240. "require-dev": {
  8241. "ext-pcntl": "*",
  8242. "phpunit/phpunit": "^10.0"
  8243. },
  8244. "suggest": {
  8245. "ext-pcntl": "*"
  8246. },
  8247. "type": "library",
  8248. "extra": {
  8249. "branch-alias": {
  8250. "dev-main": "4.0-dev"
  8251. }
  8252. },
  8253. "autoload": {
  8254. "classmap": [
  8255. "src/"
  8256. ]
  8257. },
  8258. "notification-url": "https://packagist.org/downloads/",
  8259. "license": [
  8260. "BSD-3-Clause"
  8261. ],
  8262. "authors": [
  8263. {
  8264. "name": "Sebastian Bergmann",
  8265. "email": "sebastian@phpunit.de",
  8266. "role": "lead"
  8267. }
  8268. ],
  8269. "description": "Invoke callables with a timeout",
  8270. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8271. "keywords": [
  8272. "process"
  8273. ],
  8274. "support": {
  8275. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8276. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://github.com/sebastianbergmann",
  8281. "type": "github"
  8282. }
  8283. ],
  8284. "time": "2023-02-03T06:56:09+00:00"
  8285. },
  8286. {
  8287. "name": "phpunit/php-text-template",
  8288. "version": "3.0.1",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8292. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8297. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "php": ">=8.1"
  8302. },
  8303. "require-dev": {
  8304. "phpunit/phpunit": "^10.0"
  8305. },
  8306. "type": "library",
  8307. "extra": {
  8308. "branch-alias": {
  8309. "dev-main": "3.0-dev"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "classmap": [
  8314. "src/"
  8315. ]
  8316. },
  8317. "notification-url": "https://packagist.org/downloads/",
  8318. "license": [
  8319. "BSD-3-Clause"
  8320. ],
  8321. "authors": [
  8322. {
  8323. "name": "Sebastian Bergmann",
  8324. "email": "sebastian@phpunit.de",
  8325. "role": "lead"
  8326. }
  8327. ],
  8328. "description": "Simple template engine.",
  8329. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8330. "keywords": [
  8331. "template"
  8332. ],
  8333. "support": {
  8334. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8335. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8336. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8337. },
  8338. "funding": [
  8339. {
  8340. "url": "https://github.com/sebastianbergmann",
  8341. "type": "github"
  8342. }
  8343. ],
  8344. "time": "2023-08-31T14:07:24+00:00"
  8345. },
  8346. {
  8347. "name": "phpunit/php-timer",
  8348. "version": "6.0.0",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8352. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8357. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=8.1"
  8362. },
  8363. "require-dev": {
  8364. "phpunit/phpunit": "^10.0"
  8365. },
  8366. "type": "library",
  8367. "extra": {
  8368. "branch-alias": {
  8369. "dev-main": "6.0-dev"
  8370. }
  8371. },
  8372. "autoload": {
  8373. "classmap": [
  8374. "src/"
  8375. ]
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "BSD-3-Clause"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Sebastian Bergmann",
  8384. "email": "sebastian@phpunit.de",
  8385. "role": "lead"
  8386. }
  8387. ],
  8388. "description": "Utility class for timing",
  8389. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8390. "keywords": [
  8391. "timer"
  8392. ],
  8393. "support": {
  8394. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8395. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8396. },
  8397. "funding": [
  8398. {
  8399. "url": "https://github.com/sebastianbergmann",
  8400. "type": "github"
  8401. }
  8402. ],
  8403. "time": "2023-02-03T06:57:52+00:00"
  8404. },
  8405. {
  8406. "name": "phpunit/phpunit",
  8407. "version": "10.5.20",
  8408. "source": {
  8409. "type": "git",
  8410. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8411. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8412. },
  8413. "dist": {
  8414. "type": "zip",
  8415. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8416. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8417. "shasum": ""
  8418. },
  8419. "require": {
  8420. "ext-dom": "*",
  8421. "ext-json": "*",
  8422. "ext-libxml": "*",
  8423. "ext-mbstring": "*",
  8424. "ext-xml": "*",
  8425. "ext-xmlwriter": "*",
  8426. "myclabs/deep-copy": "^1.10.1",
  8427. "phar-io/manifest": "^2.0.3",
  8428. "phar-io/version": "^3.0.2",
  8429. "php": ">=8.1",
  8430. "phpunit/php-code-coverage": "^10.1.5",
  8431. "phpunit/php-file-iterator": "^4.0",
  8432. "phpunit/php-invoker": "^4.0",
  8433. "phpunit/php-text-template": "^3.0",
  8434. "phpunit/php-timer": "^6.0",
  8435. "sebastian/cli-parser": "^2.0",
  8436. "sebastian/code-unit": "^2.0",
  8437. "sebastian/comparator": "^5.0",
  8438. "sebastian/diff": "^5.0",
  8439. "sebastian/environment": "^6.0",
  8440. "sebastian/exporter": "^5.1",
  8441. "sebastian/global-state": "^6.0.1",
  8442. "sebastian/object-enumerator": "^5.0",
  8443. "sebastian/recursion-context": "^5.0",
  8444. "sebastian/type": "^4.0",
  8445. "sebastian/version": "^4.0"
  8446. },
  8447. "suggest": {
  8448. "ext-soap": "To be able to generate mocks based on WSDL files"
  8449. },
  8450. "bin": [
  8451. "phpunit"
  8452. ],
  8453. "type": "library",
  8454. "extra": {
  8455. "branch-alias": {
  8456. "dev-main": "10.5-dev"
  8457. }
  8458. },
  8459. "autoload": {
  8460. "files": [
  8461. "src/Framework/Assert/Functions.php"
  8462. ],
  8463. "classmap": [
  8464. "src/"
  8465. ]
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "BSD-3-Clause"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Sebastian Bergmann",
  8474. "email": "sebastian@phpunit.de",
  8475. "role": "lead"
  8476. }
  8477. ],
  8478. "description": "The PHP Unit Testing framework.",
  8479. "homepage": "https://phpunit.de/",
  8480. "keywords": [
  8481. "phpunit",
  8482. "testing",
  8483. "xunit"
  8484. ],
  8485. "support": {
  8486. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8487. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8488. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8489. },
  8490. "funding": [
  8491. {
  8492. "url": "https://phpunit.de/sponsors.html",
  8493. "type": "custom"
  8494. },
  8495. {
  8496. "url": "https://github.com/sebastianbergmann",
  8497. "type": "github"
  8498. },
  8499. {
  8500. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8501. "type": "tidelift"
  8502. }
  8503. ],
  8504. "time": "2024-04-24T06:32:35+00:00"
  8505. },
  8506. {
  8507. "name": "react/cache",
  8508. "version": "v1.2.0",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/reactphp/cache.git",
  8512. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8517. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "php": ">=5.3.0",
  8522. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8523. },
  8524. "require-dev": {
  8525. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8526. },
  8527. "type": "library",
  8528. "autoload": {
  8529. "psr-4": {
  8530. "React\\Cache\\": "src/"
  8531. }
  8532. },
  8533. "notification-url": "https://packagist.org/downloads/",
  8534. "license": [
  8535. "MIT"
  8536. ],
  8537. "authors": [
  8538. {
  8539. "name": "Christian Lück",
  8540. "email": "christian@clue.engineering",
  8541. "homepage": "https://clue.engineering/"
  8542. },
  8543. {
  8544. "name": "Cees-Jan Kiewiet",
  8545. "email": "reactphp@ceesjankiewiet.nl",
  8546. "homepage": "https://wyrihaximus.net/"
  8547. },
  8548. {
  8549. "name": "Jan Sorgalla",
  8550. "email": "jsorgalla@gmail.com",
  8551. "homepage": "https://sorgalla.com/"
  8552. },
  8553. {
  8554. "name": "Chris Boden",
  8555. "email": "cboden@gmail.com",
  8556. "homepage": "https://cboden.dev/"
  8557. }
  8558. ],
  8559. "description": "Async, Promise-based cache interface for ReactPHP",
  8560. "keywords": [
  8561. "cache",
  8562. "caching",
  8563. "promise",
  8564. "reactphp"
  8565. ],
  8566. "support": {
  8567. "issues": "https://github.com/reactphp/cache/issues",
  8568. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8569. },
  8570. "funding": [
  8571. {
  8572. "url": "https://opencollective.com/reactphp",
  8573. "type": "open_collective"
  8574. }
  8575. ],
  8576. "time": "2022-11-30T15:59:55+00:00"
  8577. },
  8578. {
  8579. "name": "react/child-process",
  8580. "version": "v0.6.5",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/reactphp/child-process.git",
  8584. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8589. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8594. "php": ">=5.3.0",
  8595. "react/event-loop": "^1.2",
  8596. "react/stream": "^1.2"
  8597. },
  8598. "require-dev": {
  8599. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8600. "react/socket": "^1.8",
  8601. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8602. },
  8603. "type": "library",
  8604. "autoload": {
  8605. "psr-4": {
  8606. "React\\ChildProcess\\": "src"
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Christian Lück",
  8616. "email": "christian@clue.engineering",
  8617. "homepage": "https://clue.engineering/"
  8618. },
  8619. {
  8620. "name": "Cees-Jan Kiewiet",
  8621. "email": "reactphp@ceesjankiewiet.nl",
  8622. "homepage": "https://wyrihaximus.net/"
  8623. },
  8624. {
  8625. "name": "Jan Sorgalla",
  8626. "email": "jsorgalla@gmail.com",
  8627. "homepage": "https://sorgalla.com/"
  8628. },
  8629. {
  8630. "name": "Chris Boden",
  8631. "email": "cboden@gmail.com",
  8632. "homepage": "https://cboden.dev/"
  8633. }
  8634. ],
  8635. "description": "Event-driven library for executing child processes with ReactPHP.",
  8636. "keywords": [
  8637. "event-driven",
  8638. "process",
  8639. "reactphp"
  8640. ],
  8641. "support": {
  8642. "issues": "https://github.com/reactphp/child-process/issues",
  8643. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://github.com/WyriHaximus",
  8648. "type": "github"
  8649. },
  8650. {
  8651. "url": "https://github.com/clue",
  8652. "type": "github"
  8653. }
  8654. ],
  8655. "time": "2022-09-16T13:41:56+00:00"
  8656. },
  8657. {
  8658. "name": "react/dns",
  8659. "version": "v1.12.0",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/reactphp/dns.git",
  8663. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8668. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8669. "shasum": ""
  8670. },
  8671. "require": {
  8672. "php": ">=5.3.0",
  8673. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8674. "react/event-loop": "^1.2",
  8675. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8676. },
  8677. "require-dev": {
  8678. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8679. "react/async": "^4 || ^3 || ^2",
  8680. "react/promise-timer": "^1.9"
  8681. },
  8682. "type": "library",
  8683. "autoload": {
  8684. "psr-4": {
  8685. "React\\Dns\\": "src/"
  8686. }
  8687. },
  8688. "notification-url": "https://packagist.org/downloads/",
  8689. "license": [
  8690. "MIT"
  8691. ],
  8692. "authors": [
  8693. {
  8694. "name": "Christian Lück",
  8695. "email": "christian@clue.engineering",
  8696. "homepage": "https://clue.engineering/"
  8697. },
  8698. {
  8699. "name": "Cees-Jan Kiewiet",
  8700. "email": "reactphp@ceesjankiewiet.nl",
  8701. "homepage": "https://wyrihaximus.net/"
  8702. },
  8703. {
  8704. "name": "Jan Sorgalla",
  8705. "email": "jsorgalla@gmail.com",
  8706. "homepage": "https://sorgalla.com/"
  8707. },
  8708. {
  8709. "name": "Chris Boden",
  8710. "email": "cboden@gmail.com",
  8711. "homepage": "https://cboden.dev/"
  8712. }
  8713. ],
  8714. "description": "Async DNS resolver for ReactPHP",
  8715. "keywords": [
  8716. "async",
  8717. "dns",
  8718. "dns-resolver",
  8719. "reactphp"
  8720. ],
  8721. "support": {
  8722. "issues": "https://github.com/reactphp/dns/issues",
  8723. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://opencollective.com/reactphp",
  8728. "type": "open_collective"
  8729. }
  8730. ],
  8731. "time": "2023-11-29T12:41:06+00:00"
  8732. },
  8733. {
  8734. "name": "react/event-loop",
  8735. "version": "v1.5.0",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/reactphp/event-loop.git",
  8739. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8744. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "php": ">=5.3.0"
  8749. },
  8750. "require-dev": {
  8751. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8752. },
  8753. "suggest": {
  8754. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8755. },
  8756. "type": "library",
  8757. "autoload": {
  8758. "psr-4": {
  8759. "React\\EventLoop\\": "src/"
  8760. }
  8761. },
  8762. "notification-url": "https://packagist.org/downloads/",
  8763. "license": [
  8764. "MIT"
  8765. ],
  8766. "authors": [
  8767. {
  8768. "name": "Christian Lück",
  8769. "email": "christian@clue.engineering",
  8770. "homepage": "https://clue.engineering/"
  8771. },
  8772. {
  8773. "name": "Cees-Jan Kiewiet",
  8774. "email": "reactphp@ceesjankiewiet.nl",
  8775. "homepage": "https://wyrihaximus.net/"
  8776. },
  8777. {
  8778. "name": "Jan Sorgalla",
  8779. "email": "jsorgalla@gmail.com",
  8780. "homepage": "https://sorgalla.com/"
  8781. },
  8782. {
  8783. "name": "Chris Boden",
  8784. "email": "cboden@gmail.com",
  8785. "homepage": "https://cboden.dev/"
  8786. }
  8787. ],
  8788. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8789. "keywords": [
  8790. "asynchronous",
  8791. "event-loop"
  8792. ],
  8793. "support": {
  8794. "issues": "https://github.com/reactphp/event-loop/issues",
  8795. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8796. },
  8797. "funding": [
  8798. {
  8799. "url": "https://opencollective.com/reactphp",
  8800. "type": "open_collective"
  8801. }
  8802. ],
  8803. "time": "2023-11-13T13:48:05+00:00"
  8804. },
  8805. {
  8806. "name": "react/promise",
  8807. "version": "v3.2.0",
  8808. "source": {
  8809. "type": "git",
  8810. "url": "https://github.com/reactphp/promise.git",
  8811. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8812. },
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8816. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8817. "shasum": ""
  8818. },
  8819. "require": {
  8820. "php": ">=7.1.0"
  8821. },
  8822. "require-dev": {
  8823. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8824. "phpunit/phpunit": "^9.6 || ^7.5"
  8825. },
  8826. "type": "library",
  8827. "autoload": {
  8828. "files": [
  8829. "src/functions_include.php"
  8830. ],
  8831. "psr-4": {
  8832. "React\\Promise\\": "src/"
  8833. }
  8834. },
  8835. "notification-url": "https://packagist.org/downloads/",
  8836. "license": [
  8837. "MIT"
  8838. ],
  8839. "authors": [
  8840. {
  8841. "name": "Jan Sorgalla",
  8842. "email": "jsorgalla@gmail.com",
  8843. "homepage": "https://sorgalla.com/"
  8844. },
  8845. {
  8846. "name": "Christian Lück",
  8847. "email": "christian@clue.engineering",
  8848. "homepage": "https://clue.engineering/"
  8849. },
  8850. {
  8851. "name": "Cees-Jan Kiewiet",
  8852. "email": "reactphp@ceesjankiewiet.nl",
  8853. "homepage": "https://wyrihaximus.net/"
  8854. },
  8855. {
  8856. "name": "Chris Boden",
  8857. "email": "cboden@gmail.com",
  8858. "homepage": "https://cboden.dev/"
  8859. }
  8860. ],
  8861. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8862. "keywords": [
  8863. "promise",
  8864. "promises"
  8865. ],
  8866. "support": {
  8867. "issues": "https://github.com/reactphp/promise/issues",
  8868. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://opencollective.com/reactphp",
  8873. "type": "open_collective"
  8874. }
  8875. ],
  8876. "time": "2024-05-24T10:39:05+00:00"
  8877. },
  8878. {
  8879. "name": "react/socket",
  8880. "version": "v1.15.0",
  8881. "source": {
  8882. "type": "git",
  8883. "url": "https://github.com/reactphp/socket.git",
  8884. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8885. },
  8886. "dist": {
  8887. "type": "zip",
  8888. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8889. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8890. "shasum": ""
  8891. },
  8892. "require": {
  8893. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8894. "php": ">=5.3.0",
  8895. "react/dns": "^1.11",
  8896. "react/event-loop": "^1.2",
  8897. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8898. "react/stream": "^1.2"
  8899. },
  8900. "require-dev": {
  8901. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8902. "react/async": "^4 || ^3 || ^2",
  8903. "react/promise-stream": "^1.4",
  8904. "react/promise-timer": "^1.10"
  8905. },
  8906. "type": "library",
  8907. "autoload": {
  8908. "psr-4": {
  8909. "React\\Socket\\": "src/"
  8910. }
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "MIT"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Christian Lück",
  8919. "email": "christian@clue.engineering",
  8920. "homepage": "https://clue.engineering/"
  8921. },
  8922. {
  8923. "name": "Cees-Jan Kiewiet",
  8924. "email": "reactphp@ceesjankiewiet.nl",
  8925. "homepage": "https://wyrihaximus.net/"
  8926. },
  8927. {
  8928. "name": "Jan Sorgalla",
  8929. "email": "jsorgalla@gmail.com",
  8930. "homepage": "https://sorgalla.com/"
  8931. },
  8932. {
  8933. "name": "Chris Boden",
  8934. "email": "cboden@gmail.com",
  8935. "homepage": "https://cboden.dev/"
  8936. }
  8937. ],
  8938. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8939. "keywords": [
  8940. "Connection",
  8941. "Socket",
  8942. "async",
  8943. "reactphp",
  8944. "stream"
  8945. ],
  8946. "support": {
  8947. "issues": "https://github.com/reactphp/socket/issues",
  8948. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8949. },
  8950. "funding": [
  8951. {
  8952. "url": "https://opencollective.com/reactphp",
  8953. "type": "open_collective"
  8954. }
  8955. ],
  8956. "time": "2023-12-15T11:02:10+00:00"
  8957. },
  8958. {
  8959. "name": "react/stream",
  8960. "version": "v1.3.0",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/reactphp/stream.git",
  8964. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8969. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8970. "shasum": ""
  8971. },
  8972. "require": {
  8973. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8974. "php": ">=5.3.8",
  8975. "react/event-loop": "^1.2"
  8976. },
  8977. "require-dev": {
  8978. "clue/stream-filter": "~1.2",
  8979. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8980. },
  8981. "type": "library",
  8982. "autoload": {
  8983. "psr-4": {
  8984. "React\\Stream\\": "src/"
  8985. }
  8986. },
  8987. "notification-url": "https://packagist.org/downloads/",
  8988. "license": [
  8989. "MIT"
  8990. ],
  8991. "authors": [
  8992. {
  8993. "name": "Christian Lück",
  8994. "email": "christian@clue.engineering",
  8995. "homepage": "https://clue.engineering/"
  8996. },
  8997. {
  8998. "name": "Cees-Jan Kiewiet",
  8999. "email": "reactphp@ceesjankiewiet.nl",
  9000. "homepage": "https://wyrihaximus.net/"
  9001. },
  9002. {
  9003. "name": "Jan Sorgalla",
  9004. "email": "jsorgalla@gmail.com",
  9005. "homepage": "https://sorgalla.com/"
  9006. },
  9007. {
  9008. "name": "Chris Boden",
  9009. "email": "cboden@gmail.com",
  9010. "homepage": "https://cboden.dev/"
  9011. }
  9012. ],
  9013. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9014. "keywords": [
  9015. "event-driven",
  9016. "io",
  9017. "non-blocking",
  9018. "pipe",
  9019. "reactphp",
  9020. "readable",
  9021. "stream",
  9022. "writable"
  9023. ],
  9024. "support": {
  9025. "issues": "https://github.com/reactphp/stream/issues",
  9026. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9027. },
  9028. "funding": [
  9029. {
  9030. "url": "https://opencollective.com/reactphp",
  9031. "type": "open_collective"
  9032. }
  9033. ],
  9034. "time": "2023-06-16T10:52:11+00:00"
  9035. },
  9036. {
  9037. "name": "sebastian/cli-parser",
  9038. "version": "2.0.1",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9042. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9047. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "php": ">=8.1"
  9052. },
  9053. "require-dev": {
  9054. "phpunit/phpunit": "^10.0"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-main": "2.0-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "classmap": [
  9064. "src/"
  9065. ]
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Sebastian Bergmann",
  9074. "email": "sebastian@phpunit.de",
  9075. "role": "lead"
  9076. }
  9077. ],
  9078. "description": "Library for parsing CLI options",
  9079. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9080. "support": {
  9081. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9082. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9083. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9084. },
  9085. "funding": [
  9086. {
  9087. "url": "https://github.com/sebastianbergmann",
  9088. "type": "github"
  9089. }
  9090. ],
  9091. "time": "2024-03-02T07:12:49+00:00"
  9092. },
  9093. {
  9094. "name": "sebastian/code-unit",
  9095. "version": "2.0.0",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9099. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9104. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "php": ">=8.1"
  9109. },
  9110. "require-dev": {
  9111. "phpunit/phpunit": "^10.0"
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-main": "2.0-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Sebastian Bergmann",
  9131. "email": "sebastian@phpunit.de",
  9132. "role": "lead"
  9133. }
  9134. ],
  9135. "description": "Collection of value objects that represent the PHP code units",
  9136. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9137. "support": {
  9138. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9139. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9140. },
  9141. "funding": [
  9142. {
  9143. "url": "https://github.com/sebastianbergmann",
  9144. "type": "github"
  9145. }
  9146. ],
  9147. "time": "2023-02-03T06:58:43+00:00"
  9148. },
  9149. {
  9150. "name": "sebastian/code-unit-reverse-lookup",
  9151. "version": "3.0.0",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9155. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9160. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": ">=8.1"
  9165. },
  9166. "require-dev": {
  9167. "phpunit/phpunit": "^10.0"
  9168. },
  9169. "type": "library",
  9170. "extra": {
  9171. "branch-alias": {
  9172. "dev-main": "3.0-dev"
  9173. }
  9174. },
  9175. "autoload": {
  9176. "classmap": [
  9177. "src/"
  9178. ]
  9179. },
  9180. "notification-url": "https://packagist.org/downloads/",
  9181. "license": [
  9182. "BSD-3-Clause"
  9183. ],
  9184. "authors": [
  9185. {
  9186. "name": "Sebastian Bergmann",
  9187. "email": "sebastian@phpunit.de"
  9188. }
  9189. ],
  9190. "description": "Looks up which function or method a line of code belongs to",
  9191. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9192. "support": {
  9193. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9194. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9195. },
  9196. "funding": [
  9197. {
  9198. "url": "https://github.com/sebastianbergmann",
  9199. "type": "github"
  9200. }
  9201. ],
  9202. "time": "2023-02-03T06:59:15+00:00"
  9203. },
  9204. {
  9205. "name": "sebastian/comparator",
  9206. "version": "5.0.1",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/sebastianbergmann/comparator.git",
  9210. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9215. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "ext-dom": "*",
  9220. "ext-mbstring": "*",
  9221. "php": ">=8.1",
  9222. "sebastian/diff": "^5.0",
  9223. "sebastian/exporter": "^5.0"
  9224. },
  9225. "require-dev": {
  9226. "phpunit/phpunit": "^10.3"
  9227. },
  9228. "type": "library",
  9229. "extra": {
  9230. "branch-alias": {
  9231. "dev-main": "5.0-dev"
  9232. }
  9233. },
  9234. "autoload": {
  9235. "classmap": [
  9236. "src/"
  9237. ]
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "BSD-3-Clause"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Sebastian Bergmann",
  9246. "email": "sebastian@phpunit.de"
  9247. },
  9248. {
  9249. "name": "Jeff Welch",
  9250. "email": "whatthejeff@gmail.com"
  9251. },
  9252. {
  9253. "name": "Volker Dusch",
  9254. "email": "github@wallbash.com"
  9255. },
  9256. {
  9257. "name": "Bernhard Schussek",
  9258. "email": "bschussek@2bepublished.at"
  9259. }
  9260. ],
  9261. "description": "Provides the functionality to compare PHP values for equality",
  9262. "homepage": "https://github.com/sebastianbergmann/comparator",
  9263. "keywords": [
  9264. "comparator",
  9265. "compare",
  9266. "equality"
  9267. ],
  9268. "support": {
  9269. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9270. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9271. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9272. },
  9273. "funding": [
  9274. {
  9275. "url": "https://github.com/sebastianbergmann",
  9276. "type": "github"
  9277. }
  9278. ],
  9279. "time": "2023-08-14T13:18:12+00:00"
  9280. },
  9281. {
  9282. "name": "sebastian/complexity",
  9283. "version": "3.2.0",
  9284. "source": {
  9285. "type": "git",
  9286. "url": "https://github.com/sebastianbergmann/complexity.git",
  9287. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9288. },
  9289. "dist": {
  9290. "type": "zip",
  9291. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9292. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9293. "shasum": ""
  9294. },
  9295. "require": {
  9296. "nikic/php-parser": "^4.18 || ^5.0",
  9297. "php": ">=8.1"
  9298. },
  9299. "require-dev": {
  9300. "phpunit/phpunit": "^10.0"
  9301. },
  9302. "type": "library",
  9303. "extra": {
  9304. "branch-alias": {
  9305. "dev-main": "3.2-dev"
  9306. }
  9307. },
  9308. "autoload": {
  9309. "classmap": [
  9310. "src/"
  9311. ]
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "BSD-3-Clause"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Sebastian Bergmann",
  9320. "email": "sebastian@phpunit.de",
  9321. "role": "lead"
  9322. }
  9323. ],
  9324. "description": "Library for calculating the complexity of PHP code units",
  9325. "homepage": "https://github.com/sebastianbergmann/complexity",
  9326. "support": {
  9327. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9328. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9329. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9330. },
  9331. "funding": [
  9332. {
  9333. "url": "https://github.com/sebastianbergmann",
  9334. "type": "github"
  9335. }
  9336. ],
  9337. "time": "2023-12-21T08:37:17+00:00"
  9338. },
  9339. {
  9340. "name": "sebastian/diff",
  9341. "version": "5.1.1",
  9342. "source": {
  9343. "type": "git",
  9344. "url": "https://github.com/sebastianbergmann/diff.git",
  9345. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9346. },
  9347. "dist": {
  9348. "type": "zip",
  9349. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9350. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9351. "shasum": ""
  9352. },
  9353. "require": {
  9354. "php": ">=8.1"
  9355. },
  9356. "require-dev": {
  9357. "phpunit/phpunit": "^10.0",
  9358. "symfony/process": "^6.4"
  9359. },
  9360. "type": "library",
  9361. "extra": {
  9362. "branch-alias": {
  9363. "dev-main": "5.1-dev"
  9364. }
  9365. },
  9366. "autoload": {
  9367. "classmap": [
  9368. "src/"
  9369. ]
  9370. },
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "BSD-3-Clause"
  9374. ],
  9375. "authors": [
  9376. {
  9377. "name": "Sebastian Bergmann",
  9378. "email": "sebastian@phpunit.de"
  9379. },
  9380. {
  9381. "name": "Kore Nordmann",
  9382. "email": "mail@kore-nordmann.de"
  9383. }
  9384. ],
  9385. "description": "Diff implementation",
  9386. "homepage": "https://github.com/sebastianbergmann/diff",
  9387. "keywords": [
  9388. "diff",
  9389. "udiff",
  9390. "unidiff",
  9391. "unified diff"
  9392. ],
  9393. "support": {
  9394. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9395. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9396. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9397. },
  9398. "funding": [
  9399. {
  9400. "url": "https://github.com/sebastianbergmann",
  9401. "type": "github"
  9402. }
  9403. ],
  9404. "time": "2024-03-02T07:15:17+00:00"
  9405. },
  9406. {
  9407. "name": "sebastian/environment",
  9408. "version": "6.1.0",
  9409. "source": {
  9410. "type": "git",
  9411. "url": "https://github.com/sebastianbergmann/environment.git",
  9412. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9413. },
  9414. "dist": {
  9415. "type": "zip",
  9416. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9417. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9418. "shasum": ""
  9419. },
  9420. "require": {
  9421. "php": ">=8.1"
  9422. },
  9423. "require-dev": {
  9424. "phpunit/phpunit": "^10.0"
  9425. },
  9426. "suggest": {
  9427. "ext-posix": "*"
  9428. },
  9429. "type": "library",
  9430. "extra": {
  9431. "branch-alias": {
  9432. "dev-main": "6.1-dev"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "classmap": [
  9437. "src/"
  9438. ]
  9439. },
  9440. "notification-url": "https://packagist.org/downloads/",
  9441. "license": [
  9442. "BSD-3-Clause"
  9443. ],
  9444. "authors": [
  9445. {
  9446. "name": "Sebastian Bergmann",
  9447. "email": "sebastian@phpunit.de"
  9448. }
  9449. ],
  9450. "description": "Provides functionality to handle HHVM/PHP environments",
  9451. "homepage": "https://github.com/sebastianbergmann/environment",
  9452. "keywords": [
  9453. "Xdebug",
  9454. "environment",
  9455. "hhvm"
  9456. ],
  9457. "support": {
  9458. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9459. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9460. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9461. },
  9462. "funding": [
  9463. {
  9464. "url": "https://github.com/sebastianbergmann",
  9465. "type": "github"
  9466. }
  9467. ],
  9468. "time": "2024-03-23T08:47:14+00:00"
  9469. },
  9470. {
  9471. "name": "sebastian/exporter",
  9472. "version": "5.1.2",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/sebastianbergmann/exporter.git",
  9476. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9481. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "ext-mbstring": "*",
  9486. "php": ">=8.1",
  9487. "sebastian/recursion-context": "^5.0"
  9488. },
  9489. "require-dev": {
  9490. "phpunit/phpunit": "^10.0"
  9491. },
  9492. "type": "library",
  9493. "extra": {
  9494. "branch-alias": {
  9495. "dev-main": "5.1-dev"
  9496. }
  9497. },
  9498. "autoload": {
  9499. "classmap": [
  9500. "src/"
  9501. ]
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "BSD-3-Clause"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "Sebastian Bergmann",
  9510. "email": "sebastian@phpunit.de"
  9511. },
  9512. {
  9513. "name": "Jeff Welch",
  9514. "email": "whatthejeff@gmail.com"
  9515. },
  9516. {
  9517. "name": "Volker Dusch",
  9518. "email": "github@wallbash.com"
  9519. },
  9520. {
  9521. "name": "Adam Harvey",
  9522. "email": "aharvey@php.net"
  9523. },
  9524. {
  9525. "name": "Bernhard Schussek",
  9526. "email": "bschussek@gmail.com"
  9527. }
  9528. ],
  9529. "description": "Provides the functionality to export PHP variables for visualization",
  9530. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9531. "keywords": [
  9532. "export",
  9533. "exporter"
  9534. ],
  9535. "support": {
  9536. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9537. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9538. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9539. },
  9540. "funding": [
  9541. {
  9542. "url": "https://github.com/sebastianbergmann",
  9543. "type": "github"
  9544. }
  9545. ],
  9546. "time": "2024-03-02T07:17:12+00:00"
  9547. },
  9548. {
  9549. "name": "sebastian/global-state",
  9550. "version": "6.0.2",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/sebastianbergmann/global-state.git",
  9554. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9559. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "php": ">=8.1",
  9564. "sebastian/object-reflector": "^3.0",
  9565. "sebastian/recursion-context": "^5.0"
  9566. },
  9567. "require-dev": {
  9568. "ext-dom": "*",
  9569. "phpunit/phpunit": "^10.0"
  9570. },
  9571. "type": "library",
  9572. "extra": {
  9573. "branch-alias": {
  9574. "dev-main": "6.0-dev"
  9575. }
  9576. },
  9577. "autoload": {
  9578. "classmap": [
  9579. "src/"
  9580. ]
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "license": [
  9584. "BSD-3-Clause"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Sebastian Bergmann",
  9589. "email": "sebastian@phpunit.de"
  9590. }
  9591. ],
  9592. "description": "Snapshotting of global state",
  9593. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9594. "keywords": [
  9595. "global state"
  9596. ],
  9597. "support": {
  9598. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9599. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9600. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://github.com/sebastianbergmann",
  9605. "type": "github"
  9606. }
  9607. ],
  9608. "time": "2024-03-02T07:19:19+00:00"
  9609. },
  9610. {
  9611. "name": "sebastian/lines-of-code",
  9612. "version": "2.0.2",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9616. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9621. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9622. "shasum": ""
  9623. },
  9624. "require": {
  9625. "nikic/php-parser": "^4.18 || ^5.0",
  9626. "php": ">=8.1"
  9627. },
  9628. "require-dev": {
  9629. "phpunit/phpunit": "^10.0"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-main": "2.0-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "classmap": [
  9639. "src/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "BSD-3-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Sebastian Bergmann",
  9649. "email": "sebastian@phpunit.de",
  9650. "role": "lead"
  9651. }
  9652. ],
  9653. "description": "Library for counting the lines of code in PHP source code",
  9654. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9655. "support": {
  9656. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9657. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9658. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2023-12-21T08:38:20+00:00"
  9667. },
  9668. {
  9669. "name": "sebastian/object-enumerator",
  9670. "version": "5.0.0",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9674. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9679. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=8.1",
  9684. "sebastian/object-reflector": "^3.0",
  9685. "sebastian/recursion-context": "^5.0"
  9686. },
  9687. "require-dev": {
  9688. "phpunit/phpunit": "^10.0"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-main": "5.0-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "classmap": [
  9698. "src/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "BSD-3-Clause"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Sebastian Bergmann",
  9708. "email": "sebastian@phpunit.de"
  9709. }
  9710. ],
  9711. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9712. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9713. "support": {
  9714. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9715. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9716. },
  9717. "funding": [
  9718. {
  9719. "url": "https://github.com/sebastianbergmann",
  9720. "type": "github"
  9721. }
  9722. ],
  9723. "time": "2023-02-03T07:08:32+00:00"
  9724. },
  9725. {
  9726. "name": "sebastian/object-reflector",
  9727. "version": "3.0.0",
  9728. "source": {
  9729. "type": "git",
  9730. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9731. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9732. },
  9733. "dist": {
  9734. "type": "zip",
  9735. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9736. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9737. "shasum": ""
  9738. },
  9739. "require": {
  9740. "php": ">=8.1"
  9741. },
  9742. "require-dev": {
  9743. "phpunit/phpunit": "^10.0"
  9744. },
  9745. "type": "library",
  9746. "extra": {
  9747. "branch-alias": {
  9748. "dev-main": "3.0-dev"
  9749. }
  9750. },
  9751. "autoload": {
  9752. "classmap": [
  9753. "src/"
  9754. ]
  9755. },
  9756. "notification-url": "https://packagist.org/downloads/",
  9757. "license": [
  9758. "BSD-3-Clause"
  9759. ],
  9760. "authors": [
  9761. {
  9762. "name": "Sebastian Bergmann",
  9763. "email": "sebastian@phpunit.de"
  9764. }
  9765. ],
  9766. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9767. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9768. "support": {
  9769. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9770. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9771. },
  9772. "funding": [
  9773. {
  9774. "url": "https://github.com/sebastianbergmann",
  9775. "type": "github"
  9776. }
  9777. ],
  9778. "time": "2023-02-03T07:06:18+00:00"
  9779. },
  9780. {
  9781. "name": "sebastian/recursion-context",
  9782. "version": "5.0.0",
  9783. "source": {
  9784. "type": "git",
  9785. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9786. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9787. },
  9788. "dist": {
  9789. "type": "zip",
  9790. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9791. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9792. "shasum": ""
  9793. },
  9794. "require": {
  9795. "php": ">=8.1"
  9796. },
  9797. "require-dev": {
  9798. "phpunit/phpunit": "^10.0"
  9799. },
  9800. "type": "library",
  9801. "extra": {
  9802. "branch-alias": {
  9803. "dev-main": "5.0-dev"
  9804. }
  9805. },
  9806. "autoload": {
  9807. "classmap": [
  9808. "src/"
  9809. ]
  9810. },
  9811. "notification-url": "https://packagist.org/downloads/",
  9812. "license": [
  9813. "BSD-3-Clause"
  9814. ],
  9815. "authors": [
  9816. {
  9817. "name": "Sebastian Bergmann",
  9818. "email": "sebastian@phpunit.de"
  9819. },
  9820. {
  9821. "name": "Jeff Welch",
  9822. "email": "whatthejeff@gmail.com"
  9823. },
  9824. {
  9825. "name": "Adam Harvey",
  9826. "email": "aharvey@php.net"
  9827. }
  9828. ],
  9829. "description": "Provides functionality to recursively process PHP variables",
  9830. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9831. "support": {
  9832. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9833. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9834. },
  9835. "funding": [
  9836. {
  9837. "url": "https://github.com/sebastianbergmann",
  9838. "type": "github"
  9839. }
  9840. ],
  9841. "time": "2023-02-03T07:05:40+00:00"
  9842. },
  9843. {
  9844. "name": "sebastian/type",
  9845. "version": "4.0.0",
  9846. "source": {
  9847. "type": "git",
  9848. "url": "https://github.com/sebastianbergmann/type.git",
  9849. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9850. },
  9851. "dist": {
  9852. "type": "zip",
  9853. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9854. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9855. "shasum": ""
  9856. },
  9857. "require": {
  9858. "php": ">=8.1"
  9859. },
  9860. "require-dev": {
  9861. "phpunit/phpunit": "^10.0"
  9862. },
  9863. "type": "library",
  9864. "extra": {
  9865. "branch-alias": {
  9866. "dev-main": "4.0-dev"
  9867. }
  9868. },
  9869. "autoload": {
  9870. "classmap": [
  9871. "src/"
  9872. ]
  9873. },
  9874. "notification-url": "https://packagist.org/downloads/",
  9875. "license": [
  9876. "BSD-3-Clause"
  9877. ],
  9878. "authors": [
  9879. {
  9880. "name": "Sebastian Bergmann",
  9881. "email": "sebastian@phpunit.de",
  9882. "role": "lead"
  9883. }
  9884. ],
  9885. "description": "Collection of value objects that represent the types of the PHP type system",
  9886. "homepage": "https://github.com/sebastianbergmann/type",
  9887. "support": {
  9888. "issues": "https://github.com/sebastianbergmann/type/issues",
  9889. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/sebastianbergmann",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2023-02-03T07:10:45+00:00"
  9898. },
  9899. {
  9900. "name": "sebastian/version",
  9901. "version": "4.0.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/sebastianbergmann/version.git",
  9905. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9910. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9911. "shasum": ""
  9912. },
  9913. "require": {
  9914. "php": ">=8.1"
  9915. },
  9916. "type": "library",
  9917. "extra": {
  9918. "branch-alias": {
  9919. "dev-main": "4.0-dev"
  9920. }
  9921. },
  9922. "autoload": {
  9923. "classmap": [
  9924. "src/"
  9925. ]
  9926. },
  9927. "notification-url": "https://packagist.org/downloads/",
  9928. "license": [
  9929. "BSD-3-Clause"
  9930. ],
  9931. "authors": [
  9932. {
  9933. "name": "Sebastian Bergmann",
  9934. "email": "sebastian@phpunit.de",
  9935. "role": "lead"
  9936. }
  9937. ],
  9938. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9939. "homepage": "https://github.com/sebastianbergmann/version",
  9940. "support": {
  9941. "issues": "https://github.com/sebastianbergmann/version/issues",
  9942. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9943. },
  9944. "funding": [
  9945. {
  9946. "url": "https://github.com/sebastianbergmann",
  9947. "type": "github"
  9948. }
  9949. ],
  9950. "time": "2023-02-07T11:34:05+00:00"
  9951. },
  9952. {
  9953. "name": "swoole/ide-helper",
  9954. "version": "5.1.2",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/swoole/ide-helper.git",
  9958. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9963. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9964. "shasum": ""
  9965. },
  9966. "type": "library",
  9967. "notification-url": "https://packagist.org/downloads/",
  9968. "license": [
  9969. "Apache-2.0"
  9970. ],
  9971. "authors": [
  9972. {
  9973. "name": "Team Swoole",
  9974. "email": "team@swoole.com"
  9975. }
  9976. ],
  9977. "description": "IDE help files for Swoole.",
  9978. "support": {
  9979. "issues": "https://github.com/swoole/ide-helper/issues",
  9980. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9981. },
  9982. "time": "2024-02-01T22:28:11+00:00"
  9983. },
  9984. {
  9985. "name": "symfony/event-dispatcher",
  9986. "version": "v6.4.8",
  9987. "source": {
  9988. "type": "git",
  9989. "url": "https://github.com/symfony/event-dispatcher.git",
  9990. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9991. },
  9992. "dist": {
  9993. "type": "zip",
  9994. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9995. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9996. "shasum": ""
  9997. },
  9998. "require": {
  9999. "php": ">=8.1",
  10000. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10001. },
  10002. "conflict": {
  10003. "symfony/dependency-injection": "<5.4",
  10004. "symfony/service-contracts": "<2.5"
  10005. },
  10006. "provide": {
  10007. "psr/event-dispatcher-implementation": "1.0",
  10008. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10009. },
  10010. "require-dev": {
  10011. "psr/log": "^1|^2|^3",
  10012. "symfony/config": "^5.4|^6.0|^7.0",
  10013. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10014. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10015. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10016. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10017. "symfony/service-contracts": "^2.5|^3",
  10018. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10019. },
  10020. "type": "library",
  10021. "autoload": {
  10022. "psr-4": {
  10023. "Symfony\\Component\\EventDispatcher\\": ""
  10024. },
  10025. "exclude-from-classmap": [
  10026. "/Tests/"
  10027. ]
  10028. },
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "MIT"
  10032. ],
  10033. "authors": [
  10034. {
  10035. "name": "Fabien Potencier",
  10036. "email": "fabien@symfony.com"
  10037. },
  10038. {
  10039. "name": "Symfony Community",
  10040. "homepage": "https://symfony.com/contributors"
  10041. }
  10042. ],
  10043. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10044. "homepage": "https://symfony.com",
  10045. "support": {
  10046. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10047. },
  10048. "funding": [
  10049. {
  10050. "url": "https://symfony.com/sponsor",
  10051. "type": "custom"
  10052. },
  10053. {
  10054. "url": "https://github.com/fabpot",
  10055. "type": "github"
  10056. },
  10057. {
  10058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10059. "type": "tidelift"
  10060. }
  10061. ],
  10062. "time": "2024-05-31T14:49:08+00:00"
  10063. },
  10064. {
  10065. "name": "symfony/event-dispatcher-contracts",
  10066. "version": "v3.5.0",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10070. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10075. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "php": ">=8.1",
  10080. "psr/event-dispatcher": "^1"
  10081. },
  10082. "type": "library",
  10083. "extra": {
  10084. "branch-alias": {
  10085. "dev-main": "3.5-dev"
  10086. },
  10087. "thanks": {
  10088. "name": "symfony/contracts",
  10089. "url": "https://github.com/symfony/contracts"
  10090. }
  10091. },
  10092. "autoload": {
  10093. "psr-4": {
  10094. "Symfony\\Contracts\\EventDispatcher\\": ""
  10095. }
  10096. },
  10097. "notification-url": "https://packagist.org/downloads/",
  10098. "license": [
  10099. "MIT"
  10100. ],
  10101. "authors": [
  10102. {
  10103. "name": "Nicolas Grekas",
  10104. "email": "p@tchwork.com"
  10105. },
  10106. {
  10107. "name": "Symfony Community",
  10108. "homepage": "https://symfony.com/contributors"
  10109. }
  10110. ],
  10111. "description": "Generic abstractions related to dispatching event",
  10112. "homepage": "https://symfony.com",
  10113. "keywords": [
  10114. "abstractions",
  10115. "contracts",
  10116. "decoupling",
  10117. "interfaces",
  10118. "interoperability",
  10119. "standards"
  10120. ],
  10121. "support": {
  10122. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10123. },
  10124. "funding": [
  10125. {
  10126. "url": "https://symfony.com/sponsor",
  10127. "type": "custom"
  10128. },
  10129. {
  10130. "url": "https://github.com/fabpot",
  10131. "type": "github"
  10132. },
  10133. {
  10134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10135. "type": "tidelift"
  10136. }
  10137. ],
  10138. "time": "2024-04-18T09:32:20+00:00"
  10139. },
  10140. {
  10141. "name": "symfony/filesystem",
  10142. "version": "v6.4.8",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/symfony/filesystem.git",
  10146. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10151. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "php": ">=8.1",
  10156. "symfony/polyfill-ctype": "~1.8",
  10157. "symfony/polyfill-mbstring": "~1.8"
  10158. },
  10159. "require-dev": {
  10160. "symfony/process": "^5.4|^6.4|^7.0"
  10161. },
  10162. "type": "library",
  10163. "autoload": {
  10164. "psr-4": {
  10165. "Symfony\\Component\\Filesystem\\": ""
  10166. },
  10167. "exclude-from-classmap": [
  10168. "/Tests/"
  10169. ]
  10170. },
  10171. "notification-url": "https://packagist.org/downloads/",
  10172. "license": [
  10173. "MIT"
  10174. ],
  10175. "authors": [
  10176. {
  10177. "name": "Fabien Potencier",
  10178. "email": "fabien@symfony.com"
  10179. },
  10180. {
  10181. "name": "Symfony Community",
  10182. "homepage": "https://symfony.com/contributors"
  10183. }
  10184. ],
  10185. "description": "Provides basic utilities for the filesystem",
  10186. "homepage": "https://symfony.com",
  10187. "support": {
  10188. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10189. },
  10190. "funding": [
  10191. {
  10192. "url": "https://symfony.com/sponsor",
  10193. "type": "custom"
  10194. },
  10195. {
  10196. "url": "https://github.com/fabpot",
  10197. "type": "github"
  10198. },
  10199. {
  10200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10201. "type": "tidelift"
  10202. }
  10203. ],
  10204. "time": "2024-05-31T14:49:08+00:00"
  10205. },
  10206. {
  10207. "name": "symfony/http-foundation",
  10208. "version": "v6.4.8",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/symfony/http-foundation.git",
  10212. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10217. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10218. "shasum": ""
  10219. },
  10220. "require": {
  10221. "php": ">=8.1",
  10222. "symfony/deprecation-contracts": "^2.5|^3",
  10223. "symfony/polyfill-mbstring": "~1.1",
  10224. "symfony/polyfill-php83": "^1.27"
  10225. },
  10226. "conflict": {
  10227. "symfony/cache": "<6.3"
  10228. },
  10229. "require-dev": {
  10230. "doctrine/dbal": "^2.13.1|^3|^4",
  10231. "predis/predis": "^1.1|^2.0",
  10232. "symfony/cache": "^6.3|^7.0",
  10233. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10234. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10235. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10236. "symfony/mime": "^5.4|^6.0|^7.0",
  10237. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10238. },
  10239. "type": "library",
  10240. "autoload": {
  10241. "psr-4": {
  10242. "Symfony\\Component\\HttpFoundation\\": ""
  10243. },
  10244. "exclude-from-classmap": [
  10245. "/Tests/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "MIT"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Fabien Potencier",
  10255. "email": "fabien@symfony.com"
  10256. },
  10257. {
  10258. "name": "Symfony Community",
  10259. "homepage": "https://symfony.com/contributors"
  10260. }
  10261. ],
  10262. "description": "Defines an object-oriented layer for the HTTP specification",
  10263. "homepage": "https://symfony.com",
  10264. "support": {
  10265. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10266. },
  10267. "funding": [
  10268. {
  10269. "url": "https://symfony.com/sponsor",
  10270. "type": "custom"
  10271. },
  10272. {
  10273. "url": "https://github.com/fabpot",
  10274. "type": "github"
  10275. },
  10276. {
  10277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10278. "type": "tidelift"
  10279. }
  10280. ],
  10281. "time": "2024-05-31T14:49:08+00:00"
  10282. },
  10283. {
  10284. "name": "symfony/options-resolver",
  10285. "version": "v6.4.8",
  10286. "source": {
  10287. "type": "git",
  10288. "url": "https://github.com/symfony/options-resolver.git",
  10289. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10290. },
  10291. "dist": {
  10292. "type": "zip",
  10293. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10294. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10295. "shasum": ""
  10296. },
  10297. "require": {
  10298. "php": ">=8.1",
  10299. "symfony/deprecation-contracts": "^2.5|^3"
  10300. },
  10301. "type": "library",
  10302. "autoload": {
  10303. "psr-4": {
  10304. "Symfony\\Component\\OptionsResolver\\": ""
  10305. },
  10306. "exclude-from-classmap": [
  10307. "/Tests/"
  10308. ]
  10309. },
  10310. "notification-url": "https://packagist.org/downloads/",
  10311. "license": [
  10312. "MIT"
  10313. ],
  10314. "authors": [
  10315. {
  10316. "name": "Fabien Potencier",
  10317. "email": "fabien@symfony.com"
  10318. },
  10319. {
  10320. "name": "Symfony Community",
  10321. "homepage": "https://symfony.com/contributors"
  10322. }
  10323. ],
  10324. "description": "Provides an improved replacement for the array_replace PHP function",
  10325. "homepage": "https://symfony.com",
  10326. "keywords": [
  10327. "config",
  10328. "configuration",
  10329. "options"
  10330. ],
  10331. "support": {
  10332. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10333. },
  10334. "funding": [
  10335. {
  10336. "url": "https://symfony.com/sponsor",
  10337. "type": "custom"
  10338. },
  10339. {
  10340. "url": "https://github.com/fabpot",
  10341. "type": "github"
  10342. },
  10343. {
  10344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10345. "type": "tidelift"
  10346. }
  10347. ],
  10348. "time": "2024-05-31T14:49:08+00:00"
  10349. },
  10350. {
  10351. "name": "symfony/polyfill-php81",
  10352. "version": "v1.29.0",
  10353. "source": {
  10354. "type": "git",
  10355. "url": "https://github.com/symfony/polyfill-php81.git",
  10356. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10357. },
  10358. "dist": {
  10359. "type": "zip",
  10360. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10361. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10362. "shasum": ""
  10363. },
  10364. "require": {
  10365. "php": ">=7.1"
  10366. },
  10367. "type": "library",
  10368. "extra": {
  10369. "thanks": {
  10370. "name": "symfony/polyfill",
  10371. "url": "https://github.com/symfony/polyfill"
  10372. }
  10373. },
  10374. "autoload": {
  10375. "files": [
  10376. "bootstrap.php"
  10377. ],
  10378. "psr-4": {
  10379. "Symfony\\Polyfill\\Php81\\": ""
  10380. },
  10381. "classmap": [
  10382. "Resources/stubs"
  10383. ]
  10384. },
  10385. "notification-url": "https://packagist.org/downloads/",
  10386. "license": [
  10387. "MIT"
  10388. ],
  10389. "authors": [
  10390. {
  10391. "name": "Nicolas Grekas",
  10392. "email": "p@tchwork.com"
  10393. },
  10394. {
  10395. "name": "Symfony Community",
  10396. "homepage": "https://symfony.com/contributors"
  10397. }
  10398. ],
  10399. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10400. "homepage": "https://symfony.com",
  10401. "keywords": [
  10402. "compatibility",
  10403. "polyfill",
  10404. "portable",
  10405. "shim"
  10406. ],
  10407. "support": {
  10408. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10409. },
  10410. "funding": [
  10411. {
  10412. "url": "https://symfony.com/sponsor",
  10413. "type": "custom"
  10414. },
  10415. {
  10416. "url": "https://github.com/fabpot",
  10417. "type": "github"
  10418. },
  10419. {
  10420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10421. "type": "tidelift"
  10422. }
  10423. ],
  10424. "time": "2024-01-29T20:11:03+00:00"
  10425. },
  10426. {
  10427. "name": "symfony/polyfill-php83",
  10428. "version": "v1.29.0",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/symfony/polyfill-php83.git",
  10432. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10437. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10438. "shasum": ""
  10439. },
  10440. "require": {
  10441. "php": ">=7.1",
  10442. "symfony/polyfill-php80": "^1.14"
  10443. },
  10444. "type": "library",
  10445. "extra": {
  10446. "thanks": {
  10447. "name": "symfony/polyfill",
  10448. "url": "https://github.com/symfony/polyfill"
  10449. }
  10450. },
  10451. "autoload": {
  10452. "files": [
  10453. "bootstrap.php"
  10454. ],
  10455. "psr-4": {
  10456. "Symfony\\Polyfill\\Php83\\": ""
  10457. },
  10458. "classmap": [
  10459. "Resources/stubs"
  10460. ]
  10461. },
  10462. "notification-url": "https://packagist.org/downloads/",
  10463. "license": [
  10464. "MIT"
  10465. ],
  10466. "authors": [
  10467. {
  10468. "name": "Nicolas Grekas",
  10469. "email": "p@tchwork.com"
  10470. },
  10471. {
  10472. "name": "Symfony Community",
  10473. "homepage": "https://symfony.com/contributors"
  10474. }
  10475. ],
  10476. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10477. "homepage": "https://symfony.com",
  10478. "keywords": [
  10479. "compatibility",
  10480. "polyfill",
  10481. "portable",
  10482. "shim"
  10483. ],
  10484. "support": {
  10485. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10486. },
  10487. "funding": [
  10488. {
  10489. "url": "https://symfony.com/sponsor",
  10490. "type": "custom"
  10491. },
  10492. {
  10493. "url": "https://github.com/fabpot",
  10494. "type": "github"
  10495. },
  10496. {
  10497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10498. "type": "tidelift"
  10499. }
  10500. ],
  10501. "time": "2024-01-29T20:11:03+00:00"
  10502. },
  10503. {
  10504. "name": "symfony/process",
  10505. "version": "v6.4.8",
  10506. "source": {
  10507. "type": "git",
  10508. "url": "https://github.com/symfony/process.git",
  10509. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10510. },
  10511. "dist": {
  10512. "type": "zip",
  10513. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10514. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10515. "shasum": ""
  10516. },
  10517. "require": {
  10518. "php": ">=8.1"
  10519. },
  10520. "type": "library",
  10521. "autoload": {
  10522. "psr-4": {
  10523. "Symfony\\Component\\Process\\": ""
  10524. },
  10525. "exclude-from-classmap": [
  10526. "/Tests/"
  10527. ]
  10528. },
  10529. "notification-url": "https://packagist.org/downloads/",
  10530. "license": [
  10531. "MIT"
  10532. ],
  10533. "authors": [
  10534. {
  10535. "name": "Fabien Potencier",
  10536. "email": "fabien@symfony.com"
  10537. },
  10538. {
  10539. "name": "Symfony Community",
  10540. "homepage": "https://symfony.com/contributors"
  10541. }
  10542. ],
  10543. "description": "Executes commands in sub-processes",
  10544. "homepage": "https://symfony.com",
  10545. "support": {
  10546. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10547. },
  10548. "funding": [
  10549. {
  10550. "url": "https://symfony.com/sponsor",
  10551. "type": "custom"
  10552. },
  10553. {
  10554. "url": "https://github.com/fabpot",
  10555. "type": "github"
  10556. },
  10557. {
  10558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10559. "type": "tidelift"
  10560. }
  10561. ],
  10562. "time": "2024-05-31T14:49:08+00:00"
  10563. },
  10564. {
  10565. "name": "symfony/stopwatch",
  10566. "version": "v6.4.8",
  10567. "source": {
  10568. "type": "git",
  10569. "url": "https://github.com/symfony/stopwatch.git",
  10570. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10571. },
  10572. "dist": {
  10573. "type": "zip",
  10574. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10575. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10576. "shasum": ""
  10577. },
  10578. "require": {
  10579. "php": ">=8.1",
  10580. "symfony/service-contracts": "^2.5|^3"
  10581. },
  10582. "type": "library",
  10583. "autoload": {
  10584. "psr-4": {
  10585. "Symfony\\Component\\Stopwatch\\": ""
  10586. },
  10587. "exclude-from-classmap": [
  10588. "/Tests/"
  10589. ]
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "MIT"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "Fabien Potencier",
  10598. "email": "fabien@symfony.com"
  10599. },
  10600. {
  10601. "name": "Symfony Community",
  10602. "homepage": "https://symfony.com/contributors"
  10603. }
  10604. ],
  10605. "description": "Provides a way to profile code",
  10606. "homepage": "https://symfony.com",
  10607. "support": {
  10608. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10609. },
  10610. "funding": [
  10611. {
  10612. "url": "https://symfony.com/sponsor",
  10613. "type": "custom"
  10614. },
  10615. {
  10616. "url": "https://github.com/fabpot",
  10617. "type": "github"
  10618. },
  10619. {
  10620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10621. "type": "tidelift"
  10622. }
  10623. ],
  10624. "time": "2024-05-31T14:49:08+00:00"
  10625. },
  10626. {
  10627. "name": "theseer/tokenizer",
  10628. "version": "1.2.3",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/theseer/tokenizer.git",
  10632. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10637. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "ext-dom": "*",
  10642. "ext-tokenizer": "*",
  10643. "ext-xmlwriter": "*",
  10644. "php": "^7.2 || ^8.0"
  10645. },
  10646. "type": "library",
  10647. "autoload": {
  10648. "classmap": [
  10649. "src/"
  10650. ]
  10651. },
  10652. "notification-url": "https://packagist.org/downloads/",
  10653. "license": [
  10654. "BSD-3-Clause"
  10655. ],
  10656. "authors": [
  10657. {
  10658. "name": "Arne Blankerts",
  10659. "email": "arne@blankerts.de",
  10660. "role": "Developer"
  10661. }
  10662. ],
  10663. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10664. "support": {
  10665. "issues": "https://github.com/theseer/tokenizer/issues",
  10666. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10667. },
  10668. "funding": [
  10669. {
  10670. "url": "https://github.com/theseer",
  10671. "type": "github"
  10672. }
  10673. ],
  10674. "time": "2024-03-03T12:36:25+00:00"
  10675. }
  10676. ],
  10677. "aliases": [],
  10678. "minimum-stability": "dev",
  10679. "stability-flags": {},
  10680. "prefer-stable": true,
  10681. "prefer-lowest": false,
  10682. "platform": {
  10683. "php": ">=8.1"
  10684. },
  10685. "platform-dev": {},
  10686. "plugin-api-version": "2.6.0"
  10687. }