composer.lock 432 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096
  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": "93d050353fc587b1b1fb188f0a8c068c",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  20. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^8.1"
  31. },
  32. "require-dev": {
  33. "php-coveralls/php-coveralls": "^2.2",
  34. "phpunit/phpunit": "^10.1",
  35. "vimeo/psalm": "6.8.8"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "Brick\\Math\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "description": "Arbitrary-precision arithmetic library",
  48. "keywords": [
  49. "Arbitrary-precision",
  50. "BigInteger",
  51. "BigRational",
  52. "arithmetic",
  53. "bigdecimal",
  54. "bignum",
  55. "bignumber",
  56. "brick",
  57. "decimal",
  58. "integer",
  59. "math",
  60. "mathematics",
  61. "rational"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/brick/math/issues",
  65. "source": "https://github.com/brick/math/tree/0.12.3"
  66. },
  67. "funding": [
  68. {
  69. "url": "https://github.com/BenMorel",
  70. "type": "github"
  71. }
  72. ],
  73. "time": "2025-02-28T13:11:00+00:00"
  74. },
  75. {
  76. "name": "carbonphp/carbon-doctrine-types",
  77. "version": "3.2.0",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  81. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  86. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  87. "shasum": "",
  88. "mirrors": [
  89. {
  90. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  91. "preferred": true
  92. }
  93. ]
  94. },
  95. "require": {
  96. "php": "^8.1"
  97. },
  98. "conflict": {
  99. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  100. },
  101. "require-dev": {
  102. "doctrine/dbal": "^4.0.0",
  103. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  104. "phpunit/phpunit": "^10.3"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "KyleKatarn",
  119. "email": "kylekatarnls@gmail.com"
  120. }
  121. ],
  122. "description": "Types to use Carbon in Doctrine",
  123. "keywords": [
  124. "carbon",
  125. "date",
  126. "datetime",
  127. "doctrine",
  128. "time"
  129. ],
  130. "support": {
  131. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  132. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  133. },
  134. "funding": [
  135. {
  136. "url": "https://github.com/kylekatarnls",
  137. "type": "github"
  138. },
  139. {
  140. "url": "https://opencollective.com/Carbon",
  141. "type": "open_collective"
  142. },
  143. {
  144. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  145. "type": "tidelift"
  146. }
  147. ],
  148. "time": "2024-02-09T16:56:22+00:00"
  149. },
  150. {
  151. "name": "doctrine/annotations",
  152. "version": "2.0.1",
  153. "source": {
  154. "type": "git",
  155. "url": "https://github.com/doctrine/annotations.git",
  156. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  157. },
  158. "dist": {
  159. "type": "zip",
  160. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  161. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  162. "shasum": "",
  163. "mirrors": [
  164. {
  165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  166. "preferred": true
  167. }
  168. ]
  169. },
  170. "require": {
  171. "doctrine/lexer": "^2 || ^3",
  172. "ext-tokenizer": "*",
  173. "php": "^7.2 || ^8.0",
  174. "psr/cache": "^1 || ^2 || ^3"
  175. },
  176. "require-dev": {
  177. "doctrine/cache": "^2.0",
  178. "doctrine/coding-standard": "^10",
  179. "phpstan/phpstan": "^1.8.0",
  180. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  181. "symfony/cache": "^5.4 || ^6",
  182. "vimeo/psalm": "^4.10"
  183. },
  184. "suggest": {
  185. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  186. },
  187. "type": "library",
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Guilherme Blanco",
  200. "email": "guilhermeblanco@gmail.com"
  201. },
  202. {
  203. "name": "Roman Borschel",
  204. "email": "roman@code-factory.org"
  205. },
  206. {
  207. "name": "Benjamin Eberlei",
  208. "email": "kontakt@beberlei.de"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "jonwage@gmail.com"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "schmittjoh@gmail.com"
  217. }
  218. ],
  219. "description": "Docblock Annotations Parser",
  220. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  221. "keywords": [
  222. "annotations",
  223. "docblock",
  224. "parser"
  225. ],
  226. "support": {
  227. "issues": "https://github.com/doctrine/annotations/issues",
  228. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  229. },
  230. "time": "2023-02-02T22:02:53+00:00"
  231. },
  232. {
  233. "name": "doctrine/inflector",
  234. "version": "2.0.10",
  235. "source": {
  236. "type": "git",
  237. "url": "https://github.com/doctrine/inflector.git",
  238. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  239. },
  240. "dist": {
  241. "type": "zip",
  242. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  243. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  244. "shasum": "",
  245. "mirrors": [
  246. {
  247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  248. "preferred": true
  249. }
  250. ]
  251. },
  252. "require": {
  253. "php": "^7.2 || ^8.0"
  254. },
  255. "require-dev": {
  256. "doctrine/coding-standard": "^11.0",
  257. "phpstan/phpstan": "^1.8",
  258. "phpstan/phpstan-phpunit": "^1.1",
  259. "phpstan/phpstan-strict-rules": "^1.3",
  260. "phpunit/phpunit": "^8.5 || ^9.5",
  261. "vimeo/psalm": "^4.25 || ^5.4"
  262. },
  263. "type": "library",
  264. "autoload": {
  265. "psr-4": {
  266. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  267. }
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "MIT"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Guilherme Blanco",
  276. "email": "guilhermeblanco@gmail.com"
  277. },
  278. {
  279. "name": "Roman Borschel",
  280. "email": "roman@code-factory.org"
  281. },
  282. {
  283. "name": "Benjamin Eberlei",
  284. "email": "kontakt@beberlei.de"
  285. },
  286. {
  287. "name": "Jonathan Wage",
  288. "email": "jonwage@gmail.com"
  289. },
  290. {
  291. "name": "Johannes Schmitt",
  292. "email": "schmittjoh@gmail.com"
  293. }
  294. ],
  295. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  296. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  297. "keywords": [
  298. "inflection",
  299. "inflector",
  300. "lowercase",
  301. "manipulation",
  302. "php",
  303. "plural",
  304. "singular",
  305. "strings",
  306. "uppercase",
  307. "words"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/doctrine/inflector/issues",
  311. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  312. },
  313. "funding": [
  314. {
  315. "url": "https://www.doctrine-project.org/sponsorship.html",
  316. "type": "custom"
  317. },
  318. {
  319. "url": "https://www.patreon.com/phpdoctrine",
  320. "type": "patreon"
  321. },
  322. {
  323. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  324. "type": "tidelift"
  325. }
  326. ],
  327. "time": "2024-02-18T20:23:39+00:00"
  328. },
  329. {
  330. "name": "doctrine/instantiator",
  331. "version": "1.5.0",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/doctrine/instantiator.git",
  335. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  340. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  341. "shasum": "",
  342. "mirrors": [
  343. {
  344. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  345. "preferred": true
  346. }
  347. ]
  348. },
  349. "require": {
  350. "php": "^7.1 || ^8.0"
  351. },
  352. "require-dev": {
  353. "doctrine/coding-standard": "^9 || ^11",
  354. "ext-pdo": "*",
  355. "ext-phar": "*",
  356. "phpbench/phpbench": "^0.16 || ^1",
  357. "phpstan/phpstan": "^1.4",
  358. "phpstan/phpstan-phpunit": "^1",
  359. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  360. "vimeo/psalm": "^4.30 || ^5.4"
  361. },
  362. "type": "library",
  363. "autoload": {
  364. "psr-4": {
  365. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Marco Pivetta",
  375. "email": "ocramius@gmail.com",
  376. "homepage": "https://ocramius.github.io/"
  377. }
  378. ],
  379. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  380. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  381. "keywords": [
  382. "constructor",
  383. "instantiate"
  384. ],
  385. "support": {
  386. "issues": "https://github.com/doctrine/instantiator/issues",
  387. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  388. },
  389. "funding": [
  390. {
  391. "url": "https://www.doctrine-project.org/sponsorship.html",
  392. "type": "custom"
  393. },
  394. {
  395. "url": "https://www.patreon.com/phpdoctrine",
  396. "type": "patreon"
  397. },
  398. {
  399. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  400. "type": "tidelift"
  401. }
  402. ],
  403. "time": "2022-12-30T00:15:36+00:00"
  404. },
  405. {
  406. "name": "doctrine/lexer",
  407. "version": "3.0.1",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/doctrine/lexer.git",
  411. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  416. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  417. "shasum": "",
  418. "mirrors": [
  419. {
  420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  421. "preferred": true
  422. }
  423. ]
  424. },
  425. "require": {
  426. "php": "^8.1"
  427. },
  428. "require-dev": {
  429. "doctrine/coding-standard": "^12",
  430. "phpstan/phpstan": "^1.10",
  431. "phpunit/phpunit": "^10.5",
  432. "psalm/plugin-phpunit": "^0.18.3",
  433. "vimeo/psalm": "^5.21"
  434. },
  435. "type": "library",
  436. "autoload": {
  437. "psr-4": {
  438. "Doctrine\\Common\\Lexer\\": "src"
  439. }
  440. },
  441. "notification-url": "https://packagist.org/downloads/",
  442. "license": [
  443. "MIT"
  444. ],
  445. "authors": [
  446. {
  447. "name": "Guilherme Blanco",
  448. "email": "guilhermeblanco@gmail.com"
  449. },
  450. {
  451. "name": "Roman Borschel",
  452. "email": "roman@code-factory.org"
  453. },
  454. {
  455. "name": "Johannes Schmitt",
  456. "email": "schmittjoh@gmail.com"
  457. }
  458. ],
  459. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  460. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  461. "keywords": [
  462. "annotations",
  463. "docblock",
  464. "lexer",
  465. "parser",
  466. "php"
  467. ],
  468. "support": {
  469. "issues": "https://github.com/doctrine/lexer/issues",
  470. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  471. },
  472. "funding": [
  473. {
  474. "url": "https://www.doctrine-project.org/sponsorship.html",
  475. "type": "custom"
  476. },
  477. {
  478. "url": "https://www.patreon.com/phpdoctrine",
  479. "type": "patreon"
  480. },
  481. {
  482. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  483. "type": "tidelift"
  484. }
  485. ],
  486. "time": "2024-02-05T11:56:58+00:00"
  487. },
  488. {
  489. "name": "fig/http-message-util",
  490. "version": "1.1.5",
  491. "source": {
  492. "type": "git",
  493. "url": "https://github.com/php-fig/http-message-util.git",
  494. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  495. },
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  499. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  500. "shasum": "",
  501. "mirrors": [
  502. {
  503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  504. "preferred": true
  505. }
  506. ]
  507. },
  508. "require": {
  509. "php": "^5.3 || ^7.0 || ^8.0"
  510. },
  511. "suggest": {
  512. "psr/http-message": "The package containing the PSR-7 interfaces"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "branch-alias": {
  517. "dev-master": "1.1.x-dev"
  518. }
  519. },
  520. "autoload": {
  521. "psr-4": {
  522. "Fig\\Http\\Message\\": "src/"
  523. }
  524. },
  525. "notification-url": "https://packagist.org/downloads/",
  526. "license": [
  527. "MIT"
  528. ],
  529. "authors": [
  530. {
  531. "name": "PHP-FIG",
  532. "homepage": "https://www.php-fig.org/"
  533. }
  534. ],
  535. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  536. "keywords": [
  537. "http",
  538. "http-message",
  539. "psr",
  540. "psr-7",
  541. "request",
  542. "response"
  543. ],
  544. "support": {
  545. "issues": "https://github.com/php-fig/http-message-util/issues",
  546. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  547. },
  548. "time": "2020-11-24T22:02:12+00:00"
  549. },
  550. {
  551. "name": "fukuball/jieba-php",
  552. "version": "0.34",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/fukuball/jieba-php.git",
  556. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/44d62bda8b80fe07ff59e8fc654f477685109a66",
  561. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66",
  562. "shasum": "",
  563. "mirrors": [
  564. {
  565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  566. "preferred": true
  567. }
  568. ]
  569. },
  570. "require": {
  571. "php": ">= 5.3"
  572. },
  573. "require-dev": {
  574. "php-coveralls/php-coveralls": "dev-master",
  575. "phpunit/phpunit": "~9.0",
  576. "squizlabs/php_codesniffer": "4.0.x-dev"
  577. },
  578. "type": "library",
  579. "autoload": {
  580. "files": [
  581. "src/vendor/multi-array/MultiArray.php",
  582. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  583. ],
  584. "psr-4": {
  585. "Fukuball\\Jieba\\": "src/class/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "fukuball",
  595. "email": "fukuball@gmail.com"
  596. }
  597. ],
  598. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  599. "keywords": [
  600. "Jieba",
  601. "php"
  602. ],
  603. "support": {
  604. "issues": "https://github.com/fukuball/jieba-php/issues",
  605. "source": "https://github.com/fukuball/jieba-php/tree/0.34"
  606. },
  607. "time": "2022-08-15T06:26:03+00:00"
  608. },
  609. {
  610. "name": "graham-campbell/result-type",
  611. "version": "1.1.x-dev",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  615. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  620. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  621. "shasum": "",
  622. "mirrors": [
  623. {
  624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  625. "preferred": true
  626. }
  627. ]
  628. },
  629. "require": {
  630. "php": "^7.2.5 || ^8.0",
  631. "phpoption/phpoption": "^1.9.3"
  632. },
  633. "require-dev": {
  634. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  635. },
  636. "default-branch": true,
  637. "type": "library",
  638. "autoload": {
  639. "psr-4": {
  640. "GrahamCampbell\\ResultType\\": "src/"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Graham Campbell",
  650. "email": "hello@gjcampbell.co.uk",
  651. "homepage": "https://github.com/GrahamCampbell"
  652. }
  653. ],
  654. "description": "An Implementation Of The Result Type",
  655. "keywords": [
  656. "Graham Campbell",
  657. "GrahamCampbell",
  658. "Result Type",
  659. "Result-Type",
  660. "result"
  661. ],
  662. "support": {
  663. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  664. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  665. },
  666. "funding": [
  667. {
  668. "url": "https://github.com/GrahamCampbell",
  669. "type": "github"
  670. },
  671. {
  672. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  673. "type": "tidelift"
  674. }
  675. ],
  676. "time": "2025-02-09T22:43:44+00:00"
  677. },
  678. {
  679. "name": "guzzlehttp/guzzle",
  680. "version": "7.9.2",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/guzzle/guzzle.git",
  684. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  689. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  690. "shasum": "",
  691. "mirrors": [
  692. {
  693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  694. "preferred": true
  695. }
  696. ]
  697. },
  698. "require": {
  699. "ext-json": "*",
  700. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  701. "guzzlehttp/psr7": "^2.7.0",
  702. "php": "^7.2.5 || ^8.0",
  703. "psr/http-client": "^1.0",
  704. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  705. },
  706. "provide": {
  707. "psr/http-client-implementation": "1.0"
  708. },
  709. "require-dev": {
  710. "bamarni/composer-bin-plugin": "^1.8.2",
  711. "ext-curl": "*",
  712. "guzzle/client-integration-tests": "3.0.2",
  713. "php-http/message-factory": "^1.1",
  714. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  715. "psr/log": "^1.1 || ^2.0 || ^3.0"
  716. },
  717. "suggest": {
  718. "ext-curl": "Required for CURL handler support",
  719. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  720. "psr/log": "Required for using the Log middleware"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "bamarni-bin": {
  725. "bin-links": true,
  726. "forward-command": false
  727. }
  728. },
  729. "autoload": {
  730. "files": [
  731. "src/functions_include.php"
  732. ],
  733. "psr-4": {
  734. "GuzzleHttp\\": "src/"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Graham Campbell",
  744. "email": "hello@gjcampbell.co.uk",
  745. "homepage": "https://github.com/GrahamCampbell"
  746. },
  747. {
  748. "name": "Michael Dowling",
  749. "email": "mtdowling@gmail.com",
  750. "homepage": "https://github.com/mtdowling"
  751. },
  752. {
  753. "name": "Jeremy Lindblom",
  754. "email": "jeremeamia@gmail.com",
  755. "homepage": "https://github.com/jeremeamia"
  756. },
  757. {
  758. "name": "George Mponos",
  759. "email": "gmponos@gmail.com",
  760. "homepage": "https://github.com/gmponos"
  761. },
  762. {
  763. "name": "Tobias Nyholm",
  764. "email": "tobias.nyholm@gmail.com",
  765. "homepage": "https://github.com/Nyholm"
  766. },
  767. {
  768. "name": "Márk Sági-Kazár",
  769. "email": "mark.sagikazar@gmail.com",
  770. "homepage": "https://github.com/sagikazarmark"
  771. },
  772. {
  773. "name": "Tobias Schultze",
  774. "email": "webmaster@tubo-world.de",
  775. "homepage": "https://github.com/Tobion"
  776. }
  777. ],
  778. "description": "Guzzle is a PHP HTTP client library",
  779. "keywords": [
  780. "client",
  781. "curl",
  782. "framework",
  783. "http",
  784. "http client",
  785. "psr-18",
  786. "psr-7",
  787. "rest",
  788. "web service"
  789. ],
  790. "support": {
  791. "issues": "https://github.com/guzzle/guzzle/issues",
  792. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  793. },
  794. "funding": [
  795. {
  796. "url": "https://github.com/GrahamCampbell",
  797. "type": "github"
  798. },
  799. {
  800. "url": "https://github.com/Nyholm",
  801. "type": "github"
  802. },
  803. {
  804. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  805. "type": "tidelift"
  806. }
  807. ],
  808. "time": "2024-07-24T11:22:20+00:00"
  809. },
  810. {
  811. "name": "guzzlehttp/promises",
  812. "version": "2.2.0",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/guzzle/promises.git",
  816. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  821. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  822. "shasum": "",
  823. "mirrors": [
  824. {
  825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  826. "preferred": true
  827. }
  828. ]
  829. },
  830. "require": {
  831. "php": "^7.2.5 || ^8.0"
  832. },
  833. "require-dev": {
  834. "bamarni/composer-bin-plugin": "^1.8.2",
  835. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  836. },
  837. "type": "library",
  838. "extra": {
  839. "bamarni-bin": {
  840. "bin-links": true,
  841. "forward-command": false
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "GuzzleHttp\\Promise\\": "src/"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Graham Campbell",
  856. "email": "hello@gjcampbell.co.uk",
  857. "homepage": "https://github.com/GrahamCampbell"
  858. },
  859. {
  860. "name": "Michael Dowling",
  861. "email": "mtdowling@gmail.com",
  862. "homepage": "https://github.com/mtdowling"
  863. },
  864. {
  865. "name": "Tobias Nyholm",
  866. "email": "tobias.nyholm@gmail.com",
  867. "homepage": "https://github.com/Nyholm"
  868. },
  869. {
  870. "name": "Tobias Schultze",
  871. "email": "webmaster@tubo-world.de",
  872. "homepage": "https://github.com/Tobion"
  873. }
  874. ],
  875. "description": "Guzzle promises library",
  876. "keywords": [
  877. "promise"
  878. ],
  879. "support": {
  880. "issues": "https://github.com/guzzle/promises/issues",
  881. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  882. },
  883. "funding": [
  884. {
  885. "url": "https://github.com/GrahamCampbell",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://github.com/Nyholm",
  890. "type": "github"
  891. },
  892. {
  893. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  894. "type": "tidelift"
  895. }
  896. ],
  897. "time": "2025-03-27T13:27:01+00:00"
  898. },
  899. {
  900. "name": "guzzlehttp/psr7",
  901. "version": "2.7.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/guzzle/psr7.git",
  905. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  910. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "php": "^7.2.5 || ^8.0",
  921. "psr/http-factory": "^1.0",
  922. "psr/http-message": "^1.1 || ^2.0",
  923. "ralouphie/getallheaders": "^3.0"
  924. },
  925. "provide": {
  926. "psr/http-factory-implementation": "1.0",
  927. "psr/http-message-implementation": "1.0"
  928. },
  929. "require-dev": {
  930. "bamarni/composer-bin-plugin": "^1.8.2",
  931. "http-interop/http-factory-tests": "0.9.0",
  932. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  933. },
  934. "suggest": {
  935. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  936. },
  937. "type": "library",
  938. "extra": {
  939. "bamarni-bin": {
  940. "bin-links": true,
  941. "forward-command": false
  942. }
  943. },
  944. "autoload": {
  945. "psr-4": {
  946. "GuzzleHttp\\Psr7\\": "src/"
  947. }
  948. },
  949. "notification-url": "https://packagist.org/downloads/",
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "Graham Campbell",
  956. "email": "hello@gjcampbell.co.uk",
  957. "homepage": "https://github.com/GrahamCampbell"
  958. },
  959. {
  960. "name": "Michael Dowling",
  961. "email": "mtdowling@gmail.com",
  962. "homepage": "https://github.com/mtdowling"
  963. },
  964. {
  965. "name": "George Mponos",
  966. "email": "gmponos@gmail.com",
  967. "homepage": "https://github.com/gmponos"
  968. },
  969. {
  970. "name": "Tobias Nyholm",
  971. "email": "tobias.nyholm@gmail.com",
  972. "homepage": "https://github.com/Nyholm"
  973. },
  974. {
  975. "name": "Márk Sági-Kazár",
  976. "email": "mark.sagikazar@gmail.com",
  977. "homepage": "https://github.com/sagikazarmark"
  978. },
  979. {
  980. "name": "Tobias Schultze",
  981. "email": "webmaster@tubo-world.de",
  982. "homepage": "https://github.com/Tobion"
  983. },
  984. {
  985. "name": "Márk Sági-Kazár",
  986. "email": "mark.sagikazar@gmail.com",
  987. "homepage": "https://sagikazarmark.hu"
  988. }
  989. ],
  990. "description": "PSR-7 message implementation that also provides common utility methods",
  991. "keywords": [
  992. "http",
  993. "message",
  994. "psr-7",
  995. "request",
  996. "response",
  997. "stream",
  998. "uri",
  999. "url"
  1000. ],
  1001. "support": {
  1002. "issues": "https://github.com/guzzle/psr7/issues",
  1003. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1004. },
  1005. "funding": [
  1006. {
  1007. "url": "https://github.com/GrahamCampbell",
  1008. "type": "github"
  1009. },
  1010. {
  1011. "url": "https://github.com/Nyholm",
  1012. "type": "github"
  1013. },
  1014. {
  1015. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1016. "type": "tidelift"
  1017. }
  1018. ],
  1019. "time": "2025-03-27T12:30:47+00:00"
  1020. },
  1021. {
  1022. "name": "hyperf/cache",
  1023. "version": "v3.1.43",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/hyperf/cache.git",
  1027. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1032. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1033. "shasum": "",
  1034. "mirrors": [
  1035. {
  1036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1037. "preferred": true
  1038. }
  1039. ]
  1040. },
  1041. "require": {
  1042. "hyperf/codec": "~3.1.0",
  1043. "hyperf/collection": "~3.1.0",
  1044. "hyperf/contract": "~3.1.0",
  1045. "hyperf/support": "~3.1.0",
  1046. "hyperf/utils": "~3.1.0",
  1047. "php": ">=8.1",
  1048. "psr/container": "^1.0 || ^2.0",
  1049. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1050. },
  1051. "suggest": {
  1052. "hyperf/di": "Use cache annotations.",
  1053. "hyperf/event": "Use listener to delete annotation cache."
  1054. },
  1055. "type": "library",
  1056. "extra": {
  1057. "hyperf": {
  1058. "config": "Hyperf\\Cache\\ConfigProvider"
  1059. },
  1060. "branch-alias": {
  1061. "dev-master": "3.1-dev"
  1062. }
  1063. },
  1064. "autoload": {
  1065. "psr-4": {
  1066. "Hyperf\\Cache\\": "src/"
  1067. }
  1068. },
  1069. "notification-url": "https://packagist.org/downloads/",
  1070. "license": [
  1071. "MIT"
  1072. ],
  1073. "description": "A cache component for hyperf.",
  1074. "homepage": "https://hyperf.io",
  1075. "keywords": [
  1076. "cache",
  1077. "hyperf",
  1078. "php"
  1079. ],
  1080. "support": {
  1081. "docs": "https://hyperf.wiki",
  1082. "issues": "https://github.com/hyperf/hyperf/issues",
  1083. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1084. "source": "https://github.com/hyperf/hyperf"
  1085. },
  1086. "funding": [
  1087. {
  1088. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1089. "type": "custom"
  1090. },
  1091. {
  1092. "url": "https://opencollective.com/hyperf",
  1093. "type": "open_collective"
  1094. }
  1095. ],
  1096. "time": "2024-10-09T10:22:39+00:00"
  1097. },
  1098. {
  1099. "name": "hyperf/code-parser",
  1100. "version": "v3.1.52",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/hyperf/code-parser.git",
  1104. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1109. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1110. "shasum": "",
  1111. "mirrors": [
  1112. {
  1113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1114. "preferred": true
  1115. }
  1116. ]
  1117. },
  1118. "require": {
  1119. "hyperf/collection": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "php": ">=8.1"
  1123. },
  1124. "suggest": {
  1125. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1126. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "branch-alias": {
  1131. "dev-master": "3.1-dev"
  1132. }
  1133. },
  1134. "autoload": {
  1135. "psr-4": {
  1136. "Hyperf\\CodeParser\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "description": "A code parser component for Hyperf.",
  1144. "homepage": "https://hyperf.io",
  1145. "keywords": [
  1146. "code-parser",
  1147. "hyperf",
  1148. "php",
  1149. "swoole"
  1150. ],
  1151. "support": {
  1152. "docs": "https://hyperf.wiki",
  1153. "issues": "https://github.com/hyperf/hyperf/issues",
  1154. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1155. "source": "https://github.com/hyperf/hyperf"
  1156. },
  1157. "funding": [
  1158. {
  1159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1160. "type": "custom"
  1161. },
  1162. {
  1163. "url": "https://opencollective.com/hyperf",
  1164. "type": "open_collective"
  1165. }
  1166. ],
  1167. "time": "2025-02-27T07:40:13+00:00"
  1168. },
  1169. {
  1170. "name": "hyperf/codec",
  1171. "version": "v3.1.42",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/hyperf/codec.git",
  1175. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1180. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1181. "shasum": "",
  1182. "mirrors": [
  1183. {
  1184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1185. "preferred": true
  1186. }
  1187. ]
  1188. },
  1189. "require": {
  1190. "ext-json": "*",
  1191. "ext-xml": "*",
  1192. "hyperf/contract": "~3.1.0",
  1193. "php": ">=8.1"
  1194. },
  1195. "suggest": {
  1196. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1197. },
  1198. "type": "library",
  1199. "extra": {
  1200. "branch-alias": {
  1201. "dev-master": "3.1-dev"
  1202. }
  1203. },
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Hyperf\\Codec\\": "src/"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "description": "A codec component for Hyperf.",
  1214. "homepage": "https://hyperf.io",
  1215. "keywords": [
  1216. "codec",
  1217. "hyperf",
  1218. "php",
  1219. "swoole"
  1220. ],
  1221. "support": {
  1222. "docs": "https://hyperf.wiki",
  1223. "issues": "https://github.com/hyperf/hyperf/issues",
  1224. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1225. "source": "https://github.com/hyperf/hyperf"
  1226. },
  1227. "funding": [
  1228. {
  1229. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1230. "type": "custom"
  1231. },
  1232. {
  1233. "url": "https://opencollective.com/hyperf",
  1234. "type": "open_collective"
  1235. }
  1236. ],
  1237. "time": "2024-09-25T02:54:12+00:00"
  1238. },
  1239. {
  1240. "name": "hyperf/collection",
  1241. "version": "v3.1.52",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/hyperf/collection.git",
  1245. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1250. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1251. "shasum": "",
  1252. "mirrors": [
  1253. {
  1254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1255. "preferred": true
  1256. }
  1257. ]
  1258. },
  1259. "require": {
  1260. "hyperf/conditionable": "~3.1.0",
  1261. "hyperf/contract": "~3.1.0",
  1262. "hyperf/macroable": "~3.1.0",
  1263. "hyperf/stringable": "~3.1.0",
  1264. "php": ">=8.1"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "3.1-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "files": [
  1274. "src/Functions.php"
  1275. ],
  1276. "psr-4": {
  1277. "Hyperf\\Collection\\": "src/"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "description": "Hyperf Collection package which come from illuminate/collections",
  1285. "homepage": "https://hyperf.io",
  1286. "keywords": [
  1287. "collection",
  1288. "hyperf",
  1289. "php",
  1290. "swoole"
  1291. ],
  1292. "support": {
  1293. "docs": "https://hyperf.wiki",
  1294. "issues": "https://github.com/hyperf/hyperf/issues",
  1295. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1296. "source": "https://github.com/hyperf/hyperf"
  1297. },
  1298. "funding": [
  1299. {
  1300. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1301. "type": "custom"
  1302. },
  1303. {
  1304. "url": "https://opencollective.com/hyperf",
  1305. "type": "open_collective"
  1306. }
  1307. ],
  1308. "time": "2025-02-17T03:58:59+00:00"
  1309. },
  1310. {
  1311. "name": "hyperf/command",
  1312. "version": "v3.1.51",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/hyperf/command.git",
  1316. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1321. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1322. "shasum": "",
  1323. "mirrors": [
  1324. {
  1325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1326. "preferred": true
  1327. }
  1328. ]
  1329. },
  1330. "require": {
  1331. "hyperf/collection": "~3.1.0",
  1332. "hyperf/context": "~3.1.0",
  1333. "hyperf/contract": "~3.1.0",
  1334. "hyperf/coroutine": "~3.1.0",
  1335. "hyperf/di": "~3.1.0",
  1336. "hyperf/stringable": "~3.1.0",
  1337. "hyperf/support": "~3.1.0",
  1338. "hyperf/tappable": "~3.1.0",
  1339. "php": ">=8.1",
  1340. "psr/event-dispatcher": "^1.0",
  1341. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1342. },
  1343. "suggest": {
  1344. "hyperf/di": "Required to use annotations.",
  1345. "hyperf/event": "Required to use listeners."
  1346. },
  1347. "type": "library",
  1348. "extra": {
  1349. "hyperf": {
  1350. "config": "Hyperf\\Command\\ConfigProvider"
  1351. },
  1352. "branch-alias": {
  1353. "dev-master": "3.1-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Hyperf\\Command\\": "src/"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "Command for hyperf",
  1366. "keywords": [
  1367. "command",
  1368. "php",
  1369. "swoole"
  1370. ],
  1371. "support": {
  1372. "issues": "https://github.com/hyperf/command/issues",
  1373. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1374. },
  1375. "funding": [
  1376. {
  1377. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1378. "type": "custom"
  1379. },
  1380. {
  1381. "url": "https://opencollective.com/hyperf",
  1382. "type": "open_collective"
  1383. }
  1384. ],
  1385. "time": "2025-02-06T03:40:37+00:00"
  1386. },
  1387. {
  1388. "name": "hyperf/conditionable",
  1389. "version": "v3.1.42",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/hyperf/conditionable.git",
  1393. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1398. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1399. "shasum": "",
  1400. "mirrors": [
  1401. {
  1402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1403. "preferred": true
  1404. }
  1405. ]
  1406. },
  1407. "require": {
  1408. "php": ">=8.1"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "3.1-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Hyperf\\Conditionable\\": "src/"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1426. "homepage": "https://hyperf.io",
  1427. "keywords": [
  1428. "conditionable",
  1429. "hyperf",
  1430. "php",
  1431. "swoole"
  1432. ],
  1433. "support": {
  1434. "docs": "https://hyperf.wiki",
  1435. "issues": "https://github.com/hyperf/hyperf/issues",
  1436. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1437. "source": "https://github.com/hyperf/hyperf"
  1438. },
  1439. "funding": [
  1440. {
  1441. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1442. "type": "custom"
  1443. },
  1444. {
  1445. "url": "https://opencollective.com/hyperf",
  1446. "type": "open_collective"
  1447. }
  1448. ],
  1449. "time": "2024-09-25T02:54:12+00:00"
  1450. },
  1451. {
  1452. "name": "hyperf/config",
  1453. "version": "v3.1.42",
  1454. "source": {
  1455. "type": "git",
  1456. "url": "https://github.com/hyperf/config.git",
  1457. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1458. },
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1462. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1463. "shasum": "",
  1464. "mirrors": [
  1465. {
  1466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1467. "preferred": true
  1468. }
  1469. ]
  1470. },
  1471. "require": {
  1472. "hyperf/collection": "~3.1.0",
  1473. "hyperf/contract": "~3.1.0",
  1474. "hyperf/support": "~3.1.0",
  1475. "php": ">=8.1",
  1476. "psr/container": "^1.0 || ^2.0",
  1477. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1478. },
  1479. "suggest": {
  1480. "hyperf/context": "Required to use config()",
  1481. "hyperf/di": "Allows using @Value annotation",
  1482. "hyperf/event": "Allows using @Value annotation",
  1483. "hyperf/framework": "Allows using @Value annotation",
  1484. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1485. },
  1486. "type": "library",
  1487. "extra": {
  1488. "hyperf": {
  1489. "config": "Hyperf\\Config\\ConfigProvider"
  1490. },
  1491. "branch-alias": {
  1492. "dev-master": "3.1-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "files": [
  1497. "./src/Functions.php"
  1498. ],
  1499. "psr-4": {
  1500. "Hyperf\\Config\\": "src/"
  1501. }
  1502. },
  1503. "notification-url": "https://packagist.org/downloads/",
  1504. "license": [
  1505. "MIT"
  1506. ],
  1507. "description": "An independent component that provides configuration container.",
  1508. "homepage": "https://hyperf.io",
  1509. "keywords": [
  1510. "config",
  1511. "configuration",
  1512. "hyperf",
  1513. "php",
  1514. "swoole"
  1515. ],
  1516. "support": {
  1517. "docs": "https://hyperf.wiki",
  1518. "issues": "https://github.com/hyperf/hyperf/issues",
  1519. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1520. "source": "https://github.com/hyperf/hyperf"
  1521. },
  1522. "funding": [
  1523. {
  1524. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://opencollective.com/hyperf",
  1529. "type": "open_collective"
  1530. }
  1531. ],
  1532. "time": "2024-09-25T02:54:12+00:00"
  1533. },
  1534. {
  1535. "name": "hyperf/config-center",
  1536. "version": "v3.1.42",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/hyperf/config-center.git",
  1540. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1545. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1546. "shasum": "",
  1547. "mirrors": [
  1548. {
  1549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1550. "preferred": true
  1551. }
  1552. ]
  1553. },
  1554. "require": {
  1555. "hyperf/support": "~3.1.0",
  1556. "php": ">=8.1"
  1557. },
  1558. "suggest": {
  1559. "hyperf/process": "^2.1"
  1560. },
  1561. "type": "library",
  1562. "extra": {
  1563. "hyperf": {
  1564. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1565. },
  1566. "branch-alias": {
  1567. "dev-master": "3.1-dev"
  1568. }
  1569. },
  1570. "autoload": {
  1571. "psr-4": {
  1572. "Hyperf\\ConfigCenter\\": "src/"
  1573. }
  1574. },
  1575. "notification-url": "https://packagist.org/downloads/",
  1576. "license": [
  1577. "MIT"
  1578. ],
  1579. "description": "The abstraction component of config center",
  1580. "homepage": "https://hyperf.io",
  1581. "keywords": [
  1582. "config-center",
  1583. "hyperf",
  1584. "php"
  1585. ],
  1586. "support": {
  1587. "docs": "https://hyperf.wiki",
  1588. "issues": "https://github.com/hyperf/hyperf/issues",
  1589. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1590. "source": "https://github.com/hyperf/hyperf"
  1591. },
  1592. "funding": [
  1593. {
  1594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1595. "type": "custom"
  1596. },
  1597. {
  1598. "url": "https://opencollective.com/hyperf",
  1599. "type": "open_collective"
  1600. }
  1601. ],
  1602. "time": "2024-09-25T02:54:12+00:00"
  1603. },
  1604. {
  1605. "name": "hyperf/config-nacos",
  1606. "version": "v3.1.42",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/hyperf/config-nacos.git",
  1610. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1615. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1616. "shasum": "",
  1617. "mirrors": [
  1618. {
  1619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1620. "preferred": true
  1621. }
  1622. ]
  1623. },
  1624. "require": {
  1625. "hyperf/codec": "~3.1.0",
  1626. "hyperf/config-center": "~3.1.0",
  1627. "hyperf/contract": "~3.1.0",
  1628. "hyperf/guzzle": "~3.1.0",
  1629. "hyperf/nacos": "~3.1.0",
  1630. "hyperf/support": "~3.1.0",
  1631. "hyperf/utils": "~3.1.0",
  1632. "jetbrains/phpstorm-attributes": "^1.0",
  1633. "php": ">=8.1"
  1634. },
  1635. "suggest": {
  1636. "ext-json": "*",
  1637. "ext-simplexml": "*",
  1638. "ext-yaml": "*",
  1639. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1640. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1641. "hyperf/process": "Required to use processes. (~2.2.0)"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "hyperf": {
  1646. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1647. },
  1648. "branch-alias": {
  1649. "dev-master": "3.1-dev"
  1650. }
  1651. },
  1652. "autoload": {
  1653. "psr-4": {
  1654. "Hyperf\\ConfigNacos\\": "src/"
  1655. }
  1656. },
  1657. "notification-url": "https://packagist.org/downloads/",
  1658. "license": [
  1659. "MIT"
  1660. ],
  1661. "description": "A nacos adapter for config center component.",
  1662. "homepage": "https://hyperf.io",
  1663. "keywords": [
  1664. "hyperf",
  1665. "nacos",
  1666. "php",
  1667. "swoole"
  1668. ],
  1669. "support": {
  1670. "docs": "https://hyperf.wiki",
  1671. "issues": "https://github.com/hyperf/hyperf/issues",
  1672. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1673. "source": "https://github.com/hyperf/hyperf"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://opencollective.com/hyperf",
  1682. "type": "open_collective"
  1683. }
  1684. ],
  1685. "time": "2024-09-25T02:54:12+00:00"
  1686. },
  1687. {
  1688. "name": "hyperf/constants",
  1689. "version": "v3.1.42",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/hyperf/constants.git",
  1693. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1698. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1699. "shasum": "",
  1700. "mirrors": [
  1701. {
  1702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1703. "preferred": true
  1704. }
  1705. ]
  1706. },
  1707. "require": {
  1708. "hyperf/di": "~3.1.0",
  1709. "hyperf/support": "~3.1.0",
  1710. "hyperf/utils": "~3.1.0",
  1711. "php": ">=8.1"
  1712. },
  1713. "suggest": {
  1714. "hyperf/translation": "Required to use translation."
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "hyperf": {
  1719. "config": "Hyperf\\Constants\\ConfigProvider"
  1720. },
  1721. "branch-alias": {
  1722. "dev-master": "3.1-dev"
  1723. }
  1724. },
  1725. "autoload": {
  1726. "psr-4": {
  1727. "Hyperf\\Constants\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "A constants component for hyperf.",
  1735. "homepage": "https://hyperf.io",
  1736. "keywords": [
  1737. "constants",
  1738. "hyperf",
  1739. "php"
  1740. ],
  1741. "support": {
  1742. "docs": "https://hyperf.wiki",
  1743. "issues": "https://github.com/hyperf/hyperf/issues",
  1744. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1745. "source": "https://github.com/hyperf/hyperf"
  1746. },
  1747. "funding": [
  1748. {
  1749. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1750. "type": "custom"
  1751. },
  1752. {
  1753. "url": "https://opencollective.com/hyperf",
  1754. "type": "open_collective"
  1755. }
  1756. ],
  1757. "time": "2024-09-25T02:54:12+00:00"
  1758. },
  1759. {
  1760. "name": "hyperf/consul",
  1761. "version": "v3.1.42",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/hyperf/consul.git",
  1765. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1770. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1771. "shasum": "",
  1772. "mirrors": [
  1773. {
  1774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1775. "preferred": true
  1776. }
  1777. ]
  1778. },
  1779. "require": {
  1780. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1781. "php": ">=8.1"
  1782. },
  1783. "type": "library",
  1784. "extra": {
  1785. "hyperf": {
  1786. "config": "Hyperf\\Consul\\ConfigProvider"
  1787. },
  1788. "branch-alias": {
  1789. "dev-master": "3.1-dev"
  1790. }
  1791. },
  1792. "autoload": {
  1793. "psr-4": {
  1794. "Hyperf\\Consul\\": "src/"
  1795. }
  1796. },
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "MIT"
  1800. ],
  1801. "description": "A Consul Client for Hyperf.",
  1802. "homepage": "https://hyperf.io",
  1803. "keywords": [
  1804. "consul",
  1805. "consul-client",
  1806. "hyperf",
  1807. "php",
  1808. "swoole"
  1809. ],
  1810. "support": {
  1811. "docs": "https://hyperf.wiki",
  1812. "issues": "https://github.com/hyperf/hyperf/issues",
  1813. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1814. "source": "https://github.com/hyperf/hyperf"
  1815. },
  1816. "funding": [
  1817. {
  1818. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1819. "type": "custom"
  1820. },
  1821. {
  1822. "url": "https://opencollective.com/hyperf",
  1823. "type": "open_collective"
  1824. }
  1825. ],
  1826. "time": "2024-09-25T02:54:12+00:00"
  1827. },
  1828. {
  1829. "name": "hyperf/context",
  1830. "version": "v3.1.42",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/hyperf/context.git",
  1834. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1839. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1840. "shasum": "",
  1841. "mirrors": [
  1842. {
  1843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1844. "preferred": true
  1845. }
  1846. ]
  1847. },
  1848. "require": {
  1849. "hyperf/engine": "^2.0",
  1850. "php": ">=8.1"
  1851. },
  1852. "suggest": {
  1853. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "3.1-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Hyperf\\Context\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "A coroutine/application context library.",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "Context",
  1874. "hyperf",
  1875. "php",
  1876. "swoole"
  1877. ],
  1878. "support": {
  1879. "docs": "https://hyperf.wiki",
  1880. "issues": "https://github.com/hyperf/hyperf/issues",
  1881. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1882. "source": "https://github.com/hyperf/hyperf"
  1883. },
  1884. "funding": [
  1885. {
  1886. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://opencollective.com/hyperf",
  1891. "type": "open_collective"
  1892. }
  1893. ],
  1894. "time": "2024-09-25T02:54:12+00:00"
  1895. },
  1896. {
  1897. "name": "hyperf/contract",
  1898. "version": "v3.1.42",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/hyperf/contract.git",
  1902. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1907. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1908. "shasum": "",
  1909. "mirrors": [
  1910. {
  1911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1912. "preferred": true
  1913. }
  1914. ]
  1915. },
  1916. "require": {
  1917. "php": ">=8.1"
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "branch-alias": {
  1922. "dev-master": "3.1-dev"
  1923. }
  1924. },
  1925. "autoload": {
  1926. "psr-4": {
  1927. "Hyperf\\Contract\\": "src/"
  1928. }
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "description": "The contracts of Hyperf.",
  1935. "homepage": "https://hyperf.io",
  1936. "keywords": [
  1937. "hyperf",
  1938. "php",
  1939. "swoole"
  1940. ],
  1941. "support": {
  1942. "docs": "https://hyperf.wiki",
  1943. "issues": "https://github.com/hyperf/hyperf/issues",
  1944. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1945. "source": "https://github.com/hyperf/hyperf"
  1946. },
  1947. "funding": [
  1948. {
  1949. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1950. "type": "custom"
  1951. },
  1952. {
  1953. "url": "https://opencollective.com/hyperf",
  1954. "type": "open_collective"
  1955. }
  1956. ],
  1957. "time": "2024-09-25T02:54:12+00:00"
  1958. },
  1959. {
  1960. "name": "hyperf/coordinator",
  1961. "version": "v3.1.42",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/hyperf/coordinator.git",
  1965. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1970. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1971. "shasum": "",
  1972. "mirrors": [
  1973. {
  1974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1975. "preferred": true
  1976. }
  1977. ]
  1978. },
  1979. "require": {
  1980. "hyperf/engine": "^2.0",
  1981. "php": ">=8.1"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "3.1-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "files": [
  1991. "src/Functions.php"
  1992. ],
  1993. "psr-4": {
  1994. "Hyperf\\Coordinator\\": "src/"
  1995. }
  1996. },
  1997. "notification-url": "https://packagist.org/downloads/",
  1998. "license": [
  1999. "MIT"
  2000. ],
  2001. "description": "Hyperf Coordinator",
  2002. "homepage": "https://hyperf.io",
  2003. "keywords": [
  2004. "Coordinator",
  2005. "hyperf",
  2006. "php",
  2007. "swoole"
  2008. ],
  2009. "support": {
  2010. "docs": "https://hyperf.wiki",
  2011. "issues": "https://github.com/hyperf/hyperf/issues",
  2012. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2013. "source": "https://github.com/hyperf/hyperf"
  2014. },
  2015. "funding": [
  2016. {
  2017. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2018. "type": "custom"
  2019. },
  2020. {
  2021. "url": "https://opencollective.com/hyperf",
  2022. "type": "open_collective"
  2023. }
  2024. ],
  2025. "time": "2024-09-25T02:54:12+00:00"
  2026. },
  2027. {
  2028. "name": "hyperf/coroutine",
  2029. "version": "v3.1.52",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/hyperf/coroutine.git",
  2033. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  2038. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  2039. "shasum": "",
  2040. "mirrors": [
  2041. {
  2042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2043. "preferred": true
  2044. }
  2045. ]
  2046. },
  2047. "require": {
  2048. "hyperf/context": "~3.1.0",
  2049. "hyperf/contract": "~3.1.0",
  2050. "hyperf/engine": "^2.13.0",
  2051. "php": ">=8.1"
  2052. },
  2053. "type": "library",
  2054. "extra": {
  2055. "branch-alias": {
  2056. "dev-master": "3.1-dev"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "files": [
  2061. "src/Functions.php"
  2062. ],
  2063. "psr-4": {
  2064. "Hyperf\\Coroutine\\": "src/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "description": "Hyperf Coroutine",
  2072. "homepage": "https://hyperf.io",
  2073. "keywords": [
  2074. "coroutine",
  2075. "hyperf",
  2076. "php",
  2077. "swoole"
  2078. ],
  2079. "support": {
  2080. "docs": "https://hyperf.wiki",
  2081. "issues": "https://github.com/hyperf/hyperf/issues",
  2082. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2083. "source": "https://github.com/hyperf/hyperf"
  2084. },
  2085. "funding": [
  2086. {
  2087. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2088. "type": "custom"
  2089. },
  2090. {
  2091. "url": "https://opencollective.com/hyperf",
  2092. "type": "open_collective"
  2093. }
  2094. ],
  2095. "time": "2025-02-08T03:41:26+00:00"
  2096. },
  2097. {
  2098. "name": "hyperf/database",
  2099. "version": "v3.1.53",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/hyperf/database.git",
  2103. "reference": "50f79d0bf6007f1c7ef63215426bb2f9cae83aa5"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/hyperf/database/zipball/50f79d0bf6007f1c7ef63215426bb2f9cae83aa5",
  2108. "reference": "50f79d0bf6007f1c7ef63215426bb2f9cae83aa5",
  2109. "shasum": "",
  2110. "mirrors": [
  2111. {
  2112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2113. "preferred": true
  2114. }
  2115. ]
  2116. },
  2117. "require": {
  2118. "hyperf/code-parser": "~3.1.0",
  2119. "hyperf/collection": "~3.1.23",
  2120. "hyperf/conditionable": "~3.1.0",
  2121. "hyperf/macroable": "~3.1.0",
  2122. "hyperf/support": "~3.1.0",
  2123. "hyperf/tappable": "~3.1.0",
  2124. "hyperf/utils": "~3.1.0",
  2125. "nesbot/carbon": "^2.0",
  2126. "php": ">=8.1",
  2127. "psr/container": "^1.0 || ^2.0",
  2128. "psr/event-dispatcher": "^1.0"
  2129. },
  2130. "suggest": {
  2131. "doctrine/dbal": "Required to rename columns (^3.0).",
  2132. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2133. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2134. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "3.1-dev"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Hyperf\\Database\\": "src/"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "description": "A flexible database library.",
  2152. "homepage": "https://hyperf.io",
  2153. "keywords": [
  2154. "database",
  2155. "hyperf",
  2156. "php"
  2157. ],
  2158. "support": {
  2159. "docs": "https://hyperf.wiki",
  2160. "issues": "https://github.com/hyperf/hyperf/issues",
  2161. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2162. "source": "https://github.com/hyperf/hyperf"
  2163. },
  2164. "funding": [
  2165. {
  2166. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2167. "type": "custom"
  2168. },
  2169. {
  2170. "url": "https://opencollective.com/hyperf",
  2171. "type": "open_collective"
  2172. }
  2173. ],
  2174. "time": "2025-04-01T09:46:46+00:00"
  2175. },
  2176. {
  2177. "name": "hyperf/db-connection",
  2178. "version": "v3.1.44",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://github.com/hyperf/db-connection.git",
  2182. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2187. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2188. "shasum": "",
  2189. "mirrors": [
  2190. {
  2191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2192. "preferred": true
  2193. }
  2194. ]
  2195. },
  2196. "require": {
  2197. "hyperf/database": "~3.1.0",
  2198. "hyperf/di": "~3.1.0",
  2199. "hyperf/framework": "~3.1.0",
  2200. "hyperf/model-listener": "~3.1.0",
  2201. "hyperf/pool": "~3.1.0",
  2202. "hyperf/support": "~3.1.0",
  2203. "hyperf/utils": "~3.1.0",
  2204. "php": ">=8.1",
  2205. "psr/container": "^1.0 || ^2.0"
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "hyperf": {
  2210. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2211. },
  2212. "branch-alias": {
  2213. "dev-master": "3.1-dev"
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Hyperf\\DbConnection\\": "src/"
  2219. }
  2220. },
  2221. "notification-url": "https://packagist.org/downloads/",
  2222. "license": [
  2223. "MIT"
  2224. ],
  2225. "description": "A hyperf db connection handler for hyperf/database.",
  2226. "homepage": "https://hyperf.io",
  2227. "keywords": [
  2228. "Connection",
  2229. "database",
  2230. "hyperf",
  2231. "php"
  2232. ],
  2233. "support": {
  2234. "docs": "https://hyperf.wiki",
  2235. "issues": "https://github.com/hyperf/hyperf/issues",
  2236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2237. "source": "https://github.com/hyperf/hyperf"
  2238. },
  2239. "funding": [
  2240. {
  2241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2242. "type": "custom"
  2243. },
  2244. {
  2245. "url": "https://opencollective.com/hyperf",
  2246. "type": "open_collective"
  2247. }
  2248. ],
  2249. "time": "2024-10-11T08:58:16+00:00"
  2250. },
  2251. {
  2252. "name": "hyperf/di",
  2253. "version": "v3.1.53",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/hyperf/di.git",
  2257. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  2262. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  2263. "shasum": "",
  2264. "mirrors": [
  2265. {
  2266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2267. "preferred": true
  2268. }
  2269. ]
  2270. },
  2271. "require": {
  2272. "doctrine/instantiator": "^1.0",
  2273. "hyperf/code-parser": "~3.1.0",
  2274. "hyperf/pipeline": "~3.1.0",
  2275. "hyperf/stdlib": "~3.1.0",
  2276. "hyperf/support": "~3.1.0",
  2277. "nikic/php-parser": "^4.1",
  2278. "php": ">=8.1",
  2279. "php-di/phpdoc-reader": "^2.2",
  2280. "psr/container": "^1.0 || ^2.0",
  2281. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2282. "vlucas/phpdotenv": "^5.0"
  2283. },
  2284. "suggest": {
  2285. "ext-pcntl": "Required to scan annotations.",
  2286. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2287. },
  2288. "type": "library",
  2289. "extra": {
  2290. "hyperf": {
  2291. "config": "Hyperf\\Di\\ConfigProvider"
  2292. },
  2293. "branch-alias": {
  2294. "dev-master": "3.1-dev"
  2295. }
  2296. },
  2297. "autoload": {
  2298. "psr-4": {
  2299. "Hyperf\\Di\\": "src/"
  2300. }
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "description": "A DI for Hyperf.",
  2307. "homepage": "https://hyperf.io",
  2308. "keywords": [
  2309. "annotation",
  2310. "di",
  2311. "hyperf",
  2312. "php",
  2313. "swoole"
  2314. ],
  2315. "support": {
  2316. "docs": "https://hyperf.wiki",
  2317. "issues": "https://github.com/hyperf/hyperf/issues",
  2318. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2319. "source": "https://github.com/hyperf/hyperf"
  2320. },
  2321. "funding": [
  2322. {
  2323. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2324. "type": "custom"
  2325. },
  2326. {
  2327. "url": "https://opencollective.com/hyperf",
  2328. "type": "open_collective"
  2329. }
  2330. ],
  2331. "time": "2025-04-03T08:36:04+00:00"
  2332. },
  2333. {
  2334. "name": "hyperf/dispatcher",
  2335. "version": "v3.1.42",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/hyperf/dispatcher.git",
  2339. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2344. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2345. "shasum": "",
  2346. "mirrors": [
  2347. {
  2348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2349. "preferred": true
  2350. }
  2351. ]
  2352. },
  2353. "require": {
  2354. "hyperf/contract": "~3.1.0",
  2355. "php": ">=8.1",
  2356. "psr/container": "^1.0 || ^2.0",
  2357. "psr/http-message": "^1.0 || ^2.0",
  2358. "psr/http-server-middleware": "^1.0"
  2359. },
  2360. "type": "library",
  2361. "extra": {
  2362. "hyperf": {
  2363. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2364. },
  2365. "branch-alias": {
  2366. "dev-master": "3.1-dev"
  2367. }
  2368. },
  2369. "autoload": {
  2370. "psr-4": {
  2371. "Hyperf\\Dispatcher\\": "src/"
  2372. }
  2373. },
  2374. "notification-url": "https://packagist.org/downloads/",
  2375. "license": [
  2376. "MIT"
  2377. ],
  2378. "description": "A HTTP Server for Hyperf.",
  2379. "homepage": "https://hyperf.io",
  2380. "keywords": [
  2381. "dispatcher",
  2382. "filter",
  2383. "hyperf",
  2384. "middleware",
  2385. "php",
  2386. "swoole"
  2387. ],
  2388. "support": {
  2389. "docs": "https://hyperf.wiki",
  2390. "issues": "https://github.com/hyperf/hyperf/issues",
  2391. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2392. "source": "https://github.com/hyperf/hyperf"
  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-09-25T02:54:12+00:00"
  2405. },
  2406. {
  2407. "name": "hyperf/engine",
  2408. "version": "v2.14.0",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/hyperf/engine.git",
  2412. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  2417. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  2418. "shasum": "",
  2419. "mirrors": [
  2420. {
  2421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2422. "preferred": true
  2423. }
  2424. ]
  2425. },
  2426. "require": {
  2427. "hyperf/engine-contract": "~1.13.0",
  2428. "php": ">=8.0"
  2429. },
  2430. "conflict": {
  2431. "ext-swoole": "<5.0"
  2432. },
  2433. "require-dev": {
  2434. "friendsofphp/php-cs-fixer": "^3.0",
  2435. "hyperf/guzzle": "^3.0",
  2436. "hyperf/http-message": "^3.0",
  2437. "mockery/mockery": "^1.5",
  2438. "phpstan/phpstan": "^1.0",
  2439. "phpunit/phpunit": "^9.4",
  2440. "swoole/ide-helper": "5.*"
  2441. },
  2442. "suggest": {
  2443. "ext-sockets": "*",
  2444. "ext-swoole": ">=5.0",
  2445. "hyperf/http-message": "Required to use ResponseEmitter.",
  2446. "psr/http-message": "Required to use WebSocket Frame."
  2447. },
  2448. "type": "library",
  2449. "extra": {
  2450. "hyperf": {
  2451. "config": "Hyperf\\Engine\\ConfigProvider"
  2452. },
  2453. "branch-alias": {
  2454. "dev-master": "2.14-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "files": [
  2459. "src/Functions.php"
  2460. ],
  2461. "psr-4": {
  2462. "Hyperf\\Engine\\": "src/"
  2463. }
  2464. },
  2465. "notification-url": "https://packagist.org/downloads/",
  2466. "license": [
  2467. "MIT"
  2468. ],
  2469. "description": "Coroutine engine provided by swoole.",
  2470. "keywords": [
  2471. "engine",
  2472. "hyperf",
  2473. "php",
  2474. "swoole"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/hyperf/engine/issues",
  2478. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  2479. },
  2480. "funding": [
  2481. {
  2482. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2483. "type": "custom"
  2484. },
  2485. {
  2486. "url": "https://opencollective.com/hyperf",
  2487. "type": "open_collective"
  2488. }
  2489. ],
  2490. "time": "2025-04-13T15:11:22+00:00"
  2491. },
  2492. {
  2493. "name": "hyperf/engine-contract",
  2494. "version": "v1.13.0",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/hyperf/engine-contract.git",
  2498. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2503. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2504. "shasum": "",
  2505. "mirrors": [
  2506. {
  2507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2508. "preferred": true
  2509. }
  2510. ]
  2511. },
  2512. "require": {
  2513. "php": ">=8.0"
  2514. },
  2515. "require-dev": {
  2516. "friendsofphp/php-cs-fixer": "^3.0",
  2517. "mockery/mockery": "^1.0",
  2518. "phpstan/phpstan": "^1.0",
  2519. "phpunit/phpunit": ">=7.0",
  2520. "psr/http-message": "^1.0",
  2521. "swoole/ide-helper": "^4.5"
  2522. },
  2523. "suggest": {
  2524. "psr/http-message": "Required to use WebSocket Frame."
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "branch-alias": {
  2529. "dev-master": "1.11-dev"
  2530. }
  2531. },
  2532. "autoload": {
  2533. "psr-4": {
  2534. "Hyperf\\Engine\\Contract\\": "src/"
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "MIT"
  2540. ],
  2541. "description": "Contract for Coroutine Engine",
  2542. "keywords": [
  2543. "contract",
  2544. "coroutine",
  2545. "engine",
  2546. "hyperf",
  2547. "php"
  2548. ],
  2549. "support": {
  2550. "issues": "https://github.com/hyperf/engine-contract/issues",
  2551. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  2552. },
  2553. "funding": [
  2554. {
  2555. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2556. "type": "custom"
  2557. },
  2558. {
  2559. "url": "https://opencollective.com/hyperf",
  2560. "type": "open_collective"
  2561. }
  2562. ],
  2563. "time": "2025-04-13T14:48:14+00:00"
  2564. },
  2565. {
  2566. "name": "hyperf/event",
  2567. "version": "v3.1.42",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/hyperf/event.git",
  2571. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2576. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2577. "shasum": "",
  2578. "mirrors": [
  2579. {
  2580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2581. "preferred": true
  2582. }
  2583. ]
  2584. },
  2585. "require": {
  2586. "hyperf/contract": "~3.1.0",
  2587. "hyperf/stdlib": "~3.1.0",
  2588. "php": ">=8.1",
  2589. "psr/event-dispatcher": "^1.0"
  2590. },
  2591. "suggest": {
  2592. "hyperf/di": "Required to use annotatioins."
  2593. },
  2594. "type": "library",
  2595. "extra": {
  2596. "hyperf": {
  2597. "config": "Hyperf\\Event\\ConfigProvider"
  2598. },
  2599. "branch-alias": {
  2600. "dev-master": "3.1-dev"
  2601. }
  2602. },
  2603. "autoload": {
  2604. "psr-4": {
  2605. "Hyperf\\Event\\": "src/"
  2606. }
  2607. },
  2608. "notification-url": "https://packagist.org/downloads/",
  2609. "license": [
  2610. "MIT"
  2611. ],
  2612. "description": "an event manager that implements PSR-14.",
  2613. "homepage": "https://hyperf.io",
  2614. "keywords": [
  2615. "event",
  2616. "hyperf",
  2617. "php",
  2618. "swoole"
  2619. ],
  2620. "support": {
  2621. "docs": "https://hyperf.wiki",
  2622. "issues": "https://github.com/hyperf/hyperf/issues",
  2623. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2624. "source": "https://github.com/hyperf/hyperf"
  2625. },
  2626. "funding": [
  2627. {
  2628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2629. "type": "custom"
  2630. },
  2631. {
  2632. "url": "https://opencollective.com/hyperf",
  2633. "type": "open_collective"
  2634. }
  2635. ],
  2636. "time": "2024-09-25T02:54:12+00:00"
  2637. },
  2638. {
  2639. "name": "hyperf/exception-handler",
  2640. "version": "v3.1.42",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/hyperf/exception-handler.git",
  2644. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2649. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2650. "shasum": "",
  2651. "mirrors": [
  2652. {
  2653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2654. "preferred": true
  2655. }
  2656. ]
  2657. },
  2658. "require": {
  2659. "hyperf/context": "~3.1.0",
  2660. "hyperf/contract": "~3.1.0",
  2661. "hyperf/dispatcher": "~3.1.0",
  2662. "hyperf/http-message": "~3.1.0",
  2663. "hyperf/stdlib": "~3.1.0",
  2664. "hyperf/support": "~3.1.0",
  2665. "php": ">=8.1",
  2666. "psr/container": "^1.0 || ^2.0",
  2667. "psr/http-message": "^1.0 || ^2.0",
  2668. "swow/psr7-plus": "^1.0"
  2669. },
  2670. "suggest": {
  2671. "hyperf/di": "Required to use #[ExceptionHandler]",
  2672. "hyperf/event": "Required to use listeners",
  2673. "hyperf/framework": "Required to use listeners",
  2674. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2675. },
  2676. "type": "library",
  2677. "extra": {
  2678. "hyperf": {
  2679. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2680. },
  2681. "branch-alias": {
  2682. "dev-master": "3.1-dev"
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Hyperf\\ExceptionHandler\\": "src/"
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "description": "Exception handler for hyperf",
  2695. "homepage": "https://hyperf.io",
  2696. "keywords": [
  2697. "exception-handler",
  2698. "php",
  2699. "swoole"
  2700. ],
  2701. "support": {
  2702. "docs": "https://hyperf.wiki",
  2703. "issues": "https://github.com/hyperf/hyperf/issues",
  2704. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2705. "source": "https://github.com/hyperf/hyperf"
  2706. },
  2707. "funding": [
  2708. {
  2709. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2710. "type": "custom"
  2711. },
  2712. {
  2713. "url": "https://opencollective.com/hyperf",
  2714. "type": "open_collective"
  2715. }
  2716. ],
  2717. "time": "2024-09-25T02:54:12+00:00"
  2718. },
  2719. {
  2720. "name": "hyperf/framework",
  2721. "version": "v3.1.42",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/hyperf/framework.git",
  2725. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2730. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "fig/http-message-util": "^1.1.2",
  2741. "hyperf/contract": "~3.1.0",
  2742. "hyperf/coordinator": "~3.1.0",
  2743. "hyperf/coroutine": "~3.1.0",
  2744. "php": ">=8.1",
  2745. "psr/container": "^1.0 || ^2.0",
  2746. "psr/event-dispatcher": "^1.0",
  2747. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2748. },
  2749. "suggest": {
  2750. "ext-swoole": "Required to use swoole engine.",
  2751. "hyperf/command": "Required to use Command annotation.",
  2752. "hyperf/di": "Required to use Command annotation.",
  2753. "hyperf/dispatcher": "Required to use BootApplication event.",
  2754. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2755. },
  2756. "type": "library",
  2757. "extra": {
  2758. "hyperf": {
  2759. "config": "Hyperf\\Framework\\ConfigProvider"
  2760. },
  2761. "branch-alias": {
  2762. "dev-master": "3.1-dev"
  2763. }
  2764. },
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Hyperf\\Framework\\": "src/"
  2768. }
  2769. },
  2770. "notification-url": "https://packagist.org/downloads/",
  2771. "license": [
  2772. "MIT"
  2773. ],
  2774. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2775. "homepage": "https://hyperf.io",
  2776. "keywords": [
  2777. "Microservice",
  2778. "framework",
  2779. "hyperf",
  2780. "middleware",
  2781. "php",
  2782. "swoole"
  2783. ],
  2784. "support": {
  2785. "docs": "https://hyperf.wiki",
  2786. "issues": "https://github.com/hyperf/hyperf/issues",
  2787. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2788. "source": "https://github.com/hyperf/hyperf"
  2789. },
  2790. "funding": [
  2791. {
  2792. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2793. "type": "custom"
  2794. },
  2795. {
  2796. "url": "https://opencollective.com/hyperf",
  2797. "type": "open_collective"
  2798. }
  2799. ],
  2800. "time": "2024-09-25T02:54:12+00:00"
  2801. },
  2802. {
  2803. "name": "hyperf/guzzle",
  2804. "version": "v3.1.42",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://github.com/hyperf/guzzle.git",
  2808. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2813. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2814. "shasum": "",
  2815. "mirrors": [
  2816. {
  2817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2818. "preferred": true
  2819. }
  2820. ]
  2821. },
  2822. "require": {
  2823. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2824. "php": ">=8.1",
  2825. "psr/container": "^1.0 || ^2.0",
  2826. "psr/http-message": "^1.0 || ^2.0"
  2827. },
  2828. "suggest": {
  2829. "ext-curl": "Required for CURL handler support",
  2830. "hyperf/pool": "Required to use pool handler."
  2831. },
  2832. "type": "library",
  2833. "extra": {
  2834. "hyperf": {
  2835. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2836. },
  2837. "branch-alias": {
  2838. "dev-master": "3.1-dev"
  2839. }
  2840. },
  2841. "autoload": {
  2842. "psr-4": {
  2843. "Hyperf\\Guzzle\\": "src/"
  2844. }
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "description": "Swoole coroutine handler for guzzle",
  2851. "keywords": [
  2852. "Guzzle",
  2853. "handler",
  2854. "php",
  2855. "swoole"
  2856. ],
  2857. "support": {
  2858. "issues": "https://github.com/hyperf/guzzle/issues",
  2859. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2860. },
  2861. "funding": [
  2862. {
  2863. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2864. "type": "custom"
  2865. },
  2866. {
  2867. "url": "https://opencollective.com/hyperf",
  2868. "type": "open_collective"
  2869. }
  2870. ],
  2871. "time": "2024-09-25T02:54:12+00:00"
  2872. },
  2873. {
  2874. "name": "hyperf/http-message",
  2875. "version": "v3.1.48",
  2876. "source": {
  2877. "type": "git",
  2878. "url": "https://github.com/hyperf/http-message.git",
  2879. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2880. },
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2884. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2885. "shasum": "",
  2886. "mirrors": [
  2887. {
  2888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2889. "preferred": true
  2890. }
  2891. ]
  2892. },
  2893. "require": {
  2894. "hyperf/codec": "~3.1.0",
  2895. "hyperf/engine": "^2.11",
  2896. "hyperf/support": "~3.1.0",
  2897. "laminas/laminas-mime": "^2.7",
  2898. "php": ">=8.1",
  2899. "psr/http-message": "^1.0 || ^2.0",
  2900. "swow/psr7-plus": "^1.0"
  2901. },
  2902. "suggest": {
  2903. "psr/container": "Required to replace RequestParserInterface."
  2904. },
  2905. "type": "library",
  2906. "extra": {
  2907. "hyperf": {
  2908. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2909. },
  2910. "branch-alias": {
  2911. "dev-master": "3.1-dev"
  2912. }
  2913. },
  2914. "autoload": {
  2915. "psr-4": {
  2916. "Hyperf\\HttpMessage\\": "src/"
  2917. }
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "description": "microservice framework base on swoole",
  2924. "keywords": [
  2925. "http-message",
  2926. "hyperf",
  2927. "php",
  2928. "swoole"
  2929. ],
  2930. "support": {
  2931. "issues": "https://github.com/hyperf/http-message/issues",
  2932. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2933. },
  2934. "funding": [
  2935. {
  2936. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2937. "type": "custom"
  2938. },
  2939. {
  2940. "url": "https://opencollective.com/hyperf",
  2941. "type": "open_collective"
  2942. }
  2943. ],
  2944. "time": "2024-12-05T02:41:08+00:00"
  2945. },
  2946. {
  2947. "name": "hyperf/http-server",
  2948. "version": "v3.1.55",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/hyperf/http-server.git",
  2952. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/hyperf/http-server/zipball/96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2957. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2958. "shasum": "",
  2959. "mirrors": [
  2960. {
  2961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2962. "preferred": true
  2963. }
  2964. ]
  2965. },
  2966. "require": {
  2967. "hyperf/codec": "~3.1.0",
  2968. "hyperf/collection": "~3.1.0",
  2969. "hyperf/context": "~3.1.0",
  2970. "hyperf/contract": "~3.1.0",
  2971. "hyperf/coroutine": "~3.1.0",
  2972. "hyperf/dispatcher": "~3.1.0",
  2973. "hyperf/event": "~3.1.0",
  2974. "hyperf/exception-handler": "~3.1.0",
  2975. "hyperf/http-message": "~3.1.0",
  2976. "hyperf/macroable": "~3.1.0",
  2977. "hyperf/serializer": "~3.1.0",
  2978. "hyperf/server": "~3.1.0",
  2979. "hyperf/stdlib": "~3.1.0",
  2980. "hyperf/support": "~3.1.0",
  2981. "nikic/fast-route": "^1.3",
  2982. "php": ">=8.1",
  2983. "psr/container": "^1.0 || ^2.0",
  2984. "swow/psr7-plus": "^1.0"
  2985. },
  2986. "suggest": {
  2987. "hyperf/di": "Required to use annotations."
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "hyperf": {
  2992. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2993. },
  2994. "branch-alias": {
  2995. "dev-master": "3.1-dev"
  2996. }
  2997. },
  2998. "autoload": {
  2999. "psr-4": {
  3000. "Hyperf\\HttpServer\\": "src/"
  3001. }
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "MIT"
  3006. ],
  3007. "description": "A HTTP Server for Hyperf.",
  3008. "homepage": "https://hyperf.io",
  3009. "keywords": [
  3010. "http",
  3011. "http-server",
  3012. "hyperf",
  3013. "php",
  3014. "swoole"
  3015. ],
  3016. "support": {
  3017. "docs": "https://hyperf.wiki",
  3018. "issues": "https://github.com/hyperf/hyperf/issues",
  3019. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3020. "source": "https://github.com/hyperf/hyperf"
  3021. },
  3022. "funding": [
  3023. {
  3024. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3025. "type": "custom"
  3026. },
  3027. {
  3028. "url": "https://opencollective.com/hyperf",
  3029. "type": "open_collective"
  3030. }
  3031. ],
  3032. "time": "2025-05-14T07:44:25+00:00"
  3033. },
  3034. {
  3035. "name": "hyperf/json-rpc",
  3036. "version": "v3.1.47",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/hyperf/json-rpc.git",
  3040. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3045. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3046. "shasum": "",
  3047. "mirrors": [
  3048. {
  3049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3050. "preferred": true
  3051. }
  3052. ]
  3053. },
  3054. "require": {
  3055. "hyperf/codec": "~3.1.0",
  3056. "hyperf/context": "~3.1.0",
  3057. "hyperf/contract": "~3.1.0",
  3058. "hyperf/engine": "^2.0",
  3059. "hyperf/http-message": "~3.1.0",
  3060. "hyperf/load-balancer": "~3.1.0",
  3061. "hyperf/rpc": "~3.1.0",
  3062. "hyperf/serializer": "~3.1.0",
  3063. "hyperf/support": "~3.1.0",
  3064. "hyperf/utils": "~3.1.0",
  3065. "php": ">=8.1",
  3066. "psr/container": "^1.0 || ^2.0",
  3067. "swow/psr7-plus": "^1.0"
  3068. },
  3069. "suggest": {
  3070. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3071. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3072. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3073. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3074. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3075. },
  3076. "type": "library",
  3077. "extra": {
  3078. "hyperf": {
  3079. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3080. },
  3081. "branch-alias": {
  3082. "dev-master": "3.1-dev"
  3083. }
  3084. },
  3085. "autoload": {
  3086. "psr-4": {
  3087. "Hyperf\\JsonRpc\\": "src/"
  3088. }
  3089. },
  3090. "notification-url": "https://packagist.org/downloads/",
  3091. "license": [
  3092. "MIT"
  3093. ],
  3094. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3095. "homepage": "https://hyperf.io",
  3096. "keywords": [
  3097. "hyperf",
  3098. "json-rpc",
  3099. "php",
  3100. "swoole"
  3101. ],
  3102. "support": {
  3103. "docs": "https://hyperf.wiki",
  3104. "issues": "https://github.com/hyperf/hyperf/issues",
  3105. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3106. "source": "https://github.com/hyperf/hyperf"
  3107. },
  3108. "funding": [
  3109. {
  3110. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3111. "type": "custom"
  3112. },
  3113. {
  3114. "url": "https://opencollective.com/hyperf",
  3115. "type": "open_collective"
  3116. }
  3117. ],
  3118. "time": "2024-11-28T01:51:55+00:00"
  3119. },
  3120. {
  3121. "name": "hyperf/load-balancer",
  3122. "version": "v3.1.42",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://github.com/hyperf/load-balancer.git",
  3126. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3131. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3132. "shasum": "",
  3133. "mirrors": [
  3134. {
  3135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3136. "preferred": true
  3137. }
  3138. ]
  3139. },
  3140. "require": {
  3141. "hyperf/coordinator": "~3.1.0",
  3142. "hyperf/coroutine": "~3.1.0",
  3143. "markrogoyski/math-php": "^2.0",
  3144. "php": ">=8.1",
  3145. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "hyperf": {
  3150. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3151. },
  3152. "branch-alias": {
  3153. "dev-master": "3.1-dev"
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Hyperf\\LoadBalancer\\": "src/"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "description": "A load balancer library for Hyperf.",
  3166. "homepage": "https://hyperf.io",
  3167. "keywords": [
  3168. "hyperf",
  3169. "load-balancer",
  3170. "php",
  3171. "swoole"
  3172. ],
  3173. "support": {
  3174. "docs": "https://hyperf.wiki",
  3175. "issues": "https://github.com/hyperf/hyperf/issues",
  3176. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3177. "source": "https://github.com/hyperf/hyperf"
  3178. },
  3179. "funding": [
  3180. {
  3181. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3182. "type": "custom"
  3183. },
  3184. {
  3185. "url": "https://opencollective.com/hyperf",
  3186. "type": "open_collective"
  3187. }
  3188. ],
  3189. "time": "2024-09-25T02:54:12+00:00"
  3190. },
  3191. {
  3192. "name": "hyperf/logger",
  3193. "version": "v3.1.55",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/hyperf/logger.git",
  3197. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/hyperf/logger/zipball/8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3202. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3203. "shasum": "",
  3204. "mirrors": [
  3205. {
  3206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3207. "preferred": true
  3208. }
  3209. ]
  3210. },
  3211. "require": {
  3212. "hyperf/contract": "~3.1.0",
  3213. "hyperf/support": "~3.1.0",
  3214. "hyperf/utils": "~3.1.0",
  3215. "monolog/monolog": "^2.7 || ^3.1",
  3216. "php": ">=8.1",
  3217. "psr/container": "^1.0 || ^2.0",
  3218. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3219. },
  3220. "type": "library",
  3221. "extra": {
  3222. "hyperf": {
  3223. "config": "Hyperf\\Logger\\ConfigProvider"
  3224. },
  3225. "branch-alias": {
  3226. "dev-master": "3.1-dev"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-4": {
  3231. "Hyperf\\Logger\\": "src/"
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "description": "A logger component for hyperf.",
  3239. "homepage": "https://hyperf.io",
  3240. "keywords": [
  3241. "hyperf",
  3242. "logger",
  3243. "php"
  3244. ],
  3245. "support": {
  3246. "docs": "https://hyperf.wiki",
  3247. "issues": "https://github.com/hyperf/hyperf/issues",
  3248. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3249. "source": "https://github.com/hyperf/hyperf"
  3250. },
  3251. "funding": [
  3252. {
  3253. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3254. "type": "custom"
  3255. },
  3256. {
  3257. "url": "https://opencollective.com/hyperf",
  3258. "type": "open_collective"
  3259. }
  3260. ],
  3261. "time": "2025-05-14T08:25:19+00:00"
  3262. },
  3263. {
  3264. "name": "hyperf/macroable",
  3265. "version": "v3.1.42",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/hyperf/macroable.git",
  3269. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3274. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3275. "shasum": "",
  3276. "mirrors": [
  3277. {
  3278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3279. "preferred": true
  3280. }
  3281. ]
  3282. },
  3283. "require": {
  3284. "php": ">=8.1"
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "branch-alias": {
  3289. "dev-master": "3.1-dev"
  3290. }
  3291. },
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Hyperf\\Macroable\\": "src/"
  3295. }
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3302. "homepage": "https://hyperf.io",
  3303. "keywords": [
  3304. "hyperf",
  3305. "macroable",
  3306. "php",
  3307. "swoole"
  3308. ],
  3309. "support": {
  3310. "docs": "https://hyperf.wiki",
  3311. "issues": "https://github.com/hyperf/hyperf/issues",
  3312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3313. "source": "https://github.com/hyperf/hyperf"
  3314. },
  3315. "funding": [
  3316. {
  3317. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3318. "type": "custom"
  3319. },
  3320. {
  3321. "url": "https://opencollective.com/hyperf",
  3322. "type": "open_collective"
  3323. }
  3324. ],
  3325. "time": "2024-09-25T02:54:12+00:00"
  3326. },
  3327. {
  3328. "name": "hyperf/memory",
  3329. "version": "v3.1.53",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://github.com/hyperf/memory.git",
  3333. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  3338. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  3339. "shasum": "",
  3340. "mirrors": [
  3341. {
  3342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3343. "preferred": true
  3344. }
  3345. ]
  3346. },
  3347. "require": {
  3348. "php": ">=8.1"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "hyperf": {
  3353. "config": "Hyperf\\Memory\\ConfigProvider"
  3354. },
  3355. "branch-alias": {
  3356. "dev-master": "3.1-dev"
  3357. }
  3358. },
  3359. "autoload": {
  3360. "psr-4": {
  3361. "Hyperf\\Memory\\": "src/"
  3362. }
  3363. },
  3364. "notification-url": "https://packagist.org/downloads/",
  3365. "license": [
  3366. "MIT"
  3367. ],
  3368. "description": "An independent component that use to operate and manage memory.",
  3369. "homepage": "https://hyperf.io",
  3370. "keywords": [
  3371. "hyperf",
  3372. "memory",
  3373. "php",
  3374. "swoole"
  3375. ],
  3376. "support": {
  3377. "docs": "https://hyperf.wiki",
  3378. "issues": "https://github.com/hyperf/hyperf/issues",
  3379. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3380. "source": "https://github.com/hyperf/hyperf"
  3381. },
  3382. "funding": [
  3383. {
  3384. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3385. "type": "custom"
  3386. },
  3387. {
  3388. "url": "https://opencollective.com/hyperf",
  3389. "type": "open_collective"
  3390. }
  3391. ],
  3392. "time": "2025-04-03T09:12:55+00:00"
  3393. },
  3394. {
  3395. "name": "hyperf/model-listener",
  3396. "version": "v3.1.42",
  3397. "source": {
  3398. "type": "git",
  3399. "url": "https://github.com/hyperf/model-listener.git",
  3400. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3401. },
  3402. "dist": {
  3403. "type": "zip",
  3404. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3405. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3406. "shasum": "",
  3407. "mirrors": [
  3408. {
  3409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3410. "preferred": true
  3411. }
  3412. ]
  3413. },
  3414. "require": {
  3415. "hyperf/contract": "~3.1.0",
  3416. "hyperf/database": "~3.1.0",
  3417. "hyperf/di": "~3.1.0",
  3418. "hyperf/event": "~3.1.0",
  3419. "hyperf/support": "~3.1.0",
  3420. "hyperf/utils": "~3.1.0",
  3421. "php": ">=8.1",
  3422. "psr/container": "^1.0 || ^2.0"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "hyperf": {
  3427. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3428. },
  3429. "branch-alias": {
  3430. "dev-master": "3.1-dev"
  3431. }
  3432. },
  3433. "autoload": {
  3434. "psr-4": {
  3435. "Hyperf\\ModelListener\\": "src/"
  3436. }
  3437. },
  3438. "notification-url": "https://packagist.org/downloads/",
  3439. "license": [
  3440. "MIT"
  3441. ],
  3442. "description": "A model listener for Hyperf.",
  3443. "homepage": "https://hyperf.io",
  3444. "keywords": [
  3445. "hyperf",
  3446. "model-listener",
  3447. "php",
  3448. "swoole"
  3449. ],
  3450. "support": {
  3451. "docs": "https://hyperf.wiki",
  3452. "issues": "https://github.com/hyperf/hyperf/issues",
  3453. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3454. "source": "https://github.com/hyperf/hyperf"
  3455. },
  3456. "funding": [
  3457. {
  3458. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3459. "type": "custom"
  3460. },
  3461. {
  3462. "url": "https://opencollective.com/hyperf",
  3463. "type": "open_collective"
  3464. }
  3465. ],
  3466. "time": "2024-09-25T02:54:12+00:00"
  3467. },
  3468. {
  3469. "name": "hyperf/nacos",
  3470. "version": "v3.1.52",
  3471. "source": {
  3472. "type": "git",
  3473. "url": "https://github.com/hyperf/nacos.git",
  3474. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01"
  3475. },
  3476. "dist": {
  3477. "type": "zip",
  3478. "url": "https://api.github.com/repos/hyperf/nacos/zipball/6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3479. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3480. "shasum": "",
  3481. "mirrors": [
  3482. {
  3483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3484. "preferred": true
  3485. }
  3486. ]
  3487. },
  3488. "require": {
  3489. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3490. "hyperf/codec": "~3.1.0",
  3491. "hyperf/contract": "~3.1.0",
  3492. "hyperf/support": "~3.1.0",
  3493. "hyperf/utils": "~3.1.0",
  3494. "jetbrains/phpstorm-attributes": "^1.0",
  3495. "php": ">=8.1"
  3496. },
  3497. "type": "library",
  3498. "extra": {
  3499. "hyperf": {
  3500. "config": "Hyperf\\Nacos\\ConfigProvider"
  3501. },
  3502. "branch-alias": {
  3503. "dev-master": "3.1-dev"
  3504. }
  3505. },
  3506. "autoload": {
  3507. "psr-4": {
  3508. "Hyperf\\Nacos\\": "src/"
  3509. }
  3510. },
  3511. "notification-url": "https://packagist.org/downloads/",
  3512. "license": [
  3513. "MIT"
  3514. ],
  3515. "description": "Nacos SDK",
  3516. "keywords": [
  3517. "hyperf",
  3518. "nacos",
  3519. "php"
  3520. ],
  3521. "support": {
  3522. "issues": "https://github.com/hyperf/nacos/issues",
  3523. "source": "https://github.com/hyperf/nacos/tree/v3.1.52"
  3524. },
  3525. "funding": [
  3526. {
  3527. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3528. "type": "custom"
  3529. },
  3530. {
  3531. "url": "https://opencollective.com/hyperf",
  3532. "type": "open_collective"
  3533. }
  3534. ],
  3535. "time": "2025-02-27T06:49:30+00:00"
  3536. },
  3537. {
  3538. "name": "hyperf/paginator",
  3539. "version": "v3.1.49",
  3540. "source": {
  3541. "type": "git",
  3542. "url": "https://github.com/hyperf/paginator.git",
  3543. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3544. },
  3545. "dist": {
  3546. "type": "zip",
  3547. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3548. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3549. "shasum": "",
  3550. "mirrors": [
  3551. {
  3552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3553. "preferred": true
  3554. }
  3555. ]
  3556. },
  3557. "require": {
  3558. "hyperf/contract": "~3.1.0",
  3559. "hyperf/support": "~3.1.0",
  3560. "hyperf/utils": "~3.1.0",
  3561. "php": ">=8.1"
  3562. },
  3563. "suggest": {
  3564. "hyperf/event": "Reqiured to use PageResolverListener.",
  3565. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3566. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3567. },
  3568. "type": "library",
  3569. "extra": {
  3570. "hyperf": {
  3571. "config": "Hyperf\\Paginator\\ConfigProvider"
  3572. },
  3573. "branch-alias": {
  3574. "dev-master": "3.1-dev"
  3575. }
  3576. },
  3577. "autoload": {
  3578. "psr-4": {
  3579. "Hyperf\\Paginator\\": "src/"
  3580. }
  3581. },
  3582. "notification-url": "https://packagist.org/downloads/",
  3583. "license": [
  3584. "MIT"
  3585. ],
  3586. "description": "A paginator component for hyperf.",
  3587. "homepage": "https://hyperf.io",
  3588. "keywords": [
  3589. "hyperf",
  3590. "paginator",
  3591. "php"
  3592. ],
  3593. "support": {
  3594. "docs": "https://hyperf.wiki",
  3595. "issues": "https://github.com/hyperf/hyperf/issues",
  3596. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3597. "source": "https://github.com/hyperf/hyperf"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://opencollective.com/hyperf",
  3606. "type": "open_collective"
  3607. }
  3608. ],
  3609. "time": "2024-12-17T09:42:13+00:00"
  3610. },
  3611. {
  3612. "name": "hyperf/pipeline",
  3613. "version": "v3.1.42",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/hyperf/pipeline.git",
  3617. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3622. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3623. "shasum": "",
  3624. "mirrors": [
  3625. {
  3626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3627. "preferred": true
  3628. }
  3629. ]
  3630. },
  3631. "require": {
  3632. "php": ">=8.1",
  3633. "psr/container": "^1.0 || ^2.0"
  3634. },
  3635. "type": "library",
  3636. "extra": {
  3637. "branch-alias": {
  3638. "dev-master": "3.1-dev"
  3639. }
  3640. },
  3641. "autoload": {
  3642. "psr-4": {
  3643. "Hyperf\\Pipeline\\": "src/"
  3644. }
  3645. },
  3646. "notification-url": "https://packagist.org/downloads/",
  3647. "license": [
  3648. "MIT"
  3649. ],
  3650. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3651. "homepage": "https://hyperf.io",
  3652. "keywords": [
  3653. "hyperf",
  3654. "php",
  3655. "pipeline",
  3656. "swoole"
  3657. ],
  3658. "support": {
  3659. "docs": "https://hyperf.wiki",
  3660. "issues": "https://github.com/hyperf/hyperf/issues",
  3661. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3662. "source": "https://github.com/hyperf/hyperf"
  3663. },
  3664. "funding": [
  3665. {
  3666. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3667. "type": "custom"
  3668. },
  3669. {
  3670. "url": "https://opencollective.com/hyperf",
  3671. "type": "open_collective"
  3672. }
  3673. ],
  3674. "time": "2024-09-25T02:54:12+00:00"
  3675. },
  3676. {
  3677. "name": "hyperf/pool",
  3678. "version": "v3.1.42",
  3679. "source": {
  3680. "type": "git",
  3681. "url": "https://github.com/hyperf/pool.git",
  3682. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3683. },
  3684. "dist": {
  3685. "type": "zip",
  3686. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3687. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3688. "shasum": "",
  3689. "mirrors": [
  3690. {
  3691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3692. "preferred": true
  3693. }
  3694. ]
  3695. },
  3696. "require": {
  3697. "hyperf/contract": "~3.1.0",
  3698. "hyperf/support": "~3.1.0",
  3699. "hyperf/utils": "~3.1.0",
  3700. "php": ">=8.1",
  3701. "psr/container": "^1.0 || ^2.0"
  3702. },
  3703. "suggest": {
  3704. "psr/event-dispatcher": "Required to use events."
  3705. },
  3706. "type": "library",
  3707. "extra": {
  3708. "hyperf": {
  3709. "config": "Hyperf\\Pool\\ConfigProvider"
  3710. },
  3711. "branch-alias": {
  3712. "dev-master": "3.1-dev"
  3713. }
  3714. },
  3715. "autoload": {
  3716. "psr-4": {
  3717. "Hyperf\\Pool\\": "src/"
  3718. }
  3719. },
  3720. "notification-url": "https://packagist.org/downloads/",
  3721. "license": [
  3722. "MIT"
  3723. ],
  3724. "description": "An independent universal connection pool component.",
  3725. "homepage": "https://hyperf.io",
  3726. "keywords": [
  3727. "connection-pool",
  3728. "hyperf",
  3729. "php",
  3730. "swoole"
  3731. ],
  3732. "support": {
  3733. "docs": "https://hyperf.wiki",
  3734. "issues": "https://github.com/hyperf/hyperf/issues",
  3735. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3736. "source": "https://github.com/hyperf/hyperf"
  3737. },
  3738. "funding": [
  3739. {
  3740. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3741. "type": "custom"
  3742. },
  3743. {
  3744. "url": "https://opencollective.com/hyperf",
  3745. "type": "open_collective"
  3746. }
  3747. ],
  3748. "time": "2024-09-25T02:54:12+00:00"
  3749. },
  3750. {
  3751. "name": "hyperf/process",
  3752. "version": "v3.1.48",
  3753. "source": {
  3754. "type": "git",
  3755. "url": "https://github.com/hyperf/process.git",
  3756. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3757. },
  3758. "dist": {
  3759. "type": "zip",
  3760. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3761. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3762. "shasum": "",
  3763. "mirrors": [
  3764. {
  3765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3766. "preferred": true
  3767. }
  3768. ]
  3769. },
  3770. "require": {
  3771. "hyperf/contract": "~3.1.0",
  3772. "hyperf/support": "~3.1.0",
  3773. "hyperf/utils": "~3.1.0",
  3774. "php": ">=8.1",
  3775. "psr/container": "^1.0 || ^2.0",
  3776. "psr/event-dispatcher": "^1.0"
  3777. },
  3778. "suggest": {
  3779. "hyperf/di": "Required to use annotations.",
  3780. "hyperf/event": "Required to dump the message before and after process.",
  3781. "hyperf/framework": "Required to use BootProcessListener."
  3782. },
  3783. "type": "library",
  3784. "extra": {
  3785. "hyperf": {
  3786. "config": "Hyperf\\Process\\ConfigProvider"
  3787. },
  3788. "branch-alias": {
  3789. "dev-master": "3.1-dev"
  3790. }
  3791. },
  3792. "autoload": {
  3793. "psr-4": {
  3794. "Hyperf\\Process\\": "src/"
  3795. }
  3796. },
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "MIT"
  3800. ],
  3801. "description": "A process component for hyperf.",
  3802. "homepage": "https://hyperf.io",
  3803. "keywords": [
  3804. "hyperf",
  3805. "php",
  3806. "process"
  3807. ],
  3808. "support": {
  3809. "docs": "https://hyperf.wiki",
  3810. "issues": "https://github.com/hyperf/hyperf/issues",
  3811. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3812. "source": "https://github.com/hyperf/hyperf"
  3813. },
  3814. "funding": [
  3815. {
  3816. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3817. "type": "custom"
  3818. },
  3819. {
  3820. "url": "https://opencollective.com/hyperf",
  3821. "type": "open_collective"
  3822. }
  3823. ],
  3824. "time": "2024-12-02T10:54:30+00:00"
  3825. },
  3826. {
  3827. "name": "hyperf/redis",
  3828. "version": "v3.1.53",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/hyperf/redis.git",
  3832. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3837. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3838. "shasum": "",
  3839. "mirrors": [
  3840. {
  3841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3842. "preferred": true
  3843. }
  3844. ]
  3845. },
  3846. "require": {
  3847. "ext-redis": "^5.0 || ^6.0",
  3848. "hyperf/contract": "~3.1.0",
  3849. "hyperf/pool": "~3.1.0",
  3850. "hyperf/support": "~3.1.0",
  3851. "hyperf/tappable": "~3.1.0",
  3852. "hyperf/utils": "~3.1.0",
  3853. "php": ">=8.1",
  3854. "psr/container": "^1.0 || ^2.0"
  3855. },
  3856. "suggest": {
  3857. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3858. "hyperf/di": "Create the RedisPool via dependency injection."
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "hyperf": {
  3863. "config": "Hyperf\\Redis\\ConfigProvider"
  3864. },
  3865. "branch-alias": {
  3866. "dev-master": "3.1-dev"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\Redis\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A redis component for hyperf.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "php",
  3883. "pool",
  3884. "redis"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2025-04-03T07:31:20+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/rpc",
  3906. "version": "v3.1.42",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/rpc.git",
  3910. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3915. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3916. "shasum": "",
  3917. "mirrors": [
  3918. {
  3919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3920. "preferred": true
  3921. }
  3922. ]
  3923. },
  3924. "require": {
  3925. "hyperf/codec": "~3.1.0",
  3926. "hyperf/contract": "~3.1.0",
  3927. "hyperf/support": "~3.1.0",
  3928. "jetbrains/phpstorm-attributes": "^1.0",
  3929. "php": ">=8.1"
  3930. },
  3931. "type": "library",
  3932. "extra": {
  3933. "hyperf": [],
  3934. "branch-alias": {
  3935. "dev-master": "3.1-dev"
  3936. }
  3937. },
  3938. "autoload": {
  3939. "psr-4": {
  3940. "Hyperf\\Rpc\\": "src/"
  3941. }
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "description": "A rpc basic library for Hyperf.",
  3948. "homepage": "https://hyperf.io",
  3949. "keywords": [
  3950. "hyperf",
  3951. "php",
  3952. "rpc",
  3953. "swoole"
  3954. ],
  3955. "support": {
  3956. "docs": "https://hyperf.wiki",
  3957. "issues": "https://github.com/hyperf/hyperf/issues",
  3958. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3959. "source": "https://github.com/hyperf/hyperf"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3964. "type": "custom"
  3965. },
  3966. {
  3967. "url": "https://opencollective.com/hyperf",
  3968. "type": "open_collective"
  3969. }
  3970. ],
  3971. "time": "2024-09-25T02:54:12+00:00"
  3972. },
  3973. {
  3974. "name": "hyperf/rpc-server",
  3975. "version": "v3.1.42",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/hyperf/rpc-server.git",
  3979. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3984. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3985. "shasum": "",
  3986. "mirrors": [
  3987. {
  3988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3989. "preferred": true
  3990. }
  3991. ]
  3992. },
  3993. "require": {
  3994. "hyperf/http-server": "~3.1.0",
  3995. "hyperf/rpc": "~3.1.0",
  3996. "php": ">=8.1"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "Required to use annotations."
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "hyperf": {
  4004. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4005. },
  4006. "branch-alias": {
  4007. "dev-master": "3.1-dev"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Hyperf\\RpcServer\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "description": "An abstract rpc server component for Hyperf.",
  4020. "homepage": "https://hyperf.io",
  4021. "keywords": [
  4022. "hyperf",
  4023. "php",
  4024. "rpc",
  4025. "rpc-server",
  4026. "swoole"
  4027. ],
  4028. "support": {
  4029. "docs": "https://hyperf.wiki",
  4030. "issues": "https://github.com/hyperf/hyperf/issues",
  4031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4032. "source": "https://github.com/hyperf/hyperf"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4037. "type": "custom"
  4038. },
  4039. {
  4040. "url": "https://opencollective.com/hyperf",
  4041. "type": "open_collective"
  4042. }
  4043. ],
  4044. "time": "2024-09-25T02:54:12+00:00"
  4045. },
  4046. {
  4047. "name": "hyperf/serializer",
  4048. "version": "v3.1.42",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/hyperf/serializer.git",
  4052. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4057. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4058. "shasum": "",
  4059. "mirrors": [
  4060. {
  4061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4062. "preferred": true
  4063. }
  4064. ]
  4065. },
  4066. "require": {
  4067. "hyperf/contract": "~3.1.0",
  4068. "php": ">=8.1"
  4069. },
  4070. "suggest": {
  4071. "hyperf/di": "Required to use ExceptionNormalizer",
  4072. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4073. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "hyperf": {
  4078. "config": "Hyperf\\Serializer\\ConfigProvider"
  4079. },
  4080. "branch-alias": {
  4081. "dev-master": "3.1-dev"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "psr-4": {
  4086. "Hyperf\\Serializer\\": "src/"
  4087. }
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "description": "A serializer component for Hyperf.",
  4094. "homepage": "https://hyperf.io",
  4095. "keywords": [
  4096. "hyperf",
  4097. "php",
  4098. "swoole",
  4099. "tappable"
  4100. ],
  4101. "support": {
  4102. "docs": "https://hyperf.wiki",
  4103. "issues": "https://github.com/hyperf/hyperf/issues",
  4104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4105. "source": "https://github.com/hyperf/hyperf"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4110. "type": "custom"
  4111. },
  4112. {
  4113. "url": "https://opencollective.com/hyperf",
  4114. "type": "open_collective"
  4115. }
  4116. ],
  4117. "time": "2024-09-25T02:54:12+00:00"
  4118. },
  4119. {
  4120. "name": "hyperf/server",
  4121. "version": "v3.1.42",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/hyperf/server.git",
  4125. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4130. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4131. "shasum": "",
  4132. "mirrors": [
  4133. {
  4134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4135. "preferred": true
  4136. }
  4137. ]
  4138. },
  4139. "require": {
  4140. "hyperf/contract": "~3.1.0",
  4141. "hyperf/coordinator": "~3.1.0",
  4142. "hyperf/engine": "^2.8",
  4143. "hyperf/support": "~3.1.0",
  4144. "hyperf/tappable": "~3.1.0",
  4145. "php": ">=8.1",
  4146. "psr/container": "^1.0 || ^2.0",
  4147. "psr/event-dispatcher": "^1.0",
  4148. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4149. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4150. },
  4151. "suggest": {
  4152. "hyperf/event": "Dump the info after server start.",
  4153. "hyperf/framework": "Dump the info after server start."
  4154. },
  4155. "type": "library",
  4156. "extra": {
  4157. "hyperf": {
  4158. "config": "Hyperf\\Server\\ConfigProvider"
  4159. },
  4160. "branch-alias": {
  4161. "dev-master": "3.1-dev"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Hyperf\\Server\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "description": "A base server library for Hyperf.",
  4174. "homepage": "https://hyperf.io",
  4175. "keywords": [
  4176. "hyperf",
  4177. "php",
  4178. "server",
  4179. "swoole"
  4180. ],
  4181. "support": {
  4182. "docs": "https://hyperf.wiki",
  4183. "issues": "https://github.com/hyperf/hyperf/issues",
  4184. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4185. "source": "https://github.com/hyperf/hyperf"
  4186. },
  4187. "funding": [
  4188. {
  4189. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4190. "type": "custom"
  4191. },
  4192. {
  4193. "url": "https://opencollective.com/hyperf",
  4194. "type": "open_collective"
  4195. }
  4196. ],
  4197. "time": "2024-09-25T02:54:12+00:00"
  4198. },
  4199. {
  4200. "name": "hyperf/service-governance",
  4201. "version": "v3.1.42",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/hyperf/service-governance.git",
  4205. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4210. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4211. "shasum": "",
  4212. "mirrors": [
  4213. {
  4214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4215. "preferred": true
  4216. }
  4217. ]
  4218. },
  4219. "require": {
  4220. "hyperf/contract": "~3.1.0",
  4221. "hyperf/support": "~3.1.0",
  4222. "jetbrains/phpstorm-attributes": "^1.0",
  4223. "php": ">=8.1"
  4224. },
  4225. "suggest": {
  4226. "hyperf/event": "Required to use RegisterServiceListener.",
  4227. "hyperf/framework": "Required to use RegisterServiceListener.",
  4228. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4229. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4230. },
  4231. "type": "library",
  4232. "extra": {
  4233. "hyperf": {
  4234. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4235. },
  4236. "branch-alias": {
  4237. "dev-master": "3.1-dev"
  4238. }
  4239. },
  4240. "autoload": {
  4241. "psr-4": {
  4242. "Hyperf\\ServiceGovernance\\": "src/"
  4243. }
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "description": "A service governance component for Hyperf.",
  4250. "homepage": "https://hyperf.io",
  4251. "keywords": [
  4252. "hyperf",
  4253. "php",
  4254. "service-governance",
  4255. "swoole"
  4256. ],
  4257. "support": {
  4258. "docs": "https://hyperf.wiki",
  4259. "issues": "https://github.com/hyperf/hyperf/issues",
  4260. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4261. "source": "https://github.com/hyperf/hyperf"
  4262. },
  4263. "funding": [
  4264. {
  4265. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4266. "type": "custom"
  4267. },
  4268. {
  4269. "url": "https://opencollective.com/hyperf",
  4270. "type": "open_collective"
  4271. }
  4272. ],
  4273. "time": "2024-09-25T02:54:12+00:00"
  4274. },
  4275. {
  4276. "name": "hyperf/service-governance-consul",
  4277. "version": "v3.1.42",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/hyperf/service-governance-consul.git",
  4281. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4286. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4287. "shasum": "",
  4288. "mirrors": [
  4289. {
  4290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4291. "preferred": true
  4292. }
  4293. ]
  4294. },
  4295. "require": {
  4296. "hyperf/consul": "~3.1.0",
  4297. "hyperf/contract": "~3.1.0",
  4298. "hyperf/service-governance": "~3.1.0",
  4299. "hyperf/support": "~3.1.0",
  4300. "hyperf/utils": "~3.1.0",
  4301. "php": ">=8.1"
  4302. },
  4303. "type": "library",
  4304. "extra": {
  4305. "hyperf": {
  4306. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4307. },
  4308. "branch-alias": {
  4309. "dev-master": "3.1-dev"
  4310. }
  4311. },
  4312. "autoload": {
  4313. "psr-4": {
  4314. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4315. }
  4316. },
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "MIT"
  4320. ],
  4321. "description": "A consul adapter for service governance.",
  4322. "homepage": "https://hyperf.io",
  4323. "keywords": [
  4324. "consul-adapter",
  4325. "hyperf",
  4326. "php",
  4327. "service-governance",
  4328. "swoole"
  4329. ],
  4330. "support": {
  4331. "docs": "https://hyperf.wiki",
  4332. "issues": "https://github.com/hyperf/hyperf/issues",
  4333. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4334. "source": "https://github.com/hyperf/hyperf"
  4335. },
  4336. "funding": [
  4337. {
  4338. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4339. "type": "custom"
  4340. },
  4341. {
  4342. "url": "https://opencollective.com/hyperf",
  4343. "type": "open_collective"
  4344. }
  4345. ],
  4346. "time": "2024-09-25T02:54:12+00:00"
  4347. },
  4348. {
  4349. "name": "hyperf/service-governance-nacos",
  4350. "version": "v3.1.42",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4354. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4359. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "hyperf/codec": "~3.1.0",
  4370. "hyperf/contract": "~3.1.0",
  4371. "hyperf/nacos": "~3.1.0",
  4372. "hyperf/service-governance": "~3.1.0",
  4373. "hyperf/support": "~3.1.0",
  4374. "hyperf/utils": "~3.1.0",
  4375. "php": ">=8.1"
  4376. },
  4377. "type": "library",
  4378. "extra": {
  4379. "hyperf": {
  4380. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4381. },
  4382. "branch-alias": {
  4383. "dev-master": "3.1-dev"
  4384. }
  4385. },
  4386. "autoload": {
  4387. "psr-4": {
  4388. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4389. }
  4390. },
  4391. "notification-url": "https://packagist.org/downloads/",
  4392. "license": [
  4393. "MIT"
  4394. ],
  4395. "description": "A nacos adapter for service governance.",
  4396. "homepage": "https://hyperf.io",
  4397. "keywords": [
  4398. "hyperf",
  4399. "nacos-adapter",
  4400. "php",
  4401. "service-governance",
  4402. "swoole"
  4403. ],
  4404. "support": {
  4405. "docs": "https://hyperf.wiki",
  4406. "issues": "https://github.com/hyperf/hyperf/issues",
  4407. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4408. "source": "https://github.com/hyperf/hyperf"
  4409. },
  4410. "funding": [
  4411. {
  4412. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4413. "type": "custom"
  4414. },
  4415. {
  4416. "url": "https://opencollective.com/hyperf",
  4417. "type": "open_collective"
  4418. }
  4419. ],
  4420. "time": "2024-09-25T02:54:12+00:00"
  4421. },
  4422. {
  4423. "name": "hyperf/snowflake",
  4424. "version": "v3.1.42",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/hyperf/snowflake.git",
  4428. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4433. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4434. "shasum": "",
  4435. "mirrors": [
  4436. {
  4437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4438. "preferred": true
  4439. }
  4440. ]
  4441. },
  4442. "require": {
  4443. "hyperf/contract": "~3.1.0",
  4444. "php": ">=8.1"
  4445. },
  4446. "suggest": {
  4447. "hyperf/config": "Required to read snowflake config.",
  4448. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4449. "psr/container": "Required to use MetaGeneratorFactory."
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "hyperf": {
  4454. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4455. },
  4456. "branch-alias": {
  4457. "dev-master": "3.1-dev"
  4458. }
  4459. },
  4460. "autoload": {
  4461. "psr-4": {
  4462. "Hyperf\\Snowflake\\": "src/"
  4463. }
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "description": "A snowflake library",
  4470. "homepage": "https://hyperf.io",
  4471. "keywords": [
  4472. "php",
  4473. "snowflake"
  4474. ],
  4475. "support": {
  4476. "docs": "https://hyperf.wiki",
  4477. "issues": "https://github.com/hyperf/hyperf/issues",
  4478. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4479. "source": "https://github.com/hyperf/hyperf"
  4480. },
  4481. "funding": [
  4482. {
  4483. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4484. "type": "custom"
  4485. },
  4486. {
  4487. "url": "https://opencollective.com/hyperf",
  4488. "type": "open_collective"
  4489. }
  4490. ],
  4491. "time": "2024-09-25T02:54:12+00:00"
  4492. },
  4493. {
  4494. "name": "hyperf/stdlib",
  4495. "version": "v3.1.42",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/hyperf/stdlib.git",
  4499. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4504. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4505. "shasum": "",
  4506. "mirrors": [
  4507. {
  4508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4509. "preferred": true
  4510. }
  4511. ]
  4512. },
  4513. "require": {
  4514. "php": ">=8.1"
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-master": "3.1-dev"
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Hyperf\\Stdlib\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "description": "A stdlib component for Hyperf.",
  4532. "homepage": "https://hyperf.io",
  4533. "keywords": [
  4534. "hyperf",
  4535. "php",
  4536. "stdlib",
  4537. "swoole"
  4538. ],
  4539. "support": {
  4540. "docs": "https://hyperf.wiki",
  4541. "issues": "https://github.com/hyperf/hyperf/issues",
  4542. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4543. "source": "https://github.com/hyperf/hyperf"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4548. "type": "custom"
  4549. },
  4550. {
  4551. "url": "https://opencollective.com/hyperf",
  4552. "type": "open_collective"
  4553. }
  4554. ],
  4555. "time": "2024-09-25T02:54:12+00:00"
  4556. },
  4557. {
  4558. "name": "hyperf/stringable",
  4559. "version": "v3.1.55",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/hyperf/stringable.git",
  4563. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4568. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4569. "shasum": "",
  4570. "mirrors": [
  4571. {
  4572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4573. "preferred": true
  4574. }
  4575. ]
  4576. },
  4577. "require": {
  4578. "ext-mbstring": "*",
  4579. "hyperf/collection": "~3.1.0",
  4580. "hyperf/conditionable": "~3.1.0",
  4581. "hyperf/macroable": "~3.1.0",
  4582. "hyperf/tappable": "~3.1.0",
  4583. "php": ">=8.1"
  4584. },
  4585. "suggest": {
  4586. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4587. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4588. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4589. },
  4590. "type": "library",
  4591. "extra": {
  4592. "branch-alias": {
  4593. "dev-master": "3.1-dev"
  4594. }
  4595. },
  4596. "autoload": {
  4597. "files": [
  4598. "src/Functions.php"
  4599. ],
  4600. "psr-4": {
  4601. "Hyperf\\Stringable\\": "src/"
  4602. }
  4603. },
  4604. "notification-url": "https://packagist.org/downloads/",
  4605. "license": [
  4606. "MIT"
  4607. ],
  4608. "description": "Hyperf Stringable package which come from illuminate/support",
  4609. "homepage": "https://hyperf.io",
  4610. "keywords": [
  4611. "hyperf",
  4612. "php",
  4613. "stringable",
  4614. "swoole"
  4615. ],
  4616. "support": {
  4617. "docs": "https://hyperf.wiki",
  4618. "issues": "https://github.com/hyperf/hyperf/issues",
  4619. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4620. "source": "https://github.com/hyperf/hyperf"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4625. "type": "custom"
  4626. },
  4627. {
  4628. "url": "https://opencollective.com/hyperf",
  4629. "type": "open_collective"
  4630. }
  4631. ],
  4632. "time": "2025-05-02T14:13:24+00:00"
  4633. },
  4634. {
  4635. "name": "hyperf/support",
  4636. "version": "v3.1.51",
  4637. "source": {
  4638. "type": "git",
  4639. "url": "https://github.com/hyperf/support.git",
  4640. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4641. },
  4642. "dist": {
  4643. "type": "zip",
  4644. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4645. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4646. "shasum": "",
  4647. "mirrors": [
  4648. {
  4649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4650. "preferred": true
  4651. }
  4652. ]
  4653. },
  4654. "require": {
  4655. "hyperf/collection": "~3.1.0",
  4656. "hyperf/context": "~3.1.0",
  4657. "hyperf/contract": "~3.1.0",
  4658. "hyperf/coroutine": "~3.1.0",
  4659. "hyperf/macroable": "~3.1.0",
  4660. "hyperf/stringable": "~3.1.0",
  4661. "php": ">=8.1"
  4662. },
  4663. "suggest": {
  4664. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-master": "3.1-dev"
  4670. }
  4671. },
  4672. "autoload": {
  4673. "files": [
  4674. "src/Functions.php"
  4675. ],
  4676. "psr-4": {
  4677. "Hyperf\\Support\\": "src/"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "MIT"
  4683. ],
  4684. "description": "A support component for Hyperf.",
  4685. "homepage": "https://hyperf.io",
  4686. "keywords": [
  4687. "hyperf",
  4688. "php",
  4689. "support",
  4690. "swoole"
  4691. ],
  4692. "support": {
  4693. "docs": "https://hyperf.wiki",
  4694. "issues": "https://github.com/hyperf/hyperf/issues",
  4695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4696. "source": "https://github.com/hyperf/hyperf"
  4697. },
  4698. "funding": [
  4699. {
  4700. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4701. "type": "custom"
  4702. },
  4703. {
  4704. "url": "https://opencollective.com/hyperf",
  4705. "type": "open_collective"
  4706. }
  4707. ],
  4708. "time": "2025-02-06T07:02:37+00:00"
  4709. },
  4710. {
  4711. "name": "hyperf/tappable",
  4712. "version": "v3.1.42",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://github.com/hyperf/tappable.git",
  4716. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4721. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4722. "shasum": "",
  4723. "mirrors": [
  4724. {
  4725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4726. "preferred": true
  4727. }
  4728. ]
  4729. },
  4730. "require": {
  4731. "php": ">=8.1"
  4732. },
  4733. "type": "library",
  4734. "extra": {
  4735. "branch-alias": {
  4736. "dev-master": "3.1-dev"
  4737. }
  4738. },
  4739. "autoload": {
  4740. "files": [
  4741. "src/Functions.php"
  4742. ],
  4743. "psr-4": {
  4744. "Hyperf\\Tappable\\": "src/"
  4745. }
  4746. },
  4747. "notification-url": "https://packagist.org/downloads/",
  4748. "license": [
  4749. "MIT"
  4750. ],
  4751. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4752. "homepage": "https://hyperf.io",
  4753. "keywords": [
  4754. "hyperf",
  4755. "php",
  4756. "swoole",
  4757. "tappable"
  4758. ],
  4759. "support": {
  4760. "docs": "https://hyperf.wiki",
  4761. "issues": "https://github.com/hyperf/hyperf/issues",
  4762. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4763. "source": "https://github.com/hyperf/hyperf"
  4764. },
  4765. "funding": [
  4766. {
  4767. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4768. "type": "custom"
  4769. },
  4770. {
  4771. "url": "https://opencollective.com/hyperf",
  4772. "type": "open_collective"
  4773. }
  4774. ],
  4775. "time": "2024-09-25T02:54:12+00:00"
  4776. },
  4777. {
  4778. "name": "hyperf/utils",
  4779. "version": "v3.1.42",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/hyperf/utils.git",
  4783. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4788. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4789. "shasum": "",
  4790. "mirrors": [
  4791. {
  4792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4793. "preferred": true
  4794. }
  4795. ]
  4796. },
  4797. "require": {
  4798. "doctrine/inflector": "^2.0",
  4799. "hyperf/code-parser": "~3.1.0",
  4800. "hyperf/codec": "~3.1.0",
  4801. "hyperf/collection": "~3.1.0",
  4802. "hyperf/context": "~3.1.0",
  4803. "hyperf/contract": "~3.1.0",
  4804. "hyperf/coordinator": "~3.1.0",
  4805. "hyperf/coroutine": "~3.1.0",
  4806. "hyperf/engine": "^2.0",
  4807. "hyperf/macroable": "~3.1.0",
  4808. "hyperf/serializer": "~3.1.0",
  4809. "hyperf/stringable": "~3.1.0",
  4810. "hyperf/support": "~3.1.0",
  4811. "php": ">=8.1"
  4812. },
  4813. "type": "library",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-master": "3.1-dev"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "MIT"
  4822. ],
  4823. "description": "A tools package that could help developer solved the problem quickly.",
  4824. "homepage": "https://hyperf.io",
  4825. "keywords": [
  4826. "hyperf",
  4827. "php",
  4828. "swoole",
  4829. "utils"
  4830. ],
  4831. "support": {
  4832. "docs": "https://hyperf.wiki",
  4833. "issues": "https://github.com/hyperf/hyperf/issues",
  4834. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4835. "source": "https://github.com/hyperf/hyperf"
  4836. },
  4837. "funding": [
  4838. {
  4839. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4840. "type": "custom"
  4841. },
  4842. {
  4843. "url": "https://opencollective.com/hyperf",
  4844. "type": "open_collective"
  4845. }
  4846. ],
  4847. "time": "2024-09-25T02:54:12+00:00"
  4848. },
  4849. {
  4850. "name": "illuminate/cache",
  4851. "version": "v10.48.28",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://github.com/illuminate/cache.git",
  4855. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://api.github.com/repos/illuminate/cache/zipball/20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4860. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4861. "shasum": "",
  4862. "mirrors": [
  4863. {
  4864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4865. "preferred": true
  4866. }
  4867. ]
  4868. },
  4869. "require": {
  4870. "illuminate/collections": "^10.0",
  4871. "illuminate/contracts": "^10.0",
  4872. "illuminate/macroable": "^10.0",
  4873. "illuminate/support": "^10.0",
  4874. "php": "^8.1"
  4875. },
  4876. "provide": {
  4877. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  4878. },
  4879. "suggest": {
  4880. "ext-apcu": "Required to use the APC cache driver.",
  4881. "ext-filter": "Required to use the DynamoDb cache driver.",
  4882. "ext-memcached": "Required to use the memcache cache driver.",
  4883. "illuminate/database": "Required to use the database cache driver (^10.0).",
  4884. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  4885. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  4886. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  4887. },
  4888. "type": "library",
  4889. "extra": {
  4890. "branch-alias": {
  4891. "dev-master": "10.x-dev"
  4892. }
  4893. },
  4894. "autoload": {
  4895. "psr-4": {
  4896. "Illuminate\\Cache\\": ""
  4897. }
  4898. },
  4899. "notification-url": "https://packagist.org/downloads/",
  4900. "license": [
  4901. "MIT"
  4902. ],
  4903. "authors": [
  4904. {
  4905. "name": "Taylor Otwell",
  4906. "email": "taylor@laravel.com"
  4907. }
  4908. ],
  4909. "description": "The Illuminate Cache package.",
  4910. "homepage": "https://laravel.com",
  4911. "support": {
  4912. "issues": "https://github.com/laravel/framework/issues",
  4913. "source": "https://github.com/laravel/framework"
  4914. },
  4915. "time": "2024-11-21T14:02:44+00:00"
  4916. },
  4917. {
  4918. "name": "illuminate/collections",
  4919. "version": "v10.48.28",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/illuminate/collections.git",
  4923. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/illuminate/collections/zipball/48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4928. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4929. "shasum": "",
  4930. "mirrors": [
  4931. {
  4932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4933. "preferred": true
  4934. }
  4935. ]
  4936. },
  4937. "require": {
  4938. "illuminate/conditionable": "^10.0",
  4939. "illuminate/contracts": "^10.0",
  4940. "illuminate/macroable": "^10.0",
  4941. "php": "^8.1"
  4942. },
  4943. "suggest": {
  4944. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  4945. },
  4946. "type": "library",
  4947. "extra": {
  4948. "branch-alias": {
  4949. "dev-master": "10.x-dev"
  4950. }
  4951. },
  4952. "autoload": {
  4953. "files": [
  4954. "helpers.php"
  4955. ],
  4956. "psr-4": {
  4957. "Illuminate\\Support\\": ""
  4958. }
  4959. },
  4960. "notification-url": "https://packagist.org/downloads/",
  4961. "license": [
  4962. "MIT"
  4963. ],
  4964. "authors": [
  4965. {
  4966. "name": "Taylor Otwell",
  4967. "email": "taylor@laravel.com"
  4968. }
  4969. ],
  4970. "description": "The Illuminate Collections package.",
  4971. "homepage": "https://laravel.com",
  4972. "support": {
  4973. "issues": "https://github.com/laravel/framework/issues",
  4974. "source": "https://github.com/laravel/framework"
  4975. },
  4976. "time": "2024-11-21T14:02:44+00:00"
  4977. },
  4978. {
  4979. "name": "illuminate/conditionable",
  4980. "version": "v10.48.28",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/illuminate/conditionable.git",
  4984. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4989. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4990. "shasum": "",
  4991. "mirrors": [
  4992. {
  4993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4994. "preferred": true
  4995. }
  4996. ]
  4997. },
  4998. "require": {
  4999. "php": "^8.0.2"
  5000. },
  5001. "type": "library",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-master": "10.x-dev"
  5005. }
  5006. },
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Illuminate\\Support\\": ""
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Taylor Otwell",
  5019. "email": "taylor@laravel.com"
  5020. }
  5021. ],
  5022. "description": "The Illuminate Conditionable package.",
  5023. "homepage": "https://laravel.com",
  5024. "support": {
  5025. "issues": "https://github.com/laravel/framework/issues",
  5026. "source": "https://github.com/laravel/framework"
  5027. },
  5028. "time": "2024-11-21T14:02:44+00:00"
  5029. },
  5030. {
  5031. "name": "illuminate/contracts",
  5032. "version": "v10.48.28",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/illuminate/contracts.git",
  5036. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/illuminate/contracts/zipball/f90663a69f926105a70b78060a31f3c64e2d1c74",
  5041. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74",
  5042. "shasum": "",
  5043. "mirrors": [
  5044. {
  5045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5046. "preferred": true
  5047. }
  5048. ]
  5049. },
  5050. "require": {
  5051. "php": "^8.1",
  5052. "psr/container": "^1.1.1|^2.0.1",
  5053. "psr/simple-cache": "^1.0|^2.0|^3.0"
  5054. },
  5055. "type": "library",
  5056. "extra": {
  5057. "branch-alias": {
  5058. "dev-master": "10.x-dev"
  5059. }
  5060. },
  5061. "autoload": {
  5062. "psr-4": {
  5063. "Illuminate\\Contracts\\": ""
  5064. }
  5065. },
  5066. "notification-url": "https://packagist.org/downloads/",
  5067. "license": [
  5068. "MIT"
  5069. ],
  5070. "authors": [
  5071. {
  5072. "name": "Taylor Otwell",
  5073. "email": "taylor@laravel.com"
  5074. }
  5075. ],
  5076. "description": "The Illuminate Contracts package.",
  5077. "homepage": "https://laravel.com",
  5078. "support": {
  5079. "issues": "https://github.com/laravel/framework/issues",
  5080. "source": "https://github.com/laravel/framework"
  5081. },
  5082. "time": "2024-11-21T14:02:44+00:00"
  5083. },
  5084. {
  5085. "name": "illuminate/macroable",
  5086. "version": "v10.48.28",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/illuminate/macroable.git",
  5090. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  5095. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  5096. "shasum": "",
  5097. "mirrors": [
  5098. {
  5099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5100. "preferred": true
  5101. }
  5102. ]
  5103. },
  5104. "require": {
  5105. "php": "^8.1"
  5106. },
  5107. "type": "library",
  5108. "extra": {
  5109. "branch-alias": {
  5110. "dev-master": "10.x-dev"
  5111. }
  5112. },
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Illuminate\\Support\\": ""
  5116. }
  5117. },
  5118. "notification-url": "https://packagist.org/downloads/",
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Taylor Otwell",
  5125. "email": "taylor@laravel.com"
  5126. }
  5127. ],
  5128. "description": "The Illuminate Macroable package.",
  5129. "homepage": "https://laravel.com",
  5130. "support": {
  5131. "issues": "https://github.com/laravel/framework/issues",
  5132. "source": "https://github.com/laravel/framework"
  5133. },
  5134. "time": "2023-06-05T12:46:42+00:00"
  5135. },
  5136. {
  5137. "name": "illuminate/support",
  5138. "version": "v10.48.28",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/illuminate/support.git",
  5142. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/illuminate/support/zipball/6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  5147. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  5148. "shasum": "",
  5149. "mirrors": [
  5150. {
  5151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5152. "preferred": true
  5153. }
  5154. ]
  5155. },
  5156. "require": {
  5157. "doctrine/inflector": "^2.0",
  5158. "ext-ctype": "*",
  5159. "ext-filter": "*",
  5160. "ext-mbstring": "*",
  5161. "illuminate/collections": "^10.0",
  5162. "illuminate/conditionable": "^10.0",
  5163. "illuminate/contracts": "^10.0",
  5164. "illuminate/macroable": "^10.0",
  5165. "nesbot/carbon": "^2.67",
  5166. "php": "^8.1",
  5167. "voku/portable-ascii": "^2.0"
  5168. },
  5169. "conflict": {
  5170. "tightenco/collect": "<5.5.33"
  5171. },
  5172. "suggest": {
  5173. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  5174. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  5175. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  5176. "symfony/process": "Required to use the composer class (^6.2).",
  5177. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  5178. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  5179. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-master": "10.x-dev"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "files": [
  5189. "helpers.php"
  5190. ],
  5191. "psr-4": {
  5192. "Illuminate\\Support\\": ""
  5193. }
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Taylor Otwell",
  5202. "email": "taylor@laravel.com"
  5203. }
  5204. ],
  5205. "description": "The Illuminate Support package.",
  5206. "homepage": "https://laravel.com",
  5207. "support": {
  5208. "issues": "https://github.com/laravel/framework/issues",
  5209. "source": "https://github.com/laravel/framework"
  5210. },
  5211. "time": "2024-12-10T14:47:55+00:00"
  5212. },
  5213. {
  5214. "name": "jetbrains/phpstorm-attributes",
  5215. "version": "1.2",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5219. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5224. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5225. "shasum": "",
  5226. "mirrors": [
  5227. {
  5228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5229. "preferred": true
  5230. }
  5231. ]
  5232. },
  5233. "type": "library",
  5234. "autoload": {
  5235. "psr-4": {
  5236. "JetBrains\\PhpStorm\\": "src/"
  5237. }
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "Apache-2.0"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "JetBrains",
  5246. "homepage": "https://www.jetbrains.com"
  5247. }
  5248. ],
  5249. "description": "PhpStorm specific attributes",
  5250. "keywords": [
  5251. "attributes",
  5252. "jetbrains",
  5253. "phpstorm"
  5254. ],
  5255. "support": {
  5256. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5257. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5258. },
  5259. "time": "2024-10-11T10:46:19+00:00"
  5260. },
  5261. {
  5262. "name": "laminas/laminas-mime",
  5263. "version": "2.12.0",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/laminas/laminas-mime.git",
  5267. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5272. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5273. "shasum": "",
  5274. "mirrors": [
  5275. {
  5276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5277. "preferred": true
  5278. }
  5279. ]
  5280. },
  5281. "require": {
  5282. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5283. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5284. },
  5285. "conflict": {
  5286. "zendframework/zend-mime": "*"
  5287. },
  5288. "require-dev": {
  5289. "laminas/laminas-coding-standard": "~2.4.0",
  5290. "laminas/laminas-mail": "^2.19.0",
  5291. "phpunit/phpunit": "~9.5.25"
  5292. },
  5293. "suggest": {
  5294. "laminas/laminas-mail": "Laminas\\Mail component"
  5295. },
  5296. "type": "library",
  5297. "autoload": {
  5298. "psr-4": {
  5299. "Laminas\\Mime\\": "src/"
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "BSD-3-Clause"
  5305. ],
  5306. "description": "Create and parse MIME messages and parts",
  5307. "homepage": "https://laminas.dev",
  5308. "keywords": [
  5309. "laminas",
  5310. "mime"
  5311. ],
  5312. "support": {
  5313. "chat": "https://laminas.dev/chat",
  5314. "docs": "https://docs.laminas.dev/laminas-mime/",
  5315. "forum": "https://discourse.laminas.dev",
  5316. "issues": "https://github.com/laminas/laminas-mime/issues",
  5317. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5318. "source": "https://github.com/laminas/laminas-mime"
  5319. },
  5320. "funding": [
  5321. {
  5322. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5323. "type": "community_bridge"
  5324. }
  5325. ],
  5326. "time": "2023-11-02T16:47:19+00:00"
  5327. },
  5328. {
  5329. "name": "laminas/laminas-stdlib",
  5330. "version": "3.20.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/laminas/laminas-stdlib.git",
  5334. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5339. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5340. "shasum": "",
  5341. "mirrors": [
  5342. {
  5343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5344. "preferred": true
  5345. }
  5346. ]
  5347. },
  5348. "require": {
  5349. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5350. },
  5351. "conflict": {
  5352. "zendframework/zend-stdlib": "*"
  5353. },
  5354. "require-dev": {
  5355. "laminas/laminas-coding-standard": "^3.0",
  5356. "phpbench/phpbench": "^1.3.1",
  5357. "phpunit/phpunit": "^10.5.38",
  5358. "psalm/plugin-phpunit": "^0.19.0",
  5359. "vimeo/psalm": "^5.26.1"
  5360. },
  5361. "type": "library",
  5362. "autoload": {
  5363. "psr-4": {
  5364. "Laminas\\Stdlib\\": "src/"
  5365. }
  5366. },
  5367. "notification-url": "https://packagist.org/downloads/",
  5368. "license": [
  5369. "BSD-3-Clause"
  5370. ],
  5371. "description": "SPL extensions, array utilities, error handlers, and more",
  5372. "homepage": "https://laminas.dev",
  5373. "keywords": [
  5374. "laminas",
  5375. "stdlib"
  5376. ],
  5377. "support": {
  5378. "chat": "https://laminas.dev/chat",
  5379. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5380. "forum": "https://discourse.laminas.dev",
  5381. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5382. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5383. "source": "https://github.com/laminas/laminas-stdlib"
  5384. },
  5385. "funding": [
  5386. {
  5387. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5388. "type": "community_bridge"
  5389. }
  5390. ],
  5391. "time": "2024-10-29T13:46:07+00:00"
  5392. },
  5393. {
  5394. "name": "markrogoyski/math-php",
  5395. "version": "v2.11.0",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/markrogoyski/math-php.git",
  5399. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5404. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5405. "shasum": "",
  5406. "mirrors": [
  5407. {
  5408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5409. "preferred": true
  5410. }
  5411. ]
  5412. },
  5413. "require": {
  5414. "ext-json": "*",
  5415. "php": ">=7.2.0"
  5416. },
  5417. "require-dev": {
  5418. "php-coveralls/php-coveralls": "^2.0",
  5419. "php-parallel-lint/php-parallel-lint": "^1.2",
  5420. "phploc/phploc": "*",
  5421. "phpmd/phpmd": "^2.6",
  5422. "phpstan/phpstan": "^1.10",
  5423. "phpunit/phpunit": "^8.5",
  5424. "squizlabs/php_codesniffer": "3.*"
  5425. },
  5426. "type": "library",
  5427. "autoload": {
  5428. "psr-4": {
  5429. "MathPHP\\": "src/"
  5430. }
  5431. },
  5432. "notification-url": "https://packagist.org/downloads/",
  5433. "license": [
  5434. "MIT"
  5435. ],
  5436. "authors": [
  5437. {
  5438. "name": "Mark Rogoyski",
  5439. "email": "mark@rogoyski.com",
  5440. "homepage": "https://github.com/markrogoyski",
  5441. "role": "Lead developer"
  5442. },
  5443. {
  5444. "name": "Kevin Nowaczyk",
  5445. "homepage": "https://github.com/Beakerboy",
  5446. "role": "Developer"
  5447. },
  5448. {
  5449. "name": "MathPHP Community of Contributors",
  5450. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5451. }
  5452. ],
  5453. "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",
  5454. "homepage": "https://github.com/markrogoyski/math-php/",
  5455. "keywords": [
  5456. "algebra",
  5457. "combinatorics",
  5458. "distributions",
  5459. "linear algebra",
  5460. "math",
  5461. "mathematics",
  5462. "matrix",
  5463. "numerical analysis",
  5464. "probability",
  5465. "regressions",
  5466. "statistics"
  5467. ],
  5468. "support": {
  5469. "issues": "https://github.com/markrogoyski/math-php/issues",
  5470. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  5471. },
  5472. "time": "2025-01-26T20:16:06+00:00"
  5473. },
  5474. {
  5475. "name": "monolog/monolog",
  5476. "version": "3.9.0",
  5477. "source": {
  5478. "type": "git",
  5479. "url": "https://github.com/Seldaek/monolog.git",
  5480. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  5481. },
  5482. "dist": {
  5483. "type": "zip",
  5484. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5485. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5486. "shasum": "",
  5487. "mirrors": [
  5488. {
  5489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5490. "preferred": true
  5491. }
  5492. ]
  5493. },
  5494. "require": {
  5495. "php": ">=8.1",
  5496. "psr/log": "^2.0 || ^3.0"
  5497. },
  5498. "provide": {
  5499. "psr/log-implementation": "3.0.0"
  5500. },
  5501. "require-dev": {
  5502. "aws/aws-sdk-php": "^3.0",
  5503. "doctrine/couchdb": "~1.0@dev",
  5504. "elasticsearch/elasticsearch": "^7 || ^8",
  5505. "ext-json": "*",
  5506. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5507. "guzzlehttp/guzzle": "^7.4.5",
  5508. "guzzlehttp/psr7": "^2.2",
  5509. "mongodb/mongodb": "^1.8",
  5510. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5511. "php-console/php-console": "^3.1.8",
  5512. "phpstan/phpstan": "^2",
  5513. "phpstan/phpstan-deprecation-rules": "^2",
  5514. "phpstan/phpstan-strict-rules": "^2",
  5515. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5516. "predis/predis": "^1.1 || ^2",
  5517. "rollbar/rollbar": "^4.0",
  5518. "ruflin/elastica": "^7 || ^8",
  5519. "symfony/mailer": "^5.4 || ^6",
  5520. "symfony/mime": "^5.4 || ^6"
  5521. },
  5522. "suggest": {
  5523. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5524. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5525. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5526. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5527. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5528. "ext-mbstring": "Allow to work properly with unicode symbols",
  5529. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5530. "ext-openssl": "Required to send log messages using SSL",
  5531. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5532. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5533. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5534. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5535. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5536. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "branch-alias": {
  5541. "dev-main": "3.x-dev"
  5542. }
  5543. },
  5544. "autoload": {
  5545. "psr-4": {
  5546. "Monolog\\": "src/Monolog"
  5547. }
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Jordi Boggiano",
  5556. "email": "j.boggiano@seld.be",
  5557. "homepage": "https://seld.be"
  5558. }
  5559. ],
  5560. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5561. "homepage": "https://github.com/Seldaek/monolog",
  5562. "keywords": [
  5563. "log",
  5564. "logging",
  5565. "psr-3"
  5566. ],
  5567. "support": {
  5568. "issues": "https://github.com/Seldaek/monolog/issues",
  5569. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  5570. },
  5571. "funding": [
  5572. {
  5573. "url": "https://github.com/Seldaek",
  5574. "type": "github"
  5575. },
  5576. {
  5577. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5578. "type": "tidelift"
  5579. }
  5580. ],
  5581. "time": "2025-03-24T10:02:05+00:00"
  5582. },
  5583. {
  5584. "name": "nesbot/carbon",
  5585. "version": "2.73.0",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/CarbonPHP/carbon.git",
  5589. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5594. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5595. "shasum": "",
  5596. "mirrors": [
  5597. {
  5598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5599. "preferred": true
  5600. }
  5601. ]
  5602. },
  5603. "require": {
  5604. "carbonphp/carbon-doctrine-types": "*",
  5605. "ext-json": "*",
  5606. "php": "^7.1.8 || ^8.0",
  5607. "psr/clock": "^1.0",
  5608. "symfony/polyfill-mbstring": "^1.0",
  5609. "symfony/polyfill-php80": "^1.16",
  5610. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5611. },
  5612. "provide": {
  5613. "psr/clock-implementation": "1.0"
  5614. },
  5615. "require-dev": {
  5616. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5617. "doctrine/orm": "^2.7 || ^3.0",
  5618. "friendsofphp/php-cs-fixer": "^3.0",
  5619. "kylekatarnls/multi-tester": "^2.0",
  5620. "ondrejmirtes/better-reflection": "<6",
  5621. "phpmd/phpmd": "^2.9",
  5622. "phpstan/extension-installer": "^1.0",
  5623. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5624. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5625. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5626. "squizlabs/php_codesniffer": "^3.4"
  5627. },
  5628. "bin": [
  5629. "bin/carbon"
  5630. ],
  5631. "type": "library",
  5632. "extra": {
  5633. "laravel": {
  5634. "providers": [
  5635. "Carbon\\Laravel\\ServiceProvider"
  5636. ]
  5637. },
  5638. "phpstan": {
  5639. "includes": [
  5640. "extension.neon"
  5641. ]
  5642. },
  5643. "branch-alias": {
  5644. "dev-2.x": "2.x-dev",
  5645. "dev-master": "3.x-dev"
  5646. }
  5647. },
  5648. "autoload": {
  5649. "psr-4": {
  5650. "Carbon\\": "src/Carbon/"
  5651. }
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Brian Nesbitt",
  5660. "email": "brian@nesbot.com",
  5661. "homepage": "https://markido.com"
  5662. },
  5663. {
  5664. "name": "kylekatarnls",
  5665. "homepage": "https://github.com/kylekatarnls"
  5666. }
  5667. ],
  5668. "description": "An API extension for DateTime that supports 281 different languages.",
  5669. "homepage": "https://carbon.nesbot.com",
  5670. "keywords": [
  5671. "date",
  5672. "datetime",
  5673. "time"
  5674. ],
  5675. "support": {
  5676. "docs": "https://carbon.nesbot.com/docs",
  5677. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5678. "source": "https://github.com/briannesbitt/Carbon"
  5679. },
  5680. "funding": [
  5681. {
  5682. "url": "https://github.com/sponsors/kylekatarnls",
  5683. "type": "github"
  5684. },
  5685. {
  5686. "url": "https://opencollective.com/Carbon#sponsor",
  5687. "type": "opencollective"
  5688. },
  5689. {
  5690. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5691. "type": "tidelift"
  5692. }
  5693. ],
  5694. "time": "2025-01-08T20:10:23+00:00"
  5695. },
  5696. {
  5697. "name": "nikic/fast-route",
  5698. "version": "v1.3.0",
  5699. "source": {
  5700. "type": "git",
  5701. "url": "https://github.com/nikic/FastRoute.git",
  5702. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5703. },
  5704. "dist": {
  5705. "type": "zip",
  5706. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5707. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5708. "shasum": "",
  5709. "mirrors": [
  5710. {
  5711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5712. "preferred": true
  5713. }
  5714. ]
  5715. },
  5716. "require": {
  5717. "php": ">=5.4.0"
  5718. },
  5719. "require-dev": {
  5720. "phpunit/phpunit": "^4.8.35|~5.7"
  5721. },
  5722. "type": "library",
  5723. "autoload": {
  5724. "files": [
  5725. "src/functions.php"
  5726. ],
  5727. "psr-4": {
  5728. "FastRoute\\": "src/"
  5729. }
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "BSD-3-Clause"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Nikita Popov",
  5738. "email": "nikic@php.net"
  5739. }
  5740. ],
  5741. "description": "Fast request router for PHP",
  5742. "keywords": [
  5743. "router",
  5744. "routing"
  5745. ],
  5746. "support": {
  5747. "issues": "https://github.com/nikic/FastRoute/issues",
  5748. "source": "https://github.com/nikic/FastRoute/tree/master"
  5749. },
  5750. "time": "2018-02-13T20:26:39+00:00"
  5751. },
  5752. {
  5753. "name": "nikic/php-parser",
  5754. "version": "v4.19.4",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/nikic/PHP-Parser.git",
  5758. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5763. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5764. "shasum": "",
  5765. "mirrors": [
  5766. {
  5767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5768. "preferred": true
  5769. }
  5770. ]
  5771. },
  5772. "require": {
  5773. "ext-tokenizer": "*",
  5774. "php": ">=7.1"
  5775. },
  5776. "require-dev": {
  5777. "ircmaxell/php-yacc": "^0.0.7",
  5778. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5779. },
  5780. "bin": [
  5781. "bin/php-parse"
  5782. ],
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "4.9-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "psr-4": {
  5791. "PhpParser\\": "lib/PhpParser"
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Nikita Popov"
  5801. }
  5802. ],
  5803. "description": "A PHP parser written in PHP",
  5804. "keywords": [
  5805. "parser",
  5806. "php"
  5807. ],
  5808. "support": {
  5809. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5810. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5811. },
  5812. "time": "2024-09-29T15:01:53+00:00"
  5813. },
  5814. {
  5815. "name": "php-di/phpdoc-reader",
  5816. "version": "2.2.1",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5820. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5825. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5826. "shasum": "",
  5827. "mirrors": [
  5828. {
  5829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5830. "preferred": true
  5831. }
  5832. ]
  5833. },
  5834. "require": {
  5835. "php": ">=7.2.0"
  5836. },
  5837. "require-dev": {
  5838. "mnapoli/hard-mode": "~0.3.0",
  5839. "phpunit/phpunit": "^8.5|^9.0"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "PhpDocReader\\": "src/PhpDocReader"
  5845. }
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "MIT"
  5850. ],
  5851. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5852. "keywords": [
  5853. "phpdoc",
  5854. "reflection"
  5855. ],
  5856. "support": {
  5857. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5858. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5859. },
  5860. "time": "2020-10-12T12:39:22+00:00"
  5861. },
  5862. {
  5863. "name": "phpoption/phpoption",
  5864. "version": "1.9.3",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/schmittjoh/php-option.git",
  5868. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5873. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5874. "shasum": "",
  5875. "mirrors": [
  5876. {
  5877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5878. "preferred": true
  5879. }
  5880. ]
  5881. },
  5882. "require": {
  5883. "php": "^7.2.5 || ^8.0"
  5884. },
  5885. "require-dev": {
  5886. "bamarni/composer-bin-plugin": "^1.8.2",
  5887. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5888. },
  5889. "type": "library",
  5890. "extra": {
  5891. "bamarni-bin": {
  5892. "bin-links": true,
  5893. "forward-command": false
  5894. },
  5895. "branch-alias": {
  5896. "dev-master": "1.9-dev"
  5897. }
  5898. },
  5899. "autoload": {
  5900. "psr-4": {
  5901. "PhpOption\\": "src/PhpOption/"
  5902. }
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "Apache-2.0"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Johannes M. Schmitt",
  5911. "email": "schmittjoh@gmail.com",
  5912. "homepage": "https://github.com/schmittjoh"
  5913. },
  5914. {
  5915. "name": "Graham Campbell",
  5916. "email": "hello@gjcampbell.co.uk",
  5917. "homepage": "https://github.com/GrahamCampbell"
  5918. }
  5919. ],
  5920. "description": "Option Type for PHP",
  5921. "keywords": [
  5922. "language",
  5923. "option",
  5924. "php",
  5925. "type"
  5926. ],
  5927. "support": {
  5928. "issues": "https://github.com/schmittjoh/php-option/issues",
  5929. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5930. },
  5931. "funding": [
  5932. {
  5933. "url": "https://github.com/GrahamCampbell",
  5934. "type": "github"
  5935. },
  5936. {
  5937. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5938. "type": "tidelift"
  5939. }
  5940. ],
  5941. "time": "2024-07-20T21:41:07+00:00"
  5942. },
  5943. {
  5944. "name": "psr/cache",
  5945. "version": "3.0.0",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/php-fig/cache.git",
  5949. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5954. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5955. "shasum": "",
  5956. "mirrors": [
  5957. {
  5958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5959. "preferred": true
  5960. }
  5961. ]
  5962. },
  5963. "require": {
  5964. "php": ">=8.0.0"
  5965. },
  5966. "type": "library",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-master": "1.0.x-dev"
  5970. }
  5971. },
  5972. "autoload": {
  5973. "psr-4": {
  5974. "Psr\\Cache\\": "src/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "PHP-FIG",
  5984. "homepage": "https://www.php-fig.org/"
  5985. }
  5986. ],
  5987. "description": "Common interface for caching libraries",
  5988. "keywords": [
  5989. "cache",
  5990. "psr",
  5991. "psr-6"
  5992. ],
  5993. "support": {
  5994. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5995. },
  5996. "time": "2021-02-03T23:26:27+00:00"
  5997. },
  5998. {
  5999. "name": "psr/clock",
  6000. "version": "1.0.0",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/php-fig/clock.git",
  6004. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6009. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6010. "shasum": "",
  6011. "mirrors": [
  6012. {
  6013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6014. "preferred": true
  6015. }
  6016. ]
  6017. },
  6018. "require": {
  6019. "php": "^7.0 || ^8.0"
  6020. },
  6021. "type": "library",
  6022. "autoload": {
  6023. "psr-4": {
  6024. "Psr\\Clock\\": "src/"
  6025. }
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "MIT"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "PHP-FIG",
  6034. "homepage": "https://www.php-fig.org/"
  6035. }
  6036. ],
  6037. "description": "Common interface for reading the clock.",
  6038. "homepage": "https://github.com/php-fig/clock",
  6039. "keywords": [
  6040. "clock",
  6041. "now",
  6042. "psr",
  6043. "psr-20",
  6044. "time"
  6045. ],
  6046. "support": {
  6047. "issues": "https://github.com/php-fig/clock/issues",
  6048. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6049. },
  6050. "time": "2022-11-25T14:36:26+00:00"
  6051. },
  6052. {
  6053. "name": "psr/container",
  6054. "version": "2.0.2",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/php-fig/container.git",
  6058. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6063. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6064. "shasum": "",
  6065. "mirrors": [
  6066. {
  6067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6068. "preferred": true
  6069. }
  6070. ]
  6071. },
  6072. "require": {
  6073. "php": ">=7.4.0"
  6074. },
  6075. "type": "library",
  6076. "extra": {
  6077. "branch-alias": {
  6078. "dev-master": "2.0.x-dev"
  6079. }
  6080. },
  6081. "autoload": {
  6082. "psr-4": {
  6083. "Psr\\Container\\": "src/"
  6084. }
  6085. },
  6086. "notification-url": "https://packagist.org/downloads/",
  6087. "license": [
  6088. "MIT"
  6089. ],
  6090. "authors": [
  6091. {
  6092. "name": "PHP-FIG",
  6093. "homepage": "https://www.php-fig.org/"
  6094. }
  6095. ],
  6096. "description": "Common Container Interface (PHP FIG PSR-11)",
  6097. "homepage": "https://github.com/php-fig/container",
  6098. "keywords": [
  6099. "PSR-11",
  6100. "container",
  6101. "container-interface",
  6102. "container-interop",
  6103. "psr"
  6104. ],
  6105. "support": {
  6106. "issues": "https://github.com/php-fig/container/issues",
  6107. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6108. },
  6109. "time": "2021-11-05T16:47:00+00:00"
  6110. },
  6111. {
  6112. "name": "psr/event-dispatcher",
  6113. "version": "1.0.0",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/php-fig/event-dispatcher.git",
  6117. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6122. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6123. "shasum": "",
  6124. "mirrors": [
  6125. {
  6126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6127. "preferred": true
  6128. }
  6129. ]
  6130. },
  6131. "require": {
  6132. "php": ">=7.2.0"
  6133. },
  6134. "type": "library",
  6135. "extra": {
  6136. "branch-alias": {
  6137. "dev-master": "1.0.x-dev"
  6138. }
  6139. },
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Psr\\EventDispatcher\\": "src/"
  6143. }
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "PHP-FIG",
  6152. "homepage": "http://www.php-fig.org/"
  6153. }
  6154. ],
  6155. "description": "Standard interfaces for event handling.",
  6156. "keywords": [
  6157. "events",
  6158. "psr",
  6159. "psr-14"
  6160. ],
  6161. "support": {
  6162. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6163. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6164. },
  6165. "time": "2019-01-08T18:20:26+00:00"
  6166. },
  6167. {
  6168. "name": "psr/http-client",
  6169. "version": "1.0.3",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/php-fig/http-client.git",
  6173. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6178. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6179. "shasum": "",
  6180. "mirrors": [
  6181. {
  6182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6183. "preferred": true
  6184. }
  6185. ]
  6186. },
  6187. "require": {
  6188. "php": "^7.0 || ^8.0",
  6189. "psr/http-message": "^1.0 || ^2.0"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "1.0.x-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "psr-4": {
  6199. "Psr\\Http\\Client\\": "src/"
  6200. }
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "PHP-FIG",
  6209. "homepage": "https://www.php-fig.org/"
  6210. }
  6211. ],
  6212. "description": "Common interface for HTTP clients",
  6213. "homepage": "https://github.com/php-fig/http-client",
  6214. "keywords": [
  6215. "http",
  6216. "http-client",
  6217. "psr",
  6218. "psr-18"
  6219. ],
  6220. "support": {
  6221. "source": "https://github.com/php-fig/http-client"
  6222. },
  6223. "time": "2023-09-23T14:17:50+00:00"
  6224. },
  6225. {
  6226. "name": "psr/http-factory",
  6227. "version": "1.0.2",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/php-fig/http-factory.git",
  6231. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6236. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6237. "shasum": "",
  6238. "mirrors": [
  6239. {
  6240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6241. "preferred": true
  6242. }
  6243. ]
  6244. },
  6245. "require": {
  6246. "php": ">=7.0.0",
  6247. "psr/http-message": "^1.0 || ^2.0"
  6248. },
  6249. "type": "library",
  6250. "extra": {
  6251. "branch-alias": {
  6252. "dev-master": "1.0.x-dev"
  6253. }
  6254. },
  6255. "autoload": {
  6256. "psr-4": {
  6257. "Psr\\Http\\Message\\": "src/"
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "PHP-FIG",
  6267. "homepage": "https://www.php-fig.org/"
  6268. }
  6269. ],
  6270. "description": "Common interfaces for PSR-7 HTTP message factories",
  6271. "keywords": [
  6272. "factory",
  6273. "http",
  6274. "message",
  6275. "psr",
  6276. "psr-17",
  6277. "psr-7",
  6278. "request",
  6279. "response"
  6280. ],
  6281. "support": {
  6282. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6283. },
  6284. "time": "2023-04-10T20:10:41+00:00"
  6285. },
  6286. {
  6287. "name": "psr/http-message",
  6288. "version": "2.0",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/php-fig/http-message.git",
  6292. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6297. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6298. "shasum": "",
  6299. "mirrors": [
  6300. {
  6301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6302. "preferred": true
  6303. }
  6304. ]
  6305. },
  6306. "require": {
  6307. "php": "^7.2 || ^8.0"
  6308. },
  6309. "type": "library",
  6310. "extra": {
  6311. "branch-alias": {
  6312. "dev-master": "2.0.x-dev"
  6313. }
  6314. },
  6315. "autoload": {
  6316. "psr-4": {
  6317. "Psr\\Http\\Message\\": "src/"
  6318. }
  6319. },
  6320. "notification-url": "https://packagist.org/downloads/",
  6321. "license": [
  6322. "MIT"
  6323. ],
  6324. "authors": [
  6325. {
  6326. "name": "PHP-FIG",
  6327. "homepage": "https://www.php-fig.org/"
  6328. }
  6329. ],
  6330. "description": "Common interface for HTTP messages",
  6331. "homepage": "https://github.com/php-fig/http-message",
  6332. "keywords": [
  6333. "http",
  6334. "http-message",
  6335. "psr",
  6336. "psr-7",
  6337. "request",
  6338. "response"
  6339. ],
  6340. "support": {
  6341. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6342. },
  6343. "time": "2023-04-04T09:54:51+00:00"
  6344. },
  6345. {
  6346. "name": "psr/http-server-handler",
  6347. "version": "1.0.2",
  6348. "source": {
  6349. "type": "git",
  6350. "url": "https://github.com/php-fig/http-server-handler.git",
  6351. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6352. },
  6353. "dist": {
  6354. "type": "zip",
  6355. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6356. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6357. "shasum": "",
  6358. "mirrors": [
  6359. {
  6360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6361. "preferred": true
  6362. }
  6363. ]
  6364. },
  6365. "require": {
  6366. "php": ">=7.0",
  6367. "psr/http-message": "^1.0 || ^2.0"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "branch-alias": {
  6372. "dev-master": "1.0.x-dev"
  6373. }
  6374. },
  6375. "autoload": {
  6376. "psr-4": {
  6377. "Psr\\Http\\Server\\": "src/"
  6378. }
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "MIT"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "PHP-FIG",
  6387. "homepage": "https://www.php-fig.org/"
  6388. }
  6389. ],
  6390. "description": "Common interface for HTTP server-side request handler",
  6391. "keywords": [
  6392. "handler",
  6393. "http",
  6394. "http-interop",
  6395. "psr",
  6396. "psr-15",
  6397. "psr-7",
  6398. "request",
  6399. "response",
  6400. "server"
  6401. ],
  6402. "support": {
  6403. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6404. },
  6405. "time": "2023-04-10T20:06:20+00:00"
  6406. },
  6407. {
  6408. "name": "psr/http-server-middleware",
  6409. "version": "1.0.2",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/php-fig/http-server-middleware.git",
  6413. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6418. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6419. "shasum": "",
  6420. "mirrors": [
  6421. {
  6422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6423. "preferred": true
  6424. }
  6425. ]
  6426. },
  6427. "require": {
  6428. "php": ">=7.0",
  6429. "psr/http-message": "^1.0 || ^2.0",
  6430. "psr/http-server-handler": "^1.0"
  6431. },
  6432. "type": "library",
  6433. "extra": {
  6434. "branch-alias": {
  6435. "dev-master": "1.0.x-dev"
  6436. }
  6437. },
  6438. "autoload": {
  6439. "psr-4": {
  6440. "Psr\\Http\\Server\\": "src/"
  6441. }
  6442. },
  6443. "notification-url": "https://packagist.org/downloads/",
  6444. "license": [
  6445. "MIT"
  6446. ],
  6447. "authors": [
  6448. {
  6449. "name": "PHP-FIG",
  6450. "homepage": "https://www.php-fig.org/"
  6451. }
  6452. ],
  6453. "description": "Common interface for HTTP server-side middleware",
  6454. "keywords": [
  6455. "http",
  6456. "http-interop",
  6457. "middleware",
  6458. "psr",
  6459. "psr-15",
  6460. "psr-7",
  6461. "request",
  6462. "response"
  6463. ],
  6464. "support": {
  6465. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6466. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6467. },
  6468. "time": "2023-04-11T06:14:47+00:00"
  6469. },
  6470. {
  6471. "name": "psr/log",
  6472. "version": "3.0.1",
  6473. "source": {
  6474. "type": "git",
  6475. "url": "https://github.com/php-fig/log.git",
  6476. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  6477. },
  6478. "dist": {
  6479. "type": "zip",
  6480. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  6481. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  6482. "shasum": "",
  6483. "mirrors": [
  6484. {
  6485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6486. "preferred": true
  6487. }
  6488. ]
  6489. },
  6490. "require": {
  6491. "php": ">=8.0.0"
  6492. },
  6493. "type": "library",
  6494. "extra": {
  6495. "branch-alias": {
  6496. "dev-master": "3.x-dev"
  6497. }
  6498. },
  6499. "autoload": {
  6500. "psr-4": {
  6501. "Psr\\Log\\": "src"
  6502. }
  6503. },
  6504. "notification-url": "https://packagist.org/downloads/",
  6505. "license": [
  6506. "MIT"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "PHP-FIG",
  6511. "homepage": "https://www.php-fig.org/"
  6512. }
  6513. ],
  6514. "description": "Common interface for logging libraries",
  6515. "homepage": "https://github.com/php-fig/log",
  6516. "keywords": [
  6517. "log",
  6518. "psr",
  6519. "psr-3"
  6520. ],
  6521. "support": {
  6522. "source": "https://github.com/php-fig/log/tree/3.0.1"
  6523. },
  6524. "time": "2024-08-21T13:31:24+00:00"
  6525. },
  6526. {
  6527. "name": "psr/simple-cache",
  6528. "version": "3.0.0",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/php-fig/simple-cache.git",
  6532. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6537. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6538. "shasum": "",
  6539. "mirrors": [
  6540. {
  6541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6542. "preferred": true
  6543. }
  6544. ]
  6545. },
  6546. "require": {
  6547. "php": ">=8.0.0"
  6548. },
  6549. "type": "library",
  6550. "extra": {
  6551. "branch-alias": {
  6552. "dev-master": "3.0.x-dev"
  6553. }
  6554. },
  6555. "autoload": {
  6556. "psr-4": {
  6557. "Psr\\SimpleCache\\": "src/"
  6558. }
  6559. },
  6560. "notification-url": "https://packagist.org/downloads/",
  6561. "license": [
  6562. "MIT"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "PHP-FIG",
  6567. "homepage": "https://www.php-fig.org/"
  6568. }
  6569. ],
  6570. "description": "Common interfaces for simple caching",
  6571. "keywords": [
  6572. "cache",
  6573. "caching",
  6574. "psr",
  6575. "psr-16",
  6576. "simple-cache"
  6577. ],
  6578. "support": {
  6579. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6580. },
  6581. "time": "2021-10-29T13:26:27+00:00"
  6582. },
  6583. {
  6584. "name": "ralouphie/getallheaders",
  6585. "version": "3.0.3",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/ralouphie/getallheaders.git",
  6589. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6594. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6595. "shasum": "",
  6596. "mirrors": [
  6597. {
  6598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6599. "preferred": true
  6600. }
  6601. ]
  6602. },
  6603. "require": {
  6604. "php": ">=5.6"
  6605. },
  6606. "require-dev": {
  6607. "php-coveralls/php-coveralls": "^2.1",
  6608. "phpunit/phpunit": "^5 || ^6.5"
  6609. },
  6610. "type": "library",
  6611. "autoload": {
  6612. "files": [
  6613. "src/getallheaders.php"
  6614. ]
  6615. },
  6616. "notification-url": "https://packagist.org/downloads/",
  6617. "license": [
  6618. "MIT"
  6619. ],
  6620. "authors": [
  6621. {
  6622. "name": "Ralph Khattar",
  6623. "email": "ralph.khattar@gmail.com"
  6624. }
  6625. ],
  6626. "description": "A polyfill for getallheaders.",
  6627. "support": {
  6628. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6629. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6630. },
  6631. "time": "2019-03-08T08:55:37+00:00"
  6632. },
  6633. {
  6634. "name": "ramsey/collection",
  6635. "version": "2.0.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/ramsey/collection.git",
  6639. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6644. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6645. "shasum": "",
  6646. "mirrors": [
  6647. {
  6648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6649. "preferred": true
  6650. }
  6651. ]
  6652. },
  6653. "require": {
  6654. "php": "^8.1"
  6655. },
  6656. "require-dev": {
  6657. "captainhook/plugin-composer": "^5.3",
  6658. "ergebnis/composer-normalize": "^2.28.3",
  6659. "fakerphp/faker": "^1.21",
  6660. "hamcrest/hamcrest-php": "^2.0",
  6661. "jangregor/phpstan-prophecy": "^1.0",
  6662. "mockery/mockery": "^1.5",
  6663. "php-parallel-lint/php-console-highlighter": "^1.0",
  6664. "php-parallel-lint/php-parallel-lint": "^1.3",
  6665. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6666. "phpspec/prophecy-phpunit": "^2.0",
  6667. "phpstan/extension-installer": "^1.2",
  6668. "phpstan/phpstan": "^1.9",
  6669. "phpstan/phpstan-mockery": "^1.1",
  6670. "phpstan/phpstan-phpunit": "^1.3",
  6671. "phpunit/phpunit": "^9.5",
  6672. "psalm/plugin-mockery": "^1.1",
  6673. "psalm/plugin-phpunit": "^0.18.4",
  6674. "ramsey/coding-standard": "^2.0.3",
  6675. "ramsey/conventional-commits": "^1.3",
  6676. "vimeo/psalm": "^5.4"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "captainhook": {
  6681. "force-install": true
  6682. },
  6683. "ramsey/conventional-commits": {
  6684. "configFile": "conventional-commits.json"
  6685. }
  6686. },
  6687. "autoload": {
  6688. "psr-4": {
  6689. "Ramsey\\Collection\\": "src/"
  6690. }
  6691. },
  6692. "notification-url": "https://packagist.org/downloads/",
  6693. "license": [
  6694. "MIT"
  6695. ],
  6696. "authors": [
  6697. {
  6698. "name": "Ben Ramsey",
  6699. "email": "ben@benramsey.com",
  6700. "homepage": "https://benramsey.com"
  6701. }
  6702. ],
  6703. "description": "A PHP library for representing and manipulating collections.",
  6704. "keywords": [
  6705. "array",
  6706. "collection",
  6707. "hash",
  6708. "map",
  6709. "queue",
  6710. "set"
  6711. ],
  6712. "support": {
  6713. "issues": "https://github.com/ramsey/collection/issues",
  6714. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6715. },
  6716. "funding": [
  6717. {
  6718. "url": "https://github.com/ramsey",
  6719. "type": "github"
  6720. },
  6721. {
  6722. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6723. "type": "tidelift"
  6724. }
  6725. ],
  6726. "time": "2022-12-31T21:50:55+00:00"
  6727. },
  6728. {
  6729. "name": "ramsey/uuid",
  6730. "version": "4.7.6",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/ramsey/uuid.git",
  6734. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6739. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6740. "shasum": "",
  6741. "mirrors": [
  6742. {
  6743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6744. "preferred": true
  6745. }
  6746. ]
  6747. },
  6748. "require": {
  6749. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6750. "ext-json": "*",
  6751. "php": "^8.0",
  6752. "ramsey/collection": "^1.2 || ^2.0"
  6753. },
  6754. "replace": {
  6755. "rhumsaa/uuid": "self.version"
  6756. },
  6757. "require-dev": {
  6758. "captainhook/captainhook": "^5.10",
  6759. "captainhook/plugin-composer": "^5.3",
  6760. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6761. "doctrine/annotations": "^1.8",
  6762. "ergebnis/composer-normalize": "^2.15",
  6763. "mockery/mockery": "^1.3",
  6764. "paragonie/random-lib": "^2",
  6765. "php-mock/php-mock": "^2.2",
  6766. "php-mock/php-mock-mockery": "^1.3",
  6767. "php-parallel-lint/php-parallel-lint": "^1.1",
  6768. "phpbench/phpbench": "^1.0",
  6769. "phpstan/extension-installer": "^1.1",
  6770. "phpstan/phpstan": "^1.8",
  6771. "phpstan/phpstan-mockery": "^1.1",
  6772. "phpstan/phpstan-phpunit": "^1.1",
  6773. "phpunit/phpunit": "^8.5 || ^9",
  6774. "ramsey/composer-repl": "^1.4",
  6775. "slevomat/coding-standard": "^8.4",
  6776. "squizlabs/php_codesniffer": "^3.5",
  6777. "vimeo/psalm": "^4.9"
  6778. },
  6779. "suggest": {
  6780. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6781. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6782. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6783. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6784. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "captainhook": {
  6789. "force-install": true
  6790. }
  6791. },
  6792. "autoload": {
  6793. "files": [
  6794. "src/functions.php"
  6795. ],
  6796. "psr-4": {
  6797. "Ramsey\\Uuid\\": "src/"
  6798. }
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6805. "keywords": [
  6806. "guid",
  6807. "identifier",
  6808. "uuid"
  6809. ],
  6810. "support": {
  6811. "issues": "https://github.com/ramsey/uuid/issues",
  6812. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6813. },
  6814. "funding": [
  6815. {
  6816. "url": "https://github.com/ramsey",
  6817. "type": "github"
  6818. },
  6819. {
  6820. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6821. "type": "tidelift"
  6822. }
  6823. ],
  6824. "time": "2024-04-27T21:32:50+00:00"
  6825. },
  6826. {
  6827. "name": "swow/psr7-plus",
  6828. "version": "v1.1.2",
  6829. "source": {
  6830. "type": "git",
  6831. "url": "https://github.com/swow/psr7-plus.git",
  6832. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6833. },
  6834. "dist": {
  6835. "type": "zip",
  6836. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6837. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6838. "shasum": "",
  6839. "mirrors": [
  6840. {
  6841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6842. "preferred": true
  6843. }
  6844. ]
  6845. },
  6846. "require": {
  6847. "php": ">=8.0",
  6848. "psr/http-client": "^1.0",
  6849. "psr/http-factory": "^1.0",
  6850. "psr/http-message": "^1.1|^2.0"
  6851. },
  6852. "type": "library",
  6853. "autoload": {
  6854. "psr-4": {
  6855. "Swow\\Psr7\\Message\\": "src/Message/"
  6856. }
  6857. },
  6858. "notification-url": "https://packagist.org/downloads/",
  6859. "license": [
  6860. "Apache-2.0"
  6861. ],
  6862. "authors": [
  6863. {
  6864. "name": "twose",
  6865. "email": "twosee@php.net"
  6866. }
  6867. ],
  6868. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6869. "keywords": [
  6870. "http",
  6871. "psr17",
  6872. "psr7",
  6873. "swow",
  6874. "websocket"
  6875. ],
  6876. "support": {
  6877. "issues": "https://github.com/swow/swow",
  6878. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6879. },
  6880. "time": "2023-06-15T09:18:11+00:00"
  6881. },
  6882. {
  6883. "name": "symfony/console",
  6884. "version": "v6.4.20",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/symfony/console.git",
  6888. "reference": "2e4af9c952617cc3f9559ff706aee420a8464c36"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/symfony/console/zipball/2e4af9c952617cc3f9559ff706aee420a8464c36",
  6893. "reference": "2e4af9c952617cc3f9559ff706aee420a8464c36",
  6894. "shasum": "",
  6895. "mirrors": [
  6896. {
  6897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6898. "preferred": true
  6899. }
  6900. ]
  6901. },
  6902. "require": {
  6903. "php": ">=8.1",
  6904. "symfony/deprecation-contracts": "^2.5|^3",
  6905. "symfony/polyfill-mbstring": "~1.0",
  6906. "symfony/service-contracts": "^2.5|^3",
  6907. "symfony/string": "^5.4|^6.0|^7.0"
  6908. },
  6909. "conflict": {
  6910. "symfony/dependency-injection": "<5.4",
  6911. "symfony/dotenv": "<5.4",
  6912. "symfony/event-dispatcher": "<5.4",
  6913. "symfony/lock": "<5.4",
  6914. "symfony/process": "<5.4"
  6915. },
  6916. "provide": {
  6917. "psr/log-implementation": "1.0|2.0|3.0"
  6918. },
  6919. "require-dev": {
  6920. "psr/log": "^1|^2|^3",
  6921. "symfony/config": "^5.4|^6.0|^7.0",
  6922. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6923. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6924. "symfony/http-foundation": "^6.4|^7.0",
  6925. "symfony/http-kernel": "^6.4|^7.0",
  6926. "symfony/lock": "^5.4|^6.0|^7.0",
  6927. "symfony/messenger": "^5.4|^6.0|^7.0",
  6928. "symfony/process": "^5.4|^6.0|^7.0",
  6929. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6930. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6931. },
  6932. "type": "library",
  6933. "autoload": {
  6934. "psr-4": {
  6935. "Symfony\\Component\\Console\\": ""
  6936. },
  6937. "exclude-from-classmap": [
  6938. "/Tests/"
  6939. ]
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "authors": [
  6946. {
  6947. "name": "Fabien Potencier",
  6948. "email": "fabien@symfony.com"
  6949. },
  6950. {
  6951. "name": "Symfony Community",
  6952. "homepage": "https://symfony.com/contributors"
  6953. }
  6954. ],
  6955. "description": "Eases the creation of beautiful and testable command line interfaces",
  6956. "homepage": "https://symfony.com",
  6957. "keywords": [
  6958. "cli",
  6959. "command-line",
  6960. "console",
  6961. "terminal"
  6962. ],
  6963. "support": {
  6964. "source": "https://github.com/symfony/console/tree/v6.4.20"
  6965. },
  6966. "funding": [
  6967. {
  6968. "url": "https://symfony.com/sponsor",
  6969. "type": "custom"
  6970. },
  6971. {
  6972. "url": "https://github.com/fabpot",
  6973. "type": "github"
  6974. },
  6975. {
  6976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6977. "type": "tidelift"
  6978. }
  6979. ],
  6980. "time": "2025-03-03T17:16:38+00:00"
  6981. },
  6982. {
  6983. "name": "symfony/deprecation-contracts",
  6984. "version": "v3.5.1",
  6985. "source": {
  6986. "type": "git",
  6987. "url": "https://github.com/symfony/deprecation-contracts.git",
  6988. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6989. },
  6990. "dist": {
  6991. "type": "zip",
  6992. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6993. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6994. "shasum": "",
  6995. "mirrors": [
  6996. {
  6997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6998. "preferred": true
  6999. }
  7000. ]
  7001. },
  7002. "require": {
  7003. "php": ">=8.1"
  7004. },
  7005. "type": "library",
  7006. "extra": {
  7007. "thanks": {
  7008. "url": "https://github.com/symfony/contracts",
  7009. "name": "symfony/contracts"
  7010. },
  7011. "branch-alias": {
  7012. "dev-main": "3.5-dev"
  7013. }
  7014. },
  7015. "autoload": {
  7016. "files": [
  7017. "function.php"
  7018. ]
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Nicolas Grekas",
  7027. "email": "p@tchwork.com"
  7028. },
  7029. {
  7030. "name": "Symfony Community",
  7031. "homepage": "https://symfony.com/contributors"
  7032. }
  7033. ],
  7034. "description": "A generic function and convention to trigger deprecation notices",
  7035. "homepage": "https://symfony.com",
  7036. "support": {
  7037. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7038. },
  7039. "funding": [
  7040. {
  7041. "url": "https://symfony.com/sponsor",
  7042. "type": "custom"
  7043. },
  7044. {
  7045. "url": "https://github.com/fabpot",
  7046. "type": "github"
  7047. },
  7048. {
  7049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7050. "type": "tidelift"
  7051. }
  7052. ],
  7053. "time": "2024-09-25T14:20:29+00:00"
  7054. },
  7055. {
  7056. "name": "symfony/finder",
  7057. "version": "v6.4.17",
  7058. "source": {
  7059. "type": "git",
  7060. "url": "https://github.com/symfony/finder.git",
  7061. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7062. },
  7063. "dist": {
  7064. "type": "zip",
  7065. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7066. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7067. "shasum": "",
  7068. "mirrors": [
  7069. {
  7070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7071. "preferred": true
  7072. }
  7073. ]
  7074. },
  7075. "require": {
  7076. "php": ">=8.1"
  7077. },
  7078. "require-dev": {
  7079. "symfony/filesystem": "^6.0|^7.0"
  7080. },
  7081. "type": "library",
  7082. "autoload": {
  7083. "psr-4": {
  7084. "Symfony\\Component\\Finder\\": ""
  7085. },
  7086. "exclude-from-classmap": [
  7087. "/Tests/"
  7088. ]
  7089. },
  7090. "notification-url": "https://packagist.org/downloads/",
  7091. "license": [
  7092. "MIT"
  7093. ],
  7094. "authors": [
  7095. {
  7096. "name": "Fabien Potencier",
  7097. "email": "fabien@symfony.com"
  7098. },
  7099. {
  7100. "name": "Symfony Community",
  7101. "homepage": "https://symfony.com/contributors"
  7102. }
  7103. ],
  7104. "description": "Finds files and directories via an intuitive fluent interface",
  7105. "homepage": "https://symfony.com",
  7106. "support": {
  7107. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7108. },
  7109. "funding": [
  7110. {
  7111. "url": "https://symfony.com/sponsor",
  7112. "type": "custom"
  7113. },
  7114. {
  7115. "url": "https://github.com/fabpot",
  7116. "type": "github"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2024-12-29T13:51:37+00:00"
  7124. },
  7125. {
  7126. "name": "symfony/polyfill-ctype",
  7127. "version": "v1.31.0",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/symfony/polyfill-ctype.git",
  7131. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7136. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7137. "shasum": "",
  7138. "mirrors": [
  7139. {
  7140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7141. "preferred": true
  7142. }
  7143. ]
  7144. },
  7145. "require": {
  7146. "php": ">=7.2"
  7147. },
  7148. "provide": {
  7149. "ext-ctype": "*"
  7150. },
  7151. "suggest": {
  7152. "ext-ctype": "For best performance"
  7153. },
  7154. "type": "library",
  7155. "extra": {
  7156. "thanks": {
  7157. "url": "https://github.com/symfony/polyfill",
  7158. "name": "symfony/polyfill"
  7159. }
  7160. },
  7161. "autoload": {
  7162. "files": [
  7163. "bootstrap.php"
  7164. ],
  7165. "psr-4": {
  7166. "Symfony\\Polyfill\\Ctype\\": ""
  7167. }
  7168. },
  7169. "notification-url": "https://packagist.org/downloads/",
  7170. "license": [
  7171. "MIT"
  7172. ],
  7173. "authors": [
  7174. {
  7175. "name": "Gert de Pagter",
  7176. "email": "BackEndTea@gmail.com"
  7177. },
  7178. {
  7179. "name": "Symfony Community",
  7180. "homepage": "https://symfony.com/contributors"
  7181. }
  7182. ],
  7183. "description": "Symfony polyfill for ctype functions",
  7184. "homepage": "https://symfony.com",
  7185. "keywords": [
  7186. "compatibility",
  7187. "ctype",
  7188. "polyfill",
  7189. "portable"
  7190. ],
  7191. "support": {
  7192. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2024-09-09T11:45:10+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/polyfill-intl-grapheme",
  7212. "version": "v1.31.0",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7216. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7221. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7222. "shasum": "",
  7223. "mirrors": [
  7224. {
  7225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7226. "preferred": true
  7227. }
  7228. ]
  7229. },
  7230. "require": {
  7231. "php": ">=7.2"
  7232. },
  7233. "suggest": {
  7234. "ext-intl": "For best performance"
  7235. },
  7236. "type": "library",
  7237. "extra": {
  7238. "thanks": {
  7239. "url": "https://github.com/symfony/polyfill",
  7240. "name": "symfony/polyfill"
  7241. }
  7242. },
  7243. "autoload": {
  7244. "files": [
  7245. "bootstrap.php"
  7246. ],
  7247. "psr-4": {
  7248. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7249. }
  7250. },
  7251. "notification-url": "https://packagist.org/downloads/",
  7252. "license": [
  7253. "MIT"
  7254. ],
  7255. "authors": [
  7256. {
  7257. "name": "Nicolas Grekas",
  7258. "email": "p@tchwork.com"
  7259. },
  7260. {
  7261. "name": "Symfony Community",
  7262. "homepage": "https://symfony.com/contributors"
  7263. }
  7264. ],
  7265. "description": "Symfony polyfill for intl's grapheme_* functions",
  7266. "homepage": "https://symfony.com",
  7267. "keywords": [
  7268. "compatibility",
  7269. "grapheme",
  7270. "intl",
  7271. "polyfill",
  7272. "portable",
  7273. "shim"
  7274. ],
  7275. "support": {
  7276. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7277. },
  7278. "funding": [
  7279. {
  7280. "url": "https://symfony.com/sponsor",
  7281. "type": "custom"
  7282. },
  7283. {
  7284. "url": "https://github.com/fabpot",
  7285. "type": "github"
  7286. },
  7287. {
  7288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7289. "type": "tidelift"
  7290. }
  7291. ],
  7292. "time": "2024-09-09T11:45:10+00:00"
  7293. },
  7294. {
  7295. "name": "symfony/polyfill-intl-normalizer",
  7296. "version": "v1.31.0",
  7297. "source": {
  7298. "type": "git",
  7299. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7300. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7301. },
  7302. "dist": {
  7303. "type": "zip",
  7304. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7305. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7306. "shasum": "",
  7307. "mirrors": [
  7308. {
  7309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7310. "preferred": true
  7311. }
  7312. ]
  7313. },
  7314. "require": {
  7315. "php": ">=7.2"
  7316. },
  7317. "suggest": {
  7318. "ext-intl": "For best performance"
  7319. },
  7320. "type": "library",
  7321. "extra": {
  7322. "thanks": {
  7323. "url": "https://github.com/symfony/polyfill",
  7324. "name": "symfony/polyfill"
  7325. }
  7326. },
  7327. "autoload": {
  7328. "files": [
  7329. "bootstrap.php"
  7330. ],
  7331. "psr-4": {
  7332. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7333. },
  7334. "classmap": [
  7335. "Resources/stubs"
  7336. ]
  7337. },
  7338. "notification-url": "https://packagist.org/downloads/",
  7339. "license": [
  7340. "MIT"
  7341. ],
  7342. "authors": [
  7343. {
  7344. "name": "Nicolas Grekas",
  7345. "email": "p@tchwork.com"
  7346. },
  7347. {
  7348. "name": "Symfony Community",
  7349. "homepage": "https://symfony.com/contributors"
  7350. }
  7351. ],
  7352. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7353. "homepage": "https://symfony.com",
  7354. "keywords": [
  7355. "compatibility",
  7356. "intl",
  7357. "normalizer",
  7358. "polyfill",
  7359. "portable",
  7360. "shim"
  7361. ],
  7362. "support": {
  7363. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7364. },
  7365. "funding": [
  7366. {
  7367. "url": "https://symfony.com/sponsor",
  7368. "type": "custom"
  7369. },
  7370. {
  7371. "url": "https://github.com/fabpot",
  7372. "type": "github"
  7373. },
  7374. {
  7375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7376. "type": "tidelift"
  7377. }
  7378. ],
  7379. "time": "2024-09-09T11:45:10+00:00"
  7380. },
  7381. {
  7382. "name": "symfony/polyfill-mbstring",
  7383. "version": "v1.31.0",
  7384. "source": {
  7385. "type": "git",
  7386. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7387. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7388. },
  7389. "dist": {
  7390. "type": "zip",
  7391. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7392. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7393. "shasum": "",
  7394. "mirrors": [
  7395. {
  7396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7397. "preferred": true
  7398. }
  7399. ]
  7400. },
  7401. "require": {
  7402. "php": ">=7.2"
  7403. },
  7404. "provide": {
  7405. "ext-mbstring": "*"
  7406. },
  7407. "suggest": {
  7408. "ext-mbstring": "For best performance"
  7409. },
  7410. "type": "library",
  7411. "extra": {
  7412. "thanks": {
  7413. "name": "symfony/polyfill",
  7414. "url": "https://github.com/symfony/polyfill"
  7415. }
  7416. },
  7417. "autoload": {
  7418. "files": [
  7419. "bootstrap.php"
  7420. ],
  7421. "psr-4": {
  7422. "Symfony\\Polyfill\\Mbstring\\": ""
  7423. }
  7424. },
  7425. "notification-url": "https://packagist.org/downloads/",
  7426. "license": [
  7427. "MIT"
  7428. ],
  7429. "authors": [
  7430. {
  7431. "name": "Nicolas Grekas",
  7432. "email": "p@tchwork.com"
  7433. },
  7434. {
  7435. "name": "Symfony Community",
  7436. "homepage": "https://symfony.com/contributors"
  7437. }
  7438. ],
  7439. "description": "Symfony polyfill for the Mbstring extension",
  7440. "homepage": "https://symfony.com",
  7441. "keywords": [
  7442. "compatibility",
  7443. "mbstring",
  7444. "polyfill",
  7445. "portable",
  7446. "shim"
  7447. ],
  7448. "support": {
  7449. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://symfony.com/sponsor",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/fabpot",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2024-09-09T11:45:10+00:00"
  7466. },
  7467. {
  7468. "name": "symfony/polyfill-php80",
  7469. "version": "v1.31.0",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/symfony/polyfill-php80.git",
  7473. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7478. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7479. "shasum": "",
  7480. "mirrors": [
  7481. {
  7482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7483. "preferred": true
  7484. }
  7485. ]
  7486. },
  7487. "require": {
  7488. "php": ">=7.2"
  7489. },
  7490. "type": "library",
  7491. "extra": {
  7492. "thanks": {
  7493. "url": "https://github.com/symfony/polyfill",
  7494. "name": "symfony/polyfill"
  7495. }
  7496. },
  7497. "autoload": {
  7498. "files": [
  7499. "bootstrap.php"
  7500. ],
  7501. "psr-4": {
  7502. "Symfony\\Polyfill\\Php80\\": ""
  7503. },
  7504. "classmap": [
  7505. "Resources/stubs"
  7506. ]
  7507. },
  7508. "notification-url": "https://packagist.org/downloads/",
  7509. "license": [
  7510. "MIT"
  7511. ],
  7512. "authors": [
  7513. {
  7514. "name": "Ion Bazan",
  7515. "email": "ion.bazan@gmail.com"
  7516. },
  7517. {
  7518. "name": "Nicolas Grekas",
  7519. "email": "p@tchwork.com"
  7520. },
  7521. {
  7522. "name": "Symfony Community",
  7523. "homepage": "https://symfony.com/contributors"
  7524. }
  7525. ],
  7526. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7527. "homepage": "https://symfony.com",
  7528. "keywords": [
  7529. "compatibility",
  7530. "polyfill",
  7531. "portable",
  7532. "shim"
  7533. ],
  7534. "support": {
  7535. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7536. },
  7537. "funding": [
  7538. {
  7539. "url": "https://symfony.com/sponsor",
  7540. "type": "custom"
  7541. },
  7542. {
  7543. "url": "https://github.com/fabpot",
  7544. "type": "github"
  7545. },
  7546. {
  7547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7548. "type": "tidelift"
  7549. }
  7550. ],
  7551. "time": "2024-09-09T11:45:10+00:00"
  7552. },
  7553. {
  7554. "name": "symfony/service-contracts",
  7555. "version": "v3.5.1",
  7556. "source": {
  7557. "type": "git",
  7558. "url": "https://github.com/symfony/service-contracts.git",
  7559. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7560. },
  7561. "dist": {
  7562. "type": "zip",
  7563. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7564. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7565. "shasum": "",
  7566. "mirrors": [
  7567. {
  7568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7569. "preferred": true
  7570. }
  7571. ]
  7572. },
  7573. "require": {
  7574. "php": ">=8.1",
  7575. "psr/container": "^1.1|^2.0",
  7576. "symfony/deprecation-contracts": "^2.5|^3"
  7577. },
  7578. "conflict": {
  7579. "ext-psr": "<1.1|>=2"
  7580. },
  7581. "type": "library",
  7582. "extra": {
  7583. "thanks": {
  7584. "url": "https://github.com/symfony/contracts",
  7585. "name": "symfony/contracts"
  7586. },
  7587. "branch-alias": {
  7588. "dev-main": "3.5-dev"
  7589. }
  7590. },
  7591. "autoload": {
  7592. "psr-4": {
  7593. "Symfony\\Contracts\\Service\\": ""
  7594. },
  7595. "exclude-from-classmap": [
  7596. "/Test/"
  7597. ]
  7598. },
  7599. "notification-url": "https://packagist.org/downloads/",
  7600. "license": [
  7601. "MIT"
  7602. ],
  7603. "authors": [
  7604. {
  7605. "name": "Nicolas Grekas",
  7606. "email": "p@tchwork.com"
  7607. },
  7608. {
  7609. "name": "Symfony Community",
  7610. "homepage": "https://symfony.com/contributors"
  7611. }
  7612. ],
  7613. "description": "Generic abstractions related to writing services",
  7614. "homepage": "https://symfony.com",
  7615. "keywords": [
  7616. "abstractions",
  7617. "contracts",
  7618. "decoupling",
  7619. "interfaces",
  7620. "interoperability",
  7621. "standards"
  7622. ],
  7623. "support": {
  7624. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7625. },
  7626. "funding": [
  7627. {
  7628. "url": "https://symfony.com/sponsor",
  7629. "type": "custom"
  7630. },
  7631. {
  7632. "url": "https://github.com/fabpot",
  7633. "type": "github"
  7634. },
  7635. {
  7636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7637. "type": "tidelift"
  7638. }
  7639. ],
  7640. "time": "2024-09-25T14:20:29+00:00"
  7641. },
  7642. {
  7643. "name": "symfony/string",
  7644. "version": "v6.4.21",
  7645. "source": {
  7646. "type": "git",
  7647. "url": "https://github.com/symfony/string.git",
  7648. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  7649. },
  7650. "dist": {
  7651. "type": "zip",
  7652. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  7653. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  7654. "shasum": "",
  7655. "mirrors": [
  7656. {
  7657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7658. "preferred": true
  7659. }
  7660. ]
  7661. },
  7662. "require": {
  7663. "php": ">=8.1",
  7664. "symfony/polyfill-ctype": "~1.8",
  7665. "symfony/polyfill-intl-grapheme": "~1.0",
  7666. "symfony/polyfill-intl-normalizer": "~1.0",
  7667. "symfony/polyfill-mbstring": "~1.0"
  7668. },
  7669. "conflict": {
  7670. "symfony/translation-contracts": "<2.5"
  7671. },
  7672. "require-dev": {
  7673. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7674. "symfony/http-client": "^5.4|^6.0|^7.0",
  7675. "symfony/intl": "^6.2|^7.0",
  7676. "symfony/translation-contracts": "^2.5|^3.0",
  7677. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7678. },
  7679. "type": "library",
  7680. "autoload": {
  7681. "files": [
  7682. "Resources/functions.php"
  7683. ],
  7684. "psr-4": {
  7685. "Symfony\\Component\\String\\": ""
  7686. },
  7687. "exclude-from-classmap": [
  7688. "/Tests/"
  7689. ]
  7690. },
  7691. "notification-url": "https://packagist.org/downloads/",
  7692. "license": [
  7693. "MIT"
  7694. ],
  7695. "authors": [
  7696. {
  7697. "name": "Nicolas Grekas",
  7698. "email": "p@tchwork.com"
  7699. },
  7700. {
  7701. "name": "Symfony Community",
  7702. "homepage": "https://symfony.com/contributors"
  7703. }
  7704. ],
  7705. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7706. "homepage": "https://symfony.com",
  7707. "keywords": [
  7708. "grapheme",
  7709. "i18n",
  7710. "string",
  7711. "unicode",
  7712. "utf-8",
  7713. "utf8"
  7714. ],
  7715. "support": {
  7716. "source": "https://github.com/symfony/string/tree/v6.4.21"
  7717. },
  7718. "funding": [
  7719. {
  7720. "url": "https://symfony.com/sponsor",
  7721. "type": "custom"
  7722. },
  7723. {
  7724. "url": "https://github.com/fabpot",
  7725. "type": "github"
  7726. },
  7727. {
  7728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7729. "type": "tidelift"
  7730. }
  7731. ],
  7732. "time": "2025-04-18T15:23:29+00:00"
  7733. },
  7734. {
  7735. "name": "symfony/translation",
  7736. "version": "v6.4.21",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/symfony/translation.git",
  7740. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  7745. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  7746. "shasum": "",
  7747. "mirrors": [
  7748. {
  7749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7750. "preferred": true
  7751. }
  7752. ]
  7753. },
  7754. "require": {
  7755. "php": ">=8.1",
  7756. "symfony/deprecation-contracts": "^2.5|^3",
  7757. "symfony/polyfill-mbstring": "~1.0",
  7758. "symfony/translation-contracts": "^2.5|^3.0"
  7759. },
  7760. "conflict": {
  7761. "symfony/config": "<5.4",
  7762. "symfony/console": "<5.4",
  7763. "symfony/dependency-injection": "<5.4",
  7764. "symfony/http-client-contracts": "<2.5",
  7765. "symfony/http-kernel": "<5.4",
  7766. "symfony/service-contracts": "<2.5",
  7767. "symfony/twig-bundle": "<5.4",
  7768. "symfony/yaml": "<5.4"
  7769. },
  7770. "provide": {
  7771. "symfony/translation-implementation": "2.3|3.0"
  7772. },
  7773. "require-dev": {
  7774. "nikic/php-parser": "^4.18|^5.0",
  7775. "psr/log": "^1|^2|^3",
  7776. "symfony/config": "^5.4|^6.0|^7.0",
  7777. "symfony/console": "^5.4|^6.0|^7.0",
  7778. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7779. "symfony/finder": "^5.4|^6.0|^7.0",
  7780. "symfony/http-client-contracts": "^2.5|^3.0",
  7781. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7782. "symfony/intl": "^5.4|^6.0|^7.0",
  7783. "symfony/polyfill-intl-icu": "^1.21",
  7784. "symfony/routing": "^5.4|^6.0|^7.0",
  7785. "symfony/service-contracts": "^2.5|^3",
  7786. "symfony/yaml": "^5.4|^6.0|^7.0"
  7787. },
  7788. "type": "library",
  7789. "autoload": {
  7790. "files": [
  7791. "Resources/functions.php"
  7792. ],
  7793. "psr-4": {
  7794. "Symfony\\Component\\Translation\\": ""
  7795. },
  7796. "exclude-from-classmap": [
  7797. "/Tests/"
  7798. ]
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Fabien Potencier",
  7807. "email": "fabien@symfony.com"
  7808. },
  7809. {
  7810. "name": "Symfony Community",
  7811. "homepage": "https://symfony.com/contributors"
  7812. }
  7813. ],
  7814. "description": "Provides tools to internationalize your application",
  7815. "homepage": "https://symfony.com",
  7816. "support": {
  7817. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  7818. },
  7819. "funding": [
  7820. {
  7821. "url": "https://symfony.com/sponsor",
  7822. "type": "custom"
  7823. },
  7824. {
  7825. "url": "https://github.com/fabpot",
  7826. "type": "github"
  7827. },
  7828. {
  7829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7830. "type": "tidelift"
  7831. }
  7832. ],
  7833. "time": "2025-04-07T19:02:30+00:00"
  7834. },
  7835. {
  7836. "name": "symfony/translation-contracts",
  7837. "version": "v3.5.1",
  7838. "source": {
  7839. "type": "git",
  7840. "url": "https://github.com/symfony/translation-contracts.git",
  7841. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7842. },
  7843. "dist": {
  7844. "type": "zip",
  7845. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7846. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7847. "shasum": "",
  7848. "mirrors": [
  7849. {
  7850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7851. "preferred": true
  7852. }
  7853. ]
  7854. },
  7855. "require": {
  7856. "php": ">=8.1"
  7857. },
  7858. "type": "library",
  7859. "extra": {
  7860. "thanks": {
  7861. "url": "https://github.com/symfony/contracts",
  7862. "name": "symfony/contracts"
  7863. },
  7864. "branch-alias": {
  7865. "dev-main": "3.5-dev"
  7866. }
  7867. },
  7868. "autoload": {
  7869. "psr-4": {
  7870. "Symfony\\Contracts\\Translation\\": ""
  7871. },
  7872. "exclude-from-classmap": [
  7873. "/Test/"
  7874. ]
  7875. },
  7876. "notification-url": "https://packagist.org/downloads/",
  7877. "license": [
  7878. "MIT"
  7879. ],
  7880. "authors": [
  7881. {
  7882. "name": "Nicolas Grekas",
  7883. "email": "p@tchwork.com"
  7884. },
  7885. {
  7886. "name": "Symfony Community",
  7887. "homepage": "https://symfony.com/contributors"
  7888. }
  7889. ],
  7890. "description": "Generic abstractions related to translation",
  7891. "homepage": "https://symfony.com",
  7892. "keywords": [
  7893. "abstractions",
  7894. "contracts",
  7895. "decoupling",
  7896. "interfaces",
  7897. "interoperability",
  7898. "standards"
  7899. ],
  7900. "support": {
  7901. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7902. },
  7903. "funding": [
  7904. {
  7905. "url": "https://symfony.com/sponsor",
  7906. "type": "custom"
  7907. },
  7908. {
  7909. "url": "https://github.com/fabpot",
  7910. "type": "github"
  7911. },
  7912. {
  7913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7914. "type": "tidelift"
  7915. }
  7916. ],
  7917. "time": "2024-09-25T14:20:29+00:00"
  7918. },
  7919. {
  7920. "name": "vlucas/phpdotenv",
  7921. "version": "v5.6.1",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/vlucas/phpdotenv.git",
  7925. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7930. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7931. "shasum": "",
  7932. "mirrors": [
  7933. {
  7934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7935. "preferred": true
  7936. }
  7937. ]
  7938. },
  7939. "require": {
  7940. "ext-pcre": "*",
  7941. "graham-campbell/result-type": "^1.1.3",
  7942. "php": "^7.2.5 || ^8.0",
  7943. "phpoption/phpoption": "^1.9.3",
  7944. "symfony/polyfill-ctype": "^1.24",
  7945. "symfony/polyfill-mbstring": "^1.24",
  7946. "symfony/polyfill-php80": "^1.24"
  7947. },
  7948. "require-dev": {
  7949. "bamarni/composer-bin-plugin": "^1.8.2",
  7950. "ext-filter": "*",
  7951. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7952. },
  7953. "suggest": {
  7954. "ext-filter": "Required to use the boolean validator."
  7955. },
  7956. "type": "library",
  7957. "extra": {
  7958. "bamarni-bin": {
  7959. "bin-links": true,
  7960. "forward-command": false
  7961. },
  7962. "branch-alias": {
  7963. "dev-master": "5.6-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "psr-4": {
  7968. "Dotenv\\": "src/"
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "BSD-3-Clause"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Graham Campbell",
  7978. "email": "hello@gjcampbell.co.uk",
  7979. "homepage": "https://github.com/GrahamCampbell"
  7980. },
  7981. {
  7982. "name": "Vance Lucas",
  7983. "email": "vance@vancelucas.com",
  7984. "homepage": "https://github.com/vlucas"
  7985. }
  7986. ],
  7987. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7988. "keywords": [
  7989. "dotenv",
  7990. "env",
  7991. "environment"
  7992. ],
  7993. "support": {
  7994. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7995. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://github.com/GrahamCampbell",
  8000. "type": "github"
  8001. },
  8002. {
  8003. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8004. "type": "tidelift"
  8005. }
  8006. ],
  8007. "time": "2024-07-20T21:52:34+00:00"
  8008. },
  8009. {
  8010. "name": "voku/portable-ascii",
  8011. "version": "2.0.2",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/voku/portable-ascii.git",
  8015. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/16c17671a804bb92602822113dd91fbc8a35d2af",
  8020. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af",
  8021. "shasum": "",
  8022. "mirrors": [
  8023. {
  8024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8025. "preferred": true
  8026. }
  8027. ]
  8028. },
  8029. "require": {
  8030. "php": ">=7.0.0"
  8031. },
  8032. "require-dev": {
  8033. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8034. },
  8035. "suggest": {
  8036. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8037. },
  8038. "type": "library",
  8039. "autoload": {
  8040. "psr-4": {
  8041. "voku\\": "src/voku/"
  8042. }
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "MIT"
  8047. ],
  8048. "authors": [
  8049. {
  8050. "name": "Lars Moelleken",
  8051. "homepage": "https://www.moelleken.org/"
  8052. }
  8053. ],
  8054. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8055. "homepage": "https://github.com/voku/portable-ascii",
  8056. "keywords": [
  8057. "ascii",
  8058. "clean",
  8059. "php"
  8060. ],
  8061. "support": {
  8062. "issues": "https://github.com/voku/portable-ascii/issues",
  8063. "source": "https://github.com/voku/portable-ascii/tree/2.0.2"
  8064. },
  8065. "funding": [
  8066. {
  8067. "url": "https://www.paypal.me/moelleken",
  8068. "type": "custom"
  8069. },
  8070. {
  8071. "url": "https://github.com/voku",
  8072. "type": "github"
  8073. },
  8074. {
  8075. "url": "https://opencollective.com/portable-ascii",
  8076. "type": "open_collective"
  8077. },
  8078. {
  8079. "url": "https://www.patreon.com/voku",
  8080. "type": "patreon"
  8081. },
  8082. {
  8083. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8084. "type": "tidelift"
  8085. }
  8086. ],
  8087. "time": "2024-11-21T00:49:12+00:00"
  8088. }
  8089. ],
  8090. "packages-dev": [
  8091. {
  8092. "name": "clue/ndjson-react",
  8093. "version": "v1.3.0",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/clue/reactphp-ndjson.git",
  8097. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8102. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8103. "shasum": "",
  8104. "mirrors": [
  8105. {
  8106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8107. "preferred": true
  8108. }
  8109. ]
  8110. },
  8111. "require": {
  8112. "php": ">=5.3",
  8113. "react/stream": "^1.2"
  8114. },
  8115. "require-dev": {
  8116. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8117. "react/event-loop": "^1.2"
  8118. },
  8119. "type": "library",
  8120. "autoload": {
  8121. "psr-4": {
  8122. "Clue\\React\\NDJson\\": "src/"
  8123. }
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Christian Lück",
  8132. "email": "christian@clue.engineering"
  8133. }
  8134. ],
  8135. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8136. "homepage": "https://github.com/clue/reactphp-ndjson",
  8137. "keywords": [
  8138. "NDJSON",
  8139. "json",
  8140. "jsonlines",
  8141. "newline",
  8142. "reactphp",
  8143. "streaming"
  8144. ],
  8145. "support": {
  8146. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8147. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8148. },
  8149. "funding": [
  8150. {
  8151. "url": "https://clue.engineering/support",
  8152. "type": "custom"
  8153. },
  8154. {
  8155. "url": "https://github.com/clue",
  8156. "type": "github"
  8157. }
  8158. ],
  8159. "time": "2022-12-23T10:58:28+00:00"
  8160. },
  8161. {
  8162. "name": "composer/pcre",
  8163. "version": "3.3.2",
  8164. "source": {
  8165. "type": "git",
  8166. "url": "https://github.com/composer/pcre.git",
  8167. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8168. },
  8169. "dist": {
  8170. "type": "zip",
  8171. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8172. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8173. "shasum": "",
  8174. "mirrors": [
  8175. {
  8176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8177. "preferred": true
  8178. }
  8179. ]
  8180. },
  8181. "require": {
  8182. "php": "^7.4 || ^8.0"
  8183. },
  8184. "conflict": {
  8185. "phpstan/phpstan": "<1.11.10"
  8186. },
  8187. "require-dev": {
  8188. "phpstan/phpstan": "^1.12 || ^2",
  8189. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8190. "phpunit/phpunit": "^8 || ^9"
  8191. },
  8192. "type": "library",
  8193. "extra": {
  8194. "branch-alias": {
  8195. "dev-main": "3.x-dev"
  8196. },
  8197. "phpstan": {
  8198. "includes": [
  8199. "extension.neon"
  8200. ]
  8201. }
  8202. },
  8203. "autoload": {
  8204. "psr-4": {
  8205. "Composer\\Pcre\\": "src"
  8206. }
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "MIT"
  8211. ],
  8212. "authors": [
  8213. {
  8214. "name": "Jordi Boggiano",
  8215. "email": "j.boggiano@seld.be",
  8216. "homepage": "http://seld.be"
  8217. }
  8218. ],
  8219. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8220. "keywords": [
  8221. "PCRE",
  8222. "preg",
  8223. "regex",
  8224. "regular expression"
  8225. ],
  8226. "support": {
  8227. "issues": "https://github.com/composer/pcre/issues",
  8228. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8229. },
  8230. "funding": [
  8231. {
  8232. "url": "https://packagist.com",
  8233. "type": "custom"
  8234. },
  8235. {
  8236. "url": "https://github.com/composer",
  8237. "type": "github"
  8238. },
  8239. {
  8240. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8241. "type": "tidelift"
  8242. }
  8243. ],
  8244. "time": "2024-11-12T16:29:46+00:00"
  8245. },
  8246. {
  8247. "name": "composer/semver",
  8248. "version": "3.4.2",
  8249. "source": {
  8250. "type": "git",
  8251. "url": "https://github.com/composer/semver.git",
  8252. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  8253. },
  8254. "dist": {
  8255. "type": "zip",
  8256. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8257. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8258. "shasum": "",
  8259. "mirrors": [
  8260. {
  8261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8262. "preferred": true
  8263. }
  8264. ]
  8265. },
  8266. "require": {
  8267. "php": "^5.3.2 || ^7.0 || ^8.0"
  8268. },
  8269. "require-dev": {
  8270. "phpstan/phpstan": "^1.4",
  8271. "symfony/phpunit-bridge": "^4.2 || ^5"
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "branch-alias": {
  8276. "dev-main": "3.x-dev"
  8277. }
  8278. },
  8279. "autoload": {
  8280. "psr-4": {
  8281. "Composer\\Semver\\": "src"
  8282. }
  8283. },
  8284. "notification-url": "https://packagist.org/downloads/",
  8285. "license": [
  8286. "MIT"
  8287. ],
  8288. "authors": [
  8289. {
  8290. "name": "Nils Adermann",
  8291. "email": "naderman@naderman.de",
  8292. "homepage": "http://www.naderman.de"
  8293. },
  8294. {
  8295. "name": "Jordi Boggiano",
  8296. "email": "j.boggiano@seld.be",
  8297. "homepage": "http://seld.be"
  8298. },
  8299. {
  8300. "name": "Rob Bast",
  8301. "email": "rob.bast@gmail.com",
  8302. "homepage": "http://robbast.nl"
  8303. }
  8304. ],
  8305. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8306. "keywords": [
  8307. "semantic",
  8308. "semver",
  8309. "validation",
  8310. "versioning"
  8311. ],
  8312. "support": {
  8313. "irc": "ircs://irc.libera.chat:6697/composer",
  8314. "issues": "https://github.com/composer/semver/issues",
  8315. "source": "https://github.com/composer/semver/tree/3.4.2"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://packagist.com",
  8320. "type": "custom"
  8321. },
  8322. {
  8323. "url": "https://github.com/composer",
  8324. "type": "github"
  8325. },
  8326. {
  8327. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8328. "type": "tidelift"
  8329. }
  8330. ],
  8331. "time": "2024-07-12T11:35:52+00:00"
  8332. },
  8333. {
  8334. "name": "composer/xdebug-handler",
  8335. "version": "3.0.3",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/composer/xdebug-handler.git",
  8339. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  8344. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  8345. "shasum": "",
  8346. "mirrors": [
  8347. {
  8348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8349. "preferred": true
  8350. }
  8351. ]
  8352. },
  8353. "require": {
  8354. "composer/pcre": "^1 || ^2 || ^3",
  8355. "php": "^7.2.5 || ^8.0",
  8356. "psr/log": "^1 || ^2 || ^3"
  8357. },
  8358. "require-dev": {
  8359. "phpstan/phpstan": "^1.0",
  8360. "phpstan/phpstan-strict-rules": "^1.1",
  8361. "symfony/phpunit-bridge": "^6.0"
  8362. },
  8363. "type": "library",
  8364. "autoload": {
  8365. "psr-4": {
  8366. "Composer\\XdebugHandler\\": "src"
  8367. }
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "MIT"
  8372. ],
  8373. "authors": [
  8374. {
  8375. "name": "John Stevenson",
  8376. "email": "john-stevenson@blueyonder.co.uk"
  8377. }
  8378. ],
  8379. "description": "Restarts a process without Xdebug.",
  8380. "keywords": [
  8381. "Xdebug",
  8382. "performance"
  8383. ],
  8384. "support": {
  8385. "irc": "irc://irc.freenode.org/composer",
  8386. "issues": "https://github.com/composer/xdebug-handler/issues",
  8387. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  8388. },
  8389. "funding": [
  8390. {
  8391. "url": "https://packagist.com",
  8392. "type": "custom"
  8393. },
  8394. {
  8395. "url": "https://github.com/composer",
  8396. "type": "github"
  8397. },
  8398. {
  8399. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8400. "type": "tidelift"
  8401. }
  8402. ],
  8403. "time": "2022-02-25T21:32:43+00:00"
  8404. },
  8405. {
  8406. "name": "evenement/evenement",
  8407. "version": "v3.0.2",
  8408. "source": {
  8409. "type": "git",
  8410. "url": "https://github.com/igorw/evenement.git",
  8411. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8412. },
  8413. "dist": {
  8414. "type": "zip",
  8415. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8416. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8417. "shasum": "",
  8418. "mirrors": [
  8419. {
  8420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8421. "preferred": true
  8422. }
  8423. ]
  8424. },
  8425. "require": {
  8426. "php": ">=7.0"
  8427. },
  8428. "require-dev": {
  8429. "phpunit/phpunit": "^9 || ^6"
  8430. },
  8431. "type": "library",
  8432. "autoload": {
  8433. "psr-4": {
  8434. "Evenement\\": "src/"
  8435. }
  8436. },
  8437. "notification-url": "https://packagist.org/downloads/",
  8438. "license": [
  8439. "MIT"
  8440. ],
  8441. "authors": [
  8442. {
  8443. "name": "Igor Wiedler",
  8444. "email": "igor@wiedler.ch"
  8445. }
  8446. ],
  8447. "description": "Événement is a very simple event dispatching library for PHP",
  8448. "keywords": [
  8449. "event-dispatcher",
  8450. "event-emitter"
  8451. ],
  8452. "support": {
  8453. "issues": "https://github.com/igorw/evenement/issues",
  8454. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8455. },
  8456. "time": "2023-08-08T05:53:35+00:00"
  8457. },
  8458. {
  8459. "name": "fidry/cpu-core-counter",
  8460. "version": "1.1.0",
  8461. "source": {
  8462. "type": "git",
  8463. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8464. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8465. },
  8466. "dist": {
  8467. "type": "zip",
  8468. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8469. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8470. "shasum": "",
  8471. "mirrors": [
  8472. {
  8473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8474. "preferred": true
  8475. }
  8476. ]
  8477. },
  8478. "require": {
  8479. "php": "^7.2 || ^8.0"
  8480. },
  8481. "require-dev": {
  8482. "fidry/makefile": "^0.2.0",
  8483. "fidry/php-cs-fixer-config": "^1.1.2",
  8484. "phpstan/extension-installer": "^1.2.0",
  8485. "phpstan/phpstan": "^1.9.2",
  8486. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8487. "phpstan/phpstan-phpunit": "^1.2.2",
  8488. "phpstan/phpstan-strict-rules": "^1.4.4",
  8489. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8490. "webmozarts/strict-phpunit": "^7.5"
  8491. },
  8492. "type": "library",
  8493. "autoload": {
  8494. "psr-4": {
  8495. "Fidry\\CpuCoreCounter\\": "src/"
  8496. }
  8497. },
  8498. "notification-url": "https://packagist.org/downloads/",
  8499. "license": [
  8500. "MIT"
  8501. ],
  8502. "authors": [
  8503. {
  8504. "name": "Théo FIDRY",
  8505. "email": "theo.fidry@gmail.com"
  8506. }
  8507. ],
  8508. "description": "Tiny utility to get the number of CPU cores.",
  8509. "keywords": [
  8510. "CPU",
  8511. "core"
  8512. ],
  8513. "support": {
  8514. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8515. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://github.com/theofidry",
  8520. "type": "github"
  8521. }
  8522. ],
  8523. "time": "2024-02-07T09:43:46+00:00"
  8524. },
  8525. {
  8526. "name": "friendsofphp/php-cs-fixer",
  8527. "version": "v3.64.0",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8531. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8536. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8537. "shasum": "",
  8538. "mirrors": [
  8539. {
  8540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8541. "preferred": true
  8542. }
  8543. ]
  8544. },
  8545. "require": {
  8546. "clue/ndjson-react": "^1.0",
  8547. "composer/semver": "^3.4",
  8548. "composer/xdebug-handler": "^3.0.3",
  8549. "ext-filter": "*",
  8550. "ext-json": "*",
  8551. "ext-tokenizer": "*",
  8552. "fidry/cpu-core-counter": "^1.0",
  8553. "php": "^7.4 || ^8.0",
  8554. "react/child-process": "^0.6.5",
  8555. "react/event-loop": "^1.0",
  8556. "react/promise": "^2.0 || ^3.0",
  8557. "react/socket": "^1.0",
  8558. "react/stream": "^1.0",
  8559. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8560. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8561. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8562. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8563. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8564. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8565. "symfony/polyfill-mbstring": "^1.28",
  8566. "symfony/polyfill-php80": "^1.28",
  8567. "symfony/polyfill-php81": "^1.28",
  8568. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8569. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8570. },
  8571. "require-dev": {
  8572. "facile-it/paraunit": "^1.3 || ^2.3",
  8573. "infection/infection": "^0.29.5",
  8574. "justinrainbow/json-schema": "^5.2",
  8575. "keradus/cli-executor": "^2.1",
  8576. "mikey179/vfsstream": "^1.6.11",
  8577. "php-coveralls/php-coveralls": "^2.7",
  8578. "php-cs-fixer/accessible-object": "^1.1",
  8579. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8580. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8581. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8582. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8583. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8584. },
  8585. "suggest": {
  8586. "ext-dom": "For handling output formats in XML",
  8587. "ext-mbstring": "For handling non-UTF8 characters."
  8588. },
  8589. "bin": [
  8590. "php-cs-fixer"
  8591. ],
  8592. "type": "application",
  8593. "autoload": {
  8594. "psr-4": {
  8595. "PhpCsFixer\\": "src/"
  8596. },
  8597. "exclude-from-classmap": [
  8598. "src/Fixer/Internal/*"
  8599. ]
  8600. },
  8601. "notification-url": "https://packagist.org/downloads/",
  8602. "license": [
  8603. "MIT"
  8604. ],
  8605. "authors": [
  8606. {
  8607. "name": "Fabien Potencier",
  8608. "email": "fabien@symfony.com"
  8609. },
  8610. {
  8611. "name": "Dariusz Rumiński",
  8612. "email": "dariusz.ruminski@gmail.com"
  8613. }
  8614. ],
  8615. "description": "A tool to automatically fix PHP code style",
  8616. "keywords": [
  8617. "Static code analysis",
  8618. "fixer",
  8619. "standards",
  8620. "static analysis"
  8621. ],
  8622. "support": {
  8623. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8624. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8625. },
  8626. "funding": [
  8627. {
  8628. "url": "https://github.com/keradus",
  8629. "type": "github"
  8630. }
  8631. ],
  8632. "time": "2024-08-30T23:09:38+00:00"
  8633. },
  8634. {
  8635. "name": "hamcrest/hamcrest-php",
  8636. "version": "v2.0.1",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8640. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8645. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8646. "shasum": "",
  8647. "mirrors": [
  8648. {
  8649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8650. "preferred": true
  8651. }
  8652. ]
  8653. },
  8654. "require": {
  8655. "php": "^5.3|^7.0|^8.0"
  8656. },
  8657. "replace": {
  8658. "cordoval/hamcrest-php": "*",
  8659. "davedevelopment/hamcrest-php": "*",
  8660. "kodova/hamcrest-php": "*"
  8661. },
  8662. "require-dev": {
  8663. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8664. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8665. },
  8666. "type": "library",
  8667. "extra": {
  8668. "branch-alias": {
  8669. "dev-master": "2.1-dev"
  8670. }
  8671. },
  8672. "autoload": {
  8673. "classmap": [
  8674. "hamcrest"
  8675. ]
  8676. },
  8677. "notification-url": "https://packagist.org/downloads/",
  8678. "license": [
  8679. "BSD-3-Clause"
  8680. ],
  8681. "description": "This is the PHP port of Hamcrest Matchers",
  8682. "keywords": [
  8683. "test"
  8684. ],
  8685. "support": {
  8686. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8687. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8688. },
  8689. "time": "2020-07-09T08:09:16+00:00"
  8690. },
  8691. {
  8692. "name": "hyperf/devtool",
  8693. "version": "v3.1.51",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/hyperf/devtool.git",
  8697. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  8702. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  8703. "shasum": "",
  8704. "mirrors": [
  8705. {
  8706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8707. "preferred": true
  8708. }
  8709. ]
  8710. },
  8711. "require": {
  8712. "hyperf/code-parser": "~3.1.0",
  8713. "hyperf/command": "~3.1.0",
  8714. "hyperf/contract": "~3.1.0",
  8715. "hyperf/di": "~3.1.0",
  8716. "hyperf/support": "~3.1.0",
  8717. "hyperf/utils": "~3.1.0",
  8718. "php": ">=8.1"
  8719. },
  8720. "type": "library",
  8721. "extra": {
  8722. "hyperf": {
  8723. "config": "Hyperf\\Devtool\\ConfigProvider"
  8724. },
  8725. "branch-alias": {
  8726. "dev-master": "3.1-dev"
  8727. }
  8728. },
  8729. "autoload": {
  8730. "psr-4": {
  8731. "Hyperf\\Devtool\\": "src/"
  8732. }
  8733. },
  8734. "notification-url": "https://packagist.org/downloads/",
  8735. "license": [
  8736. "MIT"
  8737. ],
  8738. "description": "A Devtool for Hyperf.",
  8739. "homepage": "https://hyperf.io",
  8740. "keywords": [
  8741. "dev",
  8742. "devtool",
  8743. "hyperf",
  8744. "php",
  8745. "swoole"
  8746. ],
  8747. "support": {
  8748. "docs": "https://hyperf.wiki",
  8749. "issues": "https://github.com/hyperf/hyperf/issues",
  8750. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8751. "source": "https://github.com/hyperf/hyperf"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8756. "type": "custom"
  8757. },
  8758. {
  8759. "url": "https://opencollective.com/hyperf",
  8760. "type": "open_collective"
  8761. }
  8762. ],
  8763. "time": "2025-02-06T06:42:00+00:00"
  8764. },
  8765. {
  8766. "name": "hyperf/testing",
  8767. "version": "v3.1.55",
  8768. "source": {
  8769. "type": "git",
  8770. "url": "https://github.com/hyperf/testing.git",
  8771. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  8772. },
  8773. "dist": {
  8774. "type": "zip",
  8775. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  8776. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  8777. "shasum": "",
  8778. "mirrors": [
  8779. {
  8780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8781. "preferred": true
  8782. }
  8783. ]
  8784. },
  8785. "require": {
  8786. "hyperf/codec": "~3.1.0",
  8787. "hyperf/collection": "~3.1.0",
  8788. "hyperf/contract": "~3.1.0",
  8789. "hyperf/coroutine": "~3.1.0",
  8790. "hyperf/http-message": "~3.1.0",
  8791. "hyperf/http-server": "~3.1.0",
  8792. "hyperf/support": "~3.1.0",
  8793. "hyperf/utils": "~3.1.0",
  8794. "php": ">=8.1",
  8795. "phpunit/phpunit": "^10.0",
  8796. "psr/container": "^1.0 || ^2.0",
  8797. "symfony/http-foundation": "^5.4 || ^6.0"
  8798. },
  8799. "suggest": {
  8800. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8801. },
  8802. "bin": [
  8803. "co-phpunit"
  8804. ],
  8805. "type": "library",
  8806. "extra": {
  8807. "branch-alias": {
  8808. "dev-master": "3.1-dev"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "psr-4": {
  8813. "Hyperf\\Testing\\": "src/"
  8814. }
  8815. },
  8816. "notification-url": "https://packagist.org/downloads/",
  8817. "license": [
  8818. "MIT"
  8819. ],
  8820. "description": "Testing for hyperf",
  8821. "keywords": [
  8822. "dev",
  8823. "php",
  8824. "swoole",
  8825. "testing"
  8826. ],
  8827. "support": {
  8828. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  8829. },
  8830. "funding": [
  8831. {
  8832. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8833. "type": "custom"
  8834. },
  8835. {
  8836. "url": "https://opencollective.com/hyperf",
  8837. "type": "open_collective"
  8838. }
  8839. ],
  8840. "time": "2025-05-02T14:13:24+00:00"
  8841. },
  8842. {
  8843. "name": "hyperf/watcher",
  8844. "version": "v3.1.43",
  8845. "source": {
  8846. "type": "git",
  8847. "url": "https://github.com/hyperf/watcher.git",
  8848. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8849. },
  8850. "dist": {
  8851. "type": "zip",
  8852. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8853. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8854. "shasum": "",
  8855. "mirrors": [
  8856. {
  8857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8858. "preferred": true
  8859. }
  8860. ]
  8861. },
  8862. "require": {
  8863. "ext-posix": "*",
  8864. "hyperf/codec": "~3.1.0",
  8865. "hyperf/command": "~3.1.0",
  8866. "hyperf/di": "~3.1.0",
  8867. "hyperf/framework": "~3.1.0",
  8868. "hyperf/support": "~3.1.0",
  8869. "php": ">=8.1"
  8870. },
  8871. "type": "library",
  8872. "extra": {
  8873. "hyperf": {
  8874. "config": "Hyperf\\Watcher\\ConfigProvider"
  8875. },
  8876. "branch-alias": {
  8877. "dev-master": "3.1-dev"
  8878. }
  8879. },
  8880. "autoload": {
  8881. "files": [
  8882. "src/Functions.php"
  8883. ],
  8884. "psr-4": {
  8885. "Hyperf\\Watcher\\": "src/"
  8886. }
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "MIT"
  8891. ],
  8892. "description": "Hot reload watcher for Hyperf",
  8893. "keywords": [
  8894. "dev",
  8895. "hyperf",
  8896. "php"
  8897. ],
  8898. "support": {
  8899. "issues": "https://github.com/hyperf/watcher/issues",
  8900. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8901. },
  8902. "funding": [
  8903. {
  8904. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8905. "type": "custom"
  8906. },
  8907. {
  8908. "url": "https://opencollective.com/hyperf",
  8909. "type": "open_collective"
  8910. }
  8911. ],
  8912. "time": "2024-10-06T12:33:12+00:00"
  8913. },
  8914. {
  8915. "name": "mockery/mockery",
  8916. "version": "1.6.12",
  8917. "source": {
  8918. "type": "git",
  8919. "url": "https://github.com/mockery/mockery.git",
  8920. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8921. },
  8922. "dist": {
  8923. "type": "zip",
  8924. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8925. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8926. "shasum": "",
  8927. "mirrors": [
  8928. {
  8929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8930. "preferred": true
  8931. }
  8932. ]
  8933. },
  8934. "require": {
  8935. "hamcrest/hamcrest-php": "^2.0.1",
  8936. "lib-pcre": ">=7.0",
  8937. "php": ">=7.3"
  8938. },
  8939. "conflict": {
  8940. "phpunit/phpunit": "<8.0"
  8941. },
  8942. "require-dev": {
  8943. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8944. "symplify/easy-coding-standard": "^12.1.14"
  8945. },
  8946. "type": "library",
  8947. "autoload": {
  8948. "files": [
  8949. "library/helpers.php",
  8950. "library/Mockery.php"
  8951. ],
  8952. "psr-4": {
  8953. "Mockery\\": "library/Mockery"
  8954. }
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "BSD-3-Clause"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Pádraic Brady",
  8963. "email": "padraic.brady@gmail.com",
  8964. "homepage": "https://github.com/padraic",
  8965. "role": "Author"
  8966. },
  8967. {
  8968. "name": "Dave Marshall",
  8969. "email": "dave.marshall@atstsolutions.co.uk",
  8970. "homepage": "https://davedevelopment.co.uk",
  8971. "role": "Developer"
  8972. },
  8973. {
  8974. "name": "Nathanael Esayeas",
  8975. "email": "nathanael.esayeas@protonmail.com",
  8976. "homepage": "https://github.com/ghostwriter",
  8977. "role": "Lead Developer"
  8978. }
  8979. ],
  8980. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8981. "homepage": "https://github.com/mockery/mockery",
  8982. "keywords": [
  8983. "BDD",
  8984. "TDD",
  8985. "library",
  8986. "mock",
  8987. "mock objects",
  8988. "mockery",
  8989. "stub",
  8990. "test",
  8991. "test double",
  8992. "testing"
  8993. ],
  8994. "support": {
  8995. "docs": "https://docs.mockery.io/",
  8996. "issues": "https://github.com/mockery/mockery/issues",
  8997. "rss": "https://github.com/mockery/mockery/releases.atom",
  8998. "security": "https://github.com/mockery/mockery/security/advisories",
  8999. "source": "https://github.com/mockery/mockery"
  9000. },
  9001. "time": "2024-05-16T03:13:13+00:00"
  9002. },
  9003. {
  9004. "name": "myclabs/deep-copy",
  9005. "version": "1.13.0",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/myclabs/DeepCopy.git",
  9009. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  9014. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  9015. "shasum": "",
  9016. "mirrors": [
  9017. {
  9018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9019. "preferred": true
  9020. }
  9021. ]
  9022. },
  9023. "require": {
  9024. "php": "^7.1 || ^8.0"
  9025. },
  9026. "conflict": {
  9027. "doctrine/collections": "<1.6.8",
  9028. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9029. },
  9030. "require-dev": {
  9031. "doctrine/collections": "^1.6.8",
  9032. "doctrine/common": "^2.13.3 || ^3.2.2",
  9033. "phpspec/prophecy": "^1.10",
  9034. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9035. },
  9036. "type": "library",
  9037. "autoload": {
  9038. "files": [
  9039. "src/DeepCopy/deep_copy.php"
  9040. ],
  9041. "psr-4": {
  9042. "DeepCopy\\": "src/DeepCopy/"
  9043. }
  9044. },
  9045. "notification-url": "https://packagist.org/downloads/",
  9046. "license": [
  9047. "MIT"
  9048. ],
  9049. "description": "Create deep copies (clones) of your objects",
  9050. "keywords": [
  9051. "clone",
  9052. "copy",
  9053. "duplicate",
  9054. "object",
  9055. "object graph"
  9056. ],
  9057. "support": {
  9058. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9059. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  9060. },
  9061. "funding": [
  9062. {
  9063. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9064. "type": "tidelift"
  9065. }
  9066. ],
  9067. "time": "2025-02-12T12:17:51+00:00"
  9068. },
  9069. {
  9070. "name": "phar-io/manifest",
  9071. "version": "dev-master",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/phar-io/manifest.git",
  9075. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9080. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9081. "shasum": "",
  9082. "mirrors": [
  9083. {
  9084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9085. "preferred": true
  9086. }
  9087. ]
  9088. },
  9089. "require": {
  9090. "ext-dom": "*",
  9091. "ext-libxml": "*",
  9092. "ext-phar": "*",
  9093. "ext-xmlwriter": "*",
  9094. "phar-io/version": "^3.0.1",
  9095. "php": "^7.2 || ^8.0"
  9096. },
  9097. "default-branch": true,
  9098. "type": "library",
  9099. "extra": {
  9100. "branch-alias": {
  9101. "dev-master": "2.0.x-dev"
  9102. }
  9103. },
  9104. "autoload": {
  9105. "classmap": [
  9106. "src/"
  9107. ]
  9108. },
  9109. "notification-url": "https://packagist.org/downloads/",
  9110. "license": [
  9111. "BSD-3-Clause"
  9112. ],
  9113. "authors": [
  9114. {
  9115. "name": "Arne Blankerts",
  9116. "email": "arne@blankerts.de",
  9117. "role": "Developer"
  9118. },
  9119. {
  9120. "name": "Sebastian Heuer",
  9121. "email": "sebastian@phpeople.de",
  9122. "role": "Developer"
  9123. },
  9124. {
  9125. "name": "Sebastian Bergmann",
  9126. "email": "sebastian@phpunit.de",
  9127. "role": "Developer"
  9128. }
  9129. ],
  9130. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9131. "support": {
  9132. "issues": "https://github.com/phar-io/manifest/issues",
  9133. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9134. },
  9135. "funding": [
  9136. {
  9137. "url": "https://github.com/theseer",
  9138. "type": "github"
  9139. }
  9140. ],
  9141. "time": "2024-03-03T12:33:53+00:00"
  9142. },
  9143. {
  9144. "name": "phar-io/version",
  9145. "version": "3.2.1",
  9146. "source": {
  9147. "type": "git",
  9148. "url": "https://github.com/phar-io/version.git",
  9149. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9150. },
  9151. "dist": {
  9152. "type": "zip",
  9153. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9154. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9155. "shasum": "",
  9156. "mirrors": [
  9157. {
  9158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9159. "preferred": true
  9160. }
  9161. ]
  9162. },
  9163. "require": {
  9164. "php": "^7.2 || ^8.0"
  9165. },
  9166. "type": "library",
  9167. "autoload": {
  9168. "classmap": [
  9169. "src/"
  9170. ]
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "BSD-3-Clause"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Arne Blankerts",
  9179. "email": "arne@blankerts.de",
  9180. "role": "Developer"
  9181. },
  9182. {
  9183. "name": "Sebastian Heuer",
  9184. "email": "sebastian@phpeople.de",
  9185. "role": "Developer"
  9186. },
  9187. {
  9188. "name": "Sebastian Bergmann",
  9189. "email": "sebastian@phpunit.de",
  9190. "role": "Developer"
  9191. }
  9192. ],
  9193. "description": "Library for handling version information and constraints",
  9194. "support": {
  9195. "issues": "https://github.com/phar-io/version/issues",
  9196. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9197. },
  9198. "time": "2022-02-21T01:04:05+00:00"
  9199. },
  9200. {
  9201. "name": "phpstan/phpstan",
  9202. "version": "1.12.24",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/phpstan/phpstan.git",
  9206. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/338b92068f58d9f8035b76aed6cf2b9e5624c025",
  9211. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025",
  9212. "shasum": "",
  9213. "mirrors": [
  9214. {
  9215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9216. "preferred": true
  9217. }
  9218. ]
  9219. },
  9220. "require": {
  9221. "php": "^7.2|^8.0"
  9222. },
  9223. "conflict": {
  9224. "phpstan/phpstan-shim": "*"
  9225. },
  9226. "bin": [
  9227. "phpstan",
  9228. "phpstan.phar"
  9229. ],
  9230. "type": "library",
  9231. "autoload": {
  9232. "files": [
  9233. "bootstrap.php"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "description": "PHPStan - PHP Static Analysis Tool",
  9241. "keywords": [
  9242. "dev",
  9243. "static analysis"
  9244. ],
  9245. "support": {
  9246. "docs": "https://phpstan.org/user-guide/getting-started",
  9247. "forum": "https://github.com/phpstan/phpstan/discussions",
  9248. "issues": "https://github.com/phpstan/phpstan/issues",
  9249. "security": "https://github.com/phpstan/phpstan/security/policy",
  9250. "source": "https://github.com/phpstan/phpstan-src"
  9251. },
  9252. "funding": [
  9253. {
  9254. "url": "https://github.com/ondrejmirtes",
  9255. "type": "github"
  9256. },
  9257. {
  9258. "url": "https://github.com/phpstan",
  9259. "type": "github"
  9260. }
  9261. ],
  9262. "time": "2025-04-16T13:01:53+00:00"
  9263. },
  9264. {
  9265. "name": "phpunit/php-code-coverage",
  9266. "version": "10.1.16",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9270. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9275. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9276. "shasum": "",
  9277. "mirrors": [
  9278. {
  9279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9280. "preferred": true
  9281. }
  9282. ]
  9283. },
  9284. "require": {
  9285. "ext-dom": "*",
  9286. "ext-libxml": "*",
  9287. "ext-xmlwriter": "*",
  9288. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9289. "php": ">=8.1",
  9290. "phpunit/php-file-iterator": "^4.1.0",
  9291. "phpunit/php-text-template": "^3.0.1",
  9292. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9293. "sebastian/complexity": "^3.2.0",
  9294. "sebastian/environment": "^6.1.0",
  9295. "sebastian/lines-of-code": "^2.0.2",
  9296. "sebastian/version": "^4.0.1",
  9297. "theseer/tokenizer": "^1.2.3"
  9298. },
  9299. "require-dev": {
  9300. "phpunit/phpunit": "^10.1"
  9301. },
  9302. "suggest": {
  9303. "ext-pcov": "PHP extension that provides line coverage",
  9304. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9305. },
  9306. "type": "library",
  9307. "extra": {
  9308. "branch-alias": {
  9309. "dev-main": "10.1.x-dev"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "classmap": [
  9314. "src/"
  9315. ]
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "BSD-3-Clause"
  9320. ],
  9321. "authors": [
  9322. {
  9323. "name": "Sebastian Bergmann",
  9324. "email": "sebastian@phpunit.de",
  9325. "role": "lead"
  9326. }
  9327. ],
  9328. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9329. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9330. "keywords": [
  9331. "coverage",
  9332. "testing",
  9333. "xunit"
  9334. ],
  9335. "support": {
  9336. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9337. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9338. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9339. },
  9340. "funding": [
  9341. {
  9342. "url": "https://github.com/sebastianbergmann",
  9343. "type": "github"
  9344. }
  9345. ],
  9346. "time": "2024-08-22T04:31:57+00:00"
  9347. },
  9348. {
  9349. "name": "phpunit/php-file-iterator",
  9350. "version": "4.1.0",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9354. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9359. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9360. "shasum": "",
  9361. "mirrors": [
  9362. {
  9363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9364. "preferred": true
  9365. }
  9366. ]
  9367. },
  9368. "require": {
  9369. "php": ">=8.1"
  9370. },
  9371. "require-dev": {
  9372. "phpunit/phpunit": "^10.0"
  9373. },
  9374. "type": "library",
  9375. "extra": {
  9376. "branch-alias": {
  9377. "dev-main": "4.0-dev"
  9378. }
  9379. },
  9380. "autoload": {
  9381. "classmap": [
  9382. "src/"
  9383. ]
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "BSD-3-Clause"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Sebastian Bergmann",
  9392. "email": "sebastian@phpunit.de",
  9393. "role": "lead"
  9394. }
  9395. ],
  9396. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9397. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9398. "keywords": [
  9399. "filesystem",
  9400. "iterator"
  9401. ],
  9402. "support": {
  9403. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9404. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9405. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9406. },
  9407. "funding": [
  9408. {
  9409. "url": "https://github.com/sebastianbergmann",
  9410. "type": "github"
  9411. }
  9412. ],
  9413. "time": "2023-08-31T06:24:48+00:00"
  9414. },
  9415. {
  9416. "name": "phpunit/php-invoker",
  9417. "version": "4.0.0",
  9418. "source": {
  9419. "type": "git",
  9420. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9421. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9422. },
  9423. "dist": {
  9424. "type": "zip",
  9425. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9426. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9427. "shasum": "",
  9428. "mirrors": [
  9429. {
  9430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9431. "preferred": true
  9432. }
  9433. ]
  9434. },
  9435. "require": {
  9436. "php": ">=8.1"
  9437. },
  9438. "require-dev": {
  9439. "ext-pcntl": "*",
  9440. "phpunit/phpunit": "^10.0"
  9441. },
  9442. "suggest": {
  9443. "ext-pcntl": "*"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-main": "4.0-dev"
  9449. }
  9450. },
  9451. "autoload": {
  9452. "classmap": [
  9453. "src/"
  9454. ]
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "BSD-3-Clause"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Sebastian Bergmann",
  9463. "email": "sebastian@phpunit.de",
  9464. "role": "lead"
  9465. }
  9466. ],
  9467. "description": "Invoke callables with a timeout",
  9468. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9469. "keywords": [
  9470. "process"
  9471. ],
  9472. "support": {
  9473. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9474. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9475. },
  9476. "funding": [
  9477. {
  9478. "url": "https://github.com/sebastianbergmann",
  9479. "type": "github"
  9480. }
  9481. ],
  9482. "time": "2023-02-03T06:56:09+00:00"
  9483. },
  9484. {
  9485. "name": "phpunit/php-text-template",
  9486. "version": "3.0.1",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9490. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9495. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9496. "shasum": "",
  9497. "mirrors": [
  9498. {
  9499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9500. "preferred": true
  9501. }
  9502. ]
  9503. },
  9504. "require": {
  9505. "php": ">=8.1"
  9506. },
  9507. "require-dev": {
  9508. "phpunit/phpunit": "^10.0"
  9509. },
  9510. "type": "library",
  9511. "extra": {
  9512. "branch-alias": {
  9513. "dev-main": "3.0-dev"
  9514. }
  9515. },
  9516. "autoload": {
  9517. "classmap": [
  9518. "src/"
  9519. ]
  9520. },
  9521. "notification-url": "https://packagist.org/downloads/",
  9522. "license": [
  9523. "BSD-3-Clause"
  9524. ],
  9525. "authors": [
  9526. {
  9527. "name": "Sebastian Bergmann",
  9528. "email": "sebastian@phpunit.de",
  9529. "role": "lead"
  9530. }
  9531. ],
  9532. "description": "Simple template engine.",
  9533. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9534. "keywords": [
  9535. "template"
  9536. ],
  9537. "support": {
  9538. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9539. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9540. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9541. },
  9542. "funding": [
  9543. {
  9544. "url": "https://github.com/sebastianbergmann",
  9545. "type": "github"
  9546. }
  9547. ],
  9548. "time": "2023-08-31T14:07:24+00:00"
  9549. },
  9550. {
  9551. "name": "phpunit/php-timer",
  9552. "version": "6.0.0",
  9553. "source": {
  9554. "type": "git",
  9555. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9556. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9557. },
  9558. "dist": {
  9559. "type": "zip",
  9560. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9561. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9562. "shasum": "",
  9563. "mirrors": [
  9564. {
  9565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9566. "preferred": true
  9567. }
  9568. ]
  9569. },
  9570. "require": {
  9571. "php": ">=8.1"
  9572. },
  9573. "require-dev": {
  9574. "phpunit/phpunit": "^10.0"
  9575. },
  9576. "type": "library",
  9577. "extra": {
  9578. "branch-alias": {
  9579. "dev-main": "6.0-dev"
  9580. }
  9581. },
  9582. "autoload": {
  9583. "classmap": [
  9584. "src/"
  9585. ]
  9586. },
  9587. "notification-url": "https://packagist.org/downloads/",
  9588. "license": [
  9589. "BSD-3-Clause"
  9590. ],
  9591. "authors": [
  9592. {
  9593. "name": "Sebastian Bergmann",
  9594. "email": "sebastian@phpunit.de",
  9595. "role": "lead"
  9596. }
  9597. ],
  9598. "description": "Utility class for timing",
  9599. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9600. "keywords": [
  9601. "timer"
  9602. ],
  9603. "support": {
  9604. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9605. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://github.com/sebastianbergmann",
  9610. "type": "github"
  9611. }
  9612. ],
  9613. "time": "2023-02-03T06:57:52+00:00"
  9614. },
  9615. {
  9616. "name": "phpunit/phpunit",
  9617. "version": "10.5.45",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9621. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  9626. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  9627. "shasum": "",
  9628. "mirrors": [
  9629. {
  9630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9631. "preferred": true
  9632. }
  9633. ]
  9634. },
  9635. "require": {
  9636. "ext-dom": "*",
  9637. "ext-json": "*",
  9638. "ext-libxml": "*",
  9639. "ext-mbstring": "*",
  9640. "ext-xml": "*",
  9641. "ext-xmlwriter": "*",
  9642. "myclabs/deep-copy": "^1.12.1",
  9643. "phar-io/manifest": "^2.0.4",
  9644. "phar-io/version": "^3.2.1",
  9645. "php": ">=8.1",
  9646. "phpunit/php-code-coverage": "^10.1.16",
  9647. "phpunit/php-file-iterator": "^4.1.0",
  9648. "phpunit/php-invoker": "^4.0.0",
  9649. "phpunit/php-text-template": "^3.0.1",
  9650. "phpunit/php-timer": "^6.0.0",
  9651. "sebastian/cli-parser": "^2.0.1",
  9652. "sebastian/code-unit": "^2.0.0",
  9653. "sebastian/comparator": "^5.0.3",
  9654. "sebastian/diff": "^5.1.1",
  9655. "sebastian/environment": "^6.1.0",
  9656. "sebastian/exporter": "^5.1.2",
  9657. "sebastian/global-state": "^6.0.2",
  9658. "sebastian/object-enumerator": "^5.0.0",
  9659. "sebastian/recursion-context": "^5.0.0",
  9660. "sebastian/type": "^4.0.0",
  9661. "sebastian/version": "^4.0.1"
  9662. },
  9663. "suggest": {
  9664. "ext-soap": "To be able to generate mocks based on WSDL files"
  9665. },
  9666. "bin": [
  9667. "phpunit"
  9668. ],
  9669. "type": "library",
  9670. "extra": {
  9671. "branch-alias": {
  9672. "dev-main": "10.5-dev"
  9673. }
  9674. },
  9675. "autoload": {
  9676. "files": [
  9677. "src/Framework/Assert/Functions.php"
  9678. ],
  9679. "classmap": [
  9680. "src/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "BSD-3-Clause"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Sebastian Bergmann",
  9690. "email": "sebastian@phpunit.de",
  9691. "role": "lead"
  9692. }
  9693. ],
  9694. "description": "The PHP Unit Testing framework.",
  9695. "homepage": "https://phpunit.de/",
  9696. "keywords": [
  9697. "phpunit",
  9698. "testing",
  9699. "xunit"
  9700. ],
  9701. "support": {
  9702. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9703. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9704. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  9705. },
  9706. "funding": [
  9707. {
  9708. "url": "https://phpunit.de/sponsors.html",
  9709. "type": "custom"
  9710. },
  9711. {
  9712. "url": "https://github.com/sebastianbergmann",
  9713. "type": "github"
  9714. },
  9715. {
  9716. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9717. "type": "tidelift"
  9718. }
  9719. ],
  9720. "time": "2025-02-06T16:08:12+00:00"
  9721. },
  9722. {
  9723. "name": "react/cache",
  9724. "version": "v1.2.0",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/reactphp/cache.git",
  9728. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9733. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9734. "shasum": "",
  9735. "mirrors": [
  9736. {
  9737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9738. "preferred": true
  9739. }
  9740. ]
  9741. },
  9742. "require": {
  9743. "php": ">=5.3.0",
  9744. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9745. },
  9746. "require-dev": {
  9747. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9748. },
  9749. "type": "library",
  9750. "autoload": {
  9751. "psr-4": {
  9752. "React\\Cache\\": "src/"
  9753. }
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "MIT"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Christian Lück",
  9762. "email": "christian@clue.engineering",
  9763. "homepage": "https://clue.engineering/"
  9764. },
  9765. {
  9766. "name": "Cees-Jan Kiewiet",
  9767. "email": "reactphp@ceesjankiewiet.nl",
  9768. "homepage": "https://wyrihaximus.net/"
  9769. },
  9770. {
  9771. "name": "Jan Sorgalla",
  9772. "email": "jsorgalla@gmail.com",
  9773. "homepage": "https://sorgalla.com/"
  9774. },
  9775. {
  9776. "name": "Chris Boden",
  9777. "email": "cboden@gmail.com",
  9778. "homepage": "https://cboden.dev/"
  9779. }
  9780. ],
  9781. "description": "Async, Promise-based cache interface for ReactPHP",
  9782. "keywords": [
  9783. "cache",
  9784. "caching",
  9785. "promise",
  9786. "reactphp"
  9787. ],
  9788. "support": {
  9789. "issues": "https://github.com/reactphp/cache/issues",
  9790. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9791. },
  9792. "funding": [
  9793. {
  9794. "url": "https://opencollective.com/reactphp",
  9795. "type": "open_collective"
  9796. }
  9797. ],
  9798. "time": "2022-11-30T15:59:55+00:00"
  9799. },
  9800. {
  9801. "name": "react/child-process",
  9802. "version": "v0.6.6",
  9803. "source": {
  9804. "type": "git",
  9805. "url": "https://github.com/reactphp/child-process.git",
  9806. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9807. },
  9808. "dist": {
  9809. "type": "zip",
  9810. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9811. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9812. "shasum": "",
  9813. "mirrors": [
  9814. {
  9815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9816. "preferred": true
  9817. }
  9818. ]
  9819. },
  9820. "require": {
  9821. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9822. "php": ">=5.3.0",
  9823. "react/event-loop": "^1.2",
  9824. "react/stream": "^1.4"
  9825. },
  9826. "require-dev": {
  9827. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9828. "react/socket": "^1.16",
  9829. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9830. },
  9831. "type": "library",
  9832. "autoload": {
  9833. "psr-4": {
  9834. "React\\ChildProcess\\": "src/"
  9835. }
  9836. },
  9837. "notification-url": "https://packagist.org/downloads/",
  9838. "license": [
  9839. "MIT"
  9840. ],
  9841. "authors": [
  9842. {
  9843. "name": "Christian Lück",
  9844. "email": "christian@clue.engineering",
  9845. "homepage": "https://clue.engineering/"
  9846. },
  9847. {
  9848. "name": "Cees-Jan Kiewiet",
  9849. "email": "reactphp@ceesjankiewiet.nl",
  9850. "homepage": "https://wyrihaximus.net/"
  9851. },
  9852. {
  9853. "name": "Jan Sorgalla",
  9854. "email": "jsorgalla@gmail.com",
  9855. "homepage": "https://sorgalla.com/"
  9856. },
  9857. {
  9858. "name": "Chris Boden",
  9859. "email": "cboden@gmail.com",
  9860. "homepage": "https://cboden.dev/"
  9861. }
  9862. ],
  9863. "description": "Event-driven library for executing child processes with ReactPHP.",
  9864. "keywords": [
  9865. "event-driven",
  9866. "process",
  9867. "reactphp"
  9868. ],
  9869. "support": {
  9870. "issues": "https://github.com/reactphp/child-process/issues",
  9871. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://opencollective.com/reactphp",
  9876. "type": "open_collective"
  9877. }
  9878. ],
  9879. "time": "2025-01-01T16:37:48+00:00"
  9880. },
  9881. {
  9882. "name": "react/dns",
  9883. "version": "v1.12.0",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/reactphp/dns.git",
  9887. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9892. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9893. "shasum": "",
  9894. "mirrors": [
  9895. {
  9896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9897. "preferred": true
  9898. }
  9899. ]
  9900. },
  9901. "require": {
  9902. "php": ">=5.3.0",
  9903. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9904. "react/event-loop": "^1.2",
  9905. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9906. },
  9907. "require-dev": {
  9908. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9909. "react/async": "^4 || ^3 || ^2",
  9910. "react/promise-timer": "^1.9"
  9911. },
  9912. "type": "library",
  9913. "autoload": {
  9914. "psr-4": {
  9915. "React\\Dns\\": "src/"
  9916. }
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "MIT"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Christian Lück",
  9925. "email": "christian@clue.engineering",
  9926. "homepage": "https://clue.engineering/"
  9927. },
  9928. {
  9929. "name": "Cees-Jan Kiewiet",
  9930. "email": "reactphp@ceesjankiewiet.nl",
  9931. "homepage": "https://wyrihaximus.net/"
  9932. },
  9933. {
  9934. "name": "Jan Sorgalla",
  9935. "email": "jsorgalla@gmail.com",
  9936. "homepage": "https://sorgalla.com/"
  9937. },
  9938. {
  9939. "name": "Chris Boden",
  9940. "email": "cboden@gmail.com",
  9941. "homepage": "https://cboden.dev/"
  9942. }
  9943. ],
  9944. "description": "Async DNS resolver for ReactPHP",
  9945. "keywords": [
  9946. "async",
  9947. "dns",
  9948. "dns-resolver",
  9949. "reactphp"
  9950. ],
  9951. "support": {
  9952. "issues": "https://github.com/reactphp/dns/issues",
  9953. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9954. },
  9955. "funding": [
  9956. {
  9957. "url": "https://opencollective.com/reactphp",
  9958. "type": "open_collective"
  9959. }
  9960. ],
  9961. "time": "2023-11-29T12:41:06+00:00"
  9962. },
  9963. {
  9964. "name": "react/event-loop",
  9965. "version": "v1.5.0",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/reactphp/event-loop.git",
  9969. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9974. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9975. "shasum": "",
  9976. "mirrors": [
  9977. {
  9978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9979. "preferred": true
  9980. }
  9981. ]
  9982. },
  9983. "require": {
  9984. "php": ">=5.3.0"
  9985. },
  9986. "require-dev": {
  9987. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9988. },
  9989. "suggest": {
  9990. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9991. },
  9992. "type": "library",
  9993. "autoload": {
  9994. "psr-4": {
  9995. "React\\EventLoop\\": "src/"
  9996. }
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "MIT"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "Christian Lück",
  10005. "email": "christian@clue.engineering",
  10006. "homepage": "https://clue.engineering/"
  10007. },
  10008. {
  10009. "name": "Cees-Jan Kiewiet",
  10010. "email": "reactphp@ceesjankiewiet.nl",
  10011. "homepage": "https://wyrihaximus.net/"
  10012. },
  10013. {
  10014. "name": "Jan Sorgalla",
  10015. "email": "jsorgalla@gmail.com",
  10016. "homepage": "https://sorgalla.com/"
  10017. },
  10018. {
  10019. "name": "Chris Boden",
  10020. "email": "cboden@gmail.com",
  10021. "homepage": "https://cboden.dev/"
  10022. }
  10023. ],
  10024. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10025. "keywords": [
  10026. "asynchronous",
  10027. "event-loop"
  10028. ],
  10029. "support": {
  10030. "issues": "https://github.com/reactphp/event-loop/issues",
  10031. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10032. },
  10033. "funding": [
  10034. {
  10035. "url": "https://opencollective.com/reactphp",
  10036. "type": "open_collective"
  10037. }
  10038. ],
  10039. "time": "2023-11-13T13:48:05+00:00"
  10040. },
  10041. {
  10042. "name": "react/promise",
  10043. "version": "v3.1.0",
  10044. "source": {
  10045. "type": "git",
  10046. "url": "https://github.com/reactphp/promise.git",
  10047. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  10048. },
  10049. "dist": {
  10050. "type": "zip",
  10051. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  10052. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  10053. "shasum": "",
  10054. "mirrors": [
  10055. {
  10056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10057. "preferred": true
  10058. }
  10059. ]
  10060. },
  10061. "require": {
  10062. "php": ">=7.1.0"
  10063. },
  10064. "require-dev": {
  10065. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10066. "phpunit/phpunit": "^9.6 || ^7.5"
  10067. },
  10068. "type": "library",
  10069. "autoload": {
  10070. "files": [
  10071. "src/functions_include.php"
  10072. ],
  10073. "psr-4": {
  10074. "React\\Promise\\": "src/"
  10075. }
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "MIT"
  10080. ],
  10081. "authors": [
  10082. {
  10083. "name": "Jan Sorgalla",
  10084. "email": "jsorgalla@gmail.com",
  10085. "homepage": "https://sorgalla.com/"
  10086. },
  10087. {
  10088. "name": "Christian Lück",
  10089. "email": "christian@clue.engineering",
  10090. "homepage": "https://clue.engineering/"
  10091. },
  10092. {
  10093. "name": "Cees-Jan Kiewiet",
  10094. "email": "reactphp@ceesjankiewiet.nl",
  10095. "homepage": "https://wyrihaximus.net/"
  10096. },
  10097. {
  10098. "name": "Chris Boden",
  10099. "email": "cboden@gmail.com",
  10100. "homepage": "https://cboden.dev/"
  10101. }
  10102. ],
  10103. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10104. "keywords": [
  10105. "promise",
  10106. "promises"
  10107. ],
  10108. "support": {
  10109. "issues": "https://github.com/reactphp/promise/issues",
  10110. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  10111. },
  10112. "funding": [
  10113. {
  10114. "url": "https://opencollective.com/reactphp",
  10115. "type": "open_collective"
  10116. }
  10117. ],
  10118. "time": "2023-11-16T16:21:57+00:00"
  10119. },
  10120. {
  10121. "name": "react/socket",
  10122. "version": "v1.15.0",
  10123. "source": {
  10124. "type": "git",
  10125. "url": "https://github.com/reactphp/socket.git",
  10126. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  10127. },
  10128. "dist": {
  10129. "type": "zip",
  10130. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  10131. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  10132. "shasum": "",
  10133. "mirrors": [
  10134. {
  10135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10136. "preferred": true
  10137. }
  10138. ]
  10139. },
  10140. "require": {
  10141. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10142. "php": ">=5.3.0",
  10143. "react/dns": "^1.11",
  10144. "react/event-loop": "^1.2",
  10145. "react/promise": "^3 || ^2.6 || ^1.2.1",
  10146. "react/stream": "^1.2"
  10147. },
  10148. "require-dev": {
  10149. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10150. "react/async": "^4 || ^3 || ^2",
  10151. "react/promise-stream": "^1.4",
  10152. "react/promise-timer": "^1.10"
  10153. },
  10154. "type": "library",
  10155. "autoload": {
  10156. "psr-4": {
  10157. "React\\Socket\\": "src/"
  10158. }
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "MIT"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Christian Lück",
  10167. "email": "christian@clue.engineering",
  10168. "homepage": "https://clue.engineering/"
  10169. },
  10170. {
  10171. "name": "Cees-Jan Kiewiet",
  10172. "email": "reactphp@ceesjankiewiet.nl",
  10173. "homepage": "https://wyrihaximus.net/"
  10174. },
  10175. {
  10176. "name": "Jan Sorgalla",
  10177. "email": "jsorgalla@gmail.com",
  10178. "homepage": "https://sorgalla.com/"
  10179. },
  10180. {
  10181. "name": "Chris Boden",
  10182. "email": "cboden@gmail.com",
  10183. "homepage": "https://cboden.dev/"
  10184. }
  10185. ],
  10186. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10187. "keywords": [
  10188. "Connection",
  10189. "Socket",
  10190. "async",
  10191. "reactphp",
  10192. "stream"
  10193. ],
  10194. "support": {
  10195. "issues": "https://github.com/reactphp/socket/issues",
  10196. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  10197. },
  10198. "funding": [
  10199. {
  10200. "url": "https://opencollective.com/reactphp",
  10201. "type": "open_collective"
  10202. }
  10203. ],
  10204. "time": "2023-12-15T11:02:10+00:00"
  10205. },
  10206. {
  10207. "name": "react/stream",
  10208. "version": "1.x-dev",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/reactphp/stream.git",
  10212. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10217. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10218. "shasum": "",
  10219. "mirrors": [
  10220. {
  10221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10222. "preferred": true
  10223. }
  10224. ]
  10225. },
  10226. "require": {
  10227. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10228. "php": ">=5.3.8",
  10229. "react/event-loop": "^1.2"
  10230. },
  10231. "require-dev": {
  10232. "clue/stream-filter": "~1.2",
  10233. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10234. },
  10235. "type": "library",
  10236. "autoload": {
  10237. "psr-4": {
  10238. "React\\Stream\\": "src/"
  10239. }
  10240. },
  10241. "notification-url": "https://packagist.org/downloads/",
  10242. "license": [
  10243. "MIT"
  10244. ],
  10245. "authors": [
  10246. {
  10247. "name": "Christian Lück",
  10248. "email": "christian@clue.engineering",
  10249. "homepage": "https://clue.engineering/"
  10250. },
  10251. {
  10252. "name": "Cees-Jan Kiewiet",
  10253. "email": "reactphp@ceesjankiewiet.nl",
  10254. "homepage": "https://wyrihaximus.net/"
  10255. },
  10256. {
  10257. "name": "Jan Sorgalla",
  10258. "email": "jsorgalla@gmail.com",
  10259. "homepage": "https://sorgalla.com/"
  10260. },
  10261. {
  10262. "name": "Chris Boden",
  10263. "email": "cboden@gmail.com",
  10264. "homepage": "https://cboden.dev/"
  10265. }
  10266. ],
  10267. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10268. "keywords": [
  10269. "event-driven",
  10270. "io",
  10271. "non-blocking",
  10272. "pipe",
  10273. "reactphp",
  10274. "readable",
  10275. "stream",
  10276. "writable"
  10277. ],
  10278. "support": {
  10279. "issues": "https://github.com/reactphp/stream/issues",
  10280. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10281. },
  10282. "funding": [
  10283. {
  10284. "url": "https://opencollective.com/reactphp",
  10285. "type": "open_collective"
  10286. }
  10287. ],
  10288. "time": "2024-06-11T12:45:25+00:00"
  10289. },
  10290. {
  10291. "name": "sebastian/cli-parser",
  10292. "version": "2.0.1",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10296. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10301. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10302. "shasum": "",
  10303. "mirrors": [
  10304. {
  10305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10306. "preferred": true
  10307. }
  10308. ]
  10309. },
  10310. "require": {
  10311. "php": ">=8.1"
  10312. },
  10313. "require-dev": {
  10314. "phpunit/phpunit": "^10.0"
  10315. },
  10316. "type": "library",
  10317. "extra": {
  10318. "branch-alias": {
  10319. "dev-main": "2.0-dev"
  10320. }
  10321. },
  10322. "autoload": {
  10323. "classmap": [
  10324. "src/"
  10325. ]
  10326. },
  10327. "notification-url": "https://packagist.org/downloads/",
  10328. "license": [
  10329. "BSD-3-Clause"
  10330. ],
  10331. "authors": [
  10332. {
  10333. "name": "Sebastian Bergmann",
  10334. "email": "sebastian@phpunit.de",
  10335. "role": "lead"
  10336. }
  10337. ],
  10338. "description": "Library for parsing CLI options",
  10339. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10340. "support": {
  10341. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10342. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10343. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10344. },
  10345. "funding": [
  10346. {
  10347. "url": "https://github.com/sebastianbergmann",
  10348. "type": "github"
  10349. }
  10350. ],
  10351. "time": "2024-03-02T07:12:49+00:00"
  10352. },
  10353. {
  10354. "name": "sebastian/code-unit",
  10355. "version": "2.0.0",
  10356. "source": {
  10357. "type": "git",
  10358. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10359. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10360. },
  10361. "dist": {
  10362. "type": "zip",
  10363. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10364. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10365. "shasum": "",
  10366. "mirrors": [
  10367. {
  10368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10369. "preferred": true
  10370. }
  10371. ]
  10372. },
  10373. "require": {
  10374. "php": ">=8.1"
  10375. },
  10376. "require-dev": {
  10377. "phpunit/phpunit": "^10.0"
  10378. },
  10379. "type": "library",
  10380. "extra": {
  10381. "branch-alias": {
  10382. "dev-main": "2.0-dev"
  10383. }
  10384. },
  10385. "autoload": {
  10386. "classmap": [
  10387. "src/"
  10388. ]
  10389. },
  10390. "notification-url": "https://packagist.org/downloads/",
  10391. "license": [
  10392. "BSD-3-Clause"
  10393. ],
  10394. "authors": [
  10395. {
  10396. "name": "Sebastian Bergmann",
  10397. "email": "sebastian@phpunit.de",
  10398. "role": "lead"
  10399. }
  10400. ],
  10401. "description": "Collection of value objects that represent the PHP code units",
  10402. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10403. "support": {
  10404. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10405. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://github.com/sebastianbergmann",
  10410. "type": "github"
  10411. }
  10412. ],
  10413. "time": "2023-02-03T06:58:43+00:00"
  10414. },
  10415. {
  10416. "name": "sebastian/code-unit-reverse-lookup",
  10417. "version": "3.0.0",
  10418. "source": {
  10419. "type": "git",
  10420. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10421. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10422. },
  10423. "dist": {
  10424. "type": "zip",
  10425. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10426. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10427. "shasum": "",
  10428. "mirrors": [
  10429. {
  10430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10431. "preferred": true
  10432. }
  10433. ]
  10434. },
  10435. "require": {
  10436. "php": ">=8.1"
  10437. },
  10438. "require-dev": {
  10439. "phpunit/phpunit": "^10.0"
  10440. },
  10441. "type": "library",
  10442. "extra": {
  10443. "branch-alias": {
  10444. "dev-main": "3.0-dev"
  10445. }
  10446. },
  10447. "autoload": {
  10448. "classmap": [
  10449. "src/"
  10450. ]
  10451. },
  10452. "notification-url": "https://packagist.org/downloads/",
  10453. "license": [
  10454. "BSD-3-Clause"
  10455. ],
  10456. "authors": [
  10457. {
  10458. "name": "Sebastian Bergmann",
  10459. "email": "sebastian@phpunit.de"
  10460. }
  10461. ],
  10462. "description": "Looks up which function or method a line of code belongs to",
  10463. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10464. "support": {
  10465. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10466. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10467. },
  10468. "funding": [
  10469. {
  10470. "url": "https://github.com/sebastianbergmann",
  10471. "type": "github"
  10472. }
  10473. ],
  10474. "time": "2023-02-03T06:59:15+00:00"
  10475. },
  10476. {
  10477. "name": "sebastian/comparator",
  10478. "version": "5.0.3",
  10479. "source": {
  10480. "type": "git",
  10481. "url": "https://github.com/sebastianbergmann/comparator.git",
  10482. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10483. },
  10484. "dist": {
  10485. "type": "zip",
  10486. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10487. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10488. "shasum": "",
  10489. "mirrors": [
  10490. {
  10491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10492. "preferred": true
  10493. }
  10494. ]
  10495. },
  10496. "require": {
  10497. "ext-dom": "*",
  10498. "ext-mbstring": "*",
  10499. "php": ">=8.1",
  10500. "sebastian/diff": "^5.0",
  10501. "sebastian/exporter": "^5.0"
  10502. },
  10503. "require-dev": {
  10504. "phpunit/phpunit": "^10.5"
  10505. },
  10506. "type": "library",
  10507. "extra": {
  10508. "branch-alias": {
  10509. "dev-main": "5.0-dev"
  10510. }
  10511. },
  10512. "autoload": {
  10513. "classmap": [
  10514. "src/"
  10515. ]
  10516. },
  10517. "notification-url": "https://packagist.org/downloads/",
  10518. "license": [
  10519. "BSD-3-Clause"
  10520. ],
  10521. "authors": [
  10522. {
  10523. "name": "Sebastian Bergmann",
  10524. "email": "sebastian@phpunit.de"
  10525. },
  10526. {
  10527. "name": "Jeff Welch",
  10528. "email": "whatthejeff@gmail.com"
  10529. },
  10530. {
  10531. "name": "Volker Dusch",
  10532. "email": "github@wallbash.com"
  10533. },
  10534. {
  10535. "name": "Bernhard Schussek",
  10536. "email": "bschussek@2bepublished.at"
  10537. }
  10538. ],
  10539. "description": "Provides the functionality to compare PHP values for equality",
  10540. "homepage": "https://github.com/sebastianbergmann/comparator",
  10541. "keywords": [
  10542. "comparator",
  10543. "compare",
  10544. "equality"
  10545. ],
  10546. "support": {
  10547. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10548. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10549. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10550. },
  10551. "funding": [
  10552. {
  10553. "url": "https://github.com/sebastianbergmann",
  10554. "type": "github"
  10555. }
  10556. ],
  10557. "time": "2024-10-18T14:56:07+00:00"
  10558. },
  10559. {
  10560. "name": "sebastian/complexity",
  10561. "version": "3.2.0",
  10562. "source": {
  10563. "type": "git",
  10564. "url": "https://github.com/sebastianbergmann/complexity.git",
  10565. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10566. },
  10567. "dist": {
  10568. "type": "zip",
  10569. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10570. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10571. "shasum": "",
  10572. "mirrors": [
  10573. {
  10574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10575. "preferred": true
  10576. }
  10577. ]
  10578. },
  10579. "require": {
  10580. "nikic/php-parser": "^4.18 || ^5.0",
  10581. "php": ">=8.1"
  10582. },
  10583. "require-dev": {
  10584. "phpunit/phpunit": "^10.0"
  10585. },
  10586. "type": "library",
  10587. "extra": {
  10588. "branch-alias": {
  10589. "dev-main": "3.2-dev"
  10590. }
  10591. },
  10592. "autoload": {
  10593. "classmap": [
  10594. "src/"
  10595. ]
  10596. },
  10597. "notification-url": "https://packagist.org/downloads/",
  10598. "license": [
  10599. "BSD-3-Clause"
  10600. ],
  10601. "authors": [
  10602. {
  10603. "name": "Sebastian Bergmann",
  10604. "email": "sebastian@phpunit.de",
  10605. "role": "lead"
  10606. }
  10607. ],
  10608. "description": "Library for calculating the complexity of PHP code units",
  10609. "homepage": "https://github.com/sebastianbergmann/complexity",
  10610. "support": {
  10611. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10612. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10613. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://github.com/sebastianbergmann",
  10618. "type": "github"
  10619. }
  10620. ],
  10621. "time": "2023-12-21T08:37:17+00:00"
  10622. },
  10623. {
  10624. "name": "sebastian/diff",
  10625. "version": "5.1.1",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/sebastianbergmann/diff.git",
  10629. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10634. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10635. "shasum": "",
  10636. "mirrors": [
  10637. {
  10638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10639. "preferred": true
  10640. }
  10641. ]
  10642. },
  10643. "require": {
  10644. "php": ">=8.1"
  10645. },
  10646. "require-dev": {
  10647. "phpunit/phpunit": "^10.0",
  10648. "symfony/process": "^6.4"
  10649. },
  10650. "type": "library",
  10651. "extra": {
  10652. "branch-alias": {
  10653. "dev-main": "5.1-dev"
  10654. }
  10655. },
  10656. "autoload": {
  10657. "classmap": [
  10658. "src/"
  10659. ]
  10660. },
  10661. "notification-url": "https://packagist.org/downloads/",
  10662. "license": [
  10663. "BSD-3-Clause"
  10664. ],
  10665. "authors": [
  10666. {
  10667. "name": "Sebastian Bergmann",
  10668. "email": "sebastian@phpunit.de"
  10669. },
  10670. {
  10671. "name": "Kore Nordmann",
  10672. "email": "mail@kore-nordmann.de"
  10673. }
  10674. ],
  10675. "description": "Diff implementation",
  10676. "homepage": "https://github.com/sebastianbergmann/diff",
  10677. "keywords": [
  10678. "diff",
  10679. "udiff",
  10680. "unidiff",
  10681. "unified diff"
  10682. ],
  10683. "support": {
  10684. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10685. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10686. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10687. },
  10688. "funding": [
  10689. {
  10690. "url": "https://github.com/sebastianbergmann",
  10691. "type": "github"
  10692. }
  10693. ],
  10694. "time": "2024-03-02T07:15:17+00:00"
  10695. },
  10696. {
  10697. "name": "sebastian/environment",
  10698. "version": "6.1.0",
  10699. "source": {
  10700. "type": "git",
  10701. "url": "https://github.com/sebastianbergmann/environment.git",
  10702. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10703. },
  10704. "dist": {
  10705. "type": "zip",
  10706. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10707. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10708. "shasum": "",
  10709. "mirrors": [
  10710. {
  10711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10712. "preferred": true
  10713. }
  10714. ]
  10715. },
  10716. "require": {
  10717. "php": ">=8.1"
  10718. },
  10719. "require-dev": {
  10720. "phpunit/phpunit": "^10.0"
  10721. },
  10722. "suggest": {
  10723. "ext-posix": "*"
  10724. },
  10725. "type": "library",
  10726. "extra": {
  10727. "branch-alias": {
  10728. "dev-main": "6.1-dev"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "classmap": [
  10733. "src/"
  10734. ]
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "BSD-3-Clause"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Sebastian Bergmann",
  10743. "email": "sebastian@phpunit.de"
  10744. }
  10745. ],
  10746. "description": "Provides functionality to handle HHVM/PHP environments",
  10747. "homepage": "https://github.com/sebastianbergmann/environment",
  10748. "keywords": [
  10749. "Xdebug",
  10750. "environment",
  10751. "hhvm"
  10752. ],
  10753. "support": {
  10754. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10755. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10756. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10757. },
  10758. "funding": [
  10759. {
  10760. "url": "https://github.com/sebastianbergmann",
  10761. "type": "github"
  10762. }
  10763. ],
  10764. "time": "2024-03-23T08:47:14+00:00"
  10765. },
  10766. {
  10767. "name": "sebastian/exporter",
  10768. "version": "5.1.2",
  10769. "source": {
  10770. "type": "git",
  10771. "url": "https://github.com/sebastianbergmann/exporter.git",
  10772. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10773. },
  10774. "dist": {
  10775. "type": "zip",
  10776. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10777. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10778. "shasum": "",
  10779. "mirrors": [
  10780. {
  10781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10782. "preferred": true
  10783. }
  10784. ]
  10785. },
  10786. "require": {
  10787. "ext-mbstring": "*",
  10788. "php": ">=8.1",
  10789. "sebastian/recursion-context": "^5.0"
  10790. },
  10791. "require-dev": {
  10792. "phpunit/phpunit": "^10.0"
  10793. },
  10794. "type": "library",
  10795. "extra": {
  10796. "branch-alias": {
  10797. "dev-main": "5.1-dev"
  10798. }
  10799. },
  10800. "autoload": {
  10801. "classmap": [
  10802. "src/"
  10803. ]
  10804. },
  10805. "notification-url": "https://packagist.org/downloads/",
  10806. "license": [
  10807. "BSD-3-Clause"
  10808. ],
  10809. "authors": [
  10810. {
  10811. "name": "Sebastian Bergmann",
  10812. "email": "sebastian@phpunit.de"
  10813. },
  10814. {
  10815. "name": "Jeff Welch",
  10816. "email": "whatthejeff@gmail.com"
  10817. },
  10818. {
  10819. "name": "Volker Dusch",
  10820. "email": "github@wallbash.com"
  10821. },
  10822. {
  10823. "name": "Adam Harvey",
  10824. "email": "aharvey@php.net"
  10825. },
  10826. {
  10827. "name": "Bernhard Schussek",
  10828. "email": "bschussek@gmail.com"
  10829. }
  10830. ],
  10831. "description": "Provides the functionality to export PHP variables for visualization",
  10832. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10833. "keywords": [
  10834. "export",
  10835. "exporter"
  10836. ],
  10837. "support": {
  10838. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10839. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10840. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10841. },
  10842. "funding": [
  10843. {
  10844. "url": "https://github.com/sebastianbergmann",
  10845. "type": "github"
  10846. }
  10847. ],
  10848. "time": "2024-03-02T07:17:12+00:00"
  10849. },
  10850. {
  10851. "name": "sebastian/global-state",
  10852. "version": "6.0.2",
  10853. "source": {
  10854. "type": "git",
  10855. "url": "https://github.com/sebastianbergmann/global-state.git",
  10856. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10857. },
  10858. "dist": {
  10859. "type": "zip",
  10860. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10861. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10862. "shasum": "",
  10863. "mirrors": [
  10864. {
  10865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10866. "preferred": true
  10867. }
  10868. ]
  10869. },
  10870. "require": {
  10871. "php": ">=8.1",
  10872. "sebastian/object-reflector": "^3.0",
  10873. "sebastian/recursion-context": "^5.0"
  10874. },
  10875. "require-dev": {
  10876. "ext-dom": "*",
  10877. "phpunit/phpunit": "^10.0"
  10878. },
  10879. "type": "library",
  10880. "extra": {
  10881. "branch-alias": {
  10882. "dev-main": "6.0-dev"
  10883. }
  10884. },
  10885. "autoload": {
  10886. "classmap": [
  10887. "src/"
  10888. ]
  10889. },
  10890. "notification-url": "https://packagist.org/downloads/",
  10891. "license": [
  10892. "BSD-3-Clause"
  10893. ],
  10894. "authors": [
  10895. {
  10896. "name": "Sebastian Bergmann",
  10897. "email": "sebastian@phpunit.de"
  10898. }
  10899. ],
  10900. "description": "Snapshotting of global state",
  10901. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10902. "keywords": [
  10903. "global state"
  10904. ],
  10905. "support": {
  10906. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10907. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10908. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10909. },
  10910. "funding": [
  10911. {
  10912. "url": "https://github.com/sebastianbergmann",
  10913. "type": "github"
  10914. }
  10915. ],
  10916. "time": "2024-03-02T07:19:19+00:00"
  10917. },
  10918. {
  10919. "name": "sebastian/lines-of-code",
  10920. "version": "2.0.2",
  10921. "source": {
  10922. "type": "git",
  10923. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10924. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10925. },
  10926. "dist": {
  10927. "type": "zip",
  10928. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10929. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10930. "shasum": "",
  10931. "mirrors": [
  10932. {
  10933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10934. "preferred": true
  10935. }
  10936. ]
  10937. },
  10938. "require": {
  10939. "nikic/php-parser": "^4.18 || ^5.0",
  10940. "php": ">=8.1"
  10941. },
  10942. "require-dev": {
  10943. "phpunit/phpunit": "^10.0"
  10944. },
  10945. "type": "library",
  10946. "extra": {
  10947. "branch-alias": {
  10948. "dev-main": "2.0-dev"
  10949. }
  10950. },
  10951. "autoload": {
  10952. "classmap": [
  10953. "src/"
  10954. ]
  10955. },
  10956. "notification-url": "https://packagist.org/downloads/",
  10957. "license": [
  10958. "BSD-3-Clause"
  10959. ],
  10960. "authors": [
  10961. {
  10962. "name": "Sebastian Bergmann",
  10963. "email": "sebastian@phpunit.de",
  10964. "role": "lead"
  10965. }
  10966. ],
  10967. "description": "Library for counting the lines of code in PHP source code",
  10968. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10969. "support": {
  10970. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10971. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10972. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10973. },
  10974. "funding": [
  10975. {
  10976. "url": "https://github.com/sebastianbergmann",
  10977. "type": "github"
  10978. }
  10979. ],
  10980. "time": "2023-12-21T08:38:20+00:00"
  10981. },
  10982. {
  10983. "name": "sebastian/object-enumerator",
  10984. "version": "5.0.0",
  10985. "source": {
  10986. "type": "git",
  10987. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10988. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10989. },
  10990. "dist": {
  10991. "type": "zip",
  10992. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10993. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10994. "shasum": "",
  10995. "mirrors": [
  10996. {
  10997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10998. "preferred": true
  10999. }
  11000. ]
  11001. },
  11002. "require": {
  11003. "php": ">=8.1",
  11004. "sebastian/object-reflector": "^3.0",
  11005. "sebastian/recursion-context": "^5.0"
  11006. },
  11007. "require-dev": {
  11008. "phpunit/phpunit": "^10.0"
  11009. },
  11010. "type": "library",
  11011. "extra": {
  11012. "branch-alias": {
  11013. "dev-main": "5.0-dev"
  11014. }
  11015. },
  11016. "autoload": {
  11017. "classmap": [
  11018. "src/"
  11019. ]
  11020. },
  11021. "notification-url": "https://packagist.org/downloads/",
  11022. "license": [
  11023. "BSD-3-Clause"
  11024. ],
  11025. "authors": [
  11026. {
  11027. "name": "Sebastian Bergmann",
  11028. "email": "sebastian@phpunit.de"
  11029. }
  11030. ],
  11031. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11032. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11033. "support": {
  11034. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11035. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11036. },
  11037. "funding": [
  11038. {
  11039. "url": "https://github.com/sebastianbergmann",
  11040. "type": "github"
  11041. }
  11042. ],
  11043. "time": "2023-02-03T07:08:32+00:00"
  11044. },
  11045. {
  11046. "name": "sebastian/object-reflector",
  11047. "version": "3.0.0",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11051. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11056. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11057. "shasum": "",
  11058. "mirrors": [
  11059. {
  11060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11061. "preferred": true
  11062. }
  11063. ]
  11064. },
  11065. "require": {
  11066. "php": ">=8.1"
  11067. },
  11068. "require-dev": {
  11069. "phpunit/phpunit": "^10.0"
  11070. },
  11071. "type": "library",
  11072. "extra": {
  11073. "branch-alias": {
  11074. "dev-main": "3.0-dev"
  11075. }
  11076. },
  11077. "autoload": {
  11078. "classmap": [
  11079. "src/"
  11080. ]
  11081. },
  11082. "notification-url": "https://packagist.org/downloads/",
  11083. "license": [
  11084. "BSD-3-Clause"
  11085. ],
  11086. "authors": [
  11087. {
  11088. "name": "Sebastian Bergmann",
  11089. "email": "sebastian@phpunit.de"
  11090. }
  11091. ],
  11092. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11093. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11094. "support": {
  11095. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11096. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11097. },
  11098. "funding": [
  11099. {
  11100. "url": "https://github.com/sebastianbergmann",
  11101. "type": "github"
  11102. }
  11103. ],
  11104. "time": "2023-02-03T07:06:18+00:00"
  11105. },
  11106. {
  11107. "name": "sebastian/recursion-context",
  11108. "version": "5.0.0",
  11109. "source": {
  11110. "type": "git",
  11111. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11112. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11113. },
  11114. "dist": {
  11115. "type": "zip",
  11116. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11117. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11118. "shasum": "",
  11119. "mirrors": [
  11120. {
  11121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11122. "preferred": true
  11123. }
  11124. ]
  11125. },
  11126. "require": {
  11127. "php": ">=8.1"
  11128. },
  11129. "require-dev": {
  11130. "phpunit/phpunit": "^10.0"
  11131. },
  11132. "type": "library",
  11133. "extra": {
  11134. "branch-alias": {
  11135. "dev-main": "5.0-dev"
  11136. }
  11137. },
  11138. "autoload": {
  11139. "classmap": [
  11140. "src/"
  11141. ]
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "BSD-3-Clause"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Sebastian Bergmann",
  11150. "email": "sebastian@phpunit.de"
  11151. },
  11152. {
  11153. "name": "Jeff Welch",
  11154. "email": "whatthejeff@gmail.com"
  11155. },
  11156. {
  11157. "name": "Adam Harvey",
  11158. "email": "aharvey@php.net"
  11159. }
  11160. ],
  11161. "description": "Provides functionality to recursively process PHP variables",
  11162. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11163. "support": {
  11164. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11165. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://github.com/sebastianbergmann",
  11170. "type": "github"
  11171. }
  11172. ],
  11173. "time": "2023-02-03T07:05:40+00:00"
  11174. },
  11175. {
  11176. "name": "sebastian/type",
  11177. "version": "4.0.0",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/sebastianbergmann/type.git",
  11181. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11186. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11187. "shasum": "",
  11188. "mirrors": [
  11189. {
  11190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11191. "preferred": true
  11192. }
  11193. ]
  11194. },
  11195. "require": {
  11196. "php": ">=8.1"
  11197. },
  11198. "require-dev": {
  11199. "phpunit/phpunit": "^10.0"
  11200. },
  11201. "type": "library",
  11202. "extra": {
  11203. "branch-alias": {
  11204. "dev-main": "4.0-dev"
  11205. }
  11206. },
  11207. "autoload": {
  11208. "classmap": [
  11209. "src/"
  11210. ]
  11211. },
  11212. "notification-url": "https://packagist.org/downloads/",
  11213. "license": [
  11214. "BSD-3-Clause"
  11215. ],
  11216. "authors": [
  11217. {
  11218. "name": "Sebastian Bergmann",
  11219. "email": "sebastian@phpunit.de",
  11220. "role": "lead"
  11221. }
  11222. ],
  11223. "description": "Collection of value objects that represent the types of the PHP type system",
  11224. "homepage": "https://github.com/sebastianbergmann/type",
  11225. "support": {
  11226. "issues": "https://github.com/sebastianbergmann/type/issues",
  11227. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11228. },
  11229. "funding": [
  11230. {
  11231. "url": "https://github.com/sebastianbergmann",
  11232. "type": "github"
  11233. }
  11234. ],
  11235. "time": "2023-02-03T07:10:45+00:00"
  11236. },
  11237. {
  11238. "name": "sebastian/version",
  11239. "version": "4.0.1",
  11240. "source": {
  11241. "type": "git",
  11242. "url": "https://github.com/sebastianbergmann/version.git",
  11243. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11244. },
  11245. "dist": {
  11246. "type": "zip",
  11247. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11248. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11249. "shasum": "",
  11250. "mirrors": [
  11251. {
  11252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11253. "preferred": true
  11254. }
  11255. ]
  11256. },
  11257. "require": {
  11258. "php": ">=8.1"
  11259. },
  11260. "type": "library",
  11261. "extra": {
  11262. "branch-alias": {
  11263. "dev-main": "4.0-dev"
  11264. }
  11265. },
  11266. "autoload": {
  11267. "classmap": [
  11268. "src/"
  11269. ]
  11270. },
  11271. "notification-url": "https://packagist.org/downloads/",
  11272. "license": [
  11273. "BSD-3-Clause"
  11274. ],
  11275. "authors": [
  11276. {
  11277. "name": "Sebastian Bergmann",
  11278. "email": "sebastian@phpunit.de",
  11279. "role": "lead"
  11280. }
  11281. ],
  11282. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11283. "homepage": "https://github.com/sebastianbergmann/version",
  11284. "support": {
  11285. "issues": "https://github.com/sebastianbergmann/version/issues",
  11286. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11287. },
  11288. "funding": [
  11289. {
  11290. "url": "https://github.com/sebastianbergmann",
  11291. "type": "github"
  11292. }
  11293. ],
  11294. "time": "2023-02-07T11:34:05+00:00"
  11295. },
  11296. {
  11297. "name": "swoole/ide-helper",
  11298. "version": "5.1.7",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/swoole/ide-helper.git",
  11302. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11307. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11308. "shasum": "",
  11309. "mirrors": [
  11310. {
  11311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11312. "preferred": true
  11313. }
  11314. ]
  11315. },
  11316. "type": "library",
  11317. "notification-url": "https://packagist.org/downloads/",
  11318. "license": [
  11319. "Apache-2.0"
  11320. ],
  11321. "authors": [
  11322. {
  11323. "name": "Team Swoole",
  11324. "email": "team@swoole.com"
  11325. }
  11326. ],
  11327. "description": "IDE help files for Swoole.",
  11328. "support": {
  11329. "issues": "https://github.com/swoole/ide-helper/issues",
  11330. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  11331. },
  11332. "time": "2025-03-22T23:53:02+00:00"
  11333. },
  11334. {
  11335. "name": "symfony/event-dispatcher",
  11336. "version": "v6.4.13",
  11337. "source": {
  11338. "type": "git",
  11339. "url": "https://github.com/symfony/event-dispatcher.git",
  11340. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11341. },
  11342. "dist": {
  11343. "type": "zip",
  11344. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11345. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11346. "shasum": "",
  11347. "mirrors": [
  11348. {
  11349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11350. "preferred": true
  11351. }
  11352. ]
  11353. },
  11354. "require": {
  11355. "php": ">=8.1",
  11356. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11357. },
  11358. "conflict": {
  11359. "symfony/dependency-injection": "<5.4",
  11360. "symfony/service-contracts": "<2.5"
  11361. },
  11362. "provide": {
  11363. "psr/event-dispatcher-implementation": "1.0",
  11364. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11365. },
  11366. "require-dev": {
  11367. "psr/log": "^1|^2|^3",
  11368. "symfony/config": "^5.4|^6.0|^7.0",
  11369. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11370. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11371. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11372. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11373. "symfony/service-contracts": "^2.5|^3",
  11374. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11375. },
  11376. "type": "library",
  11377. "autoload": {
  11378. "psr-4": {
  11379. "Symfony\\Component\\EventDispatcher\\": ""
  11380. },
  11381. "exclude-from-classmap": [
  11382. "/Tests/"
  11383. ]
  11384. },
  11385. "notification-url": "https://packagist.org/downloads/",
  11386. "license": [
  11387. "MIT"
  11388. ],
  11389. "authors": [
  11390. {
  11391. "name": "Fabien Potencier",
  11392. "email": "fabien@symfony.com"
  11393. },
  11394. {
  11395. "name": "Symfony Community",
  11396. "homepage": "https://symfony.com/contributors"
  11397. }
  11398. ],
  11399. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11400. "homepage": "https://symfony.com",
  11401. "support": {
  11402. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11403. },
  11404. "funding": [
  11405. {
  11406. "url": "https://symfony.com/sponsor",
  11407. "type": "custom"
  11408. },
  11409. {
  11410. "url": "https://github.com/fabpot",
  11411. "type": "github"
  11412. },
  11413. {
  11414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11415. "type": "tidelift"
  11416. }
  11417. ],
  11418. "time": "2024-09-25T14:18:03+00:00"
  11419. },
  11420. {
  11421. "name": "symfony/event-dispatcher-contracts",
  11422. "version": "v3.5.1",
  11423. "source": {
  11424. "type": "git",
  11425. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11426. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11427. },
  11428. "dist": {
  11429. "type": "zip",
  11430. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11431. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11432. "shasum": "",
  11433. "mirrors": [
  11434. {
  11435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11436. "preferred": true
  11437. }
  11438. ]
  11439. },
  11440. "require": {
  11441. "php": ">=8.1",
  11442. "psr/event-dispatcher": "^1"
  11443. },
  11444. "type": "library",
  11445. "extra": {
  11446. "thanks": {
  11447. "url": "https://github.com/symfony/contracts",
  11448. "name": "symfony/contracts"
  11449. },
  11450. "branch-alias": {
  11451. "dev-main": "3.5-dev"
  11452. }
  11453. },
  11454. "autoload": {
  11455. "psr-4": {
  11456. "Symfony\\Contracts\\EventDispatcher\\": ""
  11457. }
  11458. },
  11459. "notification-url": "https://packagist.org/downloads/",
  11460. "license": [
  11461. "MIT"
  11462. ],
  11463. "authors": [
  11464. {
  11465. "name": "Nicolas Grekas",
  11466. "email": "p@tchwork.com"
  11467. },
  11468. {
  11469. "name": "Symfony Community",
  11470. "homepage": "https://symfony.com/contributors"
  11471. }
  11472. ],
  11473. "description": "Generic abstractions related to dispatching event",
  11474. "homepage": "https://symfony.com",
  11475. "keywords": [
  11476. "abstractions",
  11477. "contracts",
  11478. "decoupling",
  11479. "interfaces",
  11480. "interoperability",
  11481. "standards"
  11482. ],
  11483. "support": {
  11484. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11485. },
  11486. "funding": [
  11487. {
  11488. "url": "https://symfony.com/sponsor",
  11489. "type": "custom"
  11490. },
  11491. {
  11492. "url": "https://github.com/fabpot",
  11493. "type": "github"
  11494. },
  11495. {
  11496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11497. "type": "tidelift"
  11498. }
  11499. ],
  11500. "time": "2024-09-25T14:20:29+00:00"
  11501. },
  11502. {
  11503. "name": "symfony/filesystem",
  11504. "version": "v6.4.13",
  11505. "source": {
  11506. "type": "git",
  11507. "url": "https://github.com/symfony/filesystem.git",
  11508. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11509. },
  11510. "dist": {
  11511. "type": "zip",
  11512. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11513. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11514. "shasum": "",
  11515. "mirrors": [
  11516. {
  11517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11518. "preferred": true
  11519. }
  11520. ]
  11521. },
  11522. "require": {
  11523. "php": ">=8.1",
  11524. "symfony/polyfill-ctype": "~1.8",
  11525. "symfony/polyfill-mbstring": "~1.8"
  11526. },
  11527. "require-dev": {
  11528. "symfony/process": "^5.4|^6.4|^7.0"
  11529. },
  11530. "type": "library",
  11531. "autoload": {
  11532. "psr-4": {
  11533. "Symfony\\Component\\Filesystem\\": ""
  11534. },
  11535. "exclude-from-classmap": [
  11536. "/Tests/"
  11537. ]
  11538. },
  11539. "notification-url": "https://packagist.org/downloads/",
  11540. "license": [
  11541. "MIT"
  11542. ],
  11543. "authors": [
  11544. {
  11545. "name": "Fabien Potencier",
  11546. "email": "fabien@symfony.com"
  11547. },
  11548. {
  11549. "name": "Symfony Community",
  11550. "homepage": "https://symfony.com/contributors"
  11551. }
  11552. ],
  11553. "description": "Provides basic utilities for the filesystem",
  11554. "homepage": "https://symfony.com",
  11555. "support": {
  11556. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11557. },
  11558. "funding": [
  11559. {
  11560. "url": "https://symfony.com/sponsor",
  11561. "type": "custom"
  11562. },
  11563. {
  11564. "url": "https://github.com/fabpot",
  11565. "type": "github"
  11566. },
  11567. {
  11568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11569. "type": "tidelift"
  11570. }
  11571. ],
  11572. "time": "2024-10-25T15:07:50+00:00"
  11573. },
  11574. {
  11575. "name": "symfony/http-foundation",
  11576. "version": "v6.4.21",
  11577. "source": {
  11578. "type": "git",
  11579. "url": "https://github.com/symfony/http-foundation.git",
  11580. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  11581. },
  11582. "dist": {
  11583. "type": "zip",
  11584. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  11585. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  11586. "shasum": "",
  11587. "mirrors": [
  11588. {
  11589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11590. "preferred": true
  11591. }
  11592. ]
  11593. },
  11594. "require": {
  11595. "php": ">=8.1",
  11596. "symfony/deprecation-contracts": "^2.5|^3",
  11597. "symfony/polyfill-mbstring": "~1.1",
  11598. "symfony/polyfill-php83": "^1.27"
  11599. },
  11600. "conflict": {
  11601. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11602. },
  11603. "require-dev": {
  11604. "doctrine/dbal": "^2.13.1|^3|^4",
  11605. "predis/predis": "^1.1|^2.0",
  11606. "symfony/cache": "^6.4.12|^7.1.5",
  11607. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11608. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11609. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11610. "symfony/mime": "^5.4|^6.0|^7.0",
  11611. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11612. },
  11613. "type": "library",
  11614. "autoload": {
  11615. "psr-4": {
  11616. "Symfony\\Component\\HttpFoundation\\": ""
  11617. },
  11618. "exclude-from-classmap": [
  11619. "/Tests/"
  11620. ]
  11621. },
  11622. "notification-url": "https://packagist.org/downloads/",
  11623. "license": [
  11624. "MIT"
  11625. ],
  11626. "authors": [
  11627. {
  11628. "name": "Fabien Potencier",
  11629. "email": "fabien@symfony.com"
  11630. },
  11631. {
  11632. "name": "Symfony Community",
  11633. "homepage": "https://symfony.com/contributors"
  11634. }
  11635. ],
  11636. "description": "Defines an object-oriented layer for the HTTP specification",
  11637. "homepage": "https://symfony.com",
  11638. "support": {
  11639. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  11640. },
  11641. "funding": [
  11642. {
  11643. "url": "https://symfony.com/sponsor",
  11644. "type": "custom"
  11645. },
  11646. {
  11647. "url": "https://github.com/fabpot",
  11648. "type": "github"
  11649. },
  11650. {
  11651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11652. "type": "tidelift"
  11653. }
  11654. ],
  11655. "time": "2025-04-27T13:27:38+00:00"
  11656. },
  11657. {
  11658. "name": "symfony/options-resolver",
  11659. "version": "v6.4.13",
  11660. "source": {
  11661. "type": "git",
  11662. "url": "https://github.com/symfony/options-resolver.git",
  11663. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11664. },
  11665. "dist": {
  11666. "type": "zip",
  11667. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11668. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11669. "shasum": "",
  11670. "mirrors": [
  11671. {
  11672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11673. "preferred": true
  11674. }
  11675. ]
  11676. },
  11677. "require": {
  11678. "php": ">=8.1",
  11679. "symfony/deprecation-contracts": "^2.5|^3"
  11680. },
  11681. "type": "library",
  11682. "autoload": {
  11683. "psr-4": {
  11684. "Symfony\\Component\\OptionsResolver\\": ""
  11685. },
  11686. "exclude-from-classmap": [
  11687. "/Tests/"
  11688. ]
  11689. },
  11690. "notification-url": "https://packagist.org/downloads/",
  11691. "license": [
  11692. "MIT"
  11693. ],
  11694. "authors": [
  11695. {
  11696. "name": "Fabien Potencier",
  11697. "email": "fabien@symfony.com"
  11698. },
  11699. {
  11700. "name": "Symfony Community",
  11701. "homepage": "https://symfony.com/contributors"
  11702. }
  11703. ],
  11704. "description": "Provides an improved replacement for the array_replace PHP function",
  11705. "homepage": "https://symfony.com",
  11706. "keywords": [
  11707. "config",
  11708. "configuration",
  11709. "options"
  11710. ],
  11711. "support": {
  11712. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11713. },
  11714. "funding": [
  11715. {
  11716. "url": "https://symfony.com/sponsor",
  11717. "type": "custom"
  11718. },
  11719. {
  11720. "url": "https://github.com/fabpot",
  11721. "type": "github"
  11722. },
  11723. {
  11724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11725. "type": "tidelift"
  11726. }
  11727. ],
  11728. "time": "2024-09-25T14:18:03+00:00"
  11729. },
  11730. {
  11731. "name": "symfony/polyfill-php81",
  11732. "version": "v1.31.0",
  11733. "source": {
  11734. "type": "git",
  11735. "url": "https://github.com/symfony/polyfill-php81.git",
  11736. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11737. },
  11738. "dist": {
  11739. "type": "zip",
  11740. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11741. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11742. "shasum": "",
  11743. "mirrors": [
  11744. {
  11745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11746. "preferred": true
  11747. }
  11748. ]
  11749. },
  11750. "require": {
  11751. "php": ">=7.2"
  11752. },
  11753. "type": "library",
  11754. "extra": {
  11755. "thanks": {
  11756. "url": "https://github.com/symfony/polyfill",
  11757. "name": "symfony/polyfill"
  11758. }
  11759. },
  11760. "autoload": {
  11761. "files": [
  11762. "bootstrap.php"
  11763. ],
  11764. "psr-4": {
  11765. "Symfony\\Polyfill\\Php81\\": ""
  11766. },
  11767. "classmap": [
  11768. "Resources/stubs"
  11769. ]
  11770. },
  11771. "notification-url": "https://packagist.org/downloads/",
  11772. "license": [
  11773. "MIT"
  11774. ],
  11775. "authors": [
  11776. {
  11777. "name": "Nicolas Grekas",
  11778. "email": "p@tchwork.com"
  11779. },
  11780. {
  11781. "name": "Symfony Community",
  11782. "homepage": "https://symfony.com/contributors"
  11783. }
  11784. ],
  11785. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11786. "homepage": "https://symfony.com",
  11787. "keywords": [
  11788. "compatibility",
  11789. "polyfill",
  11790. "portable",
  11791. "shim"
  11792. ],
  11793. "support": {
  11794. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11795. },
  11796. "funding": [
  11797. {
  11798. "url": "https://symfony.com/sponsor",
  11799. "type": "custom"
  11800. },
  11801. {
  11802. "url": "https://github.com/fabpot",
  11803. "type": "github"
  11804. },
  11805. {
  11806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11807. "type": "tidelift"
  11808. }
  11809. ],
  11810. "time": "2024-09-09T11:45:10+00:00"
  11811. },
  11812. {
  11813. "name": "symfony/polyfill-php83",
  11814. "version": "v1.31.0",
  11815. "source": {
  11816. "type": "git",
  11817. "url": "https://github.com/symfony/polyfill-php83.git",
  11818. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11819. },
  11820. "dist": {
  11821. "type": "zip",
  11822. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11823. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11824. "shasum": "",
  11825. "mirrors": [
  11826. {
  11827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11828. "preferred": true
  11829. }
  11830. ]
  11831. },
  11832. "require": {
  11833. "php": ">=7.2"
  11834. },
  11835. "type": "library",
  11836. "extra": {
  11837. "thanks": {
  11838. "url": "https://github.com/symfony/polyfill",
  11839. "name": "symfony/polyfill"
  11840. }
  11841. },
  11842. "autoload": {
  11843. "files": [
  11844. "bootstrap.php"
  11845. ],
  11846. "psr-4": {
  11847. "Symfony\\Polyfill\\Php83\\": ""
  11848. },
  11849. "classmap": [
  11850. "Resources/stubs"
  11851. ]
  11852. },
  11853. "notification-url": "https://packagist.org/downloads/",
  11854. "license": [
  11855. "MIT"
  11856. ],
  11857. "authors": [
  11858. {
  11859. "name": "Nicolas Grekas",
  11860. "email": "p@tchwork.com"
  11861. },
  11862. {
  11863. "name": "Symfony Community",
  11864. "homepage": "https://symfony.com/contributors"
  11865. }
  11866. ],
  11867. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11868. "homepage": "https://symfony.com",
  11869. "keywords": [
  11870. "compatibility",
  11871. "polyfill",
  11872. "portable",
  11873. "shim"
  11874. ],
  11875. "support": {
  11876. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11877. },
  11878. "funding": [
  11879. {
  11880. "url": "https://symfony.com/sponsor",
  11881. "type": "custom"
  11882. },
  11883. {
  11884. "url": "https://github.com/fabpot",
  11885. "type": "github"
  11886. },
  11887. {
  11888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11889. "type": "tidelift"
  11890. }
  11891. ],
  11892. "time": "2024-09-09T11:45:10+00:00"
  11893. },
  11894. {
  11895. "name": "symfony/process",
  11896. "version": "v6.4.20",
  11897. "source": {
  11898. "type": "git",
  11899. "url": "https://github.com/symfony/process.git",
  11900. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  11901. },
  11902. "dist": {
  11903. "type": "zip",
  11904. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  11905. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  11906. "shasum": "",
  11907. "mirrors": [
  11908. {
  11909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11910. "preferred": true
  11911. }
  11912. ]
  11913. },
  11914. "require": {
  11915. "php": ">=8.1"
  11916. },
  11917. "type": "library",
  11918. "autoload": {
  11919. "psr-4": {
  11920. "Symfony\\Component\\Process\\": ""
  11921. },
  11922. "exclude-from-classmap": [
  11923. "/Tests/"
  11924. ]
  11925. },
  11926. "notification-url": "https://packagist.org/downloads/",
  11927. "license": [
  11928. "MIT"
  11929. ],
  11930. "authors": [
  11931. {
  11932. "name": "Fabien Potencier",
  11933. "email": "fabien@symfony.com"
  11934. },
  11935. {
  11936. "name": "Symfony Community",
  11937. "homepage": "https://symfony.com/contributors"
  11938. }
  11939. ],
  11940. "description": "Executes commands in sub-processes",
  11941. "homepage": "https://symfony.com",
  11942. "support": {
  11943. "source": "https://github.com/symfony/process/tree/v6.4.20"
  11944. },
  11945. "funding": [
  11946. {
  11947. "url": "https://symfony.com/sponsor",
  11948. "type": "custom"
  11949. },
  11950. {
  11951. "url": "https://github.com/fabpot",
  11952. "type": "github"
  11953. },
  11954. {
  11955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11956. "type": "tidelift"
  11957. }
  11958. ],
  11959. "time": "2025-03-10T17:11:00+00:00"
  11960. },
  11961. {
  11962. "name": "symfony/stopwatch",
  11963. "version": "v6.4.19",
  11964. "source": {
  11965. "type": "git",
  11966. "url": "https://github.com/symfony/stopwatch.git",
  11967. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  11968. },
  11969. "dist": {
  11970. "type": "zip",
  11971. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  11972. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  11973. "shasum": "",
  11974. "mirrors": [
  11975. {
  11976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11977. "preferred": true
  11978. }
  11979. ]
  11980. },
  11981. "require": {
  11982. "php": ">=8.1",
  11983. "symfony/service-contracts": "^2.5|^3"
  11984. },
  11985. "type": "library",
  11986. "autoload": {
  11987. "psr-4": {
  11988. "Symfony\\Component\\Stopwatch\\": ""
  11989. },
  11990. "exclude-from-classmap": [
  11991. "/Tests/"
  11992. ]
  11993. },
  11994. "notification-url": "https://packagist.org/downloads/",
  11995. "license": [
  11996. "MIT"
  11997. ],
  11998. "authors": [
  11999. {
  12000. "name": "Fabien Potencier",
  12001. "email": "fabien@symfony.com"
  12002. },
  12003. {
  12004. "name": "Symfony Community",
  12005. "homepage": "https://symfony.com/contributors"
  12006. }
  12007. ],
  12008. "description": "Provides a way to profile code",
  12009. "homepage": "https://symfony.com",
  12010. "support": {
  12011. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  12012. },
  12013. "funding": [
  12014. {
  12015. "url": "https://symfony.com/sponsor",
  12016. "type": "custom"
  12017. },
  12018. {
  12019. "url": "https://github.com/fabpot",
  12020. "type": "github"
  12021. },
  12022. {
  12023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12024. "type": "tidelift"
  12025. }
  12026. ],
  12027. "time": "2025-02-21T10:06:30+00:00"
  12028. },
  12029. {
  12030. "name": "theseer/tokenizer",
  12031. "version": "1.2.3",
  12032. "source": {
  12033. "type": "git",
  12034. "url": "https://github.com/theseer/tokenizer.git",
  12035. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12036. },
  12037. "dist": {
  12038. "type": "zip",
  12039. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12040. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12041. "shasum": "",
  12042. "mirrors": [
  12043. {
  12044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12045. "preferred": true
  12046. }
  12047. ]
  12048. },
  12049. "require": {
  12050. "ext-dom": "*",
  12051. "ext-tokenizer": "*",
  12052. "ext-xmlwriter": "*",
  12053. "php": "^7.2 || ^8.0"
  12054. },
  12055. "type": "library",
  12056. "autoload": {
  12057. "classmap": [
  12058. "src/"
  12059. ]
  12060. },
  12061. "notification-url": "https://packagist.org/downloads/",
  12062. "license": [
  12063. "BSD-3-Clause"
  12064. ],
  12065. "authors": [
  12066. {
  12067. "name": "Arne Blankerts",
  12068. "email": "arne@blankerts.de",
  12069. "role": "Developer"
  12070. }
  12071. ],
  12072. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12073. "support": {
  12074. "issues": "https://github.com/theseer/tokenizer/issues",
  12075. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12076. },
  12077. "funding": [
  12078. {
  12079. "url": "https://github.com/theseer",
  12080. "type": "github"
  12081. }
  12082. ],
  12083. "time": "2024-03-03T12:36:25+00:00"
  12084. }
  12085. ],
  12086. "aliases": [],
  12087. "minimum-stability": "dev",
  12088. "stability-flags": {},
  12089. "prefer-stable": true,
  12090. "prefer-lowest": false,
  12091. "platform": {
  12092. "php": ">=8.1"
  12093. },
  12094. "platform-dev": {},
  12095. "plugin-api-version": "2.6.0"
  12096. }