composer.lock 398 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236
  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": "cccded5c20a475a6d67e9cd987ccd087",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  89. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.10.28",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6.4 || ^7",
  104. "vimeo/psalm": "^4.30 || ^5.14"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  151. },
  152. "time": "2024-09-05T10:17:24+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  459. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.3"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2024-07-20T21:45:45+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.9.2",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  521. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  527. "guzzlehttp/psr7": "^2.7.0",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "guzzle/client-integration-tests": "3.0.2",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-07-24T11:22:20+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.4",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  647. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2024-10-17T10:06:22+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.7.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  730. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "0.9.0",
  746. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2024-07-18T11:15:46+00:00"
  834. },
  835. {
  836. "name": "hyperf/amqp",
  837. "version": "v3.1.42",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/amqp.git",
  841. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  846. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "doctrine/instantiator": "^1.2.0",
  851. "hyperf/codec": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/coroutine": "~3.1.0",
  854. "hyperf/pool": "~3.1.0",
  855. "hyperf/process": "~3.1.0",
  856. "hyperf/support": "~3.1.0",
  857. "hyperf/utils": "~3.1.0",
  858. "php": ">=8.1",
  859. "php-amqplib/php-amqplib": "^3.5",
  860. "psr/container": "^1.0 || ^2.0",
  861. "psr/event-dispatcher": "^1.0",
  862. "psr/log": "^1.0 || ^2.0 || ^3.0"
  863. },
  864. "suggest": {
  865. "hyperf/di": "Required to use annotations.",
  866. "hyperf/event": "Declare queue and start consumers automatically."
  867. },
  868. "type": "library",
  869. "extra": {
  870. "hyperf": {
  871. "config": "Hyperf\\Amqp\\ConfigProvider"
  872. },
  873. "branch-alias": {
  874. "dev-master": "3.1-dev"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Hyperf\\Amqp\\": "src/"
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "description": "A amqplib for hyperf.",
  887. "homepage": "https://hyperf.io",
  888. "keywords": [
  889. "AMQP",
  890. "hyperf",
  891. "php"
  892. ],
  893. "support": {
  894. "docs": "https://hyperf.wiki",
  895. "issues": "https://github.com/hyperf/hyperf/issues",
  896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  897. "source": "https://github.com/hyperf/hyperf"
  898. },
  899. "funding": [
  900. {
  901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  902. "type": "custom"
  903. },
  904. {
  905. "url": "https://opencollective.com/hyperf",
  906. "type": "open_collective"
  907. }
  908. ],
  909. "time": "2024-09-25T02:54:12+00:00"
  910. },
  911. {
  912. "name": "hyperf/async-queue",
  913. "version": "v3.1.42",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/hyperf/async-queue.git",
  917. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  922. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "hyperf/codec": "~3.1.0",
  927. "hyperf/collection": "~3.1.0",
  928. "hyperf/command": "~3.1.0",
  929. "hyperf/contract": "~3.1.0",
  930. "hyperf/support": "~3.1.0",
  931. "hyperf/utils": "~3.1.0",
  932. "php": ">=8.1",
  933. "psr/container": "^1.0 || ^2.0",
  934. "psr/event-dispatcher": "^1.0"
  935. },
  936. "suggest": {
  937. "hyperf/di": "Required to use annotations.",
  938. "hyperf/event": "Required to dispatch a event.",
  939. "hyperf/logger": "Required to use QueueHandleListener.",
  940. "hyperf/process": "Auto register the consumer process for server."
  941. },
  942. "type": "library",
  943. "extra": {
  944. "hyperf": {
  945. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  946. },
  947. "branch-alias": {
  948. "dev-master": "3.1-dev"
  949. }
  950. },
  951. "autoload": {
  952. "files": [
  953. "src/Functions.php"
  954. ],
  955. "psr-4": {
  956. "Hyperf\\AsyncQueue\\": "src/"
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "description": "A async queue component for hyperf.",
  964. "homepage": "https://hyperf.io",
  965. "keywords": [
  966. "async-queue",
  967. "hyperf",
  968. "php"
  969. ],
  970. "support": {
  971. "docs": "https://hyperf.wiki",
  972. "issues": "https://github.com/hyperf/hyperf/issues",
  973. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  974. "source": "https://github.com/hyperf/hyperf"
  975. },
  976. "funding": [
  977. {
  978. "url": "https://hyperf.wiki/#/zh-cn/donate",
  979. "type": "custom"
  980. },
  981. {
  982. "url": "https://opencollective.com/hyperf",
  983. "type": "open_collective"
  984. }
  985. ],
  986. "time": "2024-09-25T02:54:12+00:00"
  987. },
  988. {
  989. "name": "hyperf/cache",
  990. "version": "v3.1.43",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/hyperf/cache.git",
  994. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  999. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1000. "shasum": ""
  1001. },
  1002. "require": {
  1003. "hyperf/codec": "~3.1.0",
  1004. "hyperf/collection": "~3.1.0",
  1005. "hyperf/contract": "~3.1.0",
  1006. "hyperf/support": "~3.1.0",
  1007. "hyperf/utils": "~3.1.0",
  1008. "php": ">=8.1",
  1009. "psr/container": "^1.0 || ^2.0",
  1010. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1011. },
  1012. "suggest": {
  1013. "hyperf/di": "Use cache annotations.",
  1014. "hyperf/event": "Use listener to delete annotation cache."
  1015. },
  1016. "type": "library",
  1017. "extra": {
  1018. "hyperf": {
  1019. "config": "Hyperf\\Cache\\ConfigProvider"
  1020. },
  1021. "branch-alias": {
  1022. "dev-master": "3.1-dev"
  1023. }
  1024. },
  1025. "autoload": {
  1026. "psr-4": {
  1027. "Hyperf\\Cache\\": "src/"
  1028. }
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "MIT"
  1033. ],
  1034. "description": "A cache component for hyperf.",
  1035. "homepage": "https://hyperf.io",
  1036. "keywords": [
  1037. "cache",
  1038. "hyperf",
  1039. "php"
  1040. ],
  1041. "support": {
  1042. "docs": "https://hyperf.wiki",
  1043. "issues": "https://github.com/hyperf/hyperf/issues",
  1044. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1045. "source": "https://github.com/hyperf/hyperf"
  1046. },
  1047. "funding": [
  1048. {
  1049. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1050. "type": "custom"
  1051. },
  1052. {
  1053. "url": "https://opencollective.com/hyperf",
  1054. "type": "open_collective"
  1055. }
  1056. ],
  1057. "time": "2024-10-09T10:22:39+00:00"
  1058. },
  1059. {
  1060. "name": "hyperf/code-parser",
  1061. "version": "v3.1.42",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/hyperf/code-parser.git",
  1065. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1070. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1071. "shasum": ""
  1072. },
  1073. "require": {
  1074. "hyperf/collection": "~3.1.0",
  1075. "hyperf/stringable": "~3.1.0",
  1076. "hyperf/support": "~3.1.0",
  1077. "php": ">=8.1"
  1078. },
  1079. "suggest": {
  1080. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1081. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1082. },
  1083. "type": "library",
  1084. "extra": {
  1085. "branch-alias": {
  1086. "dev-master": "3.1-dev"
  1087. }
  1088. },
  1089. "autoload": {
  1090. "psr-4": {
  1091. "Hyperf\\CodeParser\\": "src/"
  1092. }
  1093. },
  1094. "notification-url": "https://packagist.org/downloads/",
  1095. "license": [
  1096. "MIT"
  1097. ],
  1098. "description": "A code parser component for Hyperf.",
  1099. "homepage": "https://hyperf.io",
  1100. "keywords": [
  1101. "code-parser",
  1102. "hyperf",
  1103. "php",
  1104. "swoole"
  1105. ],
  1106. "support": {
  1107. "docs": "https://hyperf.wiki",
  1108. "issues": "https://github.com/hyperf/hyperf/issues",
  1109. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1110. "source": "https://github.com/hyperf/hyperf"
  1111. },
  1112. "funding": [
  1113. {
  1114. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1115. "type": "custom"
  1116. },
  1117. {
  1118. "url": "https://opencollective.com/hyperf",
  1119. "type": "open_collective"
  1120. }
  1121. ],
  1122. "time": "2024-09-25T02:54:12+00:00"
  1123. },
  1124. {
  1125. "name": "hyperf/codec",
  1126. "version": "v3.1.42",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/hyperf/codec.git",
  1130. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1135. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "ext-json": "*",
  1140. "ext-xml": "*",
  1141. "hyperf/contract": "~3.1.0",
  1142. "php": ">=8.1"
  1143. },
  1144. "suggest": {
  1145. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1146. },
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-master": "3.1-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "psr-4": {
  1155. "Hyperf\\Codec\\": "src/"
  1156. }
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "description": "A codec component for Hyperf.",
  1163. "homepage": "https://hyperf.io",
  1164. "keywords": [
  1165. "codec",
  1166. "hyperf",
  1167. "php",
  1168. "swoole"
  1169. ],
  1170. "support": {
  1171. "docs": "https://hyperf.wiki",
  1172. "issues": "https://github.com/hyperf/hyperf/issues",
  1173. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1174. "source": "https://github.com/hyperf/hyperf"
  1175. },
  1176. "funding": [
  1177. {
  1178. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1179. "type": "custom"
  1180. },
  1181. {
  1182. "url": "https://opencollective.com/hyperf",
  1183. "type": "open_collective"
  1184. }
  1185. ],
  1186. "time": "2024-09-25T02:54:12+00:00"
  1187. },
  1188. {
  1189. "name": "hyperf/collection",
  1190. "version": "v3.1.47",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/hyperf/collection.git",
  1194. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1199. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1200. "shasum": ""
  1201. },
  1202. "require": {
  1203. "hyperf/conditionable": "~3.1.0",
  1204. "hyperf/contract": "~3.1.0",
  1205. "hyperf/macroable": "~3.1.0",
  1206. "hyperf/stringable": "~3.1.0",
  1207. "php": ">=8.1"
  1208. },
  1209. "type": "library",
  1210. "extra": {
  1211. "branch-alias": {
  1212. "dev-master": "3.1-dev"
  1213. }
  1214. },
  1215. "autoload": {
  1216. "files": [
  1217. "src/Functions.php"
  1218. ],
  1219. "psr-4": {
  1220. "Hyperf\\Collection\\": "src/"
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "description": "Hyperf Collection package which come from illuminate/collections",
  1228. "homepage": "https://hyperf.io",
  1229. "keywords": [
  1230. "collection",
  1231. "hyperf",
  1232. "php",
  1233. "swoole"
  1234. ],
  1235. "support": {
  1236. "docs": "https://hyperf.wiki",
  1237. "issues": "https://github.com/hyperf/hyperf/issues",
  1238. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1239. "source": "https://github.com/hyperf/hyperf"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://opencollective.com/hyperf",
  1248. "type": "open_collective"
  1249. }
  1250. ],
  1251. "time": "2024-11-28T01:51:55+00:00"
  1252. },
  1253. {
  1254. "name": "hyperf/command",
  1255. "version": "v3.1.42",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/hyperf/command.git",
  1259. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1264. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "hyperf/collection": "~3.1.0",
  1269. "hyperf/context": "~3.1.0",
  1270. "hyperf/contract": "~3.1.0",
  1271. "hyperf/coroutine": "~3.1.0",
  1272. "hyperf/di": "~3.1.0",
  1273. "hyperf/stringable": "~3.1.0",
  1274. "hyperf/support": "~3.1.0",
  1275. "hyperf/tappable": "~3.1.0",
  1276. "php": ">=8.1",
  1277. "psr/event-dispatcher": "^1.0",
  1278. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1279. },
  1280. "suggest": {
  1281. "hyperf/di": "Required to use annotations.",
  1282. "hyperf/event": "Required to use listeners."
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "hyperf": {
  1287. "config": "Hyperf\\Command\\ConfigProvider"
  1288. },
  1289. "branch-alias": {
  1290. "dev-master": "3.1-dev"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "psr-4": {
  1295. "Hyperf\\Command\\": "src/"
  1296. }
  1297. },
  1298. "notification-url": "https://packagist.org/downloads/",
  1299. "license": [
  1300. "MIT"
  1301. ],
  1302. "description": "Command for hyperf",
  1303. "keywords": [
  1304. "command",
  1305. "php",
  1306. "swoole"
  1307. ],
  1308. "support": {
  1309. "issues": "https://github.com/hyperf/command/issues",
  1310. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1311. },
  1312. "funding": [
  1313. {
  1314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1315. "type": "custom"
  1316. },
  1317. {
  1318. "url": "https://opencollective.com/hyperf",
  1319. "type": "open_collective"
  1320. }
  1321. ],
  1322. "time": "2024-09-25T02:54:12+00:00"
  1323. },
  1324. {
  1325. "name": "hyperf/conditionable",
  1326. "version": "v3.1.42",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/hyperf/conditionable.git",
  1330. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1335. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "php": ">=8.1"
  1340. },
  1341. "type": "library",
  1342. "extra": {
  1343. "branch-alias": {
  1344. "dev-master": "3.1-dev"
  1345. }
  1346. },
  1347. "autoload": {
  1348. "psr-4": {
  1349. "Hyperf\\Conditionable\\": "src/"
  1350. }
  1351. },
  1352. "notification-url": "https://packagist.org/downloads/",
  1353. "license": [
  1354. "MIT"
  1355. ],
  1356. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1357. "homepage": "https://hyperf.io",
  1358. "keywords": [
  1359. "conditionable",
  1360. "hyperf",
  1361. "php",
  1362. "swoole"
  1363. ],
  1364. "support": {
  1365. "docs": "https://hyperf.wiki",
  1366. "issues": "https://github.com/hyperf/hyperf/issues",
  1367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1368. "source": "https://github.com/hyperf/hyperf"
  1369. },
  1370. "funding": [
  1371. {
  1372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1373. "type": "custom"
  1374. },
  1375. {
  1376. "url": "https://opencollective.com/hyperf",
  1377. "type": "open_collective"
  1378. }
  1379. ],
  1380. "time": "2024-09-25T02:54:12+00:00"
  1381. },
  1382. {
  1383. "name": "hyperf/config",
  1384. "version": "v3.1.42",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "https://github.com/hyperf/config.git",
  1388. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1393. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1394. "shasum": ""
  1395. },
  1396. "require": {
  1397. "hyperf/collection": "~3.1.0",
  1398. "hyperf/contract": "~3.1.0",
  1399. "hyperf/support": "~3.1.0",
  1400. "php": ">=8.1",
  1401. "psr/container": "^1.0 || ^2.0",
  1402. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1403. },
  1404. "suggest": {
  1405. "hyperf/context": "Required to use config()",
  1406. "hyperf/di": "Allows using @Value annotation",
  1407. "hyperf/event": "Allows using @Value annotation",
  1408. "hyperf/framework": "Allows using @Value annotation",
  1409. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1410. },
  1411. "type": "library",
  1412. "extra": {
  1413. "hyperf": {
  1414. "config": "Hyperf\\Config\\ConfigProvider"
  1415. },
  1416. "branch-alias": {
  1417. "dev-master": "3.1-dev"
  1418. }
  1419. },
  1420. "autoload": {
  1421. "files": [
  1422. "./src/Functions.php"
  1423. ],
  1424. "psr-4": {
  1425. "Hyperf\\Config\\": "src/"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "description": "An independent component that provides configuration container.",
  1433. "homepage": "https://hyperf.io",
  1434. "keywords": [
  1435. "config",
  1436. "configuration",
  1437. "hyperf",
  1438. "php",
  1439. "swoole"
  1440. ],
  1441. "support": {
  1442. "docs": "https://hyperf.wiki",
  1443. "issues": "https://github.com/hyperf/hyperf/issues",
  1444. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1445. "source": "https://github.com/hyperf/hyperf"
  1446. },
  1447. "funding": [
  1448. {
  1449. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1450. "type": "custom"
  1451. },
  1452. {
  1453. "url": "https://opencollective.com/hyperf",
  1454. "type": "open_collective"
  1455. }
  1456. ],
  1457. "time": "2024-09-25T02:54:12+00:00"
  1458. },
  1459. {
  1460. "name": "hyperf/config-center",
  1461. "version": "v3.1.42",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/hyperf/config-center.git",
  1465. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1470. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "hyperf/support": "~3.1.0",
  1475. "php": ">=8.1"
  1476. },
  1477. "suggest": {
  1478. "hyperf/process": "^2.1"
  1479. },
  1480. "type": "library",
  1481. "extra": {
  1482. "hyperf": {
  1483. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1484. },
  1485. "branch-alias": {
  1486. "dev-master": "3.1-dev"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "psr-4": {
  1491. "Hyperf\\ConfigCenter\\": "src/"
  1492. }
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "MIT"
  1497. ],
  1498. "description": "The abstraction component of config center",
  1499. "homepage": "https://hyperf.io",
  1500. "keywords": [
  1501. "config-center",
  1502. "hyperf",
  1503. "php"
  1504. ],
  1505. "support": {
  1506. "docs": "https://hyperf.wiki",
  1507. "issues": "https://github.com/hyperf/hyperf/issues",
  1508. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1509. "source": "https://github.com/hyperf/hyperf"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1514. "type": "custom"
  1515. },
  1516. {
  1517. "url": "https://opencollective.com/hyperf",
  1518. "type": "open_collective"
  1519. }
  1520. ],
  1521. "time": "2024-09-25T02:54:12+00:00"
  1522. },
  1523. {
  1524. "name": "hyperf/config-nacos",
  1525. "version": "v3.1.42",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/hyperf/config-nacos.git",
  1529. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1534. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1535. "shasum": ""
  1536. },
  1537. "require": {
  1538. "hyperf/codec": "~3.1.0",
  1539. "hyperf/config-center": "~3.1.0",
  1540. "hyperf/contract": "~3.1.0",
  1541. "hyperf/guzzle": "~3.1.0",
  1542. "hyperf/nacos": "~3.1.0",
  1543. "hyperf/support": "~3.1.0",
  1544. "hyperf/utils": "~3.1.0",
  1545. "jetbrains/phpstorm-attributes": "^1.0",
  1546. "php": ">=8.1"
  1547. },
  1548. "suggest": {
  1549. "ext-json": "*",
  1550. "ext-simplexml": "*",
  1551. "ext-yaml": "*",
  1552. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1553. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1554. "hyperf/process": "Required to use processes. (~2.2.0)"
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "hyperf": {
  1559. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1560. },
  1561. "branch-alias": {
  1562. "dev-master": "3.1-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Hyperf\\ConfigNacos\\": "src/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "description": "A nacos adapter for config center component.",
  1575. "homepage": "https://hyperf.io",
  1576. "keywords": [
  1577. "hyperf",
  1578. "nacos",
  1579. "php",
  1580. "swoole"
  1581. ],
  1582. "support": {
  1583. "docs": "https://hyperf.wiki",
  1584. "issues": "https://github.com/hyperf/hyperf/issues",
  1585. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1586. "source": "https://github.com/hyperf/hyperf"
  1587. },
  1588. "funding": [
  1589. {
  1590. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1591. "type": "custom"
  1592. },
  1593. {
  1594. "url": "https://opencollective.com/hyperf",
  1595. "type": "open_collective"
  1596. }
  1597. ],
  1598. "time": "2024-09-25T02:54:12+00:00"
  1599. },
  1600. {
  1601. "name": "hyperf/constants",
  1602. "version": "v3.1.42",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/hyperf/constants.git",
  1606. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1611. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1612. "shasum": ""
  1613. },
  1614. "require": {
  1615. "hyperf/di": "~3.1.0",
  1616. "hyperf/support": "~3.1.0",
  1617. "hyperf/utils": "~3.1.0",
  1618. "php": ">=8.1"
  1619. },
  1620. "suggest": {
  1621. "hyperf/translation": "Required to use translation."
  1622. },
  1623. "type": "library",
  1624. "extra": {
  1625. "hyperf": {
  1626. "config": "Hyperf\\Constants\\ConfigProvider"
  1627. },
  1628. "branch-alias": {
  1629. "dev-master": "3.1-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-4": {
  1634. "Hyperf\\Constants\\": "src/"
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "description": "A constants component for hyperf.",
  1642. "homepage": "https://hyperf.io",
  1643. "keywords": [
  1644. "constants",
  1645. "hyperf",
  1646. "php"
  1647. ],
  1648. "support": {
  1649. "docs": "https://hyperf.wiki",
  1650. "issues": "https://github.com/hyperf/hyperf/issues",
  1651. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1652. "source": "https://github.com/hyperf/hyperf"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://opencollective.com/hyperf",
  1661. "type": "open_collective"
  1662. }
  1663. ],
  1664. "time": "2024-09-25T02:54:12+00:00"
  1665. },
  1666. {
  1667. "name": "hyperf/consul",
  1668. "version": "v3.1.42",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/hyperf/consul.git",
  1672. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1677. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1682. "php": ">=8.1"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "hyperf": {
  1687. "config": "Hyperf\\Consul\\ConfigProvider"
  1688. },
  1689. "branch-alias": {
  1690. "dev-master": "3.1-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Hyperf\\Consul\\": "src/"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "description": "A Consul Client for Hyperf.",
  1703. "homepage": "https://hyperf.io",
  1704. "keywords": [
  1705. "consul",
  1706. "consul-client",
  1707. "hyperf",
  1708. "php",
  1709. "swoole"
  1710. ],
  1711. "support": {
  1712. "docs": "https://hyperf.wiki",
  1713. "issues": "https://github.com/hyperf/hyperf/issues",
  1714. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1715. "source": "https://github.com/hyperf/hyperf"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1720. "type": "custom"
  1721. },
  1722. {
  1723. "url": "https://opencollective.com/hyperf",
  1724. "type": "open_collective"
  1725. }
  1726. ],
  1727. "time": "2024-09-25T02:54:12+00:00"
  1728. },
  1729. {
  1730. "name": "hyperf/context",
  1731. "version": "v3.1.42",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/hyperf/context.git",
  1735. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1740. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "hyperf/engine": "^2.0",
  1745. "php": ">=8.1"
  1746. },
  1747. "suggest": {
  1748. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "3.1-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "psr-4": {
  1758. "Hyperf\\Context\\": "src/"
  1759. }
  1760. },
  1761. "notification-url": "https://packagist.org/downloads/",
  1762. "license": [
  1763. "MIT"
  1764. ],
  1765. "description": "A coroutine/application context library.",
  1766. "homepage": "https://hyperf.io",
  1767. "keywords": [
  1768. "Context",
  1769. "hyperf",
  1770. "php",
  1771. "swoole"
  1772. ],
  1773. "support": {
  1774. "docs": "https://hyperf.wiki",
  1775. "issues": "https://github.com/hyperf/hyperf/issues",
  1776. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1777. "source": "https://github.com/hyperf/hyperf"
  1778. },
  1779. "funding": [
  1780. {
  1781. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1782. "type": "custom"
  1783. },
  1784. {
  1785. "url": "https://opencollective.com/hyperf",
  1786. "type": "open_collective"
  1787. }
  1788. ],
  1789. "time": "2024-09-25T02:54:12+00:00"
  1790. },
  1791. {
  1792. "name": "hyperf/contract",
  1793. "version": "v3.1.42",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/hyperf/contract.git",
  1797. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1802. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "php": ">=8.1"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "branch-alias": {
  1811. "dev-master": "3.1-dev"
  1812. }
  1813. },
  1814. "autoload": {
  1815. "psr-4": {
  1816. "Hyperf\\Contract\\": "src/"
  1817. }
  1818. },
  1819. "notification-url": "https://packagist.org/downloads/",
  1820. "license": [
  1821. "MIT"
  1822. ],
  1823. "description": "The contracts of Hyperf.",
  1824. "homepage": "https://hyperf.io",
  1825. "keywords": [
  1826. "hyperf",
  1827. "php",
  1828. "swoole"
  1829. ],
  1830. "support": {
  1831. "docs": "https://hyperf.wiki",
  1832. "issues": "https://github.com/hyperf/hyperf/issues",
  1833. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1834. "source": "https://github.com/hyperf/hyperf"
  1835. },
  1836. "funding": [
  1837. {
  1838. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1839. "type": "custom"
  1840. },
  1841. {
  1842. "url": "https://opencollective.com/hyperf",
  1843. "type": "open_collective"
  1844. }
  1845. ],
  1846. "time": "2024-09-25T02:54:12+00:00"
  1847. },
  1848. {
  1849. "name": "hyperf/coordinator",
  1850. "version": "v3.1.42",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/hyperf/coordinator.git",
  1854. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1859. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "hyperf/engine": "^2.0",
  1864. "php": ">=8.1"
  1865. },
  1866. "type": "library",
  1867. "extra": {
  1868. "branch-alias": {
  1869. "dev-master": "3.1-dev"
  1870. }
  1871. },
  1872. "autoload": {
  1873. "files": [
  1874. "src/Functions.php"
  1875. ],
  1876. "psr-4": {
  1877. "Hyperf\\Coordinator\\": "src/"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "description": "Hyperf Coordinator",
  1885. "homepage": "https://hyperf.io",
  1886. "keywords": [
  1887. "Coordinator",
  1888. "hyperf",
  1889. "php",
  1890. "swoole"
  1891. ],
  1892. "support": {
  1893. "docs": "https://hyperf.wiki",
  1894. "issues": "https://github.com/hyperf/hyperf/issues",
  1895. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1896. "source": "https://github.com/hyperf/hyperf"
  1897. },
  1898. "funding": [
  1899. {
  1900. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1901. "type": "custom"
  1902. },
  1903. {
  1904. "url": "https://opencollective.com/hyperf",
  1905. "type": "open_collective"
  1906. }
  1907. ],
  1908. "time": "2024-09-25T02:54:12+00:00"
  1909. },
  1910. {
  1911. "name": "hyperf/coroutine",
  1912. "version": "v3.1.49",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/hyperf/coroutine.git",
  1916. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/959ea68ac700061d8f7b76708bc52f588b66979b",
  1921. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "hyperf/context": "~3.1.0",
  1926. "hyperf/contract": "~3.1.0",
  1927. "hyperf/engine": "^2.0",
  1928. "php": ">=8.1"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "3.1-dev"
  1934. }
  1935. },
  1936. "autoload": {
  1937. "files": [
  1938. "src/Functions.php"
  1939. ],
  1940. "psr-4": {
  1941. "Hyperf\\Coroutine\\": "src/"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "description": "Hyperf Coroutine",
  1949. "homepage": "https://hyperf.io",
  1950. "keywords": [
  1951. "coroutine",
  1952. "hyperf",
  1953. "php",
  1954. "swoole"
  1955. ],
  1956. "support": {
  1957. "docs": "https://hyperf.wiki",
  1958. "issues": "https://github.com/hyperf/hyperf/issues",
  1959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1960. "source": "https://github.com/hyperf/hyperf"
  1961. },
  1962. "funding": [
  1963. {
  1964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1965. "type": "custom"
  1966. },
  1967. {
  1968. "url": "https://opencollective.com/hyperf",
  1969. "type": "open_collective"
  1970. }
  1971. ],
  1972. "time": "2024-12-13T07:51:52+00:00"
  1973. },
  1974. {
  1975. "name": "hyperf/database",
  1976. "version": "v3.1.48",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/hyperf/database.git",
  1980. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  1985. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "hyperf/code-parser": "~3.1.0",
  1990. "hyperf/collection": "~3.1.23",
  1991. "hyperf/conditionable": "~3.1.0",
  1992. "hyperf/macroable": "~3.1.0",
  1993. "hyperf/support": "~3.1.0",
  1994. "hyperf/tappable": "~3.1.0",
  1995. "hyperf/utils": "~3.1.0",
  1996. "nesbot/carbon": "^2.0",
  1997. "php": ">=8.1",
  1998. "psr/container": "^1.0 || ^2.0",
  1999. "psr/event-dispatcher": "^1.0"
  2000. },
  2001. "suggest": {
  2002. "doctrine/dbal": "Required to rename columns (^3.0).",
  2003. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2004. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2005. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "3.1-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Hyperf\\Database\\": "src/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "description": "A flexible database library.",
  2023. "homepage": "https://hyperf.io",
  2024. "keywords": [
  2025. "database",
  2026. "hyperf",
  2027. "php"
  2028. ],
  2029. "support": {
  2030. "docs": "https://hyperf.wiki",
  2031. "issues": "https://github.com/hyperf/hyperf/issues",
  2032. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2033. "source": "https://github.com/hyperf/hyperf"
  2034. },
  2035. "funding": [
  2036. {
  2037. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2038. "type": "custom"
  2039. },
  2040. {
  2041. "url": "https://opencollective.com/hyperf",
  2042. "type": "open_collective"
  2043. }
  2044. ],
  2045. "time": "2024-12-12T01:58:16+00:00"
  2046. },
  2047. {
  2048. "name": "hyperf/db-connection",
  2049. "version": "v3.1.44",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/hyperf/db-connection.git",
  2053. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2058. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "hyperf/database": "~3.1.0",
  2063. "hyperf/di": "~3.1.0",
  2064. "hyperf/framework": "~3.1.0",
  2065. "hyperf/model-listener": "~3.1.0",
  2066. "hyperf/pool": "~3.1.0",
  2067. "hyperf/support": "~3.1.0",
  2068. "hyperf/utils": "~3.1.0",
  2069. "php": ">=8.1",
  2070. "psr/container": "^1.0 || ^2.0"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "hyperf": {
  2075. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2076. },
  2077. "branch-alias": {
  2078. "dev-master": "3.1-dev"
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "Hyperf\\DbConnection\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "description": "A hyperf db connection handler for hyperf/database.",
  2091. "homepage": "https://hyperf.io",
  2092. "keywords": [
  2093. "Connection",
  2094. "database",
  2095. "hyperf",
  2096. "php"
  2097. ],
  2098. "support": {
  2099. "docs": "https://hyperf.wiki",
  2100. "issues": "https://github.com/hyperf/hyperf/issues",
  2101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2102. "source": "https://github.com/hyperf/hyperf"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2107. "type": "custom"
  2108. },
  2109. {
  2110. "url": "https://opencollective.com/hyperf",
  2111. "type": "open_collective"
  2112. }
  2113. ],
  2114. "time": "2024-10-11T08:58:16+00:00"
  2115. },
  2116. {
  2117. "name": "hyperf/di",
  2118. "version": "v3.1.42",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/hyperf/di.git",
  2122. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2127. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "doctrine/instantiator": "^1.0",
  2132. "hyperf/code-parser": "~3.1.0",
  2133. "hyperf/pipeline": "~3.1.0",
  2134. "hyperf/stdlib": "~3.1.0",
  2135. "hyperf/support": "~3.1.0",
  2136. "nikic/php-parser": "^4.1",
  2137. "php": ">=8.1",
  2138. "php-di/phpdoc-reader": "^2.2",
  2139. "psr/container": "^1.0 || ^2.0",
  2140. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2141. "vlucas/phpdotenv": "^5.0"
  2142. },
  2143. "suggest": {
  2144. "ext-pcntl": "Required to scan annotations.",
  2145. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2146. },
  2147. "type": "library",
  2148. "extra": {
  2149. "hyperf": {
  2150. "config": "Hyperf\\Di\\ConfigProvider"
  2151. },
  2152. "branch-alias": {
  2153. "dev-master": "3.1-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Hyperf\\Di\\": "src/"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "description": "A DI for Hyperf.",
  2166. "homepage": "https://hyperf.io",
  2167. "keywords": [
  2168. "annotation",
  2169. "di",
  2170. "hyperf",
  2171. "php",
  2172. "swoole"
  2173. ],
  2174. "support": {
  2175. "docs": "https://hyperf.wiki",
  2176. "issues": "https://github.com/hyperf/hyperf/issues",
  2177. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2178. "source": "https://github.com/hyperf/hyperf"
  2179. },
  2180. "funding": [
  2181. {
  2182. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2183. "type": "custom"
  2184. },
  2185. {
  2186. "url": "https://opencollective.com/hyperf",
  2187. "type": "open_collective"
  2188. }
  2189. ],
  2190. "time": "2024-09-25T02:54:12+00:00"
  2191. },
  2192. {
  2193. "name": "hyperf/dispatcher",
  2194. "version": "v3.1.42",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/hyperf/dispatcher.git",
  2198. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2203. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "hyperf/contract": "~3.1.0",
  2208. "php": ">=8.1",
  2209. "psr/container": "^1.0 || ^2.0",
  2210. "psr/http-message": "^1.0 || ^2.0",
  2211. "psr/http-server-middleware": "^1.0"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "hyperf": {
  2216. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2217. },
  2218. "branch-alias": {
  2219. "dev-master": "3.1-dev"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Hyperf\\Dispatcher\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "description": "A HTTP Server for Hyperf.",
  2232. "homepage": "https://hyperf.io",
  2233. "keywords": [
  2234. "dispatcher",
  2235. "filter",
  2236. "hyperf",
  2237. "middleware",
  2238. "php",
  2239. "swoole"
  2240. ],
  2241. "support": {
  2242. "docs": "https://hyperf.wiki",
  2243. "issues": "https://github.com/hyperf/hyperf/issues",
  2244. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2245. "source": "https://github.com/hyperf/hyperf"
  2246. },
  2247. "funding": [
  2248. {
  2249. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2250. "type": "custom"
  2251. },
  2252. {
  2253. "url": "https://opencollective.com/hyperf",
  2254. "type": "open_collective"
  2255. }
  2256. ],
  2257. "time": "2024-09-25T02:54:12+00:00"
  2258. },
  2259. {
  2260. "name": "hyperf/engine",
  2261. "version": "v2.12.1",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/hyperf/engine.git",
  2265. "reference": "90be8143841482dcd00051050986251e126c6132"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2270. "reference": "90be8143841482dcd00051050986251e126c6132",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "hyperf/engine-contract": "~1.11.0",
  2275. "php": ">=8.0"
  2276. },
  2277. "conflict": {
  2278. "ext-swoole": "<5.0"
  2279. },
  2280. "require-dev": {
  2281. "friendsofphp/php-cs-fixer": "^3.0",
  2282. "hyperf/guzzle": "^3.0",
  2283. "hyperf/http-message": "^3.0",
  2284. "mockery/mockery": "^1.5",
  2285. "phpstan/phpstan": "^1.0",
  2286. "phpunit/phpunit": "^9.4",
  2287. "swoole/ide-helper": "5.*"
  2288. },
  2289. "suggest": {
  2290. "ext-sockets": "*",
  2291. "ext-swoole": ">=5.0",
  2292. "hyperf/http-message": "Required to use ResponseEmitter.",
  2293. "psr/http-message": "Required to use WebSocket Frame."
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "hyperf": {
  2298. "config": "Hyperf\\Engine\\ConfigProvider"
  2299. },
  2300. "branch-alias": {
  2301. "dev-master": "2.12-dev"
  2302. }
  2303. },
  2304. "autoload": {
  2305. "files": [
  2306. "src/Functions.php"
  2307. ],
  2308. "psr-4": {
  2309. "Hyperf\\Engine\\": "src/"
  2310. }
  2311. },
  2312. "notification-url": "https://packagist.org/downloads/",
  2313. "license": [
  2314. "MIT"
  2315. ],
  2316. "description": "Coroutine engine provided by swoole.",
  2317. "keywords": [
  2318. "engine",
  2319. "hyperf",
  2320. "php",
  2321. "swoole"
  2322. ],
  2323. "support": {
  2324. "issues": "https://github.com/hyperf/engine/issues",
  2325. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2326. },
  2327. "funding": [
  2328. {
  2329. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2330. "type": "custom"
  2331. },
  2332. {
  2333. "url": "https://opencollective.com/hyperf",
  2334. "type": "open_collective"
  2335. }
  2336. ],
  2337. "time": "2024-12-17T12:36:21+00:00"
  2338. },
  2339. {
  2340. "name": "hyperf/engine-contract",
  2341. "version": "v1.11.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/hyperf/engine-contract.git",
  2345. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2350. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.0"
  2355. },
  2356. "require-dev": {
  2357. "friendsofphp/php-cs-fixer": "^3.0",
  2358. "mockery/mockery": "^1.0",
  2359. "phpstan/phpstan": "^1.0",
  2360. "phpunit/phpunit": ">=7.0",
  2361. "psr/http-message": "^1.0",
  2362. "swoole/ide-helper": "^4.5"
  2363. },
  2364. "suggest": {
  2365. "psr/http-message": "Required to use WebSocket Frame."
  2366. },
  2367. "type": "library",
  2368. "extra": {
  2369. "branch-alias": {
  2370. "dev-master": "1.9-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "psr-4": {
  2375. "Hyperf\\Engine\\Contract\\": "src/"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "description": "Contract for Coroutine Engine",
  2383. "keywords": [
  2384. "contract",
  2385. "coroutine",
  2386. "engine",
  2387. "hyperf",
  2388. "php"
  2389. ],
  2390. "support": {
  2391. "issues": "https://github.com/hyperf/engine-contract/issues",
  2392. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2393. },
  2394. "funding": [
  2395. {
  2396. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2397. "type": "custom"
  2398. },
  2399. {
  2400. "url": "https://opencollective.com/hyperf",
  2401. "type": "open_collective"
  2402. }
  2403. ],
  2404. "time": "2024-11-19T04:15:31+00:00"
  2405. },
  2406. {
  2407. "name": "hyperf/event",
  2408. "version": "v3.1.42",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/hyperf/event.git",
  2412. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2417. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2418. "shasum": ""
  2419. },
  2420. "require": {
  2421. "hyperf/contract": "~3.1.0",
  2422. "hyperf/stdlib": "~3.1.0",
  2423. "php": ">=8.1",
  2424. "psr/event-dispatcher": "^1.0"
  2425. },
  2426. "suggest": {
  2427. "hyperf/di": "Required to use annotatioins."
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "hyperf": {
  2432. "config": "Hyperf\\Event\\ConfigProvider"
  2433. },
  2434. "branch-alias": {
  2435. "dev-master": "3.1-dev"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Hyperf\\Event\\": "src/"
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "description": "an event manager that implements PSR-14.",
  2448. "homepage": "https://hyperf.io",
  2449. "keywords": [
  2450. "event",
  2451. "hyperf",
  2452. "php",
  2453. "swoole"
  2454. ],
  2455. "support": {
  2456. "docs": "https://hyperf.wiki",
  2457. "issues": "https://github.com/hyperf/hyperf/issues",
  2458. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2459. "source": "https://github.com/hyperf/hyperf"
  2460. },
  2461. "funding": [
  2462. {
  2463. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2464. "type": "custom"
  2465. },
  2466. {
  2467. "url": "https://opencollective.com/hyperf",
  2468. "type": "open_collective"
  2469. }
  2470. ],
  2471. "time": "2024-09-25T02:54:12+00:00"
  2472. },
  2473. {
  2474. "name": "hyperf/exception-handler",
  2475. "version": "v3.1.42",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/hyperf/exception-handler.git",
  2479. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2484. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "hyperf/context": "~3.1.0",
  2489. "hyperf/contract": "~3.1.0",
  2490. "hyperf/dispatcher": "~3.1.0",
  2491. "hyperf/http-message": "~3.1.0",
  2492. "hyperf/stdlib": "~3.1.0",
  2493. "hyperf/support": "~3.1.0",
  2494. "php": ">=8.1",
  2495. "psr/container": "^1.0 || ^2.0",
  2496. "psr/http-message": "^1.0 || ^2.0",
  2497. "swow/psr7-plus": "^1.0"
  2498. },
  2499. "suggest": {
  2500. "hyperf/di": "Required to use #[ExceptionHandler]",
  2501. "hyperf/event": "Required to use listeners",
  2502. "hyperf/framework": "Required to use listeners",
  2503. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2504. },
  2505. "type": "library",
  2506. "extra": {
  2507. "hyperf": {
  2508. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2509. },
  2510. "branch-alias": {
  2511. "dev-master": "3.1-dev"
  2512. }
  2513. },
  2514. "autoload": {
  2515. "psr-4": {
  2516. "Hyperf\\ExceptionHandler\\": "src/"
  2517. }
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "MIT"
  2522. ],
  2523. "description": "Exception handler for hyperf",
  2524. "homepage": "https://hyperf.io",
  2525. "keywords": [
  2526. "exception-handler",
  2527. "php",
  2528. "swoole"
  2529. ],
  2530. "support": {
  2531. "docs": "https://hyperf.wiki",
  2532. "issues": "https://github.com/hyperf/hyperf/issues",
  2533. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2534. "source": "https://github.com/hyperf/hyperf"
  2535. },
  2536. "funding": [
  2537. {
  2538. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2539. "type": "custom"
  2540. },
  2541. {
  2542. "url": "https://opencollective.com/hyperf",
  2543. "type": "open_collective"
  2544. }
  2545. ],
  2546. "time": "2024-09-25T02:54:12+00:00"
  2547. },
  2548. {
  2549. "name": "hyperf/framework",
  2550. "version": "v3.1.42",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/hyperf/framework.git",
  2554. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2559. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2560. "shasum": ""
  2561. },
  2562. "require": {
  2563. "fig/http-message-util": "^1.1.2",
  2564. "hyperf/contract": "~3.1.0",
  2565. "hyperf/coordinator": "~3.1.0",
  2566. "hyperf/coroutine": "~3.1.0",
  2567. "php": ">=8.1",
  2568. "psr/container": "^1.0 || ^2.0",
  2569. "psr/event-dispatcher": "^1.0",
  2570. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2571. },
  2572. "suggest": {
  2573. "ext-swoole": "Required to use swoole engine.",
  2574. "hyperf/command": "Required to use Command annotation.",
  2575. "hyperf/di": "Required to use Command annotation.",
  2576. "hyperf/dispatcher": "Required to use BootApplication event.",
  2577. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2578. },
  2579. "type": "library",
  2580. "extra": {
  2581. "hyperf": {
  2582. "config": "Hyperf\\Framework\\ConfigProvider"
  2583. },
  2584. "branch-alias": {
  2585. "dev-master": "3.1-dev"
  2586. }
  2587. },
  2588. "autoload": {
  2589. "psr-4": {
  2590. "Hyperf\\Framework\\": "src/"
  2591. }
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2598. "homepage": "https://hyperf.io",
  2599. "keywords": [
  2600. "Microservice",
  2601. "framework",
  2602. "hyperf",
  2603. "middleware",
  2604. "php",
  2605. "swoole"
  2606. ],
  2607. "support": {
  2608. "docs": "https://hyperf.wiki",
  2609. "issues": "https://github.com/hyperf/hyperf/issues",
  2610. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2611. "source": "https://github.com/hyperf/hyperf"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2616. "type": "custom"
  2617. },
  2618. {
  2619. "url": "https://opencollective.com/hyperf",
  2620. "type": "open_collective"
  2621. }
  2622. ],
  2623. "time": "2024-09-25T02:54:12+00:00"
  2624. },
  2625. {
  2626. "name": "hyperf/guzzle",
  2627. "version": "v3.1.42",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/hyperf/guzzle.git",
  2631. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2636. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2641. "php": ">=8.1",
  2642. "psr/container": "^1.0 || ^2.0",
  2643. "psr/http-message": "^1.0 || ^2.0"
  2644. },
  2645. "suggest": {
  2646. "ext-curl": "Required for CURL handler support",
  2647. "hyperf/pool": "Required to use pool handler."
  2648. },
  2649. "type": "library",
  2650. "extra": {
  2651. "hyperf": {
  2652. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2653. },
  2654. "branch-alias": {
  2655. "dev-master": "3.1-dev"
  2656. }
  2657. },
  2658. "autoload": {
  2659. "psr-4": {
  2660. "Hyperf\\Guzzle\\": "src/"
  2661. }
  2662. },
  2663. "notification-url": "https://packagist.org/downloads/",
  2664. "license": [
  2665. "MIT"
  2666. ],
  2667. "description": "Swoole coroutine handler for guzzle",
  2668. "keywords": [
  2669. "Guzzle",
  2670. "handler",
  2671. "php",
  2672. "swoole"
  2673. ],
  2674. "support": {
  2675. "issues": "https://github.com/hyperf/guzzle/issues",
  2676. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2677. },
  2678. "funding": [
  2679. {
  2680. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2681. "type": "custom"
  2682. },
  2683. {
  2684. "url": "https://opencollective.com/hyperf",
  2685. "type": "open_collective"
  2686. }
  2687. ],
  2688. "time": "2024-09-25T02:54:12+00:00"
  2689. },
  2690. {
  2691. "name": "hyperf/http-message",
  2692. "version": "v3.1.48",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/hyperf/http-message.git",
  2696. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2701. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "hyperf/codec": "~3.1.0",
  2706. "hyperf/engine": "^2.11",
  2707. "hyperf/support": "~3.1.0",
  2708. "laminas/laminas-mime": "^2.7",
  2709. "php": ">=8.1",
  2710. "psr/http-message": "^1.0 || ^2.0",
  2711. "swow/psr7-plus": "^1.0"
  2712. },
  2713. "suggest": {
  2714. "psr/container": "Required to replace RequestParserInterface."
  2715. },
  2716. "type": "library",
  2717. "extra": {
  2718. "hyperf": {
  2719. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2720. },
  2721. "branch-alias": {
  2722. "dev-master": "3.1-dev"
  2723. }
  2724. },
  2725. "autoload": {
  2726. "psr-4": {
  2727. "Hyperf\\HttpMessage\\": "src/"
  2728. }
  2729. },
  2730. "notification-url": "https://packagist.org/downloads/",
  2731. "license": [
  2732. "MIT"
  2733. ],
  2734. "description": "microservice framework base on swoole",
  2735. "keywords": [
  2736. "http-message",
  2737. "hyperf",
  2738. "php",
  2739. "swoole"
  2740. ],
  2741. "support": {
  2742. "issues": "https://github.com/hyperf/http-message/issues",
  2743. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2744. },
  2745. "funding": [
  2746. {
  2747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2748. "type": "custom"
  2749. },
  2750. {
  2751. "url": "https://opencollective.com/hyperf",
  2752. "type": "open_collective"
  2753. }
  2754. ],
  2755. "time": "2024-12-05T02:41:08+00:00"
  2756. },
  2757. {
  2758. "name": "hyperf/http-server",
  2759. "version": "v3.1.42",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/hyperf/http-server.git",
  2763. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2768. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "hyperf/codec": "~3.1.0",
  2773. "hyperf/collection": "~3.1.0",
  2774. "hyperf/context": "~3.1.0",
  2775. "hyperf/contract": "~3.1.0",
  2776. "hyperf/coroutine": "~3.1.0",
  2777. "hyperf/dispatcher": "~3.1.0",
  2778. "hyperf/event": "~3.1.0",
  2779. "hyperf/exception-handler": "~3.1.0",
  2780. "hyperf/http-message": "~3.1.0",
  2781. "hyperf/macroable": "~3.1.0",
  2782. "hyperf/serializer": "~3.1.0",
  2783. "hyperf/server": "~3.1.0",
  2784. "hyperf/stdlib": "~3.1.0",
  2785. "hyperf/support": "~3.1.0",
  2786. "nikic/fast-route": "^1.3",
  2787. "php": ">=8.1",
  2788. "psr/container": "^1.0 || ^2.0",
  2789. "swow/psr7-plus": "^1.0"
  2790. },
  2791. "suggest": {
  2792. "hyperf/di": "Required to use annotations."
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "hyperf": {
  2797. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2798. },
  2799. "branch-alias": {
  2800. "dev-master": "3.1-dev"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "Hyperf\\HttpServer\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A HTTP Server for Hyperf.",
  2813. "homepage": "https://hyperf.io",
  2814. "keywords": [
  2815. "http",
  2816. "http-server",
  2817. "hyperf",
  2818. "php",
  2819. "swoole"
  2820. ],
  2821. "support": {
  2822. "docs": "https://hyperf.wiki",
  2823. "issues": "https://github.com/hyperf/hyperf/issues",
  2824. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2825. "source": "https://github.com/hyperf/hyperf"
  2826. },
  2827. "funding": [
  2828. {
  2829. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2830. "type": "custom"
  2831. },
  2832. {
  2833. "url": "https://opencollective.com/hyperf",
  2834. "type": "open_collective"
  2835. }
  2836. ],
  2837. "time": "2024-09-25T02:54:12+00:00"
  2838. },
  2839. {
  2840. "name": "hyperf/json-rpc",
  2841. "version": "v3.1.47",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/hyperf/json-rpc.git",
  2845. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2850. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2851. "shasum": ""
  2852. },
  2853. "require": {
  2854. "hyperf/codec": "~3.1.0",
  2855. "hyperf/context": "~3.1.0",
  2856. "hyperf/contract": "~3.1.0",
  2857. "hyperf/engine": "^2.0",
  2858. "hyperf/http-message": "~3.1.0",
  2859. "hyperf/load-balancer": "~3.1.0",
  2860. "hyperf/rpc": "~3.1.0",
  2861. "hyperf/serializer": "~3.1.0",
  2862. "hyperf/support": "~3.1.0",
  2863. "hyperf/utils": "~3.1.0",
  2864. "php": ">=8.1",
  2865. "psr/container": "^1.0 || ^2.0",
  2866. "swow/psr7-plus": "^1.0"
  2867. },
  2868. "suggest": {
  2869. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2870. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2871. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2872. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2873. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2874. },
  2875. "type": "library",
  2876. "extra": {
  2877. "hyperf": {
  2878. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2879. },
  2880. "branch-alias": {
  2881. "dev-master": "3.1-dev"
  2882. }
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Hyperf\\JsonRpc\\": "src/"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2894. "homepage": "https://hyperf.io",
  2895. "keywords": [
  2896. "hyperf",
  2897. "json-rpc",
  2898. "php",
  2899. "swoole"
  2900. ],
  2901. "support": {
  2902. "docs": "https://hyperf.wiki",
  2903. "issues": "https://github.com/hyperf/hyperf/issues",
  2904. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2905. "source": "https://github.com/hyperf/hyperf"
  2906. },
  2907. "funding": [
  2908. {
  2909. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2910. "type": "custom"
  2911. },
  2912. {
  2913. "url": "https://opencollective.com/hyperf",
  2914. "type": "open_collective"
  2915. }
  2916. ],
  2917. "time": "2024-11-28T01:51:55+00:00"
  2918. },
  2919. {
  2920. "name": "hyperf/load-balancer",
  2921. "version": "v3.1.42",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/hyperf/load-balancer.git",
  2925. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2930. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "hyperf/coordinator": "~3.1.0",
  2935. "hyperf/coroutine": "~3.1.0",
  2936. "markrogoyski/math-php": "^2.0",
  2937. "php": ">=8.1",
  2938. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2939. },
  2940. "type": "library",
  2941. "extra": {
  2942. "hyperf": {
  2943. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2944. },
  2945. "branch-alias": {
  2946. "dev-master": "3.1-dev"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "Hyperf\\LoadBalancer\\": "src/"
  2952. }
  2953. },
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "description": "A load balancer library for Hyperf.",
  2959. "homepage": "https://hyperf.io",
  2960. "keywords": [
  2961. "hyperf",
  2962. "load-balancer",
  2963. "php",
  2964. "swoole"
  2965. ],
  2966. "support": {
  2967. "docs": "https://hyperf.wiki",
  2968. "issues": "https://github.com/hyperf/hyperf/issues",
  2969. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2970. "source": "https://github.com/hyperf/hyperf"
  2971. },
  2972. "funding": [
  2973. {
  2974. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://opencollective.com/hyperf",
  2979. "type": "open_collective"
  2980. }
  2981. ],
  2982. "time": "2024-09-25T02:54:12+00:00"
  2983. },
  2984. {
  2985. "name": "hyperf/logger",
  2986. "version": "v3.1.42",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/hyperf/logger.git",
  2990. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2995. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "hyperf/contract": "~3.1.0",
  3000. "hyperf/support": "~3.1.0",
  3001. "hyperf/utils": "~3.1.0",
  3002. "monolog/monolog": "^2.7 || ^3.1",
  3003. "php": ">=8.1",
  3004. "psr/container": "^1.0 || ^2.0",
  3005. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "hyperf": {
  3010. "config": "Hyperf\\Logger\\ConfigProvider"
  3011. },
  3012. "branch-alias": {
  3013. "dev-master": "3.1-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Hyperf\\Logger\\": "src/"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "description": "A logger component for hyperf.",
  3026. "homepage": "https://hyperf.io",
  3027. "keywords": [
  3028. "hyperf",
  3029. "logger",
  3030. "php"
  3031. ],
  3032. "support": {
  3033. "docs": "https://hyperf.wiki",
  3034. "issues": "https://github.com/hyperf/hyperf/issues",
  3035. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3036. "source": "https://github.com/hyperf/hyperf"
  3037. },
  3038. "funding": [
  3039. {
  3040. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3041. "type": "custom"
  3042. },
  3043. {
  3044. "url": "https://opencollective.com/hyperf",
  3045. "type": "open_collective"
  3046. }
  3047. ],
  3048. "time": "2024-09-25T02:54:12+00:00"
  3049. },
  3050. {
  3051. "name": "hyperf/macroable",
  3052. "version": "v3.1.42",
  3053. "source": {
  3054. "type": "git",
  3055. "url": "https://github.com/hyperf/macroable.git",
  3056. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3057. },
  3058. "dist": {
  3059. "type": "zip",
  3060. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3061. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3062. "shasum": ""
  3063. },
  3064. "require": {
  3065. "php": ">=8.1"
  3066. },
  3067. "type": "library",
  3068. "extra": {
  3069. "branch-alias": {
  3070. "dev-master": "3.1-dev"
  3071. }
  3072. },
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Hyperf\\Macroable\\": "src/"
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3083. "homepage": "https://hyperf.io",
  3084. "keywords": [
  3085. "hyperf",
  3086. "macroable",
  3087. "php",
  3088. "swoole"
  3089. ],
  3090. "support": {
  3091. "docs": "https://hyperf.wiki",
  3092. "issues": "https://github.com/hyperf/hyperf/issues",
  3093. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3094. "source": "https://github.com/hyperf/hyperf"
  3095. },
  3096. "funding": [
  3097. {
  3098. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3099. "type": "custom"
  3100. },
  3101. {
  3102. "url": "https://opencollective.com/hyperf",
  3103. "type": "open_collective"
  3104. }
  3105. ],
  3106. "time": "2024-09-25T02:54:12+00:00"
  3107. },
  3108. {
  3109. "name": "hyperf/memory",
  3110. "version": "v3.1.42",
  3111. "source": {
  3112. "type": "git",
  3113. "url": "https://github.com/hyperf/memory.git",
  3114. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3115. },
  3116. "dist": {
  3117. "type": "zip",
  3118. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3119. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3120. "shasum": ""
  3121. },
  3122. "require": {
  3123. "php": ">=8.1"
  3124. },
  3125. "type": "library",
  3126. "extra": {
  3127. "hyperf": {
  3128. "config": "Hyperf\\Memory\\ConfigProvider"
  3129. },
  3130. "branch-alias": {
  3131. "dev-master": "3.1-dev"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Hyperf\\Memory\\": "src/"
  3137. }
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "description": "An independent component that use to operate and manage memory.",
  3144. "homepage": "https://hyperf.io",
  3145. "keywords": [
  3146. "hyperf",
  3147. "memory",
  3148. "php",
  3149. "swoole"
  3150. ],
  3151. "support": {
  3152. "docs": "https://hyperf.wiki",
  3153. "issues": "https://github.com/hyperf/hyperf/issues",
  3154. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3155. "source": "https://github.com/hyperf/hyperf"
  3156. },
  3157. "funding": [
  3158. {
  3159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3160. "type": "custom"
  3161. },
  3162. {
  3163. "url": "https://opencollective.com/hyperf",
  3164. "type": "open_collective"
  3165. }
  3166. ],
  3167. "time": "2024-09-25T02:54:12+00:00"
  3168. },
  3169. {
  3170. "name": "hyperf/model-listener",
  3171. "version": "v3.1.42",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/hyperf/model-listener.git",
  3175. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3180. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3181. "shasum": ""
  3182. },
  3183. "require": {
  3184. "hyperf/contract": "~3.1.0",
  3185. "hyperf/database": "~3.1.0",
  3186. "hyperf/di": "~3.1.0",
  3187. "hyperf/event": "~3.1.0",
  3188. "hyperf/support": "~3.1.0",
  3189. "hyperf/utils": "~3.1.0",
  3190. "php": ">=8.1",
  3191. "psr/container": "^1.0 || ^2.0"
  3192. },
  3193. "type": "library",
  3194. "extra": {
  3195. "hyperf": {
  3196. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3197. },
  3198. "branch-alias": {
  3199. "dev-master": "3.1-dev"
  3200. }
  3201. },
  3202. "autoload": {
  3203. "psr-4": {
  3204. "Hyperf\\ModelListener\\": "src/"
  3205. }
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "description": "A model listener for Hyperf.",
  3212. "homepage": "https://hyperf.io",
  3213. "keywords": [
  3214. "hyperf",
  3215. "model-listener",
  3216. "php",
  3217. "swoole"
  3218. ],
  3219. "support": {
  3220. "docs": "https://hyperf.wiki",
  3221. "issues": "https://github.com/hyperf/hyperf/issues",
  3222. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3223. "source": "https://github.com/hyperf/hyperf"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3228. "type": "custom"
  3229. },
  3230. {
  3231. "url": "https://opencollective.com/hyperf",
  3232. "type": "open_collective"
  3233. }
  3234. ],
  3235. "time": "2024-09-25T02:54:12+00:00"
  3236. },
  3237. {
  3238. "name": "hyperf/nacos",
  3239. "version": "v3.1.42",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/hyperf/nacos.git",
  3243. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3248. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3249. "shasum": ""
  3250. },
  3251. "require": {
  3252. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3253. "hyperf/codec": "~3.1.0",
  3254. "hyperf/contract": "~3.1.0",
  3255. "hyperf/support": "~3.1.0",
  3256. "hyperf/utils": "~3.1.0",
  3257. "jetbrains/phpstorm-attributes": "^1.0",
  3258. "php": ">=8.1"
  3259. },
  3260. "type": "library",
  3261. "extra": {
  3262. "hyperf": {
  3263. "config": "Hyperf\\Nacos\\ConfigProvider"
  3264. },
  3265. "branch-alias": {
  3266. "dev-master": "3.1-dev"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Hyperf\\Nacos\\": "src/"
  3272. }
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "MIT"
  3277. ],
  3278. "description": "Nacos SDK",
  3279. "keywords": [
  3280. "hyperf",
  3281. "nacos",
  3282. "php"
  3283. ],
  3284. "support": {
  3285. "issues": "https://github.com/hyperf/nacos/issues",
  3286. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3287. },
  3288. "funding": [
  3289. {
  3290. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3291. "type": "custom"
  3292. },
  3293. {
  3294. "url": "https://opencollective.com/hyperf",
  3295. "type": "open_collective"
  3296. }
  3297. ],
  3298. "time": "2024-09-25T02:54:12+00:00"
  3299. },
  3300. {
  3301. "name": "hyperf/pipeline",
  3302. "version": "v3.1.42",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/hyperf/pipeline.git",
  3306. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3311. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "php": ">=8.1",
  3316. "psr/container": "^1.0 || ^2.0"
  3317. },
  3318. "type": "library",
  3319. "extra": {
  3320. "branch-alias": {
  3321. "dev-master": "3.1-dev"
  3322. }
  3323. },
  3324. "autoload": {
  3325. "psr-4": {
  3326. "Hyperf\\Pipeline\\": "src/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3334. "homepage": "https://hyperf.io",
  3335. "keywords": [
  3336. "hyperf",
  3337. "php",
  3338. "pipeline",
  3339. "swoole"
  3340. ],
  3341. "support": {
  3342. "docs": "https://hyperf.wiki",
  3343. "issues": "https://github.com/hyperf/hyperf/issues",
  3344. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3345. "source": "https://github.com/hyperf/hyperf"
  3346. },
  3347. "funding": [
  3348. {
  3349. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3350. "type": "custom"
  3351. },
  3352. {
  3353. "url": "https://opencollective.com/hyperf",
  3354. "type": "open_collective"
  3355. }
  3356. ],
  3357. "time": "2024-09-25T02:54:12+00:00"
  3358. },
  3359. {
  3360. "name": "hyperf/pool",
  3361. "version": "v3.1.42",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/hyperf/pool.git",
  3365. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3370. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "hyperf/contract": "~3.1.0",
  3375. "hyperf/support": "~3.1.0",
  3376. "hyperf/utils": "~3.1.0",
  3377. "php": ">=8.1",
  3378. "psr/container": "^1.0 || ^2.0"
  3379. },
  3380. "suggest": {
  3381. "psr/event-dispatcher": "Required to use events."
  3382. },
  3383. "type": "library",
  3384. "extra": {
  3385. "hyperf": {
  3386. "config": "Hyperf\\Pool\\ConfigProvider"
  3387. },
  3388. "branch-alias": {
  3389. "dev-master": "3.1-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "psr-4": {
  3394. "Hyperf\\Pool\\": "src/"
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "description": "An independent universal connection pool component.",
  3402. "homepage": "https://hyperf.io",
  3403. "keywords": [
  3404. "connection-pool",
  3405. "hyperf",
  3406. "php",
  3407. "swoole"
  3408. ],
  3409. "support": {
  3410. "docs": "https://hyperf.wiki",
  3411. "issues": "https://github.com/hyperf/hyperf/issues",
  3412. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3413. "source": "https://github.com/hyperf/hyperf"
  3414. },
  3415. "funding": [
  3416. {
  3417. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3418. "type": "custom"
  3419. },
  3420. {
  3421. "url": "https://opencollective.com/hyperf",
  3422. "type": "open_collective"
  3423. }
  3424. ],
  3425. "time": "2024-09-25T02:54:12+00:00"
  3426. },
  3427. {
  3428. "name": "hyperf/process",
  3429. "version": "v3.1.48",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "https://github.com/hyperf/process.git",
  3433. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3438. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3439. "shasum": ""
  3440. },
  3441. "require": {
  3442. "hyperf/contract": "~3.1.0",
  3443. "hyperf/support": "~3.1.0",
  3444. "hyperf/utils": "~3.1.0",
  3445. "php": ">=8.1",
  3446. "psr/container": "^1.0 || ^2.0",
  3447. "psr/event-dispatcher": "^1.0"
  3448. },
  3449. "suggest": {
  3450. "hyperf/di": "Required to use annotations.",
  3451. "hyperf/event": "Required to dump the message before and after process.",
  3452. "hyperf/framework": "Required to use BootProcessListener."
  3453. },
  3454. "type": "library",
  3455. "extra": {
  3456. "hyperf": {
  3457. "config": "Hyperf\\Process\\ConfigProvider"
  3458. },
  3459. "branch-alias": {
  3460. "dev-master": "3.1-dev"
  3461. }
  3462. },
  3463. "autoload": {
  3464. "psr-4": {
  3465. "Hyperf\\Process\\": "src/"
  3466. }
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "MIT"
  3471. ],
  3472. "description": "A process component for hyperf.",
  3473. "homepage": "https://hyperf.io",
  3474. "keywords": [
  3475. "hyperf",
  3476. "php",
  3477. "process"
  3478. ],
  3479. "support": {
  3480. "docs": "https://hyperf.wiki",
  3481. "issues": "https://github.com/hyperf/hyperf/issues",
  3482. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3483. "source": "https://github.com/hyperf/hyperf"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://opencollective.com/hyperf",
  3492. "type": "open_collective"
  3493. }
  3494. ],
  3495. "time": "2024-12-02T10:54:30+00:00"
  3496. },
  3497. {
  3498. "name": "hyperf/redis",
  3499. "version": "v3.1.42",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/hyperf/redis.git",
  3503. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3508. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "ext-redis": "^5.0 || ^6.0",
  3513. "hyperf/contract": "~3.1.0",
  3514. "hyperf/pool": "~3.1.0",
  3515. "hyperf/support": "~3.1.0",
  3516. "hyperf/tappable": "~3.1.0",
  3517. "hyperf/utils": "~3.1.0",
  3518. "php": ">=8.1",
  3519. "psr/container": "^1.0 || ^2.0"
  3520. },
  3521. "suggest": {
  3522. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3523. "hyperf/di": "Create the RedisPool via dependency injection."
  3524. },
  3525. "type": "library",
  3526. "extra": {
  3527. "hyperf": {
  3528. "config": "Hyperf\\Redis\\ConfigProvider"
  3529. },
  3530. "branch-alias": {
  3531. "dev-master": "3.1-dev"
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Hyperf\\Redis\\": "src/"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "description": "A redis component for hyperf.",
  3544. "homepage": "https://hyperf.io",
  3545. "keywords": [
  3546. "hyperf",
  3547. "php",
  3548. "pool",
  3549. "redis"
  3550. ],
  3551. "support": {
  3552. "docs": "https://hyperf.wiki",
  3553. "issues": "https://github.com/hyperf/hyperf/issues",
  3554. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3555. "source": "https://github.com/hyperf/hyperf"
  3556. },
  3557. "funding": [
  3558. {
  3559. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3560. "type": "custom"
  3561. },
  3562. {
  3563. "url": "https://opencollective.com/hyperf",
  3564. "type": "open_collective"
  3565. }
  3566. ],
  3567. "time": "2024-09-25T02:54:12+00:00"
  3568. },
  3569. {
  3570. "name": "hyperf/rpc",
  3571. "version": "v3.1.42",
  3572. "source": {
  3573. "type": "git",
  3574. "url": "https://github.com/hyperf/rpc.git",
  3575. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3576. },
  3577. "dist": {
  3578. "type": "zip",
  3579. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3580. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3581. "shasum": ""
  3582. },
  3583. "require": {
  3584. "hyperf/codec": "~3.1.0",
  3585. "hyperf/contract": "~3.1.0",
  3586. "hyperf/support": "~3.1.0",
  3587. "jetbrains/phpstorm-attributes": "^1.0",
  3588. "php": ">=8.1"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "hyperf": [],
  3593. "branch-alias": {
  3594. "dev-master": "3.1-dev"
  3595. }
  3596. },
  3597. "autoload": {
  3598. "psr-4": {
  3599. "Hyperf\\Rpc\\": "src/"
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "description": "A rpc basic library for Hyperf.",
  3607. "homepage": "https://hyperf.io",
  3608. "keywords": [
  3609. "hyperf",
  3610. "php",
  3611. "rpc",
  3612. "swoole"
  3613. ],
  3614. "support": {
  3615. "docs": "https://hyperf.wiki",
  3616. "issues": "https://github.com/hyperf/hyperf/issues",
  3617. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3618. "source": "https://github.com/hyperf/hyperf"
  3619. },
  3620. "funding": [
  3621. {
  3622. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3623. "type": "custom"
  3624. },
  3625. {
  3626. "url": "https://opencollective.com/hyperf",
  3627. "type": "open_collective"
  3628. }
  3629. ],
  3630. "time": "2024-09-25T02:54:12+00:00"
  3631. },
  3632. {
  3633. "name": "hyperf/rpc-server",
  3634. "version": "v3.1.42",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/hyperf/rpc-server.git",
  3638. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3643. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "hyperf/http-server": "~3.1.0",
  3648. "hyperf/rpc": "~3.1.0",
  3649. "php": ">=8.1"
  3650. },
  3651. "suggest": {
  3652. "hyperf/di": "Required to use annotations."
  3653. },
  3654. "type": "library",
  3655. "extra": {
  3656. "hyperf": {
  3657. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3658. },
  3659. "branch-alias": {
  3660. "dev-master": "3.1-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "psr-4": {
  3665. "Hyperf\\RpcServer\\": "src/"
  3666. }
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "description": "An abstract rpc server component for Hyperf.",
  3673. "homepage": "https://hyperf.io",
  3674. "keywords": [
  3675. "hyperf",
  3676. "php",
  3677. "rpc",
  3678. "rpc-server",
  3679. "swoole"
  3680. ],
  3681. "support": {
  3682. "docs": "https://hyperf.wiki",
  3683. "issues": "https://github.com/hyperf/hyperf/issues",
  3684. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3685. "source": "https://github.com/hyperf/hyperf"
  3686. },
  3687. "funding": [
  3688. {
  3689. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3690. "type": "custom"
  3691. },
  3692. {
  3693. "url": "https://opencollective.com/hyperf",
  3694. "type": "open_collective"
  3695. }
  3696. ],
  3697. "time": "2024-09-25T02:54:12+00:00"
  3698. },
  3699. {
  3700. "name": "hyperf/serializer",
  3701. "version": "v3.1.42",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/hyperf/serializer.git",
  3705. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3710. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "hyperf/contract": "~3.1.0",
  3715. "php": ">=8.1"
  3716. },
  3717. "suggest": {
  3718. "hyperf/di": "Required to use ExceptionNormalizer",
  3719. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3720. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "hyperf": {
  3725. "config": "Hyperf\\Serializer\\ConfigProvider"
  3726. },
  3727. "branch-alias": {
  3728. "dev-master": "3.1-dev"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Hyperf\\Serializer\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "description": "A serializer component for Hyperf.",
  3741. "homepage": "https://hyperf.io",
  3742. "keywords": [
  3743. "hyperf",
  3744. "php",
  3745. "swoole",
  3746. "tappable"
  3747. ],
  3748. "support": {
  3749. "docs": "https://hyperf.wiki",
  3750. "issues": "https://github.com/hyperf/hyperf/issues",
  3751. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3752. "source": "https://github.com/hyperf/hyperf"
  3753. },
  3754. "funding": [
  3755. {
  3756. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3757. "type": "custom"
  3758. },
  3759. {
  3760. "url": "https://opencollective.com/hyperf",
  3761. "type": "open_collective"
  3762. }
  3763. ],
  3764. "time": "2024-09-25T02:54:12+00:00"
  3765. },
  3766. {
  3767. "name": "hyperf/server",
  3768. "version": "v3.1.42",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/hyperf/server.git",
  3772. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3777. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "hyperf/contract": "~3.1.0",
  3782. "hyperf/coordinator": "~3.1.0",
  3783. "hyperf/engine": "^2.8",
  3784. "hyperf/support": "~3.1.0",
  3785. "hyperf/tappable": "~3.1.0",
  3786. "php": ">=8.1",
  3787. "psr/container": "^1.0 || ^2.0",
  3788. "psr/event-dispatcher": "^1.0",
  3789. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3790. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3791. },
  3792. "suggest": {
  3793. "hyperf/event": "Dump the info after server start.",
  3794. "hyperf/framework": "Dump the info after server start."
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "hyperf": {
  3799. "config": "Hyperf\\Server\\ConfigProvider"
  3800. },
  3801. "branch-alias": {
  3802. "dev-master": "3.1-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Hyperf\\Server\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "description": "A base server library for Hyperf.",
  3815. "homepage": "https://hyperf.io",
  3816. "keywords": [
  3817. "hyperf",
  3818. "php",
  3819. "server",
  3820. "swoole"
  3821. ],
  3822. "support": {
  3823. "docs": "https://hyperf.wiki",
  3824. "issues": "https://github.com/hyperf/hyperf/issues",
  3825. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3826. "source": "https://github.com/hyperf/hyperf"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://opencollective.com/hyperf",
  3835. "type": "open_collective"
  3836. }
  3837. ],
  3838. "time": "2024-09-25T02:54:12+00:00"
  3839. },
  3840. {
  3841. "name": "hyperf/service-governance",
  3842. "version": "v3.1.42",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/hyperf/service-governance.git",
  3846. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3851. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "hyperf/contract": "~3.1.0",
  3856. "hyperf/support": "~3.1.0",
  3857. "jetbrains/phpstorm-attributes": "^1.0",
  3858. "php": ">=8.1"
  3859. },
  3860. "suggest": {
  3861. "hyperf/event": "Required to use RegisterServiceListener.",
  3862. "hyperf/framework": "Required to use RegisterServiceListener.",
  3863. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3864. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3865. },
  3866. "type": "library",
  3867. "extra": {
  3868. "hyperf": {
  3869. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3870. },
  3871. "branch-alias": {
  3872. "dev-master": "3.1-dev"
  3873. }
  3874. },
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Hyperf\\ServiceGovernance\\": "src/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "description": "A service governance component for Hyperf.",
  3885. "homepage": "https://hyperf.io",
  3886. "keywords": [
  3887. "hyperf",
  3888. "php",
  3889. "service-governance",
  3890. "swoole"
  3891. ],
  3892. "support": {
  3893. "docs": "https://hyperf.wiki",
  3894. "issues": "https://github.com/hyperf/hyperf/issues",
  3895. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3896. "source": "https://github.com/hyperf/hyperf"
  3897. },
  3898. "funding": [
  3899. {
  3900. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3901. "type": "custom"
  3902. },
  3903. {
  3904. "url": "https://opencollective.com/hyperf",
  3905. "type": "open_collective"
  3906. }
  3907. ],
  3908. "time": "2024-09-25T02:54:12+00:00"
  3909. },
  3910. {
  3911. "name": "hyperf/service-governance-consul",
  3912. "version": "v3.1.42",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/hyperf/service-governance-consul.git",
  3916. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3921. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3922. "shasum": ""
  3923. },
  3924. "require": {
  3925. "hyperf/consul": "~3.1.0",
  3926. "hyperf/contract": "~3.1.0",
  3927. "hyperf/service-governance": "~3.1.0",
  3928. "hyperf/support": "~3.1.0",
  3929. "hyperf/utils": "~3.1.0",
  3930. "php": ">=8.1"
  3931. },
  3932. "type": "library",
  3933. "extra": {
  3934. "hyperf": {
  3935. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3936. },
  3937. "branch-alias": {
  3938. "dev-master": "3.1-dev"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "description": "A consul adapter for service governance.",
  3951. "homepage": "https://hyperf.io",
  3952. "keywords": [
  3953. "consul-adapter",
  3954. "hyperf",
  3955. "php",
  3956. "service-governance",
  3957. "swoole"
  3958. ],
  3959. "support": {
  3960. "docs": "https://hyperf.wiki",
  3961. "issues": "https://github.com/hyperf/hyperf/issues",
  3962. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3963. "source": "https://github.com/hyperf/hyperf"
  3964. },
  3965. "funding": [
  3966. {
  3967. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3968. "type": "custom"
  3969. },
  3970. {
  3971. "url": "https://opencollective.com/hyperf",
  3972. "type": "open_collective"
  3973. }
  3974. ],
  3975. "time": "2024-09-25T02:54:12+00:00"
  3976. },
  3977. {
  3978. "name": "hyperf/service-governance-nacos",
  3979. "version": "v3.1.42",
  3980. "source": {
  3981. "type": "git",
  3982. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3983. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3984. },
  3985. "dist": {
  3986. "type": "zip",
  3987. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3988. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3989. "shasum": ""
  3990. },
  3991. "require": {
  3992. "hyperf/codec": "~3.1.0",
  3993. "hyperf/contract": "~3.1.0",
  3994. "hyperf/nacos": "~3.1.0",
  3995. "hyperf/service-governance": "~3.1.0",
  3996. "hyperf/support": "~3.1.0",
  3997. "hyperf/utils": "~3.1.0",
  3998. "php": ">=8.1"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "hyperf": {
  4003. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4004. },
  4005. "branch-alias": {
  4006. "dev-master": "3.1-dev"
  4007. }
  4008. },
  4009. "autoload": {
  4010. "psr-4": {
  4011. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4012. }
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "description": "A nacos adapter for service governance.",
  4019. "homepage": "https://hyperf.io",
  4020. "keywords": [
  4021. "hyperf",
  4022. "nacos-adapter",
  4023. "php",
  4024. "service-governance",
  4025. "swoole"
  4026. ],
  4027. "support": {
  4028. "docs": "https://hyperf.wiki",
  4029. "issues": "https://github.com/hyperf/hyperf/issues",
  4030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4031. "source": "https://github.com/hyperf/hyperf"
  4032. },
  4033. "funding": [
  4034. {
  4035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4036. "type": "custom"
  4037. },
  4038. {
  4039. "url": "https://opencollective.com/hyperf",
  4040. "type": "open_collective"
  4041. }
  4042. ],
  4043. "time": "2024-09-25T02:54:12+00:00"
  4044. },
  4045. {
  4046. "name": "hyperf/stdlib",
  4047. "version": "v3.1.42",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/hyperf/stdlib.git",
  4051. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4056. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "php": ">=8.1"
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "3.1-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "Hyperf\\Stdlib\\": "src/"
  4071. }
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "MIT"
  4076. ],
  4077. "description": "A stdlib component for Hyperf.",
  4078. "homepage": "https://hyperf.io",
  4079. "keywords": [
  4080. "hyperf",
  4081. "php",
  4082. "stdlib",
  4083. "swoole"
  4084. ],
  4085. "support": {
  4086. "docs": "https://hyperf.wiki",
  4087. "issues": "https://github.com/hyperf/hyperf/issues",
  4088. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4089. "source": "https://github.com/hyperf/hyperf"
  4090. },
  4091. "funding": [
  4092. {
  4093. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4094. "type": "custom"
  4095. },
  4096. {
  4097. "url": "https://opencollective.com/hyperf",
  4098. "type": "open_collective"
  4099. }
  4100. ],
  4101. "time": "2024-09-25T02:54:12+00:00"
  4102. },
  4103. {
  4104. "name": "hyperf/stringable",
  4105. "version": "v3.1.43",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://github.com/hyperf/stringable.git",
  4109. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4114. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4115. "shasum": ""
  4116. },
  4117. "require": {
  4118. "ext-mbstring": "*",
  4119. "hyperf/collection": "~3.1.0",
  4120. "hyperf/conditionable": "~3.1.0",
  4121. "hyperf/macroable": "~3.1.0",
  4122. "hyperf/tappable": "~3.1.0",
  4123. "php": ">=8.1"
  4124. },
  4125. "suggest": {
  4126. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4127. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4128. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4129. },
  4130. "type": "library",
  4131. "extra": {
  4132. "branch-alias": {
  4133. "dev-master": "3.1-dev"
  4134. }
  4135. },
  4136. "autoload": {
  4137. "files": [
  4138. "src/Functions.php"
  4139. ],
  4140. "psr-4": {
  4141. "Hyperf\\Stringable\\": "src/"
  4142. }
  4143. },
  4144. "notification-url": "https://packagist.org/downloads/",
  4145. "license": [
  4146. "MIT"
  4147. ],
  4148. "description": "Hyperf Stringable package which come from illuminate/support",
  4149. "homepage": "https://hyperf.io",
  4150. "keywords": [
  4151. "hyperf",
  4152. "php",
  4153. "stringable",
  4154. "swoole"
  4155. ],
  4156. "support": {
  4157. "docs": "https://hyperf.wiki",
  4158. "issues": "https://github.com/hyperf/hyperf/issues",
  4159. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4160. "source": "https://github.com/hyperf/hyperf"
  4161. },
  4162. "funding": [
  4163. {
  4164. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4165. "type": "custom"
  4166. },
  4167. {
  4168. "url": "https://opencollective.com/hyperf",
  4169. "type": "open_collective"
  4170. }
  4171. ],
  4172. "time": "2024-10-09T02:28:40+00:00"
  4173. },
  4174. {
  4175. "name": "hyperf/support",
  4176. "version": "v3.1.47",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/hyperf/support.git",
  4180. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4185. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "hyperf/collection": "~3.1.0",
  4190. "hyperf/context": "~3.1.0",
  4191. "hyperf/contract": "~3.1.0",
  4192. "hyperf/coroutine": "~3.1.0",
  4193. "hyperf/macroable": "~3.1.0",
  4194. "hyperf/stringable": "~3.1.0",
  4195. "php": ">=8.1"
  4196. },
  4197. "suggest": {
  4198. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4199. },
  4200. "type": "library",
  4201. "extra": {
  4202. "branch-alias": {
  4203. "dev-master": "3.1-dev"
  4204. }
  4205. },
  4206. "autoload": {
  4207. "files": [
  4208. "src/Functions.php"
  4209. ],
  4210. "psr-4": {
  4211. "Hyperf\\Support\\": "src/"
  4212. }
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "description": "A support component for Hyperf.",
  4219. "homepage": "https://hyperf.io",
  4220. "keywords": [
  4221. "hyperf",
  4222. "php",
  4223. "support",
  4224. "swoole"
  4225. ],
  4226. "support": {
  4227. "docs": "https://hyperf.wiki",
  4228. "issues": "https://github.com/hyperf/hyperf/issues",
  4229. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4230. "source": "https://github.com/hyperf/hyperf"
  4231. },
  4232. "funding": [
  4233. {
  4234. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4235. "type": "custom"
  4236. },
  4237. {
  4238. "url": "https://opencollective.com/hyperf",
  4239. "type": "open_collective"
  4240. }
  4241. ],
  4242. "time": "2024-11-28T01:51:55+00:00"
  4243. },
  4244. {
  4245. "name": "hyperf/tappable",
  4246. "version": "v3.1.42",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/hyperf/tappable.git",
  4250. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4255. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "php": ">=8.1"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "3.1-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "files": [
  4269. "src/Functions.php"
  4270. ],
  4271. "psr-4": {
  4272. "Hyperf\\Tappable\\": "src/"
  4273. }
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "MIT"
  4278. ],
  4279. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4280. "homepage": "https://hyperf.io",
  4281. "keywords": [
  4282. "hyperf",
  4283. "php",
  4284. "swoole",
  4285. "tappable"
  4286. ],
  4287. "support": {
  4288. "docs": "https://hyperf.wiki",
  4289. "issues": "https://github.com/hyperf/hyperf/issues",
  4290. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4291. "source": "https://github.com/hyperf/hyperf"
  4292. },
  4293. "funding": [
  4294. {
  4295. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4296. "type": "custom"
  4297. },
  4298. {
  4299. "url": "https://opencollective.com/hyperf",
  4300. "type": "open_collective"
  4301. }
  4302. ],
  4303. "time": "2024-09-25T02:54:12+00:00"
  4304. },
  4305. {
  4306. "name": "hyperf/utils",
  4307. "version": "v3.1.42",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://github.com/hyperf/utils.git",
  4311. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4316. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4317. "shasum": ""
  4318. },
  4319. "require": {
  4320. "doctrine/inflector": "^2.0",
  4321. "hyperf/code-parser": "~3.1.0",
  4322. "hyperf/codec": "~3.1.0",
  4323. "hyperf/collection": "~3.1.0",
  4324. "hyperf/context": "~3.1.0",
  4325. "hyperf/contract": "~3.1.0",
  4326. "hyperf/coordinator": "~3.1.0",
  4327. "hyperf/coroutine": "~3.1.0",
  4328. "hyperf/engine": "^2.0",
  4329. "hyperf/macroable": "~3.1.0",
  4330. "hyperf/serializer": "~3.1.0",
  4331. "hyperf/stringable": "~3.1.0",
  4332. "hyperf/support": "~3.1.0",
  4333. "php": ">=8.1"
  4334. },
  4335. "type": "library",
  4336. "extra": {
  4337. "branch-alias": {
  4338. "dev-master": "3.1-dev"
  4339. }
  4340. },
  4341. "notification-url": "https://packagist.org/downloads/",
  4342. "license": [
  4343. "MIT"
  4344. ],
  4345. "description": "A tools package that could help developer solved the problem quickly.",
  4346. "homepage": "https://hyperf.io",
  4347. "keywords": [
  4348. "hyperf",
  4349. "php",
  4350. "swoole",
  4351. "utils"
  4352. ],
  4353. "support": {
  4354. "docs": "https://hyperf.wiki",
  4355. "issues": "https://github.com/hyperf/hyperf/issues",
  4356. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4357. "source": "https://github.com/hyperf/hyperf"
  4358. },
  4359. "funding": [
  4360. {
  4361. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4362. "type": "custom"
  4363. },
  4364. {
  4365. "url": "https://opencollective.com/hyperf",
  4366. "type": "open_collective"
  4367. }
  4368. ],
  4369. "time": "2024-09-25T02:54:12+00:00"
  4370. },
  4371. {
  4372. "name": "jaeger/g-http",
  4373. "version": "V2.0.1",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/jae-jae/GHttp.git",
  4377. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4382. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4383. "shasum": ""
  4384. },
  4385. "require": {
  4386. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4387. "php": ">=8.1",
  4388. "symfony/cache": "^6.4 || ^7.0"
  4389. },
  4390. "require-dev": {
  4391. "predis/predis": "^2.2"
  4392. },
  4393. "type": "library",
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Jaeger\\": "src"
  4397. }
  4398. },
  4399. "notification-url": "https://packagist.org/downloads/",
  4400. "license": [
  4401. "MIT"
  4402. ],
  4403. "authors": [
  4404. {
  4405. "name": "Jaeger",
  4406. "email": "JaegerCode@gmail.com"
  4407. }
  4408. ],
  4409. "description": "Simple Http client base on GuzzleHttp",
  4410. "support": {
  4411. "issues": "https://github.com/jae-jae/GHttp/issues",
  4412. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4413. },
  4414. "time": "2024-06-14T08:13:32+00:00"
  4415. },
  4416. {
  4417. "name": "jaeger/phpquery-single",
  4418. "version": "1.1.1",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4422. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4427. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4428. "shasum": ""
  4429. },
  4430. "require": {
  4431. "php": ">=5.3.0"
  4432. },
  4433. "type": "library",
  4434. "autoload": {
  4435. "classmap": [
  4436. "phpQuery.php"
  4437. ]
  4438. },
  4439. "notification-url": "https://packagist.org/downloads/",
  4440. "license": [
  4441. "MIT"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "Tobiasz Cudnik",
  4446. "email": "tobiasz.cudnik@gmail.com",
  4447. "homepage": "https://github.com/TobiaszCudnik",
  4448. "role": "Developer"
  4449. },
  4450. {
  4451. "name": "Jaeger",
  4452. "role": "Packager"
  4453. }
  4454. ],
  4455. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4456. "homepage": "http://code.google.com/p/phpquery/",
  4457. "support": {
  4458. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4459. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4460. },
  4461. "time": "2022-03-26T15:01:16+00:00"
  4462. },
  4463. {
  4464. "name": "jaeger/querylist",
  4465. "version": "V4.4.6",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/jae-jae/QueryList.git",
  4469. "reference": "939f4e41b94b4d3ef77071fb7f386abd2ceeb59a"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/939f4e41b94b4d3ef77071fb7f386abd2ceeb59a",
  4474. "reference": "939f4e41b94b4d3ef77071fb7f386abd2ceeb59a",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "ext-dom": "*",
  4479. "jaeger/g-http": "^2.0",
  4480. "jaeger/phpquery-single": "^1",
  4481. "php": ">=8.1",
  4482. "symfony/var-dumper": ">3.4"
  4483. },
  4484. "require-dev": {
  4485. "phpunit/phpunit": "^8.5"
  4486. },
  4487. "type": "library",
  4488. "autoload": {
  4489. "files": [
  4490. "src/Collect/Support/helpers.php",
  4491. "src/Collect/Support/alias.php"
  4492. ],
  4493. "psr-4": {
  4494. "QL\\": "src"
  4495. }
  4496. },
  4497. "notification-url": "https://packagist.org/downloads/",
  4498. "license": [
  4499. "MIT"
  4500. ],
  4501. "authors": [
  4502. {
  4503. "name": "Jaeger",
  4504. "email": "JaegerCode@gmail.com"
  4505. }
  4506. ],
  4507. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4508. "homepage": "http://querylist.cc",
  4509. "keywords": [
  4510. "QueryList",
  4511. "phpQuery",
  4512. "spider"
  4513. ],
  4514. "support": {
  4515. "issues": "https://github.com/jae-jae/QueryList/issues",
  4516. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.6"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://opencollective.com/querylist",
  4521. "type": "open_collective"
  4522. }
  4523. ],
  4524. "time": "2024-12-13T06:16:14+00:00"
  4525. },
  4526. {
  4527. "name": "jetbrains/phpstorm-attributes",
  4528. "version": "1.2",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4532. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4537. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4538. "shasum": ""
  4539. },
  4540. "type": "library",
  4541. "autoload": {
  4542. "psr-4": {
  4543. "JetBrains\\PhpStorm\\": "src/"
  4544. }
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "Apache-2.0"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "JetBrains",
  4553. "homepage": "https://www.jetbrains.com"
  4554. }
  4555. ],
  4556. "description": "PhpStorm specific attributes",
  4557. "keywords": [
  4558. "attributes",
  4559. "jetbrains",
  4560. "phpstorm"
  4561. ],
  4562. "support": {
  4563. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4564. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4565. },
  4566. "time": "2024-10-11T10:46:19+00:00"
  4567. },
  4568. {
  4569. "name": "laminas/laminas-mime",
  4570. "version": "2.12.0",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://github.com/laminas/laminas-mime.git",
  4574. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4579. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4580. "shasum": ""
  4581. },
  4582. "require": {
  4583. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4584. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4585. },
  4586. "conflict": {
  4587. "zendframework/zend-mime": "*"
  4588. },
  4589. "require-dev": {
  4590. "laminas/laminas-coding-standard": "~2.4.0",
  4591. "laminas/laminas-mail": "^2.19.0",
  4592. "phpunit/phpunit": "~9.5.25"
  4593. },
  4594. "suggest": {
  4595. "laminas/laminas-mail": "Laminas\\Mail component"
  4596. },
  4597. "type": "library",
  4598. "autoload": {
  4599. "psr-4": {
  4600. "Laminas\\Mime\\": "src/"
  4601. }
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "BSD-3-Clause"
  4606. ],
  4607. "description": "Create and parse MIME messages and parts",
  4608. "homepage": "https://laminas.dev",
  4609. "keywords": [
  4610. "laminas",
  4611. "mime"
  4612. ],
  4613. "support": {
  4614. "chat": "https://laminas.dev/chat",
  4615. "docs": "https://docs.laminas.dev/laminas-mime/",
  4616. "forum": "https://discourse.laminas.dev",
  4617. "issues": "https://github.com/laminas/laminas-mime/issues",
  4618. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4619. "source": "https://github.com/laminas/laminas-mime"
  4620. },
  4621. "funding": [
  4622. {
  4623. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4624. "type": "community_bridge"
  4625. }
  4626. ],
  4627. "abandoned": "symfony/mime",
  4628. "time": "2023-11-02T16:47:19+00:00"
  4629. },
  4630. {
  4631. "name": "laminas/laminas-stdlib",
  4632. "version": "3.20.0",
  4633. "source": {
  4634. "type": "git",
  4635. "url": "https://github.com/laminas/laminas-stdlib.git",
  4636. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4637. },
  4638. "dist": {
  4639. "type": "zip",
  4640. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4641. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4642. "shasum": ""
  4643. },
  4644. "require": {
  4645. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4646. },
  4647. "conflict": {
  4648. "zendframework/zend-stdlib": "*"
  4649. },
  4650. "require-dev": {
  4651. "laminas/laminas-coding-standard": "^3.0",
  4652. "phpbench/phpbench": "^1.3.1",
  4653. "phpunit/phpunit": "^10.5.38",
  4654. "psalm/plugin-phpunit": "^0.19.0",
  4655. "vimeo/psalm": "^5.26.1"
  4656. },
  4657. "type": "library",
  4658. "autoload": {
  4659. "psr-4": {
  4660. "Laminas\\Stdlib\\": "src/"
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "BSD-3-Clause"
  4666. ],
  4667. "description": "SPL extensions, array utilities, error handlers, and more",
  4668. "homepage": "https://laminas.dev",
  4669. "keywords": [
  4670. "laminas",
  4671. "stdlib"
  4672. ],
  4673. "support": {
  4674. "chat": "https://laminas.dev/chat",
  4675. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4676. "forum": "https://discourse.laminas.dev",
  4677. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4678. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4679. "source": "https://github.com/laminas/laminas-stdlib"
  4680. },
  4681. "funding": [
  4682. {
  4683. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4684. "type": "community_bridge"
  4685. }
  4686. ],
  4687. "time": "2024-10-29T13:46:07+00:00"
  4688. },
  4689. {
  4690. "name": "markrogoyski/math-php",
  4691. "version": "v2.10.0",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/markrogoyski/math-php.git",
  4695. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4700. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "ext-json": "*",
  4705. "php": ">=7.2.0"
  4706. },
  4707. "require-dev": {
  4708. "php-coveralls/php-coveralls": "^2.0",
  4709. "php-parallel-lint/php-parallel-lint": "^1.2",
  4710. "phploc/phploc": "*",
  4711. "phpmd/phpmd": "^2.6",
  4712. "phpstan/phpstan": "^1.10",
  4713. "phpunit/phpunit": "^8.5",
  4714. "squizlabs/php_codesniffer": "3.*"
  4715. },
  4716. "type": "library",
  4717. "autoload": {
  4718. "psr-4": {
  4719. "MathPHP\\": "src/"
  4720. }
  4721. },
  4722. "notification-url": "https://packagist.org/downloads/",
  4723. "license": [
  4724. "MIT"
  4725. ],
  4726. "authors": [
  4727. {
  4728. "name": "Mark Rogoyski",
  4729. "email": "mark@rogoyski.com",
  4730. "homepage": "https://github.com/markrogoyski",
  4731. "role": "Lead developer"
  4732. },
  4733. {
  4734. "name": "Kevin Nowaczyk",
  4735. "homepage": "https://github.com/Beakerboy",
  4736. "role": "Developer"
  4737. },
  4738. {
  4739. "name": "MathPHP Community of Contributors",
  4740. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4741. }
  4742. ],
  4743. "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",
  4744. "homepage": "https://github.com/markrogoyski/math-php/",
  4745. "keywords": [
  4746. "algebra",
  4747. "combinatorics",
  4748. "distributions",
  4749. "linear algebra",
  4750. "math",
  4751. "mathematics",
  4752. "matrix",
  4753. "numerical analysis",
  4754. "probability",
  4755. "regressions",
  4756. "statistics"
  4757. ],
  4758. "support": {
  4759. "issues": "https://github.com/markrogoyski/math-php/issues",
  4760. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4761. },
  4762. "time": "2024-04-17T00:09:51+00:00"
  4763. },
  4764. {
  4765. "name": "monolog/monolog",
  4766. "version": "3.8.1",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/Seldaek/monolog.git",
  4770. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4775. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4776. "shasum": ""
  4777. },
  4778. "require": {
  4779. "php": ">=8.1",
  4780. "psr/log": "^2.0 || ^3.0"
  4781. },
  4782. "provide": {
  4783. "psr/log-implementation": "3.0.0"
  4784. },
  4785. "require-dev": {
  4786. "aws/aws-sdk-php": "^3.0",
  4787. "doctrine/couchdb": "~1.0@dev",
  4788. "elasticsearch/elasticsearch": "^7 || ^8",
  4789. "ext-json": "*",
  4790. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4791. "guzzlehttp/guzzle": "^7.4.5",
  4792. "guzzlehttp/psr7": "^2.2",
  4793. "mongodb/mongodb": "^1.8",
  4794. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4795. "php-console/php-console": "^3.1.8",
  4796. "phpstan/phpstan": "^2",
  4797. "phpstan/phpstan-deprecation-rules": "^2",
  4798. "phpstan/phpstan-strict-rules": "^2",
  4799. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4800. "predis/predis": "^1.1 || ^2",
  4801. "rollbar/rollbar": "^4.0",
  4802. "ruflin/elastica": "^7 || ^8",
  4803. "symfony/mailer": "^5.4 || ^6",
  4804. "symfony/mime": "^5.4 || ^6"
  4805. },
  4806. "suggest": {
  4807. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4808. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4809. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4810. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4811. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4812. "ext-mbstring": "Allow to work properly with unicode symbols",
  4813. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4814. "ext-openssl": "Required to send log messages using SSL",
  4815. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4816. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4817. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4818. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4819. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4820. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4821. },
  4822. "type": "library",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-main": "3.x-dev"
  4826. }
  4827. },
  4828. "autoload": {
  4829. "psr-4": {
  4830. "Monolog\\": "src/Monolog"
  4831. }
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "MIT"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Jordi Boggiano",
  4840. "email": "j.boggiano@seld.be",
  4841. "homepage": "https://seld.be"
  4842. }
  4843. ],
  4844. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4845. "homepage": "https://github.com/Seldaek/monolog",
  4846. "keywords": [
  4847. "log",
  4848. "logging",
  4849. "psr-3"
  4850. ],
  4851. "support": {
  4852. "issues": "https://github.com/Seldaek/monolog/issues",
  4853. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4854. },
  4855. "funding": [
  4856. {
  4857. "url": "https://github.com/Seldaek",
  4858. "type": "github"
  4859. },
  4860. {
  4861. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4862. "type": "tidelift"
  4863. }
  4864. ],
  4865. "time": "2024-12-05T17:15:07+00:00"
  4866. },
  4867. {
  4868. "name": "nesbot/carbon",
  4869. "version": "2.72.5",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/briannesbitt/Carbon.git",
  4873. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4878. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "carbonphp/carbon-doctrine-types": "*",
  4883. "ext-json": "*",
  4884. "php": "^7.1.8 || ^8.0",
  4885. "psr/clock": "^1.0",
  4886. "symfony/polyfill-mbstring": "^1.0",
  4887. "symfony/polyfill-php80": "^1.16",
  4888. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4889. },
  4890. "provide": {
  4891. "psr/clock-implementation": "1.0"
  4892. },
  4893. "require-dev": {
  4894. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4895. "doctrine/orm": "^2.7 || ^3.0",
  4896. "friendsofphp/php-cs-fixer": "^3.0",
  4897. "kylekatarnls/multi-tester": "^2.0",
  4898. "ondrejmirtes/better-reflection": "*",
  4899. "phpmd/phpmd": "^2.9",
  4900. "phpstan/extension-installer": "^1.0",
  4901. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4902. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4903. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4904. "squizlabs/php_codesniffer": "^3.4"
  4905. },
  4906. "bin": [
  4907. "bin/carbon"
  4908. ],
  4909. "type": "library",
  4910. "extra": {
  4911. "laravel": {
  4912. "providers": [
  4913. "Carbon\\Laravel\\ServiceProvider"
  4914. ]
  4915. },
  4916. "phpstan": {
  4917. "includes": [
  4918. "extension.neon"
  4919. ]
  4920. },
  4921. "branch-alias": {
  4922. "dev-2.x": "2.x-dev",
  4923. "dev-master": "3.x-dev"
  4924. }
  4925. },
  4926. "autoload": {
  4927. "psr-4": {
  4928. "Carbon\\": "src/Carbon/"
  4929. }
  4930. },
  4931. "notification-url": "https://packagist.org/downloads/",
  4932. "license": [
  4933. "MIT"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "Brian Nesbitt",
  4938. "email": "brian@nesbot.com",
  4939. "homepage": "https://markido.com"
  4940. },
  4941. {
  4942. "name": "kylekatarnls",
  4943. "homepage": "https://github.com/kylekatarnls"
  4944. }
  4945. ],
  4946. "description": "An API extension for DateTime that supports 281 different languages.",
  4947. "homepage": "https://carbon.nesbot.com",
  4948. "keywords": [
  4949. "date",
  4950. "datetime",
  4951. "time"
  4952. ],
  4953. "support": {
  4954. "docs": "https://carbon.nesbot.com/docs",
  4955. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4956. "source": "https://github.com/briannesbitt/Carbon"
  4957. },
  4958. "funding": [
  4959. {
  4960. "url": "https://github.com/sponsors/kylekatarnls",
  4961. "type": "github"
  4962. },
  4963. {
  4964. "url": "https://opencollective.com/Carbon#sponsor",
  4965. "type": "opencollective"
  4966. },
  4967. {
  4968. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4969. "type": "tidelift"
  4970. }
  4971. ],
  4972. "time": "2024-06-03T19:18:41+00:00"
  4973. },
  4974. {
  4975. "name": "nikic/fast-route",
  4976. "version": "v1.3.0",
  4977. "source": {
  4978. "type": "git",
  4979. "url": "https://github.com/nikic/FastRoute.git",
  4980. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4981. },
  4982. "dist": {
  4983. "type": "zip",
  4984. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4985. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4986. "shasum": ""
  4987. },
  4988. "require": {
  4989. "php": ">=5.4.0"
  4990. },
  4991. "require-dev": {
  4992. "phpunit/phpunit": "^4.8.35|~5.7"
  4993. },
  4994. "type": "library",
  4995. "autoload": {
  4996. "files": [
  4997. "src/functions.php"
  4998. ],
  4999. "psr-4": {
  5000. "FastRoute\\": "src/"
  5001. }
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "BSD-3-Clause"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Nikita Popov",
  5010. "email": "nikic@php.net"
  5011. }
  5012. ],
  5013. "description": "Fast request router for PHP",
  5014. "keywords": [
  5015. "router",
  5016. "routing"
  5017. ],
  5018. "support": {
  5019. "issues": "https://github.com/nikic/FastRoute/issues",
  5020. "source": "https://github.com/nikic/FastRoute/tree/master"
  5021. },
  5022. "time": "2018-02-13T20:26:39+00:00"
  5023. },
  5024. {
  5025. "name": "nikic/php-parser",
  5026. "version": "v4.19.4",
  5027. "source": {
  5028. "type": "git",
  5029. "url": "https://github.com/nikic/PHP-Parser.git",
  5030. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5031. },
  5032. "dist": {
  5033. "type": "zip",
  5034. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5035. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5036. "shasum": ""
  5037. },
  5038. "require": {
  5039. "ext-tokenizer": "*",
  5040. "php": ">=7.1"
  5041. },
  5042. "require-dev": {
  5043. "ircmaxell/php-yacc": "^0.0.7",
  5044. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5045. },
  5046. "bin": [
  5047. "bin/php-parse"
  5048. ],
  5049. "type": "library",
  5050. "extra": {
  5051. "branch-alias": {
  5052. "dev-master": "4.9-dev"
  5053. }
  5054. },
  5055. "autoload": {
  5056. "psr-4": {
  5057. "PhpParser\\": "lib/PhpParser"
  5058. }
  5059. },
  5060. "notification-url": "https://packagist.org/downloads/",
  5061. "license": [
  5062. "BSD-3-Clause"
  5063. ],
  5064. "authors": [
  5065. {
  5066. "name": "Nikita Popov"
  5067. }
  5068. ],
  5069. "description": "A PHP parser written in PHP",
  5070. "keywords": [
  5071. "parser",
  5072. "php"
  5073. ],
  5074. "support": {
  5075. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5076. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5077. },
  5078. "time": "2024-09-29T15:01:53+00:00"
  5079. },
  5080. {
  5081. "name": "paragonie/constant_time_encoding",
  5082. "version": "v3.0.0",
  5083. "source": {
  5084. "type": "git",
  5085. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5086. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5087. },
  5088. "dist": {
  5089. "type": "zip",
  5090. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5091. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5092. "shasum": ""
  5093. },
  5094. "require": {
  5095. "php": "^8"
  5096. },
  5097. "require-dev": {
  5098. "phpunit/phpunit": "^9",
  5099. "vimeo/psalm": "^4|^5"
  5100. },
  5101. "type": "library",
  5102. "autoload": {
  5103. "psr-4": {
  5104. "ParagonIE\\ConstantTime\\": "src/"
  5105. }
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "MIT"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Paragon Initiative Enterprises",
  5114. "email": "security@paragonie.com",
  5115. "homepage": "https://paragonie.com",
  5116. "role": "Maintainer"
  5117. },
  5118. {
  5119. "name": "Steve 'Sc00bz' Thomas",
  5120. "email": "steve@tobtu.com",
  5121. "homepage": "https://www.tobtu.com",
  5122. "role": "Original Developer"
  5123. }
  5124. ],
  5125. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5126. "keywords": [
  5127. "base16",
  5128. "base32",
  5129. "base32_decode",
  5130. "base32_encode",
  5131. "base64",
  5132. "base64_decode",
  5133. "base64_encode",
  5134. "bin2hex",
  5135. "encoding",
  5136. "hex",
  5137. "hex2bin",
  5138. "rfc4648"
  5139. ],
  5140. "support": {
  5141. "email": "info@paragonie.com",
  5142. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5143. "source": "https://github.com/paragonie/constant_time_encoding"
  5144. },
  5145. "time": "2024-05-08T12:36:18+00:00"
  5146. },
  5147. {
  5148. "name": "paragonie/random_compat",
  5149. "version": "v9.99.100",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/paragonie/random_compat.git",
  5153. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5158. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "php": ">= 7"
  5163. },
  5164. "require-dev": {
  5165. "phpunit/phpunit": "4.*|5.*",
  5166. "vimeo/psalm": "^1"
  5167. },
  5168. "suggest": {
  5169. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5170. },
  5171. "type": "library",
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "MIT"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Paragon Initiative Enterprises",
  5179. "email": "security@paragonie.com",
  5180. "homepage": "https://paragonie.com"
  5181. }
  5182. ],
  5183. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5184. "keywords": [
  5185. "csprng",
  5186. "polyfill",
  5187. "pseudorandom",
  5188. "random"
  5189. ],
  5190. "support": {
  5191. "email": "info@paragonie.com",
  5192. "issues": "https://github.com/paragonie/random_compat/issues",
  5193. "source": "https://github.com/paragonie/random_compat"
  5194. },
  5195. "time": "2020-10-15T08:29:30+00:00"
  5196. },
  5197. {
  5198. "name": "php-amqplib/php-amqplib",
  5199. "version": "v3.7.2",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5203. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5208. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "ext-mbstring": "*",
  5213. "ext-sockets": "*",
  5214. "php": "^7.2||^8.0",
  5215. "phpseclib/phpseclib": "^2.0|^3.0"
  5216. },
  5217. "conflict": {
  5218. "php": "7.4.0 - 7.4.1"
  5219. },
  5220. "replace": {
  5221. "videlalvaro/php-amqplib": "self.version"
  5222. },
  5223. "require-dev": {
  5224. "ext-curl": "*",
  5225. "nategood/httpful": "^0.2.20",
  5226. "phpunit/phpunit": "^7.5|^9.5",
  5227. "squizlabs/php_codesniffer": "^3.6"
  5228. },
  5229. "type": "library",
  5230. "extra": {
  5231. "branch-alias": {
  5232. "dev-master": "3.0-dev"
  5233. }
  5234. },
  5235. "autoload": {
  5236. "psr-4": {
  5237. "PhpAmqpLib\\": "PhpAmqpLib/"
  5238. }
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "LGPL-2.1-or-later"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Alvaro Videla",
  5247. "role": "Original Maintainer"
  5248. },
  5249. {
  5250. "name": "Raúl Araya",
  5251. "email": "nubeiro@gmail.com",
  5252. "role": "Maintainer"
  5253. },
  5254. {
  5255. "name": "Luke Bakken",
  5256. "email": "luke@bakken.io",
  5257. "role": "Maintainer"
  5258. },
  5259. {
  5260. "name": "Ramūnas Dronga",
  5261. "email": "github@ramuno.lt",
  5262. "role": "Maintainer"
  5263. }
  5264. ],
  5265. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5266. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5267. "keywords": [
  5268. "message",
  5269. "queue",
  5270. "rabbitmq"
  5271. ],
  5272. "support": {
  5273. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5274. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5275. },
  5276. "time": "2024-11-21T09:21:41+00:00"
  5277. },
  5278. {
  5279. "name": "php-di/phpdoc-reader",
  5280. "version": "2.2.1",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5284. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5289. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "php": ">=7.2.0"
  5294. },
  5295. "require-dev": {
  5296. "mnapoli/hard-mode": "~0.3.0",
  5297. "phpunit/phpunit": "^8.5|^9.0"
  5298. },
  5299. "type": "library",
  5300. "autoload": {
  5301. "psr-4": {
  5302. "PhpDocReader\\": "src/PhpDocReader"
  5303. }
  5304. },
  5305. "notification-url": "https://packagist.org/downloads/",
  5306. "license": [
  5307. "MIT"
  5308. ],
  5309. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5310. "keywords": [
  5311. "phpdoc",
  5312. "reflection"
  5313. ],
  5314. "support": {
  5315. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5316. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5317. },
  5318. "time": "2020-10-12T12:39:22+00:00"
  5319. },
  5320. {
  5321. "name": "phpoption/phpoption",
  5322. "version": "1.9.3",
  5323. "source": {
  5324. "type": "git",
  5325. "url": "https://github.com/schmittjoh/php-option.git",
  5326. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5327. },
  5328. "dist": {
  5329. "type": "zip",
  5330. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5331. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5332. "shasum": ""
  5333. },
  5334. "require": {
  5335. "php": "^7.2.5 || ^8.0"
  5336. },
  5337. "require-dev": {
  5338. "bamarni/composer-bin-plugin": "^1.8.2",
  5339. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5340. },
  5341. "type": "library",
  5342. "extra": {
  5343. "bamarni-bin": {
  5344. "bin-links": true,
  5345. "forward-command": false
  5346. },
  5347. "branch-alias": {
  5348. "dev-master": "1.9-dev"
  5349. }
  5350. },
  5351. "autoload": {
  5352. "psr-4": {
  5353. "PhpOption\\": "src/PhpOption/"
  5354. }
  5355. },
  5356. "notification-url": "https://packagist.org/downloads/",
  5357. "license": [
  5358. "Apache-2.0"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Johannes M. Schmitt",
  5363. "email": "schmittjoh@gmail.com",
  5364. "homepage": "https://github.com/schmittjoh"
  5365. },
  5366. {
  5367. "name": "Graham Campbell",
  5368. "email": "hello@gjcampbell.co.uk",
  5369. "homepage": "https://github.com/GrahamCampbell"
  5370. }
  5371. ],
  5372. "description": "Option Type for PHP",
  5373. "keywords": [
  5374. "language",
  5375. "option",
  5376. "php",
  5377. "type"
  5378. ],
  5379. "support": {
  5380. "issues": "https://github.com/schmittjoh/php-option/issues",
  5381. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5382. },
  5383. "funding": [
  5384. {
  5385. "url": "https://github.com/GrahamCampbell",
  5386. "type": "github"
  5387. },
  5388. {
  5389. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5390. "type": "tidelift"
  5391. }
  5392. ],
  5393. "time": "2024-07-20T21:41:07+00:00"
  5394. },
  5395. {
  5396. "name": "phpseclib/phpseclib",
  5397. "version": "3.0.43",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/phpseclib/phpseclib.git",
  5401. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5406. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "paragonie/constant_time_encoding": "^1|^2|^3",
  5411. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5412. "php": ">=5.6.1"
  5413. },
  5414. "require-dev": {
  5415. "phpunit/phpunit": "*"
  5416. },
  5417. "suggest": {
  5418. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5419. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5420. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5421. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5422. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5423. },
  5424. "type": "library",
  5425. "autoload": {
  5426. "files": [
  5427. "phpseclib/bootstrap.php"
  5428. ],
  5429. "psr-4": {
  5430. "phpseclib3\\": "phpseclib/"
  5431. }
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "MIT"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Jim Wigginton",
  5440. "email": "terrafrost@php.net",
  5441. "role": "Lead Developer"
  5442. },
  5443. {
  5444. "name": "Patrick Monnerat",
  5445. "email": "pm@datasphere.ch",
  5446. "role": "Developer"
  5447. },
  5448. {
  5449. "name": "Andreas Fischer",
  5450. "email": "bantu@phpbb.com",
  5451. "role": "Developer"
  5452. },
  5453. {
  5454. "name": "Hans-Jürgen Petrich",
  5455. "email": "petrich@tronic-media.com",
  5456. "role": "Developer"
  5457. },
  5458. {
  5459. "name": "Graham Campbell",
  5460. "email": "graham@alt-three.com",
  5461. "role": "Developer"
  5462. }
  5463. ],
  5464. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5465. "homepage": "http://phpseclib.sourceforge.net",
  5466. "keywords": [
  5467. "BigInteger",
  5468. "aes",
  5469. "asn.1",
  5470. "asn1",
  5471. "blowfish",
  5472. "crypto",
  5473. "cryptography",
  5474. "encryption",
  5475. "rsa",
  5476. "security",
  5477. "sftp",
  5478. "signature",
  5479. "signing",
  5480. "ssh",
  5481. "twofish",
  5482. "x.509",
  5483. "x509"
  5484. ],
  5485. "support": {
  5486. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5487. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5488. },
  5489. "funding": [
  5490. {
  5491. "url": "https://github.com/terrafrost",
  5492. "type": "github"
  5493. },
  5494. {
  5495. "url": "https://www.patreon.com/phpseclib",
  5496. "type": "patreon"
  5497. },
  5498. {
  5499. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5500. "type": "tidelift"
  5501. }
  5502. ],
  5503. "time": "2024-12-14T21:12:59+00:00"
  5504. },
  5505. {
  5506. "name": "psr/cache",
  5507. "version": "3.0.0",
  5508. "source": {
  5509. "type": "git",
  5510. "url": "https://github.com/php-fig/cache.git",
  5511. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5512. },
  5513. "dist": {
  5514. "type": "zip",
  5515. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5516. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5517. "shasum": ""
  5518. },
  5519. "require": {
  5520. "php": ">=8.0.0"
  5521. },
  5522. "type": "library",
  5523. "extra": {
  5524. "branch-alias": {
  5525. "dev-master": "1.0.x-dev"
  5526. }
  5527. },
  5528. "autoload": {
  5529. "psr-4": {
  5530. "Psr\\Cache\\": "src/"
  5531. }
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "PHP-FIG",
  5540. "homepage": "https://www.php-fig.org/"
  5541. }
  5542. ],
  5543. "description": "Common interface for caching libraries",
  5544. "keywords": [
  5545. "cache",
  5546. "psr",
  5547. "psr-6"
  5548. ],
  5549. "support": {
  5550. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5551. },
  5552. "time": "2021-02-03T23:26:27+00:00"
  5553. },
  5554. {
  5555. "name": "psr/clock",
  5556. "version": "1.0.0",
  5557. "source": {
  5558. "type": "git",
  5559. "url": "https://github.com/php-fig/clock.git",
  5560. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5561. },
  5562. "dist": {
  5563. "type": "zip",
  5564. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5565. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5566. "shasum": ""
  5567. },
  5568. "require": {
  5569. "php": "^7.0 || ^8.0"
  5570. },
  5571. "type": "library",
  5572. "autoload": {
  5573. "psr-4": {
  5574. "Psr\\Clock\\": "src/"
  5575. }
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "PHP-FIG",
  5584. "homepage": "https://www.php-fig.org/"
  5585. }
  5586. ],
  5587. "description": "Common interface for reading the clock.",
  5588. "homepage": "https://github.com/php-fig/clock",
  5589. "keywords": [
  5590. "clock",
  5591. "now",
  5592. "psr",
  5593. "psr-20",
  5594. "time"
  5595. ],
  5596. "support": {
  5597. "issues": "https://github.com/php-fig/clock/issues",
  5598. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5599. },
  5600. "time": "2022-11-25T14:36:26+00:00"
  5601. },
  5602. {
  5603. "name": "psr/container",
  5604. "version": "2.0.2",
  5605. "source": {
  5606. "type": "git",
  5607. "url": "https://github.com/php-fig/container.git",
  5608. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5609. },
  5610. "dist": {
  5611. "type": "zip",
  5612. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5613. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5614. "shasum": ""
  5615. },
  5616. "require": {
  5617. "php": ">=7.4.0"
  5618. },
  5619. "type": "library",
  5620. "extra": {
  5621. "branch-alias": {
  5622. "dev-master": "2.0.x-dev"
  5623. }
  5624. },
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Psr\\Container\\": "src/"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "MIT"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "PHP-FIG",
  5637. "homepage": "https://www.php-fig.org/"
  5638. }
  5639. ],
  5640. "description": "Common Container Interface (PHP FIG PSR-11)",
  5641. "homepage": "https://github.com/php-fig/container",
  5642. "keywords": [
  5643. "PSR-11",
  5644. "container",
  5645. "container-interface",
  5646. "container-interop",
  5647. "psr"
  5648. ],
  5649. "support": {
  5650. "issues": "https://github.com/php-fig/container/issues",
  5651. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5652. },
  5653. "time": "2021-11-05T16:47:00+00:00"
  5654. },
  5655. {
  5656. "name": "psr/event-dispatcher",
  5657. "version": "1.0.0",
  5658. "source": {
  5659. "type": "git",
  5660. "url": "https://github.com/php-fig/event-dispatcher.git",
  5661. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5662. },
  5663. "dist": {
  5664. "type": "zip",
  5665. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5666. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5667. "shasum": ""
  5668. },
  5669. "require": {
  5670. "php": ">=7.2.0"
  5671. },
  5672. "type": "library",
  5673. "extra": {
  5674. "branch-alias": {
  5675. "dev-master": "1.0.x-dev"
  5676. }
  5677. },
  5678. "autoload": {
  5679. "psr-4": {
  5680. "Psr\\EventDispatcher\\": "src/"
  5681. }
  5682. },
  5683. "notification-url": "https://packagist.org/downloads/",
  5684. "license": [
  5685. "MIT"
  5686. ],
  5687. "authors": [
  5688. {
  5689. "name": "PHP-FIG",
  5690. "homepage": "http://www.php-fig.org/"
  5691. }
  5692. ],
  5693. "description": "Standard interfaces for event handling.",
  5694. "keywords": [
  5695. "events",
  5696. "psr",
  5697. "psr-14"
  5698. ],
  5699. "support": {
  5700. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5701. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5702. },
  5703. "time": "2019-01-08T18:20:26+00:00"
  5704. },
  5705. {
  5706. "name": "psr/http-client",
  5707. "version": "1.0.3",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/php-fig/http-client.git",
  5711. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5716. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "php": "^7.0 || ^8.0",
  5721. "psr/http-message": "^1.0 || ^2.0"
  5722. },
  5723. "type": "library",
  5724. "extra": {
  5725. "branch-alias": {
  5726. "dev-master": "1.0.x-dev"
  5727. }
  5728. },
  5729. "autoload": {
  5730. "psr-4": {
  5731. "Psr\\Http\\Client\\": "src/"
  5732. }
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "PHP-FIG",
  5741. "homepage": "https://www.php-fig.org/"
  5742. }
  5743. ],
  5744. "description": "Common interface for HTTP clients",
  5745. "homepage": "https://github.com/php-fig/http-client",
  5746. "keywords": [
  5747. "http",
  5748. "http-client",
  5749. "psr",
  5750. "psr-18"
  5751. ],
  5752. "support": {
  5753. "source": "https://github.com/php-fig/http-client"
  5754. },
  5755. "time": "2023-09-23T14:17:50+00:00"
  5756. },
  5757. {
  5758. "name": "psr/http-factory",
  5759. "version": "1.1.0",
  5760. "source": {
  5761. "type": "git",
  5762. "url": "https://github.com/php-fig/http-factory.git",
  5763. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5764. },
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5768. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5769. "shasum": ""
  5770. },
  5771. "require": {
  5772. "php": ">=7.1",
  5773. "psr/http-message": "^1.0 || ^2.0"
  5774. },
  5775. "type": "library",
  5776. "extra": {
  5777. "branch-alias": {
  5778. "dev-master": "1.0.x-dev"
  5779. }
  5780. },
  5781. "autoload": {
  5782. "psr-4": {
  5783. "Psr\\Http\\Message\\": "src/"
  5784. }
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "PHP-FIG",
  5793. "homepage": "https://www.php-fig.org/"
  5794. }
  5795. ],
  5796. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5797. "keywords": [
  5798. "factory",
  5799. "http",
  5800. "message",
  5801. "psr",
  5802. "psr-17",
  5803. "psr-7",
  5804. "request",
  5805. "response"
  5806. ],
  5807. "support": {
  5808. "source": "https://github.com/php-fig/http-factory"
  5809. },
  5810. "time": "2024-04-15T12:06:14+00:00"
  5811. },
  5812. {
  5813. "name": "psr/http-message",
  5814. "version": "2.0",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/php-fig/http-message.git",
  5818. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5823. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5824. "shasum": ""
  5825. },
  5826. "require": {
  5827. "php": "^7.2 || ^8.0"
  5828. },
  5829. "type": "library",
  5830. "extra": {
  5831. "branch-alias": {
  5832. "dev-master": "2.0.x-dev"
  5833. }
  5834. },
  5835. "autoload": {
  5836. "psr-4": {
  5837. "Psr\\Http\\Message\\": "src/"
  5838. }
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "PHP-FIG",
  5847. "homepage": "https://www.php-fig.org/"
  5848. }
  5849. ],
  5850. "description": "Common interface for HTTP messages",
  5851. "homepage": "https://github.com/php-fig/http-message",
  5852. "keywords": [
  5853. "http",
  5854. "http-message",
  5855. "psr",
  5856. "psr-7",
  5857. "request",
  5858. "response"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5862. },
  5863. "time": "2023-04-04T09:54:51+00:00"
  5864. },
  5865. {
  5866. "name": "psr/http-server-handler",
  5867. "version": "1.0.2",
  5868. "source": {
  5869. "type": "git",
  5870. "url": "https://github.com/php-fig/http-server-handler.git",
  5871. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5872. },
  5873. "dist": {
  5874. "type": "zip",
  5875. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5876. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5877. "shasum": ""
  5878. },
  5879. "require": {
  5880. "php": ">=7.0",
  5881. "psr/http-message": "^1.0 || ^2.0"
  5882. },
  5883. "type": "library",
  5884. "extra": {
  5885. "branch-alias": {
  5886. "dev-master": "1.0.x-dev"
  5887. }
  5888. },
  5889. "autoload": {
  5890. "psr-4": {
  5891. "Psr\\Http\\Server\\": "src/"
  5892. }
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "PHP-FIG",
  5901. "homepage": "https://www.php-fig.org/"
  5902. }
  5903. ],
  5904. "description": "Common interface for HTTP server-side request handler",
  5905. "keywords": [
  5906. "handler",
  5907. "http",
  5908. "http-interop",
  5909. "psr",
  5910. "psr-15",
  5911. "psr-7",
  5912. "request",
  5913. "response",
  5914. "server"
  5915. ],
  5916. "support": {
  5917. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5918. },
  5919. "time": "2023-04-10T20:06:20+00:00"
  5920. },
  5921. {
  5922. "name": "psr/http-server-middleware",
  5923. "version": "1.0.2",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/php-fig/http-server-middleware.git",
  5927. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5932. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5933. "shasum": ""
  5934. },
  5935. "require": {
  5936. "php": ">=7.0",
  5937. "psr/http-message": "^1.0 || ^2.0",
  5938. "psr/http-server-handler": "^1.0"
  5939. },
  5940. "type": "library",
  5941. "extra": {
  5942. "branch-alias": {
  5943. "dev-master": "1.0.x-dev"
  5944. }
  5945. },
  5946. "autoload": {
  5947. "psr-4": {
  5948. "Psr\\Http\\Server\\": "src/"
  5949. }
  5950. },
  5951. "notification-url": "https://packagist.org/downloads/",
  5952. "license": [
  5953. "MIT"
  5954. ],
  5955. "authors": [
  5956. {
  5957. "name": "PHP-FIG",
  5958. "homepage": "https://www.php-fig.org/"
  5959. }
  5960. ],
  5961. "description": "Common interface for HTTP server-side middleware",
  5962. "keywords": [
  5963. "http",
  5964. "http-interop",
  5965. "middleware",
  5966. "psr",
  5967. "psr-15",
  5968. "psr-7",
  5969. "request",
  5970. "response"
  5971. ],
  5972. "support": {
  5973. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5974. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5975. },
  5976. "time": "2023-04-11T06:14:47+00:00"
  5977. },
  5978. {
  5979. "name": "psr/log",
  5980. "version": "3.0.2",
  5981. "source": {
  5982. "type": "git",
  5983. "url": "https://github.com/php-fig/log.git",
  5984. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5985. },
  5986. "dist": {
  5987. "type": "zip",
  5988. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5989. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5990. "shasum": ""
  5991. },
  5992. "require": {
  5993. "php": ">=8.0.0"
  5994. },
  5995. "type": "library",
  5996. "extra": {
  5997. "branch-alias": {
  5998. "dev-master": "3.x-dev"
  5999. }
  6000. },
  6001. "autoload": {
  6002. "psr-4": {
  6003. "Psr\\Log\\": "src"
  6004. }
  6005. },
  6006. "notification-url": "https://packagist.org/downloads/",
  6007. "license": [
  6008. "MIT"
  6009. ],
  6010. "authors": [
  6011. {
  6012. "name": "PHP-FIG",
  6013. "homepage": "https://www.php-fig.org/"
  6014. }
  6015. ],
  6016. "description": "Common interface for logging libraries",
  6017. "homepage": "https://github.com/php-fig/log",
  6018. "keywords": [
  6019. "log",
  6020. "psr",
  6021. "psr-3"
  6022. ],
  6023. "support": {
  6024. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6025. },
  6026. "time": "2024-09-11T13:17:53+00:00"
  6027. },
  6028. {
  6029. "name": "psr/simple-cache",
  6030. "version": "3.0.0",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://github.com/php-fig/simple-cache.git",
  6034. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6039. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6040. "shasum": ""
  6041. },
  6042. "require": {
  6043. "php": ">=8.0.0"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-master": "3.0.x-dev"
  6049. }
  6050. },
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Psr\\SimpleCache\\": "src/"
  6054. }
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "PHP-FIG",
  6063. "homepage": "https://www.php-fig.org/"
  6064. }
  6065. ],
  6066. "description": "Common interfaces for simple caching",
  6067. "keywords": [
  6068. "cache",
  6069. "caching",
  6070. "psr",
  6071. "psr-16",
  6072. "simple-cache"
  6073. ],
  6074. "support": {
  6075. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6076. },
  6077. "time": "2021-10-29T13:26:27+00:00"
  6078. },
  6079. {
  6080. "name": "ralouphie/getallheaders",
  6081. "version": "3.0.3",
  6082. "source": {
  6083. "type": "git",
  6084. "url": "https://github.com/ralouphie/getallheaders.git",
  6085. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6086. },
  6087. "dist": {
  6088. "type": "zip",
  6089. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6090. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6091. "shasum": ""
  6092. },
  6093. "require": {
  6094. "php": ">=5.6"
  6095. },
  6096. "require-dev": {
  6097. "php-coveralls/php-coveralls": "^2.1",
  6098. "phpunit/phpunit": "^5 || ^6.5"
  6099. },
  6100. "type": "library",
  6101. "autoload": {
  6102. "files": [
  6103. "src/getallheaders.php"
  6104. ]
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "MIT"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Ralph Khattar",
  6113. "email": "ralph.khattar@gmail.com"
  6114. }
  6115. ],
  6116. "description": "A polyfill for getallheaders.",
  6117. "support": {
  6118. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6119. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6120. },
  6121. "time": "2019-03-08T08:55:37+00:00"
  6122. },
  6123. {
  6124. "name": "swow/psr7-plus",
  6125. "version": "v1.1.2",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/swow/psr7-plus.git",
  6129. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6134. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6135. "shasum": ""
  6136. },
  6137. "require": {
  6138. "php": ">=8.0",
  6139. "psr/http-client": "^1.0",
  6140. "psr/http-factory": "^1.0",
  6141. "psr/http-message": "^1.1|^2.0"
  6142. },
  6143. "type": "library",
  6144. "autoload": {
  6145. "psr-4": {
  6146. "Swow\\Psr7\\Message\\": "src/Message/"
  6147. }
  6148. },
  6149. "notification-url": "https://packagist.org/downloads/",
  6150. "license": [
  6151. "Apache-2.0"
  6152. ],
  6153. "authors": [
  6154. {
  6155. "name": "twose",
  6156. "email": "twosee@php.net"
  6157. }
  6158. ],
  6159. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6160. "keywords": [
  6161. "http",
  6162. "psr17",
  6163. "psr7",
  6164. "swow",
  6165. "websocket"
  6166. ],
  6167. "support": {
  6168. "issues": "https://github.com/swow/swow",
  6169. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6170. },
  6171. "time": "2023-06-15T09:18:11+00:00"
  6172. },
  6173. {
  6174. "name": "symfony/cache",
  6175. "version": "v6.4.16",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/symfony/cache.git",
  6179. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  6184. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  6185. "shasum": ""
  6186. },
  6187. "require": {
  6188. "php": ">=8.1",
  6189. "psr/cache": "^2.0|^3.0",
  6190. "psr/log": "^1.1|^2|^3",
  6191. "symfony/cache-contracts": "^2.5|^3",
  6192. "symfony/service-contracts": "^2.5|^3",
  6193. "symfony/var-exporter": "^6.3.6|^7.0"
  6194. },
  6195. "conflict": {
  6196. "doctrine/dbal": "<2.13.1",
  6197. "symfony/dependency-injection": "<5.4",
  6198. "symfony/http-kernel": "<5.4",
  6199. "symfony/var-dumper": "<5.4"
  6200. },
  6201. "provide": {
  6202. "psr/cache-implementation": "2.0|3.0",
  6203. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6204. "symfony/cache-implementation": "1.1|2.0|3.0"
  6205. },
  6206. "require-dev": {
  6207. "cache/integration-tests": "dev-master",
  6208. "doctrine/dbal": "^2.13.1|^3|^4",
  6209. "predis/predis": "^1.1|^2.0",
  6210. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6211. "symfony/config": "^5.4|^6.0|^7.0",
  6212. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6213. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6214. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6215. "symfony/messenger": "^5.4|^6.0|^7.0",
  6216. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6217. },
  6218. "type": "library",
  6219. "autoload": {
  6220. "psr-4": {
  6221. "Symfony\\Component\\Cache\\": ""
  6222. },
  6223. "classmap": [
  6224. "Traits/ValueWrapper.php"
  6225. ],
  6226. "exclude-from-classmap": [
  6227. "/Tests/"
  6228. ]
  6229. },
  6230. "notification-url": "https://packagist.org/downloads/",
  6231. "license": [
  6232. "MIT"
  6233. ],
  6234. "authors": [
  6235. {
  6236. "name": "Nicolas Grekas",
  6237. "email": "p@tchwork.com"
  6238. },
  6239. {
  6240. "name": "Symfony Community",
  6241. "homepage": "https://symfony.com/contributors"
  6242. }
  6243. ],
  6244. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6245. "homepage": "https://symfony.com",
  6246. "keywords": [
  6247. "caching",
  6248. "psr6"
  6249. ],
  6250. "support": {
  6251. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2024-11-20T10:10:54+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/cache-contracts",
  6271. "version": "v3.5.1",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/cache-contracts.git",
  6275. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6280. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "php": ">=8.1",
  6285. "psr/cache": "^3.0"
  6286. },
  6287. "type": "library",
  6288. "extra": {
  6289. "branch-alias": {
  6290. "dev-main": "3.5-dev"
  6291. },
  6292. "thanks": {
  6293. "name": "symfony/contracts",
  6294. "url": "https://github.com/symfony/contracts"
  6295. }
  6296. },
  6297. "autoload": {
  6298. "psr-4": {
  6299. "Symfony\\Contracts\\Cache\\": ""
  6300. }
  6301. },
  6302. "notification-url": "https://packagist.org/downloads/",
  6303. "license": [
  6304. "MIT"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "Nicolas Grekas",
  6309. "email": "p@tchwork.com"
  6310. },
  6311. {
  6312. "name": "Symfony Community",
  6313. "homepage": "https://symfony.com/contributors"
  6314. }
  6315. ],
  6316. "description": "Generic abstractions related to caching",
  6317. "homepage": "https://symfony.com",
  6318. "keywords": [
  6319. "abstractions",
  6320. "contracts",
  6321. "decoupling",
  6322. "interfaces",
  6323. "interoperability",
  6324. "standards"
  6325. ],
  6326. "support": {
  6327. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  6328. },
  6329. "funding": [
  6330. {
  6331. "url": "https://symfony.com/sponsor",
  6332. "type": "custom"
  6333. },
  6334. {
  6335. "url": "https://github.com/fabpot",
  6336. "type": "github"
  6337. },
  6338. {
  6339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6340. "type": "tidelift"
  6341. }
  6342. ],
  6343. "time": "2024-09-25T14:20:29+00:00"
  6344. },
  6345. {
  6346. "name": "symfony/console",
  6347. "version": "v6.4.15",
  6348. "source": {
  6349. "type": "git",
  6350. "url": "https://github.com/symfony/console.git",
  6351. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6352. },
  6353. "dist": {
  6354. "type": "zip",
  6355. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6356. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6357. "shasum": ""
  6358. },
  6359. "require": {
  6360. "php": ">=8.1",
  6361. "symfony/deprecation-contracts": "^2.5|^3",
  6362. "symfony/polyfill-mbstring": "~1.0",
  6363. "symfony/service-contracts": "^2.5|^3",
  6364. "symfony/string": "^5.4|^6.0|^7.0"
  6365. },
  6366. "conflict": {
  6367. "symfony/dependency-injection": "<5.4",
  6368. "symfony/dotenv": "<5.4",
  6369. "symfony/event-dispatcher": "<5.4",
  6370. "symfony/lock": "<5.4",
  6371. "symfony/process": "<5.4"
  6372. },
  6373. "provide": {
  6374. "psr/log-implementation": "1.0|2.0|3.0"
  6375. },
  6376. "require-dev": {
  6377. "psr/log": "^1|^2|^3",
  6378. "symfony/config": "^5.4|^6.0|^7.0",
  6379. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6380. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6381. "symfony/http-foundation": "^6.4|^7.0",
  6382. "symfony/http-kernel": "^6.4|^7.0",
  6383. "symfony/lock": "^5.4|^6.0|^7.0",
  6384. "symfony/messenger": "^5.4|^6.0|^7.0",
  6385. "symfony/process": "^5.4|^6.0|^7.0",
  6386. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6387. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6388. },
  6389. "type": "library",
  6390. "autoload": {
  6391. "psr-4": {
  6392. "Symfony\\Component\\Console\\": ""
  6393. },
  6394. "exclude-from-classmap": [
  6395. "/Tests/"
  6396. ]
  6397. },
  6398. "notification-url": "https://packagist.org/downloads/",
  6399. "license": [
  6400. "MIT"
  6401. ],
  6402. "authors": [
  6403. {
  6404. "name": "Fabien Potencier",
  6405. "email": "fabien@symfony.com"
  6406. },
  6407. {
  6408. "name": "Symfony Community",
  6409. "homepage": "https://symfony.com/contributors"
  6410. }
  6411. ],
  6412. "description": "Eases the creation of beautiful and testable command line interfaces",
  6413. "homepage": "https://symfony.com",
  6414. "keywords": [
  6415. "cli",
  6416. "command-line",
  6417. "console",
  6418. "terminal"
  6419. ],
  6420. "support": {
  6421. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://symfony.com/sponsor",
  6426. "type": "custom"
  6427. },
  6428. {
  6429. "url": "https://github.com/fabpot",
  6430. "type": "github"
  6431. },
  6432. {
  6433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6434. "type": "tidelift"
  6435. }
  6436. ],
  6437. "time": "2024-11-06T14:19:14+00:00"
  6438. },
  6439. {
  6440. "name": "symfony/deprecation-contracts",
  6441. "version": "v3.5.1",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/symfony/deprecation-contracts.git",
  6445. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6450. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": ">=8.1"
  6455. },
  6456. "type": "library",
  6457. "extra": {
  6458. "branch-alias": {
  6459. "dev-main": "3.5-dev"
  6460. },
  6461. "thanks": {
  6462. "name": "symfony/contracts",
  6463. "url": "https://github.com/symfony/contracts"
  6464. }
  6465. },
  6466. "autoload": {
  6467. "files": [
  6468. "function.php"
  6469. ]
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "Nicolas Grekas",
  6478. "email": "p@tchwork.com"
  6479. },
  6480. {
  6481. "name": "Symfony Community",
  6482. "homepage": "https://symfony.com/contributors"
  6483. }
  6484. ],
  6485. "description": "A generic function and convention to trigger deprecation notices",
  6486. "homepage": "https://symfony.com",
  6487. "support": {
  6488. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6489. },
  6490. "funding": [
  6491. {
  6492. "url": "https://symfony.com/sponsor",
  6493. "type": "custom"
  6494. },
  6495. {
  6496. "url": "https://github.com/fabpot",
  6497. "type": "github"
  6498. },
  6499. {
  6500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6501. "type": "tidelift"
  6502. }
  6503. ],
  6504. "time": "2024-09-25T14:20:29+00:00"
  6505. },
  6506. {
  6507. "name": "symfony/finder",
  6508. "version": "v6.4.13",
  6509. "source": {
  6510. "type": "git",
  6511. "url": "https://github.com/symfony/finder.git",
  6512. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6513. },
  6514. "dist": {
  6515. "type": "zip",
  6516. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6517. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6518. "shasum": ""
  6519. },
  6520. "require": {
  6521. "php": ">=8.1"
  6522. },
  6523. "require-dev": {
  6524. "symfony/filesystem": "^6.0|^7.0"
  6525. },
  6526. "type": "library",
  6527. "autoload": {
  6528. "psr-4": {
  6529. "Symfony\\Component\\Finder\\": ""
  6530. },
  6531. "exclude-from-classmap": [
  6532. "/Tests/"
  6533. ]
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Fabien Potencier",
  6542. "email": "fabien@symfony.com"
  6543. },
  6544. {
  6545. "name": "Symfony Community",
  6546. "homepage": "https://symfony.com/contributors"
  6547. }
  6548. ],
  6549. "description": "Finds files and directories via an intuitive fluent interface",
  6550. "homepage": "https://symfony.com",
  6551. "support": {
  6552. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6553. },
  6554. "funding": [
  6555. {
  6556. "url": "https://symfony.com/sponsor",
  6557. "type": "custom"
  6558. },
  6559. {
  6560. "url": "https://github.com/fabpot",
  6561. "type": "github"
  6562. },
  6563. {
  6564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6565. "type": "tidelift"
  6566. }
  6567. ],
  6568. "time": "2024-10-01T08:30:56+00:00"
  6569. },
  6570. {
  6571. "name": "symfony/polyfill-ctype",
  6572. "version": "v1.31.0",
  6573. "source": {
  6574. "type": "git",
  6575. "url": "https://github.com/symfony/polyfill-ctype.git",
  6576. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6577. },
  6578. "dist": {
  6579. "type": "zip",
  6580. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6581. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6582. "shasum": ""
  6583. },
  6584. "require": {
  6585. "php": ">=7.2"
  6586. },
  6587. "provide": {
  6588. "ext-ctype": "*"
  6589. },
  6590. "suggest": {
  6591. "ext-ctype": "For best performance"
  6592. },
  6593. "type": "library",
  6594. "extra": {
  6595. "thanks": {
  6596. "url": "https://github.com/symfony/polyfill",
  6597. "name": "symfony/polyfill"
  6598. }
  6599. },
  6600. "autoload": {
  6601. "files": [
  6602. "bootstrap.php"
  6603. ],
  6604. "psr-4": {
  6605. "Symfony\\Polyfill\\Ctype\\": ""
  6606. }
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "Gert de Pagter",
  6615. "email": "BackEndTea@gmail.com"
  6616. },
  6617. {
  6618. "name": "Symfony Community",
  6619. "homepage": "https://symfony.com/contributors"
  6620. }
  6621. ],
  6622. "description": "Symfony polyfill for ctype functions",
  6623. "homepage": "https://symfony.com",
  6624. "keywords": [
  6625. "compatibility",
  6626. "ctype",
  6627. "polyfill",
  6628. "portable"
  6629. ],
  6630. "support": {
  6631. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6632. },
  6633. "funding": [
  6634. {
  6635. "url": "https://symfony.com/sponsor",
  6636. "type": "custom"
  6637. },
  6638. {
  6639. "url": "https://github.com/fabpot",
  6640. "type": "github"
  6641. },
  6642. {
  6643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6644. "type": "tidelift"
  6645. }
  6646. ],
  6647. "time": "2024-09-09T11:45:10+00:00"
  6648. },
  6649. {
  6650. "name": "symfony/polyfill-intl-grapheme",
  6651. "version": "v1.31.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6655. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6660. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": ">=7.2"
  6665. },
  6666. "suggest": {
  6667. "ext-intl": "For best performance"
  6668. },
  6669. "type": "library",
  6670. "extra": {
  6671. "thanks": {
  6672. "url": "https://github.com/symfony/polyfill",
  6673. "name": "symfony/polyfill"
  6674. }
  6675. },
  6676. "autoload": {
  6677. "files": [
  6678. "bootstrap.php"
  6679. ],
  6680. "psr-4": {
  6681. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6682. }
  6683. },
  6684. "notification-url": "https://packagist.org/downloads/",
  6685. "license": [
  6686. "MIT"
  6687. ],
  6688. "authors": [
  6689. {
  6690. "name": "Nicolas Grekas",
  6691. "email": "p@tchwork.com"
  6692. },
  6693. {
  6694. "name": "Symfony Community",
  6695. "homepage": "https://symfony.com/contributors"
  6696. }
  6697. ],
  6698. "description": "Symfony polyfill for intl's grapheme_* functions",
  6699. "homepage": "https://symfony.com",
  6700. "keywords": [
  6701. "compatibility",
  6702. "grapheme",
  6703. "intl",
  6704. "polyfill",
  6705. "portable",
  6706. "shim"
  6707. ],
  6708. "support": {
  6709. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6710. },
  6711. "funding": [
  6712. {
  6713. "url": "https://symfony.com/sponsor",
  6714. "type": "custom"
  6715. },
  6716. {
  6717. "url": "https://github.com/fabpot",
  6718. "type": "github"
  6719. },
  6720. {
  6721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6722. "type": "tidelift"
  6723. }
  6724. ],
  6725. "time": "2024-09-09T11:45:10+00:00"
  6726. },
  6727. {
  6728. "name": "symfony/polyfill-intl-normalizer",
  6729. "version": "v1.31.0",
  6730. "source": {
  6731. "type": "git",
  6732. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6733. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6734. },
  6735. "dist": {
  6736. "type": "zip",
  6737. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6738. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6739. "shasum": ""
  6740. },
  6741. "require": {
  6742. "php": ">=7.2"
  6743. },
  6744. "suggest": {
  6745. "ext-intl": "For best performance"
  6746. },
  6747. "type": "library",
  6748. "extra": {
  6749. "thanks": {
  6750. "url": "https://github.com/symfony/polyfill",
  6751. "name": "symfony/polyfill"
  6752. }
  6753. },
  6754. "autoload": {
  6755. "files": [
  6756. "bootstrap.php"
  6757. ],
  6758. "psr-4": {
  6759. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6760. },
  6761. "classmap": [
  6762. "Resources/stubs"
  6763. ]
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "MIT"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Nicolas Grekas",
  6772. "email": "p@tchwork.com"
  6773. },
  6774. {
  6775. "name": "Symfony Community",
  6776. "homepage": "https://symfony.com/contributors"
  6777. }
  6778. ],
  6779. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6780. "homepage": "https://symfony.com",
  6781. "keywords": [
  6782. "compatibility",
  6783. "intl",
  6784. "normalizer",
  6785. "polyfill",
  6786. "portable",
  6787. "shim"
  6788. ],
  6789. "support": {
  6790. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6791. },
  6792. "funding": [
  6793. {
  6794. "url": "https://symfony.com/sponsor",
  6795. "type": "custom"
  6796. },
  6797. {
  6798. "url": "https://github.com/fabpot",
  6799. "type": "github"
  6800. },
  6801. {
  6802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6803. "type": "tidelift"
  6804. }
  6805. ],
  6806. "time": "2024-09-09T11:45:10+00:00"
  6807. },
  6808. {
  6809. "name": "symfony/polyfill-mbstring",
  6810. "version": "v1.31.0",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6814. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6819. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6820. "shasum": ""
  6821. },
  6822. "require": {
  6823. "php": ">=7.2"
  6824. },
  6825. "provide": {
  6826. "ext-mbstring": "*"
  6827. },
  6828. "suggest": {
  6829. "ext-mbstring": "For best performance"
  6830. },
  6831. "type": "library",
  6832. "extra": {
  6833. "thanks": {
  6834. "url": "https://github.com/symfony/polyfill",
  6835. "name": "symfony/polyfill"
  6836. }
  6837. },
  6838. "autoload": {
  6839. "files": [
  6840. "bootstrap.php"
  6841. ],
  6842. "psr-4": {
  6843. "Symfony\\Polyfill\\Mbstring\\": ""
  6844. }
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "MIT"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Nicolas Grekas",
  6853. "email": "p@tchwork.com"
  6854. },
  6855. {
  6856. "name": "Symfony Community",
  6857. "homepage": "https://symfony.com/contributors"
  6858. }
  6859. ],
  6860. "description": "Symfony polyfill for the Mbstring extension",
  6861. "homepage": "https://symfony.com",
  6862. "keywords": [
  6863. "compatibility",
  6864. "mbstring",
  6865. "polyfill",
  6866. "portable",
  6867. "shim"
  6868. ],
  6869. "support": {
  6870. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://symfony.com/sponsor",
  6875. "type": "custom"
  6876. },
  6877. {
  6878. "url": "https://github.com/fabpot",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6883. "type": "tidelift"
  6884. }
  6885. ],
  6886. "time": "2024-09-09T11:45:10+00:00"
  6887. },
  6888. {
  6889. "name": "symfony/polyfill-php80",
  6890. "version": "v1.31.0",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/symfony/polyfill-php80.git",
  6894. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6899. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "php": ">=7.2"
  6904. },
  6905. "type": "library",
  6906. "extra": {
  6907. "thanks": {
  6908. "url": "https://github.com/symfony/polyfill",
  6909. "name": "symfony/polyfill"
  6910. }
  6911. },
  6912. "autoload": {
  6913. "files": [
  6914. "bootstrap.php"
  6915. ],
  6916. "psr-4": {
  6917. "Symfony\\Polyfill\\Php80\\": ""
  6918. },
  6919. "classmap": [
  6920. "Resources/stubs"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Ion Bazan",
  6930. "email": "ion.bazan@gmail.com"
  6931. },
  6932. {
  6933. "name": "Nicolas Grekas",
  6934. "email": "p@tchwork.com"
  6935. },
  6936. {
  6937. "name": "Symfony Community",
  6938. "homepage": "https://symfony.com/contributors"
  6939. }
  6940. ],
  6941. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6942. "homepage": "https://symfony.com",
  6943. "keywords": [
  6944. "compatibility",
  6945. "polyfill",
  6946. "portable",
  6947. "shim"
  6948. ],
  6949. "support": {
  6950. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2024-09-09T11:45:10+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/service-contracts",
  6970. "version": "v3.5.1",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/service-contracts.git",
  6974. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6979. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6980. "shasum": ""
  6981. },
  6982. "require": {
  6983. "php": ">=8.1",
  6984. "psr/container": "^1.1|^2.0",
  6985. "symfony/deprecation-contracts": "^2.5|^3"
  6986. },
  6987. "conflict": {
  6988. "ext-psr": "<1.1|>=2"
  6989. },
  6990. "type": "library",
  6991. "extra": {
  6992. "branch-alias": {
  6993. "dev-main": "3.5-dev"
  6994. },
  6995. "thanks": {
  6996. "name": "symfony/contracts",
  6997. "url": "https://github.com/symfony/contracts"
  6998. }
  6999. },
  7000. "autoload": {
  7001. "psr-4": {
  7002. "Symfony\\Contracts\\Service\\": ""
  7003. },
  7004. "exclude-from-classmap": [
  7005. "/Test/"
  7006. ]
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "MIT"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Nicolas Grekas",
  7015. "email": "p@tchwork.com"
  7016. },
  7017. {
  7018. "name": "Symfony Community",
  7019. "homepage": "https://symfony.com/contributors"
  7020. }
  7021. ],
  7022. "description": "Generic abstractions related to writing services",
  7023. "homepage": "https://symfony.com",
  7024. "keywords": [
  7025. "abstractions",
  7026. "contracts",
  7027. "decoupling",
  7028. "interfaces",
  7029. "interoperability",
  7030. "standards"
  7031. ],
  7032. "support": {
  7033. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7034. },
  7035. "funding": [
  7036. {
  7037. "url": "https://symfony.com/sponsor",
  7038. "type": "custom"
  7039. },
  7040. {
  7041. "url": "https://github.com/fabpot",
  7042. "type": "github"
  7043. },
  7044. {
  7045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7046. "type": "tidelift"
  7047. }
  7048. ],
  7049. "time": "2024-09-25T14:20:29+00:00"
  7050. },
  7051. {
  7052. "name": "symfony/string",
  7053. "version": "v6.4.15",
  7054. "source": {
  7055. "type": "git",
  7056. "url": "https://github.com/symfony/string.git",
  7057. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7058. },
  7059. "dist": {
  7060. "type": "zip",
  7061. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7062. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7063. "shasum": ""
  7064. },
  7065. "require": {
  7066. "php": ">=8.1",
  7067. "symfony/polyfill-ctype": "~1.8",
  7068. "symfony/polyfill-intl-grapheme": "~1.0",
  7069. "symfony/polyfill-intl-normalizer": "~1.0",
  7070. "symfony/polyfill-mbstring": "~1.0"
  7071. },
  7072. "conflict": {
  7073. "symfony/translation-contracts": "<2.5"
  7074. },
  7075. "require-dev": {
  7076. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7077. "symfony/http-client": "^5.4|^6.0|^7.0",
  7078. "symfony/intl": "^6.2|^7.0",
  7079. "symfony/translation-contracts": "^2.5|^3.0",
  7080. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7081. },
  7082. "type": "library",
  7083. "autoload": {
  7084. "files": [
  7085. "Resources/functions.php"
  7086. ],
  7087. "psr-4": {
  7088. "Symfony\\Component\\String\\": ""
  7089. },
  7090. "exclude-from-classmap": [
  7091. "/Tests/"
  7092. ]
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Nicolas Grekas",
  7101. "email": "p@tchwork.com"
  7102. },
  7103. {
  7104. "name": "Symfony Community",
  7105. "homepage": "https://symfony.com/contributors"
  7106. }
  7107. ],
  7108. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7109. "homepage": "https://symfony.com",
  7110. "keywords": [
  7111. "grapheme",
  7112. "i18n",
  7113. "string",
  7114. "unicode",
  7115. "utf-8",
  7116. "utf8"
  7117. ],
  7118. "support": {
  7119. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7120. },
  7121. "funding": [
  7122. {
  7123. "url": "https://symfony.com/sponsor",
  7124. "type": "custom"
  7125. },
  7126. {
  7127. "url": "https://github.com/fabpot",
  7128. "type": "github"
  7129. },
  7130. {
  7131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7132. "type": "tidelift"
  7133. }
  7134. ],
  7135. "time": "2024-11-13T13:31:12+00:00"
  7136. },
  7137. {
  7138. "name": "symfony/translation",
  7139. "version": "v6.4.13",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/symfony/translation.git",
  7143. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7148. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7149. "shasum": ""
  7150. },
  7151. "require": {
  7152. "php": ">=8.1",
  7153. "symfony/deprecation-contracts": "^2.5|^3",
  7154. "symfony/polyfill-mbstring": "~1.0",
  7155. "symfony/translation-contracts": "^2.5|^3.0"
  7156. },
  7157. "conflict": {
  7158. "symfony/config": "<5.4",
  7159. "symfony/console": "<5.4",
  7160. "symfony/dependency-injection": "<5.4",
  7161. "symfony/http-client-contracts": "<2.5",
  7162. "symfony/http-kernel": "<5.4",
  7163. "symfony/service-contracts": "<2.5",
  7164. "symfony/twig-bundle": "<5.4",
  7165. "symfony/yaml": "<5.4"
  7166. },
  7167. "provide": {
  7168. "symfony/translation-implementation": "2.3|3.0"
  7169. },
  7170. "require-dev": {
  7171. "nikic/php-parser": "^4.18|^5.0",
  7172. "psr/log": "^1|^2|^3",
  7173. "symfony/config": "^5.4|^6.0|^7.0",
  7174. "symfony/console": "^5.4|^6.0|^7.0",
  7175. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7176. "symfony/finder": "^5.4|^6.0|^7.0",
  7177. "symfony/http-client-contracts": "^2.5|^3.0",
  7178. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7179. "symfony/intl": "^5.4|^6.0|^7.0",
  7180. "symfony/polyfill-intl-icu": "^1.21",
  7181. "symfony/routing": "^5.4|^6.0|^7.0",
  7182. "symfony/service-contracts": "^2.5|^3",
  7183. "symfony/yaml": "^5.4|^6.0|^7.0"
  7184. },
  7185. "type": "library",
  7186. "autoload": {
  7187. "files": [
  7188. "Resources/functions.php"
  7189. ],
  7190. "psr-4": {
  7191. "Symfony\\Component\\Translation\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Fabien Potencier",
  7204. "email": "fabien@symfony.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Provides tools to internationalize your application",
  7212. "homepage": "https://symfony.com",
  7213. "support": {
  7214. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7215. },
  7216. "funding": [
  7217. {
  7218. "url": "https://symfony.com/sponsor",
  7219. "type": "custom"
  7220. },
  7221. {
  7222. "url": "https://github.com/fabpot",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7227. "type": "tidelift"
  7228. }
  7229. ],
  7230. "time": "2024-09-27T18:14:25+00:00"
  7231. },
  7232. {
  7233. "name": "symfony/translation-contracts",
  7234. "version": "v3.5.1",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/symfony/translation-contracts.git",
  7238. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7243. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7244. "shasum": ""
  7245. },
  7246. "require": {
  7247. "php": ">=8.1"
  7248. },
  7249. "type": "library",
  7250. "extra": {
  7251. "branch-alias": {
  7252. "dev-main": "3.5-dev"
  7253. },
  7254. "thanks": {
  7255. "name": "symfony/contracts",
  7256. "url": "https://github.com/symfony/contracts"
  7257. }
  7258. },
  7259. "autoload": {
  7260. "psr-4": {
  7261. "Symfony\\Contracts\\Translation\\": ""
  7262. },
  7263. "exclude-from-classmap": [
  7264. "/Test/"
  7265. ]
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Nicolas Grekas",
  7274. "email": "p@tchwork.com"
  7275. },
  7276. {
  7277. "name": "Symfony Community",
  7278. "homepage": "https://symfony.com/contributors"
  7279. }
  7280. ],
  7281. "description": "Generic abstractions related to translation",
  7282. "homepage": "https://symfony.com",
  7283. "keywords": [
  7284. "abstractions",
  7285. "contracts",
  7286. "decoupling",
  7287. "interfaces",
  7288. "interoperability",
  7289. "standards"
  7290. ],
  7291. "support": {
  7292. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7293. },
  7294. "funding": [
  7295. {
  7296. "url": "https://symfony.com/sponsor",
  7297. "type": "custom"
  7298. },
  7299. {
  7300. "url": "https://github.com/fabpot",
  7301. "type": "github"
  7302. },
  7303. {
  7304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7305. "type": "tidelift"
  7306. }
  7307. ],
  7308. "time": "2024-09-25T14:20:29+00:00"
  7309. },
  7310. {
  7311. "name": "symfony/var-dumper",
  7312. "version": "v6.4.15",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/symfony/var-dumper.git",
  7316. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7321. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7322. "shasum": ""
  7323. },
  7324. "require": {
  7325. "php": ">=8.1",
  7326. "symfony/deprecation-contracts": "^2.5|^3",
  7327. "symfony/polyfill-mbstring": "~1.0"
  7328. },
  7329. "conflict": {
  7330. "symfony/console": "<5.4"
  7331. },
  7332. "require-dev": {
  7333. "ext-iconv": "*",
  7334. "symfony/console": "^5.4|^6.0|^7.0",
  7335. "symfony/error-handler": "^6.3|^7.0",
  7336. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7337. "symfony/process": "^5.4|^6.0|^7.0",
  7338. "symfony/uid": "^5.4|^6.0|^7.0",
  7339. "twig/twig": "^2.13|^3.0.4"
  7340. },
  7341. "bin": [
  7342. "Resources/bin/var-dump-server"
  7343. ],
  7344. "type": "library",
  7345. "autoload": {
  7346. "files": [
  7347. "Resources/functions/dump.php"
  7348. ],
  7349. "psr-4": {
  7350. "Symfony\\Component\\VarDumper\\": ""
  7351. },
  7352. "exclude-from-classmap": [
  7353. "/Tests/"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Nicolas Grekas",
  7363. "email": "p@tchwork.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7371. "homepage": "https://symfony.com",
  7372. "keywords": [
  7373. "debug",
  7374. "dump"
  7375. ],
  7376. "support": {
  7377. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://symfony.com/sponsor",
  7382. "type": "custom"
  7383. },
  7384. {
  7385. "url": "https://github.com/fabpot",
  7386. "type": "github"
  7387. },
  7388. {
  7389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7390. "type": "tidelift"
  7391. }
  7392. ],
  7393. "time": "2024-11-08T15:28:48+00:00"
  7394. },
  7395. {
  7396. "name": "symfony/var-exporter",
  7397. "version": "v6.4.13",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/symfony/var-exporter.git",
  7401. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7406. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "php": ">=8.1",
  7411. "symfony/deprecation-contracts": "^2.5|^3"
  7412. },
  7413. "require-dev": {
  7414. "symfony/property-access": "^6.4|^7.0",
  7415. "symfony/serializer": "^6.4|^7.0",
  7416. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7417. },
  7418. "type": "library",
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Symfony\\Component\\VarExporter\\": ""
  7422. },
  7423. "exclude-from-classmap": [
  7424. "/Tests/"
  7425. ]
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "MIT"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Nicolas Grekas",
  7434. "email": "p@tchwork.com"
  7435. },
  7436. {
  7437. "name": "Symfony Community",
  7438. "homepage": "https://symfony.com/contributors"
  7439. }
  7440. ],
  7441. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7442. "homepage": "https://symfony.com",
  7443. "keywords": [
  7444. "clone",
  7445. "construct",
  7446. "export",
  7447. "hydrate",
  7448. "instantiate",
  7449. "lazy-loading",
  7450. "proxy",
  7451. "serialize"
  7452. ],
  7453. "support": {
  7454. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7455. },
  7456. "funding": [
  7457. {
  7458. "url": "https://symfony.com/sponsor",
  7459. "type": "custom"
  7460. },
  7461. {
  7462. "url": "https://github.com/fabpot",
  7463. "type": "github"
  7464. },
  7465. {
  7466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7467. "type": "tidelift"
  7468. }
  7469. ],
  7470. "time": "2024-09-25T14:18:03+00:00"
  7471. },
  7472. {
  7473. "name": "vlucas/phpdotenv",
  7474. "version": "v5.6.1",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/vlucas/phpdotenv.git",
  7478. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7483. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "ext-pcre": "*",
  7488. "graham-campbell/result-type": "^1.1.3",
  7489. "php": "^7.2.5 || ^8.0",
  7490. "phpoption/phpoption": "^1.9.3",
  7491. "symfony/polyfill-ctype": "^1.24",
  7492. "symfony/polyfill-mbstring": "^1.24",
  7493. "symfony/polyfill-php80": "^1.24"
  7494. },
  7495. "require-dev": {
  7496. "bamarni/composer-bin-plugin": "^1.8.2",
  7497. "ext-filter": "*",
  7498. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7499. },
  7500. "suggest": {
  7501. "ext-filter": "Required to use the boolean validator."
  7502. },
  7503. "type": "library",
  7504. "extra": {
  7505. "bamarni-bin": {
  7506. "bin-links": true,
  7507. "forward-command": false
  7508. },
  7509. "branch-alias": {
  7510. "dev-master": "5.6-dev"
  7511. }
  7512. },
  7513. "autoload": {
  7514. "psr-4": {
  7515. "Dotenv\\": "src/"
  7516. }
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "BSD-3-Clause"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Graham Campbell",
  7525. "email": "hello@gjcampbell.co.uk",
  7526. "homepage": "https://github.com/GrahamCampbell"
  7527. },
  7528. {
  7529. "name": "Vance Lucas",
  7530. "email": "vance@vancelucas.com",
  7531. "homepage": "https://github.com/vlucas"
  7532. }
  7533. ],
  7534. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7535. "keywords": [
  7536. "dotenv",
  7537. "env",
  7538. "environment"
  7539. ],
  7540. "support": {
  7541. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7542. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7543. },
  7544. "funding": [
  7545. {
  7546. "url": "https://github.com/GrahamCampbell",
  7547. "type": "github"
  7548. },
  7549. {
  7550. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7551. "type": "tidelift"
  7552. }
  7553. ],
  7554. "time": "2024-07-20T21:52:34+00:00"
  7555. }
  7556. ],
  7557. "packages-dev": [
  7558. {
  7559. "name": "clue/ndjson-react",
  7560. "version": "v1.3.0",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/clue/reactphp-ndjson.git",
  7564. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7569. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7570. "shasum": ""
  7571. },
  7572. "require": {
  7573. "php": ">=5.3",
  7574. "react/stream": "^1.2"
  7575. },
  7576. "require-dev": {
  7577. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7578. "react/event-loop": "^1.2"
  7579. },
  7580. "type": "library",
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Clue\\React\\NDJson\\": "src/"
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Christian Lück",
  7593. "email": "christian@clue.engineering"
  7594. }
  7595. ],
  7596. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7597. "homepage": "https://github.com/clue/reactphp-ndjson",
  7598. "keywords": [
  7599. "NDJSON",
  7600. "json",
  7601. "jsonlines",
  7602. "newline",
  7603. "reactphp",
  7604. "streaming"
  7605. ],
  7606. "support": {
  7607. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7608. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7609. },
  7610. "funding": [
  7611. {
  7612. "url": "https://clue.engineering/support",
  7613. "type": "custom"
  7614. },
  7615. {
  7616. "url": "https://github.com/clue",
  7617. "type": "github"
  7618. }
  7619. ],
  7620. "time": "2022-12-23T10:58:28+00:00"
  7621. },
  7622. {
  7623. "name": "composer/pcre",
  7624. "version": "3.3.2",
  7625. "source": {
  7626. "type": "git",
  7627. "url": "https://github.com/composer/pcre.git",
  7628. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7629. },
  7630. "dist": {
  7631. "type": "zip",
  7632. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7633. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7634. "shasum": ""
  7635. },
  7636. "require": {
  7637. "php": "^7.4 || ^8.0"
  7638. },
  7639. "conflict": {
  7640. "phpstan/phpstan": "<1.11.10"
  7641. },
  7642. "require-dev": {
  7643. "phpstan/phpstan": "^1.12 || ^2",
  7644. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7645. "phpunit/phpunit": "^8 || ^9"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "phpstan": {
  7650. "includes": [
  7651. "extension.neon"
  7652. ]
  7653. },
  7654. "branch-alias": {
  7655. "dev-main": "3.x-dev"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "psr-4": {
  7660. "Composer\\Pcre\\": "src"
  7661. }
  7662. },
  7663. "notification-url": "https://packagist.org/downloads/",
  7664. "license": [
  7665. "MIT"
  7666. ],
  7667. "authors": [
  7668. {
  7669. "name": "Jordi Boggiano",
  7670. "email": "j.boggiano@seld.be",
  7671. "homepage": "http://seld.be"
  7672. }
  7673. ],
  7674. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7675. "keywords": [
  7676. "PCRE",
  7677. "preg",
  7678. "regex",
  7679. "regular expression"
  7680. ],
  7681. "support": {
  7682. "issues": "https://github.com/composer/pcre/issues",
  7683. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7684. },
  7685. "funding": [
  7686. {
  7687. "url": "https://packagist.com",
  7688. "type": "custom"
  7689. },
  7690. {
  7691. "url": "https://github.com/composer",
  7692. "type": "github"
  7693. },
  7694. {
  7695. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7696. "type": "tidelift"
  7697. }
  7698. ],
  7699. "time": "2024-11-12T16:29:46+00:00"
  7700. },
  7701. {
  7702. "name": "composer/semver",
  7703. "version": "3.4.3",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/composer/semver.git",
  7707. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7712. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "php": "^5.3.2 || ^7.0 || ^8.0"
  7717. },
  7718. "require-dev": {
  7719. "phpstan/phpstan": "^1.11",
  7720. "symfony/phpunit-bridge": "^3 || ^7"
  7721. },
  7722. "type": "library",
  7723. "extra": {
  7724. "branch-alias": {
  7725. "dev-main": "3.x-dev"
  7726. }
  7727. },
  7728. "autoload": {
  7729. "psr-4": {
  7730. "Composer\\Semver\\": "src"
  7731. }
  7732. },
  7733. "notification-url": "https://packagist.org/downloads/",
  7734. "license": [
  7735. "MIT"
  7736. ],
  7737. "authors": [
  7738. {
  7739. "name": "Nils Adermann",
  7740. "email": "naderman@naderman.de",
  7741. "homepage": "http://www.naderman.de"
  7742. },
  7743. {
  7744. "name": "Jordi Boggiano",
  7745. "email": "j.boggiano@seld.be",
  7746. "homepage": "http://seld.be"
  7747. },
  7748. {
  7749. "name": "Rob Bast",
  7750. "email": "rob.bast@gmail.com",
  7751. "homepage": "http://robbast.nl"
  7752. }
  7753. ],
  7754. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7755. "keywords": [
  7756. "semantic",
  7757. "semver",
  7758. "validation",
  7759. "versioning"
  7760. ],
  7761. "support": {
  7762. "irc": "ircs://irc.libera.chat:6697/composer",
  7763. "issues": "https://github.com/composer/semver/issues",
  7764. "source": "https://github.com/composer/semver/tree/3.4.3"
  7765. },
  7766. "funding": [
  7767. {
  7768. "url": "https://packagist.com",
  7769. "type": "custom"
  7770. },
  7771. {
  7772. "url": "https://github.com/composer",
  7773. "type": "github"
  7774. },
  7775. {
  7776. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7777. "type": "tidelift"
  7778. }
  7779. ],
  7780. "time": "2024-09-19T14:15:21+00:00"
  7781. },
  7782. {
  7783. "name": "composer/xdebug-handler",
  7784. "version": "3.0.5",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/composer/xdebug-handler.git",
  7788. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7793. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "composer/pcre": "^1 || ^2 || ^3",
  7798. "php": "^7.2.5 || ^8.0",
  7799. "psr/log": "^1 || ^2 || ^3"
  7800. },
  7801. "require-dev": {
  7802. "phpstan/phpstan": "^1.0",
  7803. "phpstan/phpstan-strict-rules": "^1.1",
  7804. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7805. },
  7806. "type": "library",
  7807. "autoload": {
  7808. "psr-4": {
  7809. "Composer\\XdebugHandler\\": "src"
  7810. }
  7811. },
  7812. "notification-url": "https://packagist.org/downloads/",
  7813. "license": [
  7814. "MIT"
  7815. ],
  7816. "authors": [
  7817. {
  7818. "name": "John Stevenson",
  7819. "email": "john-stevenson@blueyonder.co.uk"
  7820. }
  7821. ],
  7822. "description": "Restarts a process without Xdebug.",
  7823. "keywords": [
  7824. "Xdebug",
  7825. "performance"
  7826. ],
  7827. "support": {
  7828. "irc": "ircs://irc.libera.chat:6697/composer",
  7829. "issues": "https://github.com/composer/xdebug-handler/issues",
  7830. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7831. },
  7832. "funding": [
  7833. {
  7834. "url": "https://packagist.com",
  7835. "type": "custom"
  7836. },
  7837. {
  7838. "url": "https://github.com/composer",
  7839. "type": "github"
  7840. },
  7841. {
  7842. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7843. "type": "tidelift"
  7844. }
  7845. ],
  7846. "time": "2024-05-06T16:37:16+00:00"
  7847. },
  7848. {
  7849. "name": "evenement/evenement",
  7850. "version": "v3.0.2",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/igorw/evenement.git",
  7854. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7859. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "php": ">=7.0"
  7864. },
  7865. "require-dev": {
  7866. "phpunit/phpunit": "^9 || ^6"
  7867. },
  7868. "type": "library",
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Evenement\\": "src/"
  7872. }
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Igor Wiedler",
  7881. "email": "igor@wiedler.ch"
  7882. }
  7883. ],
  7884. "description": "Événement is a very simple event dispatching library for PHP",
  7885. "keywords": [
  7886. "event-dispatcher",
  7887. "event-emitter"
  7888. ],
  7889. "support": {
  7890. "issues": "https://github.com/igorw/evenement/issues",
  7891. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7892. },
  7893. "time": "2023-08-08T05:53:35+00:00"
  7894. },
  7895. {
  7896. "name": "fidry/cpu-core-counter",
  7897. "version": "1.2.0",
  7898. "source": {
  7899. "type": "git",
  7900. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7901. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7902. },
  7903. "dist": {
  7904. "type": "zip",
  7905. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7906. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7907. "shasum": ""
  7908. },
  7909. "require": {
  7910. "php": "^7.2 || ^8.0"
  7911. },
  7912. "require-dev": {
  7913. "fidry/makefile": "^0.2.0",
  7914. "fidry/php-cs-fixer-config": "^1.1.2",
  7915. "phpstan/extension-installer": "^1.2.0",
  7916. "phpstan/phpstan": "^1.9.2",
  7917. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7918. "phpstan/phpstan-phpunit": "^1.2.2",
  7919. "phpstan/phpstan-strict-rules": "^1.4.4",
  7920. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7921. "webmozarts/strict-phpunit": "^7.5"
  7922. },
  7923. "type": "library",
  7924. "autoload": {
  7925. "psr-4": {
  7926. "Fidry\\CpuCoreCounter\\": "src/"
  7927. }
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "MIT"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Théo FIDRY",
  7936. "email": "theo.fidry@gmail.com"
  7937. }
  7938. ],
  7939. "description": "Tiny utility to get the number of CPU cores.",
  7940. "keywords": [
  7941. "CPU",
  7942. "core"
  7943. ],
  7944. "support": {
  7945. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7946. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7947. },
  7948. "funding": [
  7949. {
  7950. "url": "https://github.com/theofidry",
  7951. "type": "github"
  7952. }
  7953. ],
  7954. "time": "2024-08-06T10:04:20+00:00"
  7955. },
  7956. {
  7957. "name": "friendsofphp/php-cs-fixer",
  7958. "version": "v3.65.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7962. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7967. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7968. "shasum": ""
  7969. },
  7970. "require": {
  7971. "clue/ndjson-react": "^1.0",
  7972. "composer/semver": "^3.4",
  7973. "composer/xdebug-handler": "^3.0.3",
  7974. "ext-filter": "*",
  7975. "ext-json": "*",
  7976. "ext-tokenizer": "*",
  7977. "fidry/cpu-core-counter": "^1.2",
  7978. "php": "^7.4 || ^8.0",
  7979. "react/child-process": "^0.6.5",
  7980. "react/event-loop": "^1.0",
  7981. "react/promise": "^2.0 || ^3.0",
  7982. "react/socket": "^1.0",
  7983. "react/stream": "^1.0",
  7984. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7985. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7986. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7987. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7988. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7989. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7990. "symfony/polyfill-mbstring": "^1.28",
  7991. "symfony/polyfill-php80": "^1.28",
  7992. "symfony/polyfill-php81": "^1.28",
  7993. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7994. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7995. },
  7996. "require-dev": {
  7997. "facile-it/paraunit": "^1.3.1 || ^2.4",
  7998. "infection/infection": "^0.29.8",
  7999. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8000. "keradus/cli-executor": "^2.1",
  8001. "mikey179/vfsstream": "^1.6.12",
  8002. "php-coveralls/php-coveralls": "^2.7",
  8003. "php-cs-fixer/accessible-object": "^1.1",
  8004. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8005. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8006. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8007. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8008. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8009. },
  8010. "suggest": {
  8011. "ext-dom": "For handling output formats in XML",
  8012. "ext-mbstring": "For handling non-UTF8 characters."
  8013. },
  8014. "bin": [
  8015. "php-cs-fixer"
  8016. ],
  8017. "type": "application",
  8018. "autoload": {
  8019. "psr-4": {
  8020. "PhpCsFixer\\": "src/"
  8021. },
  8022. "exclude-from-classmap": [
  8023. "src/Fixer/Internal/*"
  8024. ]
  8025. },
  8026. "notification-url": "https://packagist.org/downloads/",
  8027. "license": [
  8028. "MIT"
  8029. ],
  8030. "authors": [
  8031. {
  8032. "name": "Fabien Potencier",
  8033. "email": "fabien@symfony.com"
  8034. },
  8035. {
  8036. "name": "Dariusz Rumiński",
  8037. "email": "dariusz.ruminski@gmail.com"
  8038. }
  8039. ],
  8040. "description": "A tool to automatically fix PHP code style",
  8041. "keywords": [
  8042. "Static code analysis",
  8043. "fixer",
  8044. "standards",
  8045. "static analysis"
  8046. ],
  8047. "support": {
  8048. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8049. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8050. },
  8051. "funding": [
  8052. {
  8053. "url": "https://github.com/keradus",
  8054. "type": "github"
  8055. }
  8056. ],
  8057. "time": "2024-11-25T00:39:24+00:00"
  8058. },
  8059. {
  8060. "name": "hamcrest/hamcrest-php",
  8061. "version": "v2.0.1",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8065. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8070. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8071. "shasum": ""
  8072. },
  8073. "require": {
  8074. "php": "^5.3|^7.0|^8.0"
  8075. },
  8076. "replace": {
  8077. "cordoval/hamcrest-php": "*",
  8078. "davedevelopment/hamcrest-php": "*",
  8079. "kodova/hamcrest-php": "*"
  8080. },
  8081. "require-dev": {
  8082. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8083. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8084. },
  8085. "type": "library",
  8086. "extra": {
  8087. "branch-alias": {
  8088. "dev-master": "2.1-dev"
  8089. }
  8090. },
  8091. "autoload": {
  8092. "classmap": [
  8093. "hamcrest"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "BSD-3-Clause"
  8099. ],
  8100. "description": "This is the PHP port of Hamcrest Matchers",
  8101. "keywords": [
  8102. "test"
  8103. ],
  8104. "support": {
  8105. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8106. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8107. },
  8108. "time": "2020-07-09T08:09:16+00:00"
  8109. },
  8110. {
  8111. "name": "hyperf/devtool",
  8112. "version": "v3.1.42",
  8113. "source": {
  8114. "type": "git",
  8115. "url": "https://github.com/hyperf/devtool.git",
  8116. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8117. },
  8118. "dist": {
  8119. "type": "zip",
  8120. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8121. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8122. "shasum": ""
  8123. },
  8124. "require": {
  8125. "hyperf/code-parser": "~3.1.0",
  8126. "hyperf/command": "~3.1.0",
  8127. "hyperf/contract": "~3.1.0",
  8128. "hyperf/di": "~3.1.0",
  8129. "hyperf/support": "~3.1.0",
  8130. "hyperf/utils": "~3.1.0",
  8131. "php": ">=8.1"
  8132. },
  8133. "type": "library",
  8134. "extra": {
  8135. "hyperf": {
  8136. "config": "Hyperf\\Devtool\\ConfigProvider"
  8137. },
  8138. "branch-alias": {
  8139. "dev-master": "3.1-dev"
  8140. }
  8141. },
  8142. "autoload": {
  8143. "psr-4": {
  8144. "Hyperf\\Devtool\\": "src/"
  8145. }
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "description": "A Devtool for Hyperf.",
  8152. "homepage": "https://hyperf.io",
  8153. "keywords": [
  8154. "dev",
  8155. "devtool",
  8156. "hyperf",
  8157. "php",
  8158. "swoole"
  8159. ],
  8160. "support": {
  8161. "docs": "https://hyperf.wiki",
  8162. "issues": "https://github.com/hyperf/hyperf/issues",
  8163. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8164. "source": "https://github.com/hyperf/hyperf"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8169. "type": "custom"
  8170. },
  8171. {
  8172. "url": "https://opencollective.com/hyperf",
  8173. "type": "open_collective"
  8174. }
  8175. ],
  8176. "time": "2024-09-25T02:54:12+00:00"
  8177. },
  8178. {
  8179. "name": "hyperf/testing",
  8180. "version": "v3.1.48",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/hyperf/testing.git",
  8184. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8189. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8190. "shasum": ""
  8191. },
  8192. "require": {
  8193. "hyperf/codec": "~3.1.0",
  8194. "hyperf/collection": "~3.1.0",
  8195. "hyperf/contract": "~3.1.0",
  8196. "hyperf/coroutine": "~3.1.0",
  8197. "hyperf/http-message": "~3.1.0",
  8198. "hyperf/http-server": "~3.1.0",
  8199. "hyperf/support": "~3.1.0",
  8200. "hyperf/utils": "~3.1.0",
  8201. "php": ">=8.1",
  8202. "phpunit/phpunit": "^10.0",
  8203. "psr/container": "^1.0 || ^2.0",
  8204. "symfony/http-foundation": "^5.4 || ^6.0"
  8205. },
  8206. "suggest": {
  8207. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8208. },
  8209. "bin": [
  8210. "co-phpunit"
  8211. ],
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-master": "3.1-dev"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "psr-4": {
  8220. "Hyperf\\Testing\\": "src/"
  8221. }
  8222. },
  8223. "notification-url": "https://packagist.org/downloads/",
  8224. "license": [
  8225. "MIT"
  8226. ],
  8227. "description": "Testing for hyperf",
  8228. "keywords": [
  8229. "dev",
  8230. "php",
  8231. "swoole",
  8232. "testing"
  8233. ],
  8234. "support": {
  8235. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  8236. },
  8237. "funding": [
  8238. {
  8239. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8240. "type": "custom"
  8241. },
  8242. {
  8243. "url": "https://opencollective.com/hyperf",
  8244. "type": "open_collective"
  8245. }
  8246. ],
  8247. "time": "2024-12-12T02:12:29+00:00"
  8248. },
  8249. {
  8250. "name": "hyperf/watcher",
  8251. "version": "v3.1.43",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/hyperf/watcher.git",
  8255. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8260. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8261. "shasum": ""
  8262. },
  8263. "require": {
  8264. "ext-posix": "*",
  8265. "hyperf/codec": "~3.1.0",
  8266. "hyperf/command": "~3.1.0",
  8267. "hyperf/di": "~3.1.0",
  8268. "hyperf/framework": "~3.1.0",
  8269. "hyperf/support": "~3.1.0",
  8270. "php": ">=8.1"
  8271. },
  8272. "type": "library",
  8273. "extra": {
  8274. "hyperf": {
  8275. "config": "Hyperf\\Watcher\\ConfigProvider"
  8276. },
  8277. "branch-alias": {
  8278. "dev-master": "3.1-dev"
  8279. }
  8280. },
  8281. "autoload": {
  8282. "files": [
  8283. "src/Functions.php"
  8284. ],
  8285. "psr-4": {
  8286. "Hyperf\\Watcher\\": "src/"
  8287. }
  8288. },
  8289. "notification-url": "https://packagist.org/downloads/",
  8290. "license": [
  8291. "MIT"
  8292. ],
  8293. "description": "Hot reload watcher for Hyperf",
  8294. "keywords": [
  8295. "dev",
  8296. "hyperf",
  8297. "php"
  8298. ],
  8299. "support": {
  8300. "issues": "https://github.com/hyperf/watcher/issues",
  8301. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8306. "type": "custom"
  8307. },
  8308. {
  8309. "url": "https://opencollective.com/hyperf",
  8310. "type": "open_collective"
  8311. }
  8312. ],
  8313. "time": "2024-10-06T12:33:12+00:00"
  8314. },
  8315. {
  8316. "name": "mockery/mockery",
  8317. "version": "1.6.12",
  8318. "source": {
  8319. "type": "git",
  8320. "url": "https://github.com/mockery/mockery.git",
  8321. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8322. },
  8323. "dist": {
  8324. "type": "zip",
  8325. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8326. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8327. "shasum": ""
  8328. },
  8329. "require": {
  8330. "hamcrest/hamcrest-php": "^2.0.1",
  8331. "lib-pcre": ">=7.0",
  8332. "php": ">=7.3"
  8333. },
  8334. "conflict": {
  8335. "phpunit/phpunit": "<8.0"
  8336. },
  8337. "require-dev": {
  8338. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8339. "symplify/easy-coding-standard": "^12.1.14"
  8340. },
  8341. "type": "library",
  8342. "autoload": {
  8343. "files": [
  8344. "library/helpers.php",
  8345. "library/Mockery.php"
  8346. ],
  8347. "psr-4": {
  8348. "Mockery\\": "library/Mockery"
  8349. }
  8350. },
  8351. "notification-url": "https://packagist.org/downloads/",
  8352. "license": [
  8353. "BSD-3-Clause"
  8354. ],
  8355. "authors": [
  8356. {
  8357. "name": "Pádraic Brady",
  8358. "email": "padraic.brady@gmail.com",
  8359. "homepage": "https://github.com/padraic",
  8360. "role": "Author"
  8361. },
  8362. {
  8363. "name": "Dave Marshall",
  8364. "email": "dave.marshall@atstsolutions.co.uk",
  8365. "homepage": "https://davedevelopment.co.uk",
  8366. "role": "Developer"
  8367. },
  8368. {
  8369. "name": "Nathanael Esayeas",
  8370. "email": "nathanael.esayeas@protonmail.com",
  8371. "homepage": "https://github.com/ghostwriter",
  8372. "role": "Lead Developer"
  8373. }
  8374. ],
  8375. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8376. "homepage": "https://github.com/mockery/mockery",
  8377. "keywords": [
  8378. "BDD",
  8379. "TDD",
  8380. "library",
  8381. "mock",
  8382. "mock objects",
  8383. "mockery",
  8384. "stub",
  8385. "test",
  8386. "test double",
  8387. "testing"
  8388. ],
  8389. "support": {
  8390. "docs": "https://docs.mockery.io/",
  8391. "issues": "https://github.com/mockery/mockery/issues",
  8392. "rss": "https://github.com/mockery/mockery/releases.atom",
  8393. "security": "https://github.com/mockery/mockery/security/advisories",
  8394. "source": "https://github.com/mockery/mockery"
  8395. },
  8396. "time": "2024-05-16T03:13:13+00:00"
  8397. },
  8398. {
  8399. "name": "myclabs/deep-copy",
  8400. "version": "1.12.1",
  8401. "source": {
  8402. "type": "git",
  8403. "url": "https://github.com/myclabs/DeepCopy.git",
  8404. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8405. },
  8406. "dist": {
  8407. "type": "zip",
  8408. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8409. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8410. "shasum": ""
  8411. },
  8412. "require": {
  8413. "php": "^7.1 || ^8.0"
  8414. },
  8415. "conflict": {
  8416. "doctrine/collections": "<1.6.8",
  8417. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8418. },
  8419. "require-dev": {
  8420. "doctrine/collections": "^1.6.8",
  8421. "doctrine/common": "^2.13.3 || ^3.2.2",
  8422. "phpspec/prophecy": "^1.10",
  8423. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8424. },
  8425. "type": "library",
  8426. "autoload": {
  8427. "files": [
  8428. "src/DeepCopy/deep_copy.php"
  8429. ],
  8430. "psr-4": {
  8431. "DeepCopy\\": "src/DeepCopy/"
  8432. }
  8433. },
  8434. "notification-url": "https://packagist.org/downloads/",
  8435. "license": [
  8436. "MIT"
  8437. ],
  8438. "description": "Create deep copies (clones) of your objects",
  8439. "keywords": [
  8440. "clone",
  8441. "copy",
  8442. "duplicate",
  8443. "object",
  8444. "object graph"
  8445. ],
  8446. "support": {
  8447. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8448. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8449. },
  8450. "funding": [
  8451. {
  8452. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8453. "type": "tidelift"
  8454. }
  8455. ],
  8456. "time": "2024-11-08T17:47:46+00:00"
  8457. },
  8458. {
  8459. "name": "phar-io/manifest",
  8460. "version": "2.0.4",
  8461. "source": {
  8462. "type": "git",
  8463. "url": "https://github.com/phar-io/manifest.git",
  8464. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8465. },
  8466. "dist": {
  8467. "type": "zip",
  8468. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8469. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8470. "shasum": ""
  8471. },
  8472. "require": {
  8473. "ext-dom": "*",
  8474. "ext-libxml": "*",
  8475. "ext-phar": "*",
  8476. "ext-xmlwriter": "*",
  8477. "phar-io/version": "^3.0.1",
  8478. "php": "^7.2 || ^8.0"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-master": "2.0.x-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "classmap": [
  8488. "src/"
  8489. ]
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "BSD-3-Clause"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Arne Blankerts",
  8498. "email": "arne@blankerts.de",
  8499. "role": "Developer"
  8500. },
  8501. {
  8502. "name": "Sebastian Heuer",
  8503. "email": "sebastian@phpeople.de",
  8504. "role": "Developer"
  8505. },
  8506. {
  8507. "name": "Sebastian Bergmann",
  8508. "email": "sebastian@phpunit.de",
  8509. "role": "Developer"
  8510. }
  8511. ],
  8512. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8513. "support": {
  8514. "issues": "https://github.com/phar-io/manifest/issues",
  8515. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://github.com/theseer",
  8520. "type": "github"
  8521. }
  8522. ],
  8523. "time": "2024-03-03T12:33:53+00:00"
  8524. },
  8525. {
  8526. "name": "phar-io/version",
  8527. "version": "3.2.1",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/phar-io/version.git",
  8531. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8536. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8537. "shasum": ""
  8538. },
  8539. "require": {
  8540. "php": "^7.2 || ^8.0"
  8541. },
  8542. "type": "library",
  8543. "autoload": {
  8544. "classmap": [
  8545. "src/"
  8546. ]
  8547. },
  8548. "notification-url": "https://packagist.org/downloads/",
  8549. "license": [
  8550. "BSD-3-Clause"
  8551. ],
  8552. "authors": [
  8553. {
  8554. "name": "Arne Blankerts",
  8555. "email": "arne@blankerts.de",
  8556. "role": "Developer"
  8557. },
  8558. {
  8559. "name": "Sebastian Heuer",
  8560. "email": "sebastian@phpeople.de",
  8561. "role": "Developer"
  8562. },
  8563. {
  8564. "name": "Sebastian Bergmann",
  8565. "email": "sebastian@phpunit.de",
  8566. "role": "Developer"
  8567. }
  8568. ],
  8569. "description": "Library for handling version information and constraints",
  8570. "support": {
  8571. "issues": "https://github.com/phar-io/version/issues",
  8572. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8573. },
  8574. "time": "2022-02-21T01:04:05+00:00"
  8575. },
  8576. {
  8577. "name": "phpstan/phpstan",
  8578. "version": "1.12.13",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/phpstan/phpstan.git",
  8582. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b469068840cfa031e1deaf2fa1886d00e20680f",
  8587. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "php": "^7.2|^8.0"
  8592. },
  8593. "conflict": {
  8594. "phpstan/phpstan-shim": "*"
  8595. },
  8596. "bin": [
  8597. "phpstan",
  8598. "phpstan.phar"
  8599. ],
  8600. "type": "library",
  8601. "autoload": {
  8602. "files": [
  8603. "bootstrap.php"
  8604. ]
  8605. },
  8606. "notification-url": "https://packagist.org/downloads/",
  8607. "license": [
  8608. "MIT"
  8609. ],
  8610. "description": "PHPStan - PHP Static Analysis Tool",
  8611. "keywords": [
  8612. "dev",
  8613. "static analysis"
  8614. ],
  8615. "support": {
  8616. "docs": "https://phpstan.org/user-guide/getting-started",
  8617. "forum": "https://github.com/phpstan/phpstan/discussions",
  8618. "issues": "https://github.com/phpstan/phpstan/issues",
  8619. "security": "https://github.com/phpstan/phpstan/security/policy",
  8620. "source": "https://github.com/phpstan/phpstan-src"
  8621. },
  8622. "funding": [
  8623. {
  8624. "url": "https://github.com/ondrejmirtes",
  8625. "type": "github"
  8626. },
  8627. {
  8628. "url": "https://github.com/phpstan",
  8629. "type": "github"
  8630. }
  8631. ],
  8632. "time": "2024-12-17T17:00:20+00:00"
  8633. },
  8634. {
  8635. "name": "phpunit/php-code-coverage",
  8636. "version": "10.1.16",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8640. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8645. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "ext-dom": "*",
  8650. "ext-libxml": "*",
  8651. "ext-xmlwriter": "*",
  8652. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8653. "php": ">=8.1",
  8654. "phpunit/php-file-iterator": "^4.1.0",
  8655. "phpunit/php-text-template": "^3.0.1",
  8656. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8657. "sebastian/complexity": "^3.2.0",
  8658. "sebastian/environment": "^6.1.0",
  8659. "sebastian/lines-of-code": "^2.0.2",
  8660. "sebastian/version": "^4.0.1",
  8661. "theseer/tokenizer": "^1.2.3"
  8662. },
  8663. "require-dev": {
  8664. "phpunit/phpunit": "^10.1"
  8665. },
  8666. "suggest": {
  8667. "ext-pcov": "PHP extension that provides line coverage",
  8668. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8669. },
  8670. "type": "library",
  8671. "extra": {
  8672. "branch-alias": {
  8673. "dev-main": "10.1.x-dev"
  8674. }
  8675. },
  8676. "autoload": {
  8677. "classmap": [
  8678. "src/"
  8679. ]
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "BSD-3-Clause"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Sebastian Bergmann",
  8688. "email": "sebastian@phpunit.de",
  8689. "role": "lead"
  8690. }
  8691. ],
  8692. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8693. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8694. "keywords": [
  8695. "coverage",
  8696. "testing",
  8697. "xunit"
  8698. ],
  8699. "support": {
  8700. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8701. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8702. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8703. },
  8704. "funding": [
  8705. {
  8706. "url": "https://github.com/sebastianbergmann",
  8707. "type": "github"
  8708. }
  8709. ],
  8710. "time": "2024-08-22T04:31:57+00:00"
  8711. },
  8712. {
  8713. "name": "phpunit/php-file-iterator",
  8714. "version": "4.1.0",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8718. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8723. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "php": ">=8.1"
  8728. },
  8729. "require-dev": {
  8730. "phpunit/phpunit": "^10.0"
  8731. },
  8732. "type": "library",
  8733. "extra": {
  8734. "branch-alias": {
  8735. "dev-main": "4.0-dev"
  8736. }
  8737. },
  8738. "autoload": {
  8739. "classmap": [
  8740. "src/"
  8741. ]
  8742. },
  8743. "notification-url": "https://packagist.org/downloads/",
  8744. "license": [
  8745. "BSD-3-Clause"
  8746. ],
  8747. "authors": [
  8748. {
  8749. "name": "Sebastian Bergmann",
  8750. "email": "sebastian@phpunit.de",
  8751. "role": "lead"
  8752. }
  8753. ],
  8754. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8755. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8756. "keywords": [
  8757. "filesystem",
  8758. "iterator"
  8759. ],
  8760. "support": {
  8761. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8762. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8763. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8764. },
  8765. "funding": [
  8766. {
  8767. "url": "https://github.com/sebastianbergmann",
  8768. "type": "github"
  8769. }
  8770. ],
  8771. "time": "2023-08-31T06:24:48+00:00"
  8772. },
  8773. {
  8774. "name": "phpunit/php-invoker",
  8775. "version": "4.0.0",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8779. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8784. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "php": ">=8.1"
  8789. },
  8790. "require-dev": {
  8791. "ext-pcntl": "*",
  8792. "phpunit/phpunit": "^10.0"
  8793. },
  8794. "suggest": {
  8795. "ext-pcntl": "*"
  8796. },
  8797. "type": "library",
  8798. "extra": {
  8799. "branch-alias": {
  8800. "dev-main": "4.0-dev"
  8801. }
  8802. },
  8803. "autoload": {
  8804. "classmap": [
  8805. "src/"
  8806. ]
  8807. },
  8808. "notification-url": "https://packagist.org/downloads/",
  8809. "license": [
  8810. "BSD-3-Clause"
  8811. ],
  8812. "authors": [
  8813. {
  8814. "name": "Sebastian Bergmann",
  8815. "email": "sebastian@phpunit.de",
  8816. "role": "lead"
  8817. }
  8818. ],
  8819. "description": "Invoke callables with a timeout",
  8820. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8821. "keywords": [
  8822. "process"
  8823. ],
  8824. "support": {
  8825. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8826. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8827. },
  8828. "funding": [
  8829. {
  8830. "url": "https://github.com/sebastianbergmann",
  8831. "type": "github"
  8832. }
  8833. ],
  8834. "time": "2023-02-03T06:56:09+00:00"
  8835. },
  8836. {
  8837. "name": "phpunit/php-text-template",
  8838. "version": "3.0.1",
  8839. "source": {
  8840. "type": "git",
  8841. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8842. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8843. },
  8844. "dist": {
  8845. "type": "zip",
  8846. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8847. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8848. "shasum": ""
  8849. },
  8850. "require": {
  8851. "php": ">=8.1"
  8852. },
  8853. "require-dev": {
  8854. "phpunit/phpunit": "^10.0"
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-main": "3.0-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "classmap": [
  8864. "src/"
  8865. ]
  8866. },
  8867. "notification-url": "https://packagist.org/downloads/",
  8868. "license": [
  8869. "BSD-3-Clause"
  8870. ],
  8871. "authors": [
  8872. {
  8873. "name": "Sebastian Bergmann",
  8874. "email": "sebastian@phpunit.de",
  8875. "role": "lead"
  8876. }
  8877. ],
  8878. "description": "Simple template engine.",
  8879. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8880. "keywords": [
  8881. "template"
  8882. ],
  8883. "support": {
  8884. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8885. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8886. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8887. },
  8888. "funding": [
  8889. {
  8890. "url": "https://github.com/sebastianbergmann",
  8891. "type": "github"
  8892. }
  8893. ],
  8894. "time": "2023-08-31T14:07:24+00:00"
  8895. },
  8896. {
  8897. "name": "phpunit/php-timer",
  8898. "version": "6.0.0",
  8899. "source": {
  8900. "type": "git",
  8901. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8902. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8903. },
  8904. "dist": {
  8905. "type": "zip",
  8906. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8907. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8908. "shasum": ""
  8909. },
  8910. "require": {
  8911. "php": ">=8.1"
  8912. },
  8913. "require-dev": {
  8914. "phpunit/phpunit": "^10.0"
  8915. },
  8916. "type": "library",
  8917. "extra": {
  8918. "branch-alias": {
  8919. "dev-main": "6.0-dev"
  8920. }
  8921. },
  8922. "autoload": {
  8923. "classmap": [
  8924. "src/"
  8925. ]
  8926. },
  8927. "notification-url": "https://packagist.org/downloads/",
  8928. "license": [
  8929. "BSD-3-Clause"
  8930. ],
  8931. "authors": [
  8932. {
  8933. "name": "Sebastian Bergmann",
  8934. "email": "sebastian@phpunit.de",
  8935. "role": "lead"
  8936. }
  8937. ],
  8938. "description": "Utility class for timing",
  8939. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8940. "keywords": [
  8941. "timer"
  8942. ],
  8943. "support": {
  8944. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8945. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8946. },
  8947. "funding": [
  8948. {
  8949. "url": "https://github.com/sebastianbergmann",
  8950. "type": "github"
  8951. }
  8952. ],
  8953. "time": "2023-02-03T06:57:52+00:00"
  8954. },
  8955. {
  8956. "name": "phpunit/phpunit",
  8957. "version": "10.5.40",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8961. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  8966. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "ext-dom": "*",
  8971. "ext-json": "*",
  8972. "ext-libxml": "*",
  8973. "ext-mbstring": "*",
  8974. "ext-xml": "*",
  8975. "ext-xmlwriter": "*",
  8976. "myclabs/deep-copy": "^1.12.1",
  8977. "phar-io/manifest": "^2.0.4",
  8978. "phar-io/version": "^3.2.1",
  8979. "php": ">=8.1",
  8980. "phpunit/php-code-coverage": "^10.1.16",
  8981. "phpunit/php-file-iterator": "^4.1.0",
  8982. "phpunit/php-invoker": "^4.0.0",
  8983. "phpunit/php-text-template": "^3.0.1",
  8984. "phpunit/php-timer": "^6.0.0",
  8985. "sebastian/cli-parser": "^2.0.1",
  8986. "sebastian/code-unit": "^2.0.0",
  8987. "sebastian/comparator": "^5.0.3",
  8988. "sebastian/diff": "^5.1.1",
  8989. "sebastian/environment": "^6.1.0",
  8990. "sebastian/exporter": "^5.1.2",
  8991. "sebastian/global-state": "^6.0.2",
  8992. "sebastian/object-enumerator": "^5.0.0",
  8993. "sebastian/recursion-context": "^5.0.0",
  8994. "sebastian/type": "^4.0.0",
  8995. "sebastian/version": "^4.0.1"
  8996. },
  8997. "suggest": {
  8998. "ext-soap": "To be able to generate mocks based on WSDL files"
  8999. },
  9000. "bin": [
  9001. "phpunit"
  9002. ],
  9003. "type": "library",
  9004. "extra": {
  9005. "branch-alias": {
  9006. "dev-main": "10.5-dev"
  9007. }
  9008. },
  9009. "autoload": {
  9010. "files": [
  9011. "src/Framework/Assert/Functions.php"
  9012. ],
  9013. "classmap": [
  9014. "src/"
  9015. ]
  9016. },
  9017. "notification-url": "https://packagist.org/downloads/",
  9018. "license": [
  9019. "BSD-3-Clause"
  9020. ],
  9021. "authors": [
  9022. {
  9023. "name": "Sebastian Bergmann",
  9024. "email": "sebastian@phpunit.de",
  9025. "role": "lead"
  9026. }
  9027. ],
  9028. "description": "The PHP Unit Testing framework.",
  9029. "homepage": "https://phpunit.de/",
  9030. "keywords": [
  9031. "phpunit",
  9032. "testing",
  9033. "xunit"
  9034. ],
  9035. "support": {
  9036. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9037. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9038. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.40"
  9039. },
  9040. "funding": [
  9041. {
  9042. "url": "https://phpunit.de/sponsors.html",
  9043. "type": "custom"
  9044. },
  9045. {
  9046. "url": "https://github.com/sebastianbergmann",
  9047. "type": "github"
  9048. },
  9049. {
  9050. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9051. "type": "tidelift"
  9052. }
  9053. ],
  9054. "time": "2024-12-21T05:49:06+00:00"
  9055. },
  9056. {
  9057. "name": "react/cache",
  9058. "version": "v1.2.0",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/reactphp/cache.git",
  9062. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9067. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9068. "shasum": ""
  9069. },
  9070. "require": {
  9071. "php": ">=5.3.0",
  9072. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9073. },
  9074. "require-dev": {
  9075. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9076. },
  9077. "type": "library",
  9078. "autoload": {
  9079. "psr-4": {
  9080. "React\\Cache\\": "src/"
  9081. }
  9082. },
  9083. "notification-url": "https://packagist.org/downloads/",
  9084. "license": [
  9085. "MIT"
  9086. ],
  9087. "authors": [
  9088. {
  9089. "name": "Christian Lück",
  9090. "email": "christian@clue.engineering",
  9091. "homepage": "https://clue.engineering/"
  9092. },
  9093. {
  9094. "name": "Cees-Jan Kiewiet",
  9095. "email": "reactphp@ceesjankiewiet.nl",
  9096. "homepage": "https://wyrihaximus.net/"
  9097. },
  9098. {
  9099. "name": "Jan Sorgalla",
  9100. "email": "jsorgalla@gmail.com",
  9101. "homepage": "https://sorgalla.com/"
  9102. },
  9103. {
  9104. "name": "Chris Boden",
  9105. "email": "cboden@gmail.com",
  9106. "homepage": "https://cboden.dev/"
  9107. }
  9108. ],
  9109. "description": "Async, Promise-based cache interface for ReactPHP",
  9110. "keywords": [
  9111. "cache",
  9112. "caching",
  9113. "promise",
  9114. "reactphp"
  9115. ],
  9116. "support": {
  9117. "issues": "https://github.com/reactphp/cache/issues",
  9118. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9119. },
  9120. "funding": [
  9121. {
  9122. "url": "https://opencollective.com/reactphp",
  9123. "type": "open_collective"
  9124. }
  9125. ],
  9126. "time": "2022-11-30T15:59:55+00:00"
  9127. },
  9128. {
  9129. "name": "react/child-process",
  9130. "version": "v0.6.5",
  9131. "source": {
  9132. "type": "git",
  9133. "url": "https://github.com/reactphp/child-process.git",
  9134. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9135. },
  9136. "dist": {
  9137. "type": "zip",
  9138. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9139. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9140. "shasum": ""
  9141. },
  9142. "require": {
  9143. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9144. "php": ">=5.3.0",
  9145. "react/event-loop": "^1.2",
  9146. "react/stream": "^1.2"
  9147. },
  9148. "require-dev": {
  9149. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9150. "react/socket": "^1.8",
  9151. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9152. },
  9153. "type": "library",
  9154. "autoload": {
  9155. "psr-4": {
  9156. "React\\ChildProcess\\": "src"
  9157. }
  9158. },
  9159. "notification-url": "https://packagist.org/downloads/",
  9160. "license": [
  9161. "MIT"
  9162. ],
  9163. "authors": [
  9164. {
  9165. "name": "Christian Lück",
  9166. "email": "christian@clue.engineering",
  9167. "homepage": "https://clue.engineering/"
  9168. },
  9169. {
  9170. "name": "Cees-Jan Kiewiet",
  9171. "email": "reactphp@ceesjankiewiet.nl",
  9172. "homepage": "https://wyrihaximus.net/"
  9173. },
  9174. {
  9175. "name": "Jan Sorgalla",
  9176. "email": "jsorgalla@gmail.com",
  9177. "homepage": "https://sorgalla.com/"
  9178. },
  9179. {
  9180. "name": "Chris Boden",
  9181. "email": "cboden@gmail.com",
  9182. "homepage": "https://cboden.dev/"
  9183. }
  9184. ],
  9185. "description": "Event-driven library for executing child processes with ReactPHP.",
  9186. "keywords": [
  9187. "event-driven",
  9188. "process",
  9189. "reactphp"
  9190. ],
  9191. "support": {
  9192. "issues": "https://github.com/reactphp/child-process/issues",
  9193. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9194. },
  9195. "funding": [
  9196. {
  9197. "url": "https://github.com/WyriHaximus",
  9198. "type": "github"
  9199. },
  9200. {
  9201. "url": "https://github.com/clue",
  9202. "type": "github"
  9203. }
  9204. ],
  9205. "time": "2022-09-16T13:41:56+00:00"
  9206. },
  9207. {
  9208. "name": "react/dns",
  9209. "version": "v1.13.0",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/reactphp/dns.git",
  9213. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9218. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": ">=5.3.0",
  9223. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9224. "react/event-loop": "^1.2",
  9225. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9226. },
  9227. "require-dev": {
  9228. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9229. "react/async": "^4.3 || ^3 || ^2",
  9230. "react/promise-timer": "^1.11"
  9231. },
  9232. "type": "library",
  9233. "autoload": {
  9234. "psr-4": {
  9235. "React\\Dns\\": "src/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Christian Lück",
  9245. "email": "christian@clue.engineering",
  9246. "homepage": "https://clue.engineering/"
  9247. },
  9248. {
  9249. "name": "Cees-Jan Kiewiet",
  9250. "email": "reactphp@ceesjankiewiet.nl",
  9251. "homepage": "https://wyrihaximus.net/"
  9252. },
  9253. {
  9254. "name": "Jan Sorgalla",
  9255. "email": "jsorgalla@gmail.com",
  9256. "homepage": "https://sorgalla.com/"
  9257. },
  9258. {
  9259. "name": "Chris Boden",
  9260. "email": "cboden@gmail.com",
  9261. "homepage": "https://cboden.dev/"
  9262. }
  9263. ],
  9264. "description": "Async DNS resolver for ReactPHP",
  9265. "keywords": [
  9266. "async",
  9267. "dns",
  9268. "dns-resolver",
  9269. "reactphp"
  9270. ],
  9271. "support": {
  9272. "issues": "https://github.com/reactphp/dns/issues",
  9273. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9274. },
  9275. "funding": [
  9276. {
  9277. "url": "https://opencollective.com/reactphp",
  9278. "type": "open_collective"
  9279. }
  9280. ],
  9281. "time": "2024-06-13T14:18:03+00:00"
  9282. },
  9283. {
  9284. "name": "react/event-loop",
  9285. "version": "v1.5.0",
  9286. "source": {
  9287. "type": "git",
  9288. "url": "https://github.com/reactphp/event-loop.git",
  9289. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9290. },
  9291. "dist": {
  9292. "type": "zip",
  9293. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9294. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9295. "shasum": ""
  9296. },
  9297. "require": {
  9298. "php": ">=5.3.0"
  9299. },
  9300. "require-dev": {
  9301. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9302. },
  9303. "suggest": {
  9304. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9305. },
  9306. "type": "library",
  9307. "autoload": {
  9308. "psr-4": {
  9309. "React\\EventLoop\\": "src/"
  9310. }
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "MIT"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Christian Lück",
  9319. "email": "christian@clue.engineering",
  9320. "homepage": "https://clue.engineering/"
  9321. },
  9322. {
  9323. "name": "Cees-Jan Kiewiet",
  9324. "email": "reactphp@ceesjankiewiet.nl",
  9325. "homepage": "https://wyrihaximus.net/"
  9326. },
  9327. {
  9328. "name": "Jan Sorgalla",
  9329. "email": "jsorgalla@gmail.com",
  9330. "homepage": "https://sorgalla.com/"
  9331. },
  9332. {
  9333. "name": "Chris Boden",
  9334. "email": "cboden@gmail.com",
  9335. "homepage": "https://cboden.dev/"
  9336. }
  9337. ],
  9338. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9339. "keywords": [
  9340. "asynchronous",
  9341. "event-loop"
  9342. ],
  9343. "support": {
  9344. "issues": "https://github.com/reactphp/event-loop/issues",
  9345. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9346. },
  9347. "funding": [
  9348. {
  9349. "url": "https://opencollective.com/reactphp",
  9350. "type": "open_collective"
  9351. }
  9352. ],
  9353. "time": "2023-11-13T13:48:05+00:00"
  9354. },
  9355. {
  9356. "name": "react/promise",
  9357. "version": "v3.2.0",
  9358. "source": {
  9359. "type": "git",
  9360. "url": "https://github.com/reactphp/promise.git",
  9361. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9362. },
  9363. "dist": {
  9364. "type": "zip",
  9365. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9366. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9367. "shasum": ""
  9368. },
  9369. "require": {
  9370. "php": ">=7.1.0"
  9371. },
  9372. "require-dev": {
  9373. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9374. "phpunit/phpunit": "^9.6 || ^7.5"
  9375. },
  9376. "type": "library",
  9377. "autoload": {
  9378. "files": [
  9379. "src/functions_include.php"
  9380. ],
  9381. "psr-4": {
  9382. "React\\Promise\\": "src/"
  9383. }
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "MIT"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Jan Sorgalla",
  9392. "email": "jsorgalla@gmail.com",
  9393. "homepage": "https://sorgalla.com/"
  9394. },
  9395. {
  9396. "name": "Christian Lück",
  9397. "email": "christian@clue.engineering",
  9398. "homepage": "https://clue.engineering/"
  9399. },
  9400. {
  9401. "name": "Cees-Jan Kiewiet",
  9402. "email": "reactphp@ceesjankiewiet.nl",
  9403. "homepage": "https://wyrihaximus.net/"
  9404. },
  9405. {
  9406. "name": "Chris Boden",
  9407. "email": "cboden@gmail.com",
  9408. "homepage": "https://cboden.dev/"
  9409. }
  9410. ],
  9411. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9412. "keywords": [
  9413. "promise",
  9414. "promises"
  9415. ],
  9416. "support": {
  9417. "issues": "https://github.com/reactphp/promise/issues",
  9418. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9419. },
  9420. "funding": [
  9421. {
  9422. "url": "https://opencollective.com/reactphp",
  9423. "type": "open_collective"
  9424. }
  9425. ],
  9426. "time": "2024-05-24T10:39:05+00:00"
  9427. },
  9428. {
  9429. "name": "react/socket",
  9430. "version": "v1.16.0",
  9431. "source": {
  9432. "type": "git",
  9433. "url": "https://github.com/reactphp/socket.git",
  9434. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9435. },
  9436. "dist": {
  9437. "type": "zip",
  9438. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9439. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9440. "shasum": ""
  9441. },
  9442. "require": {
  9443. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9444. "php": ">=5.3.0",
  9445. "react/dns": "^1.13",
  9446. "react/event-loop": "^1.2",
  9447. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9448. "react/stream": "^1.4"
  9449. },
  9450. "require-dev": {
  9451. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9452. "react/async": "^4.3 || ^3.3 || ^2",
  9453. "react/promise-stream": "^1.4",
  9454. "react/promise-timer": "^1.11"
  9455. },
  9456. "type": "library",
  9457. "autoload": {
  9458. "psr-4": {
  9459. "React\\Socket\\": "src/"
  9460. }
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "MIT"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Christian Lück",
  9469. "email": "christian@clue.engineering",
  9470. "homepage": "https://clue.engineering/"
  9471. },
  9472. {
  9473. "name": "Cees-Jan Kiewiet",
  9474. "email": "reactphp@ceesjankiewiet.nl",
  9475. "homepage": "https://wyrihaximus.net/"
  9476. },
  9477. {
  9478. "name": "Jan Sorgalla",
  9479. "email": "jsorgalla@gmail.com",
  9480. "homepage": "https://sorgalla.com/"
  9481. },
  9482. {
  9483. "name": "Chris Boden",
  9484. "email": "cboden@gmail.com",
  9485. "homepage": "https://cboden.dev/"
  9486. }
  9487. ],
  9488. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9489. "keywords": [
  9490. "Connection",
  9491. "Socket",
  9492. "async",
  9493. "reactphp",
  9494. "stream"
  9495. ],
  9496. "support": {
  9497. "issues": "https://github.com/reactphp/socket/issues",
  9498. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9499. },
  9500. "funding": [
  9501. {
  9502. "url": "https://opencollective.com/reactphp",
  9503. "type": "open_collective"
  9504. }
  9505. ],
  9506. "time": "2024-07-26T10:38:09+00:00"
  9507. },
  9508. {
  9509. "name": "react/stream",
  9510. "version": "v1.4.0",
  9511. "source": {
  9512. "type": "git",
  9513. "url": "https://github.com/reactphp/stream.git",
  9514. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9515. },
  9516. "dist": {
  9517. "type": "zip",
  9518. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9519. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9520. "shasum": ""
  9521. },
  9522. "require": {
  9523. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9524. "php": ">=5.3.8",
  9525. "react/event-loop": "^1.2"
  9526. },
  9527. "require-dev": {
  9528. "clue/stream-filter": "~1.2",
  9529. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9530. },
  9531. "type": "library",
  9532. "autoload": {
  9533. "psr-4": {
  9534. "React\\Stream\\": "src/"
  9535. }
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Christian Lück",
  9544. "email": "christian@clue.engineering",
  9545. "homepage": "https://clue.engineering/"
  9546. },
  9547. {
  9548. "name": "Cees-Jan Kiewiet",
  9549. "email": "reactphp@ceesjankiewiet.nl",
  9550. "homepage": "https://wyrihaximus.net/"
  9551. },
  9552. {
  9553. "name": "Jan Sorgalla",
  9554. "email": "jsorgalla@gmail.com",
  9555. "homepage": "https://sorgalla.com/"
  9556. },
  9557. {
  9558. "name": "Chris Boden",
  9559. "email": "cboden@gmail.com",
  9560. "homepage": "https://cboden.dev/"
  9561. }
  9562. ],
  9563. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9564. "keywords": [
  9565. "event-driven",
  9566. "io",
  9567. "non-blocking",
  9568. "pipe",
  9569. "reactphp",
  9570. "readable",
  9571. "stream",
  9572. "writable"
  9573. ],
  9574. "support": {
  9575. "issues": "https://github.com/reactphp/stream/issues",
  9576. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9577. },
  9578. "funding": [
  9579. {
  9580. "url": "https://opencollective.com/reactphp",
  9581. "type": "open_collective"
  9582. }
  9583. ],
  9584. "time": "2024-06-11T12:45:25+00:00"
  9585. },
  9586. {
  9587. "name": "sebastian/cli-parser",
  9588. "version": "2.0.1",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9592. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9597. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=8.1"
  9602. },
  9603. "require-dev": {
  9604. "phpunit/phpunit": "^10.0"
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-main": "2.0-dev"
  9610. }
  9611. },
  9612. "autoload": {
  9613. "classmap": [
  9614. "src/"
  9615. ]
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "BSD-3-Clause"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de",
  9625. "role": "lead"
  9626. }
  9627. ],
  9628. "description": "Library for parsing CLI options",
  9629. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9630. "support": {
  9631. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9632. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9633. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9634. },
  9635. "funding": [
  9636. {
  9637. "url": "https://github.com/sebastianbergmann",
  9638. "type": "github"
  9639. }
  9640. ],
  9641. "time": "2024-03-02T07:12:49+00:00"
  9642. },
  9643. {
  9644. "name": "sebastian/code-unit",
  9645. "version": "2.0.0",
  9646. "source": {
  9647. "type": "git",
  9648. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9649. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9650. },
  9651. "dist": {
  9652. "type": "zip",
  9653. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9654. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9655. "shasum": ""
  9656. },
  9657. "require": {
  9658. "php": ">=8.1"
  9659. },
  9660. "require-dev": {
  9661. "phpunit/phpunit": "^10.0"
  9662. },
  9663. "type": "library",
  9664. "extra": {
  9665. "branch-alias": {
  9666. "dev-main": "2.0-dev"
  9667. }
  9668. },
  9669. "autoload": {
  9670. "classmap": [
  9671. "src/"
  9672. ]
  9673. },
  9674. "notification-url": "https://packagist.org/downloads/",
  9675. "license": [
  9676. "BSD-3-Clause"
  9677. ],
  9678. "authors": [
  9679. {
  9680. "name": "Sebastian Bergmann",
  9681. "email": "sebastian@phpunit.de",
  9682. "role": "lead"
  9683. }
  9684. ],
  9685. "description": "Collection of value objects that represent the PHP code units",
  9686. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9687. "support": {
  9688. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9689. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9690. },
  9691. "funding": [
  9692. {
  9693. "url": "https://github.com/sebastianbergmann",
  9694. "type": "github"
  9695. }
  9696. ],
  9697. "time": "2023-02-03T06:58:43+00:00"
  9698. },
  9699. {
  9700. "name": "sebastian/code-unit-reverse-lookup",
  9701. "version": "3.0.0",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9705. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9710. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "php": ">=8.1"
  9715. },
  9716. "require-dev": {
  9717. "phpunit/phpunit": "^10.0"
  9718. },
  9719. "type": "library",
  9720. "extra": {
  9721. "branch-alias": {
  9722. "dev-main": "3.0-dev"
  9723. }
  9724. },
  9725. "autoload": {
  9726. "classmap": [
  9727. "src/"
  9728. ]
  9729. },
  9730. "notification-url": "https://packagist.org/downloads/",
  9731. "license": [
  9732. "BSD-3-Clause"
  9733. ],
  9734. "authors": [
  9735. {
  9736. "name": "Sebastian Bergmann",
  9737. "email": "sebastian@phpunit.de"
  9738. }
  9739. ],
  9740. "description": "Looks up which function or method a line of code belongs to",
  9741. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9742. "support": {
  9743. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9744. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9745. },
  9746. "funding": [
  9747. {
  9748. "url": "https://github.com/sebastianbergmann",
  9749. "type": "github"
  9750. }
  9751. ],
  9752. "time": "2023-02-03T06:59:15+00:00"
  9753. },
  9754. {
  9755. "name": "sebastian/comparator",
  9756. "version": "5.0.3",
  9757. "source": {
  9758. "type": "git",
  9759. "url": "https://github.com/sebastianbergmann/comparator.git",
  9760. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9761. },
  9762. "dist": {
  9763. "type": "zip",
  9764. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9765. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9766. "shasum": ""
  9767. },
  9768. "require": {
  9769. "ext-dom": "*",
  9770. "ext-mbstring": "*",
  9771. "php": ">=8.1",
  9772. "sebastian/diff": "^5.0",
  9773. "sebastian/exporter": "^5.0"
  9774. },
  9775. "require-dev": {
  9776. "phpunit/phpunit": "^10.5"
  9777. },
  9778. "type": "library",
  9779. "extra": {
  9780. "branch-alias": {
  9781. "dev-main": "5.0-dev"
  9782. }
  9783. },
  9784. "autoload": {
  9785. "classmap": [
  9786. "src/"
  9787. ]
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "BSD-3-Clause"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Sebastian Bergmann",
  9796. "email": "sebastian@phpunit.de"
  9797. },
  9798. {
  9799. "name": "Jeff Welch",
  9800. "email": "whatthejeff@gmail.com"
  9801. },
  9802. {
  9803. "name": "Volker Dusch",
  9804. "email": "github@wallbash.com"
  9805. },
  9806. {
  9807. "name": "Bernhard Schussek",
  9808. "email": "bschussek@2bepublished.at"
  9809. }
  9810. ],
  9811. "description": "Provides the functionality to compare PHP values for equality",
  9812. "homepage": "https://github.com/sebastianbergmann/comparator",
  9813. "keywords": [
  9814. "comparator",
  9815. "compare",
  9816. "equality"
  9817. ],
  9818. "support": {
  9819. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9820. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9821. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9822. },
  9823. "funding": [
  9824. {
  9825. "url": "https://github.com/sebastianbergmann",
  9826. "type": "github"
  9827. }
  9828. ],
  9829. "time": "2024-10-18T14:56:07+00:00"
  9830. },
  9831. {
  9832. "name": "sebastian/complexity",
  9833. "version": "3.2.0",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/sebastianbergmann/complexity.git",
  9837. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9842. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "nikic/php-parser": "^4.18 || ^5.0",
  9847. "php": ">=8.1"
  9848. },
  9849. "require-dev": {
  9850. "phpunit/phpunit": "^10.0"
  9851. },
  9852. "type": "library",
  9853. "extra": {
  9854. "branch-alias": {
  9855. "dev-main": "3.2-dev"
  9856. }
  9857. },
  9858. "autoload": {
  9859. "classmap": [
  9860. "src/"
  9861. ]
  9862. },
  9863. "notification-url": "https://packagist.org/downloads/",
  9864. "license": [
  9865. "BSD-3-Clause"
  9866. ],
  9867. "authors": [
  9868. {
  9869. "name": "Sebastian Bergmann",
  9870. "email": "sebastian@phpunit.de",
  9871. "role": "lead"
  9872. }
  9873. ],
  9874. "description": "Library for calculating the complexity of PHP code units",
  9875. "homepage": "https://github.com/sebastianbergmann/complexity",
  9876. "support": {
  9877. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9878. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9879. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9880. },
  9881. "funding": [
  9882. {
  9883. "url": "https://github.com/sebastianbergmann",
  9884. "type": "github"
  9885. }
  9886. ],
  9887. "time": "2023-12-21T08:37:17+00:00"
  9888. },
  9889. {
  9890. "name": "sebastian/diff",
  9891. "version": "5.1.1",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/sebastianbergmann/diff.git",
  9895. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9900. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "php": ">=8.1"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^10.0",
  9908. "symfony/process": "^6.4"
  9909. },
  9910. "type": "library",
  9911. "extra": {
  9912. "branch-alias": {
  9913. "dev-main": "5.1-dev"
  9914. }
  9915. },
  9916. "autoload": {
  9917. "classmap": [
  9918. "src/"
  9919. ]
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "BSD-3-Clause"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Sebastian Bergmann",
  9928. "email": "sebastian@phpunit.de"
  9929. },
  9930. {
  9931. "name": "Kore Nordmann",
  9932. "email": "mail@kore-nordmann.de"
  9933. }
  9934. ],
  9935. "description": "Diff implementation",
  9936. "homepage": "https://github.com/sebastianbergmann/diff",
  9937. "keywords": [
  9938. "diff",
  9939. "udiff",
  9940. "unidiff",
  9941. "unified diff"
  9942. ],
  9943. "support": {
  9944. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9945. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9946. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9947. },
  9948. "funding": [
  9949. {
  9950. "url": "https://github.com/sebastianbergmann",
  9951. "type": "github"
  9952. }
  9953. ],
  9954. "time": "2024-03-02T07:15:17+00:00"
  9955. },
  9956. {
  9957. "name": "sebastian/environment",
  9958. "version": "6.1.0",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/sebastianbergmann/environment.git",
  9962. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9967. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9968. "shasum": ""
  9969. },
  9970. "require": {
  9971. "php": ">=8.1"
  9972. },
  9973. "require-dev": {
  9974. "phpunit/phpunit": "^10.0"
  9975. },
  9976. "suggest": {
  9977. "ext-posix": "*"
  9978. },
  9979. "type": "library",
  9980. "extra": {
  9981. "branch-alias": {
  9982. "dev-main": "6.1-dev"
  9983. }
  9984. },
  9985. "autoload": {
  9986. "classmap": [
  9987. "src/"
  9988. ]
  9989. },
  9990. "notification-url": "https://packagist.org/downloads/",
  9991. "license": [
  9992. "BSD-3-Clause"
  9993. ],
  9994. "authors": [
  9995. {
  9996. "name": "Sebastian Bergmann",
  9997. "email": "sebastian@phpunit.de"
  9998. }
  9999. ],
  10000. "description": "Provides functionality to handle HHVM/PHP environments",
  10001. "homepage": "https://github.com/sebastianbergmann/environment",
  10002. "keywords": [
  10003. "Xdebug",
  10004. "environment",
  10005. "hhvm"
  10006. ],
  10007. "support": {
  10008. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10009. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10010. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10011. },
  10012. "funding": [
  10013. {
  10014. "url": "https://github.com/sebastianbergmann",
  10015. "type": "github"
  10016. }
  10017. ],
  10018. "time": "2024-03-23T08:47:14+00:00"
  10019. },
  10020. {
  10021. "name": "sebastian/exporter",
  10022. "version": "5.1.2",
  10023. "source": {
  10024. "type": "git",
  10025. "url": "https://github.com/sebastianbergmann/exporter.git",
  10026. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10027. },
  10028. "dist": {
  10029. "type": "zip",
  10030. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10031. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10032. "shasum": ""
  10033. },
  10034. "require": {
  10035. "ext-mbstring": "*",
  10036. "php": ">=8.1",
  10037. "sebastian/recursion-context": "^5.0"
  10038. },
  10039. "require-dev": {
  10040. "phpunit/phpunit": "^10.0"
  10041. },
  10042. "type": "library",
  10043. "extra": {
  10044. "branch-alias": {
  10045. "dev-main": "5.1-dev"
  10046. }
  10047. },
  10048. "autoload": {
  10049. "classmap": [
  10050. "src/"
  10051. ]
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "BSD-3-Clause"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Sebastian Bergmann",
  10060. "email": "sebastian@phpunit.de"
  10061. },
  10062. {
  10063. "name": "Jeff Welch",
  10064. "email": "whatthejeff@gmail.com"
  10065. },
  10066. {
  10067. "name": "Volker Dusch",
  10068. "email": "github@wallbash.com"
  10069. },
  10070. {
  10071. "name": "Adam Harvey",
  10072. "email": "aharvey@php.net"
  10073. },
  10074. {
  10075. "name": "Bernhard Schussek",
  10076. "email": "bschussek@gmail.com"
  10077. }
  10078. ],
  10079. "description": "Provides the functionality to export PHP variables for visualization",
  10080. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10081. "keywords": [
  10082. "export",
  10083. "exporter"
  10084. ],
  10085. "support": {
  10086. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10087. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10088. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10089. },
  10090. "funding": [
  10091. {
  10092. "url": "https://github.com/sebastianbergmann",
  10093. "type": "github"
  10094. }
  10095. ],
  10096. "time": "2024-03-02T07:17:12+00:00"
  10097. },
  10098. {
  10099. "name": "sebastian/global-state",
  10100. "version": "6.0.2",
  10101. "source": {
  10102. "type": "git",
  10103. "url": "https://github.com/sebastianbergmann/global-state.git",
  10104. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10105. },
  10106. "dist": {
  10107. "type": "zip",
  10108. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10109. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10110. "shasum": ""
  10111. },
  10112. "require": {
  10113. "php": ">=8.1",
  10114. "sebastian/object-reflector": "^3.0",
  10115. "sebastian/recursion-context": "^5.0"
  10116. },
  10117. "require-dev": {
  10118. "ext-dom": "*",
  10119. "phpunit/phpunit": "^10.0"
  10120. },
  10121. "type": "library",
  10122. "extra": {
  10123. "branch-alias": {
  10124. "dev-main": "6.0-dev"
  10125. }
  10126. },
  10127. "autoload": {
  10128. "classmap": [
  10129. "src/"
  10130. ]
  10131. },
  10132. "notification-url": "https://packagist.org/downloads/",
  10133. "license": [
  10134. "BSD-3-Clause"
  10135. ],
  10136. "authors": [
  10137. {
  10138. "name": "Sebastian Bergmann",
  10139. "email": "sebastian@phpunit.de"
  10140. }
  10141. ],
  10142. "description": "Snapshotting of global state",
  10143. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10144. "keywords": [
  10145. "global state"
  10146. ],
  10147. "support": {
  10148. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10149. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10150. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10151. },
  10152. "funding": [
  10153. {
  10154. "url": "https://github.com/sebastianbergmann",
  10155. "type": "github"
  10156. }
  10157. ],
  10158. "time": "2024-03-02T07:19:19+00:00"
  10159. },
  10160. {
  10161. "name": "sebastian/lines-of-code",
  10162. "version": "2.0.2",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10166. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10171. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "nikic/php-parser": "^4.18 || ^5.0",
  10176. "php": ">=8.1"
  10177. },
  10178. "require-dev": {
  10179. "phpunit/phpunit": "^10.0"
  10180. },
  10181. "type": "library",
  10182. "extra": {
  10183. "branch-alias": {
  10184. "dev-main": "2.0-dev"
  10185. }
  10186. },
  10187. "autoload": {
  10188. "classmap": [
  10189. "src/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "BSD-3-Clause"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Sebastian Bergmann",
  10199. "email": "sebastian@phpunit.de",
  10200. "role": "lead"
  10201. }
  10202. ],
  10203. "description": "Library for counting the lines of code in PHP source code",
  10204. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10205. "support": {
  10206. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10207. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10208. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10209. },
  10210. "funding": [
  10211. {
  10212. "url": "https://github.com/sebastianbergmann",
  10213. "type": "github"
  10214. }
  10215. ],
  10216. "time": "2023-12-21T08:38:20+00:00"
  10217. },
  10218. {
  10219. "name": "sebastian/object-enumerator",
  10220. "version": "5.0.0",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10224. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10229. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "php": ">=8.1",
  10234. "sebastian/object-reflector": "^3.0",
  10235. "sebastian/recursion-context": "^5.0"
  10236. },
  10237. "require-dev": {
  10238. "phpunit/phpunit": "^10.0"
  10239. },
  10240. "type": "library",
  10241. "extra": {
  10242. "branch-alias": {
  10243. "dev-main": "5.0-dev"
  10244. }
  10245. },
  10246. "autoload": {
  10247. "classmap": [
  10248. "src/"
  10249. ]
  10250. },
  10251. "notification-url": "https://packagist.org/downloads/",
  10252. "license": [
  10253. "BSD-3-Clause"
  10254. ],
  10255. "authors": [
  10256. {
  10257. "name": "Sebastian Bergmann",
  10258. "email": "sebastian@phpunit.de"
  10259. }
  10260. ],
  10261. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10262. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10263. "support": {
  10264. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10265. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10266. },
  10267. "funding": [
  10268. {
  10269. "url": "https://github.com/sebastianbergmann",
  10270. "type": "github"
  10271. }
  10272. ],
  10273. "time": "2023-02-03T07:08:32+00:00"
  10274. },
  10275. {
  10276. "name": "sebastian/object-reflector",
  10277. "version": "3.0.0",
  10278. "source": {
  10279. "type": "git",
  10280. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10281. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10282. },
  10283. "dist": {
  10284. "type": "zip",
  10285. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10286. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10287. "shasum": ""
  10288. },
  10289. "require": {
  10290. "php": ">=8.1"
  10291. },
  10292. "require-dev": {
  10293. "phpunit/phpunit": "^10.0"
  10294. },
  10295. "type": "library",
  10296. "extra": {
  10297. "branch-alias": {
  10298. "dev-main": "3.0-dev"
  10299. }
  10300. },
  10301. "autoload": {
  10302. "classmap": [
  10303. "src/"
  10304. ]
  10305. },
  10306. "notification-url": "https://packagist.org/downloads/",
  10307. "license": [
  10308. "BSD-3-Clause"
  10309. ],
  10310. "authors": [
  10311. {
  10312. "name": "Sebastian Bergmann",
  10313. "email": "sebastian@phpunit.de"
  10314. }
  10315. ],
  10316. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10317. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10318. "support": {
  10319. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10320. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/sebastianbergmann",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "time": "2023-02-03T07:06:18+00:00"
  10329. },
  10330. {
  10331. "name": "sebastian/recursion-context",
  10332. "version": "5.0.0",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10336. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10341. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10342. "shasum": ""
  10343. },
  10344. "require": {
  10345. "php": ">=8.1"
  10346. },
  10347. "require-dev": {
  10348. "phpunit/phpunit": "^10.0"
  10349. },
  10350. "type": "library",
  10351. "extra": {
  10352. "branch-alias": {
  10353. "dev-main": "5.0-dev"
  10354. }
  10355. },
  10356. "autoload": {
  10357. "classmap": [
  10358. "src/"
  10359. ]
  10360. },
  10361. "notification-url": "https://packagist.org/downloads/",
  10362. "license": [
  10363. "BSD-3-Clause"
  10364. ],
  10365. "authors": [
  10366. {
  10367. "name": "Sebastian Bergmann",
  10368. "email": "sebastian@phpunit.de"
  10369. },
  10370. {
  10371. "name": "Jeff Welch",
  10372. "email": "whatthejeff@gmail.com"
  10373. },
  10374. {
  10375. "name": "Adam Harvey",
  10376. "email": "aharvey@php.net"
  10377. }
  10378. ],
  10379. "description": "Provides functionality to recursively process PHP variables",
  10380. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10381. "support": {
  10382. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10383. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://github.com/sebastianbergmann",
  10388. "type": "github"
  10389. }
  10390. ],
  10391. "time": "2023-02-03T07:05:40+00:00"
  10392. },
  10393. {
  10394. "name": "sebastian/type",
  10395. "version": "4.0.0",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/sebastianbergmann/type.git",
  10399. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10404. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10405. "shasum": ""
  10406. },
  10407. "require": {
  10408. "php": ">=8.1"
  10409. },
  10410. "require-dev": {
  10411. "phpunit/phpunit": "^10.0"
  10412. },
  10413. "type": "library",
  10414. "extra": {
  10415. "branch-alias": {
  10416. "dev-main": "4.0-dev"
  10417. }
  10418. },
  10419. "autoload": {
  10420. "classmap": [
  10421. "src/"
  10422. ]
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "BSD-3-Clause"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Sebastian Bergmann",
  10431. "email": "sebastian@phpunit.de",
  10432. "role": "lead"
  10433. }
  10434. ],
  10435. "description": "Collection of value objects that represent the types of the PHP type system",
  10436. "homepage": "https://github.com/sebastianbergmann/type",
  10437. "support": {
  10438. "issues": "https://github.com/sebastianbergmann/type/issues",
  10439. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://github.com/sebastianbergmann",
  10444. "type": "github"
  10445. }
  10446. ],
  10447. "time": "2023-02-03T07:10:45+00:00"
  10448. },
  10449. {
  10450. "name": "sebastian/version",
  10451. "version": "4.0.1",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/sebastianbergmann/version.git",
  10455. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10460. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "php": ">=8.1"
  10465. },
  10466. "type": "library",
  10467. "extra": {
  10468. "branch-alias": {
  10469. "dev-main": "4.0-dev"
  10470. }
  10471. },
  10472. "autoload": {
  10473. "classmap": [
  10474. "src/"
  10475. ]
  10476. },
  10477. "notification-url": "https://packagist.org/downloads/",
  10478. "license": [
  10479. "BSD-3-Clause"
  10480. ],
  10481. "authors": [
  10482. {
  10483. "name": "Sebastian Bergmann",
  10484. "email": "sebastian@phpunit.de",
  10485. "role": "lead"
  10486. }
  10487. ],
  10488. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10489. "homepage": "https://github.com/sebastianbergmann/version",
  10490. "support": {
  10491. "issues": "https://github.com/sebastianbergmann/version/issues",
  10492. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10493. },
  10494. "funding": [
  10495. {
  10496. "url": "https://github.com/sebastianbergmann",
  10497. "type": "github"
  10498. }
  10499. ],
  10500. "time": "2023-02-07T11:34:05+00:00"
  10501. },
  10502. {
  10503. "name": "swoole/ide-helper",
  10504. "version": "5.1.6",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/swoole/ide-helper.git",
  10508. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10513. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10514. "shasum": ""
  10515. },
  10516. "type": "library",
  10517. "notification-url": "https://packagist.org/downloads/",
  10518. "license": [
  10519. "Apache-2.0"
  10520. ],
  10521. "authors": [
  10522. {
  10523. "name": "Team Swoole",
  10524. "email": "team@swoole.com"
  10525. }
  10526. ],
  10527. "description": "IDE help files for Swoole.",
  10528. "support": {
  10529. "issues": "https://github.com/swoole/ide-helper/issues",
  10530. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10531. },
  10532. "time": "2024-11-29T07:21:36+00:00"
  10533. },
  10534. {
  10535. "name": "symfony/event-dispatcher",
  10536. "version": "v6.4.13",
  10537. "source": {
  10538. "type": "git",
  10539. "url": "https://github.com/symfony/event-dispatcher.git",
  10540. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10541. },
  10542. "dist": {
  10543. "type": "zip",
  10544. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10545. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10546. "shasum": ""
  10547. },
  10548. "require": {
  10549. "php": ">=8.1",
  10550. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10551. },
  10552. "conflict": {
  10553. "symfony/dependency-injection": "<5.4",
  10554. "symfony/service-contracts": "<2.5"
  10555. },
  10556. "provide": {
  10557. "psr/event-dispatcher-implementation": "1.0",
  10558. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10559. },
  10560. "require-dev": {
  10561. "psr/log": "^1|^2|^3",
  10562. "symfony/config": "^5.4|^6.0|^7.0",
  10563. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10564. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10565. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10566. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10567. "symfony/service-contracts": "^2.5|^3",
  10568. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10569. },
  10570. "type": "library",
  10571. "autoload": {
  10572. "psr-4": {
  10573. "Symfony\\Component\\EventDispatcher\\": ""
  10574. },
  10575. "exclude-from-classmap": [
  10576. "/Tests/"
  10577. ]
  10578. },
  10579. "notification-url": "https://packagist.org/downloads/",
  10580. "license": [
  10581. "MIT"
  10582. ],
  10583. "authors": [
  10584. {
  10585. "name": "Fabien Potencier",
  10586. "email": "fabien@symfony.com"
  10587. },
  10588. {
  10589. "name": "Symfony Community",
  10590. "homepage": "https://symfony.com/contributors"
  10591. }
  10592. ],
  10593. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10594. "homepage": "https://symfony.com",
  10595. "support": {
  10596. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10597. },
  10598. "funding": [
  10599. {
  10600. "url": "https://symfony.com/sponsor",
  10601. "type": "custom"
  10602. },
  10603. {
  10604. "url": "https://github.com/fabpot",
  10605. "type": "github"
  10606. },
  10607. {
  10608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10609. "type": "tidelift"
  10610. }
  10611. ],
  10612. "time": "2024-09-25T14:18:03+00:00"
  10613. },
  10614. {
  10615. "name": "symfony/event-dispatcher-contracts",
  10616. "version": "v3.5.1",
  10617. "source": {
  10618. "type": "git",
  10619. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10620. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10621. },
  10622. "dist": {
  10623. "type": "zip",
  10624. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10625. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10626. "shasum": ""
  10627. },
  10628. "require": {
  10629. "php": ">=8.1",
  10630. "psr/event-dispatcher": "^1"
  10631. },
  10632. "type": "library",
  10633. "extra": {
  10634. "branch-alias": {
  10635. "dev-main": "3.5-dev"
  10636. },
  10637. "thanks": {
  10638. "name": "symfony/contracts",
  10639. "url": "https://github.com/symfony/contracts"
  10640. }
  10641. },
  10642. "autoload": {
  10643. "psr-4": {
  10644. "Symfony\\Contracts\\EventDispatcher\\": ""
  10645. }
  10646. },
  10647. "notification-url": "https://packagist.org/downloads/",
  10648. "license": [
  10649. "MIT"
  10650. ],
  10651. "authors": [
  10652. {
  10653. "name": "Nicolas Grekas",
  10654. "email": "p@tchwork.com"
  10655. },
  10656. {
  10657. "name": "Symfony Community",
  10658. "homepage": "https://symfony.com/contributors"
  10659. }
  10660. ],
  10661. "description": "Generic abstractions related to dispatching event",
  10662. "homepage": "https://symfony.com",
  10663. "keywords": [
  10664. "abstractions",
  10665. "contracts",
  10666. "decoupling",
  10667. "interfaces",
  10668. "interoperability",
  10669. "standards"
  10670. ],
  10671. "support": {
  10672. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  10673. },
  10674. "funding": [
  10675. {
  10676. "url": "https://symfony.com/sponsor",
  10677. "type": "custom"
  10678. },
  10679. {
  10680. "url": "https://github.com/fabpot",
  10681. "type": "github"
  10682. },
  10683. {
  10684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10685. "type": "tidelift"
  10686. }
  10687. ],
  10688. "time": "2024-09-25T14:20:29+00:00"
  10689. },
  10690. {
  10691. "name": "symfony/filesystem",
  10692. "version": "v6.4.13",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/symfony/filesystem.git",
  10696. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10701. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "php": ">=8.1",
  10706. "symfony/polyfill-ctype": "~1.8",
  10707. "symfony/polyfill-mbstring": "~1.8"
  10708. },
  10709. "require-dev": {
  10710. "symfony/process": "^5.4|^6.4|^7.0"
  10711. },
  10712. "type": "library",
  10713. "autoload": {
  10714. "psr-4": {
  10715. "Symfony\\Component\\Filesystem\\": ""
  10716. },
  10717. "exclude-from-classmap": [
  10718. "/Tests/"
  10719. ]
  10720. },
  10721. "notification-url": "https://packagist.org/downloads/",
  10722. "license": [
  10723. "MIT"
  10724. ],
  10725. "authors": [
  10726. {
  10727. "name": "Fabien Potencier",
  10728. "email": "fabien@symfony.com"
  10729. },
  10730. {
  10731. "name": "Symfony Community",
  10732. "homepage": "https://symfony.com/contributors"
  10733. }
  10734. ],
  10735. "description": "Provides basic utilities for the filesystem",
  10736. "homepage": "https://symfony.com",
  10737. "support": {
  10738. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10739. },
  10740. "funding": [
  10741. {
  10742. "url": "https://symfony.com/sponsor",
  10743. "type": "custom"
  10744. },
  10745. {
  10746. "url": "https://github.com/fabpot",
  10747. "type": "github"
  10748. },
  10749. {
  10750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10751. "type": "tidelift"
  10752. }
  10753. ],
  10754. "time": "2024-10-25T15:07:50+00:00"
  10755. },
  10756. {
  10757. "name": "symfony/http-foundation",
  10758. "version": "v6.4.16",
  10759. "source": {
  10760. "type": "git",
  10761. "url": "https://github.com/symfony/http-foundation.git",
  10762. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  10763. },
  10764. "dist": {
  10765. "type": "zip",
  10766. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10767. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10768. "shasum": ""
  10769. },
  10770. "require": {
  10771. "php": ">=8.1",
  10772. "symfony/deprecation-contracts": "^2.5|^3",
  10773. "symfony/polyfill-mbstring": "~1.1",
  10774. "symfony/polyfill-php83": "^1.27"
  10775. },
  10776. "conflict": {
  10777. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10778. },
  10779. "require-dev": {
  10780. "doctrine/dbal": "^2.13.1|^3|^4",
  10781. "predis/predis": "^1.1|^2.0",
  10782. "symfony/cache": "^6.4.12|^7.1.5",
  10783. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10784. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10785. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10786. "symfony/mime": "^5.4|^6.0|^7.0",
  10787. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10788. },
  10789. "type": "library",
  10790. "autoload": {
  10791. "psr-4": {
  10792. "Symfony\\Component\\HttpFoundation\\": ""
  10793. },
  10794. "exclude-from-classmap": [
  10795. "/Tests/"
  10796. ]
  10797. },
  10798. "notification-url": "https://packagist.org/downloads/",
  10799. "license": [
  10800. "MIT"
  10801. ],
  10802. "authors": [
  10803. {
  10804. "name": "Fabien Potencier",
  10805. "email": "fabien@symfony.com"
  10806. },
  10807. {
  10808. "name": "Symfony Community",
  10809. "homepage": "https://symfony.com/contributors"
  10810. }
  10811. ],
  10812. "description": "Defines an object-oriented layer for the HTTP specification",
  10813. "homepage": "https://symfony.com",
  10814. "support": {
  10815. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  10816. },
  10817. "funding": [
  10818. {
  10819. "url": "https://symfony.com/sponsor",
  10820. "type": "custom"
  10821. },
  10822. {
  10823. "url": "https://github.com/fabpot",
  10824. "type": "github"
  10825. },
  10826. {
  10827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10828. "type": "tidelift"
  10829. }
  10830. ],
  10831. "time": "2024-11-13T18:58:10+00:00"
  10832. },
  10833. {
  10834. "name": "symfony/options-resolver",
  10835. "version": "v6.4.16",
  10836. "source": {
  10837. "type": "git",
  10838. "url": "https://github.com/symfony/options-resolver.git",
  10839. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  10840. },
  10841. "dist": {
  10842. "type": "zip",
  10843. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  10844. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  10845. "shasum": ""
  10846. },
  10847. "require": {
  10848. "php": ">=8.1",
  10849. "symfony/deprecation-contracts": "^2.5|^3"
  10850. },
  10851. "type": "library",
  10852. "autoload": {
  10853. "psr-4": {
  10854. "Symfony\\Component\\OptionsResolver\\": ""
  10855. },
  10856. "exclude-from-classmap": [
  10857. "/Tests/"
  10858. ]
  10859. },
  10860. "notification-url": "https://packagist.org/downloads/",
  10861. "license": [
  10862. "MIT"
  10863. ],
  10864. "authors": [
  10865. {
  10866. "name": "Fabien Potencier",
  10867. "email": "fabien@symfony.com"
  10868. },
  10869. {
  10870. "name": "Symfony Community",
  10871. "homepage": "https://symfony.com/contributors"
  10872. }
  10873. ],
  10874. "description": "Provides an improved replacement for the array_replace PHP function",
  10875. "homepage": "https://symfony.com",
  10876. "keywords": [
  10877. "config",
  10878. "configuration",
  10879. "options"
  10880. ],
  10881. "support": {
  10882. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  10883. },
  10884. "funding": [
  10885. {
  10886. "url": "https://symfony.com/sponsor",
  10887. "type": "custom"
  10888. },
  10889. {
  10890. "url": "https://github.com/fabpot",
  10891. "type": "github"
  10892. },
  10893. {
  10894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10895. "type": "tidelift"
  10896. }
  10897. ],
  10898. "time": "2024-11-20T10:57:02+00:00"
  10899. },
  10900. {
  10901. "name": "symfony/polyfill-php81",
  10902. "version": "v1.31.0",
  10903. "source": {
  10904. "type": "git",
  10905. "url": "https://github.com/symfony/polyfill-php81.git",
  10906. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10907. },
  10908. "dist": {
  10909. "type": "zip",
  10910. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10911. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10912. "shasum": ""
  10913. },
  10914. "require": {
  10915. "php": ">=7.2"
  10916. },
  10917. "type": "library",
  10918. "extra": {
  10919. "thanks": {
  10920. "url": "https://github.com/symfony/polyfill",
  10921. "name": "symfony/polyfill"
  10922. }
  10923. },
  10924. "autoload": {
  10925. "files": [
  10926. "bootstrap.php"
  10927. ],
  10928. "psr-4": {
  10929. "Symfony\\Polyfill\\Php81\\": ""
  10930. },
  10931. "classmap": [
  10932. "Resources/stubs"
  10933. ]
  10934. },
  10935. "notification-url": "https://packagist.org/downloads/",
  10936. "license": [
  10937. "MIT"
  10938. ],
  10939. "authors": [
  10940. {
  10941. "name": "Nicolas Grekas",
  10942. "email": "p@tchwork.com"
  10943. },
  10944. {
  10945. "name": "Symfony Community",
  10946. "homepage": "https://symfony.com/contributors"
  10947. }
  10948. ],
  10949. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10950. "homepage": "https://symfony.com",
  10951. "keywords": [
  10952. "compatibility",
  10953. "polyfill",
  10954. "portable",
  10955. "shim"
  10956. ],
  10957. "support": {
  10958. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10959. },
  10960. "funding": [
  10961. {
  10962. "url": "https://symfony.com/sponsor",
  10963. "type": "custom"
  10964. },
  10965. {
  10966. "url": "https://github.com/fabpot",
  10967. "type": "github"
  10968. },
  10969. {
  10970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10971. "type": "tidelift"
  10972. }
  10973. ],
  10974. "time": "2024-09-09T11:45:10+00:00"
  10975. },
  10976. {
  10977. "name": "symfony/polyfill-php83",
  10978. "version": "v1.31.0",
  10979. "source": {
  10980. "type": "git",
  10981. "url": "https://github.com/symfony/polyfill-php83.git",
  10982. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10983. },
  10984. "dist": {
  10985. "type": "zip",
  10986. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10987. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10988. "shasum": ""
  10989. },
  10990. "require": {
  10991. "php": ">=7.2"
  10992. },
  10993. "type": "library",
  10994. "extra": {
  10995. "thanks": {
  10996. "url": "https://github.com/symfony/polyfill",
  10997. "name": "symfony/polyfill"
  10998. }
  10999. },
  11000. "autoload": {
  11001. "files": [
  11002. "bootstrap.php"
  11003. ],
  11004. "psr-4": {
  11005. "Symfony\\Polyfill\\Php83\\": ""
  11006. },
  11007. "classmap": [
  11008. "Resources/stubs"
  11009. ]
  11010. },
  11011. "notification-url": "https://packagist.org/downloads/",
  11012. "license": [
  11013. "MIT"
  11014. ],
  11015. "authors": [
  11016. {
  11017. "name": "Nicolas Grekas",
  11018. "email": "p@tchwork.com"
  11019. },
  11020. {
  11021. "name": "Symfony Community",
  11022. "homepage": "https://symfony.com/contributors"
  11023. }
  11024. ],
  11025. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11026. "homepage": "https://symfony.com",
  11027. "keywords": [
  11028. "compatibility",
  11029. "polyfill",
  11030. "portable",
  11031. "shim"
  11032. ],
  11033. "support": {
  11034. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11035. },
  11036. "funding": [
  11037. {
  11038. "url": "https://symfony.com/sponsor",
  11039. "type": "custom"
  11040. },
  11041. {
  11042. "url": "https://github.com/fabpot",
  11043. "type": "github"
  11044. },
  11045. {
  11046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11047. "type": "tidelift"
  11048. }
  11049. ],
  11050. "time": "2024-09-09T11:45:10+00:00"
  11051. },
  11052. {
  11053. "name": "symfony/process",
  11054. "version": "v6.4.15",
  11055. "source": {
  11056. "type": "git",
  11057. "url": "https://github.com/symfony/process.git",
  11058. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11059. },
  11060. "dist": {
  11061. "type": "zip",
  11062. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11063. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11064. "shasum": ""
  11065. },
  11066. "require": {
  11067. "php": ">=8.1"
  11068. },
  11069. "type": "library",
  11070. "autoload": {
  11071. "psr-4": {
  11072. "Symfony\\Component\\Process\\": ""
  11073. },
  11074. "exclude-from-classmap": [
  11075. "/Tests/"
  11076. ]
  11077. },
  11078. "notification-url": "https://packagist.org/downloads/",
  11079. "license": [
  11080. "MIT"
  11081. ],
  11082. "authors": [
  11083. {
  11084. "name": "Fabien Potencier",
  11085. "email": "fabien@symfony.com"
  11086. },
  11087. {
  11088. "name": "Symfony Community",
  11089. "homepage": "https://symfony.com/contributors"
  11090. }
  11091. ],
  11092. "description": "Executes commands in sub-processes",
  11093. "homepage": "https://symfony.com",
  11094. "support": {
  11095. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11096. },
  11097. "funding": [
  11098. {
  11099. "url": "https://symfony.com/sponsor",
  11100. "type": "custom"
  11101. },
  11102. {
  11103. "url": "https://github.com/fabpot",
  11104. "type": "github"
  11105. },
  11106. {
  11107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11108. "type": "tidelift"
  11109. }
  11110. ],
  11111. "time": "2024-11-06T14:19:14+00:00"
  11112. },
  11113. {
  11114. "name": "symfony/stopwatch",
  11115. "version": "v6.4.13",
  11116. "source": {
  11117. "type": "git",
  11118. "url": "https://github.com/symfony/stopwatch.git",
  11119. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11120. },
  11121. "dist": {
  11122. "type": "zip",
  11123. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11124. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11125. "shasum": ""
  11126. },
  11127. "require": {
  11128. "php": ">=8.1",
  11129. "symfony/service-contracts": "^2.5|^3"
  11130. },
  11131. "type": "library",
  11132. "autoload": {
  11133. "psr-4": {
  11134. "Symfony\\Component\\Stopwatch\\": ""
  11135. },
  11136. "exclude-from-classmap": [
  11137. "/Tests/"
  11138. ]
  11139. },
  11140. "notification-url": "https://packagist.org/downloads/",
  11141. "license": [
  11142. "MIT"
  11143. ],
  11144. "authors": [
  11145. {
  11146. "name": "Fabien Potencier",
  11147. "email": "fabien@symfony.com"
  11148. },
  11149. {
  11150. "name": "Symfony Community",
  11151. "homepage": "https://symfony.com/contributors"
  11152. }
  11153. ],
  11154. "description": "Provides a way to profile code",
  11155. "homepage": "https://symfony.com",
  11156. "support": {
  11157. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11158. },
  11159. "funding": [
  11160. {
  11161. "url": "https://symfony.com/sponsor",
  11162. "type": "custom"
  11163. },
  11164. {
  11165. "url": "https://github.com/fabpot",
  11166. "type": "github"
  11167. },
  11168. {
  11169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11170. "type": "tidelift"
  11171. }
  11172. ],
  11173. "time": "2024-09-25T14:18:03+00:00"
  11174. },
  11175. {
  11176. "name": "theseer/tokenizer",
  11177. "version": "1.2.3",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/theseer/tokenizer.git",
  11181. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11186. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11187. "shasum": ""
  11188. },
  11189. "require": {
  11190. "ext-dom": "*",
  11191. "ext-tokenizer": "*",
  11192. "ext-xmlwriter": "*",
  11193. "php": "^7.2 || ^8.0"
  11194. },
  11195. "type": "library",
  11196. "autoload": {
  11197. "classmap": [
  11198. "src/"
  11199. ]
  11200. },
  11201. "notification-url": "https://packagist.org/downloads/",
  11202. "license": [
  11203. "BSD-3-Clause"
  11204. ],
  11205. "authors": [
  11206. {
  11207. "name": "Arne Blankerts",
  11208. "email": "arne@blankerts.de",
  11209. "role": "Developer"
  11210. }
  11211. ],
  11212. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11213. "support": {
  11214. "issues": "https://github.com/theseer/tokenizer/issues",
  11215. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11216. },
  11217. "funding": [
  11218. {
  11219. "url": "https://github.com/theseer",
  11220. "type": "github"
  11221. }
  11222. ],
  11223. "time": "2024-03-03T12:36:25+00:00"
  11224. }
  11225. ],
  11226. "aliases": [],
  11227. "minimum-stability": "dev",
  11228. "stability-flags": [],
  11229. "prefer-stable": true,
  11230. "prefer-lowest": false,
  11231. "platform": {
  11232. "php": ">=8.1"
  11233. },
  11234. "platform-dev": [],
  11235. "plugin-api-version": "2.6.0"
  11236. }