composer.lock 398 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233
  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": "239ee8acadf3c91412a44beeca7f9a96",
  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. "branch-alias": {
  871. "dev-master": "3.1-dev"
  872. },
  873. "hyperf": {
  874. "config": "Hyperf\\Amqp\\ConfigProvider"
  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. "branch-alias": {
  945. "dev-master": "3.1-dev"
  946. },
  947. "hyperf": {
  948. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  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. "branch-alias": {
  1019. "dev-master": "3.1-dev"
  1020. },
  1021. "hyperf": {
  1022. "config": "Hyperf\\Cache\\ConfigProvider"
  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.44",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/hyperf/collection.git",
  1194. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1199. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  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-10-23T10:12:23+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. "branch-alias": {
  1287. "dev-master": "3.1-dev"
  1288. },
  1289. "hyperf": {
  1290. "config": "Hyperf\\Command\\ConfigProvider"
  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. "branch-alias": {
  1414. "dev-master": "3.1-dev"
  1415. },
  1416. "hyperf": {
  1417. "config": "Hyperf\\Config\\ConfigProvider"
  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. "branch-alias": {
  1483. "dev-master": "3.1-dev"
  1484. },
  1485. "hyperf": {
  1486. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  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. "branch-alias": {
  1559. "dev-master": "3.1-dev"
  1560. },
  1561. "hyperf": {
  1562. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  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. "branch-alias": {
  1626. "dev-master": "3.1-dev"
  1627. },
  1628. "hyperf": {
  1629. "config": "Hyperf\\Constants\\ConfigProvider"
  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. "branch-alias": {
  1687. "dev-master": "3.1-dev"
  1688. },
  1689. "hyperf": {
  1690. "config": "Hyperf\\Consul\\ConfigProvider"
  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.42",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/hyperf/coroutine.git",
  1916. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1921. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  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-09-25T02:54:12+00:00"
  1973. },
  1974. {
  1975. "name": "hyperf/database",
  1976. "version": "v3.1.44",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/hyperf/database.git",
  1980. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1985. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  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-10-11T10:25:57+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. "branch-alias": {
  2075. "dev-master": "3.1-dev"
  2076. },
  2077. "hyperf": {
  2078. "config": "Hyperf\\DbConnection\\ConfigProvider"
  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. "branch-alias": {
  2150. "dev-master": "3.1-dev"
  2151. },
  2152. "hyperf": {
  2153. "config": "Hyperf\\Di\\ConfigProvider"
  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. "branch-alias": {
  2216. "dev-master": "3.1-dev"
  2217. },
  2218. "hyperf": {
  2219. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  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.11.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/hyperf/engine.git",
  2265. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2270. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "hyperf/engine-contract": "~1.10.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. "branch-alias": {
  2298. "dev-master": "2.11-dev"
  2299. },
  2300. "hyperf": {
  2301. "config": "Hyperf\\Engine\\ConfigProvider"
  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.11.0"
  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-04-17T13:36:28+00:00"
  2338. },
  2339. {
  2340. "name": "hyperf/engine-contract",
  2341. "version": "v1.10.1",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/hyperf/engine-contract.git",
  2345. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2350. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  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.10.1"
  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-04-17T13:34:51+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. "branch-alias": {
  2432. "dev-master": "3.1-dev"
  2433. },
  2434. "hyperf": {
  2435. "config": "Hyperf\\Event\\ConfigProvider"
  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. "branch-alias": {
  2508. "dev-master": "3.1-dev"
  2509. },
  2510. "hyperf": {
  2511. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  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. "branch-alias": {
  2582. "dev-master": "3.1-dev"
  2583. },
  2584. "hyperf": {
  2585. "config": "Hyperf\\Framework\\ConfigProvider"
  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. "branch-alias": {
  2652. "dev-master": "3.1-dev"
  2653. },
  2654. "hyperf": {
  2655. "config": "Hyperf\\Guzzle\\ConfigProvider"
  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.42",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/hyperf/http-message.git",
  2696. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2701. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  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. "branch-alias": {
  2719. "dev-master": "3.1-dev"
  2720. },
  2721. "hyperf": {
  2722. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  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.42"
  2744. },
  2745. "funding": [
  2746. {
  2747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2748. "type": "custom"
  2749. },
  2750. {
  2751. "url": "https://opencollective.com/hyperf",
  2752. "type": "open_collective"
  2753. }
  2754. ],
  2755. "time": "2024-09-25T02:54:12+00:00"
  2756. },
  2757. {
  2758. "name": "hyperf/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. "branch-alias": {
  2797. "dev-master": "3.1-dev"
  2798. },
  2799. "hyperf": {
  2800. "config": "Hyperf\\HttpServer\\ConfigProvider"
  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.42",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/hyperf/json-rpc.git",
  2845. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2850. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  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. "branch-alias": {
  2878. "dev-master": "3.1-dev"
  2879. },
  2880. "hyperf": {
  2881. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  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-09-25T02:54:12+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. "branch-alias": {
  2943. "dev-master": "3.1-dev"
  2944. },
  2945. "hyperf": {
  2946. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  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. "branch-alias": {
  3010. "dev-master": "3.1-dev"
  3011. },
  3012. "hyperf": {
  3013. "config": "Hyperf\\Logger\\ConfigProvider"
  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. "branch-alias": {
  3128. "dev-master": "3.1-dev"
  3129. },
  3130. "hyperf": {
  3131. "config": "Hyperf\\Memory\\ConfigProvider"
  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. "branch-alias": {
  3196. "dev-master": "3.1-dev"
  3197. },
  3198. "hyperf": {
  3199. "config": "Hyperf\\ModelListener\\ConfigProvider"
  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. "branch-alias": {
  3263. "dev-master": "3.1-dev"
  3264. },
  3265. "hyperf": {
  3266. "config": "Hyperf\\Nacos\\ConfigProvider"
  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. "branch-alias": {
  3386. "dev-master": "3.1-dev"
  3387. },
  3388. "hyperf": {
  3389. "config": "Hyperf\\Pool\\ConfigProvider"
  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.42",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "https://github.com/hyperf/process.git",
  3433. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3438. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  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. "branch-alias": {
  3457. "dev-master": "3.1-dev"
  3458. },
  3459. "hyperf": {
  3460. "config": "Hyperf\\Process\\ConfigProvider"
  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-09-25T02:54:12+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. "branch-alias": {
  3528. "dev-master": "3.1-dev"
  3529. },
  3530. "hyperf": {
  3531. "config": "Hyperf\\Redis\\ConfigProvider"
  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. "branch-alias": {
  3593. "dev-master": "3.1-dev"
  3594. },
  3595. "hyperf": []
  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. "branch-alias": {
  3657. "dev-master": "3.1-dev"
  3658. },
  3659. "hyperf": {
  3660. "config": "Hyperf\\RpcServer\\ConfigProvider"
  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. "branch-alias": {
  3725. "dev-master": "3.1-dev"
  3726. },
  3727. "hyperf": {
  3728. "config": "Hyperf\\Serializer\\ConfigProvider"
  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. "branch-alias": {
  3799. "dev-master": "3.1-dev"
  3800. },
  3801. "hyperf": {
  3802. "config": "Hyperf\\Server\\ConfigProvider"
  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. "branch-alias": {
  3869. "dev-master": "3.1-dev"
  3870. },
  3871. "hyperf": {
  3872. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  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. "branch-alias": {
  3935. "dev-master": "3.1-dev"
  3936. },
  3937. "hyperf": {
  3938. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  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. "branch-alias": {
  4003. "dev-master": "3.1-dev"
  4004. },
  4005. "hyperf": {
  4006. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  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.42",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/hyperf/support.git",
  4180. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4185. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  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-09-25T02:54:12+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.5",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/jae-jae/QueryList.git",
  4469. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4474. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  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.5"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://opencollective.com/querylist",
  4521. "type": "open_collective"
  4522. }
  4523. ],
  4524. "time": "2024-07-16T07:11:08+00:00"
  4525. },
  4526. {
  4527. "name": "jetbrains/phpstorm-attributes",
  4528. "version": "1.1",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4532. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4537. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  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.1"
  4565. },
  4566. "time": "2023-09-01T08:50:25+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. "time": "2023-11-02T16:47:19+00:00"
  4628. },
  4629. {
  4630. "name": "laminas/laminas-stdlib",
  4631. "version": "3.20.0",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/laminas/laminas-stdlib.git",
  4635. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4640. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4645. },
  4646. "conflict": {
  4647. "zendframework/zend-stdlib": "*"
  4648. },
  4649. "require-dev": {
  4650. "laminas/laminas-coding-standard": "^3.0",
  4651. "phpbench/phpbench": "^1.3.1",
  4652. "phpunit/phpunit": "^10.5.38",
  4653. "psalm/plugin-phpunit": "^0.19.0",
  4654. "vimeo/psalm": "^5.26.1"
  4655. },
  4656. "type": "library",
  4657. "autoload": {
  4658. "psr-4": {
  4659. "Laminas\\Stdlib\\": "src/"
  4660. }
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "BSD-3-Clause"
  4665. ],
  4666. "description": "SPL extensions, array utilities, error handlers, and more",
  4667. "homepage": "https://laminas.dev",
  4668. "keywords": [
  4669. "laminas",
  4670. "stdlib"
  4671. ],
  4672. "support": {
  4673. "chat": "https://laminas.dev/chat",
  4674. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4675. "forum": "https://discourse.laminas.dev",
  4676. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4677. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4678. "source": "https://github.com/laminas/laminas-stdlib"
  4679. },
  4680. "funding": [
  4681. {
  4682. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4683. "type": "community_bridge"
  4684. }
  4685. ],
  4686. "time": "2024-10-29T13:46:07+00:00"
  4687. },
  4688. {
  4689. "name": "markrogoyski/math-php",
  4690. "version": "v2.10.0",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/markrogoyski/math-php.git",
  4694. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4699. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4700. "shasum": ""
  4701. },
  4702. "require": {
  4703. "ext-json": "*",
  4704. "php": ">=7.2.0"
  4705. },
  4706. "require-dev": {
  4707. "php-coveralls/php-coveralls": "^2.0",
  4708. "php-parallel-lint/php-parallel-lint": "^1.2",
  4709. "phploc/phploc": "*",
  4710. "phpmd/phpmd": "^2.6",
  4711. "phpstan/phpstan": "^1.10",
  4712. "phpunit/phpunit": "^8.5",
  4713. "squizlabs/php_codesniffer": "3.*"
  4714. },
  4715. "type": "library",
  4716. "autoload": {
  4717. "psr-4": {
  4718. "MathPHP\\": "src/"
  4719. }
  4720. },
  4721. "notification-url": "https://packagist.org/downloads/",
  4722. "license": [
  4723. "MIT"
  4724. ],
  4725. "authors": [
  4726. {
  4727. "name": "Mark Rogoyski",
  4728. "email": "mark@rogoyski.com",
  4729. "homepage": "https://github.com/markrogoyski",
  4730. "role": "Lead developer"
  4731. },
  4732. {
  4733. "name": "Kevin Nowaczyk",
  4734. "homepage": "https://github.com/Beakerboy",
  4735. "role": "Developer"
  4736. },
  4737. {
  4738. "name": "MathPHP Community of Contributors",
  4739. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4740. }
  4741. ],
  4742. "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",
  4743. "homepage": "https://github.com/markrogoyski/math-php/",
  4744. "keywords": [
  4745. "algebra",
  4746. "combinatorics",
  4747. "distributions",
  4748. "linear algebra",
  4749. "math",
  4750. "mathematics",
  4751. "matrix",
  4752. "numerical analysis",
  4753. "probability",
  4754. "regressions",
  4755. "statistics"
  4756. ],
  4757. "support": {
  4758. "issues": "https://github.com/markrogoyski/math-php/issues",
  4759. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4760. },
  4761. "time": "2024-04-17T00:09:51+00:00"
  4762. },
  4763. {
  4764. "name": "monolog/monolog",
  4765. "version": "3.7.0",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/Seldaek/monolog.git",
  4769. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4774. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4775. "shasum": ""
  4776. },
  4777. "require": {
  4778. "php": ">=8.1",
  4779. "psr/log": "^2.0 || ^3.0"
  4780. },
  4781. "provide": {
  4782. "psr/log-implementation": "3.0.0"
  4783. },
  4784. "require-dev": {
  4785. "aws/aws-sdk-php": "^3.0",
  4786. "doctrine/couchdb": "~1.0@dev",
  4787. "elasticsearch/elasticsearch": "^7 || ^8",
  4788. "ext-json": "*",
  4789. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4790. "guzzlehttp/guzzle": "^7.4.5",
  4791. "guzzlehttp/psr7": "^2.2",
  4792. "mongodb/mongodb": "^1.8",
  4793. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4794. "phpstan/phpstan": "^1.9",
  4795. "phpstan/phpstan-deprecation-rules": "^1.0",
  4796. "phpstan/phpstan-strict-rules": "^1.4",
  4797. "phpunit/phpunit": "^10.5.17",
  4798. "predis/predis": "^1.1 || ^2",
  4799. "ruflin/elastica": "^7",
  4800. "symfony/mailer": "^5.4 || ^6",
  4801. "symfony/mime": "^5.4 || ^6"
  4802. },
  4803. "suggest": {
  4804. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4805. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4806. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4807. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4808. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4809. "ext-mbstring": "Allow to work properly with unicode symbols",
  4810. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4811. "ext-openssl": "Required to send log messages using SSL",
  4812. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4813. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4814. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4815. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4816. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4817. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4818. },
  4819. "type": "library",
  4820. "extra": {
  4821. "branch-alias": {
  4822. "dev-main": "3.x-dev"
  4823. }
  4824. },
  4825. "autoload": {
  4826. "psr-4": {
  4827. "Monolog\\": "src/Monolog"
  4828. }
  4829. },
  4830. "notification-url": "https://packagist.org/downloads/",
  4831. "license": [
  4832. "MIT"
  4833. ],
  4834. "authors": [
  4835. {
  4836. "name": "Jordi Boggiano",
  4837. "email": "j.boggiano@seld.be",
  4838. "homepage": "https://seld.be"
  4839. }
  4840. ],
  4841. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4842. "homepage": "https://github.com/Seldaek/monolog",
  4843. "keywords": [
  4844. "log",
  4845. "logging",
  4846. "psr-3"
  4847. ],
  4848. "support": {
  4849. "issues": "https://github.com/Seldaek/monolog/issues",
  4850. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4851. },
  4852. "funding": [
  4853. {
  4854. "url": "https://github.com/Seldaek",
  4855. "type": "github"
  4856. },
  4857. {
  4858. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4859. "type": "tidelift"
  4860. }
  4861. ],
  4862. "time": "2024-06-28T09:40:51+00:00"
  4863. },
  4864. {
  4865. "name": "nesbot/carbon",
  4866. "version": "2.72.5",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/briannesbitt/Carbon.git",
  4870. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4875. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "carbonphp/carbon-doctrine-types": "*",
  4880. "ext-json": "*",
  4881. "php": "^7.1.8 || ^8.0",
  4882. "psr/clock": "^1.0",
  4883. "symfony/polyfill-mbstring": "^1.0",
  4884. "symfony/polyfill-php80": "^1.16",
  4885. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4886. },
  4887. "provide": {
  4888. "psr/clock-implementation": "1.0"
  4889. },
  4890. "require-dev": {
  4891. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4892. "doctrine/orm": "^2.7 || ^3.0",
  4893. "friendsofphp/php-cs-fixer": "^3.0",
  4894. "kylekatarnls/multi-tester": "^2.0",
  4895. "ondrejmirtes/better-reflection": "*",
  4896. "phpmd/phpmd": "^2.9",
  4897. "phpstan/extension-installer": "^1.0",
  4898. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4899. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4900. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4901. "squizlabs/php_codesniffer": "^3.4"
  4902. },
  4903. "bin": [
  4904. "bin/carbon"
  4905. ],
  4906. "type": "library",
  4907. "extra": {
  4908. "branch-alias": {
  4909. "dev-master": "3.x-dev",
  4910. "dev-2.x": "2.x-dev"
  4911. },
  4912. "laravel": {
  4913. "providers": [
  4914. "Carbon\\Laravel\\ServiceProvider"
  4915. ]
  4916. },
  4917. "phpstan": {
  4918. "includes": [
  4919. "extension.neon"
  4920. ]
  4921. }
  4922. },
  4923. "autoload": {
  4924. "psr-4": {
  4925. "Carbon\\": "src/Carbon/"
  4926. }
  4927. },
  4928. "notification-url": "https://packagist.org/downloads/",
  4929. "license": [
  4930. "MIT"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "Brian Nesbitt",
  4935. "email": "brian@nesbot.com",
  4936. "homepage": "https://markido.com"
  4937. },
  4938. {
  4939. "name": "kylekatarnls",
  4940. "homepage": "https://github.com/kylekatarnls"
  4941. }
  4942. ],
  4943. "description": "An API extension for DateTime that supports 281 different languages.",
  4944. "homepage": "https://carbon.nesbot.com",
  4945. "keywords": [
  4946. "date",
  4947. "datetime",
  4948. "time"
  4949. ],
  4950. "support": {
  4951. "docs": "https://carbon.nesbot.com/docs",
  4952. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4953. "source": "https://github.com/briannesbitt/Carbon"
  4954. },
  4955. "funding": [
  4956. {
  4957. "url": "https://github.com/sponsors/kylekatarnls",
  4958. "type": "github"
  4959. },
  4960. {
  4961. "url": "https://opencollective.com/Carbon#sponsor",
  4962. "type": "opencollective"
  4963. },
  4964. {
  4965. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4966. "type": "tidelift"
  4967. }
  4968. ],
  4969. "time": "2024-06-03T19:18:41+00:00"
  4970. },
  4971. {
  4972. "name": "nikic/fast-route",
  4973. "version": "v1.3.0",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://github.com/nikic/FastRoute.git",
  4977. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4982. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4983. "shasum": ""
  4984. },
  4985. "require": {
  4986. "php": ">=5.4.0"
  4987. },
  4988. "require-dev": {
  4989. "phpunit/phpunit": "^4.8.35|~5.7"
  4990. },
  4991. "type": "library",
  4992. "autoload": {
  4993. "files": [
  4994. "src/functions.php"
  4995. ],
  4996. "psr-4": {
  4997. "FastRoute\\": "src/"
  4998. }
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "BSD-3-Clause"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Nikita Popov",
  5007. "email": "nikic@php.net"
  5008. }
  5009. ],
  5010. "description": "Fast request router for PHP",
  5011. "keywords": [
  5012. "router",
  5013. "routing"
  5014. ],
  5015. "support": {
  5016. "issues": "https://github.com/nikic/FastRoute/issues",
  5017. "source": "https://github.com/nikic/FastRoute/tree/master"
  5018. },
  5019. "time": "2018-02-13T20:26:39+00:00"
  5020. },
  5021. {
  5022. "name": "nikic/php-parser",
  5023. "version": "v4.19.4",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://github.com/nikic/PHP-Parser.git",
  5027. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5032. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5033. "shasum": ""
  5034. },
  5035. "require": {
  5036. "ext-tokenizer": "*",
  5037. "php": ">=7.1"
  5038. },
  5039. "require-dev": {
  5040. "ircmaxell/php-yacc": "^0.0.7",
  5041. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5042. },
  5043. "bin": [
  5044. "bin/php-parse"
  5045. ],
  5046. "type": "library",
  5047. "extra": {
  5048. "branch-alias": {
  5049. "dev-master": "4.9-dev"
  5050. }
  5051. },
  5052. "autoload": {
  5053. "psr-4": {
  5054. "PhpParser\\": "lib/PhpParser"
  5055. }
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "BSD-3-Clause"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "Nikita Popov"
  5064. }
  5065. ],
  5066. "description": "A PHP parser written in PHP",
  5067. "keywords": [
  5068. "parser",
  5069. "php"
  5070. ],
  5071. "support": {
  5072. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5073. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5074. },
  5075. "time": "2024-09-29T15:01:53+00:00"
  5076. },
  5077. {
  5078. "name": "paragonie/constant_time_encoding",
  5079. "version": "v3.0.0",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5083. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5088. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "php": "^8"
  5093. },
  5094. "require-dev": {
  5095. "phpunit/phpunit": "^9",
  5096. "vimeo/psalm": "^4|^5"
  5097. },
  5098. "type": "library",
  5099. "autoload": {
  5100. "psr-4": {
  5101. "ParagonIE\\ConstantTime\\": "src/"
  5102. }
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "MIT"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "Paragon Initiative Enterprises",
  5111. "email": "security@paragonie.com",
  5112. "homepage": "https://paragonie.com",
  5113. "role": "Maintainer"
  5114. },
  5115. {
  5116. "name": "Steve 'Sc00bz' Thomas",
  5117. "email": "steve@tobtu.com",
  5118. "homepage": "https://www.tobtu.com",
  5119. "role": "Original Developer"
  5120. }
  5121. ],
  5122. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5123. "keywords": [
  5124. "base16",
  5125. "base32",
  5126. "base32_decode",
  5127. "base32_encode",
  5128. "base64",
  5129. "base64_decode",
  5130. "base64_encode",
  5131. "bin2hex",
  5132. "encoding",
  5133. "hex",
  5134. "hex2bin",
  5135. "rfc4648"
  5136. ],
  5137. "support": {
  5138. "email": "info@paragonie.com",
  5139. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5140. "source": "https://github.com/paragonie/constant_time_encoding"
  5141. },
  5142. "time": "2024-05-08T12:36:18+00:00"
  5143. },
  5144. {
  5145. "name": "paragonie/random_compat",
  5146. "version": "v9.99.100",
  5147. "source": {
  5148. "type": "git",
  5149. "url": "https://github.com/paragonie/random_compat.git",
  5150. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5151. },
  5152. "dist": {
  5153. "type": "zip",
  5154. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5155. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5156. "shasum": ""
  5157. },
  5158. "require": {
  5159. "php": ">= 7"
  5160. },
  5161. "require-dev": {
  5162. "phpunit/phpunit": "4.*|5.*",
  5163. "vimeo/psalm": "^1"
  5164. },
  5165. "suggest": {
  5166. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5167. },
  5168. "type": "library",
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Paragon Initiative Enterprises",
  5176. "email": "security@paragonie.com",
  5177. "homepage": "https://paragonie.com"
  5178. }
  5179. ],
  5180. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5181. "keywords": [
  5182. "csprng",
  5183. "polyfill",
  5184. "pseudorandom",
  5185. "random"
  5186. ],
  5187. "support": {
  5188. "email": "info@paragonie.com",
  5189. "issues": "https://github.com/paragonie/random_compat/issues",
  5190. "source": "https://github.com/paragonie/random_compat"
  5191. },
  5192. "time": "2020-10-15T08:29:30+00:00"
  5193. },
  5194. {
  5195. "name": "php-amqplib/php-amqplib",
  5196. "version": "v3.7.2",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5200. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5205. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "ext-mbstring": "*",
  5210. "ext-sockets": "*",
  5211. "php": "^7.2||^8.0",
  5212. "phpseclib/phpseclib": "^2.0|^3.0"
  5213. },
  5214. "conflict": {
  5215. "php": "7.4.0 - 7.4.1"
  5216. },
  5217. "replace": {
  5218. "videlalvaro/php-amqplib": "self.version"
  5219. },
  5220. "require-dev": {
  5221. "ext-curl": "*",
  5222. "nategood/httpful": "^0.2.20",
  5223. "phpunit/phpunit": "^7.5|^9.5",
  5224. "squizlabs/php_codesniffer": "^3.6"
  5225. },
  5226. "type": "library",
  5227. "extra": {
  5228. "branch-alias": {
  5229. "dev-master": "3.0-dev"
  5230. }
  5231. },
  5232. "autoload": {
  5233. "psr-4": {
  5234. "PhpAmqpLib\\": "PhpAmqpLib/"
  5235. }
  5236. },
  5237. "notification-url": "https://packagist.org/downloads/",
  5238. "license": [
  5239. "LGPL-2.1-or-later"
  5240. ],
  5241. "authors": [
  5242. {
  5243. "name": "Alvaro Videla",
  5244. "role": "Original Maintainer"
  5245. },
  5246. {
  5247. "name": "Raúl Araya",
  5248. "email": "nubeiro@gmail.com",
  5249. "role": "Maintainer"
  5250. },
  5251. {
  5252. "name": "Luke Bakken",
  5253. "email": "luke@bakken.io",
  5254. "role": "Maintainer"
  5255. },
  5256. {
  5257. "name": "Ramūnas Dronga",
  5258. "email": "github@ramuno.lt",
  5259. "role": "Maintainer"
  5260. }
  5261. ],
  5262. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5263. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5264. "keywords": [
  5265. "message",
  5266. "queue",
  5267. "rabbitmq"
  5268. ],
  5269. "support": {
  5270. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5271. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5272. },
  5273. "time": "2024-11-21T09:21:41+00:00"
  5274. },
  5275. {
  5276. "name": "php-di/phpdoc-reader",
  5277. "version": "2.2.1",
  5278. "source": {
  5279. "type": "git",
  5280. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5281. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5282. },
  5283. "dist": {
  5284. "type": "zip",
  5285. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5286. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5287. "shasum": ""
  5288. },
  5289. "require": {
  5290. "php": ">=7.2.0"
  5291. },
  5292. "require-dev": {
  5293. "mnapoli/hard-mode": "~0.3.0",
  5294. "phpunit/phpunit": "^8.5|^9.0"
  5295. },
  5296. "type": "library",
  5297. "autoload": {
  5298. "psr-4": {
  5299. "PhpDocReader\\": "src/PhpDocReader"
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "MIT"
  5305. ],
  5306. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5307. "keywords": [
  5308. "phpdoc",
  5309. "reflection"
  5310. ],
  5311. "support": {
  5312. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5313. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5314. },
  5315. "time": "2020-10-12T12:39:22+00:00"
  5316. },
  5317. {
  5318. "name": "phpoption/phpoption",
  5319. "version": "1.9.3",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/schmittjoh/php-option.git",
  5323. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5328. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "php": "^7.2.5 || ^8.0"
  5333. },
  5334. "require-dev": {
  5335. "bamarni/composer-bin-plugin": "^1.8.2",
  5336. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5337. },
  5338. "type": "library",
  5339. "extra": {
  5340. "bamarni-bin": {
  5341. "bin-links": true,
  5342. "forward-command": false
  5343. },
  5344. "branch-alias": {
  5345. "dev-master": "1.9-dev"
  5346. }
  5347. },
  5348. "autoload": {
  5349. "psr-4": {
  5350. "PhpOption\\": "src/PhpOption/"
  5351. }
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "license": [
  5355. "Apache-2.0"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Johannes M. Schmitt",
  5360. "email": "schmittjoh@gmail.com",
  5361. "homepage": "https://github.com/schmittjoh"
  5362. },
  5363. {
  5364. "name": "Graham Campbell",
  5365. "email": "hello@gjcampbell.co.uk",
  5366. "homepage": "https://github.com/GrahamCampbell"
  5367. }
  5368. ],
  5369. "description": "Option Type for PHP",
  5370. "keywords": [
  5371. "language",
  5372. "option",
  5373. "php",
  5374. "type"
  5375. ],
  5376. "support": {
  5377. "issues": "https://github.com/schmittjoh/php-option/issues",
  5378. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5379. },
  5380. "funding": [
  5381. {
  5382. "url": "https://github.com/GrahamCampbell",
  5383. "type": "github"
  5384. },
  5385. {
  5386. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5387. "type": "tidelift"
  5388. }
  5389. ],
  5390. "time": "2024-07-20T21:41:07+00:00"
  5391. },
  5392. {
  5393. "name": "phpseclib/phpseclib",
  5394. "version": "3.0.42",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/phpseclib/phpseclib.git",
  5398. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5403. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "paragonie/constant_time_encoding": "^1|^2|^3",
  5408. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5409. "php": ">=5.6.1"
  5410. },
  5411. "require-dev": {
  5412. "phpunit/phpunit": "*"
  5413. },
  5414. "suggest": {
  5415. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5416. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5417. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5418. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5419. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5420. },
  5421. "type": "library",
  5422. "autoload": {
  5423. "files": [
  5424. "phpseclib/bootstrap.php"
  5425. ],
  5426. "psr-4": {
  5427. "phpseclib3\\": "phpseclib/"
  5428. }
  5429. },
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Jim Wigginton",
  5437. "email": "terrafrost@php.net",
  5438. "role": "Lead Developer"
  5439. },
  5440. {
  5441. "name": "Patrick Monnerat",
  5442. "email": "pm@datasphere.ch",
  5443. "role": "Developer"
  5444. },
  5445. {
  5446. "name": "Andreas Fischer",
  5447. "email": "bantu@phpbb.com",
  5448. "role": "Developer"
  5449. },
  5450. {
  5451. "name": "Hans-Jürgen Petrich",
  5452. "email": "petrich@tronic-media.com",
  5453. "role": "Developer"
  5454. },
  5455. {
  5456. "name": "Graham Campbell",
  5457. "email": "graham@alt-three.com",
  5458. "role": "Developer"
  5459. }
  5460. ],
  5461. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5462. "homepage": "http://phpseclib.sourceforge.net",
  5463. "keywords": [
  5464. "BigInteger",
  5465. "aes",
  5466. "asn.1",
  5467. "asn1",
  5468. "blowfish",
  5469. "crypto",
  5470. "cryptography",
  5471. "encryption",
  5472. "rsa",
  5473. "security",
  5474. "sftp",
  5475. "signature",
  5476. "signing",
  5477. "ssh",
  5478. "twofish",
  5479. "x.509",
  5480. "x509"
  5481. ],
  5482. "support": {
  5483. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5484. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5485. },
  5486. "funding": [
  5487. {
  5488. "url": "https://github.com/terrafrost",
  5489. "type": "github"
  5490. },
  5491. {
  5492. "url": "https://www.patreon.com/phpseclib",
  5493. "type": "patreon"
  5494. },
  5495. {
  5496. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5497. "type": "tidelift"
  5498. }
  5499. ],
  5500. "time": "2024-09-16T03:06:04+00:00"
  5501. },
  5502. {
  5503. "name": "psr/cache",
  5504. "version": "3.0.0",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://github.com/php-fig/cache.git",
  5508. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5513. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5514. "shasum": ""
  5515. },
  5516. "require": {
  5517. "php": ">=8.0.0"
  5518. },
  5519. "type": "library",
  5520. "extra": {
  5521. "branch-alias": {
  5522. "dev-master": "1.0.x-dev"
  5523. }
  5524. },
  5525. "autoload": {
  5526. "psr-4": {
  5527. "Psr\\Cache\\": "src/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "PHP-FIG",
  5537. "homepage": "https://www.php-fig.org/"
  5538. }
  5539. ],
  5540. "description": "Common interface for caching libraries",
  5541. "keywords": [
  5542. "cache",
  5543. "psr",
  5544. "psr-6"
  5545. ],
  5546. "support": {
  5547. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5548. },
  5549. "time": "2021-02-03T23:26:27+00:00"
  5550. },
  5551. {
  5552. "name": "psr/clock",
  5553. "version": "1.0.0",
  5554. "source": {
  5555. "type": "git",
  5556. "url": "https://github.com/php-fig/clock.git",
  5557. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5558. },
  5559. "dist": {
  5560. "type": "zip",
  5561. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5562. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5563. "shasum": ""
  5564. },
  5565. "require": {
  5566. "php": "^7.0 || ^8.0"
  5567. },
  5568. "type": "library",
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Psr\\Clock\\": "src/"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "PHP-FIG",
  5581. "homepage": "https://www.php-fig.org/"
  5582. }
  5583. ],
  5584. "description": "Common interface for reading the clock.",
  5585. "homepage": "https://github.com/php-fig/clock",
  5586. "keywords": [
  5587. "clock",
  5588. "now",
  5589. "psr",
  5590. "psr-20",
  5591. "time"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/php-fig/clock/issues",
  5595. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5596. },
  5597. "time": "2022-11-25T14:36:26+00:00"
  5598. },
  5599. {
  5600. "name": "psr/container",
  5601. "version": "2.0.2",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/php-fig/container.git",
  5605. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5610. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5611. "shasum": ""
  5612. },
  5613. "require": {
  5614. "php": ">=7.4.0"
  5615. },
  5616. "type": "library",
  5617. "extra": {
  5618. "branch-alias": {
  5619. "dev-master": "2.0.x-dev"
  5620. }
  5621. },
  5622. "autoload": {
  5623. "psr-4": {
  5624. "Psr\\Container\\": "src/"
  5625. }
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "PHP-FIG",
  5634. "homepage": "https://www.php-fig.org/"
  5635. }
  5636. ],
  5637. "description": "Common Container Interface (PHP FIG PSR-11)",
  5638. "homepage": "https://github.com/php-fig/container",
  5639. "keywords": [
  5640. "PSR-11",
  5641. "container",
  5642. "container-interface",
  5643. "container-interop",
  5644. "psr"
  5645. ],
  5646. "support": {
  5647. "issues": "https://github.com/php-fig/container/issues",
  5648. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5649. },
  5650. "time": "2021-11-05T16:47:00+00:00"
  5651. },
  5652. {
  5653. "name": "psr/event-dispatcher",
  5654. "version": "1.0.0",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/php-fig/event-dispatcher.git",
  5658. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5663. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": ">=7.2.0"
  5668. },
  5669. "type": "library",
  5670. "extra": {
  5671. "branch-alias": {
  5672. "dev-master": "1.0.x-dev"
  5673. }
  5674. },
  5675. "autoload": {
  5676. "psr-4": {
  5677. "Psr\\EventDispatcher\\": "src/"
  5678. }
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "PHP-FIG",
  5687. "homepage": "http://www.php-fig.org/"
  5688. }
  5689. ],
  5690. "description": "Standard interfaces for event handling.",
  5691. "keywords": [
  5692. "events",
  5693. "psr",
  5694. "psr-14"
  5695. ],
  5696. "support": {
  5697. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5698. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5699. },
  5700. "time": "2019-01-08T18:20:26+00:00"
  5701. },
  5702. {
  5703. "name": "psr/http-client",
  5704. "version": "1.0.3",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/php-fig/http-client.git",
  5708. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5713. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": "^7.0 || ^8.0",
  5718. "psr/http-message": "^1.0 || ^2.0"
  5719. },
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "1.0.x-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Psr\\Http\\Client\\": "src/"
  5729. }
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "MIT"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "PHP-FIG",
  5738. "homepage": "https://www.php-fig.org/"
  5739. }
  5740. ],
  5741. "description": "Common interface for HTTP clients",
  5742. "homepage": "https://github.com/php-fig/http-client",
  5743. "keywords": [
  5744. "http",
  5745. "http-client",
  5746. "psr",
  5747. "psr-18"
  5748. ],
  5749. "support": {
  5750. "source": "https://github.com/php-fig/http-client"
  5751. },
  5752. "time": "2023-09-23T14:17:50+00:00"
  5753. },
  5754. {
  5755. "name": "psr/http-factory",
  5756. "version": "1.1.0",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/php-fig/http-factory.git",
  5760. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5765. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5766. "shasum": ""
  5767. },
  5768. "require": {
  5769. "php": ">=7.1",
  5770. "psr/http-message": "^1.0 || ^2.0"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "branch-alias": {
  5775. "dev-master": "1.0.x-dev"
  5776. }
  5777. },
  5778. "autoload": {
  5779. "psr-4": {
  5780. "Psr\\Http\\Message\\": "src/"
  5781. }
  5782. },
  5783. "notification-url": "https://packagist.org/downloads/",
  5784. "license": [
  5785. "MIT"
  5786. ],
  5787. "authors": [
  5788. {
  5789. "name": "PHP-FIG",
  5790. "homepage": "https://www.php-fig.org/"
  5791. }
  5792. ],
  5793. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5794. "keywords": [
  5795. "factory",
  5796. "http",
  5797. "message",
  5798. "psr",
  5799. "psr-17",
  5800. "psr-7",
  5801. "request",
  5802. "response"
  5803. ],
  5804. "support": {
  5805. "source": "https://github.com/php-fig/http-factory"
  5806. },
  5807. "time": "2024-04-15T12:06:14+00:00"
  5808. },
  5809. {
  5810. "name": "psr/http-message",
  5811. "version": "2.0",
  5812. "source": {
  5813. "type": "git",
  5814. "url": "https://github.com/php-fig/http-message.git",
  5815. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5816. },
  5817. "dist": {
  5818. "type": "zip",
  5819. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5820. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5821. "shasum": ""
  5822. },
  5823. "require": {
  5824. "php": "^7.2 || ^8.0"
  5825. },
  5826. "type": "library",
  5827. "extra": {
  5828. "branch-alias": {
  5829. "dev-master": "2.0.x-dev"
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Psr\\Http\\Message\\": "src/"
  5835. }
  5836. },
  5837. "notification-url": "https://packagist.org/downloads/",
  5838. "license": [
  5839. "MIT"
  5840. ],
  5841. "authors": [
  5842. {
  5843. "name": "PHP-FIG",
  5844. "homepage": "https://www.php-fig.org/"
  5845. }
  5846. ],
  5847. "description": "Common interface for HTTP messages",
  5848. "homepage": "https://github.com/php-fig/http-message",
  5849. "keywords": [
  5850. "http",
  5851. "http-message",
  5852. "psr",
  5853. "psr-7",
  5854. "request",
  5855. "response"
  5856. ],
  5857. "support": {
  5858. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5859. },
  5860. "time": "2023-04-04T09:54:51+00:00"
  5861. },
  5862. {
  5863. "name": "psr/http-server-handler",
  5864. "version": "1.0.2",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/php-fig/http-server-handler.git",
  5868. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5873. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5874. "shasum": ""
  5875. },
  5876. "require": {
  5877. "php": ">=7.0",
  5878. "psr/http-message": "^1.0 || ^2.0"
  5879. },
  5880. "type": "library",
  5881. "extra": {
  5882. "branch-alias": {
  5883. "dev-master": "1.0.x-dev"
  5884. }
  5885. },
  5886. "autoload": {
  5887. "psr-4": {
  5888. "Psr\\Http\\Server\\": "src/"
  5889. }
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "MIT"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "PHP-FIG",
  5898. "homepage": "https://www.php-fig.org/"
  5899. }
  5900. ],
  5901. "description": "Common interface for HTTP server-side request handler",
  5902. "keywords": [
  5903. "handler",
  5904. "http",
  5905. "http-interop",
  5906. "psr",
  5907. "psr-15",
  5908. "psr-7",
  5909. "request",
  5910. "response",
  5911. "server"
  5912. ],
  5913. "support": {
  5914. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5915. },
  5916. "time": "2023-04-10T20:06:20+00:00"
  5917. },
  5918. {
  5919. "name": "psr/http-server-middleware",
  5920. "version": "1.0.2",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/php-fig/http-server-middleware.git",
  5924. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5929. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5930. "shasum": ""
  5931. },
  5932. "require": {
  5933. "php": ">=7.0",
  5934. "psr/http-message": "^1.0 || ^2.0",
  5935. "psr/http-server-handler": "^1.0"
  5936. },
  5937. "type": "library",
  5938. "extra": {
  5939. "branch-alias": {
  5940. "dev-master": "1.0.x-dev"
  5941. }
  5942. },
  5943. "autoload": {
  5944. "psr-4": {
  5945. "Psr\\Http\\Server\\": "src/"
  5946. }
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "PHP-FIG",
  5955. "homepage": "https://www.php-fig.org/"
  5956. }
  5957. ],
  5958. "description": "Common interface for HTTP server-side middleware",
  5959. "keywords": [
  5960. "http",
  5961. "http-interop",
  5962. "middleware",
  5963. "psr",
  5964. "psr-15",
  5965. "psr-7",
  5966. "request",
  5967. "response"
  5968. ],
  5969. "support": {
  5970. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5971. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5972. },
  5973. "time": "2023-04-11T06:14:47+00:00"
  5974. },
  5975. {
  5976. "name": "psr/log",
  5977. "version": "3.0.2",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/php-fig/log.git",
  5981. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5986. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5987. "shasum": ""
  5988. },
  5989. "require": {
  5990. "php": ">=8.0.0"
  5991. },
  5992. "type": "library",
  5993. "extra": {
  5994. "branch-alias": {
  5995. "dev-master": "3.x-dev"
  5996. }
  5997. },
  5998. "autoload": {
  5999. "psr-4": {
  6000. "Psr\\Log\\": "src"
  6001. }
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "MIT"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "PHP-FIG",
  6010. "homepage": "https://www.php-fig.org/"
  6011. }
  6012. ],
  6013. "description": "Common interface for logging libraries",
  6014. "homepage": "https://github.com/php-fig/log",
  6015. "keywords": [
  6016. "log",
  6017. "psr",
  6018. "psr-3"
  6019. ],
  6020. "support": {
  6021. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6022. },
  6023. "time": "2024-09-11T13:17:53+00:00"
  6024. },
  6025. {
  6026. "name": "psr/simple-cache",
  6027. "version": "3.0.0",
  6028. "source": {
  6029. "type": "git",
  6030. "url": "https://github.com/php-fig/simple-cache.git",
  6031. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6032. },
  6033. "dist": {
  6034. "type": "zip",
  6035. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6036. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6037. "shasum": ""
  6038. },
  6039. "require": {
  6040. "php": ">=8.0.0"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "branch-alias": {
  6045. "dev-master": "3.0.x-dev"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "psr-4": {
  6050. "Psr\\SimpleCache\\": "src/"
  6051. }
  6052. },
  6053. "notification-url": "https://packagist.org/downloads/",
  6054. "license": [
  6055. "MIT"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "PHP-FIG",
  6060. "homepage": "https://www.php-fig.org/"
  6061. }
  6062. ],
  6063. "description": "Common interfaces for simple caching",
  6064. "keywords": [
  6065. "cache",
  6066. "caching",
  6067. "psr",
  6068. "psr-16",
  6069. "simple-cache"
  6070. ],
  6071. "support": {
  6072. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6073. },
  6074. "time": "2021-10-29T13:26:27+00:00"
  6075. },
  6076. {
  6077. "name": "ralouphie/getallheaders",
  6078. "version": "3.0.3",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/ralouphie/getallheaders.git",
  6082. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6087. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6088. "shasum": ""
  6089. },
  6090. "require": {
  6091. "php": ">=5.6"
  6092. },
  6093. "require-dev": {
  6094. "php-coveralls/php-coveralls": "^2.1",
  6095. "phpunit/phpunit": "^5 || ^6.5"
  6096. },
  6097. "type": "library",
  6098. "autoload": {
  6099. "files": [
  6100. "src/getallheaders.php"
  6101. ]
  6102. },
  6103. "notification-url": "https://packagist.org/downloads/",
  6104. "license": [
  6105. "MIT"
  6106. ],
  6107. "authors": [
  6108. {
  6109. "name": "Ralph Khattar",
  6110. "email": "ralph.khattar@gmail.com"
  6111. }
  6112. ],
  6113. "description": "A polyfill for getallheaders.",
  6114. "support": {
  6115. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6116. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6117. },
  6118. "time": "2019-03-08T08:55:37+00:00"
  6119. },
  6120. {
  6121. "name": "swow/psr7-plus",
  6122. "version": "v1.1.2",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/swow/psr7-plus.git",
  6126. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6131. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6132. "shasum": ""
  6133. },
  6134. "require": {
  6135. "php": ">=8.0",
  6136. "psr/http-client": "^1.0",
  6137. "psr/http-factory": "^1.0",
  6138. "psr/http-message": "^1.1|^2.0"
  6139. },
  6140. "type": "library",
  6141. "autoload": {
  6142. "psr-4": {
  6143. "Swow\\Psr7\\Message\\": "src/Message/"
  6144. }
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "Apache-2.0"
  6149. ],
  6150. "authors": [
  6151. {
  6152. "name": "twose",
  6153. "email": "twosee@php.net"
  6154. }
  6155. ],
  6156. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6157. "keywords": [
  6158. "http",
  6159. "psr17",
  6160. "psr7",
  6161. "swow",
  6162. "websocket"
  6163. ],
  6164. "support": {
  6165. "issues": "https://github.com/swow/swow",
  6166. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6167. },
  6168. "time": "2023-06-15T09:18:11+00:00"
  6169. },
  6170. {
  6171. "name": "symfony/cache",
  6172. "version": "v6.4.14",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://github.com/symfony/cache.git",
  6176. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://api.github.com/repos/symfony/cache/zipball/36fb8aa88833708e9f29014b6f15fac051a8b613",
  6181. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613",
  6182. "shasum": ""
  6183. },
  6184. "require": {
  6185. "php": ">=8.1",
  6186. "psr/cache": "^2.0|^3.0",
  6187. "psr/log": "^1.1|^2|^3",
  6188. "symfony/cache-contracts": "^2.5|^3",
  6189. "symfony/service-contracts": "^2.5|^3",
  6190. "symfony/var-exporter": "^6.3.6|^7.0"
  6191. },
  6192. "conflict": {
  6193. "doctrine/dbal": "<2.13.1",
  6194. "symfony/dependency-injection": "<5.4",
  6195. "symfony/http-kernel": "<5.4",
  6196. "symfony/var-dumper": "<5.4"
  6197. },
  6198. "provide": {
  6199. "psr/cache-implementation": "2.0|3.0",
  6200. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6201. "symfony/cache-implementation": "1.1|2.0|3.0"
  6202. },
  6203. "require-dev": {
  6204. "cache/integration-tests": "dev-master",
  6205. "doctrine/dbal": "^2.13.1|^3|^4",
  6206. "predis/predis": "^1.1|^2.0",
  6207. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6208. "symfony/config": "^5.4|^6.0|^7.0",
  6209. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6210. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6211. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6212. "symfony/messenger": "^5.4|^6.0|^7.0",
  6213. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Symfony\\Component\\Cache\\": ""
  6219. },
  6220. "classmap": [
  6221. "Traits/ValueWrapper.php"
  6222. ],
  6223. "exclude-from-classmap": [
  6224. "/Tests/"
  6225. ]
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Nicolas Grekas",
  6234. "email": "p@tchwork.com"
  6235. },
  6236. {
  6237. "name": "Symfony Community",
  6238. "homepage": "https://symfony.com/contributors"
  6239. }
  6240. ],
  6241. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6242. "homepage": "https://symfony.com",
  6243. "keywords": [
  6244. "caching",
  6245. "psr6"
  6246. ],
  6247. "support": {
  6248. "source": "https://github.com/symfony/cache/tree/v6.4.14"
  6249. },
  6250. "funding": [
  6251. {
  6252. "url": "https://symfony.com/sponsor",
  6253. "type": "custom"
  6254. },
  6255. {
  6256. "url": "https://github.com/fabpot",
  6257. "type": "github"
  6258. },
  6259. {
  6260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6261. "type": "tidelift"
  6262. }
  6263. ],
  6264. "time": "2024-11-05T15:34:40+00:00"
  6265. },
  6266. {
  6267. "name": "symfony/cache-contracts",
  6268. "version": "v3.5.0",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/symfony/cache-contracts.git",
  6272. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  6277. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": ">=8.1",
  6282. "psr/cache": "^3.0"
  6283. },
  6284. "type": "library",
  6285. "extra": {
  6286. "branch-alias": {
  6287. "dev-main": "3.5-dev"
  6288. },
  6289. "thanks": {
  6290. "name": "symfony/contracts",
  6291. "url": "https://github.com/symfony/contracts"
  6292. }
  6293. },
  6294. "autoload": {
  6295. "psr-4": {
  6296. "Symfony\\Contracts\\Cache\\": ""
  6297. }
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Nicolas Grekas",
  6306. "email": "p@tchwork.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "Generic abstractions related to caching",
  6314. "homepage": "https://symfony.com",
  6315. "keywords": [
  6316. "abstractions",
  6317. "contracts",
  6318. "decoupling",
  6319. "interfaces",
  6320. "interoperability",
  6321. "standards"
  6322. ],
  6323. "support": {
  6324. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  6325. },
  6326. "funding": [
  6327. {
  6328. "url": "https://symfony.com/sponsor",
  6329. "type": "custom"
  6330. },
  6331. {
  6332. "url": "https://github.com/fabpot",
  6333. "type": "github"
  6334. },
  6335. {
  6336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6337. "type": "tidelift"
  6338. }
  6339. ],
  6340. "time": "2024-04-18T09:32:20+00:00"
  6341. },
  6342. {
  6343. "name": "symfony/console",
  6344. "version": "v6.4.14",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/symfony/console.git",
  6348. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6353. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "php": ">=8.1",
  6358. "symfony/deprecation-contracts": "^2.5|^3",
  6359. "symfony/polyfill-mbstring": "~1.0",
  6360. "symfony/service-contracts": "^2.5|^3",
  6361. "symfony/string": "^5.4|^6.0|^7.0"
  6362. },
  6363. "conflict": {
  6364. "symfony/dependency-injection": "<5.4",
  6365. "symfony/dotenv": "<5.4",
  6366. "symfony/event-dispatcher": "<5.4",
  6367. "symfony/lock": "<5.4",
  6368. "symfony/process": "<5.4"
  6369. },
  6370. "provide": {
  6371. "psr/log-implementation": "1.0|2.0|3.0"
  6372. },
  6373. "require-dev": {
  6374. "psr/log": "^1|^2|^3",
  6375. "symfony/config": "^5.4|^6.0|^7.0",
  6376. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6377. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6378. "symfony/http-foundation": "^6.4|^7.0",
  6379. "symfony/http-kernel": "^6.4|^7.0",
  6380. "symfony/lock": "^5.4|^6.0|^7.0",
  6381. "symfony/messenger": "^5.4|^6.0|^7.0",
  6382. "symfony/process": "^5.4|^6.0|^7.0",
  6383. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6384. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "psr-4": {
  6389. "Symfony\\Component\\Console\\": ""
  6390. },
  6391. "exclude-from-classmap": [
  6392. "/Tests/"
  6393. ]
  6394. },
  6395. "notification-url": "https://packagist.org/downloads/",
  6396. "license": [
  6397. "MIT"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "Fabien Potencier",
  6402. "email": "fabien@symfony.com"
  6403. },
  6404. {
  6405. "name": "Symfony Community",
  6406. "homepage": "https://symfony.com/contributors"
  6407. }
  6408. ],
  6409. "description": "Eases the creation of beautiful and testable command line interfaces",
  6410. "homepage": "https://symfony.com",
  6411. "keywords": [
  6412. "cli",
  6413. "command-line",
  6414. "console",
  6415. "terminal"
  6416. ],
  6417. "support": {
  6418. "source": "https://github.com/symfony/console/tree/v6.4.14"
  6419. },
  6420. "funding": [
  6421. {
  6422. "url": "https://symfony.com/sponsor",
  6423. "type": "custom"
  6424. },
  6425. {
  6426. "url": "https://github.com/fabpot",
  6427. "type": "github"
  6428. },
  6429. {
  6430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6431. "type": "tidelift"
  6432. }
  6433. ],
  6434. "time": "2024-11-05T15:34:40+00:00"
  6435. },
  6436. {
  6437. "name": "symfony/deprecation-contracts",
  6438. "version": "v3.5.0",
  6439. "source": {
  6440. "type": "git",
  6441. "url": "https://github.com/symfony/deprecation-contracts.git",
  6442. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6443. },
  6444. "dist": {
  6445. "type": "zip",
  6446. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6447. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6448. "shasum": ""
  6449. },
  6450. "require": {
  6451. "php": ">=8.1"
  6452. },
  6453. "type": "library",
  6454. "extra": {
  6455. "branch-alias": {
  6456. "dev-main": "3.5-dev"
  6457. },
  6458. "thanks": {
  6459. "name": "symfony/contracts",
  6460. "url": "https://github.com/symfony/contracts"
  6461. }
  6462. },
  6463. "autoload": {
  6464. "files": [
  6465. "function.php"
  6466. ]
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "Nicolas Grekas",
  6475. "email": "p@tchwork.com"
  6476. },
  6477. {
  6478. "name": "Symfony Community",
  6479. "homepage": "https://symfony.com/contributors"
  6480. }
  6481. ],
  6482. "description": "A generic function and convention to trigger deprecation notices",
  6483. "homepage": "https://symfony.com",
  6484. "support": {
  6485. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6486. },
  6487. "funding": [
  6488. {
  6489. "url": "https://symfony.com/sponsor",
  6490. "type": "custom"
  6491. },
  6492. {
  6493. "url": "https://github.com/fabpot",
  6494. "type": "github"
  6495. },
  6496. {
  6497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6498. "type": "tidelift"
  6499. }
  6500. ],
  6501. "time": "2024-04-18T09:32:20+00:00"
  6502. },
  6503. {
  6504. "name": "symfony/finder",
  6505. "version": "v6.4.13",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/symfony/finder.git",
  6509. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6514. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": ">=8.1"
  6519. },
  6520. "require-dev": {
  6521. "symfony/filesystem": "^6.0|^7.0"
  6522. },
  6523. "type": "library",
  6524. "autoload": {
  6525. "psr-4": {
  6526. "Symfony\\Component\\Finder\\": ""
  6527. },
  6528. "exclude-from-classmap": [
  6529. "/Tests/"
  6530. ]
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "MIT"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Fabien Potencier",
  6539. "email": "fabien@symfony.com"
  6540. },
  6541. {
  6542. "name": "Symfony Community",
  6543. "homepage": "https://symfony.com/contributors"
  6544. }
  6545. ],
  6546. "description": "Finds files and directories via an intuitive fluent interface",
  6547. "homepage": "https://symfony.com",
  6548. "support": {
  6549. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6550. },
  6551. "funding": [
  6552. {
  6553. "url": "https://symfony.com/sponsor",
  6554. "type": "custom"
  6555. },
  6556. {
  6557. "url": "https://github.com/fabpot",
  6558. "type": "github"
  6559. },
  6560. {
  6561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6562. "type": "tidelift"
  6563. }
  6564. ],
  6565. "time": "2024-10-01T08:30:56+00:00"
  6566. },
  6567. {
  6568. "name": "symfony/polyfill-ctype",
  6569. "version": "v1.31.0",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/symfony/polyfill-ctype.git",
  6573. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6578. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6579. "shasum": ""
  6580. },
  6581. "require": {
  6582. "php": ">=7.2"
  6583. },
  6584. "provide": {
  6585. "ext-ctype": "*"
  6586. },
  6587. "suggest": {
  6588. "ext-ctype": "For best performance"
  6589. },
  6590. "type": "library",
  6591. "extra": {
  6592. "thanks": {
  6593. "name": "symfony/polyfill",
  6594. "url": "https://github.com/symfony/polyfill"
  6595. }
  6596. },
  6597. "autoload": {
  6598. "files": [
  6599. "bootstrap.php"
  6600. ],
  6601. "psr-4": {
  6602. "Symfony\\Polyfill\\Ctype\\": ""
  6603. }
  6604. },
  6605. "notification-url": "https://packagist.org/downloads/",
  6606. "license": [
  6607. "MIT"
  6608. ],
  6609. "authors": [
  6610. {
  6611. "name": "Gert de Pagter",
  6612. "email": "BackEndTea@gmail.com"
  6613. },
  6614. {
  6615. "name": "Symfony Community",
  6616. "homepage": "https://symfony.com/contributors"
  6617. }
  6618. ],
  6619. "description": "Symfony polyfill for ctype functions",
  6620. "homepage": "https://symfony.com",
  6621. "keywords": [
  6622. "compatibility",
  6623. "ctype",
  6624. "polyfill",
  6625. "portable"
  6626. ],
  6627. "support": {
  6628. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6629. },
  6630. "funding": [
  6631. {
  6632. "url": "https://symfony.com/sponsor",
  6633. "type": "custom"
  6634. },
  6635. {
  6636. "url": "https://github.com/fabpot",
  6637. "type": "github"
  6638. },
  6639. {
  6640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6641. "type": "tidelift"
  6642. }
  6643. ],
  6644. "time": "2024-09-09T11:45:10+00:00"
  6645. },
  6646. {
  6647. "name": "symfony/polyfill-intl-grapheme",
  6648. "version": "v1.31.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6652. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6657. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "php": ">=7.2"
  6662. },
  6663. "suggest": {
  6664. "ext-intl": "For best performance"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "thanks": {
  6669. "name": "symfony/polyfill",
  6670. "url": "https://github.com/symfony/polyfill"
  6671. }
  6672. },
  6673. "autoload": {
  6674. "files": [
  6675. "bootstrap.php"
  6676. ],
  6677. "psr-4": {
  6678. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6679. }
  6680. },
  6681. "notification-url": "https://packagist.org/downloads/",
  6682. "license": [
  6683. "MIT"
  6684. ],
  6685. "authors": [
  6686. {
  6687. "name": "Nicolas Grekas",
  6688. "email": "p@tchwork.com"
  6689. },
  6690. {
  6691. "name": "Symfony Community",
  6692. "homepage": "https://symfony.com/contributors"
  6693. }
  6694. ],
  6695. "description": "Symfony polyfill for intl's grapheme_* functions",
  6696. "homepage": "https://symfony.com",
  6697. "keywords": [
  6698. "compatibility",
  6699. "grapheme",
  6700. "intl",
  6701. "polyfill",
  6702. "portable",
  6703. "shim"
  6704. ],
  6705. "support": {
  6706. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6707. },
  6708. "funding": [
  6709. {
  6710. "url": "https://symfony.com/sponsor",
  6711. "type": "custom"
  6712. },
  6713. {
  6714. "url": "https://github.com/fabpot",
  6715. "type": "github"
  6716. },
  6717. {
  6718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6719. "type": "tidelift"
  6720. }
  6721. ],
  6722. "time": "2024-09-09T11:45:10+00:00"
  6723. },
  6724. {
  6725. "name": "symfony/polyfill-intl-normalizer",
  6726. "version": "v1.31.0",
  6727. "source": {
  6728. "type": "git",
  6729. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6730. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6731. },
  6732. "dist": {
  6733. "type": "zip",
  6734. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6735. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6736. "shasum": ""
  6737. },
  6738. "require": {
  6739. "php": ">=7.2"
  6740. },
  6741. "suggest": {
  6742. "ext-intl": "For best performance"
  6743. },
  6744. "type": "library",
  6745. "extra": {
  6746. "thanks": {
  6747. "name": "symfony/polyfill",
  6748. "url": "https://github.com/symfony/polyfill"
  6749. }
  6750. },
  6751. "autoload": {
  6752. "files": [
  6753. "bootstrap.php"
  6754. ],
  6755. "psr-4": {
  6756. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6757. },
  6758. "classmap": [
  6759. "Resources/stubs"
  6760. ]
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Nicolas Grekas",
  6769. "email": "p@tchwork.com"
  6770. },
  6771. {
  6772. "name": "Symfony Community",
  6773. "homepage": "https://symfony.com/contributors"
  6774. }
  6775. ],
  6776. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6777. "homepage": "https://symfony.com",
  6778. "keywords": [
  6779. "compatibility",
  6780. "intl",
  6781. "normalizer",
  6782. "polyfill",
  6783. "portable",
  6784. "shim"
  6785. ],
  6786. "support": {
  6787. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2024-09-09T11:45:10+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/polyfill-mbstring",
  6807. "version": "v1.31.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6811. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6816. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=7.2"
  6821. },
  6822. "provide": {
  6823. "ext-mbstring": "*"
  6824. },
  6825. "suggest": {
  6826. "ext-mbstring": "For best performance"
  6827. },
  6828. "type": "library",
  6829. "extra": {
  6830. "thanks": {
  6831. "name": "symfony/polyfill",
  6832. "url": "https://github.com/symfony/polyfill"
  6833. }
  6834. },
  6835. "autoload": {
  6836. "files": [
  6837. "bootstrap.php"
  6838. ],
  6839. "psr-4": {
  6840. "Symfony\\Polyfill\\Mbstring\\": ""
  6841. }
  6842. },
  6843. "notification-url": "https://packagist.org/downloads/",
  6844. "license": [
  6845. "MIT"
  6846. ],
  6847. "authors": [
  6848. {
  6849. "name": "Nicolas Grekas",
  6850. "email": "p@tchwork.com"
  6851. },
  6852. {
  6853. "name": "Symfony Community",
  6854. "homepage": "https://symfony.com/contributors"
  6855. }
  6856. ],
  6857. "description": "Symfony polyfill for the Mbstring extension",
  6858. "homepage": "https://symfony.com",
  6859. "keywords": [
  6860. "compatibility",
  6861. "mbstring",
  6862. "polyfill",
  6863. "portable",
  6864. "shim"
  6865. ],
  6866. "support": {
  6867. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6868. },
  6869. "funding": [
  6870. {
  6871. "url": "https://symfony.com/sponsor",
  6872. "type": "custom"
  6873. },
  6874. {
  6875. "url": "https://github.com/fabpot",
  6876. "type": "github"
  6877. },
  6878. {
  6879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6880. "type": "tidelift"
  6881. }
  6882. ],
  6883. "time": "2024-09-09T11:45:10+00:00"
  6884. },
  6885. {
  6886. "name": "symfony/polyfill-php80",
  6887. "version": "v1.31.0",
  6888. "source": {
  6889. "type": "git",
  6890. "url": "https://github.com/symfony/polyfill-php80.git",
  6891. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6892. },
  6893. "dist": {
  6894. "type": "zip",
  6895. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6896. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6897. "shasum": ""
  6898. },
  6899. "require": {
  6900. "php": ">=7.2"
  6901. },
  6902. "type": "library",
  6903. "extra": {
  6904. "thanks": {
  6905. "name": "symfony/polyfill",
  6906. "url": "https://github.com/symfony/polyfill"
  6907. }
  6908. },
  6909. "autoload": {
  6910. "files": [
  6911. "bootstrap.php"
  6912. ],
  6913. "psr-4": {
  6914. "Symfony\\Polyfill\\Php80\\": ""
  6915. },
  6916. "classmap": [
  6917. "Resources/stubs"
  6918. ]
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Ion Bazan",
  6927. "email": "ion.bazan@gmail.com"
  6928. },
  6929. {
  6930. "name": "Nicolas Grekas",
  6931. "email": "p@tchwork.com"
  6932. },
  6933. {
  6934. "name": "Symfony Community",
  6935. "homepage": "https://symfony.com/contributors"
  6936. }
  6937. ],
  6938. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6939. "homepage": "https://symfony.com",
  6940. "keywords": [
  6941. "compatibility",
  6942. "polyfill",
  6943. "portable",
  6944. "shim"
  6945. ],
  6946. "support": {
  6947. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6948. },
  6949. "funding": [
  6950. {
  6951. "url": "https://symfony.com/sponsor",
  6952. "type": "custom"
  6953. },
  6954. {
  6955. "url": "https://github.com/fabpot",
  6956. "type": "github"
  6957. },
  6958. {
  6959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6960. "type": "tidelift"
  6961. }
  6962. ],
  6963. "time": "2024-09-09T11:45:10+00:00"
  6964. },
  6965. {
  6966. "name": "symfony/service-contracts",
  6967. "version": "v3.5.0",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/symfony/service-contracts.git",
  6971. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6976. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6977. "shasum": ""
  6978. },
  6979. "require": {
  6980. "php": ">=8.1",
  6981. "psr/container": "^1.1|^2.0",
  6982. "symfony/deprecation-contracts": "^2.5|^3"
  6983. },
  6984. "conflict": {
  6985. "ext-psr": "<1.1|>=2"
  6986. },
  6987. "type": "library",
  6988. "extra": {
  6989. "branch-alias": {
  6990. "dev-main": "3.5-dev"
  6991. },
  6992. "thanks": {
  6993. "name": "symfony/contracts",
  6994. "url": "https://github.com/symfony/contracts"
  6995. }
  6996. },
  6997. "autoload": {
  6998. "psr-4": {
  6999. "Symfony\\Contracts\\Service\\": ""
  7000. },
  7001. "exclude-from-classmap": [
  7002. "/Test/"
  7003. ]
  7004. },
  7005. "notification-url": "https://packagist.org/downloads/",
  7006. "license": [
  7007. "MIT"
  7008. ],
  7009. "authors": [
  7010. {
  7011. "name": "Nicolas Grekas",
  7012. "email": "p@tchwork.com"
  7013. },
  7014. {
  7015. "name": "Symfony Community",
  7016. "homepage": "https://symfony.com/contributors"
  7017. }
  7018. ],
  7019. "description": "Generic abstractions related to writing services",
  7020. "homepage": "https://symfony.com",
  7021. "keywords": [
  7022. "abstractions",
  7023. "contracts",
  7024. "decoupling",
  7025. "interfaces",
  7026. "interoperability",
  7027. "standards"
  7028. ],
  7029. "support": {
  7030. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2024-04-18T09:32:20+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/string",
  7050. "version": "v6.4.13",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/string.git",
  7054. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7059. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": ">=8.1",
  7064. "symfony/polyfill-ctype": "~1.8",
  7065. "symfony/polyfill-intl-grapheme": "~1.0",
  7066. "symfony/polyfill-intl-normalizer": "~1.0",
  7067. "symfony/polyfill-mbstring": "~1.0"
  7068. },
  7069. "conflict": {
  7070. "symfony/translation-contracts": "<2.5"
  7071. },
  7072. "require-dev": {
  7073. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7074. "symfony/http-client": "^5.4|^6.0|^7.0",
  7075. "symfony/intl": "^6.2|^7.0",
  7076. "symfony/translation-contracts": "^2.5|^3.0",
  7077. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7078. },
  7079. "type": "library",
  7080. "autoload": {
  7081. "files": [
  7082. "Resources/functions.php"
  7083. ],
  7084. "psr-4": {
  7085. "Symfony\\Component\\String\\": ""
  7086. },
  7087. "exclude-from-classmap": [
  7088. "/Tests/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Nicolas Grekas",
  7098. "email": "p@tchwork.com"
  7099. },
  7100. {
  7101. "name": "Symfony Community",
  7102. "homepage": "https://symfony.com/contributors"
  7103. }
  7104. ],
  7105. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7106. "homepage": "https://symfony.com",
  7107. "keywords": [
  7108. "grapheme",
  7109. "i18n",
  7110. "string",
  7111. "unicode",
  7112. "utf-8",
  7113. "utf8"
  7114. ],
  7115. "support": {
  7116. "source": "https://github.com/symfony/string/tree/v6.4.13"
  7117. },
  7118. "funding": [
  7119. {
  7120. "url": "https://symfony.com/sponsor",
  7121. "type": "custom"
  7122. },
  7123. {
  7124. "url": "https://github.com/fabpot",
  7125. "type": "github"
  7126. },
  7127. {
  7128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7129. "type": "tidelift"
  7130. }
  7131. ],
  7132. "time": "2024-09-25T14:18:03+00:00"
  7133. },
  7134. {
  7135. "name": "symfony/translation",
  7136. "version": "v6.4.13",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/symfony/translation.git",
  7140. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7145. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "php": ">=8.1",
  7150. "symfony/deprecation-contracts": "^2.5|^3",
  7151. "symfony/polyfill-mbstring": "~1.0",
  7152. "symfony/translation-contracts": "^2.5|^3.0"
  7153. },
  7154. "conflict": {
  7155. "symfony/config": "<5.4",
  7156. "symfony/console": "<5.4",
  7157. "symfony/dependency-injection": "<5.4",
  7158. "symfony/http-client-contracts": "<2.5",
  7159. "symfony/http-kernel": "<5.4",
  7160. "symfony/service-contracts": "<2.5",
  7161. "symfony/twig-bundle": "<5.4",
  7162. "symfony/yaml": "<5.4"
  7163. },
  7164. "provide": {
  7165. "symfony/translation-implementation": "2.3|3.0"
  7166. },
  7167. "require-dev": {
  7168. "nikic/php-parser": "^4.18|^5.0",
  7169. "psr/log": "^1|^2|^3",
  7170. "symfony/config": "^5.4|^6.0|^7.0",
  7171. "symfony/console": "^5.4|^6.0|^7.0",
  7172. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7173. "symfony/finder": "^5.4|^6.0|^7.0",
  7174. "symfony/http-client-contracts": "^2.5|^3.0",
  7175. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7176. "symfony/intl": "^5.4|^6.0|^7.0",
  7177. "symfony/polyfill-intl-icu": "^1.21",
  7178. "symfony/routing": "^5.4|^6.0|^7.0",
  7179. "symfony/service-contracts": "^2.5|^3",
  7180. "symfony/yaml": "^5.4|^6.0|^7.0"
  7181. },
  7182. "type": "library",
  7183. "autoload": {
  7184. "files": [
  7185. "Resources/functions.php"
  7186. ],
  7187. "psr-4": {
  7188. "Symfony\\Component\\Translation\\": ""
  7189. },
  7190. "exclude-from-classmap": [
  7191. "/Tests/"
  7192. ]
  7193. },
  7194. "notification-url": "https://packagist.org/downloads/",
  7195. "license": [
  7196. "MIT"
  7197. ],
  7198. "authors": [
  7199. {
  7200. "name": "Fabien Potencier",
  7201. "email": "fabien@symfony.com"
  7202. },
  7203. {
  7204. "name": "Symfony Community",
  7205. "homepage": "https://symfony.com/contributors"
  7206. }
  7207. ],
  7208. "description": "Provides tools to internationalize your application",
  7209. "homepage": "https://symfony.com",
  7210. "support": {
  7211. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://symfony.com/sponsor",
  7216. "type": "custom"
  7217. },
  7218. {
  7219. "url": "https://github.com/fabpot",
  7220. "type": "github"
  7221. },
  7222. {
  7223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7224. "type": "tidelift"
  7225. }
  7226. ],
  7227. "time": "2024-09-27T18:14:25+00:00"
  7228. },
  7229. {
  7230. "name": "symfony/translation-contracts",
  7231. "version": "v3.5.0",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/symfony/translation-contracts.git",
  7235. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7240. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7241. "shasum": ""
  7242. },
  7243. "require": {
  7244. "php": ">=8.1"
  7245. },
  7246. "type": "library",
  7247. "extra": {
  7248. "branch-alias": {
  7249. "dev-main": "3.5-dev"
  7250. },
  7251. "thanks": {
  7252. "name": "symfony/contracts",
  7253. "url": "https://github.com/symfony/contracts"
  7254. }
  7255. },
  7256. "autoload": {
  7257. "psr-4": {
  7258. "Symfony\\Contracts\\Translation\\": ""
  7259. },
  7260. "exclude-from-classmap": [
  7261. "/Test/"
  7262. ]
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "MIT"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Nicolas Grekas",
  7271. "email": "p@tchwork.com"
  7272. },
  7273. {
  7274. "name": "Symfony Community",
  7275. "homepage": "https://symfony.com/contributors"
  7276. }
  7277. ],
  7278. "description": "Generic abstractions related to translation",
  7279. "homepage": "https://symfony.com",
  7280. "keywords": [
  7281. "abstractions",
  7282. "contracts",
  7283. "decoupling",
  7284. "interfaces",
  7285. "interoperability",
  7286. "standards"
  7287. ],
  7288. "support": {
  7289. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7290. },
  7291. "funding": [
  7292. {
  7293. "url": "https://symfony.com/sponsor",
  7294. "type": "custom"
  7295. },
  7296. {
  7297. "url": "https://github.com/fabpot",
  7298. "type": "github"
  7299. },
  7300. {
  7301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7302. "type": "tidelift"
  7303. }
  7304. ],
  7305. "time": "2024-04-18T09:32:20+00:00"
  7306. },
  7307. {
  7308. "name": "symfony/var-dumper",
  7309. "version": "v6.4.14",
  7310. "source": {
  7311. "type": "git",
  7312. "url": "https://github.com/symfony/var-dumper.git",
  7313. "reference": "93c09246038178717a9c14b809ea8151ffcf7091"
  7314. },
  7315. "dist": {
  7316. "type": "zip",
  7317. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/93c09246038178717a9c14b809ea8151ffcf7091",
  7318. "reference": "93c09246038178717a9c14b809ea8151ffcf7091",
  7319. "shasum": ""
  7320. },
  7321. "require": {
  7322. "php": ">=8.1",
  7323. "symfony/deprecation-contracts": "^2.5|^3",
  7324. "symfony/polyfill-mbstring": "~1.0"
  7325. },
  7326. "conflict": {
  7327. "symfony/console": "<5.4"
  7328. },
  7329. "require-dev": {
  7330. "ext-iconv": "*",
  7331. "symfony/console": "^5.4|^6.0|^7.0",
  7332. "symfony/error-handler": "^6.3|^7.0",
  7333. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7334. "symfony/process": "^5.4|^6.0|^7.0",
  7335. "symfony/uid": "^5.4|^6.0|^7.0",
  7336. "twig/twig": "^2.13|^3.0.4"
  7337. },
  7338. "bin": [
  7339. "Resources/bin/var-dump-server"
  7340. ],
  7341. "type": "library",
  7342. "autoload": {
  7343. "files": [
  7344. "Resources/functions/dump.php"
  7345. ],
  7346. "psr-4": {
  7347. "Symfony\\Component\\VarDumper\\": ""
  7348. },
  7349. "exclude-from-classmap": [
  7350. "/Tests/"
  7351. ]
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Nicolas Grekas",
  7360. "email": "p@tchwork.com"
  7361. },
  7362. {
  7363. "name": "Symfony Community",
  7364. "homepage": "https://symfony.com/contributors"
  7365. }
  7366. ],
  7367. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7368. "homepage": "https://symfony.com",
  7369. "keywords": [
  7370. "debug",
  7371. "dump"
  7372. ],
  7373. "support": {
  7374. "source": "https://github.com/symfony/var-dumper/tree/v6.4.14"
  7375. },
  7376. "funding": [
  7377. {
  7378. "url": "https://symfony.com/sponsor",
  7379. "type": "custom"
  7380. },
  7381. {
  7382. "url": "https://github.com/fabpot",
  7383. "type": "github"
  7384. },
  7385. {
  7386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7387. "type": "tidelift"
  7388. }
  7389. ],
  7390. "time": "2024-11-05T15:34:40+00:00"
  7391. },
  7392. {
  7393. "name": "symfony/var-exporter",
  7394. "version": "v6.4.13",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/symfony/var-exporter.git",
  7398. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7403. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "php": ">=8.1",
  7408. "symfony/deprecation-contracts": "^2.5|^3"
  7409. },
  7410. "require-dev": {
  7411. "symfony/property-access": "^6.4|^7.0",
  7412. "symfony/serializer": "^6.4|^7.0",
  7413. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7414. },
  7415. "type": "library",
  7416. "autoload": {
  7417. "psr-4": {
  7418. "Symfony\\Component\\VarExporter\\": ""
  7419. },
  7420. "exclude-from-classmap": [
  7421. "/Tests/"
  7422. ]
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Nicolas Grekas",
  7431. "email": "p@tchwork.com"
  7432. },
  7433. {
  7434. "name": "Symfony Community",
  7435. "homepage": "https://symfony.com/contributors"
  7436. }
  7437. ],
  7438. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7439. "homepage": "https://symfony.com",
  7440. "keywords": [
  7441. "clone",
  7442. "construct",
  7443. "export",
  7444. "hydrate",
  7445. "instantiate",
  7446. "lazy-loading",
  7447. "proxy",
  7448. "serialize"
  7449. ],
  7450. "support": {
  7451. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://symfony.com/sponsor",
  7456. "type": "custom"
  7457. },
  7458. {
  7459. "url": "https://github.com/fabpot",
  7460. "type": "github"
  7461. },
  7462. {
  7463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7464. "type": "tidelift"
  7465. }
  7466. ],
  7467. "time": "2024-09-25T14:18:03+00:00"
  7468. },
  7469. {
  7470. "name": "vlucas/phpdotenv",
  7471. "version": "v5.6.1",
  7472. "source": {
  7473. "type": "git",
  7474. "url": "https://github.com/vlucas/phpdotenv.git",
  7475. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7476. },
  7477. "dist": {
  7478. "type": "zip",
  7479. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7480. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7481. "shasum": ""
  7482. },
  7483. "require": {
  7484. "ext-pcre": "*",
  7485. "graham-campbell/result-type": "^1.1.3",
  7486. "php": "^7.2.5 || ^8.0",
  7487. "phpoption/phpoption": "^1.9.3",
  7488. "symfony/polyfill-ctype": "^1.24",
  7489. "symfony/polyfill-mbstring": "^1.24",
  7490. "symfony/polyfill-php80": "^1.24"
  7491. },
  7492. "require-dev": {
  7493. "bamarni/composer-bin-plugin": "^1.8.2",
  7494. "ext-filter": "*",
  7495. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7496. },
  7497. "suggest": {
  7498. "ext-filter": "Required to use the boolean validator."
  7499. },
  7500. "type": "library",
  7501. "extra": {
  7502. "bamarni-bin": {
  7503. "bin-links": true,
  7504. "forward-command": false
  7505. },
  7506. "branch-alias": {
  7507. "dev-master": "5.6-dev"
  7508. }
  7509. },
  7510. "autoload": {
  7511. "psr-4": {
  7512. "Dotenv\\": "src/"
  7513. }
  7514. },
  7515. "notification-url": "https://packagist.org/downloads/",
  7516. "license": [
  7517. "BSD-3-Clause"
  7518. ],
  7519. "authors": [
  7520. {
  7521. "name": "Graham Campbell",
  7522. "email": "hello@gjcampbell.co.uk",
  7523. "homepage": "https://github.com/GrahamCampbell"
  7524. },
  7525. {
  7526. "name": "Vance Lucas",
  7527. "email": "vance@vancelucas.com",
  7528. "homepage": "https://github.com/vlucas"
  7529. }
  7530. ],
  7531. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7532. "keywords": [
  7533. "dotenv",
  7534. "env",
  7535. "environment"
  7536. ],
  7537. "support": {
  7538. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7539. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7540. },
  7541. "funding": [
  7542. {
  7543. "url": "https://github.com/GrahamCampbell",
  7544. "type": "github"
  7545. },
  7546. {
  7547. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7548. "type": "tidelift"
  7549. }
  7550. ],
  7551. "time": "2024-07-20T21:52:34+00:00"
  7552. }
  7553. ],
  7554. "packages-dev": [
  7555. {
  7556. "name": "clue/ndjson-react",
  7557. "version": "v1.3.0",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/clue/reactphp-ndjson.git",
  7561. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7566. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=5.3",
  7571. "react/stream": "^1.2"
  7572. },
  7573. "require-dev": {
  7574. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7575. "react/event-loop": "^1.2"
  7576. },
  7577. "type": "library",
  7578. "autoload": {
  7579. "psr-4": {
  7580. "Clue\\React\\NDJson\\": "src/"
  7581. }
  7582. },
  7583. "notification-url": "https://packagist.org/downloads/",
  7584. "license": [
  7585. "MIT"
  7586. ],
  7587. "authors": [
  7588. {
  7589. "name": "Christian Lück",
  7590. "email": "christian@clue.engineering"
  7591. }
  7592. ],
  7593. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7594. "homepage": "https://github.com/clue/reactphp-ndjson",
  7595. "keywords": [
  7596. "NDJSON",
  7597. "json",
  7598. "jsonlines",
  7599. "newline",
  7600. "reactphp",
  7601. "streaming"
  7602. ],
  7603. "support": {
  7604. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7605. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7606. },
  7607. "funding": [
  7608. {
  7609. "url": "https://clue.engineering/support",
  7610. "type": "custom"
  7611. },
  7612. {
  7613. "url": "https://github.com/clue",
  7614. "type": "github"
  7615. }
  7616. ],
  7617. "time": "2022-12-23T10:58:28+00:00"
  7618. },
  7619. {
  7620. "name": "composer/pcre",
  7621. "version": "3.3.1",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/composer/pcre.git",
  7625. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7630. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "php": "^7.4 || ^8.0"
  7635. },
  7636. "conflict": {
  7637. "phpstan/phpstan": "<1.11.10"
  7638. },
  7639. "require-dev": {
  7640. "phpstan/phpstan": "^1.11.10",
  7641. "phpstan/phpstan-strict-rules": "^1.1",
  7642. "phpunit/phpunit": "^8 || ^9"
  7643. },
  7644. "type": "library",
  7645. "extra": {
  7646. "branch-alias": {
  7647. "dev-main": "3.x-dev"
  7648. },
  7649. "phpstan": {
  7650. "includes": [
  7651. "extension.neon"
  7652. ]
  7653. }
  7654. },
  7655. "autoload": {
  7656. "psr-4": {
  7657. "Composer\\Pcre\\": "src"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Jordi Boggiano",
  7667. "email": "j.boggiano@seld.be",
  7668. "homepage": "http://seld.be"
  7669. }
  7670. ],
  7671. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7672. "keywords": [
  7673. "PCRE",
  7674. "preg",
  7675. "regex",
  7676. "regular expression"
  7677. ],
  7678. "support": {
  7679. "issues": "https://github.com/composer/pcre/issues",
  7680. "source": "https://github.com/composer/pcre/tree/3.3.1"
  7681. },
  7682. "funding": [
  7683. {
  7684. "url": "https://packagist.com",
  7685. "type": "custom"
  7686. },
  7687. {
  7688. "url": "https://github.com/composer",
  7689. "type": "github"
  7690. },
  7691. {
  7692. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7693. "type": "tidelift"
  7694. }
  7695. ],
  7696. "time": "2024-08-27T18:44:43+00:00"
  7697. },
  7698. {
  7699. "name": "composer/semver",
  7700. "version": "3.4.3",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/composer/semver.git",
  7704. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7709. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7710. "shasum": ""
  7711. },
  7712. "require": {
  7713. "php": "^5.3.2 || ^7.0 || ^8.0"
  7714. },
  7715. "require-dev": {
  7716. "phpstan/phpstan": "^1.11",
  7717. "symfony/phpunit-bridge": "^3 || ^7"
  7718. },
  7719. "type": "library",
  7720. "extra": {
  7721. "branch-alias": {
  7722. "dev-main": "3.x-dev"
  7723. }
  7724. },
  7725. "autoload": {
  7726. "psr-4": {
  7727. "Composer\\Semver\\": "src"
  7728. }
  7729. },
  7730. "notification-url": "https://packagist.org/downloads/",
  7731. "license": [
  7732. "MIT"
  7733. ],
  7734. "authors": [
  7735. {
  7736. "name": "Nils Adermann",
  7737. "email": "naderman@naderman.de",
  7738. "homepage": "http://www.naderman.de"
  7739. },
  7740. {
  7741. "name": "Jordi Boggiano",
  7742. "email": "j.boggiano@seld.be",
  7743. "homepage": "http://seld.be"
  7744. },
  7745. {
  7746. "name": "Rob Bast",
  7747. "email": "rob.bast@gmail.com",
  7748. "homepage": "http://robbast.nl"
  7749. }
  7750. ],
  7751. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7752. "keywords": [
  7753. "semantic",
  7754. "semver",
  7755. "validation",
  7756. "versioning"
  7757. ],
  7758. "support": {
  7759. "irc": "ircs://irc.libera.chat:6697/composer",
  7760. "issues": "https://github.com/composer/semver/issues",
  7761. "source": "https://github.com/composer/semver/tree/3.4.3"
  7762. },
  7763. "funding": [
  7764. {
  7765. "url": "https://packagist.com",
  7766. "type": "custom"
  7767. },
  7768. {
  7769. "url": "https://github.com/composer",
  7770. "type": "github"
  7771. },
  7772. {
  7773. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7774. "type": "tidelift"
  7775. }
  7776. ],
  7777. "time": "2024-09-19T14:15:21+00:00"
  7778. },
  7779. {
  7780. "name": "composer/xdebug-handler",
  7781. "version": "3.0.5",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/composer/xdebug-handler.git",
  7785. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7790. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "composer/pcre": "^1 || ^2 || ^3",
  7795. "php": "^7.2.5 || ^8.0",
  7796. "psr/log": "^1 || ^2 || ^3"
  7797. },
  7798. "require-dev": {
  7799. "phpstan/phpstan": "^1.0",
  7800. "phpstan/phpstan-strict-rules": "^1.1",
  7801. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7802. },
  7803. "type": "library",
  7804. "autoload": {
  7805. "psr-4": {
  7806. "Composer\\XdebugHandler\\": "src"
  7807. }
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "John Stevenson",
  7816. "email": "john-stevenson@blueyonder.co.uk"
  7817. }
  7818. ],
  7819. "description": "Restarts a process without Xdebug.",
  7820. "keywords": [
  7821. "Xdebug",
  7822. "performance"
  7823. ],
  7824. "support": {
  7825. "irc": "ircs://irc.libera.chat:6697/composer",
  7826. "issues": "https://github.com/composer/xdebug-handler/issues",
  7827. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7828. },
  7829. "funding": [
  7830. {
  7831. "url": "https://packagist.com",
  7832. "type": "custom"
  7833. },
  7834. {
  7835. "url": "https://github.com/composer",
  7836. "type": "github"
  7837. },
  7838. {
  7839. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7840. "type": "tidelift"
  7841. }
  7842. ],
  7843. "time": "2024-05-06T16:37:16+00:00"
  7844. },
  7845. {
  7846. "name": "evenement/evenement",
  7847. "version": "v3.0.2",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/igorw/evenement.git",
  7851. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7856. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7857. "shasum": ""
  7858. },
  7859. "require": {
  7860. "php": ">=7.0"
  7861. },
  7862. "require-dev": {
  7863. "phpunit/phpunit": "^9 || ^6"
  7864. },
  7865. "type": "library",
  7866. "autoload": {
  7867. "psr-4": {
  7868. "Evenement\\": "src/"
  7869. }
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Igor Wiedler",
  7878. "email": "igor@wiedler.ch"
  7879. }
  7880. ],
  7881. "description": "Événement is a very simple event dispatching library for PHP",
  7882. "keywords": [
  7883. "event-dispatcher",
  7884. "event-emitter"
  7885. ],
  7886. "support": {
  7887. "issues": "https://github.com/igorw/evenement/issues",
  7888. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7889. },
  7890. "time": "2023-08-08T05:53:35+00:00"
  7891. },
  7892. {
  7893. "name": "fidry/cpu-core-counter",
  7894. "version": "1.2.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7898. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7903. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "php": "^7.2 || ^8.0"
  7908. },
  7909. "require-dev": {
  7910. "fidry/makefile": "^0.2.0",
  7911. "fidry/php-cs-fixer-config": "^1.1.2",
  7912. "phpstan/extension-installer": "^1.2.0",
  7913. "phpstan/phpstan": "^1.9.2",
  7914. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7915. "phpstan/phpstan-phpunit": "^1.2.2",
  7916. "phpstan/phpstan-strict-rules": "^1.4.4",
  7917. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7918. "webmozarts/strict-phpunit": "^7.5"
  7919. },
  7920. "type": "library",
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Fidry\\CpuCoreCounter\\": "src/"
  7924. }
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Théo FIDRY",
  7933. "email": "theo.fidry@gmail.com"
  7934. }
  7935. ],
  7936. "description": "Tiny utility to get the number of CPU cores.",
  7937. "keywords": [
  7938. "CPU",
  7939. "core"
  7940. ],
  7941. "support": {
  7942. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7943. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7944. },
  7945. "funding": [
  7946. {
  7947. "url": "https://github.com/theofidry",
  7948. "type": "github"
  7949. }
  7950. ],
  7951. "time": "2024-08-06T10:04:20+00:00"
  7952. },
  7953. {
  7954. "name": "friendsofphp/php-cs-fixer",
  7955. "version": "v3.64.0",
  7956. "source": {
  7957. "type": "git",
  7958. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7959. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  7960. },
  7961. "dist": {
  7962. "type": "zip",
  7963. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  7964. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  7965. "shasum": ""
  7966. },
  7967. "require": {
  7968. "clue/ndjson-react": "^1.0",
  7969. "composer/semver": "^3.4",
  7970. "composer/xdebug-handler": "^3.0.3",
  7971. "ext-filter": "*",
  7972. "ext-json": "*",
  7973. "ext-tokenizer": "*",
  7974. "fidry/cpu-core-counter": "^1.0",
  7975. "php": "^7.4 || ^8.0",
  7976. "react/child-process": "^0.6.5",
  7977. "react/event-loop": "^1.0",
  7978. "react/promise": "^2.0 || ^3.0",
  7979. "react/socket": "^1.0",
  7980. "react/stream": "^1.0",
  7981. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7982. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7983. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7984. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7985. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7986. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7987. "symfony/polyfill-mbstring": "^1.28",
  7988. "symfony/polyfill-php80": "^1.28",
  7989. "symfony/polyfill-php81": "^1.28",
  7990. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7991. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7992. },
  7993. "require-dev": {
  7994. "facile-it/paraunit": "^1.3 || ^2.3",
  7995. "infection/infection": "^0.29.5",
  7996. "justinrainbow/json-schema": "^5.2",
  7997. "keradus/cli-executor": "^2.1",
  7998. "mikey179/vfsstream": "^1.6.11",
  7999. "php-coveralls/php-coveralls": "^2.7",
  8000. "php-cs-fixer/accessible-object": "^1.1",
  8001. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8002. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8003. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8004. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8005. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8006. },
  8007. "suggest": {
  8008. "ext-dom": "For handling output formats in XML",
  8009. "ext-mbstring": "For handling non-UTF8 characters."
  8010. },
  8011. "bin": [
  8012. "php-cs-fixer"
  8013. ],
  8014. "type": "application",
  8015. "autoload": {
  8016. "psr-4": {
  8017. "PhpCsFixer\\": "src/"
  8018. },
  8019. "exclude-from-classmap": [
  8020. "src/Fixer/Internal/*"
  8021. ]
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "MIT"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "Fabien Potencier",
  8030. "email": "fabien@symfony.com"
  8031. },
  8032. {
  8033. "name": "Dariusz Rumiński",
  8034. "email": "dariusz.ruminski@gmail.com"
  8035. }
  8036. ],
  8037. "description": "A tool to automatically fix PHP code style",
  8038. "keywords": [
  8039. "Static code analysis",
  8040. "fixer",
  8041. "standards",
  8042. "static analysis"
  8043. ],
  8044. "support": {
  8045. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8046. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8047. },
  8048. "funding": [
  8049. {
  8050. "url": "https://github.com/keradus",
  8051. "type": "github"
  8052. }
  8053. ],
  8054. "time": "2024-08-30T23:09:38+00:00"
  8055. },
  8056. {
  8057. "name": "hamcrest/hamcrest-php",
  8058. "version": "v2.0.1",
  8059. "source": {
  8060. "type": "git",
  8061. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8062. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8063. },
  8064. "dist": {
  8065. "type": "zip",
  8066. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8067. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8068. "shasum": ""
  8069. },
  8070. "require": {
  8071. "php": "^5.3|^7.0|^8.0"
  8072. },
  8073. "replace": {
  8074. "cordoval/hamcrest-php": "*",
  8075. "davedevelopment/hamcrest-php": "*",
  8076. "kodova/hamcrest-php": "*"
  8077. },
  8078. "require-dev": {
  8079. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8080. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8081. },
  8082. "type": "library",
  8083. "extra": {
  8084. "branch-alias": {
  8085. "dev-master": "2.1-dev"
  8086. }
  8087. },
  8088. "autoload": {
  8089. "classmap": [
  8090. "hamcrest"
  8091. ]
  8092. },
  8093. "notification-url": "https://packagist.org/downloads/",
  8094. "license": [
  8095. "BSD-3-Clause"
  8096. ],
  8097. "description": "This is the PHP port of Hamcrest Matchers",
  8098. "keywords": [
  8099. "test"
  8100. ],
  8101. "support": {
  8102. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8103. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8104. },
  8105. "time": "2020-07-09T08:09:16+00:00"
  8106. },
  8107. {
  8108. "name": "hyperf/devtool",
  8109. "version": "v3.1.42",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/hyperf/devtool.git",
  8113. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8118. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8119. "shasum": ""
  8120. },
  8121. "require": {
  8122. "hyperf/code-parser": "~3.1.0",
  8123. "hyperf/command": "~3.1.0",
  8124. "hyperf/contract": "~3.1.0",
  8125. "hyperf/di": "~3.1.0",
  8126. "hyperf/support": "~3.1.0",
  8127. "hyperf/utils": "~3.1.0",
  8128. "php": ">=8.1"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-master": "3.1-dev"
  8134. },
  8135. "hyperf": {
  8136. "config": "Hyperf\\Devtool\\ConfigProvider"
  8137. }
  8138. },
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Hyperf\\Devtool\\": "src/"
  8142. }
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "MIT"
  8147. ],
  8148. "description": "A Devtool for Hyperf.",
  8149. "homepage": "https://hyperf.io",
  8150. "keywords": [
  8151. "dev",
  8152. "devtool",
  8153. "hyperf",
  8154. "php",
  8155. "swoole"
  8156. ],
  8157. "support": {
  8158. "docs": "https://hyperf.wiki",
  8159. "issues": "https://github.com/hyperf/hyperf/issues",
  8160. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8161. "source": "https://github.com/hyperf/hyperf"
  8162. },
  8163. "funding": [
  8164. {
  8165. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8166. "type": "custom"
  8167. },
  8168. {
  8169. "url": "https://opencollective.com/hyperf",
  8170. "type": "open_collective"
  8171. }
  8172. ],
  8173. "time": "2024-09-25T02:54:12+00:00"
  8174. },
  8175. {
  8176. "name": "hyperf/testing",
  8177. "version": "v3.1.44",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/hyperf/testing.git",
  8181. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8186. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "hyperf/codec": "~3.1.0",
  8191. "hyperf/collection": "~3.1.0",
  8192. "hyperf/contract": "~3.1.0",
  8193. "hyperf/coroutine": "~3.1.0",
  8194. "hyperf/http-message": "~3.1.0",
  8195. "hyperf/http-server": "~3.1.0",
  8196. "hyperf/support": "~3.1.0",
  8197. "hyperf/utils": "~3.1.0",
  8198. "php": ">=8.1",
  8199. "phpunit/phpunit": "^10.0",
  8200. "psr/container": "^1.0 || ^2.0",
  8201. "symfony/http-foundation": "^5.4 || ^6.0"
  8202. },
  8203. "suggest": {
  8204. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8205. },
  8206. "bin": [
  8207. "co-phpunit"
  8208. ],
  8209. "type": "library",
  8210. "extra": {
  8211. "branch-alias": {
  8212. "dev-master": "3.1-dev"
  8213. }
  8214. },
  8215. "autoload": {
  8216. "psr-4": {
  8217. "Hyperf\\Testing\\": "src/"
  8218. }
  8219. },
  8220. "notification-url": "https://packagist.org/downloads/",
  8221. "license": [
  8222. "MIT"
  8223. ],
  8224. "description": "Testing for hyperf",
  8225. "keywords": [
  8226. "dev",
  8227. "php",
  8228. "swoole",
  8229. "testing"
  8230. ],
  8231. "support": {
  8232. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8233. },
  8234. "funding": [
  8235. {
  8236. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8237. "type": "custom"
  8238. },
  8239. {
  8240. "url": "https://opencollective.com/hyperf",
  8241. "type": "open_collective"
  8242. }
  8243. ],
  8244. "time": "2024-10-23T10:24:12+00:00"
  8245. },
  8246. {
  8247. "name": "hyperf/watcher",
  8248. "version": "v3.1.43",
  8249. "source": {
  8250. "type": "git",
  8251. "url": "https://github.com/hyperf/watcher.git",
  8252. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8253. },
  8254. "dist": {
  8255. "type": "zip",
  8256. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8257. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8258. "shasum": ""
  8259. },
  8260. "require": {
  8261. "ext-posix": "*",
  8262. "hyperf/codec": "~3.1.0",
  8263. "hyperf/command": "~3.1.0",
  8264. "hyperf/di": "~3.1.0",
  8265. "hyperf/framework": "~3.1.0",
  8266. "hyperf/support": "~3.1.0",
  8267. "php": ">=8.1"
  8268. },
  8269. "type": "library",
  8270. "extra": {
  8271. "branch-alias": {
  8272. "dev-master": "3.1-dev"
  8273. },
  8274. "hyperf": {
  8275. "config": "Hyperf\\Watcher\\ConfigProvider"
  8276. }
  8277. },
  8278. "autoload": {
  8279. "files": [
  8280. "src/Functions.php"
  8281. ],
  8282. "psr-4": {
  8283. "Hyperf\\Watcher\\": "src/"
  8284. }
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "MIT"
  8289. ],
  8290. "description": "Hot reload watcher for Hyperf",
  8291. "keywords": [
  8292. "dev",
  8293. "hyperf",
  8294. "php"
  8295. ],
  8296. "support": {
  8297. "issues": "https://github.com/hyperf/watcher/issues",
  8298. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://opencollective.com/hyperf",
  8307. "type": "open_collective"
  8308. }
  8309. ],
  8310. "time": "2024-10-06T12:33:12+00:00"
  8311. },
  8312. {
  8313. "name": "mockery/mockery",
  8314. "version": "1.6.12",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/mockery/mockery.git",
  8318. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8323. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "hamcrest/hamcrest-php": "^2.0.1",
  8328. "lib-pcre": ">=7.0",
  8329. "php": ">=7.3"
  8330. },
  8331. "conflict": {
  8332. "phpunit/phpunit": "<8.0"
  8333. },
  8334. "require-dev": {
  8335. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8336. "symplify/easy-coding-standard": "^12.1.14"
  8337. },
  8338. "type": "library",
  8339. "autoload": {
  8340. "files": [
  8341. "library/helpers.php",
  8342. "library/Mockery.php"
  8343. ],
  8344. "psr-4": {
  8345. "Mockery\\": "library/Mockery"
  8346. }
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "BSD-3-Clause"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Pádraic Brady",
  8355. "email": "padraic.brady@gmail.com",
  8356. "homepage": "https://github.com/padraic",
  8357. "role": "Author"
  8358. },
  8359. {
  8360. "name": "Dave Marshall",
  8361. "email": "dave.marshall@atstsolutions.co.uk",
  8362. "homepage": "https://davedevelopment.co.uk",
  8363. "role": "Developer"
  8364. },
  8365. {
  8366. "name": "Nathanael Esayeas",
  8367. "email": "nathanael.esayeas@protonmail.com",
  8368. "homepage": "https://github.com/ghostwriter",
  8369. "role": "Lead Developer"
  8370. }
  8371. ],
  8372. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8373. "homepage": "https://github.com/mockery/mockery",
  8374. "keywords": [
  8375. "BDD",
  8376. "TDD",
  8377. "library",
  8378. "mock",
  8379. "mock objects",
  8380. "mockery",
  8381. "stub",
  8382. "test",
  8383. "test double",
  8384. "testing"
  8385. ],
  8386. "support": {
  8387. "docs": "https://docs.mockery.io/",
  8388. "issues": "https://github.com/mockery/mockery/issues",
  8389. "rss": "https://github.com/mockery/mockery/releases.atom",
  8390. "security": "https://github.com/mockery/mockery/security/advisories",
  8391. "source": "https://github.com/mockery/mockery"
  8392. },
  8393. "time": "2024-05-16T03:13:13+00:00"
  8394. },
  8395. {
  8396. "name": "myclabs/deep-copy",
  8397. "version": "1.12.1",
  8398. "source": {
  8399. "type": "git",
  8400. "url": "https://github.com/myclabs/DeepCopy.git",
  8401. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8402. },
  8403. "dist": {
  8404. "type": "zip",
  8405. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8406. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8407. "shasum": ""
  8408. },
  8409. "require": {
  8410. "php": "^7.1 || ^8.0"
  8411. },
  8412. "conflict": {
  8413. "doctrine/collections": "<1.6.8",
  8414. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8415. },
  8416. "require-dev": {
  8417. "doctrine/collections": "^1.6.8",
  8418. "doctrine/common": "^2.13.3 || ^3.2.2",
  8419. "phpspec/prophecy": "^1.10",
  8420. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8421. },
  8422. "type": "library",
  8423. "autoload": {
  8424. "files": [
  8425. "src/DeepCopy/deep_copy.php"
  8426. ],
  8427. "psr-4": {
  8428. "DeepCopy\\": "src/DeepCopy/"
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "description": "Create deep copies (clones) of your objects",
  8436. "keywords": [
  8437. "clone",
  8438. "copy",
  8439. "duplicate",
  8440. "object",
  8441. "object graph"
  8442. ],
  8443. "support": {
  8444. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8445. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8446. },
  8447. "funding": [
  8448. {
  8449. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8450. "type": "tidelift"
  8451. }
  8452. ],
  8453. "time": "2024-11-08T17:47:46+00:00"
  8454. },
  8455. {
  8456. "name": "phar-io/manifest",
  8457. "version": "2.0.4",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/phar-io/manifest.git",
  8461. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8466. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8467. "shasum": ""
  8468. },
  8469. "require": {
  8470. "ext-dom": "*",
  8471. "ext-libxml": "*",
  8472. "ext-phar": "*",
  8473. "ext-xmlwriter": "*",
  8474. "phar-io/version": "^3.0.1",
  8475. "php": "^7.2 || ^8.0"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-master": "2.0.x-dev"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "classmap": [
  8485. "src/"
  8486. ]
  8487. },
  8488. "notification-url": "https://packagist.org/downloads/",
  8489. "license": [
  8490. "BSD-3-Clause"
  8491. ],
  8492. "authors": [
  8493. {
  8494. "name": "Arne Blankerts",
  8495. "email": "arne@blankerts.de",
  8496. "role": "Developer"
  8497. },
  8498. {
  8499. "name": "Sebastian Heuer",
  8500. "email": "sebastian@phpeople.de",
  8501. "role": "Developer"
  8502. },
  8503. {
  8504. "name": "Sebastian Bergmann",
  8505. "email": "sebastian@phpunit.de",
  8506. "role": "Developer"
  8507. }
  8508. ],
  8509. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8510. "support": {
  8511. "issues": "https://github.com/phar-io/manifest/issues",
  8512. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://github.com/theseer",
  8517. "type": "github"
  8518. }
  8519. ],
  8520. "time": "2024-03-03T12:33:53+00:00"
  8521. },
  8522. {
  8523. "name": "phar-io/version",
  8524. "version": "3.2.1",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/phar-io/version.git",
  8528. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8533. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": "^7.2 || ^8.0"
  8538. },
  8539. "type": "library",
  8540. "autoload": {
  8541. "classmap": [
  8542. "src/"
  8543. ]
  8544. },
  8545. "notification-url": "https://packagist.org/downloads/",
  8546. "license": [
  8547. "BSD-3-Clause"
  8548. ],
  8549. "authors": [
  8550. {
  8551. "name": "Arne Blankerts",
  8552. "email": "arne@blankerts.de",
  8553. "role": "Developer"
  8554. },
  8555. {
  8556. "name": "Sebastian Heuer",
  8557. "email": "sebastian@phpeople.de",
  8558. "role": "Developer"
  8559. },
  8560. {
  8561. "name": "Sebastian Bergmann",
  8562. "email": "sebastian@phpunit.de",
  8563. "role": "Developer"
  8564. }
  8565. ],
  8566. "description": "Library for handling version information and constraints",
  8567. "support": {
  8568. "issues": "https://github.com/phar-io/version/issues",
  8569. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8570. },
  8571. "time": "2022-02-21T01:04:05+00:00"
  8572. },
  8573. {
  8574. "name": "phpstan/phpstan",
  8575. "version": "1.12.9",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/phpstan/phpstan.git",
  8579. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  8584. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "php": "^7.2|^8.0"
  8589. },
  8590. "conflict": {
  8591. "phpstan/phpstan-shim": "*"
  8592. },
  8593. "bin": [
  8594. "phpstan",
  8595. "phpstan.phar"
  8596. ],
  8597. "type": "library",
  8598. "autoload": {
  8599. "files": [
  8600. "bootstrap.php"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "MIT"
  8606. ],
  8607. "description": "PHPStan - PHP Static Analysis Tool",
  8608. "keywords": [
  8609. "dev",
  8610. "static analysis"
  8611. ],
  8612. "support": {
  8613. "docs": "https://phpstan.org/user-guide/getting-started",
  8614. "forum": "https://github.com/phpstan/phpstan/discussions",
  8615. "issues": "https://github.com/phpstan/phpstan/issues",
  8616. "security": "https://github.com/phpstan/phpstan/security/policy",
  8617. "source": "https://github.com/phpstan/phpstan-src"
  8618. },
  8619. "funding": [
  8620. {
  8621. "url": "https://github.com/ondrejmirtes",
  8622. "type": "github"
  8623. },
  8624. {
  8625. "url": "https://github.com/phpstan",
  8626. "type": "github"
  8627. }
  8628. ],
  8629. "time": "2024-11-10T17:10:04+00:00"
  8630. },
  8631. {
  8632. "name": "phpunit/php-code-coverage",
  8633. "version": "10.1.16",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8637. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8642. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8643. "shasum": ""
  8644. },
  8645. "require": {
  8646. "ext-dom": "*",
  8647. "ext-libxml": "*",
  8648. "ext-xmlwriter": "*",
  8649. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8650. "php": ">=8.1",
  8651. "phpunit/php-file-iterator": "^4.1.0",
  8652. "phpunit/php-text-template": "^3.0.1",
  8653. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8654. "sebastian/complexity": "^3.2.0",
  8655. "sebastian/environment": "^6.1.0",
  8656. "sebastian/lines-of-code": "^2.0.2",
  8657. "sebastian/version": "^4.0.1",
  8658. "theseer/tokenizer": "^1.2.3"
  8659. },
  8660. "require-dev": {
  8661. "phpunit/phpunit": "^10.1"
  8662. },
  8663. "suggest": {
  8664. "ext-pcov": "PHP extension that provides line coverage",
  8665. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-main": "10.1.x-dev"
  8671. }
  8672. },
  8673. "autoload": {
  8674. "classmap": [
  8675. "src/"
  8676. ]
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "BSD-3-Clause"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Sebastian Bergmann",
  8685. "email": "sebastian@phpunit.de",
  8686. "role": "lead"
  8687. }
  8688. ],
  8689. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8690. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8691. "keywords": [
  8692. "coverage",
  8693. "testing",
  8694. "xunit"
  8695. ],
  8696. "support": {
  8697. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8698. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8699. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8700. },
  8701. "funding": [
  8702. {
  8703. "url": "https://github.com/sebastianbergmann",
  8704. "type": "github"
  8705. }
  8706. ],
  8707. "time": "2024-08-22T04:31:57+00:00"
  8708. },
  8709. {
  8710. "name": "phpunit/php-file-iterator",
  8711. "version": "4.1.0",
  8712. "source": {
  8713. "type": "git",
  8714. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8715. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8716. },
  8717. "dist": {
  8718. "type": "zip",
  8719. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8720. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8721. "shasum": ""
  8722. },
  8723. "require": {
  8724. "php": ">=8.1"
  8725. },
  8726. "require-dev": {
  8727. "phpunit/phpunit": "^10.0"
  8728. },
  8729. "type": "library",
  8730. "extra": {
  8731. "branch-alias": {
  8732. "dev-main": "4.0-dev"
  8733. }
  8734. },
  8735. "autoload": {
  8736. "classmap": [
  8737. "src/"
  8738. ]
  8739. },
  8740. "notification-url": "https://packagist.org/downloads/",
  8741. "license": [
  8742. "BSD-3-Clause"
  8743. ],
  8744. "authors": [
  8745. {
  8746. "name": "Sebastian Bergmann",
  8747. "email": "sebastian@phpunit.de",
  8748. "role": "lead"
  8749. }
  8750. ],
  8751. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8752. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8753. "keywords": [
  8754. "filesystem",
  8755. "iterator"
  8756. ],
  8757. "support": {
  8758. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8759. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8760. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8761. },
  8762. "funding": [
  8763. {
  8764. "url": "https://github.com/sebastianbergmann",
  8765. "type": "github"
  8766. }
  8767. ],
  8768. "time": "2023-08-31T06:24:48+00:00"
  8769. },
  8770. {
  8771. "name": "phpunit/php-invoker",
  8772. "version": "4.0.0",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8776. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8781. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "php": ">=8.1"
  8786. },
  8787. "require-dev": {
  8788. "ext-pcntl": "*",
  8789. "phpunit/phpunit": "^10.0"
  8790. },
  8791. "suggest": {
  8792. "ext-pcntl": "*"
  8793. },
  8794. "type": "library",
  8795. "extra": {
  8796. "branch-alias": {
  8797. "dev-main": "4.0-dev"
  8798. }
  8799. },
  8800. "autoload": {
  8801. "classmap": [
  8802. "src/"
  8803. ]
  8804. },
  8805. "notification-url": "https://packagist.org/downloads/",
  8806. "license": [
  8807. "BSD-3-Clause"
  8808. ],
  8809. "authors": [
  8810. {
  8811. "name": "Sebastian Bergmann",
  8812. "email": "sebastian@phpunit.de",
  8813. "role": "lead"
  8814. }
  8815. ],
  8816. "description": "Invoke callables with a timeout",
  8817. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8818. "keywords": [
  8819. "process"
  8820. ],
  8821. "support": {
  8822. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8823. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8824. },
  8825. "funding": [
  8826. {
  8827. "url": "https://github.com/sebastianbergmann",
  8828. "type": "github"
  8829. }
  8830. ],
  8831. "time": "2023-02-03T06:56:09+00:00"
  8832. },
  8833. {
  8834. "name": "phpunit/php-text-template",
  8835. "version": "3.0.1",
  8836. "source": {
  8837. "type": "git",
  8838. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8839. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8840. },
  8841. "dist": {
  8842. "type": "zip",
  8843. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8844. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8845. "shasum": ""
  8846. },
  8847. "require": {
  8848. "php": ">=8.1"
  8849. },
  8850. "require-dev": {
  8851. "phpunit/phpunit": "^10.0"
  8852. },
  8853. "type": "library",
  8854. "extra": {
  8855. "branch-alias": {
  8856. "dev-main": "3.0-dev"
  8857. }
  8858. },
  8859. "autoload": {
  8860. "classmap": [
  8861. "src/"
  8862. ]
  8863. },
  8864. "notification-url": "https://packagist.org/downloads/",
  8865. "license": [
  8866. "BSD-3-Clause"
  8867. ],
  8868. "authors": [
  8869. {
  8870. "name": "Sebastian Bergmann",
  8871. "email": "sebastian@phpunit.de",
  8872. "role": "lead"
  8873. }
  8874. ],
  8875. "description": "Simple template engine.",
  8876. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8877. "keywords": [
  8878. "template"
  8879. ],
  8880. "support": {
  8881. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8882. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8883. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8884. },
  8885. "funding": [
  8886. {
  8887. "url": "https://github.com/sebastianbergmann",
  8888. "type": "github"
  8889. }
  8890. ],
  8891. "time": "2023-08-31T14:07:24+00:00"
  8892. },
  8893. {
  8894. "name": "phpunit/php-timer",
  8895. "version": "6.0.0",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8899. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8904. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": ">=8.1"
  8909. },
  8910. "require-dev": {
  8911. "phpunit/phpunit": "^10.0"
  8912. },
  8913. "type": "library",
  8914. "extra": {
  8915. "branch-alias": {
  8916. "dev-main": "6.0-dev"
  8917. }
  8918. },
  8919. "autoload": {
  8920. "classmap": [
  8921. "src/"
  8922. ]
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "BSD-3-Clause"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Sebastian Bergmann",
  8931. "email": "sebastian@phpunit.de",
  8932. "role": "lead"
  8933. }
  8934. ],
  8935. "description": "Utility class for timing",
  8936. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8937. "keywords": [
  8938. "timer"
  8939. ],
  8940. "support": {
  8941. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8942. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://github.com/sebastianbergmann",
  8947. "type": "github"
  8948. }
  8949. ],
  8950. "time": "2023-02-03T06:57:52+00:00"
  8951. },
  8952. {
  8953. "name": "phpunit/phpunit",
  8954. "version": "10.5.38",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8958. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8963. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "ext-dom": "*",
  8968. "ext-json": "*",
  8969. "ext-libxml": "*",
  8970. "ext-mbstring": "*",
  8971. "ext-xml": "*",
  8972. "ext-xmlwriter": "*",
  8973. "myclabs/deep-copy": "^1.12.0",
  8974. "phar-io/manifest": "^2.0.4",
  8975. "phar-io/version": "^3.2.1",
  8976. "php": ">=8.1",
  8977. "phpunit/php-code-coverage": "^10.1.16",
  8978. "phpunit/php-file-iterator": "^4.1.0",
  8979. "phpunit/php-invoker": "^4.0.0",
  8980. "phpunit/php-text-template": "^3.0.1",
  8981. "phpunit/php-timer": "^6.0.0",
  8982. "sebastian/cli-parser": "^2.0.1",
  8983. "sebastian/code-unit": "^2.0.0",
  8984. "sebastian/comparator": "^5.0.3",
  8985. "sebastian/diff": "^5.1.1",
  8986. "sebastian/environment": "^6.1.0",
  8987. "sebastian/exporter": "^5.1.2",
  8988. "sebastian/global-state": "^6.0.2",
  8989. "sebastian/object-enumerator": "^5.0.0",
  8990. "sebastian/recursion-context": "^5.0.0",
  8991. "sebastian/type": "^4.0.0",
  8992. "sebastian/version": "^4.0.1"
  8993. },
  8994. "suggest": {
  8995. "ext-soap": "To be able to generate mocks based on WSDL files"
  8996. },
  8997. "bin": [
  8998. "phpunit"
  8999. ],
  9000. "type": "library",
  9001. "extra": {
  9002. "branch-alias": {
  9003. "dev-main": "10.5-dev"
  9004. }
  9005. },
  9006. "autoload": {
  9007. "files": [
  9008. "src/Framework/Assert/Functions.php"
  9009. ],
  9010. "classmap": [
  9011. "src/"
  9012. ]
  9013. },
  9014. "notification-url": "https://packagist.org/downloads/",
  9015. "license": [
  9016. "BSD-3-Clause"
  9017. ],
  9018. "authors": [
  9019. {
  9020. "name": "Sebastian Bergmann",
  9021. "email": "sebastian@phpunit.de",
  9022. "role": "lead"
  9023. }
  9024. ],
  9025. "description": "The PHP Unit Testing framework.",
  9026. "homepage": "https://phpunit.de/",
  9027. "keywords": [
  9028. "phpunit",
  9029. "testing",
  9030. "xunit"
  9031. ],
  9032. "support": {
  9033. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9034. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9035. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9036. },
  9037. "funding": [
  9038. {
  9039. "url": "https://phpunit.de/sponsors.html",
  9040. "type": "custom"
  9041. },
  9042. {
  9043. "url": "https://github.com/sebastianbergmann",
  9044. "type": "github"
  9045. },
  9046. {
  9047. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9048. "type": "tidelift"
  9049. }
  9050. ],
  9051. "time": "2024-10-28T13:06:21+00:00"
  9052. },
  9053. {
  9054. "name": "react/cache",
  9055. "version": "v1.2.0",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/reactphp/cache.git",
  9059. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9064. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "php": ">=5.3.0",
  9069. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9070. },
  9071. "require-dev": {
  9072. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9073. },
  9074. "type": "library",
  9075. "autoload": {
  9076. "psr-4": {
  9077. "React\\Cache\\": "src/"
  9078. }
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Christian Lück",
  9087. "email": "christian@clue.engineering",
  9088. "homepage": "https://clue.engineering/"
  9089. },
  9090. {
  9091. "name": "Cees-Jan Kiewiet",
  9092. "email": "reactphp@ceesjankiewiet.nl",
  9093. "homepage": "https://wyrihaximus.net/"
  9094. },
  9095. {
  9096. "name": "Jan Sorgalla",
  9097. "email": "jsorgalla@gmail.com",
  9098. "homepage": "https://sorgalla.com/"
  9099. },
  9100. {
  9101. "name": "Chris Boden",
  9102. "email": "cboden@gmail.com",
  9103. "homepage": "https://cboden.dev/"
  9104. }
  9105. ],
  9106. "description": "Async, Promise-based cache interface for ReactPHP",
  9107. "keywords": [
  9108. "cache",
  9109. "caching",
  9110. "promise",
  9111. "reactphp"
  9112. ],
  9113. "support": {
  9114. "issues": "https://github.com/reactphp/cache/issues",
  9115. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9116. },
  9117. "funding": [
  9118. {
  9119. "url": "https://opencollective.com/reactphp",
  9120. "type": "open_collective"
  9121. }
  9122. ],
  9123. "time": "2022-11-30T15:59:55+00:00"
  9124. },
  9125. {
  9126. "name": "react/child-process",
  9127. "version": "v0.6.5",
  9128. "source": {
  9129. "type": "git",
  9130. "url": "https://github.com/reactphp/child-process.git",
  9131. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9132. },
  9133. "dist": {
  9134. "type": "zip",
  9135. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9136. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9137. "shasum": ""
  9138. },
  9139. "require": {
  9140. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9141. "php": ">=5.3.0",
  9142. "react/event-loop": "^1.2",
  9143. "react/stream": "^1.2"
  9144. },
  9145. "require-dev": {
  9146. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9147. "react/socket": "^1.8",
  9148. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9149. },
  9150. "type": "library",
  9151. "autoload": {
  9152. "psr-4": {
  9153. "React\\ChildProcess\\": "src"
  9154. }
  9155. },
  9156. "notification-url": "https://packagist.org/downloads/",
  9157. "license": [
  9158. "MIT"
  9159. ],
  9160. "authors": [
  9161. {
  9162. "name": "Christian Lück",
  9163. "email": "christian@clue.engineering",
  9164. "homepage": "https://clue.engineering/"
  9165. },
  9166. {
  9167. "name": "Cees-Jan Kiewiet",
  9168. "email": "reactphp@ceesjankiewiet.nl",
  9169. "homepage": "https://wyrihaximus.net/"
  9170. },
  9171. {
  9172. "name": "Jan Sorgalla",
  9173. "email": "jsorgalla@gmail.com",
  9174. "homepage": "https://sorgalla.com/"
  9175. },
  9176. {
  9177. "name": "Chris Boden",
  9178. "email": "cboden@gmail.com",
  9179. "homepage": "https://cboden.dev/"
  9180. }
  9181. ],
  9182. "description": "Event-driven library for executing child processes with ReactPHP.",
  9183. "keywords": [
  9184. "event-driven",
  9185. "process",
  9186. "reactphp"
  9187. ],
  9188. "support": {
  9189. "issues": "https://github.com/reactphp/child-process/issues",
  9190. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9191. },
  9192. "funding": [
  9193. {
  9194. "url": "https://github.com/WyriHaximus",
  9195. "type": "github"
  9196. },
  9197. {
  9198. "url": "https://github.com/clue",
  9199. "type": "github"
  9200. }
  9201. ],
  9202. "time": "2022-09-16T13:41:56+00:00"
  9203. },
  9204. {
  9205. "name": "react/dns",
  9206. "version": "v1.13.0",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/reactphp/dns.git",
  9210. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9215. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": ">=5.3.0",
  9220. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9221. "react/event-loop": "^1.2",
  9222. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9223. },
  9224. "require-dev": {
  9225. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9226. "react/async": "^4.3 || ^3 || ^2",
  9227. "react/promise-timer": "^1.11"
  9228. },
  9229. "type": "library",
  9230. "autoload": {
  9231. "psr-4": {
  9232. "React\\Dns\\": "src/"
  9233. }
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "MIT"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Christian Lück",
  9242. "email": "christian@clue.engineering",
  9243. "homepage": "https://clue.engineering/"
  9244. },
  9245. {
  9246. "name": "Cees-Jan Kiewiet",
  9247. "email": "reactphp@ceesjankiewiet.nl",
  9248. "homepage": "https://wyrihaximus.net/"
  9249. },
  9250. {
  9251. "name": "Jan Sorgalla",
  9252. "email": "jsorgalla@gmail.com",
  9253. "homepage": "https://sorgalla.com/"
  9254. },
  9255. {
  9256. "name": "Chris Boden",
  9257. "email": "cboden@gmail.com",
  9258. "homepage": "https://cboden.dev/"
  9259. }
  9260. ],
  9261. "description": "Async DNS resolver for ReactPHP",
  9262. "keywords": [
  9263. "async",
  9264. "dns",
  9265. "dns-resolver",
  9266. "reactphp"
  9267. ],
  9268. "support": {
  9269. "issues": "https://github.com/reactphp/dns/issues",
  9270. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9271. },
  9272. "funding": [
  9273. {
  9274. "url": "https://opencollective.com/reactphp",
  9275. "type": "open_collective"
  9276. }
  9277. ],
  9278. "time": "2024-06-13T14:18:03+00:00"
  9279. },
  9280. {
  9281. "name": "react/event-loop",
  9282. "version": "v1.5.0",
  9283. "source": {
  9284. "type": "git",
  9285. "url": "https://github.com/reactphp/event-loop.git",
  9286. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9287. },
  9288. "dist": {
  9289. "type": "zip",
  9290. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9291. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9292. "shasum": ""
  9293. },
  9294. "require": {
  9295. "php": ">=5.3.0"
  9296. },
  9297. "require-dev": {
  9298. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9299. },
  9300. "suggest": {
  9301. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9302. },
  9303. "type": "library",
  9304. "autoload": {
  9305. "psr-4": {
  9306. "React\\EventLoop\\": "src/"
  9307. }
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "MIT"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Christian Lück",
  9316. "email": "christian@clue.engineering",
  9317. "homepage": "https://clue.engineering/"
  9318. },
  9319. {
  9320. "name": "Cees-Jan Kiewiet",
  9321. "email": "reactphp@ceesjankiewiet.nl",
  9322. "homepage": "https://wyrihaximus.net/"
  9323. },
  9324. {
  9325. "name": "Jan Sorgalla",
  9326. "email": "jsorgalla@gmail.com",
  9327. "homepage": "https://sorgalla.com/"
  9328. },
  9329. {
  9330. "name": "Chris Boden",
  9331. "email": "cboden@gmail.com",
  9332. "homepage": "https://cboden.dev/"
  9333. }
  9334. ],
  9335. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9336. "keywords": [
  9337. "asynchronous",
  9338. "event-loop"
  9339. ],
  9340. "support": {
  9341. "issues": "https://github.com/reactphp/event-loop/issues",
  9342. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://opencollective.com/reactphp",
  9347. "type": "open_collective"
  9348. }
  9349. ],
  9350. "time": "2023-11-13T13:48:05+00:00"
  9351. },
  9352. {
  9353. "name": "react/promise",
  9354. "version": "v3.2.0",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/reactphp/promise.git",
  9358. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9363. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9364. "shasum": ""
  9365. },
  9366. "require": {
  9367. "php": ">=7.1.0"
  9368. },
  9369. "require-dev": {
  9370. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9371. "phpunit/phpunit": "^9.6 || ^7.5"
  9372. },
  9373. "type": "library",
  9374. "autoload": {
  9375. "files": [
  9376. "src/functions_include.php"
  9377. ],
  9378. "psr-4": {
  9379. "React\\Promise\\": "src/"
  9380. }
  9381. },
  9382. "notification-url": "https://packagist.org/downloads/",
  9383. "license": [
  9384. "MIT"
  9385. ],
  9386. "authors": [
  9387. {
  9388. "name": "Jan Sorgalla",
  9389. "email": "jsorgalla@gmail.com",
  9390. "homepage": "https://sorgalla.com/"
  9391. },
  9392. {
  9393. "name": "Christian Lück",
  9394. "email": "christian@clue.engineering",
  9395. "homepage": "https://clue.engineering/"
  9396. },
  9397. {
  9398. "name": "Cees-Jan Kiewiet",
  9399. "email": "reactphp@ceesjankiewiet.nl",
  9400. "homepage": "https://wyrihaximus.net/"
  9401. },
  9402. {
  9403. "name": "Chris Boden",
  9404. "email": "cboden@gmail.com",
  9405. "homepage": "https://cboden.dev/"
  9406. }
  9407. ],
  9408. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9409. "keywords": [
  9410. "promise",
  9411. "promises"
  9412. ],
  9413. "support": {
  9414. "issues": "https://github.com/reactphp/promise/issues",
  9415. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9416. },
  9417. "funding": [
  9418. {
  9419. "url": "https://opencollective.com/reactphp",
  9420. "type": "open_collective"
  9421. }
  9422. ],
  9423. "time": "2024-05-24T10:39:05+00:00"
  9424. },
  9425. {
  9426. "name": "react/socket",
  9427. "version": "v1.16.0",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/reactphp/socket.git",
  9431. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9436. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9437. "shasum": ""
  9438. },
  9439. "require": {
  9440. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9441. "php": ">=5.3.0",
  9442. "react/dns": "^1.13",
  9443. "react/event-loop": "^1.2",
  9444. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9445. "react/stream": "^1.4"
  9446. },
  9447. "require-dev": {
  9448. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9449. "react/async": "^4.3 || ^3.3 || ^2",
  9450. "react/promise-stream": "^1.4",
  9451. "react/promise-timer": "^1.11"
  9452. },
  9453. "type": "library",
  9454. "autoload": {
  9455. "psr-4": {
  9456. "React\\Socket\\": "src/"
  9457. }
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "license": [
  9461. "MIT"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Christian Lück",
  9466. "email": "christian@clue.engineering",
  9467. "homepage": "https://clue.engineering/"
  9468. },
  9469. {
  9470. "name": "Cees-Jan Kiewiet",
  9471. "email": "reactphp@ceesjankiewiet.nl",
  9472. "homepage": "https://wyrihaximus.net/"
  9473. },
  9474. {
  9475. "name": "Jan Sorgalla",
  9476. "email": "jsorgalla@gmail.com",
  9477. "homepage": "https://sorgalla.com/"
  9478. },
  9479. {
  9480. "name": "Chris Boden",
  9481. "email": "cboden@gmail.com",
  9482. "homepage": "https://cboden.dev/"
  9483. }
  9484. ],
  9485. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9486. "keywords": [
  9487. "Connection",
  9488. "Socket",
  9489. "async",
  9490. "reactphp",
  9491. "stream"
  9492. ],
  9493. "support": {
  9494. "issues": "https://github.com/reactphp/socket/issues",
  9495. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9496. },
  9497. "funding": [
  9498. {
  9499. "url": "https://opencollective.com/reactphp",
  9500. "type": "open_collective"
  9501. }
  9502. ],
  9503. "time": "2024-07-26T10:38:09+00:00"
  9504. },
  9505. {
  9506. "name": "react/stream",
  9507. "version": "v1.4.0",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/reactphp/stream.git",
  9511. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9516. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9517. "shasum": ""
  9518. },
  9519. "require": {
  9520. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9521. "php": ">=5.3.8",
  9522. "react/event-loop": "^1.2"
  9523. },
  9524. "require-dev": {
  9525. "clue/stream-filter": "~1.2",
  9526. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9527. },
  9528. "type": "library",
  9529. "autoload": {
  9530. "psr-4": {
  9531. "React\\Stream\\": "src/"
  9532. }
  9533. },
  9534. "notification-url": "https://packagist.org/downloads/",
  9535. "license": [
  9536. "MIT"
  9537. ],
  9538. "authors": [
  9539. {
  9540. "name": "Christian Lück",
  9541. "email": "christian@clue.engineering",
  9542. "homepage": "https://clue.engineering/"
  9543. },
  9544. {
  9545. "name": "Cees-Jan Kiewiet",
  9546. "email": "reactphp@ceesjankiewiet.nl",
  9547. "homepage": "https://wyrihaximus.net/"
  9548. },
  9549. {
  9550. "name": "Jan Sorgalla",
  9551. "email": "jsorgalla@gmail.com",
  9552. "homepage": "https://sorgalla.com/"
  9553. },
  9554. {
  9555. "name": "Chris Boden",
  9556. "email": "cboden@gmail.com",
  9557. "homepage": "https://cboden.dev/"
  9558. }
  9559. ],
  9560. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9561. "keywords": [
  9562. "event-driven",
  9563. "io",
  9564. "non-blocking",
  9565. "pipe",
  9566. "reactphp",
  9567. "readable",
  9568. "stream",
  9569. "writable"
  9570. ],
  9571. "support": {
  9572. "issues": "https://github.com/reactphp/stream/issues",
  9573. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9574. },
  9575. "funding": [
  9576. {
  9577. "url": "https://opencollective.com/reactphp",
  9578. "type": "open_collective"
  9579. }
  9580. ],
  9581. "time": "2024-06-11T12:45:25+00:00"
  9582. },
  9583. {
  9584. "name": "sebastian/cli-parser",
  9585. "version": "2.0.1",
  9586. "source": {
  9587. "type": "git",
  9588. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9589. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9590. },
  9591. "dist": {
  9592. "type": "zip",
  9593. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9594. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9595. "shasum": ""
  9596. },
  9597. "require": {
  9598. "php": ">=8.1"
  9599. },
  9600. "require-dev": {
  9601. "phpunit/phpunit": "^10.0"
  9602. },
  9603. "type": "library",
  9604. "extra": {
  9605. "branch-alias": {
  9606. "dev-main": "2.0-dev"
  9607. }
  9608. },
  9609. "autoload": {
  9610. "classmap": [
  9611. "src/"
  9612. ]
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "BSD-3-Clause"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Sebastian Bergmann",
  9621. "email": "sebastian@phpunit.de",
  9622. "role": "lead"
  9623. }
  9624. ],
  9625. "description": "Library for parsing CLI options",
  9626. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9627. "support": {
  9628. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9629. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9630. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9631. },
  9632. "funding": [
  9633. {
  9634. "url": "https://github.com/sebastianbergmann",
  9635. "type": "github"
  9636. }
  9637. ],
  9638. "time": "2024-03-02T07:12:49+00:00"
  9639. },
  9640. {
  9641. "name": "sebastian/code-unit",
  9642. "version": "2.0.0",
  9643. "source": {
  9644. "type": "git",
  9645. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9646. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9647. },
  9648. "dist": {
  9649. "type": "zip",
  9650. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9651. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9652. "shasum": ""
  9653. },
  9654. "require": {
  9655. "php": ">=8.1"
  9656. },
  9657. "require-dev": {
  9658. "phpunit/phpunit": "^10.0"
  9659. },
  9660. "type": "library",
  9661. "extra": {
  9662. "branch-alias": {
  9663. "dev-main": "2.0-dev"
  9664. }
  9665. },
  9666. "autoload": {
  9667. "classmap": [
  9668. "src/"
  9669. ]
  9670. },
  9671. "notification-url": "https://packagist.org/downloads/",
  9672. "license": [
  9673. "BSD-3-Clause"
  9674. ],
  9675. "authors": [
  9676. {
  9677. "name": "Sebastian Bergmann",
  9678. "email": "sebastian@phpunit.de",
  9679. "role": "lead"
  9680. }
  9681. ],
  9682. "description": "Collection of value objects that represent the PHP code units",
  9683. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9684. "support": {
  9685. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9686. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9687. },
  9688. "funding": [
  9689. {
  9690. "url": "https://github.com/sebastianbergmann",
  9691. "type": "github"
  9692. }
  9693. ],
  9694. "time": "2023-02-03T06:58:43+00:00"
  9695. },
  9696. {
  9697. "name": "sebastian/code-unit-reverse-lookup",
  9698. "version": "3.0.0",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9702. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9707. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9708. "shasum": ""
  9709. },
  9710. "require": {
  9711. "php": ">=8.1"
  9712. },
  9713. "require-dev": {
  9714. "phpunit/phpunit": "^10.0"
  9715. },
  9716. "type": "library",
  9717. "extra": {
  9718. "branch-alias": {
  9719. "dev-main": "3.0-dev"
  9720. }
  9721. },
  9722. "autoload": {
  9723. "classmap": [
  9724. "src/"
  9725. ]
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "BSD-3-Clause"
  9730. ],
  9731. "authors": [
  9732. {
  9733. "name": "Sebastian Bergmann",
  9734. "email": "sebastian@phpunit.de"
  9735. }
  9736. ],
  9737. "description": "Looks up which function or method a line of code belongs to",
  9738. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9739. "support": {
  9740. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9741. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/sebastianbergmann",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2023-02-03T06:59:15+00:00"
  9750. },
  9751. {
  9752. "name": "sebastian/comparator",
  9753. "version": "5.0.3",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/comparator.git",
  9757. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9762. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9763. "shasum": ""
  9764. },
  9765. "require": {
  9766. "ext-dom": "*",
  9767. "ext-mbstring": "*",
  9768. "php": ">=8.1",
  9769. "sebastian/diff": "^5.0",
  9770. "sebastian/exporter": "^5.0"
  9771. },
  9772. "require-dev": {
  9773. "phpunit/phpunit": "^10.5"
  9774. },
  9775. "type": "library",
  9776. "extra": {
  9777. "branch-alias": {
  9778. "dev-main": "5.0-dev"
  9779. }
  9780. },
  9781. "autoload": {
  9782. "classmap": [
  9783. "src/"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "BSD-3-Clause"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Sebastian Bergmann",
  9793. "email": "sebastian@phpunit.de"
  9794. },
  9795. {
  9796. "name": "Jeff Welch",
  9797. "email": "whatthejeff@gmail.com"
  9798. },
  9799. {
  9800. "name": "Volker Dusch",
  9801. "email": "github@wallbash.com"
  9802. },
  9803. {
  9804. "name": "Bernhard Schussek",
  9805. "email": "bschussek@2bepublished.at"
  9806. }
  9807. ],
  9808. "description": "Provides the functionality to compare PHP values for equality",
  9809. "homepage": "https://github.com/sebastianbergmann/comparator",
  9810. "keywords": [
  9811. "comparator",
  9812. "compare",
  9813. "equality"
  9814. ],
  9815. "support": {
  9816. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9817. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9818. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9819. },
  9820. "funding": [
  9821. {
  9822. "url": "https://github.com/sebastianbergmann",
  9823. "type": "github"
  9824. }
  9825. ],
  9826. "time": "2024-10-18T14:56:07+00:00"
  9827. },
  9828. {
  9829. "name": "sebastian/complexity",
  9830. "version": "3.2.0",
  9831. "source": {
  9832. "type": "git",
  9833. "url": "https://github.com/sebastianbergmann/complexity.git",
  9834. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9835. },
  9836. "dist": {
  9837. "type": "zip",
  9838. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9839. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9840. "shasum": ""
  9841. },
  9842. "require": {
  9843. "nikic/php-parser": "^4.18 || ^5.0",
  9844. "php": ">=8.1"
  9845. },
  9846. "require-dev": {
  9847. "phpunit/phpunit": "^10.0"
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-main": "3.2-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "classmap": [
  9857. "src/"
  9858. ]
  9859. },
  9860. "notification-url": "https://packagist.org/downloads/",
  9861. "license": [
  9862. "BSD-3-Clause"
  9863. ],
  9864. "authors": [
  9865. {
  9866. "name": "Sebastian Bergmann",
  9867. "email": "sebastian@phpunit.de",
  9868. "role": "lead"
  9869. }
  9870. ],
  9871. "description": "Library for calculating the complexity of PHP code units",
  9872. "homepage": "https://github.com/sebastianbergmann/complexity",
  9873. "support": {
  9874. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9875. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9876. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9877. },
  9878. "funding": [
  9879. {
  9880. "url": "https://github.com/sebastianbergmann",
  9881. "type": "github"
  9882. }
  9883. ],
  9884. "time": "2023-12-21T08:37:17+00:00"
  9885. },
  9886. {
  9887. "name": "sebastian/diff",
  9888. "version": "5.1.1",
  9889. "source": {
  9890. "type": "git",
  9891. "url": "https://github.com/sebastianbergmann/diff.git",
  9892. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9893. },
  9894. "dist": {
  9895. "type": "zip",
  9896. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9897. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9898. "shasum": ""
  9899. },
  9900. "require": {
  9901. "php": ">=8.1"
  9902. },
  9903. "require-dev": {
  9904. "phpunit/phpunit": "^10.0",
  9905. "symfony/process": "^6.4"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-main": "5.1-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "classmap": [
  9915. "src/"
  9916. ]
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "BSD-3-Clause"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Sebastian Bergmann",
  9925. "email": "sebastian@phpunit.de"
  9926. },
  9927. {
  9928. "name": "Kore Nordmann",
  9929. "email": "mail@kore-nordmann.de"
  9930. }
  9931. ],
  9932. "description": "Diff implementation",
  9933. "homepage": "https://github.com/sebastianbergmann/diff",
  9934. "keywords": [
  9935. "diff",
  9936. "udiff",
  9937. "unidiff",
  9938. "unified diff"
  9939. ],
  9940. "support": {
  9941. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9942. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9943. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9944. },
  9945. "funding": [
  9946. {
  9947. "url": "https://github.com/sebastianbergmann",
  9948. "type": "github"
  9949. }
  9950. ],
  9951. "time": "2024-03-02T07:15:17+00:00"
  9952. },
  9953. {
  9954. "name": "sebastian/environment",
  9955. "version": "6.1.0",
  9956. "source": {
  9957. "type": "git",
  9958. "url": "https://github.com/sebastianbergmann/environment.git",
  9959. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9960. },
  9961. "dist": {
  9962. "type": "zip",
  9963. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9964. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9965. "shasum": ""
  9966. },
  9967. "require": {
  9968. "php": ">=8.1"
  9969. },
  9970. "require-dev": {
  9971. "phpunit/phpunit": "^10.0"
  9972. },
  9973. "suggest": {
  9974. "ext-posix": "*"
  9975. },
  9976. "type": "library",
  9977. "extra": {
  9978. "branch-alias": {
  9979. "dev-main": "6.1-dev"
  9980. }
  9981. },
  9982. "autoload": {
  9983. "classmap": [
  9984. "src/"
  9985. ]
  9986. },
  9987. "notification-url": "https://packagist.org/downloads/",
  9988. "license": [
  9989. "BSD-3-Clause"
  9990. ],
  9991. "authors": [
  9992. {
  9993. "name": "Sebastian Bergmann",
  9994. "email": "sebastian@phpunit.de"
  9995. }
  9996. ],
  9997. "description": "Provides functionality to handle HHVM/PHP environments",
  9998. "homepage": "https://github.com/sebastianbergmann/environment",
  9999. "keywords": [
  10000. "Xdebug",
  10001. "environment",
  10002. "hhvm"
  10003. ],
  10004. "support": {
  10005. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10006. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10007. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10008. },
  10009. "funding": [
  10010. {
  10011. "url": "https://github.com/sebastianbergmann",
  10012. "type": "github"
  10013. }
  10014. ],
  10015. "time": "2024-03-23T08:47:14+00:00"
  10016. },
  10017. {
  10018. "name": "sebastian/exporter",
  10019. "version": "5.1.2",
  10020. "source": {
  10021. "type": "git",
  10022. "url": "https://github.com/sebastianbergmann/exporter.git",
  10023. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10024. },
  10025. "dist": {
  10026. "type": "zip",
  10027. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10028. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10029. "shasum": ""
  10030. },
  10031. "require": {
  10032. "ext-mbstring": "*",
  10033. "php": ">=8.1",
  10034. "sebastian/recursion-context": "^5.0"
  10035. },
  10036. "require-dev": {
  10037. "phpunit/phpunit": "^10.0"
  10038. },
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-main": "5.1-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "classmap": [
  10047. "src/"
  10048. ]
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "BSD-3-Clause"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "Sebastian Bergmann",
  10057. "email": "sebastian@phpunit.de"
  10058. },
  10059. {
  10060. "name": "Jeff Welch",
  10061. "email": "whatthejeff@gmail.com"
  10062. },
  10063. {
  10064. "name": "Volker Dusch",
  10065. "email": "github@wallbash.com"
  10066. },
  10067. {
  10068. "name": "Adam Harvey",
  10069. "email": "aharvey@php.net"
  10070. },
  10071. {
  10072. "name": "Bernhard Schussek",
  10073. "email": "bschussek@gmail.com"
  10074. }
  10075. ],
  10076. "description": "Provides the functionality to export PHP variables for visualization",
  10077. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10078. "keywords": [
  10079. "export",
  10080. "exporter"
  10081. ],
  10082. "support": {
  10083. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10084. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10085. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10086. },
  10087. "funding": [
  10088. {
  10089. "url": "https://github.com/sebastianbergmann",
  10090. "type": "github"
  10091. }
  10092. ],
  10093. "time": "2024-03-02T07:17:12+00:00"
  10094. },
  10095. {
  10096. "name": "sebastian/global-state",
  10097. "version": "6.0.2",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/sebastianbergmann/global-state.git",
  10101. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10106. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10107. "shasum": ""
  10108. },
  10109. "require": {
  10110. "php": ">=8.1",
  10111. "sebastian/object-reflector": "^3.0",
  10112. "sebastian/recursion-context": "^5.0"
  10113. },
  10114. "require-dev": {
  10115. "ext-dom": "*",
  10116. "phpunit/phpunit": "^10.0"
  10117. },
  10118. "type": "library",
  10119. "extra": {
  10120. "branch-alias": {
  10121. "dev-main": "6.0-dev"
  10122. }
  10123. },
  10124. "autoload": {
  10125. "classmap": [
  10126. "src/"
  10127. ]
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "BSD-3-Clause"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Sebastian Bergmann",
  10136. "email": "sebastian@phpunit.de"
  10137. }
  10138. ],
  10139. "description": "Snapshotting of global state",
  10140. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10141. "keywords": [
  10142. "global state"
  10143. ],
  10144. "support": {
  10145. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10146. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10147. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10148. },
  10149. "funding": [
  10150. {
  10151. "url": "https://github.com/sebastianbergmann",
  10152. "type": "github"
  10153. }
  10154. ],
  10155. "time": "2024-03-02T07:19:19+00:00"
  10156. },
  10157. {
  10158. "name": "sebastian/lines-of-code",
  10159. "version": "2.0.2",
  10160. "source": {
  10161. "type": "git",
  10162. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10163. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10164. },
  10165. "dist": {
  10166. "type": "zip",
  10167. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10168. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10169. "shasum": ""
  10170. },
  10171. "require": {
  10172. "nikic/php-parser": "^4.18 || ^5.0",
  10173. "php": ">=8.1"
  10174. },
  10175. "require-dev": {
  10176. "phpunit/phpunit": "^10.0"
  10177. },
  10178. "type": "library",
  10179. "extra": {
  10180. "branch-alias": {
  10181. "dev-main": "2.0-dev"
  10182. }
  10183. },
  10184. "autoload": {
  10185. "classmap": [
  10186. "src/"
  10187. ]
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "BSD-3-Clause"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Sebastian Bergmann",
  10196. "email": "sebastian@phpunit.de",
  10197. "role": "lead"
  10198. }
  10199. ],
  10200. "description": "Library for counting the lines of code in PHP source code",
  10201. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10202. "support": {
  10203. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10204. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10205. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10206. },
  10207. "funding": [
  10208. {
  10209. "url": "https://github.com/sebastianbergmann",
  10210. "type": "github"
  10211. }
  10212. ],
  10213. "time": "2023-12-21T08:38:20+00:00"
  10214. },
  10215. {
  10216. "name": "sebastian/object-enumerator",
  10217. "version": "5.0.0",
  10218. "source": {
  10219. "type": "git",
  10220. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10221. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10222. },
  10223. "dist": {
  10224. "type": "zip",
  10225. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10226. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10227. "shasum": ""
  10228. },
  10229. "require": {
  10230. "php": ">=8.1",
  10231. "sebastian/object-reflector": "^3.0",
  10232. "sebastian/recursion-context": "^5.0"
  10233. },
  10234. "require-dev": {
  10235. "phpunit/phpunit": "^10.0"
  10236. },
  10237. "type": "library",
  10238. "extra": {
  10239. "branch-alias": {
  10240. "dev-main": "5.0-dev"
  10241. }
  10242. },
  10243. "autoload": {
  10244. "classmap": [
  10245. "src/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "BSD-3-Clause"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Sebastian Bergmann",
  10255. "email": "sebastian@phpunit.de"
  10256. }
  10257. ],
  10258. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10259. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10260. "support": {
  10261. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10262. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://github.com/sebastianbergmann",
  10267. "type": "github"
  10268. }
  10269. ],
  10270. "time": "2023-02-03T07:08:32+00:00"
  10271. },
  10272. {
  10273. "name": "sebastian/object-reflector",
  10274. "version": "3.0.0",
  10275. "source": {
  10276. "type": "git",
  10277. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10278. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10279. },
  10280. "dist": {
  10281. "type": "zip",
  10282. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10283. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10284. "shasum": ""
  10285. },
  10286. "require": {
  10287. "php": ">=8.1"
  10288. },
  10289. "require-dev": {
  10290. "phpunit/phpunit": "^10.0"
  10291. },
  10292. "type": "library",
  10293. "extra": {
  10294. "branch-alias": {
  10295. "dev-main": "3.0-dev"
  10296. }
  10297. },
  10298. "autoload": {
  10299. "classmap": [
  10300. "src/"
  10301. ]
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "BSD-3-Clause"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Sebastian Bergmann",
  10310. "email": "sebastian@phpunit.de"
  10311. }
  10312. ],
  10313. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10314. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10315. "support": {
  10316. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10317. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10318. },
  10319. "funding": [
  10320. {
  10321. "url": "https://github.com/sebastianbergmann",
  10322. "type": "github"
  10323. }
  10324. ],
  10325. "time": "2023-02-03T07:06:18+00:00"
  10326. },
  10327. {
  10328. "name": "sebastian/recursion-context",
  10329. "version": "5.0.0",
  10330. "source": {
  10331. "type": "git",
  10332. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10333. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10334. },
  10335. "dist": {
  10336. "type": "zip",
  10337. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10338. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10339. "shasum": ""
  10340. },
  10341. "require": {
  10342. "php": ">=8.1"
  10343. },
  10344. "require-dev": {
  10345. "phpunit/phpunit": "^10.0"
  10346. },
  10347. "type": "library",
  10348. "extra": {
  10349. "branch-alias": {
  10350. "dev-main": "5.0-dev"
  10351. }
  10352. },
  10353. "autoload": {
  10354. "classmap": [
  10355. "src/"
  10356. ]
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "BSD-3-Clause"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Sebastian Bergmann",
  10365. "email": "sebastian@phpunit.de"
  10366. },
  10367. {
  10368. "name": "Jeff Welch",
  10369. "email": "whatthejeff@gmail.com"
  10370. },
  10371. {
  10372. "name": "Adam Harvey",
  10373. "email": "aharvey@php.net"
  10374. }
  10375. ],
  10376. "description": "Provides functionality to recursively process PHP variables",
  10377. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10378. "support": {
  10379. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10380. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10381. },
  10382. "funding": [
  10383. {
  10384. "url": "https://github.com/sebastianbergmann",
  10385. "type": "github"
  10386. }
  10387. ],
  10388. "time": "2023-02-03T07:05:40+00:00"
  10389. },
  10390. {
  10391. "name": "sebastian/type",
  10392. "version": "4.0.0",
  10393. "source": {
  10394. "type": "git",
  10395. "url": "https://github.com/sebastianbergmann/type.git",
  10396. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10397. },
  10398. "dist": {
  10399. "type": "zip",
  10400. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10401. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10402. "shasum": ""
  10403. },
  10404. "require": {
  10405. "php": ">=8.1"
  10406. },
  10407. "require-dev": {
  10408. "phpunit/phpunit": "^10.0"
  10409. },
  10410. "type": "library",
  10411. "extra": {
  10412. "branch-alias": {
  10413. "dev-main": "4.0-dev"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "classmap": [
  10418. "src/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "BSD-3-Clause"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Sebastian Bergmann",
  10428. "email": "sebastian@phpunit.de",
  10429. "role": "lead"
  10430. }
  10431. ],
  10432. "description": "Collection of value objects that represent the types of the PHP type system",
  10433. "homepage": "https://github.com/sebastianbergmann/type",
  10434. "support": {
  10435. "issues": "https://github.com/sebastianbergmann/type/issues",
  10436. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10437. },
  10438. "funding": [
  10439. {
  10440. "url": "https://github.com/sebastianbergmann",
  10441. "type": "github"
  10442. }
  10443. ],
  10444. "time": "2023-02-03T07:10:45+00:00"
  10445. },
  10446. {
  10447. "name": "sebastian/version",
  10448. "version": "4.0.1",
  10449. "source": {
  10450. "type": "git",
  10451. "url": "https://github.com/sebastianbergmann/version.git",
  10452. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10453. },
  10454. "dist": {
  10455. "type": "zip",
  10456. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10457. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10458. "shasum": ""
  10459. },
  10460. "require": {
  10461. "php": ">=8.1"
  10462. },
  10463. "type": "library",
  10464. "extra": {
  10465. "branch-alias": {
  10466. "dev-main": "4.0-dev"
  10467. }
  10468. },
  10469. "autoload": {
  10470. "classmap": [
  10471. "src/"
  10472. ]
  10473. },
  10474. "notification-url": "https://packagist.org/downloads/",
  10475. "license": [
  10476. "BSD-3-Clause"
  10477. ],
  10478. "authors": [
  10479. {
  10480. "name": "Sebastian Bergmann",
  10481. "email": "sebastian@phpunit.de",
  10482. "role": "lead"
  10483. }
  10484. ],
  10485. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10486. "homepage": "https://github.com/sebastianbergmann/version",
  10487. "support": {
  10488. "issues": "https://github.com/sebastianbergmann/version/issues",
  10489. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10490. },
  10491. "funding": [
  10492. {
  10493. "url": "https://github.com/sebastianbergmann",
  10494. "type": "github"
  10495. }
  10496. ],
  10497. "time": "2023-02-07T11:34:05+00:00"
  10498. },
  10499. {
  10500. "name": "swoole/ide-helper",
  10501. "version": "5.1.5",
  10502. "source": {
  10503. "type": "git",
  10504. "url": "https://github.com/swoole/ide-helper.git",
  10505. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10506. },
  10507. "dist": {
  10508. "type": "zip",
  10509. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10510. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10511. "shasum": ""
  10512. },
  10513. "type": "library",
  10514. "notification-url": "https://packagist.org/downloads/",
  10515. "license": [
  10516. "Apache-2.0"
  10517. ],
  10518. "authors": [
  10519. {
  10520. "name": "Team Swoole",
  10521. "email": "team@swoole.com"
  10522. }
  10523. ],
  10524. "description": "IDE help files for Swoole.",
  10525. "support": {
  10526. "issues": "https://github.com/swoole/ide-helper/issues",
  10527. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10528. },
  10529. "time": "2024-11-05T07:35:30+00:00"
  10530. },
  10531. {
  10532. "name": "symfony/event-dispatcher",
  10533. "version": "v6.4.13",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/symfony/event-dispatcher.git",
  10537. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10542. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "php": ">=8.1",
  10547. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10548. },
  10549. "conflict": {
  10550. "symfony/dependency-injection": "<5.4",
  10551. "symfony/service-contracts": "<2.5"
  10552. },
  10553. "provide": {
  10554. "psr/event-dispatcher-implementation": "1.0",
  10555. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10556. },
  10557. "require-dev": {
  10558. "psr/log": "^1|^2|^3",
  10559. "symfony/config": "^5.4|^6.0|^7.0",
  10560. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10561. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10562. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10563. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10564. "symfony/service-contracts": "^2.5|^3",
  10565. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10566. },
  10567. "type": "library",
  10568. "autoload": {
  10569. "psr-4": {
  10570. "Symfony\\Component\\EventDispatcher\\": ""
  10571. },
  10572. "exclude-from-classmap": [
  10573. "/Tests/"
  10574. ]
  10575. },
  10576. "notification-url": "https://packagist.org/downloads/",
  10577. "license": [
  10578. "MIT"
  10579. ],
  10580. "authors": [
  10581. {
  10582. "name": "Fabien Potencier",
  10583. "email": "fabien@symfony.com"
  10584. },
  10585. {
  10586. "name": "Symfony Community",
  10587. "homepage": "https://symfony.com/contributors"
  10588. }
  10589. ],
  10590. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10591. "homepage": "https://symfony.com",
  10592. "support": {
  10593. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10594. },
  10595. "funding": [
  10596. {
  10597. "url": "https://symfony.com/sponsor",
  10598. "type": "custom"
  10599. },
  10600. {
  10601. "url": "https://github.com/fabpot",
  10602. "type": "github"
  10603. },
  10604. {
  10605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10606. "type": "tidelift"
  10607. }
  10608. ],
  10609. "time": "2024-09-25T14:18:03+00:00"
  10610. },
  10611. {
  10612. "name": "symfony/event-dispatcher-contracts",
  10613. "version": "v3.5.0",
  10614. "source": {
  10615. "type": "git",
  10616. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10617. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10618. },
  10619. "dist": {
  10620. "type": "zip",
  10621. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10622. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10623. "shasum": ""
  10624. },
  10625. "require": {
  10626. "php": ">=8.1",
  10627. "psr/event-dispatcher": "^1"
  10628. },
  10629. "type": "library",
  10630. "extra": {
  10631. "branch-alias": {
  10632. "dev-main": "3.5-dev"
  10633. },
  10634. "thanks": {
  10635. "name": "symfony/contracts",
  10636. "url": "https://github.com/symfony/contracts"
  10637. }
  10638. },
  10639. "autoload": {
  10640. "psr-4": {
  10641. "Symfony\\Contracts\\EventDispatcher\\": ""
  10642. }
  10643. },
  10644. "notification-url": "https://packagist.org/downloads/",
  10645. "license": [
  10646. "MIT"
  10647. ],
  10648. "authors": [
  10649. {
  10650. "name": "Nicolas Grekas",
  10651. "email": "p@tchwork.com"
  10652. },
  10653. {
  10654. "name": "Symfony Community",
  10655. "homepage": "https://symfony.com/contributors"
  10656. }
  10657. ],
  10658. "description": "Generic abstractions related to dispatching event",
  10659. "homepage": "https://symfony.com",
  10660. "keywords": [
  10661. "abstractions",
  10662. "contracts",
  10663. "decoupling",
  10664. "interfaces",
  10665. "interoperability",
  10666. "standards"
  10667. ],
  10668. "support": {
  10669. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10670. },
  10671. "funding": [
  10672. {
  10673. "url": "https://symfony.com/sponsor",
  10674. "type": "custom"
  10675. },
  10676. {
  10677. "url": "https://github.com/fabpot",
  10678. "type": "github"
  10679. },
  10680. {
  10681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10682. "type": "tidelift"
  10683. }
  10684. ],
  10685. "time": "2024-04-18T09:32:20+00:00"
  10686. },
  10687. {
  10688. "name": "symfony/filesystem",
  10689. "version": "v6.4.13",
  10690. "source": {
  10691. "type": "git",
  10692. "url": "https://github.com/symfony/filesystem.git",
  10693. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10694. },
  10695. "dist": {
  10696. "type": "zip",
  10697. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10698. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10699. "shasum": ""
  10700. },
  10701. "require": {
  10702. "php": ">=8.1",
  10703. "symfony/polyfill-ctype": "~1.8",
  10704. "symfony/polyfill-mbstring": "~1.8"
  10705. },
  10706. "require-dev": {
  10707. "symfony/process": "^5.4|^6.4|^7.0"
  10708. },
  10709. "type": "library",
  10710. "autoload": {
  10711. "psr-4": {
  10712. "Symfony\\Component\\Filesystem\\": ""
  10713. },
  10714. "exclude-from-classmap": [
  10715. "/Tests/"
  10716. ]
  10717. },
  10718. "notification-url": "https://packagist.org/downloads/",
  10719. "license": [
  10720. "MIT"
  10721. ],
  10722. "authors": [
  10723. {
  10724. "name": "Fabien Potencier",
  10725. "email": "fabien@symfony.com"
  10726. },
  10727. {
  10728. "name": "Symfony Community",
  10729. "homepage": "https://symfony.com/contributors"
  10730. }
  10731. ],
  10732. "description": "Provides basic utilities for the filesystem",
  10733. "homepage": "https://symfony.com",
  10734. "support": {
  10735. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10736. },
  10737. "funding": [
  10738. {
  10739. "url": "https://symfony.com/sponsor",
  10740. "type": "custom"
  10741. },
  10742. {
  10743. "url": "https://github.com/fabpot",
  10744. "type": "github"
  10745. },
  10746. {
  10747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10748. "type": "tidelift"
  10749. }
  10750. ],
  10751. "time": "2024-10-25T15:07:50+00:00"
  10752. },
  10753. {
  10754. "name": "symfony/http-foundation",
  10755. "version": "v6.4.14",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/symfony/http-foundation.git",
  10759. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  10764. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "php": ">=8.1",
  10769. "symfony/deprecation-contracts": "^2.5|^3",
  10770. "symfony/polyfill-mbstring": "~1.1",
  10771. "symfony/polyfill-php83": "^1.27"
  10772. },
  10773. "conflict": {
  10774. "symfony/cache": "<6.3"
  10775. },
  10776. "require-dev": {
  10777. "doctrine/dbal": "^2.13.1|^3|^4",
  10778. "predis/predis": "^1.1|^2.0",
  10779. "symfony/cache": "^6.3|^7.0",
  10780. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10781. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10782. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10783. "symfony/mime": "^5.4|^6.0|^7.0",
  10784. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10785. },
  10786. "type": "library",
  10787. "autoload": {
  10788. "psr-4": {
  10789. "Symfony\\Component\\HttpFoundation\\": ""
  10790. },
  10791. "exclude-from-classmap": [
  10792. "/Tests/"
  10793. ]
  10794. },
  10795. "notification-url": "https://packagist.org/downloads/",
  10796. "license": [
  10797. "MIT"
  10798. ],
  10799. "authors": [
  10800. {
  10801. "name": "Fabien Potencier",
  10802. "email": "fabien@symfony.com"
  10803. },
  10804. {
  10805. "name": "Symfony Community",
  10806. "homepage": "https://symfony.com/contributors"
  10807. }
  10808. ],
  10809. "description": "Defines an object-oriented layer for the HTTP specification",
  10810. "homepage": "https://symfony.com",
  10811. "support": {
  10812. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  10813. },
  10814. "funding": [
  10815. {
  10816. "url": "https://symfony.com/sponsor",
  10817. "type": "custom"
  10818. },
  10819. {
  10820. "url": "https://github.com/fabpot",
  10821. "type": "github"
  10822. },
  10823. {
  10824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10825. "type": "tidelift"
  10826. }
  10827. ],
  10828. "time": "2024-11-05T16:39:55+00:00"
  10829. },
  10830. {
  10831. "name": "symfony/options-resolver",
  10832. "version": "v6.4.13",
  10833. "source": {
  10834. "type": "git",
  10835. "url": "https://github.com/symfony/options-resolver.git",
  10836. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  10837. },
  10838. "dist": {
  10839. "type": "zip",
  10840. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  10841. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  10842. "shasum": ""
  10843. },
  10844. "require": {
  10845. "php": ">=8.1",
  10846. "symfony/deprecation-contracts": "^2.5|^3"
  10847. },
  10848. "type": "library",
  10849. "autoload": {
  10850. "psr-4": {
  10851. "Symfony\\Component\\OptionsResolver\\": ""
  10852. },
  10853. "exclude-from-classmap": [
  10854. "/Tests/"
  10855. ]
  10856. },
  10857. "notification-url": "https://packagist.org/downloads/",
  10858. "license": [
  10859. "MIT"
  10860. ],
  10861. "authors": [
  10862. {
  10863. "name": "Fabien Potencier",
  10864. "email": "fabien@symfony.com"
  10865. },
  10866. {
  10867. "name": "Symfony Community",
  10868. "homepage": "https://symfony.com/contributors"
  10869. }
  10870. ],
  10871. "description": "Provides an improved replacement for the array_replace PHP function",
  10872. "homepage": "https://symfony.com",
  10873. "keywords": [
  10874. "config",
  10875. "configuration",
  10876. "options"
  10877. ],
  10878. "support": {
  10879. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  10880. },
  10881. "funding": [
  10882. {
  10883. "url": "https://symfony.com/sponsor",
  10884. "type": "custom"
  10885. },
  10886. {
  10887. "url": "https://github.com/fabpot",
  10888. "type": "github"
  10889. },
  10890. {
  10891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10892. "type": "tidelift"
  10893. }
  10894. ],
  10895. "time": "2024-09-25T14:18:03+00:00"
  10896. },
  10897. {
  10898. "name": "symfony/polyfill-php81",
  10899. "version": "v1.31.0",
  10900. "source": {
  10901. "type": "git",
  10902. "url": "https://github.com/symfony/polyfill-php81.git",
  10903. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10904. },
  10905. "dist": {
  10906. "type": "zip",
  10907. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10908. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10909. "shasum": ""
  10910. },
  10911. "require": {
  10912. "php": ">=7.2"
  10913. },
  10914. "type": "library",
  10915. "extra": {
  10916. "thanks": {
  10917. "name": "symfony/polyfill",
  10918. "url": "https://github.com/symfony/polyfill"
  10919. }
  10920. },
  10921. "autoload": {
  10922. "files": [
  10923. "bootstrap.php"
  10924. ],
  10925. "psr-4": {
  10926. "Symfony\\Polyfill\\Php81\\": ""
  10927. },
  10928. "classmap": [
  10929. "Resources/stubs"
  10930. ]
  10931. },
  10932. "notification-url": "https://packagist.org/downloads/",
  10933. "license": [
  10934. "MIT"
  10935. ],
  10936. "authors": [
  10937. {
  10938. "name": "Nicolas Grekas",
  10939. "email": "p@tchwork.com"
  10940. },
  10941. {
  10942. "name": "Symfony Community",
  10943. "homepage": "https://symfony.com/contributors"
  10944. }
  10945. ],
  10946. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10947. "homepage": "https://symfony.com",
  10948. "keywords": [
  10949. "compatibility",
  10950. "polyfill",
  10951. "portable",
  10952. "shim"
  10953. ],
  10954. "support": {
  10955. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10956. },
  10957. "funding": [
  10958. {
  10959. "url": "https://symfony.com/sponsor",
  10960. "type": "custom"
  10961. },
  10962. {
  10963. "url": "https://github.com/fabpot",
  10964. "type": "github"
  10965. },
  10966. {
  10967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10968. "type": "tidelift"
  10969. }
  10970. ],
  10971. "time": "2024-09-09T11:45:10+00:00"
  10972. },
  10973. {
  10974. "name": "symfony/polyfill-php83",
  10975. "version": "v1.31.0",
  10976. "source": {
  10977. "type": "git",
  10978. "url": "https://github.com/symfony/polyfill-php83.git",
  10979. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10980. },
  10981. "dist": {
  10982. "type": "zip",
  10983. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10984. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10985. "shasum": ""
  10986. },
  10987. "require": {
  10988. "php": ">=7.2"
  10989. },
  10990. "type": "library",
  10991. "extra": {
  10992. "thanks": {
  10993. "name": "symfony/polyfill",
  10994. "url": "https://github.com/symfony/polyfill"
  10995. }
  10996. },
  10997. "autoload": {
  10998. "files": [
  10999. "bootstrap.php"
  11000. ],
  11001. "psr-4": {
  11002. "Symfony\\Polyfill\\Php83\\": ""
  11003. },
  11004. "classmap": [
  11005. "Resources/stubs"
  11006. ]
  11007. },
  11008. "notification-url": "https://packagist.org/downloads/",
  11009. "license": [
  11010. "MIT"
  11011. ],
  11012. "authors": [
  11013. {
  11014. "name": "Nicolas Grekas",
  11015. "email": "p@tchwork.com"
  11016. },
  11017. {
  11018. "name": "Symfony Community",
  11019. "homepage": "https://symfony.com/contributors"
  11020. }
  11021. ],
  11022. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11023. "homepage": "https://symfony.com",
  11024. "keywords": [
  11025. "compatibility",
  11026. "polyfill",
  11027. "portable",
  11028. "shim"
  11029. ],
  11030. "support": {
  11031. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11032. },
  11033. "funding": [
  11034. {
  11035. "url": "https://symfony.com/sponsor",
  11036. "type": "custom"
  11037. },
  11038. {
  11039. "url": "https://github.com/fabpot",
  11040. "type": "github"
  11041. },
  11042. {
  11043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11044. "type": "tidelift"
  11045. }
  11046. ],
  11047. "time": "2024-09-09T11:45:10+00:00"
  11048. },
  11049. {
  11050. "name": "symfony/process",
  11051. "version": "v6.4.14",
  11052. "source": {
  11053. "type": "git",
  11054. "url": "https://github.com/symfony/process.git",
  11055. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  11056. },
  11057. "dist": {
  11058. "type": "zip",
  11059. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  11060. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  11061. "shasum": ""
  11062. },
  11063. "require": {
  11064. "php": ">=8.1"
  11065. },
  11066. "type": "library",
  11067. "autoload": {
  11068. "psr-4": {
  11069. "Symfony\\Component\\Process\\": ""
  11070. },
  11071. "exclude-from-classmap": [
  11072. "/Tests/"
  11073. ]
  11074. },
  11075. "notification-url": "https://packagist.org/downloads/",
  11076. "license": [
  11077. "MIT"
  11078. ],
  11079. "authors": [
  11080. {
  11081. "name": "Fabien Potencier",
  11082. "email": "fabien@symfony.com"
  11083. },
  11084. {
  11085. "name": "Symfony Community",
  11086. "homepage": "https://symfony.com/contributors"
  11087. }
  11088. ],
  11089. "description": "Executes commands in sub-processes",
  11090. "homepage": "https://symfony.com",
  11091. "support": {
  11092. "source": "https://github.com/symfony/process/tree/v6.4.14"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://symfony.com/sponsor",
  11097. "type": "custom"
  11098. },
  11099. {
  11100. "url": "https://github.com/fabpot",
  11101. "type": "github"
  11102. },
  11103. {
  11104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11105. "type": "tidelift"
  11106. }
  11107. ],
  11108. "time": "2024-11-06T09:25:01+00:00"
  11109. },
  11110. {
  11111. "name": "symfony/stopwatch",
  11112. "version": "v6.4.13",
  11113. "source": {
  11114. "type": "git",
  11115. "url": "https://github.com/symfony/stopwatch.git",
  11116. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11117. },
  11118. "dist": {
  11119. "type": "zip",
  11120. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11121. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11122. "shasum": ""
  11123. },
  11124. "require": {
  11125. "php": ">=8.1",
  11126. "symfony/service-contracts": "^2.5|^3"
  11127. },
  11128. "type": "library",
  11129. "autoload": {
  11130. "psr-4": {
  11131. "Symfony\\Component\\Stopwatch\\": ""
  11132. },
  11133. "exclude-from-classmap": [
  11134. "/Tests/"
  11135. ]
  11136. },
  11137. "notification-url": "https://packagist.org/downloads/",
  11138. "license": [
  11139. "MIT"
  11140. ],
  11141. "authors": [
  11142. {
  11143. "name": "Fabien Potencier",
  11144. "email": "fabien@symfony.com"
  11145. },
  11146. {
  11147. "name": "Symfony Community",
  11148. "homepage": "https://symfony.com/contributors"
  11149. }
  11150. ],
  11151. "description": "Provides a way to profile code",
  11152. "homepage": "https://symfony.com",
  11153. "support": {
  11154. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11155. },
  11156. "funding": [
  11157. {
  11158. "url": "https://symfony.com/sponsor",
  11159. "type": "custom"
  11160. },
  11161. {
  11162. "url": "https://github.com/fabpot",
  11163. "type": "github"
  11164. },
  11165. {
  11166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11167. "type": "tidelift"
  11168. }
  11169. ],
  11170. "time": "2024-09-25T14:18:03+00:00"
  11171. },
  11172. {
  11173. "name": "theseer/tokenizer",
  11174. "version": "1.2.3",
  11175. "source": {
  11176. "type": "git",
  11177. "url": "https://github.com/theseer/tokenizer.git",
  11178. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11179. },
  11180. "dist": {
  11181. "type": "zip",
  11182. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11183. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11184. "shasum": ""
  11185. },
  11186. "require": {
  11187. "ext-dom": "*",
  11188. "ext-tokenizer": "*",
  11189. "ext-xmlwriter": "*",
  11190. "php": "^7.2 || ^8.0"
  11191. },
  11192. "type": "library",
  11193. "autoload": {
  11194. "classmap": [
  11195. "src/"
  11196. ]
  11197. },
  11198. "notification-url": "https://packagist.org/downloads/",
  11199. "license": [
  11200. "BSD-3-Clause"
  11201. ],
  11202. "authors": [
  11203. {
  11204. "name": "Arne Blankerts",
  11205. "email": "arne@blankerts.de",
  11206. "role": "Developer"
  11207. }
  11208. ],
  11209. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11210. "support": {
  11211. "issues": "https://github.com/theseer/tokenizer/issues",
  11212. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11213. },
  11214. "funding": [
  11215. {
  11216. "url": "https://github.com/theseer",
  11217. "type": "github"
  11218. }
  11219. ],
  11220. "time": "2024-03-03T12:36:25+00:00"
  11221. }
  11222. ],
  11223. "aliases": [],
  11224. "minimum-stability": "dev",
  11225. "stability-flags": [],
  11226. "prefer-stable": true,
  11227. "prefer-lowest": false,
  11228. "platform": {
  11229. "php": ">=8.1"
  11230. },
  11231. "platform-dev": [],
  11232. "plugin-api-version": "2.6.0"
  11233. }