composer.lock 448 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513
  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": "0202fb40b9469c4533981cf7fdd0ce92",
  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/amqp",
  1023. "version": "v3.1.58",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/hyperf/amqp.git",
  1027. "reference": "15ed5c2e39d35e1b28be9afad635c3fd9f93841b"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/hyperf/amqp/zipball/15ed5c2e39d35e1b28be9afad635c3fd9f93841b",
  1032. "reference": "15ed5c2e39d35e1b28be9afad635c3fd9f93841b",
  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. "doctrine/instantiator": "^1.2.0",
  1043. "hyperf/codec": "~3.1.0",
  1044. "hyperf/collection": "~3.1.0",
  1045. "hyperf/context": "~3.1.0",
  1046. "hyperf/contract": "~3.1.0",
  1047. "hyperf/coordinator": "~3.1.0",
  1048. "hyperf/coroutine": "~3.1.0",
  1049. "hyperf/engine": "^2.0",
  1050. "hyperf/pool": "~3.1.0",
  1051. "hyperf/process": "~3.1.0",
  1052. "hyperf/support": "~3.1.0",
  1053. "php": ">=8.1",
  1054. "php-amqplib/php-amqplib": "^3.5",
  1055. "psr/container": "^1.0 || ^2.0",
  1056. "psr/event-dispatcher": "^1.0",
  1057. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1058. },
  1059. "suggest": {
  1060. "hyperf/di": "Required to use annotations.",
  1061. "hyperf/event": "Declare queue and start consumers automatically."
  1062. },
  1063. "type": "library",
  1064. "extra": {
  1065. "hyperf": {
  1066. "config": "Hyperf\\Amqp\\ConfigProvider"
  1067. },
  1068. "branch-alias": {
  1069. "dev-master": "3.1-dev"
  1070. }
  1071. },
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Hyperf\\Amqp\\": "src/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "description": "A amqplib for hyperf.",
  1082. "homepage": "https://hyperf.io",
  1083. "keywords": [
  1084. "AMQP",
  1085. "hyperf",
  1086. "php"
  1087. ],
  1088. "support": {
  1089. "docs": "https://hyperf.wiki",
  1090. "issues": "https://github.com/hyperf/hyperf/issues",
  1091. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1092. "source": "https://github.com/hyperf/hyperf"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1097. "type": "custom"
  1098. },
  1099. {
  1100. "url": "https://opencollective.com/hyperf",
  1101. "type": "open_collective"
  1102. }
  1103. ],
  1104. "time": "2025-06-23T03:55:31+00:00"
  1105. },
  1106. {
  1107. "name": "hyperf/cache",
  1108. "version": "v3.1.56",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/hyperf/cache.git",
  1112. "reference": "4848c733560941490d9bf3aa8605deb4cce8fbf1"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/hyperf/cache/zipball/4848c733560941490d9bf3aa8605deb4cce8fbf1",
  1117. "reference": "4848c733560941490d9bf3aa8605deb4cce8fbf1",
  1118. "shasum": "",
  1119. "mirrors": [
  1120. {
  1121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1122. "preferred": true
  1123. }
  1124. ]
  1125. },
  1126. "require": {
  1127. "hyperf/codec": "~3.1.0",
  1128. "hyperf/collection": "~3.1.0",
  1129. "hyperf/contract": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "psr/container": "^1.0 || ^2.0",
  1134. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1135. },
  1136. "suggest": {
  1137. "hyperf/di": "Use cache annotations.",
  1138. "hyperf/event": "Use listener to delete annotation cache."
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "hyperf": {
  1143. "config": "Hyperf\\Cache\\ConfigProvider"
  1144. },
  1145. "branch-alias": {
  1146. "dev-master": "3.1-dev"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Hyperf\\Cache\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "description": "A cache component for hyperf.",
  1159. "homepage": "https://hyperf.io",
  1160. "keywords": [
  1161. "cache",
  1162. "hyperf",
  1163. "php"
  1164. ],
  1165. "support": {
  1166. "docs": "https://hyperf.wiki",
  1167. "issues": "https://github.com/hyperf/hyperf/issues",
  1168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1169. "source": "https://github.com/hyperf/hyperf"
  1170. },
  1171. "funding": [
  1172. {
  1173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1174. "type": "custom"
  1175. },
  1176. {
  1177. "url": "https://opencollective.com/hyperf",
  1178. "type": "open_collective"
  1179. }
  1180. ],
  1181. "time": "2025-06-05T06:13:29+00:00"
  1182. },
  1183. {
  1184. "name": "hyperf/code-parser",
  1185. "version": "v3.1.52",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/hyperf/code-parser.git",
  1189. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1194. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1195. "shasum": "",
  1196. "mirrors": [
  1197. {
  1198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1199. "preferred": true
  1200. }
  1201. ]
  1202. },
  1203. "require": {
  1204. "hyperf/collection": "~3.1.0",
  1205. "hyperf/stringable": "~3.1.0",
  1206. "hyperf/support": "~3.1.0",
  1207. "php": ">=8.1"
  1208. },
  1209. "suggest": {
  1210. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1211. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Hyperf\\CodeParser\\": "src/"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "description": "A code parser component for Hyperf.",
  1229. "homepage": "https://hyperf.io",
  1230. "keywords": [
  1231. "code-parser",
  1232. "hyperf",
  1233. "php",
  1234. "swoole"
  1235. ],
  1236. "support": {
  1237. "docs": "https://hyperf.wiki",
  1238. "issues": "https://github.com/hyperf/hyperf/issues",
  1239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1240. "source": "https://github.com/hyperf/hyperf"
  1241. },
  1242. "funding": [
  1243. {
  1244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1245. "type": "custom"
  1246. },
  1247. {
  1248. "url": "https://opencollective.com/hyperf",
  1249. "type": "open_collective"
  1250. }
  1251. ],
  1252. "time": "2025-02-27T07:40:13+00:00"
  1253. },
  1254. {
  1255. "name": "hyperf/codec",
  1256. "version": "v3.1.42",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/hyperf/codec.git",
  1260. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1265. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1266. "shasum": "",
  1267. "mirrors": [
  1268. {
  1269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1270. "preferred": true
  1271. }
  1272. ]
  1273. },
  1274. "require": {
  1275. "ext-json": "*",
  1276. "ext-xml": "*",
  1277. "hyperf/contract": "~3.1.0",
  1278. "php": ">=8.1"
  1279. },
  1280. "suggest": {
  1281. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1282. },
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "3.1-dev"
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Hyperf\\Codec\\": "src/"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "description": "A codec component for Hyperf.",
  1299. "homepage": "https://hyperf.io",
  1300. "keywords": [
  1301. "codec",
  1302. "hyperf",
  1303. "php",
  1304. "swoole"
  1305. ],
  1306. "support": {
  1307. "docs": "https://hyperf.wiki",
  1308. "issues": "https://github.com/hyperf/hyperf/issues",
  1309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1310. "source": "https://github.com/hyperf/hyperf"
  1311. },
  1312. "funding": [
  1313. {
  1314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1315. "type": "custom"
  1316. },
  1317. {
  1318. "url": "https://opencollective.com/hyperf",
  1319. "type": "open_collective"
  1320. }
  1321. ],
  1322. "time": "2024-09-25T02:54:12+00:00"
  1323. },
  1324. {
  1325. "name": "hyperf/collection",
  1326. "version": "v3.1.52",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/hyperf/collection.git",
  1330. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1335. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1336. "shasum": "",
  1337. "mirrors": [
  1338. {
  1339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1340. "preferred": true
  1341. }
  1342. ]
  1343. },
  1344. "require": {
  1345. "hyperf/conditionable": "~3.1.0",
  1346. "hyperf/contract": "~3.1.0",
  1347. "hyperf/macroable": "~3.1.0",
  1348. "hyperf/stringable": "~3.1.0",
  1349. "php": ">=8.1"
  1350. },
  1351. "type": "library",
  1352. "extra": {
  1353. "branch-alias": {
  1354. "dev-master": "3.1-dev"
  1355. }
  1356. },
  1357. "autoload": {
  1358. "files": [
  1359. "src/Functions.php"
  1360. ],
  1361. "psr-4": {
  1362. "Hyperf\\Collection\\": "src/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "description": "Hyperf Collection package which come from illuminate/collections",
  1370. "homepage": "https://hyperf.io",
  1371. "keywords": [
  1372. "collection",
  1373. "hyperf",
  1374. "php",
  1375. "swoole"
  1376. ],
  1377. "support": {
  1378. "docs": "https://hyperf.wiki",
  1379. "issues": "https://github.com/hyperf/hyperf/issues",
  1380. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1381. "source": "https://github.com/hyperf/hyperf"
  1382. },
  1383. "funding": [
  1384. {
  1385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1386. "type": "custom"
  1387. },
  1388. {
  1389. "url": "https://opencollective.com/hyperf",
  1390. "type": "open_collective"
  1391. }
  1392. ],
  1393. "time": "2025-02-17T03:58:59+00:00"
  1394. },
  1395. {
  1396. "name": "hyperf/command",
  1397. "version": "v3.1.56",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/hyperf/command.git",
  1401. "reference": "79188b44faff62e305fdb34cf2929ff517430e34"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/hyperf/command/zipball/79188b44faff62e305fdb34cf2929ff517430e34",
  1406. "reference": "79188b44faff62e305fdb34cf2929ff517430e34",
  1407. "shasum": "",
  1408. "mirrors": [
  1409. {
  1410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1411. "preferred": true
  1412. }
  1413. ]
  1414. },
  1415. "require": {
  1416. "hyperf/collection": "~3.1.0",
  1417. "hyperf/context": "~3.1.0",
  1418. "hyperf/contract": "~3.1.0",
  1419. "hyperf/coroutine": "~3.1.0",
  1420. "hyperf/di": "~3.1.0",
  1421. "hyperf/stringable": "~3.1.0",
  1422. "hyperf/support": "~3.1.0",
  1423. "hyperf/tappable": "~3.1.0",
  1424. "php": ">=8.1",
  1425. "psr/event-dispatcher": "^1.0",
  1426. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1427. },
  1428. "suggest": {
  1429. "hyperf/di": "Required to use annotations.",
  1430. "hyperf/event": "Required to use listeners."
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "hyperf": {
  1435. "config": "Hyperf\\Command\\ConfigProvider"
  1436. },
  1437. "branch-alias": {
  1438. "dev-master": "3.1-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Hyperf\\Command\\": "src/"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "description": "Command for hyperf",
  1451. "keywords": [
  1452. "command",
  1453. "php",
  1454. "swoole"
  1455. ],
  1456. "support": {
  1457. "issues": "https://github.com/hyperf/command/issues",
  1458. "source": "https://github.com/hyperf/command/tree/v3.1.56"
  1459. },
  1460. "funding": [
  1461. {
  1462. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1463. "type": "custom"
  1464. },
  1465. {
  1466. "url": "https://opencollective.com/hyperf",
  1467. "type": "open_collective"
  1468. }
  1469. ],
  1470. "time": "2025-06-03T08:26:34+00:00"
  1471. },
  1472. {
  1473. "name": "hyperf/conditionable",
  1474. "version": "v3.1.42",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/hyperf/conditionable.git",
  1478. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1483. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1484. "shasum": "",
  1485. "mirrors": [
  1486. {
  1487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1488. "preferred": true
  1489. }
  1490. ]
  1491. },
  1492. "require": {
  1493. "php": ">=8.1"
  1494. },
  1495. "type": "library",
  1496. "extra": {
  1497. "branch-alias": {
  1498. "dev-master": "3.1-dev"
  1499. }
  1500. },
  1501. "autoload": {
  1502. "psr-4": {
  1503. "Hyperf\\Conditionable\\": "src/"
  1504. }
  1505. },
  1506. "notification-url": "https://packagist.org/downloads/",
  1507. "license": [
  1508. "MIT"
  1509. ],
  1510. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1511. "homepage": "https://hyperf.io",
  1512. "keywords": [
  1513. "conditionable",
  1514. "hyperf",
  1515. "php",
  1516. "swoole"
  1517. ],
  1518. "support": {
  1519. "docs": "https://hyperf.wiki",
  1520. "issues": "https://github.com/hyperf/hyperf/issues",
  1521. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1522. "source": "https://github.com/hyperf/hyperf"
  1523. },
  1524. "funding": [
  1525. {
  1526. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1527. "type": "custom"
  1528. },
  1529. {
  1530. "url": "https://opencollective.com/hyperf",
  1531. "type": "open_collective"
  1532. }
  1533. ],
  1534. "time": "2024-09-25T02:54:12+00:00"
  1535. },
  1536. {
  1537. "name": "hyperf/config",
  1538. "version": "v3.1.42",
  1539. "source": {
  1540. "type": "git",
  1541. "url": "https://github.com/hyperf/config.git",
  1542. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1543. },
  1544. "dist": {
  1545. "type": "zip",
  1546. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1547. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1548. "shasum": "",
  1549. "mirrors": [
  1550. {
  1551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1552. "preferred": true
  1553. }
  1554. ]
  1555. },
  1556. "require": {
  1557. "hyperf/collection": "~3.1.0",
  1558. "hyperf/contract": "~3.1.0",
  1559. "hyperf/support": "~3.1.0",
  1560. "php": ">=8.1",
  1561. "psr/container": "^1.0 || ^2.0",
  1562. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1563. },
  1564. "suggest": {
  1565. "hyperf/context": "Required to use config()",
  1566. "hyperf/di": "Allows using @Value annotation",
  1567. "hyperf/event": "Allows using @Value annotation",
  1568. "hyperf/framework": "Allows using @Value annotation",
  1569. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "hyperf": {
  1574. "config": "Hyperf\\Config\\ConfigProvider"
  1575. },
  1576. "branch-alias": {
  1577. "dev-master": "3.1-dev"
  1578. }
  1579. },
  1580. "autoload": {
  1581. "files": [
  1582. "./src/Functions.php"
  1583. ],
  1584. "psr-4": {
  1585. "Hyperf\\Config\\": "src/"
  1586. }
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "description": "An independent component that provides configuration container.",
  1593. "homepage": "https://hyperf.io",
  1594. "keywords": [
  1595. "config",
  1596. "configuration",
  1597. "hyperf",
  1598. "php",
  1599. "swoole"
  1600. ],
  1601. "support": {
  1602. "docs": "https://hyperf.wiki",
  1603. "issues": "https://github.com/hyperf/hyperf/issues",
  1604. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1605. "source": "https://github.com/hyperf/hyperf"
  1606. },
  1607. "funding": [
  1608. {
  1609. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://opencollective.com/hyperf",
  1614. "type": "open_collective"
  1615. }
  1616. ],
  1617. "time": "2024-09-25T02:54:12+00:00"
  1618. },
  1619. {
  1620. "name": "hyperf/config-center",
  1621. "version": "v3.1.42",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/hyperf/config-center.git",
  1625. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1630. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1631. "shasum": "",
  1632. "mirrors": [
  1633. {
  1634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1635. "preferred": true
  1636. }
  1637. ]
  1638. },
  1639. "require": {
  1640. "hyperf/support": "~3.1.0",
  1641. "php": ">=8.1"
  1642. },
  1643. "suggest": {
  1644. "hyperf/process": "^2.1"
  1645. },
  1646. "type": "library",
  1647. "extra": {
  1648. "hyperf": {
  1649. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1650. },
  1651. "branch-alias": {
  1652. "dev-master": "3.1-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "psr-4": {
  1657. "Hyperf\\ConfigCenter\\": "src/"
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "MIT"
  1663. ],
  1664. "description": "The abstraction component of config center",
  1665. "homepage": "https://hyperf.io",
  1666. "keywords": [
  1667. "config-center",
  1668. "hyperf",
  1669. "php"
  1670. ],
  1671. "support": {
  1672. "docs": "https://hyperf.wiki",
  1673. "issues": "https://github.com/hyperf/hyperf/issues",
  1674. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1675. "source": "https://github.com/hyperf/hyperf"
  1676. },
  1677. "funding": [
  1678. {
  1679. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1680. "type": "custom"
  1681. },
  1682. {
  1683. "url": "https://opencollective.com/hyperf",
  1684. "type": "open_collective"
  1685. }
  1686. ],
  1687. "time": "2024-09-25T02:54:12+00:00"
  1688. },
  1689. {
  1690. "name": "hyperf/config-nacos",
  1691. "version": "v3.1.42",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://github.com/hyperf/config-nacos.git",
  1695. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1700. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1701. "shasum": "",
  1702. "mirrors": [
  1703. {
  1704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1705. "preferred": true
  1706. }
  1707. ]
  1708. },
  1709. "require": {
  1710. "hyperf/codec": "~3.1.0",
  1711. "hyperf/config-center": "~3.1.0",
  1712. "hyperf/contract": "~3.1.0",
  1713. "hyperf/guzzle": "~3.1.0",
  1714. "hyperf/nacos": "~3.1.0",
  1715. "hyperf/support": "~3.1.0",
  1716. "hyperf/utils": "~3.1.0",
  1717. "jetbrains/phpstorm-attributes": "^1.0",
  1718. "php": ">=8.1"
  1719. },
  1720. "suggest": {
  1721. "ext-json": "*",
  1722. "ext-simplexml": "*",
  1723. "ext-yaml": "*",
  1724. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1725. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1726. "hyperf/process": "Required to use processes. (~2.2.0)"
  1727. },
  1728. "type": "library",
  1729. "extra": {
  1730. "hyperf": {
  1731. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1732. },
  1733. "branch-alias": {
  1734. "dev-master": "3.1-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Hyperf\\ConfigNacos\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "description": "A nacos adapter for config center component.",
  1747. "homepage": "https://hyperf.io",
  1748. "keywords": [
  1749. "hyperf",
  1750. "nacos",
  1751. "php",
  1752. "swoole"
  1753. ],
  1754. "support": {
  1755. "docs": "https://hyperf.wiki",
  1756. "issues": "https://github.com/hyperf/hyperf/issues",
  1757. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1758. "source": "https://github.com/hyperf/hyperf"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1763. "type": "custom"
  1764. },
  1765. {
  1766. "url": "https://opencollective.com/hyperf",
  1767. "type": "open_collective"
  1768. }
  1769. ],
  1770. "time": "2024-09-25T02:54:12+00:00"
  1771. },
  1772. {
  1773. "name": "hyperf/constants",
  1774. "version": "v3.1.42",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/hyperf/constants.git",
  1778. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1783. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1784. "shasum": "",
  1785. "mirrors": [
  1786. {
  1787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1788. "preferred": true
  1789. }
  1790. ]
  1791. },
  1792. "require": {
  1793. "hyperf/di": "~3.1.0",
  1794. "hyperf/support": "~3.1.0",
  1795. "hyperf/utils": "~3.1.0",
  1796. "php": ">=8.1"
  1797. },
  1798. "suggest": {
  1799. "hyperf/translation": "Required to use translation."
  1800. },
  1801. "type": "library",
  1802. "extra": {
  1803. "hyperf": {
  1804. "config": "Hyperf\\Constants\\ConfigProvider"
  1805. },
  1806. "branch-alias": {
  1807. "dev-master": "3.1-dev"
  1808. }
  1809. },
  1810. "autoload": {
  1811. "psr-4": {
  1812. "Hyperf\\Constants\\": "src/"
  1813. }
  1814. },
  1815. "notification-url": "https://packagist.org/downloads/",
  1816. "license": [
  1817. "MIT"
  1818. ],
  1819. "description": "A constants component for hyperf.",
  1820. "homepage": "https://hyperf.io",
  1821. "keywords": [
  1822. "constants",
  1823. "hyperf",
  1824. "php"
  1825. ],
  1826. "support": {
  1827. "docs": "https://hyperf.wiki",
  1828. "issues": "https://github.com/hyperf/hyperf/issues",
  1829. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1830. "source": "https://github.com/hyperf/hyperf"
  1831. },
  1832. "funding": [
  1833. {
  1834. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1835. "type": "custom"
  1836. },
  1837. {
  1838. "url": "https://opencollective.com/hyperf",
  1839. "type": "open_collective"
  1840. }
  1841. ],
  1842. "time": "2024-09-25T02:54:12+00:00"
  1843. },
  1844. {
  1845. "name": "hyperf/consul",
  1846. "version": "v3.1.42",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/hyperf/consul.git",
  1850. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1855. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1856. "shasum": "",
  1857. "mirrors": [
  1858. {
  1859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1860. "preferred": true
  1861. }
  1862. ]
  1863. },
  1864. "require": {
  1865. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1866. "php": ">=8.1"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "hyperf": {
  1871. "config": "Hyperf\\Consul\\ConfigProvider"
  1872. },
  1873. "branch-alias": {
  1874. "dev-master": "3.1-dev"
  1875. }
  1876. },
  1877. "autoload": {
  1878. "psr-4": {
  1879. "Hyperf\\Consul\\": "src/"
  1880. }
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "description": "A Consul Client for Hyperf.",
  1887. "homepage": "https://hyperf.io",
  1888. "keywords": [
  1889. "consul",
  1890. "consul-client",
  1891. "hyperf",
  1892. "php",
  1893. "swoole"
  1894. ],
  1895. "support": {
  1896. "docs": "https://hyperf.wiki",
  1897. "issues": "https://github.com/hyperf/hyperf/issues",
  1898. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1899. "source": "https://github.com/hyperf/hyperf"
  1900. },
  1901. "funding": [
  1902. {
  1903. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1904. "type": "custom"
  1905. },
  1906. {
  1907. "url": "https://opencollective.com/hyperf",
  1908. "type": "open_collective"
  1909. }
  1910. ],
  1911. "time": "2024-09-25T02:54:12+00:00"
  1912. },
  1913. {
  1914. "name": "hyperf/context",
  1915. "version": "v3.1.42",
  1916. "source": {
  1917. "type": "git",
  1918. "url": "https://github.com/hyperf/context.git",
  1919. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1920. },
  1921. "dist": {
  1922. "type": "zip",
  1923. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1924. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1925. "shasum": "",
  1926. "mirrors": [
  1927. {
  1928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1929. "preferred": true
  1930. }
  1931. ]
  1932. },
  1933. "require": {
  1934. "hyperf/engine": "^2.0",
  1935. "php": ">=8.1"
  1936. },
  1937. "suggest": {
  1938. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1939. },
  1940. "type": "library",
  1941. "extra": {
  1942. "branch-alias": {
  1943. "dev-master": "3.1-dev"
  1944. }
  1945. },
  1946. "autoload": {
  1947. "psr-4": {
  1948. "Hyperf\\Context\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "description": "A coroutine/application context library.",
  1956. "homepage": "https://hyperf.io",
  1957. "keywords": [
  1958. "Context",
  1959. "hyperf",
  1960. "php",
  1961. "swoole"
  1962. ],
  1963. "support": {
  1964. "docs": "https://hyperf.wiki",
  1965. "issues": "https://github.com/hyperf/hyperf/issues",
  1966. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1967. "source": "https://github.com/hyperf/hyperf"
  1968. },
  1969. "funding": [
  1970. {
  1971. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1972. "type": "custom"
  1973. },
  1974. {
  1975. "url": "https://opencollective.com/hyperf",
  1976. "type": "open_collective"
  1977. }
  1978. ],
  1979. "time": "2024-09-25T02:54:12+00:00"
  1980. },
  1981. {
  1982. "name": "hyperf/contract",
  1983. "version": "v3.1.42",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/hyperf/contract.git",
  1987. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1992. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1993. "shasum": "",
  1994. "mirrors": [
  1995. {
  1996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1997. "preferred": true
  1998. }
  1999. ]
  2000. },
  2001. "require": {
  2002. "php": ">=8.1"
  2003. },
  2004. "type": "library",
  2005. "extra": {
  2006. "branch-alias": {
  2007. "dev-master": "3.1-dev"
  2008. }
  2009. },
  2010. "autoload": {
  2011. "psr-4": {
  2012. "Hyperf\\Contract\\": "src/"
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "description": "The contracts of Hyperf.",
  2020. "homepage": "https://hyperf.io",
  2021. "keywords": [
  2022. "hyperf",
  2023. "php",
  2024. "swoole"
  2025. ],
  2026. "support": {
  2027. "docs": "https://hyperf.wiki",
  2028. "issues": "https://github.com/hyperf/hyperf/issues",
  2029. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2030. "source": "https://github.com/hyperf/hyperf"
  2031. },
  2032. "funding": [
  2033. {
  2034. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2035. "type": "custom"
  2036. },
  2037. {
  2038. "url": "https://opencollective.com/hyperf",
  2039. "type": "open_collective"
  2040. }
  2041. ],
  2042. "time": "2024-09-25T02:54:12+00:00"
  2043. },
  2044. {
  2045. "name": "hyperf/coordinator",
  2046. "version": "v3.1.42",
  2047. "source": {
  2048. "type": "git",
  2049. "url": "https://github.com/hyperf/coordinator.git",
  2050. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2051. },
  2052. "dist": {
  2053. "type": "zip",
  2054. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2055. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2056. "shasum": "",
  2057. "mirrors": [
  2058. {
  2059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2060. "preferred": true
  2061. }
  2062. ]
  2063. },
  2064. "require": {
  2065. "hyperf/engine": "^2.0",
  2066. "php": ">=8.1"
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "branch-alias": {
  2071. "dev-master": "3.1-dev"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "files": [
  2076. "src/Functions.php"
  2077. ],
  2078. "psr-4": {
  2079. "Hyperf\\Coordinator\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "description": "Hyperf Coordinator",
  2087. "homepage": "https://hyperf.io",
  2088. "keywords": [
  2089. "Coordinator",
  2090. "hyperf",
  2091. "php",
  2092. "swoole"
  2093. ],
  2094. "support": {
  2095. "docs": "https://hyperf.wiki",
  2096. "issues": "https://github.com/hyperf/hyperf/issues",
  2097. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2098. "source": "https://github.com/hyperf/hyperf"
  2099. },
  2100. "funding": [
  2101. {
  2102. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2103. "type": "custom"
  2104. },
  2105. {
  2106. "url": "https://opencollective.com/hyperf",
  2107. "type": "open_collective"
  2108. }
  2109. ],
  2110. "time": "2024-09-25T02:54:12+00:00"
  2111. },
  2112. {
  2113. "name": "hyperf/coroutine",
  2114. "version": "v3.1.54",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/hyperf/coroutine.git",
  2118. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/5b474c4bb46be015f1340939d92931b96a0b0cad",
  2123. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad",
  2124. "shasum": "",
  2125. "mirrors": [
  2126. {
  2127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2128. "preferred": true
  2129. }
  2130. ]
  2131. },
  2132. "require": {
  2133. "hyperf/context": "~3.1.0",
  2134. "hyperf/contract": "~3.1.0",
  2135. "hyperf/engine": "^2.14.0",
  2136. "php": ">=8.1"
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "3.1-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "files": [
  2146. "src/Functions.php"
  2147. ],
  2148. "psr-4": {
  2149. "Hyperf\\Coroutine\\": "src/"
  2150. }
  2151. },
  2152. "notification-url": "https://packagist.org/downloads/",
  2153. "license": [
  2154. "MIT"
  2155. ],
  2156. "description": "Hyperf Coroutine",
  2157. "homepage": "https://hyperf.io",
  2158. "keywords": [
  2159. "coroutine",
  2160. "hyperf",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "docs": "https://hyperf.wiki",
  2166. "issues": "https://github.com/hyperf/hyperf/issues",
  2167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2168. "source": "https://github.com/hyperf/hyperf"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2173. "type": "custom"
  2174. },
  2175. {
  2176. "url": "https://opencollective.com/hyperf",
  2177. "type": "open_collective"
  2178. }
  2179. ],
  2180. "time": "2025-04-14T01:38:29+00:00"
  2181. },
  2182. {
  2183. "name": "hyperf/database",
  2184. "version": "v3.1.56",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/hyperf/database.git",
  2188. "reference": "a4e5f11df6a74337836f1690c05506adf6e82f0f"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/hyperf/database/zipball/a4e5f11df6a74337836f1690c05506adf6e82f0f",
  2193. "reference": "a4e5f11df6a74337836f1690c05506adf6e82f0f",
  2194. "shasum": "",
  2195. "mirrors": [
  2196. {
  2197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2198. "preferred": true
  2199. }
  2200. ]
  2201. },
  2202. "require": {
  2203. "hyperf/code-parser": "~3.1.0",
  2204. "hyperf/collection": "~3.1.23",
  2205. "hyperf/conditionable": "~3.1.0",
  2206. "hyperf/macroable": "~3.1.0",
  2207. "hyperf/support": "~3.1.0",
  2208. "hyperf/tappable": "~3.1.0",
  2209. "hyperf/utils": "~3.1.0",
  2210. "nesbot/carbon": "^2.0",
  2211. "php": ">=8.1",
  2212. "psr/container": "^1.0 || ^2.0",
  2213. "psr/event-dispatcher": "^1.0"
  2214. },
  2215. "suggest": {
  2216. "doctrine/dbal": "Required to rename columns (^3.0).",
  2217. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2218. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2219. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "3.1-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "psr-4": {
  2229. "Hyperf\\Database\\": "src/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "description": "A flexible database library.",
  2237. "homepage": "https://hyperf.io",
  2238. "keywords": [
  2239. "database",
  2240. "hyperf",
  2241. "php"
  2242. ],
  2243. "support": {
  2244. "docs": "https://hyperf.wiki",
  2245. "issues": "https://github.com/hyperf/hyperf/issues",
  2246. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2247. "source": "https://github.com/hyperf/hyperf"
  2248. },
  2249. "funding": [
  2250. {
  2251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2252. "type": "custom"
  2253. },
  2254. {
  2255. "url": "https://opencollective.com/hyperf",
  2256. "type": "open_collective"
  2257. }
  2258. ],
  2259. "time": "2025-05-30T09:09:02+00:00"
  2260. },
  2261. {
  2262. "name": "hyperf/db-connection",
  2263. "version": "v3.1.44",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://github.com/hyperf/db-connection.git",
  2267. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2272. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2273. "shasum": "",
  2274. "mirrors": [
  2275. {
  2276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2277. "preferred": true
  2278. }
  2279. ]
  2280. },
  2281. "require": {
  2282. "hyperf/database": "~3.1.0",
  2283. "hyperf/di": "~3.1.0",
  2284. "hyperf/framework": "~3.1.0",
  2285. "hyperf/model-listener": "~3.1.0",
  2286. "hyperf/pool": "~3.1.0",
  2287. "hyperf/support": "~3.1.0",
  2288. "hyperf/utils": "~3.1.0",
  2289. "php": ">=8.1",
  2290. "psr/container": "^1.0 || ^2.0"
  2291. },
  2292. "type": "library",
  2293. "extra": {
  2294. "hyperf": {
  2295. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2296. },
  2297. "branch-alias": {
  2298. "dev-master": "3.1-dev"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "Hyperf\\DbConnection\\": "src/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "description": "A hyperf db connection handler for hyperf/database.",
  2311. "homepage": "https://hyperf.io",
  2312. "keywords": [
  2313. "Connection",
  2314. "database",
  2315. "hyperf",
  2316. "php"
  2317. ],
  2318. "support": {
  2319. "docs": "https://hyperf.wiki",
  2320. "issues": "https://github.com/hyperf/hyperf/issues",
  2321. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2322. "source": "https://github.com/hyperf/hyperf"
  2323. },
  2324. "funding": [
  2325. {
  2326. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2327. "type": "custom"
  2328. },
  2329. {
  2330. "url": "https://opencollective.com/hyperf",
  2331. "type": "open_collective"
  2332. }
  2333. ],
  2334. "time": "2024-10-11T08:58:16+00:00"
  2335. },
  2336. {
  2337. "name": "hyperf/di",
  2338. "version": "v3.1.53",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/hyperf/di.git",
  2342. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  2347. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  2348. "shasum": "",
  2349. "mirrors": [
  2350. {
  2351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2352. "preferred": true
  2353. }
  2354. ]
  2355. },
  2356. "require": {
  2357. "doctrine/instantiator": "^1.0",
  2358. "hyperf/code-parser": "~3.1.0",
  2359. "hyperf/pipeline": "~3.1.0",
  2360. "hyperf/stdlib": "~3.1.0",
  2361. "hyperf/support": "~3.1.0",
  2362. "nikic/php-parser": "^4.1",
  2363. "php": ">=8.1",
  2364. "php-di/phpdoc-reader": "^2.2",
  2365. "psr/container": "^1.0 || ^2.0",
  2366. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2367. "vlucas/phpdotenv": "^5.0"
  2368. },
  2369. "suggest": {
  2370. "ext-pcntl": "Required to scan annotations.",
  2371. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2372. },
  2373. "type": "library",
  2374. "extra": {
  2375. "hyperf": {
  2376. "config": "Hyperf\\Di\\ConfigProvider"
  2377. },
  2378. "branch-alias": {
  2379. "dev-master": "3.1-dev"
  2380. }
  2381. },
  2382. "autoload": {
  2383. "psr-4": {
  2384. "Hyperf\\Di\\": "src/"
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "description": "A DI for Hyperf.",
  2392. "homepage": "https://hyperf.io",
  2393. "keywords": [
  2394. "annotation",
  2395. "di",
  2396. "hyperf",
  2397. "php",
  2398. "swoole"
  2399. ],
  2400. "support": {
  2401. "docs": "https://hyperf.wiki",
  2402. "issues": "https://github.com/hyperf/hyperf/issues",
  2403. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2404. "source": "https://github.com/hyperf/hyperf"
  2405. },
  2406. "funding": [
  2407. {
  2408. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2409. "type": "custom"
  2410. },
  2411. {
  2412. "url": "https://opencollective.com/hyperf",
  2413. "type": "open_collective"
  2414. }
  2415. ],
  2416. "time": "2025-04-03T08:36:04+00:00"
  2417. },
  2418. {
  2419. "name": "hyperf/dispatcher",
  2420. "version": "v3.1.42",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/hyperf/dispatcher.git",
  2424. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2429. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2430. "shasum": "",
  2431. "mirrors": [
  2432. {
  2433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2434. "preferred": true
  2435. }
  2436. ]
  2437. },
  2438. "require": {
  2439. "hyperf/contract": "~3.1.0",
  2440. "php": ">=8.1",
  2441. "psr/container": "^1.0 || ^2.0",
  2442. "psr/http-message": "^1.0 || ^2.0",
  2443. "psr/http-server-middleware": "^1.0"
  2444. },
  2445. "type": "library",
  2446. "extra": {
  2447. "hyperf": {
  2448. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2449. },
  2450. "branch-alias": {
  2451. "dev-master": "3.1-dev"
  2452. }
  2453. },
  2454. "autoload": {
  2455. "psr-4": {
  2456. "Hyperf\\Dispatcher\\": "src/"
  2457. }
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "description": "A HTTP Server for Hyperf.",
  2464. "homepage": "https://hyperf.io",
  2465. "keywords": [
  2466. "dispatcher",
  2467. "filter",
  2468. "hyperf",
  2469. "middleware",
  2470. "php",
  2471. "swoole"
  2472. ],
  2473. "support": {
  2474. "docs": "https://hyperf.wiki",
  2475. "issues": "https://github.com/hyperf/hyperf/issues",
  2476. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2477. "source": "https://github.com/hyperf/hyperf"
  2478. },
  2479. "funding": [
  2480. {
  2481. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2482. "type": "custom"
  2483. },
  2484. {
  2485. "url": "https://opencollective.com/hyperf",
  2486. "type": "open_collective"
  2487. }
  2488. ],
  2489. "time": "2024-09-25T02:54:12+00:00"
  2490. },
  2491. {
  2492. "name": "hyperf/engine",
  2493. "version": "v2.14.0",
  2494. "source": {
  2495. "type": "git",
  2496. "url": "https://github.com/hyperf/engine.git",
  2497. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  2498. },
  2499. "dist": {
  2500. "type": "zip",
  2501. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  2502. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  2503. "shasum": "",
  2504. "mirrors": [
  2505. {
  2506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2507. "preferred": true
  2508. }
  2509. ]
  2510. },
  2511. "require": {
  2512. "hyperf/engine-contract": "~1.13.0",
  2513. "php": ">=8.0"
  2514. },
  2515. "conflict": {
  2516. "ext-swoole": "<5.0"
  2517. },
  2518. "require-dev": {
  2519. "friendsofphp/php-cs-fixer": "^3.0",
  2520. "hyperf/guzzle": "^3.0",
  2521. "hyperf/http-message": "^3.0",
  2522. "mockery/mockery": "^1.5",
  2523. "phpstan/phpstan": "^1.0",
  2524. "phpunit/phpunit": "^9.4",
  2525. "swoole/ide-helper": "5.*"
  2526. },
  2527. "suggest": {
  2528. "ext-sockets": "*",
  2529. "ext-swoole": ">=5.0",
  2530. "hyperf/http-message": "Required to use ResponseEmitter.",
  2531. "psr/http-message": "Required to use WebSocket Frame."
  2532. },
  2533. "type": "library",
  2534. "extra": {
  2535. "hyperf": {
  2536. "config": "Hyperf\\Engine\\ConfigProvider"
  2537. },
  2538. "branch-alias": {
  2539. "dev-master": "2.14-dev"
  2540. }
  2541. },
  2542. "autoload": {
  2543. "files": [
  2544. "src/Functions.php"
  2545. ],
  2546. "psr-4": {
  2547. "Hyperf\\Engine\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "description": "Coroutine engine provided by swoole.",
  2555. "keywords": [
  2556. "engine",
  2557. "hyperf",
  2558. "php",
  2559. "swoole"
  2560. ],
  2561. "support": {
  2562. "issues": "https://github.com/hyperf/engine/issues",
  2563. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  2564. },
  2565. "funding": [
  2566. {
  2567. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2568. "type": "custom"
  2569. },
  2570. {
  2571. "url": "https://opencollective.com/hyperf",
  2572. "type": "open_collective"
  2573. }
  2574. ],
  2575. "time": "2025-04-13T15:11:22+00:00"
  2576. },
  2577. {
  2578. "name": "hyperf/engine-contract",
  2579. "version": "v1.13.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/hyperf/engine-contract.git",
  2583. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2588. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2589. "shasum": "",
  2590. "mirrors": [
  2591. {
  2592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2593. "preferred": true
  2594. }
  2595. ]
  2596. },
  2597. "require": {
  2598. "php": ">=8.0"
  2599. },
  2600. "require-dev": {
  2601. "friendsofphp/php-cs-fixer": "^3.0",
  2602. "mockery/mockery": "^1.0",
  2603. "phpstan/phpstan": "^1.0",
  2604. "phpunit/phpunit": ">=7.0",
  2605. "psr/http-message": "^1.0",
  2606. "swoole/ide-helper": "^4.5"
  2607. },
  2608. "suggest": {
  2609. "psr/http-message": "Required to use WebSocket Frame."
  2610. },
  2611. "type": "library",
  2612. "extra": {
  2613. "branch-alias": {
  2614. "dev-master": "1.11-dev"
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Hyperf\\Engine\\Contract\\": "src/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "description": "Contract for Coroutine Engine",
  2627. "keywords": [
  2628. "contract",
  2629. "coroutine",
  2630. "engine",
  2631. "hyperf",
  2632. "php"
  2633. ],
  2634. "support": {
  2635. "issues": "https://github.com/hyperf/engine-contract/issues",
  2636. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  2637. },
  2638. "funding": [
  2639. {
  2640. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2641. "type": "custom"
  2642. },
  2643. {
  2644. "url": "https://opencollective.com/hyperf",
  2645. "type": "open_collective"
  2646. }
  2647. ],
  2648. "time": "2025-04-13T14:48:14+00:00"
  2649. },
  2650. {
  2651. "name": "hyperf/event",
  2652. "version": "v3.1.42",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/hyperf/event.git",
  2656. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2661. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2662. "shasum": "",
  2663. "mirrors": [
  2664. {
  2665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2666. "preferred": true
  2667. }
  2668. ]
  2669. },
  2670. "require": {
  2671. "hyperf/contract": "~3.1.0",
  2672. "hyperf/stdlib": "~3.1.0",
  2673. "php": ">=8.1",
  2674. "psr/event-dispatcher": "^1.0"
  2675. },
  2676. "suggest": {
  2677. "hyperf/di": "Required to use annotatioins."
  2678. },
  2679. "type": "library",
  2680. "extra": {
  2681. "hyperf": {
  2682. "config": "Hyperf\\Event\\ConfigProvider"
  2683. },
  2684. "branch-alias": {
  2685. "dev-master": "3.1-dev"
  2686. }
  2687. },
  2688. "autoload": {
  2689. "psr-4": {
  2690. "Hyperf\\Event\\": "src/"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "description": "an event manager that implements PSR-14.",
  2698. "homepage": "https://hyperf.io",
  2699. "keywords": [
  2700. "event",
  2701. "hyperf",
  2702. "php",
  2703. "swoole"
  2704. ],
  2705. "support": {
  2706. "docs": "https://hyperf.wiki",
  2707. "issues": "https://github.com/hyperf/hyperf/issues",
  2708. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2709. "source": "https://github.com/hyperf/hyperf"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2714. "type": "custom"
  2715. },
  2716. {
  2717. "url": "https://opencollective.com/hyperf",
  2718. "type": "open_collective"
  2719. }
  2720. ],
  2721. "time": "2024-09-25T02:54:12+00:00"
  2722. },
  2723. {
  2724. "name": "hyperf/exception-handler",
  2725. "version": "v3.1.42",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/hyperf/exception-handler.git",
  2729. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2734. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "hyperf/context": "~3.1.0",
  2745. "hyperf/contract": "~3.1.0",
  2746. "hyperf/dispatcher": "~3.1.0",
  2747. "hyperf/http-message": "~3.1.0",
  2748. "hyperf/stdlib": "~3.1.0",
  2749. "hyperf/support": "~3.1.0",
  2750. "php": ">=8.1",
  2751. "psr/container": "^1.0 || ^2.0",
  2752. "psr/http-message": "^1.0 || ^2.0",
  2753. "swow/psr7-plus": "^1.0"
  2754. },
  2755. "suggest": {
  2756. "hyperf/di": "Required to use #[ExceptionHandler]",
  2757. "hyperf/event": "Required to use listeners",
  2758. "hyperf/framework": "Required to use listeners",
  2759. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2760. },
  2761. "type": "library",
  2762. "extra": {
  2763. "hyperf": {
  2764. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2765. },
  2766. "branch-alias": {
  2767. "dev-master": "3.1-dev"
  2768. }
  2769. },
  2770. "autoload": {
  2771. "psr-4": {
  2772. "Hyperf\\ExceptionHandler\\": "src/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "description": "Exception handler for hyperf",
  2780. "homepage": "https://hyperf.io",
  2781. "keywords": [
  2782. "exception-handler",
  2783. "php",
  2784. "swoole"
  2785. ],
  2786. "support": {
  2787. "docs": "https://hyperf.wiki",
  2788. "issues": "https://github.com/hyperf/hyperf/issues",
  2789. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2790. "source": "https://github.com/hyperf/hyperf"
  2791. },
  2792. "funding": [
  2793. {
  2794. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2795. "type": "custom"
  2796. },
  2797. {
  2798. "url": "https://opencollective.com/hyperf",
  2799. "type": "open_collective"
  2800. }
  2801. ],
  2802. "time": "2024-09-25T02:54:12+00:00"
  2803. },
  2804. {
  2805. "name": "hyperf/framework",
  2806. "version": "v3.1.42",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/hyperf/framework.git",
  2810. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2815. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2816. "shasum": "",
  2817. "mirrors": [
  2818. {
  2819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2820. "preferred": true
  2821. }
  2822. ]
  2823. },
  2824. "require": {
  2825. "fig/http-message-util": "^1.1.2",
  2826. "hyperf/contract": "~3.1.0",
  2827. "hyperf/coordinator": "~3.1.0",
  2828. "hyperf/coroutine": "~3.1.0",
  2829. "php": ">=8.1",
  2830. "psr/container": "^1.0 || ^2.0",
  2831. "psr/event-dispatcher": "^1.0",
  2832. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2833. },
  2834. "suggest": {
  2835. "ext-swoole": "Required to use swoole engine.",
  2836. "hyperf/command": "Required to use Command annotation.",
  2837. "hyperf/di": "Required to use Command annotation.",
  2838. "hyperf/dispatcher": "Required to use BootApplication event.",
  2839. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2840. },
  2841. "type": "library",
  2842. "extra": {
  2843. "hyperf": {
  2844. "config": "Hyperf\\Framework\\ConfigProvider"
  2845. },
  2846. "branch-alias": {
  2847. "dev-master": "3.1-dev"
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Hyperf\\Framework\\": "src/"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2860. "homepage": "https://hyperf.io",
  2861. "keywords": [
  2862. "Microservice",
  2863. "framework",
  2864. "hyperf",
  2865. "middleware",
  2866. "php",
  2867. "swoole"
  2868. ],
  2869. "support": {
  2870. "docs": "https://hyperf.wiki",
  2871. "issues": "https://github.com/hyperf/hyperf/issues",
  2872. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2873. "source": "https://github.com/hyperf/hyperf"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://opencollective.com/hyperf",
  2882. "type": "open_collective"
  2883. }
  2884. ],
  2885. "time": "2024-09-25T02:54:12+00:00"
  2886. },
  2887. {
  2888. "name": "hyperf/guzzle",
  2889. "version": "v3.1.42",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/hyperf/guzzle.git",
  2893. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2898. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2899. "shasum": "",
  2900. "mirrors": [
  2901. {
  2902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2903. "preferred": true
  2904. }
  2905. ]
  2906. },
  2907. "require": {
  2908. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2909. "php": ">=8.1",
  2910. "psr/container": "^1.0 || ^2.0",
  2911. "psr/http-message": "^1.0 || ^2.0"
  2912. },
  2913. "suggest": {
  2914. "ext-curl": "Required for CURL handler support",
  2915. "hyperf/pool": "Required to use pool handler."
  2916. },
  2917. "type": "library",
  2918. "extra": {
  2919. "hyperf": {
  2920. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2921. },
  2922. "branch-alias": {
  2923. "dev-master": "3.1-dev"
  2924. }
  2925. },
  2926. "autoload": {
  2927. "psr-4": {
  2928. "Hyperf\\Guzzle\\": "src/"
  2929. }
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "MIT"
  2934. ],
  2935. "description": "Swoole coroutine handler for guzzle",
  2936. "keywords": [
  2937. "Guzzle",
  2938. "handler",
  2939. "php",
  2940. "swoole"
  2941. ],
  2942. "support": {
  2943. "issues": "https://github.com/hyperf/guzzle/issues",
  2944. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2945. },
  2946. "funding": [
  2947. {
  2948. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2949. "type": "custom"
  2950. },
  2951. {
  2952. "url": "https://opencollective.com/hyperf",
  2953. "type": "open_collective"
  2954. }
  2955. ],
  2956. "time": "2024-09-25T02:54:12+00:00"
  2957. },
  2958. {
  2959. "name": "hyperf/http-message",
  2960. "version": "v3.1.48",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/hyperf/http-message.git",
  2964. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2969. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2970. "shasum": "",
  2971. "mirrors": [
  2972. {
  2973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2974. "preferred": true
  2975. }
  2976. ]
  2977. },
  2978. "require": {
  2979. "hyperf/codec": "~3.1.0",
  2980. "hyperf/engine": "^2.11",
  2981. "hyperf/support": "~3.1.0",
  2982. "laminas/laminas-mime": "^2.7",
  2983. "php": ">=8.1",
  2984. "psr/http-message": "^1.0 || ^2.0",
  2985. "swow/psr7-plus": "^1.0"
  2986. },
  2987. "suggest": {
  2988. "psr/container": "Required to replace RequestParserInterface."
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "hyperf": {
  2993. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2994. },
  2995. "branch-alias": {
  2996. "dev-master": "3.1-dev"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Hyperf\\HttpMessage\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "description": "microservice framework base on swoole",
  3009. "keywords": [
  3010. "http-message",
  3011. "hyperf",
  3012. "php",
  3013. "swoole"
  3014. ],
  3015. "support": {
  3016. "issues": "https://github.com/hyperf/http-message/issues",
  3017. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://opencollective.com/hyperf",
  3026. "type": "open_collective"
  3027. }
  3028. ],
  3029. "time": "2024-12-05T02:41:08+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/http-server",
  3033. "version": "v3.1.55",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/http-server.git",
  3037. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/http-server/zipball/96a1d80cd9482942899d7068af0e6ecb78d382ce",
  3042. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce",
  3043. "shasum": "",
  3044. "mirrors": [
  3045. {
  3046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3047. "preferred": true
  3048. }
  3049. ]
  3050. },
  3051. "require": {
  3052. "hyperf/codec": "~3.1.0",
  3053. "hyperf/collection": "~3.1.0",
  3054. "hyperf/context": "~3.1.0",
  3055. "hyperf/contract": "~3.1.0",
  3056. "hyperf/coroutine": "~3.1.0",
  3057. "hyperf/dispatcher": "~3.1.0",
  3058. "hyperf/event": "~3.1.0",
  3059. "hyperf/exception-handler": "~3.1.0",
  3060. "hyperf/http-message": "~3.1.0",
  3061. "hyperf/macroable": "~3.1.0",
  3062. "hyperf/serializer": "~3.1.0",
  3063. "hyperf/server": "~3.1.0",
  3064. "hyperf/stdlib": "~3.1.0",
  3065. "hyperf/support": "~3.1.0",
  3066. "nikic/fast-route": "^1.3",
  3067. "php": ">=8.1",
  3068. "psr/container": "^1.0 || ^2.0",
  3069. "swow/psr7-plus": "^1.0"
  3070. },
  3071. "suggest": {
  3072. "hyperf/di": "Required to use annotations."
  3073. },
  3074. "type": "library",
  3075. "extra": {
  3076. "hyperf": {
  3077. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3078. },
  3079. "branch-alias": {
  3080. "dev-master": "3.1-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Hyperf\\HttpServer\\": "src/"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "description": "A HTTP Server for Hyperf.",
  3093. "homepage": "https://hyperf.io",
  3094. "keywords": [
  3095. "http",
  3096. "http-server",
  3097. "hyperf",
  3098. "php",
  3099. "swoole"
  3100. ],
  3101. "support": {
  3102. "docs": "https://hyperf.wiki",
  3103. "issues": "https://github.com/hyperf/hyperf/issues",
  3104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3105. "source": "https://github.com/hyperf/hyperf"
  3106. },
  3107. "funding": [
  3108. {
  3109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3110. "type": "custom"
  3111. },
  3112. {
  3113. "url": "https://opencollective.com/hyperf",
  3114. "type": "open_collective"
  3115. }
  3116. ],
  3117. "time": "2025-05-14T07:44:25+00:00"
  3118. },
  3119. {
  3120. "name": "hyperf/json-rpc",
  3121. "version": "v3.1.47",
  3122. "source": {
  3123. "type": "git",
  3124. "url": "https://github.com/hyperf/json-rpc.git",
  3125. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3126. },
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3130. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3131. "shasum": "",
  3132. "mirrors": [
  3133. {
  3134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3135. "preferred": true
  3136. }
  3137. ]
  3138. },
  3139. "require": {
  3140. "hyperf/codec": "~3.1.0",
  3141. "hyperf/context": "~3.1.0",
  3142. "hyperf/contract": "~3.1.0",
  3143. "hyperf/engine": "^2.0",
  3144. "hyperf/http-message": "~3.1.0",
  3145. "hyperf/load-balancer": "~3.1.0",
  3146. "hyperf/rpc": "~3.1.0",
  3147. "hyperf/serializer": "~3.1.0",
  3148. "hyperf/support": "~3.1.0",
  3149. "hyperf/utils": "~3.1.0",
  3150. "php": ">=8.1",
  3151. "psr/container": "^1.0 || ^2.0",
  3152. "swow/psr7-plus": "^1.0"
  3153. },
  3154. "suggest": {
  3155. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3156. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3157. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3158. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3159. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "hyperf": {
  3164. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3165. },
  3166. "branch-alias": {
  3167. "dev-master": "3.1-dev"
  3168. }
  3169. },
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Hyperf\\JsonRpc\\": "src/"
  3173. }
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3180. "homepage": "https://hyperf.io",
  3181. "keywords": [
  3182. "hyperf",
  3183. "json-rpc",
  3184. "php",
  3185. "swoole"
  3186. ],
  3187. "support": {
  3188. "docs": "https://hyperf.wiki",
  3189. "issues": "https://github.com/hyperf/hyperf/issues",
  3190. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3191. "source": "https://github.com/hyperf/hyperf"
  3192. },
  3193. "funding": [
  3194. {
  3195. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3196. "type": "custom"
  3197. },
  3198. {
  3199. "url": "https://opencollective.com/hyperf",
  3200. "type": "open_collective"
  3201. }
  3202. ],
  3203. "time": "2024-11-28T01:51:55+00:00"
  3204. },
  3205. {
  3206. "name": "hyperf/load-balancer",
  3207. "version": "v3.1.42",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://github.com/hyperf/load-balancer.git",
  3211. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3216. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3217. "shasum": "",
  3218. "mirrors": [
  3219. {
  3220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3221. "preferred": true
  3222. }
  3223. ]
  3224. },
  3225. "require": {
  3226. "hyperf/coordinator": "~3.1.0",
  3227. "hyperf/coroutine": "~3.1.0",
  3228. "markrogoyski/math-php": "^2.0",
  3229. "php": ">=8.1",
  3230. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3231. },
  3232. "type": "library",
  3233. "extra": {
  3234. "hyperf": {
  3235. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3236. },
  3237. "branch-alias": {
  3238. "dev-master": "3.1-dev"
  3239. }
  3240. },
  3241. "autoload": {
  3242. "psr-4": {
  3243. "Hyperf\\LoadBalancer\\": "src/"
  3244. }
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "description": "A load balancer library for Hyperf.",
  3251. "homepage": "https://hyperf.io",
  3252. "keywords": [
  3253. "hyperf",
  3254. "load-balancer",
  3255. "php",
  3256. "swoole"
  3257. ],
  3258. "support": {
  3259. "docs": "https://hyperf.wiki",
  3260. "issues": "https://github.com/hyperf/hyperf/issues",
  3261. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3262. "source": "https://github.com/hyperf/hyperf"
  3263. },
  3264. "funding": [
  3265. {
  3266. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3267. "type": "custom"
  3268. },
  3269. {
  3270. "url": "https://opencollective.com/hyperf",
  3271. "type": "open_collective"
  3272. }
  3273. ],
  3274. "time": "2024-09-25T02:54:12+00:00"
  3275. },
  3276. {
  3277. "name": "hyperf/logger",
  3278. "version": "v3.1.55",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/hyperf/logger.git",
  3282. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/hyperf/logger/zipball/8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3287. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3288. "shasum": "",
  3289. "mirrors": [
  3290. {
  3291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3292. "preferred": true
  3293. }
  3294. ]
  3295. },
  3296. "require": {
  3297. "hyperf/contract": "~3.1.0",
  3298. "hyperf/support": "~3.1.0",
  3299. "hyperf/utils": "~3.1.0",
  3300. "monolog/monolog": "^2.7 || ^3.1",
  3301. "php": ">=8.1",
  3302. "psr/container": "^1.0 || ^2.0",
  3303. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3304. },
  3305. "type": "library",
  3306. "extra": {
  3307. "hyperf": {
  3308. "config": "Hyperf\\Logger\\ConfigProvider"
  3309. },
  3310. "branch-alias": {
  3311. "dev-master": "3.1-dev"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Hyperf\\Logger\\": "src/"
  3317. }
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "description": "A logger component for hyperf.",
  3324. "homepage": "https://hyperf.io",
  3325. "keywords": [
  3326. "hyperf",
  3327. "logger",
  3328. "php"
  3329. ],
  3330. "support": {
  3331. "docs": "https://hyperf.wiki",
  3332. "issues": "https://github.com/hyperf/hyperf/issues",
  3333. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3334. "source": "https://github.com/hyperf/hyperf"
  3335. },
  3336. "funding": [
  3337. {
  3338. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3339. "type": "custom"
  3340. },
  3341. {
  3342. "url": "https://opencollective.com/hyperf",
  3343. "type": "open_collective"
  3344. }
  3345. ],
  3346. "time": "2025-05-14T08:25:19+00:00"
  3347. },
  3348. {
  3349. "name": "hyperf/macroable",
  3350. "version": "v3.1.42",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/hyperf/macroable.git",
  3354. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3359. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3360. "shasum": "",
  3361. "mirrors": [
  3362. {
  3363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3364. "preferred": true
  3365. }
  3366. ]
  3367. },
  3368. "require": {
  3369. "php": ">=8.1"
  3370. },
  3371. "type": "library",
  3372. "extra": {
  3373. "branch-alias": {
  3374. "dev-master": "3.1-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "psr-4": {
  3379. "Hyperf\\Macroable\\": "src/"
  3380. }
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "MIT"
  3385. ],
  3386. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3387. "homepage": "https://hyperf.io",
  3388. "keywords": [
  3389. "hyperf",
  3390. "macroable",
  3391. "php",
  3392. "swoole"
  3393. ],
  3394. "support": {
  3395. "docs": "https://hyperf.wiki",
  3396. "issues": "https://github.com/hyperf/hyperf/issues",
  3397. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3398. "source": "https://github.com/hyperf/hyperf"
  3399. },
  3400. "funding": [
  3401. {
  3402. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3403. "type": "custom"
  3404. },
  3405. {
  3406. "url": "https://opencollective.com/hyperf",
  3407. "type": "open_collective"
  3408. }
  3409. ],
  3410. "time": "2024-09-25T02:54:12+00:00"
  3411. },
  3412. {
  3413. "name": "hyperf/memory",
  3414. "version": "v3.1.53",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/hyperf/memory.git",
  3418. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  3423. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  3424. "shasum": "",
  3425. "mirrors": [
  3426. {
  3427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3428. "preferred": true
  3429. }
  3430. ]
  3431. },
  3432. "require": {
  3433. "php": ">=8.1"
  3434. },
  3435. "type": "library",
  3436. "extra": {
  3437. "hyperf": {
  3438. "config": "Hyperf\\Memory\\ConfigProvider"
  3439. },
  3440. "branch-alias": {
  3441. "dev-master": "3.1-dev"
  3442. }
  3443. },
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Hyperf\\Memory\\": "src/"
  3447. }
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "MIT"
  3452. ],
  3453. "description": "An independent component that use to operate and manage memory.",
  3454. "homepage": "https://hyperf.io",
  3455. "keywords": [
  3456. "hyperf",
  3457. "memory",
  3458. "php",
  3459. "swoole"
  3460. ],
  3461. "support": {
  3462. "docs": "https://hyperf.wiki",
  3463. "issues": "https://github.com/hyperf/hyperf/issues",
  3464. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3465. "source": "https://github.com/hyperf/hyperf"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://opencollective.com/hyperf",
  3474. "type": "open_collective"
  3475. }
  3476. ],
  3477. "time": "2025-04-03T09:12:55+00:00"
  3478. },
  3479. {
  3480. "name": "hyperf/model-listener",
  3481. "version": "v3.1.42",
  3482. "source": {
  3483. "type": "git",
  3484. "url": "https://github.com/hyperf/model-listener.git",
  3485. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3486. },
  3487. "dist": {
  3488. "type": "zip",
  3489. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3490. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3491. "shasum": "",
  3492. "mirrors": [
  3493. {
  3494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3495. "preferred": true
  3496. }
  3497. ]
  3498. },
  3499. "require": {
  3500. "hyperf/contract": "~3.1.0",
  3501. "hyperf/database": "~3.1.0",
  3502. "hyperf/di": "~3.1.0",
  3503. "hyperf/event": "~3.1.0",
  3504. "hyperf/support": "~3.1.0",
  3505. "hyperf/utils": "~3.1.0",
  3506. "php": ">=8.1",
  3507. "psr/container": "^1.0 || ^2.0"
  3508. },
  3509. "type": "library",
  3510. "extra": {
  3511. "hyperf": {
  3512. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3513. },
  3514. "branch-alias": {
  3515. "dev-master": "3.1-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Hyperf\\ModelListener\\": "src/"
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "MIT"
  3526. ],
  3527. "description": "A model listener for Hyperf.",
  3528. "homepage": "https://hyperf.io",
  3529. "keywords": [
  3530. "hyperf",
  3531. "model-listener",
  3532. "php",
  3533. "swoole"
  3534. ],
  3535. "support": {
  3536. "docs": "https://hyperf.wiki",
  3537. "issues": "https://github.com/hyperf/hyperf/issues",
  3538. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3539. "source": "https://github.com/hyperf/hyperf"
  3540. },
  3541. "funding": [
  3542. {
  3543. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3544. "type": "custom"
  3545. },
  3546. {
  3547. "url": "https://opencollective.com/hyperf",
  3548. "type": "open_collective"
  3549. }
  3550. ],
  3551. "time": "2024-09-25T02:54:12+00:00"
  3552. },
  3553. {
  3554. "name": "hyperf/nacos",
  3555. "version": "v3.1.52",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://github.com/hyperf/nacos.git",
  3559. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01"
  3560. },
  3561. "dist": {
  3562. "type": "zip",
  3563. "url": "https://api.github.com/repos/hyperf/nacos/zipball/6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3564. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3565. "shasum": "",
  3566. "mirrors": [
  3567. {
  3568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3569. "preferred": true
  3570. }
  3571. ]
  3572. },
  3573. "require": {
  3574. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3575. "hyperf/codec": "~3.1.0",
  3576. "hyperf/contract": "~3.1.0",
  3577. "hyperf/support": "~3.1.0",
  3578. "hyperf/utils": "~3.1.0",
  3579. "jetbrains/phpstorm-attributes": "^1.0",
  3580. "php": ">=8.1"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "hyperf": {
  3585. "config": "Hyperf\\Nacos\\ConfigProvider"
  3586. },
  3587. "branch-alias": {
  3588. "dev-master": "3.1-dev"
  3589. }
  3590. },
  3591. "autoload": {
  3592. "psr-4": {
  3593. "Hyperf\\Nacos\\": "src/"
  3594. }
  3595. },
  3596. "notification-url": "https://packagist.org/downloads/",
  3597. "license": [
  3598. "MIT"
  3599. ],
  3600. "description": "Nacos SDK",
  3601. "keywords": [
  3602. "hyperf",
  3603. "nacos",
  3604. "php"
  3605. ],
  3606. "support": {
  3607. "issues": "https://github.com/hyperf/nacos/issues",
  3608. "source": "https://github.com/hyperf/nacos/tree/v3.1.52"
  3609. },
  3610. "funding": [
  3611. {
  3612. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3613. "type": "custom"
  3614. },
  3615. {
  3616. "url": "https://opencollective.com/hyperf",
  3617. "type": "open_collective"
  3618. }
  3619. ],
  3620. "time": "2025-02-27T06:49:30+00:00"
  3621. },
  3622. {
  3623. "name": "hyperf/paginator",
  3624. "version": "v3.1.49",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/hyperf/paginator.git",
  3628. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3633. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3634. "shasum": "",
  3635. "mirrors": [
  3636. {
  3637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3638. "preferred": true
  3639. }
  3640. ]
  3641. },
  3642. "require": {
  3643. "hyperf/contract": "~3.1.0",
  3644. "hyperf/support": "~3.1.0",
  3645. "hyperf/utils": "~3.1.0",
  3646. "php": ">=8.1"
  3647. },
  3648. "suggest": {
  3649. "hyperf/event": "Reqiured to use PageResolverListener.",
  3650. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3651. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "hyperf": {
  3656. "config": "Hyperf\\Paginator\\ConfigProvider"
  3657. },
  3658. "branch-alias": {
  3659. "dev-master": "3.1-dev"
  3660. }
  3661. },
  3662. "autoload": {
  3663. "psr-4": {
  3664. "Hyperf\\Paginator\\": "src/"
  3665. }
  3666. },
  3667. "notification-url": "https://packagist.org/downloads/",
  3668. "license": [
  3669. "MIT"
  3670. ],
  3671. "description": "A paginator component for hyperf.",
  3672. "homepage": "https://hyperf.io",
  3673. "keywords": [
  3674. "hyperf",
  3675. "paginator",
  3676. "php"
  3677. ],
  3678. "support": {
  3679. "docs": "https://hyperf.wiki",
  3680. "issues": "https://github.com/hyperf/hyperf/issues",
  3681. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3682. "source": "https://github.com/hyperf/hyperf"
  3683. },
  3684. "funding": [
  3685. {
  3686. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://opencollective.com/hyperf",
  3691. "type": "open_collective"
  3692. }
  3693. ],
  3694. "time": "2024-12-17T09:42:13+00:00"
  3695. },
  3696. {
  3697. "name": "hyperf/pipeline",
  3698. "version": "v3.1.42",
  3699. "source": {
  3700. "type": "git",
  3701. "url": "https://github.com/hyperf/pipeline.git",
  3702. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3703. },
  3704. "dist": {
  3705. "type": "zip",
  3706. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3707. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3708. "shasum": "",
  3709. "mirrors": [
  3710. {
  3711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3712. "preferred": true
  3713. }
  3714. ]
  3715. },
  3716. "require": {
  3717. "php": ">=8.1",
  3718. "psr/container": "^1.0 || ^2.0"
  3719. },
  3720. "type": "library",
  3721. "extra": {
  3722. "branch-alias": {
  3723. "dev-master": "3.1-dev"
  3724. }
  3725. },
  3726. "autoload": {
  3727. "psr-4": {
  3728. "Hyperf\\Pipeline\\": "src/"
  3729. }
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3736. "homepage": "https://hyperf.io",
  3737. "keywords": [
  3738. "hyperf",
  3739. "php",
  3740. "pipeline",
  3741. "swoole"
  3742. ],
  3743. "support": {
  3744. "docs": "https://hyperf.wiki",
  3745. "issues": "https://github.com/hyperf/hyperf/issues",
  3746. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3747. "source": "https://github.com/hyperf/hyperf"
  3748. },
  3749. "funding": [
  3750. {
  3751. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3752. "type": "custom"
  3753. },
  3754. {
  3755. "url": "https://opencollective.com/hyperf",
  3756. "type": "open_collective"
  3757. }
  3758. ],
  3759. "time": "2024-09-25T02:54:12+00:00"
  3760. },
  3761. {
  3762. "name": "hyperf/pool",
  3763. "version": "v3.1.42",
  3764. "source": {
  3765. "type": "git",
  3766. "url": "https://github.com/hyperf/pool.git",
  3767. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3768. },
  3769. "dist": {
  3770. "type": "zip",
  3771. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3772. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3773. "shasum": "",
  3774. "mirrors": [
  3775. {
  3776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3777. "preferred": true
  3778. }
  3779. ]
  3780. },
  3781. "require": {
  3782. "hyperf/contract": "~3.1.0",
  3783. "hyperf/support": "~3.1.0",
  3784. "hyperf/utils": "~3.1.0",
  3785. "php": ">=8.1",
  3786. "psr/container": "^1.0 || ^2.0"
  3787. },
  3788. "suggest": {
  3789. "psr/event-dispatcher": "Required to use events."
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "hyperf": {
  3794. "config": "Hyperf\\Pool\\ConfigProvider"
  3795. },
  3796. "branch-alias": {
  3797. "dev-master": "3.1-dev"
  3798. }
  3799. },
  3800. "autoload": {
  3801. "psr-4": {
  3802. "Hyperf\\Pool\\": "src/"
  3803. }
  3804. },
  3805. "notification-url": "https://packagist.org/downloads/",
  3806. "license": [
  3807. "MIT"
  3808. ],
  3809. "description": "An independent universal connection pool component.",
  3810. "homepage": "https://hyperf.io",
  3811. "keywords": [
  3812. "connection-pool",
  3813. "hyperf",
  3814. "php",
  3815. "swoole"
  3816. ],
  3817. "support": {
  3818. "docs": "https://hyperf.wiki",
  3819. "issues": "https://github.com/hyperf/hyperf/issues",
  3820. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3821. "source": "https://github.com/hyperf/hyperf"
  3822. },
  3823. "funding": [
  3824. {
  3825. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3826. "type": "custom"
  3827. },
  3828. {
  3829. "url": "https://opencollective.com/hyperf",
  3830. "type": "open_collective"
  3831. }
  3832. ],
  3833. "time": "2024-09-25T02:54:12+00:00"
  3834. },
  3835. {
  3836. "name": "hyperf/process",
  3837. "version": "v3.1.48",
  3838. "source": {
  3839. "type": "git",
  3840. "url": "https://github.com/hyperf/process.git",
  3841. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3842. },
  3843. "dist": {
  3844. "type": "zip",
  3845. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3846. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3847. "shasum": "",
  3848. "mirrors": [
  3849. {
  3850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3851. "preferred": true
  3852. }
  3853. ]
  3854. },
  3855. "require": {
  3856. "hyperf/contract": "~3.1.0",
  3857. "hyperf/support": "~3.1.0",
  3858. "hyperf/utils": "~3.1.0",
  3859. "php": ">=8.1",
  3860. "psr/container": "^1.0 || ^2.0",
  3861. "psr/event-dispatcher": "^1.0"
  3862. },
  3863. "suggest": {
  3864. "hyperf/di": "Required to use annotations.",
  3865. "hyperf/event": "Required to dump the message before and after process.",
  3866. "hyperf/framework": "Required to use BootProcessListener."
  3867. },
  3868. "type": "library",
  3869. "extra": {
  3870. "hyperf": {
  3871. "config": "Hyperf\\Process\\ConfigProvider"
  3872. },
  3873. "branch-alias": {
  3874. "dev-master": "3.1-dev"
  3875. }
  3876. },
  3877. "autoload": {
  3878. "psr-4": {
  3879. "Hyperf\\Process\\": "src/"
  3880. }
  3881. },
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "MIT"
  3885. ],
  3886. "description": "A process component for hyperf.",
  3887. "homepage": "https://hyperf.io",
  3888. "keywords": [
  3889. "hyperf",
  3890. "php",
  3891. "process"
  3892. ],
  3893. "support": {
  3894. "docs": "https://hyperf.wiki",
  3895. "issues": "https://github.com/hyperf/hyperf/issues",
  3896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3897. "source": "https://github.com/hyperf/hyperf"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://opencollective.com/hyperf",
  3906. "type": "open_collective"
  3907. }
  3908. ],
  3909. "time": "2024-12-02T10:54:30+00:00"
  3910. },
  3911. {
  3912. "name": "hyperf/redis",
  3913. "version": "v3.1.53",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/hyperf/redis.git",
  3917. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3922. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3923. "shasum": "",
  3924. "mirrors": [
  3925. {
  3926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3927. "preferred": true
  3928. }
  3929. ]
  3930. },
  3931. "require": {
  3932. "ext-redis": "^5.0 || ^6.0",
  3933. "hyperf/contract": "~3.1.0",
  3934. "hyperf/pool": "~3.1.0",
  3935. "hyperf/support": "~3.1.0",
  3936. "hyperf/tappable": "~3.1.0",
  3937. "hyperf/utils": "~3.1.0",
  3938. "php": ">=8.1",
  3939. "psr/container": "^1.0 || ^2.0"
  3940. },
  3941. "suggest": {
  3942. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3943. "hyperf/di": "Create the RedisPool via dependency injection."
  3944. },
  3945. "type": "library",
  3946. "extra": {
  3947. "hyperf": {
  3948. "config": "Hyperf\\Redis\\ConfigProvider"
  3949. },
  3950. "branch-alias": {
  3951. "dev-master": "3.1-dev"
  3952. }
  3953. },
  3954. "autoload": {
  3955. "psr-4": {
  3956. "Hyperf\\Redis\\": "src/"
  3957. }
  3958. },
  3959. "notification-url": "https://packagist.org/downloads/",
  3960. "license": [
  3961. "MIT"
  3962. ],
  3963. "description": "A redis component for hyperf.",
  3964. "homepage": "https://hyperf.io",
  3965. "keywords": [
  3966. "hyperf",
  3967. "php",
  3968. "pool",
  3969. "redis"
  3970. ],
  3971. "support": {
  3972. "docs": "https://hyperf.wiki",
  3973. "issues": "https://github.com/hyperf/hyperf/issues",
  3974. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3975. "source": "https://github.com/hyperf/hyperf"
  3976. },
  3977. "funding": [
  3978. {
  3979. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3980. "type": "custom"
  3981. },
  3982. {
  3983. "url": "https://opencollective.com/hyperf",
  3984. "type": "open_collective"
  3985. }
  3986. ],
  3987. "time": "2025-04-03T07:31:20+00:00"
  3988. },
  3989. {
  3990. "name": "hyperf/rpc",
  3991. "version": "v3.1.42",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/hyperf/rpc.git",
  3995. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4000. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4001. "shasum": "",
  4002. "mirrors": [
  4003. {
  4004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4005. "preferred": true
  4006. }
  4007. ]
  4008. },
  4009. "require": {
  4010. "hyperf/codec": "~3.1.0",
  4011. "hyperf/contract": "~3.1.0",
  4012. "hyperf/support": "~3.1.0",
  4013. "jetbrains/phpstorm-attributes": "^1.0",
  4014. "php": ">=8.1"
  4015. },
  4016. "type": "library",
  4017. "extra": {
  4018. "hyperf": [],
  4019. "branch-alias": {
  4020. "dev-master": "3.1-dev"
  4021. }
  4022. },
  4023. "autoload": {
  4024. "psr-4": {
  4025. "Hyperf\\Rpc\\": "src/"
  4026. }
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "MIT"
  4031. ],
  4032. "description": "A rpc basic library for Hyperf.",
  4033. "homepage": "https://hyperf.io",
  4034. "keywords": [
  4035. "hyperf",
  4036. "php",
  4037. "rpc",
  4038. "swoole"
  4039. ],
  4040. "support": {
  4041. "docs": "https://hyperf.wiki",
  4042. "issues": "https://github.com/hyperf/hyperf/issues",
  4043. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4044. "source": "https://github.com/hyperf/hyperf"
  4045. },
  4046. "funding": [
  4047. {
  4048. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4049. "type": "custom"
  4050. },
  4051. {
  4052. "url": "https://opencollective.com/hyperf",
  4053. "type": "open_collective"
  4054. }
  4055. ],
  4056. "time": "2024-09-25T02:54:12+00:00"
  4057. },
  4058. {
  4059. "name": "hyperf/rpc-server",
  4060. "version": "v3.1.42",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/hyperf/rpc-server.git",
  4064. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4069. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4070. "shasum": "",
  4071. "mirrors": [
  4072. {
  4073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4074. "preferred": true
  4075. }
  4076. ]
  4077. },
  4078. "require": {
  4079. "hyperf/http-server": "~3.1.0",
  4080. "hyperf/rpc": "~3.1.0",
  4081. "php": ">=8.1"
  4082. },
  4083. "suggest": {
  4084. "hyperf/di": "Required to use annotations."
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "hyperf": {
  4089. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4090. },
  4091. "branch-alias": {
  4092. "dev-master": "3.1-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "psr-4": {
  4097. "Hyperf\\RpcServer\\": "src/"
  4098. }
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "description": "An abstract rpc server component for Hyperf.",
  4105. "homepage": "https://hyperf.io",
  4106. "keywords": [
  4107. "hyperf",
  4108. "php",
  4109. "rpc",
  4110. "rpc-server",
  4111. "swoole"
  4112. ],
  4113. "support": {
  4114. "docs": "https://hyperf.wiki",
  4115. "issues": "https://github.com/hyperf/hyperf/issues",
  4116. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4117. "source": "https://github.com/hyperf/hyperf"
  4118. },
  4119. "funding": [
  4120. {
  4121. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4122. "type": "custom"
  4123. },
  4124. {
  4125. "url": "https://opencollective.com/hyperf",
  4126. "type": "open_collective"
  4127. }
  4128. ],
  4129. "time": "2024-09-25T02:54:12+00:00"
  4130. },
  4131. {
  4132. "name": "hyperf/serializer",
  4133. "version": "v3.1.42",
  4134. "source": {
  4135. "type": "git",
  4136. "url": "https://github.com/hyperf/serializer.git",
  4137. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4138. },
  4139. "dist": {
  4140. "type": "zip",
  4141. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4142. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4143. "shasum": "",
  4144. "mirrors": [
  4145. {
  4146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4147. "preferred": true
  4148. }
  4149. ]
  4150. },
  4151. "require": {
  4152. "hyperf/contract": "~3.1.0",
  4153. "php": ">=8.1"
  4154. },
  4155. "suggest": {
  4156. "hyperf/di": "Required to use ExceptionNormalizer",
  4157. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4158. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "hyperf": {
  4163. "config": "Hyperf\\Serializer\\ConfigProvider"
  4164. },
  4165. "branch-alias": {
  4166. "dev-master": "3.1-dev"
  4167. }
  4168. },
  4169. "autoload": {
  4170. "psr-4": {
  4171. "Hyperf\\Serializer\\": "src/"
  4172. }
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "description": "A serializer component for Hyperf.",
  4179. "homepage": "https://hyperf.io",
  4180. "keywords": [
  4181. "hyperf",
  4182. "php",
  4183. "swoole",
  4184. "tappable"
  4185. ],
  4186. "support": {
  4187. "docs": "https://hyperf.wiki",
  4188. "issues": "https://github.com/hyperf/hyperf/issues",
  4189. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4190. "source": "https://github.com/hyperf/hyperf"
  4191. },
  4192. "funding": [
  4193. {
  4194. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4195. "type": "custom"
  4196. },
  4197. {
  4198. "url": "https://opencollective.com/hyperf",
  4199. "type": "open_collective"
  4200. }
  4201. ],
  4202. "time": "2024-09-25T02:54:12+00:00"
  4203. },
  4204. {
  4205. "name": "hyperf/server",
  4206. "version": "v3.1.42",
  4207. "source": {
  4208. "type": "git",
  4209. "url": "https://github.com/hyperf/server.git",
  4210. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4211. },
  4212. "dist": {
  4213. "type": "zip",
  4214. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4215. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4216. "shasum": "",
  4217. "mirrors": [
  4218. {
  4219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4220. "preferred": true
  4221. }
  4222. ]
  4223. },
  4224. "require": {
  4225. "hyperf/contract": "~3.1.0",
  4226. "hyperf/coordinator": "~3.1.0",
  4227. "hyperf/engine": "^2.8",
  4228. "hyperf/support": "~3.1.0",
  4229. "hyperf/tappable": "~3.1.0",
  4230. "php": ">=8.1",
  4231. "psr/container": "^1.0 || ^2.0",
  4232. "psr/event-dispatcher": "^1.0",
  4233. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4234. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4235. },
  4236. "suggest": {
  4237. "hyperf/event": "Dump the info after server start.",
  4238. "hyperf/framework": "Dump the info after server start."
  4239. },
  4240. "type": "library",
  4241. "extra": {
  4242. "hyperf": {
  4243. "config": "Hyperf\\Server\\ConfigProvider"
  4244. },
  4245. "branch-alias": {
  4246. "dev-master": "3.1-dev"
  4247. }
  4248. },
  4249. "autoload": {
  4250. "psr-4": {
  4251. "Hyperf\\Server\\": "src/"
  4252. }
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "description": "A base server library for Hyperf.",
  4259. "homepage": "https://hyperf.io",
  4260. "keywords": [
  4261. "hyperf",
  4262. "php",
  4263. "server",
  4264. "swoole"
  4265. ],
  4266. "support": {
  4267. "docs": "https://hyperf.wiki",
  4268. "issues": "https://github.com/hyperf/hyperf/issues",
  4269. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4270. "source": "https://github.com/hyperf/hyperf"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4275. "type": "custom"
  4276. },
  4277. {
  4278. "url": "https://opencollective.com/hyperf",
  4279. "type": "open_collective"
  4280. }
  4281. ],
  4282. "time": "2024-09-25T02:54:12+00:00"
  4283. },
  4284. {
  4285. "name": "hyperf/service-governance",
  4286. "version": "v3.1.42",
  4287. "source": {
  4288. "type": "git",
  4289. "url": "https://github.com/hyperf/service-governance.git",
  4290. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4291. },
  4292. "dist": {
  4293. "type": "zip",
  4294. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4295. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4296. "shasum": "",
  4297. "mirrors": [
  4298. {
  4299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4300. "preferred": true
  4301. }
  4302. ]
  4303. },
  4304. "require": {
  4305. "hyperf/contract": "~3.1.0",
  4306. "hyperf/support": "~3.1.0",
  4307. "jetbrains/phpstorm-attributes": "^1.0",
  4308. "php": ">=8.1"
  4309. },
  4310. "suggest": {
  4311. "hyperf/event": "Required to use RegisterServiceListener.",
  4312. "hyperf/framework": "Required to use RegisterServiceListener.",
  4313. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4314. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "hyperf": {
  4319. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4320. },
  4321. "branch-alias": {
  4322. "dev-master": "3.1-dev"
  4323. }
  4324. },
  4325. "autoload": {
  4326. "psr-4": {
  4327. "Hyperf\\ServiceGovernance\\": "src/"
  4328. }
  4329. },
  4330. "notification-url": "https://packagist.org/downloads/",
  4331. "license": [
  4332. "MIT"
  4333. ],
  4334. "description": "A service governance component for Hyperf.",
  4335. "homepage": "https://hyperf.io",
  4336. "keywords": [
  4337. "hyperf",
  4338. "php",
  4339. "service-governance",
  4340. "swoole"
  4341. ],
  4342. "support": {
  4343. "docs": "https://hyperf.wiki",
  4344. "issues": "https://github.com/hyperf/hyperf/issues",
  4345. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4346. "source": "https://github.com/hyperf/hyperf"
  4347. },
  4348. "funding": [
  4349. {
  4350. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4351. "type": "custom"
  4352. },
  4353. {
  4354. "url": "https://opencollective.com/hyperf",
  4355. "type": "open_collective"
  4356. }
  4357. ],
  4358. "time": "2024-09-25T02:54:12+00:00"
  4359. },
  4360. {
  4361. "name": "hyperf/service-governance-consul",
  4362. "version": "v3.1.42",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/hyperf/service-governance-consul.git",
  4366. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4371. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4372. "shasum": "",
  4373. "mirrors": [
  4374. {
  4375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4376. "preferred": true
  4377. }
  4378. ]
  4379. },
  4380. "require": {
  4381. "hyperf/consul": "~3.1.0",
  4382. "hyperf/contract": "~3.1.0",
  4383. "hyperf/service-governance": "~3.1.0",
  4384. "hyperf/support": "~3.1.0",
  4385. "hyperf/utils": "~3.1.0",
  4386. "php": ">=8.1"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "hyperf": {
  4391. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4392. },
  4393. "branch-alias": {
  4394. "dev-master": "3.1-dev"
  4395. }
  4396. },
  4397. "autoload": {
  4398. "psr-4": {
  4399. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "description": "A consul adapter for service governance.",
  4407. "homepage": "https://hyperf.io",
  4408. "keywords": [
  4409. "consul-adapter",
  4410. "hyperf",
  4411. "php",
  4412. "service-governance",
  4413. "swoole"
  4414. ],
  4415. "support": {
  4416. "docs": "https://hyperf.wiki",
  4417. "issues": "https://github.com/hyperf/hyperf/issues",
  4418. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4419. "source": "https://github.com/hyperf/hyperf"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4424. "type": "custom"
  4425. },
  4426. {
  4427. "url": "https://opencollective.com/hyperf",
  4428. "type": "open_collective"
  4429. }
  4430. ],
  4431. "time": "2024-09-25T02:54:12+00:00"
  4432. },
  4433. {
  4434. "name": "hyperf/service-governance-nacos",
  4435. "version": "v3.1.42",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4439. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4444. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4445. "shasum": "",
  4446. "mirrors": [
  4447. {
  4448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4449. "preferred": true
  4450. }
  4451. ]
  4452. },
  4453. "require": {
  4454. "hyperf/codec": "~3.1.0",
  4455. "hyperf/contract": "~3.1.0",
  4456. "hyperf/nacos": "~3.1.0",
  4457. "hyperf/service-governance": "~3.1.0",
  4458. "hyperf/support": "~3.1.0",
  4459. "hyperf/utils": "~3.1.0",
  4460. "php": ">=8.1"
  4461. },
  4462. "type": "library",
  4463. "extra": {
  4464. "hyperf": {
  4465. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4466. },
  4467. "branch-alias": {
  4468. "dev-master": "3.1-dev"
  4469. }
  4470. },
  4471. "autoload": {
  4472. "psr-4": {
  4473. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4474. }
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "description": "A nacos adapter for service governance.",
  4481. "homepage": "https://hyperf.io",
  4482. "keywords": [
  4483. "hyperf",
  4484. "nacos-adapter",
  4485. "php",
  4486. "service-governance",
  4487. "swoole"
  4488. ],
  4489. "support": {
  4490. "docs": "https://hyperf.wiki",
  4491. "issues": "https://github.com/hyperf/hyperf/issues",
  4492. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4493. "source": "https://github.com/hyperf/hyperf"
  4494. },
  4495. "funding": [
  4496. {
  4497. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4498. "type": "custom"
  4499. },
  4500. {
  4501. "url": "https://opencollective.com/hyperf",
  4502. "type": "open_collective"
  4503. }
  4504. ],
  4505. "time": "2024-09-25T02:54:12+00:00"
  4506. },
  4507. {
  4508. "name": "hyperf/snowflake",
  4509. "version": "v3.1.42",
  4510. "source": {
  4511. "type": "git",
  4512. "url": "https://github.com/hyperf/snowflake.git",
  4513. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4514. },
  4515. "dist": {
  4516. "type": "zip",
  4517. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4518. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4519. "shasum": "",
  4520. "mirrors": [
  4521. {
  4522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4523. "preferred": true
  4524. }
  4525. ]
  4526. },
  4527. "require": {
  4528. "hyperf/contract": "~3.1.0",
  4529. "php": ">=8.1"
  4530. },
  4531. "suggest": {
  4532. "hyperf/config": "Required to read snowflake config.",
  4533. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4534. "psr/container": "Required to use MetaGeneratorFactory."
  4535. },
  4536. "type": "library",
  4537. "extra": {
  4538. "hyperf": {
  4539. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4540. },
  4541. "branch-alias": {
  4542. "dev-master": "3.1-dev"
  4543. }
  4544. },
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Hyperf\\Snowflake\\": "src/"
  4548. }
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "MIT"
  4553. ],
  4554. "description": "A snowflake library",
  4555. "homepage": "https://hyperf.io",
  4556. "keywords": [
  4557. "php",
  4558. "snowflake"
  4559. ],
  4560. "support": {
  4561. "docs": "https://hyperf.wiki",
  4562. "issues": "https://github.com/hyperf/hyperf/issues",
  4563. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4564. "source": "https://github.com/hyperf/hyperf"
  4565. },
  4566. "funding": [
  4567. {
  4568. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4569. "type": "custom"
  4570. },
  4571. {
  4572. "url": "https://opencollective.com/hyperf",
  4573. "type": "open_collective"
  4574. }
  4575. ],
  4576. "time": "2024-09-25T02:54:12+00:00"
  4577. },
  4578. {
  4579. "name": "hyperf/stdlib",
  4580. "version": "v3.1.42",
  4581. "source": {
  4582. "type": "git",
  4583. "url": "https://github.com/hyperf/stdlib.git",
  4584. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4585. },
  4586. "dist": {
  4587. "type": "zip",
  4588. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4589. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4590. "shasum": "",
  4591. "mirrors": [
  4592. {
  4593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4594. "preferred": true
  4595. }
  4596. ]
  4597. },
  4598. "require": {
  4599. "php": ">=8.1"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "3.1-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Hyperf\\Stdlib\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "description": "A stdlib component for Hyperf.",
  4617. "homepage": "https://hyperf.io",
  4618. "keywords": [
  4619. "hyperf",
  4620. "php",
  4621. "stdlib",
  4622. "swoole"
  4623. ],
  4624. "support": {
  4625. "docs": "https://hyperf.wiki",
  4626. "issues": "https://github.com/hyperf/hyperf/issues",
  4627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4628. "source": "https://github.com/hyperf/hyperf"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4633. "type": "custom"
  4634. },
  4635. {
  4636. "url": "https://opencollective.com/hyperf",
  4637. "type": "open_collective"
  4638. }
  4639. ],
  4640. "time": "2024-09-25T02:54:12+00:00"
  4641. },
  4642. {
  4643. "name": "hyperf/stringable",
  4644. "version": "v3.1.55",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://github.com/hyperf/stringable.git",
  4648. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4653. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4654. "shasum": "",
  4655. "mirrors": [
  4656. {
  4657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4658. "preferred": true
  4659. }
  4660. ]
  4661. },
  4662. "require": {
  4663. "ext-mbstring": "*",
  4664. "hyperf/collection": "~3.1.0",
  4665. "hyperf/conditionable": "~3.1.0",
  4666. "hyperf/macroable": "~3.1.0",
  4667. "hyperf/tappable": "~3.1.0",
  4668. "php": ">=8.1"
  4669. },
  4670. "suggest": {
  4671. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4672. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4673. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "3.1-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "files": [
  4683. "src/Functions.php"
  4684. ],
  4685. "psr-4": {
  4686. "Hyperf\\Stringable\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "description": "Hyperf Stringable package which come from illuminate/support",
  4694. "homepage": "https://hyperf.io",
  4695. "keywords": [
  4696. "hyperf",
  4697. "php",
  4698. "stringable",
  4699. "swoole"
  4700. ],
  4701. "support": {
  4702. "docs": "https://hyperf.wiki",
  4703. "issues": "https://github.com/hyperf/hyperf/issues",
  4704. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4705. "source": "https://github.com/hyperf/hyperf"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://opencollective.com/hyperf",
  4714. "type": "open_collective"
  4715. }
  4716. ],
  4717. "time": "2025-05-02T14:13:24+00:00"
  4718. },
  4719. {
  4720. "name": "hyperf/support",
  4721. "version": "v3.1.51",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/hyperf/support.git",
  4725. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4730. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4731. "shasum": "",
  4732. "mirrors": [
  4733. {
  4734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4735. "preferred": true
  4736. }
  4737. ]
  4738. },
  4739. "require": {
  4740. "hyperf/collection": "~3.1.0",
  4741. "hyperf/context": "~3.1.0",
  4742. "hyperf/contract": "~3.1.0",
  4743. "hyperf/coroutine": "~3.1.0",
  4744. "hyperf/macroable": "~3.1.0",
  4745. "hyperf/stringable": "~3.1.0",
  4746. "php": ">=8.1"
  4747. },
  4748. "suggest": {
  4749. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4750. },
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "3.1-dev"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "files": [
  4759. "src/Functions.php"
  4760. ],
  4761. "psr-4": {
  4762. "Hyperf\\Support\\": "src/"
  4763. }
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "description": "A support component for Hyperf.",
  4770. "homepage": "https://hyperf.io",
  4771. "keywords": [
  4772. "hyperf",
  4773. "php",
  4774. "support",
  4775. "swoole"
  4776. ],
  4777. "support": {
  4778. "docs": "https://hyperf.wiki",
  4779. "issues": "https://github.com/hyperf/hyperf/issues",
  4780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4781. "source": "https://github.com/hyperf/hyperf"
  4782. },
  4783. "funding": [
  4784. {
  4785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4786. "type": "custom"
  4787. },
  4788. {
  4789. "url": "https://opencollective.com/hyperf",
  4790. "type": "open_collective"
  4791. }
  4792. ],
  4793. "time": "2025-02-06T07:02:37+00:00"
  4794. },
  4795. {
  4796. "name": "hyperf/tappable",
  4797. "version": "v3.1.42",
  4798. "source": {
  4799. "type": "git",
  4800. "url": "https://github.com/hyperf/tappable.git",
  4801. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4802. },
  4803. "dist": {
  4804. "type": "zip",
  4805. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4806. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4807. "shasum": "",
  4808. "mirrors": [
  4809. {
  4810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4811. "preferred": true
  4812. }
  4813. ]
  4814. },
  4815. "require": {
  4816. "php": ">=8.1"
  4817. },
  4818. "type": "library",
  4819. "extra": {
  4820. "branch-alias": {
  4821. "dev-master": "3.1-dev"
  4822. }
  4823. },
  4824. "autoload": {
  4825. "files": [
  4826. "src/Functions.php"
  4827. ],
  4828. "psr-4": {
  4829. "Hyperf\\Tappable\\": "src/"
  4830. }
  4831. },
  4832. "notification-url": "https://packagist.org/downloads/",
  4833. "license": [
  4834. "MIT"
  4835. ],
  4836. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4837. "homepage": "https://hyperf.io",
  4838. "keywords": [
  4839. "hyperf",
  4840. "php",
  4841. "swoole",
  4842. "tappable"
  4843. ],
  4844. "support": {
  4845. "docs": "https://hyperf.wiki",
  4846. "issues": "https://github.com/hyperf/hyperf/issues",
  4847. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4848. "source": "https://github.com/hyperf/hyperf"
  4849. },
  4850. "funding": [
  4851. {
  4852. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4853. "type": "custom"
  4854. },
  4855. {
  4856. "url": "https://opencollective.com/hyperf",
  4857. "type": "open_collective"
  4858. }
  4859. ],
  4860. "time": "2024-09-25T02:54:12+00:00"
  4861. },
  4862. {
  4863. "name": "hyperf/utils",
  4864. "version": "v3.1.42",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/hyperf/utils.git",
  4868. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4873. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4874. "shasum": "",
  4875. "mirrors": [
  4876. {
  4877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4878. "preferred": true
  4879. }
  4880. ]
  4881. },
  4882. "require": {
  4883. "doctrine/inflector": "^2.0",
  4884. "hyperf/code-parser": "~3.1.0",
  4885. "hyperf/codec": "~3.1.0",
  4886. "hyperf/collection": "~3.1.0",
  4887. "hyperf/context": "~3.1.0",
  4888. "hyperf/contract": "~3.1.0",
  4889. "hyperf/coordinator": "~3.1.0",
  4890. "hyperf/coroutine": "~3.1.0",
  4891. "hyperf/engine": "^2.0",
  4892. "hyperf/macroable": "~3.1.0",
  4893. "hyperf/serializer": "~3.1.0",
  4894. "hyperf/stringable": "~3.1.0",
  4895. "hyperf/support": "~3.1.0",
  4896. "php": ">=8.1"
  4897. },
  4898. "type": "library",
  4899. "extra": {
  4900. "branch-alias": {
  4901. "dev-master": "3.1-dev"
  4902. }
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "description": "A tools package that could help developer solved the problem quickly.",
  4909. "homepage": "https://hyperf.io",
  4910. "keywords": [
  4911. "hyperf",
  4912. "php",
  4913. "swoole",
  4914. "utils"
  4915. ],
  4916. "support": {
  4917. "docs": "https://hyperf.wiki",
  4918. "issues": "https://github.com/hyperf/hyperf/issues",
  4919. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4920. "source": "https://github.com/hyperf/hyperf"
  4921. },
  4922. "funding": [
  4923. {
  4924. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4925. "type": "custom"
  4926. },
  4927. {
  4928. "url": "https://opencollective.com/hyperf",
  4929. "type": "open_collective"
  4930. }
  4931. ],
  4932. "time": "2024-09-25T02:54:12+00:00"
  4933. },
  4934. {
  4935. "name": "illuminate/cache",
  4936. "version": "v10.48.28",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://github.com/illuminate/cache.git",
  4940. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://api.github.com/repos/illuminate/cache/zipball/20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4945. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4946. "shasum": "",
  4947. "mirrors": [
  4948. {
  4949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4950. "preferred": true
  4951. }
  4952. ]
  4953. },
  4954. "require": {
  4955. "illuminate/collections": "^10.0",
  4956. "illuminate/contracts": "^10.0",
  4957. "illuminate/macroable": "^10.0",
  4958. "illuminate/support": "^10.0",
  4959. "php": "^8.1"
  4960. },
  4961. "provide": {
  4962. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  4963. },
  4964. "suggest": {
  4965. "ext-apcu": "Required to use the APC cache driver.",
  4966. "ext-filter": "Required to use the DynamoDb cache driver.",
  4967. "ext-memcached": "Required to use the memcache cache driver.",
  4968. "illuminate/database": "Required to use the database cache driver (^10.0).",
  4969. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  4970. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  4971. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  4972. },
  4973. "type": "library",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-master": "10.x-dev"
  4977. }
  4978. },
  4979. "autoload": {
  4980. "psr-4": {
  4981. "Illuminate\\Cache\\": ""
  4982. }
  4983. },
  4984. "notification-url": "https://packagist.org/downloads/",
  4985. "license": [
  4986. "MIT"
  4987. ],
  4988. "authors": [
  4989. {
  4990. "name": "Taylor Otwell",
  4991. "email": "taylor@laravel.com"
  4992. }
  4993. ],
  4994. "description": "The Illuminate Cache package.",
  4995. "homepage": "https://laravel.com",
  4996. "support": {
  4997. "issues": "https://github.com/laravel/framework/issues",
  4998. "source": "https://github.com/laravel/framework"
  4999. },
  5000. "time": "2024-11-21T14:02:44+00:00"
  5001. },
  5002. {
  5003. "name": "illuminate/collections",
  5004. "version": "v10.48.28",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/illuminate/collections.git",
  5008. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/illuminate/collections/zipball/48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  5013. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  5014. "shasum": "",
  5015. "mirrors": [
  5016. {
  5017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5018. "preferred": true
  5019. }
  5020. ]
  5021. },
  5022. "require": {
  5023. "illuminate/conditionable": "^10.0",
  5024. "illuminate/contracts": "^10.0",
  5025. "illuminate/macroable": "^10.0",
  5026. "php": "^8.1"
  5027. },
  5028. "suggest": {
  5029. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  5030. },
  5031. "type": "library",
  5032. "extra": {
  5033. "branch-alias": {
  5034. "dev-master": "10.x-dev"
  5035. }
  5036. },
  5037. "autoload": {
  5038. "files": [
  5039. "helpers.php"
  5040. ],
  5041. "psr-4": {
  5042. "Illuminate\\Support\\": ""
  5043. }
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Taylor Otwell",
  5052. "email": "taylor@laravel.com"
  5053. }
  5054. ],
  5055. "description": "The Illuminate Collections package.",
  5056. "homepage": "https://laravel.com",
  5057. "support": {
  5058. "issues": "https://github.com/laravel/framework/issues",
  5059. "source": "https://github.com/laravel/framework"
  5060. },
  5061. "time": "2024-11-21T14:02:44+00:00"
  5062. },
  5063. {
  5064. "name": "illuminate/conditionable",
  5065. "version": "v10.48.28",
  5066. "source": {
  5067. "type": "git",
  5068. "url": "https://github.com/illuminate/conditionable.git",
  5069. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5"
  5070. },
  5071. "dist": {
  5072. "type": "zip",
  5073. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  5074. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  5075. "shasum": "",
  5076. "mirrors": [
  5077. {
  5078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5079. "preferred": true
  5080. }
  5081. ]
  5082. },
  5083. "require": {
  5084. "php": "^8.0.2"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "branch-alias": {
  5089. "dev-master": "10.x-dev"
  5090. }
  5091. },
  5092. "autoload": {
  5093. "psr-4": {
  5094. "Illuminate\\Support\\": ""
  5095. }
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Taylor Otwell",
  5104. "email": "taylor@laravel.com"
  5105. }
  5106. ],
  5107. "description": "The Illuminate Conditionable package.",
  5108. "homepage": "https://laravel.com",
  5109. "support": {
  5110. "issues": "https://github.com/laravel/framework/issues",
  5111. "source": "https://github.com/laravel/framework"
  5112. },
  5113. "time": "2024-11-21T14:02:44+00:00"
  5114. },
  5115. {
  5116. "name": "illuminate/contracts",
  5117. "version": "v10.48.28",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://github.com/illuminate/contracts.git",
  5121. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://api.github.com/repos/illuminate/contracts/zipball/f90663a69f926105a70b78060a31f3c64e2d1c74",
  5126. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74",
  5127. "shasum": "",
  5128. "mirrors": [
  5129. {
  5130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5131. "preferred": true
  5132. }
  5133. ]
  5134. },
  5135. "require": {
  5136. "php": "^8.1",
  5137. "psr/container": "^1.1.1|^2.0.1",
  5138. "psr/simple-cache": "^1.0|^2.0|^3.0"
  5139. },
  5140. "type": "library",
  5141. "extra": {
  5142. "branch-alias": {
  5143. "dev-master": "10.x-dev"
  5144. }
  5145. },
  5146. "autoload": {
  5147. "psr-4": {
  5148. "Illuminate\\Contracts\\": ""
  5149. }
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Taylor Otwell",
  5158. "email": "taylor@laravel.com"
  5159. }
  5160. ],
  5161. "description": "The Illuminate Contracts package.",
  5162. "homepage": "https://laravel.com",
  5163. "support": {
  5164. "issues": "https://github.com/laravel/framework/issues",
  5165. "source": "https://github.com/laravel/framework"
  5166. },
  5167. "time": "2024-11-21T14:02:44+00:00"
  5168. },
  5169. {
  5170. "name": "illuminate/macroable",
  5171. "version": "v10.48.28",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/illuminate/macroable.git",
  5175. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  5180. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  5181. "shasum": "",
  5182. "mirrors": [
  5183. {
  5184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5185. "preferred": true
  5186. }
  5187. ]
  5188. },
  5189. "require": {
  5190. "php": "^8.1"
  5191. },
  5192. "type": "library",
  5193. "extra": {
  5194. "branch-alias": {
  5195. "dev-master": "10.x-dev"
  5196. }
  5197. },
  5198. "autoload": {
  5199. "psr-4": {
  5200. "Illuminate\\Support\\": ""
  5201. }
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Taylor Otwell",
  5210. "email": "taylor@laravel.com"
  5211. }
  5212. ],
  5213. "description": "The Illuminate Macroable package.",
  5214. "homepage": "https://laravel.com",
  5215. "support": {
  5216. "issues": "https://github.com/laravel/framework/issues",
  5217. "source": "https://github.com/laravel/framework"
  5218. },
  5219. "time": "2023-06-05T12:46:42+00:00"
  5220. },
  5221. {
  5222. "name": "illuminate/support",
  5223. "version": "v10.48.28",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/illuminate/support.git",
  5227. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/illuminate/support/zipball/6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  5232. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  5233. "shasum": "",
  5234. "mirrors": [
  5235. {
  5236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5237. "preferred": true
  5238. }
  5239. ]
  5240. },
  5241. "require": {
  5242. "doctrine/inflector": "^2.0",
  5243. "ext-ctype": "*",
  5244. "ext-filter": "*",
  5245. "ext-mbstring": "*",
  5246. "illuminate/collections": "^10.0",
  5247. "illuminate/conditionable": "^10.0",
  5248. "illuminate/contracts": "^10.0",
  5249. "illuminate/macroable": "^10.0",
  5250. "nesbot/carbon": "^2.67",
  5251. "php": "^8.1",
  5252. "voku/portable-ascii": "^2.0"
  5253. },
  5254. "conflict": {
  5255. "tightenco/collect": "<5.5.33"
  5256. },
  5257. "suggest": {
  5258. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  5259. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  5260. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  5261. "symfony/process": "Required to use the composer class (^6.2).",
  5262. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  5263. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  5264. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  5265. },
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-master": "10.x-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "files": [
  5274. "helpers.php"
  5275. ],
  5276. "psr-4": {
  5277. "Illuminate\\Support\\": ""
  5278. }
  5279. },
  5280. "notification-url": "https://packagist.org/downloads/",
  5281. "license": [
  5282. "MIT"
  5283. ],
  5284. "authors": [
  5285. {
  5286. "name": "Taylor Otwell",
  5287. "email": "taylor@laravel.com"
  5288. }
  5289. ],
  5290. "description": "The Illuminate Support package.",
  5291. "homepage": "https://laravel.com",
  5292. "support": {
  5293. "issues": "https://github.com/laravel/framework/issues",
  5294. "source": "https://github.com/laravel/framework"
  5295. },
  5296. "time": "2024-12-10T14:47:55+00:00"
  5297. },
  5298. {
  5299. "name": "jetbrains/phpstorm-attributes",
  5300. "version": "1.2",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5304. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5309. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5310. "shasum": "",
  5311. "mirrors": [
  5312. {
  5313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5314. "preferred": true
  5315. }
  5316. ]
  5317. },
  5318. "type": "library",
  5319. "autoload": {
  5320. "psr-4": {
  5321. "JetBrains\\PhpStorm\\": "src/"
  5322. }
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "Apache-2.0"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "JetBrains",
  5331. "homepage": "https://www.jetbrains.com"
  5332. }
  5333. ],
  5334. "description": "PhpStorm specific attributes",
  5335. "keywords": [
  5336. "attributes",
  5337. "jetbrains",
  5338. "phpstorm"
  5339. ],
  5340. "support": {
  5341. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5342. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5343. },
  5344. "time": "2024-10-11T10:46:19+00:00"
  5345. },
  5346. {
  5347. "name": "laminas/laminas-mime",
  5348. "version": "2.12.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/laminas/laminas-mime.git",
  5352. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5357. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5358. "shasum": "",
  5359. "mirrors": [
  5360. {
  5361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5362. "preferred": true
  5363. }
  5364. ]
  5365. },
  5366. "require": {
  5367. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5368. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5369. },
  5370. "conflict": {
  5371. "zendframework/zend-mime": "*"
  5372. },
  5373. "require-dev": {
  5374. "laminas/laminas-coding-standard": "~2.4.0",
  5375. "laminas/laminas-mail": "^2.19.0",
  5376. "phpunit/phpunit": "~9.5.25"
  5377. },
  5378. "suggest": {
  5379. "laminas/laminas-mail": "Laminas\\Mail component"
  5380. },
  5381. "type": "library",
  5382. "autoload": {
  5383. "psr-4": {
  5384. "Laminas\\Mime\\": "src/"
  5385. }
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "BSD-3-Clause"
  5390. ],
  5391. "description": "Create and parse MIME messages and parts",
  5392. "homepage": "https://laminas.dev",
  5393. "keywords": [
  5394. "laminas",
  5395. "mime"
  5396. ],
  5397. "support": {
  5398. "chat": "https://laminas.dev/chat",
  5399. "docs": "https://docs.laminas.dev/laminas-mime/",
  5400. "forum": "https://discourse.laminas.dev",
  5401. "issues": "https://github.com/laminas/laminas-mime/issues",
  5402. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5403. "source": "https://github.com/laminas/laminas-mime"
  5404. },
  5405. "funding": [
  5406. {
  5407. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5408. "type": "community_bridge"
  5409. }
  5410. ],
  5411. "time": "2023-11-02T16:47:19+00:00"
  5412. },
  5413. {
  5414. "name": "laminas/laminas-stdlib",
  5415. "version": "3.20.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/laminas/laminas-stdlib.git",
  5419. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5424. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5425. "shasum": "",
  5426. "mirrors": [
  5427. {
  5428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5429. "preferred": true
  5430. }
  5431. ]
  5432. },
  5433. "require": {
  5434. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5435. },
  5436. "conflict": {
  5437. "zendframework/zend-stdlib": "*"
  5438. },
  5439. "require-dev": {
  5440. "laminas/laminas-coding-standard": "^3.0",
  5441. "phpbench/phpbench": "^1.3.1",
  5442. "phpunit/phpunit": "^10.5.38",
  5443. "psalm/plugin-phpunit": "^0.19.0",
  5444. "vimeo/psalm": "^5.26.1"
  5445. },
  5446. "type": "library",
  5447. "autoload": {
  5448. "psr-4": {
  5449. "Laminas\\Stdlib\\": "src/"
  5450. }
  5451. },
  5452. "notification-url": "https://packagist.org/downloads/",
  5453. "license": [
  5454. "BSD-3-Clause"
  5455. ],
  5456. "description": "SPL extensions, array utilities, error handlers, and more",
  5457. "homepage": "https://laminas.dev",
  5458. "keywords": [
  5459. "laminas",
  5460. "stdlib"
  5461. ],
  5462. "support": {
  5463. "chat": "https://laminas.dev/chat",
  5464. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5465. "forum": "https://discourse.laminas.dev",
  5466. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5467. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5468. "source": "https://github.com/laminas/laminas-stdlib"
  5469. },
  5470. "funding": [
  5471. {
  5472. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5473. "type": "community_bridge"
  5474. }
  5475. ],
  5476. "time": "2024-10-29T13:46:07+00:00"
  5477. },
  5478. {
  5479. "name": "markrogoyski/math-php",
  5480. "version": "v2.11.0",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/markrogoyski/math-php.git",
  5484. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5489. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5490. "shasum": "",
  5491. "mirrors": [
  5492. {
  5493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5494. "preferred": true
  5495. }
  5496. ]
  5497. },
  5498. "require": {
  5499. "ext-json": "*",
  5500. "php": ">=7.2.0"
  5501. },
  5502. "require-dev": {
  5503. "php-coveralls/php-coveralls": "^2.0",
  5504. "php-parallel-lint/php-parallel-lint": "^1.2",
  5505. "phploc/phploc": "*",
  5506. "phpmd/phpmd": "^2.6",
  5507. "phpstan/phpstan": "^1.10",
  5508. "phpunit/phpunit": "^8.5",
  5509. "squizlabs/php_codesniffer": "3.*"
  5510. },
  5511. "type": "library",
  5512. "autoload": {
  5513. "psr-4": {
  5514. "MathPHP\\": "src/"
  5515. }
  5516. },
  5517. "notification-url": "https://packagist.org/downloads/",
  5518. "license": [
  5519. "MIT"
  5520. ],
  5521. "authors": [
  5522. {
  5523. "name": "Mark Rogoyski",
  5524. "email": "mark@rogoyski.com",
  5525. "homepage": "https://github.com/markrogoyski",
  5526. "role": "Lead developer"
  5527. },
  5528. {
  5529. "name": "Kevin Nowaczyk",
  5530. "homepage": "https://github.com/Beakerboy",
  5531. "role": "Developer"
  5532. },
  5533. {
  5534. "name": "MathPHP Community of Contributors",
  5535. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5536. }
  5537. ],
  5538. "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",
  5539. "homepage": "https://github.com/markrogoyski/math-php/",
  5540. "keywords": [
  5541. "algebra",
  5542. "combinatorics",
  5543. "distributions",
  5544. "linear algebra",
  5545. "math",
  5546. "mathematics",
  5547. "matrix",
  5548. "numerical analysis",
  5549. "probability",
  5550. "regressions",
  5551. "statistics"
  5552. ],
  5553. "support": {
  5554. "issues": "https://github.com/markrogoyski/math-php/issues",
  5555. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  5556. },
  5557. "time": "2025-01-26T20:16:06+00:00"
  5558. },
  5559. {
  5560. "name": "monolog/monolog",
  5561. "version": "3.9.0",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://github.com/Seldaek/monolog.git",
  5565. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  5566. },
  5567. "dist": {
  5568. "type": "zip",
  5569. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5570. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5571. "shasum": "",
  5572. "mirrors": [
  5573. {
  5574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5575. "preferred": true
  5576. }
  5577. ]
  5578. },
  5579. "require": {
  5580. "php": ">=8.1",
  5581. "psr/log": "^2.0 || ^3.0"
  5582. },
  5583. "provide": {
  5584. "psr/log-implementation": "3.0.0"
  5585. },
  5586. "require-dev": {
  5587. "aws/aws-sdk-php": "^3.0",
  5588. "doctrine/couchdb": "~1.0@dev",
  5589. "elasticsearch/elasticsearch": "^7 || ^8",
  5590. "ext-json": "*",
  5591. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5592. "guzzlehttp/guzzle": "^7.4.5",
  5593. "guzzlehttp/psr7": "^2.2",
  5594. "mongodb/mongodb": "^1.8",
  5595. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5596. "php-console/php-console": "^3.1.8",
  5597. "phpstan/phpstan": "^2",
  5598. "phpstan/phpstan-deprecation-rules": "^2",
  5599. "phpstan/phpstan-strict-rules": "^2",
  5600. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5601. "predis/predis": "^1.1 || ^2",
  5602. "rollbar/rollbar": "^4.0",
  5603. "ruflin/elastica": "^7 || ^8",
  5604. "symfony/mailer": "^5.4 || ^6",
  5605. "symfony/mime": "^5.4 || ^6"
  5606. },
  5607. "suggest": {
  5608. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5609. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5610. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5611. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5612. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5613. "ext-mbstring": "Allow to work properly with unicode symbols",
  5614. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5615. "ext-openssl": "Required to send log messages using SSL",
  5616. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5617. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5618. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5619. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5620. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5621. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5622. },
  5623. "type": "library",
  5624. "extra": {
  5625. "branch-alias": {
  5626. "dev-main": "3.x-dev"
  5627. }
  5628. },
  5629. "autoload": {
  5630. "psr-4": {
  5631. "Monolog\\": "src/Monolog"
  5632. }
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "Jordi Boggiano",
  5641. "email": "j.boggiano@seld.be",
  5642. "homepage": "https://seld.be"
  5643. }
  5644. ],
  5645. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5646. "homepage": "https://github.com/Seldaek/monolog",
  5647. "keywords": [
  5648. "log",
  5649. "logging",
  5650. "psr-3"
  5651. ],
  5652. "support": {
  5653. "issues": "https://github.com/Seldaek/monolog/issues",
  5654. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  5655. },
  5656. "funding": [
  5657. {
  5658. "url": "https://github.com/Seldaek",
  5659. "type": "github"
  5660. },
  5661. {
  5662. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5663. "type": "tidelift"
  5664. }
  5665. ],
  5666. "time": "2025-03-24T10:02:05+00:00"
  5667. },
  5668. {
  5669. "name": "nesbot/carbon",
  5670. "version": "2.73.0",
  5671. "source": {
  5672. "type": "git",
  5673. "url": "https://github.com/CarbonPHP/carbon.git",
  5674. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5675. },
  5676. "dist": {
  5677. "type": "zip",
  5678. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5679. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5680. "shasum": "",
  5681. "mirrors": [
  5682. {
  5683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5684. "preferred": true
  5685. }
  5686. ]
  5687. },
  5688. "require": {
  5689. "carbonphp/carbon-doctrine-types": "*",
  5690. "ext-json": "*",
  5691. "php": "^7.1.8 || ^8.0",
  5692. "psr/clock": "^1.0",
  5693. "symfony/polyfill-mbstring": "^1.0",
  5694. "symfony/polyfill-php80": "^1.16",
  5695. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5696. },
  5697. "provide": {
  5698. "psr/clock-implementation": "1.0"
  5699. },
  5700. "require-dev": {
  5701. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5702. "doctrine/orm": "^2.7 || ^3.0",
  5703. "friendsofphp/php-cs-fixer": "^3.0",
  5704. "kylekatarnls/multi-tester": "^2.0",
  5705. "ondrejmirtes/better-reflection": "<6",
  5706. "phpmd/phpmd": "^2.9",
  5707. "phpstan/extension-installer": "^1.0",
  5708. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5709. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5710. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5711. "squizlabs/php_codesniffer": "^3.4"
  5712. },
  5713. "bin": [
  5714. "bin/carbon"
  5715. ],
  5716. "type": "library",
  5717. "extra": {
  5718. "laravel": {
  5719. "providers": [
  5720. "Carbon\\Laravel\\ServiceProvider"
  5721. ]
  5722. },
  5723. "phpstan": {
  5724. "includes": [
  5725. "extension.neon"
  5726. ]
  5727. },
  5728. "branch-alias": {
  5729. "dev-2.x": "2.x-dev",
  5730. "dev-master": "3.x-dev"
  5731. }
  5732. },
  5733. "autoload": {
  5734. "psr-4": {
  5735. "Carbon\\": "src/Carbon/"
  5736. }
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Brian Nesbitt",
  5745. "email": "brian@nesbot.com",
  5746. "homepage": "https://markido.com"
  5747. },
  5748. {
  5749. "name": "kylekatarnls",
  5750. "homepage": "https://github.com/kylekatarnls"
  5751. }
  5752. ],
  5753. "description": "An API extension for DateTime that supports 281 different languages.",
  5754. "homepage": "https://carbon.nesbot.com",
  5755. "keywords": [
  5756. "date",
  5757. "datetime",
  5758. "time"
  5759. ],
  5760. "support": {
  5761. "docs": "https://carbon.nesbot.com/docs",
  5762. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5763. "source": "https://github.com/briannesbitt/Carbon"
  5764. },
  5765. "funding": [
  5766. {
  5767. "url": "https://github.com/sponsors/kylekatarnls",
  5768. "type": "github"
  5769. },
  5770. {
  5771. "url": "https://opencollective.com/Carbon#sponsor",
  5772. "type": "opencollective"
  5773. },
  5774. {
  5775. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5776. "type": "tidelift"
  5777. }
  5778. ],
  5779. "time": "2025-01-08T20:10:23+00:00"
  5780. },
  5781. {
  5782. "name": "nikic/fast-route",
  5783. "version": "v1.3.0",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://github.com/nikic/FastRoute.git",
  5787. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5792. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5793. "shasum": "",
  5794. "mirrors": [
  5795. {
  5796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5797. "preferred": true
  5798. }
  5799. ]
  5800. },
  5801. "require": {
  5802. "php": ">=5.4.0"
  5803. },
  5804. "require-dev": {
  5805. "phpunit/phpunit": "^4.8.35|~5.7"
  5806. },
  5807. "type": "library",
  5808. "autoload": {
  5809. "files": [
  5810. "src/functions.php"
  5811. ],
  5812. "psr-4": {
  5813. "FastRoute\\": "src/"
  5814. }
  5815. },
  5816. "notification-url": "https://packagist.org/downloads/",
  5817. "license": [
  5818. "BSD-3-Clause"
  5819. ],
  5820. "authors": [
  5821. {
  5822. "name": "Nikita Popov",
  5823. "email": "nikic@php.net"
  5824. }
  5825. ],
  5826. "description": "Fast request router for PHP",
  5827. "keywords": [
  5828. "router",
  5829. "routing"
  5830. ],
  5831. "support": {
  5832. "issues": "https://github.com/nikic/FastRoute/issues",
  5833. "source": "https://github.com/nikic/FastRoute/tree/master"
  5834. },
  5835. "time": "2018-02-13T20:26:39+00:00"
  5836. },
  5837. {
  5838. "name": "nikic/php-parser",
  5839. "version": "v4.19.4",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/nikic/PHP-Parser.git",
  5843. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5848. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5849. "shasum": "",
  5850. "mirrors": [
  5851. {
  5852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5853. "preferred": true
  5854. }
  5855. ]
  5856. },
  5857. "require": {
  5858. "ext-tokenizer": "*",
  5859. "php": ">=7.1"
  5860. },
  5861. "require-dev": {
  5862. "ircmaxell/php-yacc": "^0.0.7",
  5863. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5864. },
  5865. "bin": [
  5866. "bin/php-parse"
  5867. ],
  5868. "type": "library",
  5869. "extra": {
  5870. "branch-alias": {
  5871. "dev-master": "4.9-dev"
  5872. }
  5873. },
  5874. "autoload": {
  5875. "psr-4": {
  5876. "PhpParser\\": "lib/PhpParser"
  5877. }
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "BSD-3-Clause"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Nikita Popov"
  5886. }
  5887. ],
  5888. "description": "A PHP parser written in PHP",
  5889. "keywords": [
  5890. "parser",
  5891. "php"
  5892. ],
  5893. "support": {
  5894. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5895. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5896. },
  5897. "time": "2024-09-29T15:01:53+00:00"
  5898. },
  5899. {
  5900. "name": "paragonie/constant_time_encoding",
  5901. "version": "v3.0.0",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5905. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5910. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5911. "shasum": "",
  5912. "mirrors": [
  5913. {
  5914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5915. "preferred": true
  5916. }
  5917. ]
  5918. },
  5919. "require": {
  5920. "php": "^8"
  5921. },
  5922. "require-dev": {
  5923. "phpunit/phpunit": "^9",
  5924. "vimeo/psalm": "^4|^5"
  5925. },
  5926. "type": "library",
  5927. "autoload": {
  5928. "psr-4": {
  5929. "ParagonIE\\ConstantTime\\": "src/"
  5930. }
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Paragon Initiative Enterprises",
  5939. "email": "security@paragonie.com",
  5940. "homepage": "https://paragonie.com",
  5941. "role": "Maintainer"
  5942. },
  5943. {
  5944. "name": "Steve 'Sc00bz' Thomas",
  5945. "email": "steve@tobtu.com",
  5946. "homepage": "https://www.tobtu.com",
  5947. "role": "Original Developer"
  5948. }
  5949. ],
  5950. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5951. "keywords": [
  5952. "base16",
  5953. "base32",
  5954. "base32_decode",
  5955. "base32_encode",
  5956. "base64",
  5957. "base64_decode",
  5958. "base64_encode",
  5959. "bin2hex",
  5960. "encoding",
  5961. "hex",
  5962. "hex2bin",
  5963. "rfc4648"
  5964. ],
  5965. "support": {
  5966. "email": "info@paragonie.com",
  5967. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5968. "source": "https://github.com/paragonie/constant_time_encoding"
  5969. },
  5970. "time": "2024-05-08T12:36:18+00:00"
  5971. },
  5972. {
  5973. "name": "paragonie/random_compat",
  5974. "version": "v9.99.100",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://github.com/paragonie/random_compat.git",
  5978. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5979. },
  5980. "dist": {
  5981. "type": "zip",
  5982. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5983. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5984. "shasum": "",
  5985. "mirrors": [
  5986. {
  5987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5988. "preferred": true
  5989. }
  5990. ]
  5991. },
  5992. "require": {
  5993. "php": ">= 7"
  5994. },
  5995. "require-dev": {
  5996. "phpunit/phpunit": "4.*|5.*",
  5997. "vimeo/psalm": "^1"
  5998. },
  5999. "suggest": {
  6000. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6001. },
  6002. "type": "library",
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "MIT"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Paragon Initiative Enterprises",
  6010. "email": "security@paragonie.com",
  6011. "homepage": "https://paragonie.com"
  6012. }
  6013. ],
  6014. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6015. "keywords": [
  6016. "csprng",
  6017. "polyfill",
  6018. "pseudorandom",
  6019. "random"
  6020. ],
  6021. "support": {
  6022. "email": "info@paragonie.com",
  6023. "issues": "https://github.com/paragonie/random_compat/issues",
  6024. "source": "https://github.com/paragonie/random_compat"
  6025. },
  6026. "time": "2020-10-15T08:29:30+00:00"
  6027. },
  6028. {
  6029. "name": "php-amqplib/php-amqplib",
  6030. "version": "v3.6.1",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6034. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6039. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6040. "shasum": "",
  6041. "mirrors": [
  6042. {
  6043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6044. "preferred": true
  6045. }
  6046. ]
  6047. },
  6048. "require": {
  6049. "ext-mbstring": "*",
  6050. "ext-sockets": "*",
  6051. "php": "^7.2||^8.0",
  6052. "phpseclib/phpseclib": "^2.0|^3.0"
  6053. },
  6054. "conflict": {
  6055. "php": "7.4.0 - 7.4.1"
  6056. },
  6057. "replace": {
  6058. "videlalvaro/php-amqplib": "self.version"
  6059. },
  6060. "require-dev": {
  6061. "ext-curl": "*",
  6062. "nategood/httpful": "^0.2.20",
  6063. "phpunit/phpunit": "^7.5|^9.5",
  6064. "squizlabs/php_codesniffer": "^3.6"
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "branch-alias": {
  6069. "dev-master": "3.0-dev"
  6070. }
  6071. },
  6072. "autoload": {
  6073. "psr-4": {
  6074. "PhpAmqpLib\\": "PhpAmqpLib/"
  6075. }
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "LGPL-2.1-or-later"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Alvaro Videla",
  6084. "role": "Original Maintainer"
  6085. },
  6086. {
  6087. "name": "Raúl Araya",
  6088. "email": "nubeiro@gmail.com",
  6089. "role": "Maintainer"
  6090. },
  6091. {
  6092. "name": "Luke Bakken",
  6093. "email": "luke@bakken.io",
  6094. "role": "Maintainer"
  6095. },
  6096. {
  6097. "name": "Ramūnas Dronga",
  6098. "email": "github@ramuno.lt",
  6099. "role": "Maintainer"
  6100. }
  6101. ],
  6102. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6103. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6104. "keywords": [
  6105. "message",
  6106. "queue",
  6107. "rabbitmq"
  6108. ],
  6109. "support": {
  6110. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6111. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  6112. },
  6113. "time": "2024-02-07T17:21:26+00:00"
  6114. },
  6115. {
  6116. "name": "php-di/phpdoc-reader",
  6117. "version": "2.2.1",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6121. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6126. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6127. "shasum": "",
  6128. "mirrors": [
  6129. {
  6130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6131. "preferred": true
  6132. }
  6133. ]
  6134. },
  6135. "require": {
  6136. "php": ">=7.2.0"
  6137. },
  6138. "require-dev": {
  6139. "mnapoli/hard-mode": "~0.3.0",
  6140. "phpunit/phpunit": "^8.5|^9.0"
  6141. },
  6142. "type": "library",
  6143. "autoload": {
  6144. "psr-4": {
  6145. "PhpDocReader\\": "src/PhpDocReader"
  6146. }
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6153. "keywords": [
  6154. "phpdoc",
  6155. "reflection"
  6156. ],
  6157. "support": {
  6158. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6159. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6160. },
  6161. "time": "2020-10-12T12:39:22+00:00"
  6162. },
  6163. {
  6164. "name": "phpoption/phpoption",
  6165. "version": "1.9.3",
  6166. "source": {
  6167. "type": "git",
  6168. "url": "https://github.com/schmittjoh/php-option.git",
  6169. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6170. },
  6171. "dist": {
  6172. "type": "zip",
  6173. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6174. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6175. "shasum": "",
  6176. "mirrors": [
  6177. {
  6178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6179. "preferred": true
  6180. }
  6181. ]
  6182. },
  6183. "require": {
  6184. "php": "^7.2.5 || ^8.0"
  6185. },
  6186. "require-dev": {
  6187. "bamarni/composer-bin-plugin": "^1.8.2",
  6188. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6189. },
  6190. "type": "library",
  6191. "extra": {
  6192. "bamarni-bin": {
  6193. "bin-links": true,
  6194. "forward-command": false
  6195. },
  6196. "branch-alias": {
  6197. "dev-master": "1.9-dev"
  6198. }
  6199. },
  6200. "autoload": {
  6201. "psr-4": {
  6202. "PhpOption\\": "src/PhpOption/"
  6203. }
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "Apache-2.0"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Johannes M. Schmitt",
  6212. "email": "schmittjoh@gmail.com",
  6213. "homepage": "https://github.com/schmittjoh"
  6214. },
  6215. {
  6216. "name": "Graham Campbell",
  6217. "email": "hello@gjcampbell.co.uk",
  6218. "homepage": "https://github.com/GrahamCampbell"
  6219. }
  6220. ],
  6221. "description": "Option Type for PHP",
  6222. "keywords": [
  6223. "language",
  6224. "option",
  6225. "php",
  6226. "type"
  6227. ],
  6228. "support": {
  6229. "issues": "https://github.com/schmittjoh/php-option/issues",
  6230. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://github.com/GrahamCampbell",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2024-07-20T21:41:07+00:00"
  6243. },
  6244. {
  6245. "name": "phpseclib/phpseclib",
  6246. "version": "3.0.43",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/phpseclib/phpseclib.git",
  6250. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6255. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6256. "shasum": "",
  6257. "mirrors": [
  6258. {
  6259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6260. "preferred": true
  6261. }
  6262. ]
  6263. },
  6264. "require": {
  6265. "paragonie/constant_time_encoding": "^1|^2|^3",
  6266. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6267. "php": ">=5.6.1"
  6268. },
  6269. "require-dev": {
  6270. "phpunit/phpunit": "*"
  6271. },
  6272. "suggest": {
  6273. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6274. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6275. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6276. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6277. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6278. },
  6279. "type": "library",
  6280. "autoload": {
  6281. "files": [
  6282. "phpseclib/bootstrap.php"
  6283. ],
  6284. "psr-4": {
  6285. "phpseclib3\\": "phpseclib/"
  6286. }
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Jim Wigginton",
  6295. "email": "terrafrost@php.net",
  6296. "role": "Lead Developer"
  6297. },
  6298. {
  6299. "name": "Patrick Monnerat",
  6300. "email": "pm@datasphere.ch",
  6301. "role": "Developer"
  6302. },
  6303. {
  6304. "name": "Andreas Fischer",
  6305. "email": "bantu@phpbb.com",
  6306. "role": "Developer"
  6307. },
  6308. {
  6309. "name": "Hans-Jürgen Petrich",
  6310. "email": "petrich@tronic-media.com",
  6311. "role": "Developer"
  6312. },
  6313. {
  6314. "name": "Graham Campbell",
  6315. "email": "graham@alt-three.com",
  6316. "role": "Developer"
  6317. }
  6318. ],
  6319. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6320. "homepage": "http://phpseclib.sourceforge.net",
  6321. "keywords": [
  6322. "BigInteger",
  6323. "aes",
  6324. "asn.1",
  6325. "asn1",
  6326. "blowfish",
  6327. "crypto",
  6328. "cryptography",
  6329. "encryption",
  6330. "rsa",
  6331. "security",
  6332. "sftp",
  6333. "signature",
  6334. "signing",
  6335. "ssh",
  6336. "twofish",
  6337. "x.509",
  6338. "x509"
  6339. ],
  6340. "support": {
  6341. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6342. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6343. },
  6344. "funding": [
  6345. {
  6346. "url": "https://github.com/terrafrost",
  6347. "type": "github"
  6348. },
  6349. {
  6350. "url": "https://www.patreon.com/phpseclib",
  6351. "type": "patreon"
  6352. },
  6353. {
  6354. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6355. "type": "tidelift"
  6356. }
  6357. ],
  6358. "time": "2024-12-14T21:12:59+00:00"
  6359. },
  6360. {
  6361. "name": "psr/cache",
  6362. "version": "3.0.0",
  6363. "source": {
  6364. "type": "git",
  6365. "url": "https://github.com/php-fig/cache.git",
  6366. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6367. },
  6368. "dist": {
  6369. "type": "zip",
  6370. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6371. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6372. "shasum": "",
  6373. "mirrors": [
  6374. {
  6375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6376. "preferred": true
  6377. }
  6378. ]
  6379. },
  6380. "require": {
  6381. "php": ">=8.0.0"
  6382. },
  6383. "type": "library",
  6384. "extra": {
  6385. "branch-alias": {
  6386. "dev-master": "1.0.x-dev"
  6387. }
  6388. },
  6389. "autoload": {
  6390. "psr-4": {
  6391. "Psr\\Cache\\": "src/"
  6392. }
  6393. },
  6394. "notification-url": "https://packagist.org/downloads/",
  6395. "license": [
  6396. "MIT"
  6397. ],
  6398. "authors": [
  6399. {
  6400. "name": "PHP-FIG",
  6401. "homepage": "https://www.php-fig.org/"
  6402. }
  6403. ],
  6404. "description": "Common interface for caching libraries",
  6405. "keywords": [
  6406. "cache",
  6407. "psr",
  6408. "psr-6"
  6409. ],
  6410. "support": {
  6411. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6412. },
  6413. "time": "2021-02-03T23:26:27+00:00"
  6414. },
  6415. {
  6416. "name": "psr/clock",
  6417. "version": "1.0.0",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/php-fig/clock.git",
  6421. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6426. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6427. "shasum": "",
  6428. "mirrors": [
  6429. {
  6430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6431. "preferred": true
  6432. }
  6433. ]
  6434. },
  6435. "require": {
  6436. "php": "^7.0 || ^8.0"
  6437. },
  6438. "type": "library",
  6439. "autoload": {
  6440. "psr-4": {
  6441. "Psr\\Clock\\": "src/"
  6442. }
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "PHP-FIG",
  6451. "homepage": "https://www.php-fig.org/"
  6452. }
  6453. ],
  6454. "description": "Common interface for reading the clock.",
  6455. "homepage": "https://github.com/php-fig/clock",
  6456. "keywords": [
  6457. "clock",
  6458. "now",
  6459. "psr",
  6460. "psr-20",
  6461. "time"
  6462. ],
  6463. "support": {
  6464. "issues": "https://github.com/php-fig/clock/issues",
  6465. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6466. },
  6467. "time": "2022-11-25T14:36:26+00:00"
  6468. },
  6469. {
  6470. "name": "psr/container",
  6471. "version": "2.0.2",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/php-fig/container.git",
  6475. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6480. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6481. "shasum": "",
  6482. "mirrors": [
  6483. {
  6484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6485. "preferred": true
  6486. }
  6487. ]
  6488. },
  6489. "require": {
  6490. "php": ">=7.4.0"
  6491. },
  6492. "type": "library",
  6493. "extra": {
  6494. "branch-alias": {
  6495. "dev-master": "2.0.x-dev"
  6496. }
  6497. },
  6498. "autoload": {
  6499. "psr-4": {
  6500. "Psr\\Container\\": "src/"
  6501. }
  6502. },
  6503. "notification-url": "https://packagist.org/downloads/",
  6504. "license": [
  6505. "MIT"
  6506. ],
  6507. "authors": [
  6508. {
  6509. "name": "PHP-FIG",
  6510. "homepage": "https://www.php-fig.org/"
  6511. }
  6512. ],
  6513. "description": "Common Container Interface (PHP FIG PSR-11)",
  6514. "homepage": "https://github.com/php-fig/container",
  6515. "keywords": [
  6516. "PSR-11",
  6517. "container",
  6518. "container-interface",
  6519. "container-interop",
  6520. "psr"
  6521. ],
  6522. "support": {
  6523. "issues": "https://github.com/php-fig/container/issues",
  6524. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6525. },
  6526. "time": "2021-11-05T16:47:00+00:00"
  6527. },
  6528. {
  6529. "name": "psr/event-dispatcher",
  6530. "version": "1.0.0",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/php-fig/event-dispatcher.git",
  6534. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6539. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6540. "shasum": "",
  6541. "mirrors": [
  6542. {
  6543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6544. "preferred": true
  6545. }
  6546. ]
  6547. },
  6548. "require": {
  6549. "php": ">=7.2.0"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "branch-alias": {
  6554. "dev-master": "1.0.x-dev"
  6555. }
  6556. },
  6557. "autoload": {
  6558. "psr-4": {
  6559. "Psr\\EventDispatcher\\": "src/"
  6560. }
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "MIT"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "PHP-FIG",
  6569. "homepage": "http://www.php-fig.org/"
  6570. }
  6571. ],
  6572. "description": "Standard interfaces for event handling.",
  6573. "keywords": [
  6574. "events",
  6575. "psr",
  6576. "psr-14"
  6577. ],
  6578. "support": {
  6579. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6580. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6581. },
  6582. "time": "2019-01-08T18:20:26+00:00"
  6583. },
  6584. {
  6585. "name": "psr/http-client",
  6586. "version": "1.0.3",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/php-fig/http-client.git",
  6590. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6595. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6596. "shasum": "",
  6597. "mirrors": [
  6598. {
  6599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6600. "preferred": true
  6601. }
  6602. ]
  6603. },
  6604. "require": {
  6605. "php": "^7.0 || ^8.0",
  6606. "psr/http-message": "^1.0 || ^2.0"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.0.x-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-4": {
  6616. "Psr\\Http\\Client\\": "src/"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "PHP-FIG",
  6626. "homepage": "https://www.php-fig.org/"
  6627. }
  6628. ],
  6629. "description": "Common interface for HTTP clients",
  6630. "homepage": "https://github.com/php-fig/http-client",
  6631. "keywords": [
  6632. "http",
  6633. "http-client",
  6634. "psr",
  6635. "psr-18"
  6636. ],
  6637. "support": {
  6638. "source": "https://github.com/php-fig/http-client"
  6639. },
  6640. "time": "2023-09-23T14:17:50+00:00"
  6641. },
  6642. {
  6643. "name": "psr/http-factory",
  6644. "version": "1.0.2",
  6645. "source": {
  6646. "type": "git",
  6647. "url": "https://github.com/php-fig/http-factory.git",
  6648. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6649. },
  6650. "dist": {
  6651. "type": "zip",
  6652. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6653. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6654. "shasum": "",
  6655. "mirrors": [
  6656. {
  6657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6658. "preferred": true
  6659. }
  6660. ]
  6661. },
  6662. "require": {
  6663. "php": ">=7.0.0",
  6664. "psr/http-message": "^1.0 || ^2.0"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "branch-alias": {
  6669. "dev-master": "1.0.x-dev"
  6670. }
  6671. },
  6672. "autoload": {
  6673. "psr-4": {
  6674. "Psr\\Http\\Message\\": "src/"
  6675. }
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "PHP-FIG",
  6684. "homepage": "https://www.php-fig.org/"
  6685. }
  6686. ],
  6687. "description": "Common interfaces for PSR-7 HTTP message factories",
  6688. "keywords": [
  6689. "factory",
  6690. "http",
  6691. "message",
  6692. "psr",
  6693. "psr-17",
  6694. "psr-7",
  6695. "request",
  6696. "response"
  6697. ],
  6698. "support": {
  6699. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6700. },
  6701. "time": "2023-04-10T20:10:41+00:00"
  6702. },
  6703. {
  6704. "name": "psr/http-message",
  6705. "version": "2.0",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/php-fig/http-message.git",
  6709. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6714. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6715. "shasum": "",
  6716. "mirrors": [
  6717. {
  6718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6719. "preferred": true
  6720. }
  6721. ]
  6722. },
  6723. "require": {
  6724. "php": "^7.2 || ^8.0"
  6725. },
  6726. "type": "library",
  6727. "extra": {
  6728. "branch-alias": {
  6729. "dev-master": "2.0.x-dev"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "psr-4": {
  6734. "Psr\\Http\\Message\\": "src/"
  6735. }
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "PHP-FIG",
  6744. "homepage": "https://www.php-fig.org/"
  6745. }
  6746. ],
  6747. "description": "Common interface for HTTP messages",
  6748. "homepage": "https://github.com/php-fig/http-message",
  6749. "keywords": [
  6750. "http",
  6751. "http-message",
  6752. "psr",
  6753. "psr-7",
  6754. "request",
  6755. "response"
  6756. ],
  6757. "support": {
  6758. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6759. },
  6760. "time": "2023-04-04T09:54:51+00:00"
  6761. },
  6762. {
  6763. "name": "psr/http-server-handler",
  6764. "version": "1.0.2",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/php-fig/http-server-handler.git",
  6768. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6773. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6774. "shasum": "",
  6775. "mirrors": [
  6776. {
  6777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6778. "preferred": true
  6779. }
  6780. ]
  6781. },
  6782. "require": {
  6783. "php": ">=7.0",
  6784. "psr/http-message": "^1.0 || ^2.0"
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "branch-alias": {
  6789. "dev-master": "1.0.x-dev"
  6790. }
  6791. },
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Psr\\Http\\Server\\": "src/"
  6795. }
  6796. },
  6797. "notification-url": "https://packagist.org/downloads/",
  6798. "license": [
  6799. "MIT"
  6800. ],
  6801. "authors": [
  6802. {
  6803. "name": "PHP-FIG",
  6804. "homepage": "https://www.php-fig.org/"
  6805. }
  6806. ],
  6807. "description": "Common interface for HTTP server-side request handler",
  6808. "keywords": [
  6809. "handler",
  6810. "http",
  6811. "http-interop",
  6812. "psr",
  6813. "psr-15",
  6814. "psr-7",
  6815. "request",
  6816. "response",
  6817. "server"
  6818. ],
  6819. "support": {
  6820. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6821. },
  6822. "time": "2023-04-10T20:06:20+00:00"
  6823. },
  6824. {
  6825. "name": "psr/http-server-middleware",
  6826. "version": "1.0.2",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/php-fig/http-server-middleware.git",
  6830. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6835. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6836. "shasum": "",
  6837. "mirrors": [
  6838. {
  6839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6840. "preferred": true
  6841. }
  6842. ]
  6843. },
  6844. "require": {
  6845. "php": ">=7.0",
  6846. "psr/http-message": "^1.0 || ^2.0",
  6847. "psr/http-server-handler": "^1.0"
  6848. },
  6849. "type": "library",
  6850. "extra": {
  6851. "branch-alias": {
  6852. "dev-master": "1.0.x-dev"
  6853. }
  6854. },
  6855. "autoload": {
  6856. "psr-4": {
  6857. "Psr\\Http\\Server\\": "src/"
  6858. }
  6859. },
  6860. "notification-url": "https://packagist.org/downloads/",
  6861. "license": [
  6862. "MIT"
  6863. ],
  6864. "authors": [
  6865. {
  6866. "name": "PHP-FIG",
  6867. "homepage": "https://www.php-fig.org/"
  6868. }
  6869. ],
  6870. "description": "Common interface for HTTP server-side middleware",
  6871. "keywords": [
  6872. "http",
  6873. "http-interop",
  6874. "middleware",
  6875. "psr",
  6876. "psr-15",
  6877. "psr-7",
  6878. "request",
  6879. "response"
  6880. ],
  6881. "support": {
  6882. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6883. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6884. },
  6885. "time": "2023-04-11T06:14:47+00:00"
  6886. },
  6887. {
  6888. "name": "psr/log",
  6889. "version": "3.0.1",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/php-fig/log.git",
  6893. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  6898. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  6899. "shasum": "",
  6900. "mirrors": [
  6901. {
  6902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6903. "preferred": true
  6904. }
  6905. ]
  6906. },
  6907. "require": {
  6908. "php": ">=8.0.0"
  6909. },
  6910. "type": "library",
  6911. "extra": {
  6912. "branch-alias": {
  6913. "dev-master": "3.x-dev"
  6914. }
  6915. },
  6916. "autoload": {
  6917. "psr-4": {
  6918. "Psr\\Log\\": "src"
  6919. }
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "PHP-FIG",
  6928. "homepage": "https://www.php-fig.org/"
  6929. }
  6930. ],
  6931. "description": "Common interface for logging libraries",
  6932. "homepage": "https://github.com/php-fig/log",
  6933. "keywords": [
  6934. "log",
  6935. "psr",
  6936. "psr-3"
  6937. ],
  6938. "support": {
  6939. "source": "https://github.com/php-fig/log/tree/3.0.1"
  6940. },
  6941. "time": "2024-08-21T13:31:24+00:00"
  6942. },
  6943. {
  6944. "name": "psr/simple-cache",
  6945. "version": "3.0.0",
  6946. "source": {
  6947. "type": "git",
  6948. "url": "https://github.com/php-fig/simple-cache.git",
  6949. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6950. },
  6951. "dist": {
  6952. "type": "zip",
  6953. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6954. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6955. "shasum": "",
  6956. "mirrors": [
  6957. {
  6958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6959. "preferred": true
  6960. }
  6961. ]
  6962. },
  6963. "require": {
  6964. "php": ">=8.0.0"
  6965. },
  6966. "type": "library",
  6967. "extra": {
  6968. "branch-alias": {
  6969. "dev-master": "3.0.x-dev"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "psr-4": {
  6974. "Psr\\SimpleCache\\": "src/"
  6975. }
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "MIT"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "PHP-FIG",
  6984. "homepage": "https://www.php-fig.org/"
  6985. }
  6986. ],
  6987. "description": "Common interfaces for simple caching",
  6988. "keywords": [
  6989. "cache",
  6990. "caching",
  6991. "psr",
  6992. "psr-16",
  6993. "simple-cache"
  6994. ],
  6995. "support": {
  6996. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6997. },
  6998. "time": "2021-10-29T13:26:27+00:00"
  6999. },
  7000. {
  7001. "name": "ralouphie/getallheaders",
  7002. "version": "3.0.3",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://github.com/ralouphie/getallheaders.git",
  7006. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7011. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7012. "shasum": "",
  7013. "mirrors": [
  7014. {
  7015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7016. "preferred": true
  7017. }
  7018. ]
  7019. },
  7020. "require": {
  7021. "php": ">=5.6"
  7022. },
  7023. "require-dev": {
  7024. "php-coveralls/php-coveralls": "^2.1",
  7025. "phpunit/phpunit": "^5 || ^6.5"
  7026. },
  7027. "type": "library",
  7028. "autoload": {
  7029. "files": [
  7030. "src/getallheaders.php"
  7031. ]
  7032. },
  7033. "notification-url": "https://packagist.org/downloads/",
  7034. "license": [
  7035. "MIT"
  7036. ],
  7037. "authors": [
  7038. {
  7039. "name": "Ralph Khattar",
  7040. "email": "ralph.khattar@gmail.com"
  7041. }
  7042. ],
  7043. "description": "A polyfill for getallheaders.",
  7044. "support": {
  7045. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7046. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7047. },
  7048. "time": "2019-03-08T08:55:37+00:00"
  7049. },
  7050. {
  7051. "name": "ramsey/collection",
  7052. "version": "2.0.0",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/ramsey/collection.git",
  7056. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  7061. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  7062. "shasum": "",
  7063. "mirrors": [
  7064. {
  7065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7066. "preferred": true
  7067. }
  7068. ]
  7069. },
  7070. "require": {
  7071. "php": "^8.1"
  7072. },
  7073. "require-dev": {
  7074. "captainhook/plugin-composer": "^5.3",
  7075. "ergebnis/composer-normalize": "^2.28.3",
  7076. "fakerphp/faker": "^1.21",
  7077. "hamcrest/hamcrest-php": "^2.0",
  7078. "jangregor/phpstan-prophecy": "^1.0",
  7079. "mockery/mockery": "^1.5",
  7080. "php-parallel-lint/php-console-highlighter": "^1.0",
  7081. "php-parallel-lint/php-parallel-lint": "^1.3",
  7082. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  7083. "phpspec/prophecy-phpunit": "^2.0",
  7084. "phpstan/extension-installer": "^1.2",
  7085. "phpstan/phpstan": "^1.9",
  7086. "phpstan/phpstan-mockery": "^1.1",
  7087. "phpstan/phpstan-phpunit": "^1.3",
  7088. "phpunit/phpunit": "^9.5",
  7089. "psalm/plugin-mockery": "^1.1",
  7090. "psalm/plugin-phpunit": "^0.18.4",
  7091. "ramsey/coding-standard": "^2.0.3",
  7092. "ramsey/conventional-commits": "^1.3",
  7093. "vimeo/psalm": "^5.4"
  7094. },
  7095. "type": "library",
  7096. "extra": {
  7097. "captainhook": {
  7098. "force-install": true
  7099. },
  7100. "ramsey/conventional-commits": {
  7101. "configFile": "conventional-commits.json"
  7102. }
  7103. },
  7104. "autoload": {
  7105. "psr-4": {
  7106. "Ramsey\\Collection\\": "src/"
  7107. }
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Ben Ramsey",
  7116. "email": "ben@benramsey.com",
  7117. "homepage": "https://benramsey.com"
  7118. }
  7119. ],
  7120. "description": "A PHP library for representing and manipulating collections.",
  7121. "keywords": [
  7122. "array",
  7123. "collection",
  7124. "hash",
  7125. "map",
  7126. "queue",
  7127. "set"
  7128. ],
  7129. "support": {
  7130. "issues": "https://github.com/ramsey/collection/issues",
  7131. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  7132. },
  7133. "funding": [
  7134. {
  7135. "url": "https://github.com/ramsey",
  7136. "type": "github"
  7137. },
  7138. {
  7139. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  7140. "type": "tidelift"
  7141. }
  7142. ],
  7143. "time": "2022-12-31T21:50:55+00:00"
  7144. },
  7145. {
  7146. "name": "ramsey/uuid",
  7147. "version": "4.7.6",
  7148. "source": {
  7149. "type": "git",
  7150. "url": "https://github.com/ramsey/uuid.git",
  7151. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  7152. },
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  7156. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  7157. "shasum": "",
  7158. "mirrors": [
  7159. {
  7160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7161. "preferred": true
  7162. }
  7163. ]
  7164. },
  7165. "require": {
  7166. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  7167. "ext-json": "*",
  7168. "php": "^8.0",
  7169. "ramsey/collection": "^1.2 || ^2.0"
  7170. },
  7171. "replace": {
  7172. "rhumsaa/uuid": "self.version"
  7173. },
  7174. "require-dev": {
  7175. "captainhook/captainhook": "^5.10",
  7176. "captainhook/plugin-composer": "^5.3",
  7177. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  7178. "doctrine/annotations": "^1.8",
  7179. "ergebnis/composer-normalize": "^2.15",
  7180. "mockery/mockery": "^1.3",
  7181. "paragonie/random-lib": "^2",
  7182. "php-mock/php-mock": "^2.2",
  7183. "php-mock/php-mock-mockery": "^1.3",
  7184. "php-parallel-lint/php-parallel-lint": "^1.1",
  7185. "phpbench/phpbench": "^1.0",
  7186. "phpstan/extension-installer": "^1.1",
  7187. "phpstan/phpstan": "^1.8",
  7188. "phpstan/phpstan-mockery": "^1.1",
  7189. "phpstan/phpstan-phpunit": "^1.1",
  7190. "phpunit/phpunit": "^8.5 || ^9",
  7191. "ramsey/composer-repl": "^1.4",
  7192. "slevomat/coding-standard": "^8.4",
  7193. "squizlabs/php_codesniffer": "^3.5",
  7194. "vimeo/psalm": "^4.9"
  7195. },
  7196. "suggest": {
  7197. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  7198. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  7199. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  7200. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  7201. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  7202. },
  7203. "type": "library",
  7204. "extra": {
  7205. "captainhook": {
  7206. "force-install": true
  7207. }
  7208. },
  7209. "autoload": {
  7210. "files": [
  7211. "src/functions.php"
  7212. ],
  7213. "psr-4": {
  7214. "Ramsey\\Uuid\\": "src/"
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  7222. "keywords": [
  7223. "guid",
  7224. "identifier",
  7225. "uuid"
  7226. ],
  7227. "support": {
  7228. "issues": "https://github.com/ramsey/uuid/issues",
  7229. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  7230. },
  7231. "funding": [
  7232. {
  7233. "url": "https://github.com/ramsey",
  7234. "type": "github"
  7235. },
  7236. {
  7237. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  7238. "type": "tidelift"
  7239. }
  7240. ],
  7241. "time": "2024-04-27T21:32:50+00:00"
  7242. },
  7243. {
  7244. "name": "swow/psr7-plus",
  7245. "version": "v1.1.2",
  7246. "source": {
  7247. "type": "git",
  7248. "url": "https://github.com/swow/psr7-plus.git",
  7249. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  7250. },
  7251. "dist": {
  7252. "type": "zip",
  7253. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  7254. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  7255. "shasum": "",
  7256. "mirrors": [
  7257. {
  7258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7259. "preferred": true
  7260. }
  7261. ]
  7262. },
  7263. "require": {
  7264. "php": ">=8.0",
  7265. "psr/http-client": "^1.0",
  7266. "psr/http-factory": "^1.0",
  7267. "psr/http-message": "^1.1|^2.0"
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Swow\\Psr7\\Message\\": "src/Message/"
  7273. }
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "Apache-2.0"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "twose",
  7282. "email": "twosee@php.net"
  7283. }
  7284. ],
  7285. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  7286. "keywords": [
  7287. "http",
  7288. "psr17",
  7289. "psr7",
  7290. "swow",
  7291. "websocket"
  7292. ],
  7293. "support": {
  7294. "issues": "https://github.com/swow/swow",
  7295. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  7296. },
  7297. "time": "2023-06-15T09:18:11+00:00"
  7298. },
  7299. {
  7300. "name": "symfony/console",
  7301. "version": "v6.4.21",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/symfony/console.git",
  7305. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  7310. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  7311. "shasum": "",
  7312. "mirrors": [
  7313. {
  7314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7315. "preferred": true
  7316. }
  7317. ]
  7318. },
  7319. "require": {
  7320. "php": ">=8.1",
  7321. "symfony/deprecation-contracts": "^2.5|^3",
  7322. "symfony/polyfill-mbstring": "~1.0",
  7323. "symfony/service-contracts": "^2.5|^3",
  7324. "symfony/string": "^5.4|^6.0|^7.0"
  7325. },
  7326. "conflict": {
  7327. "symfony/dependency-injection": "<5.4",
  7328. "symfony/dotenv": "<5.4",
  7329. "symfony/event-dispatcher": "<5.4",
  7330. "symfony/lock": "<5.4",
  7331. "symfony/process": "<5.4"
  7332. },
  7333. "provide": {
  7334. "psr/log-implementation": "1.0|2.0|3.0"
  7335. },
  7336. "require-dev": {
  7337. "psr/log": "^1|^2|^3",
  7338. "symfony/config": "^5.4|^6.0|^7.0",
  7339. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7340. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7341. "symfony/http-foundation": "^6.4|^7.0",
  7342. "symfony/http-kernel": "^6.4|^7.0",
  7343. "symfony/lock": "^5.4|^6.0|^7.0",
  7344. "symfony/messenger": "^5.4|^6.0|^7.0",
  7345. "symfony/process": "^5.4|^6.0|^7.0",
  7346. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7347. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7348. },
  7349. "type": "library",
  7350. "autoload": {
  7351. "psr-4": {
  7352. "Symfony\\Component\\Console\\": ""
  7353. },
  7354. "exclude-from-classmap": [
  7355. "/Tests/"
  7356. ]
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "MIT"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Fabien Potencier",
  7365. "email": "fabien@symfony.com"
  7366. },
  7367. {
  7368. "name": "Symfony Community",
  7369. "homepage": "https://symfony.com/contributors"
  7370. }
  7371. ],
  7372. "description": "Eases the creation of beautiful and testable command line interfaces",
  7373. "homepage": "https://symfony.com",
  7374. "keywords": [
  7375. "cli",
  7376. "command-line",
  7377. "console",
  7378. "terminal"
  7379. ],
  7380. "support": {
  7381. "source": "https://github.com/symfony/console/tree/v6.4.21"
  7382. },
  7383. "funding": [
  7384. {
  7385. "url": "https://symfony.com/sponsor",
  7386. "type": "custom"
  7387. },
  7388. {
  7389. "url": "https://github.com/fabpot",
  7390. "type": "github"
  7391. },
  7392. {
  7393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7394. "type": "tidelift"
  7395. }
  7396. ],
  7397. "time": "2025-04-07T15:42:41+00:00"
  7398. },
  7399. {
  7400. "name": "symfony/deprecation-contracts",
  7401. "version": "v3.5.1",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/symfony/deprecation-contracts.git",
  7405. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7410. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7411. "shasum": "",
  7412. "mirrors": [
  7413. {
  7414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7415. "preferred": true
  7416. }
  7417. ]
  7418. },
  7419. "require": {
  7420. "php": ">=8.1"
  7421. },
  7422. "type": "library",
  7423. "extra": {
  7424. "thanks": {
  7425. "url": "https://github.com/symfony/contracts",
  7426. "name": "symfony/contracts"
  7427. },
  7428. "branch-alias": {
  7429. "dev-main": "3.5-dev"
  7430. }
  7431. },
  7432. "autoload": {
  7433. "files": [
  7434. "function.php"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Nicolas Grekas",
  7444. "email": "p@tchwork.com"
  7445. },
  7446. {
  7447. "name": "Symfony Community",
  7448. "homepage": "https://symfony.com/contributors"
  7449. }
  7450. ],
  7451. "description": "A generic function and convention to trigger deprecation notices",
  7452. "homepage": "https://symfony.com",
  7453. "support": {
  7454. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7455. },
  7456. "funding": [
  7457. {
  7458. "url": "https://symfony.com/sponsor",
  7459. "type": "custom"
  7460. },
  7461. {
  7462. "url": "https://github.com/fabpot",
  7463. "type": "github"
  7464. },
  7465. {
  7466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7467. "type": "tidelift"
  7468. }
  7469. ],
  7470. "time": "2024-09-25T14:20:29+00:00"
  7471. },
  7472. {
  7473. "name": "symfony/finder",
  7474. "version": "v6.4.17",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/symfony/finder.git",
  7478. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7483. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7484. "shasum": "",
  7485. "mirrors": [
  7486. {
  7487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7488. "preferred": true
  7489. }
  7490. ]
  7491. },
  7492. "require": {
  7493. "php": ">=8.1"
  7494. },
  7495. "require-dev": {
  7496. "symfony/filesystem": "^6.0|^7.0"
  7497. },
  7498. "type": "library",
  7499. "autoload": {
  7500. "psr-4": {
  7501. "Symfony\\Component\\Finder\\": ""
  7502. },
  7503. "exclude-from-classmap": [
  7504. "/Tests/"
  7505. ]
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Fabien Potencier",
  7514. "email": "fabien@symfony.com"
  7515. },
  7516. {
  7517. "name": "Symfony Community",
  7518. "homepage": "https://symfony.com/contributors"
  7519. }
  7520. ],
  7521. "description": "Finds files and directories via an intuitive fluent interface",
  7522. "homepage": "https://symfony.com",
  7523. "support": {
  7524. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7525. },
  7526. "funding": [
  7527. {
  7528. "url": "https://symfony.com/sponsor",
  7529. "type": "custom"
  7530. },
  7531. {
  7532. "url": "https://github.com/fabpot",
  7533. "type": "github"
  7534. },
  7535. {
  7536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7537. "type": "tidelift"
  7538. }
  7539. ],
  7540. "time": "2024-12-29T13:51:37+00:00"
  7541. },
  7542. {
  7543. "name": "symfony/polyfill-ctype",
  7544. "version": "v1.31.0",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/symfony/polyfill-ctype.git",
  7548. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7553. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7554. "shasum": "",
  7555. "mirrors": [
  7556. {
  7557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7558. "preferred": true
  7559. }
  7560. ]
  7561. },
  7562. "require": {
  7563. "php": ">=7.2"
  7564. },
  7565. "provide": {
  7566. "ext-ctype": "*"
  7567. },
  7568. "suggest": {
  7569. "ext-ctype": "For best performance"
  7570. },
  7571. "type": "library",
  7572. "extra": {
  7573. "thanks": {
  7574. "url": "https://github.com/symfony/polyfill",
  7575. "name": "symfony/polyfill"
  7576. }
  7577. },
  7578. "autoload": {
  7579. "files": [
  7580. "bootstrap.php"
  7581. ],
  7582. "psr-4": {
  7583. "Symfony\\Polyfill\\Ctype\\": ""
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Gert de Pagter",
  7593. "email": "BackEndTea@gmail.com"
  7594. },
  7595. {
  7596. "name": "Symfony Community",
  7597. "homepage": "https://symfony.com/contributors"
  7598. }
  7599. ],
  7600. "description": "Symfony polyfill for ctype functions",
  7601. "homepage": "https://symfony.com",
  7602. "keywords": [
  7603. "compatibility",
  7604. "ctype",
  7605. "polyfill",
  7606. "portable"
  7607. ],
  7608. "support": {
  7609. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7610. },
  7611. "funding": [
  7612. {
  7613. "url": "https://symfony.com/sponsor",
  7614. "type": "custom"
  7615. },
  7616. {
  7617. "url": "https://github.com/fabpot",
  7618. "type": "github"
  7619. },
  7620. {
  7621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7622. "type": "tidelift"
  7623. }
  7624. ],
  7625. "time": "2024-09-09T11:45:10+00:00"
  7626. },
  7627. {
  7628. "name": "symfony/polyfill-intl-grapheme",
  7629. "version": "v1.31.0",
  7630. "source": {
  7631. "type": "git",
  7632. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7633. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7634. },
  7635. "dist": {
  7636. "type": "zip",
  7637. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7638. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7639. "shasum": "",
  7640. "mirrors": [
  7641. {
  7642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7643. "preferred": true
  7644. }
  7645. ]
  7646. },
  7647. "require": {
  7648. "php": ">=7.2"
  7649. },
  7650. "suggest": {
  7651. "ext-intl": "For best performance"
  7652. },
  7653. "type": "library",
  7654. "extra": {
  7655. "thanks": {
  7656. "url": "https://github.com/symfony/polyfill",
  7657. "name": "symfony/polyfill"
  7658. }
  7659. },
  7660. "autoload": {
  7661. "files": [
  7662. "bootstrap.php"
  7663. ],
  7664. "psr-4": {
  7665. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7666. }
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "MIT"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Nicolas Grekas",
  7675. "email": "p@tchwork.com"
  7676. },
  7677. {
  7678. "name": "Symfony Community",
  7679. "homepage": "https://symfony.com/contributors"
  7680. }
  7681. ],
  7682. "description": "Symfony polyfill for intl's grapheme_* functions",
  7683. "homepage": "https://symfony.com",
  7684. "keywords": [
  7685. "compatibility",
  7686. "grapheme",
  7687. "intl",
  7688. "polyfill",
  7689. "portable",
  7690. "shim"
  7691. ],
  7692. "support": {
  7693. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7694. },
  7695. "funding": [
  7696. {
  7697. "url": "https://symfony.com/sponsor",
  7698. "type": "custom"
  7699. },
  7700. {
  7701. "url": "https://github.com/fabpot",
  7702. "type": "github"
  7703. },
  7704. {
  7705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7706. "type": "tidelift"
  7707. }
  7708. ],
  7709. "time": "2024-09-09T11:45:10+00:00"
  7710. },
  7711. {
  7712. "name": "symfony/polyfill-intl-normalizer",
  7713. "version": "v1.31.0",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7717. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7722. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7723. "shasum": "",
  7724. "mirrors": [
  7725. {
  7726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7727. "preferred": true
  7728. }
  7729. ]
  7730. },
  7731. "require": {
  7732. "php": ">=7.2"
  7733. },
  7734. "suggest": {
  7735. "ext-intl": "For best performance"
  7736. },
  7737. "type": "library",
  7738. "extra": {
  7739. "thanks": {
  7740. "url": "https://github.com/symfony/polyfill",
  7741. "name": "symfony/polyfill"
  7742. }
  7743. },
  7744. "autoload": {
  7745. "files": [
  7746. "bootstrap.php"
  7747. ],
  7748. "psr-4": {
  7749. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7750. },
  7751. "classmap": [
  7752. "Resources/stubs"
  7753. ]
  7754. },
  7755. "notification-url": "https://packagist.org/downloads/",
  7756. "license": [
  7757. "MIT"
  7758. ],
  7759. "authors": [
  7760. {
  7761. "name": "Nicolas Grekas",
  7762. "email": "p@tchwork.com"
  7763. },
  7764. {
  7765. "name": "Symfony Community",
  7766. "homepage": "https://symfony.com/contributors"
  7767. }
  7768. ],
  7769. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7770. "homepage": "https://symfony.com",
  7771. "keywords": [
  7772. "compatibility",
  7773. "intl",
  7774. "normalizer",
  7775. "polyfill",
  7776. "portable",
  7777. "shim"
  7778. ],
  7779. "support": {
  7780. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7781. },
  7782. "funding": [
  7783. {
  7784. "url": "https://symfony.com/sponsor",
  7785. "type": "custom"
  7786. },
  7787. {
  7788. "url": "https://github.com/fabpot",
  7789. "type": "github"
  7790. },
  7791. {
  7792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7793. "type": "tidelift"
  7794. }
  7795. ],
  7796. "time": "2024-09-09T11:45:10+00:00"
  7797. },
  7798. {
  7799. "name": "symfony/polyfill-mbstring",
  7800. "version": "v1.31.0",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7804. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7809. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7810. "shasum": "",
  7811. "mirrors": [
  7812. {
  7813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7814. "preferred": true
  7815. }
  7816. ]
  7817. },
  7818. "require": {
  7819. "php": ">=7.2"
  7820. },
  7821. "provide": {
  7822. "ext-mbstring": "*"
  7823. },
  7824. "suggest": {
  7825. "ext-mbstring": "For best performance"
  7826. },
  7827. "type": "library",
  7828. "extra": {
  7829. "thanks": {
  7830. "name": "symfony/polyfill",
  7831. "url": "https://github.com/symfony/polyfill"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "files": [
  7836. "bootstrap.php"
  7837. ],
  7838. "psr-4": {
  7839. "Symfony\\Polyfill\\Mbstring\\": ""
  7840. }
  7841. },
  7842. "notification-url": "https://packagist.org/downloads/",
  7843. "license": [
  7844. "MIT"
  7845. ],
  7846. "authors": [
  7847. {
  7848. "name": "Nicolas Grekas",
  7849. "email": "p@tchwork.com"
  7850. },
  7851. {
  7852. "name": "Symfony Community",
  7853. "homepage": "https://symfony.com/contributors"
  7854. }
  7855. ],
  7856. "description": "Symfony polyfill for the Mbstring extension",
  7857. "homepage": "https://symfony.com",
  7858. "keywords": [
  7859. "compatibility",
  7860. "mbstring",
  7861. "polyfill",
  7862. "portable",
  7863. "shim"
  7864. ],
  7865. "support": {
  7866. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7867. },
  7868. "funding": [
  7869. {
  7870. "url": "https://symfony.com/sponsor",
  7871. "type": "custom"
  7872. },
  7873. {
  7874. "url": "https://github.com/fabpot",
  7875. "type": "github"
  7876. },
  7877. {
  7878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7879. "type": "tidelift"
  7880. }
  7881. ],
  7882. "time": "2024-09-09T11:45:10+00:00"
  7883. },
  7884. {
  7885. "name": "symfony/polyfill-php80",
  7886. "version": "v1.31.0",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://github.com/symfony/polyfill-php80.git",
  7890. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7895. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7896. "shasum": "",
  7897. "mirrors": [
  7898. {
  7899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7900. "preferred": true
  7901. }
  7902. ]
  7903. },
  7904. "require": {
  7905. "php": ">=7.2"
  7906. },
  7907. "type": "library",
  7908. "extra": {
  7909. "thanks": {
  7910. "url": "https://github.com/symfony/polyfill",
  7911. "name": "symfony/polyfill"
  7912. }
  7913. },
  7914. "autoload": {
  7915. "files": [
  7916. "bootstrap.php"
  7917. ],
  7918. "psr-4": {
  7919. "Symfony\\Polyfill\\Php80\\": ""
  7920. },
  7921. "classmap": [
  7922. "Resources/stubs"
  7923. ]
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "Ion Bazan",
  7932. "email": "ion.bazan@gmail.com"
  7933. },
  7934. {
  7935. "name": "Nicolas Grekas",
  7936. "email": "p@tchwork.com"
  7937. },
  7938. {
  7939. "name": "Symfony Community",
  7940. "homepage": "https://symfony.com/contributors"
  7941. }
  7942. ],
  7943. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7944. "homepage": "https://symfony.com",
  7945. "keywords": [
  7946. "compatibility",
  7947. "polyfill",
  7948. "portable",
  7949. "shim"
  7950. ],
  7951. "support": {
  7952. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7953. },
  7954. "funding": [
  7955. {
  7956. "url": "https://symfony.com/sponsor",
  7957. "type": "custom"
  7958. },
  7959. {
  7960. "url": "https://github.com/fabpot",
  7961. "type": "github"
  7962. },
  7963. {
  7964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7965. "type": "tidelift"
  7966. }
  7967. ],
  7968. "time": "2024-09-09T11:45:10+00:00"
  7969. },
  7970. {
  7971. "name": "symfony/service-contracts",
  7972. "version": "v3.5.1",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/symfony/service-contracts.git",
  7976. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7981. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7982. "shasum": "",
  7983. "mirrors": [
  7984. {
  7985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7986. "preferred": true
  7987. }
  7988. ]
  7989. },
  7990. "require": {
  7991. "php": ">=8.1",
  7992. "psr/container": "^1.1|^2.0",
  7993. "symfony/deprecation-contracts": "^2.5|^3"
  7994. },
  7995. "conflict": {
  7996. "ext-psr": "<1.1|>=2"
  7997. },
  7998. "type": "library",
  7999. "extra": {
  8000. "thanks": {
  8001. "url": "https://github.com/symfony/contracts",
  8002. "name": "symfony/contracts"
  8003. },
  8004. "branch-alias": {
  8005. "dev-main": "3.5-dev"
  8006. }
  8007. },
  8008. "autoload": {
  8009. "psr-4": {
  8010. "Symfony\\Contracts\\Service\\": ""
  8011. },
  8012. "exclude-from-classmap": [
  8013. "/Test/"
  8014. ]
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "MIT"
  8019. ],
  8020. "authors": [
  8021. {
  8022. "name": "Nicolas Grekas",
  8023. "email": "p@tchwork.com"
  8024. },
  8025. {
  8026. "name": "Symfony Community",
  8027. "homepage": "https://symfony.com/contributors"
  8028. }
  8029. ],
  8030. "description": "Generic abstractions related to writing services",
  8031. "homepage": "https://symfony.com",
  8032. "keywords": [
  8033. "abstractions",
  8034. "contracts",
  8035. "decoupling",
  8036. "interfaces",
  8037. "interoperability",
  8038. "standards"
  8039. ],
  8040. "support": {
  8041. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://symfony.com/sponsor",
  8046. "type": "custom"
  8047. },
  8048. {
  8049. "url": "https://github.com/fabpot",
  8050. "type": "github"
  8051. },
  8052. {
  8053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8054. "type": "tidelift"
  8055. }
  8056. ],
  8057. "time": "2024-09-25T14:20:29+00:00"
  8058. },
  8059. {
  8060. "name": "symfony/string",
  8061. "version": "v6.4.21",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://github.com/symfony/string.git",
  8065. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  8070. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  8071. "shasum": "",
  8072. "mirrors": [
  8073. {
  8074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8075. "preferred": true
  8076. }
  8077. ]
  8078. },
  8079. "require": {
  8080. "php": ">=8.1",
  8081. "symfony/polyfill-ctype": "~1.8",
  8082. "symfony/polyfill-intl-grapheme": "~1.0",
  8083. "symfony/polyfill-intl-normalizer": "~1.0",
  8084. "symfony/polyfill-mbstring": "~1.0"
  8085. },
  8086. "conflict": {
  8087. "symfony/translation-contracts": "<2.5"
  8088. },
  8089. "require-dev": {
  8090. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8091. "symfony/http-client": "^5.4|^6.0|^7.0",
  8092. "symfony/intl": "^6.2|^7.0",
  8093. "symfony/translation-contracts": "^2.5|^3.0",
  8094. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8095. },
  8096. "type": "library",
  8097. "autoload": {
  8098. "files": [
  8099. "Resources/functions.php"
  8100. ],
  8101. "psr-4": {
  8102. "Symfony\\Component\\String\\": ""
  8103. },
  8104. "exclude-from-classmap": [
  8105. "/Tests/"
  8106. ]
  8107. },
  8108. "notification-url": "https://packagist.org/downloads/",
  8109. "license": [
  8110. "MIT"
  8111. ],
  8112. "authors": [
  8113. {
  8114. "name": "Nicolas Grekas",
  8115. "email": "p@tchwork.com"
  8116. },
  8117. {
  8118. "name": "Symfony Community",
  8119. "homepage": "https://symfony.com/contributors"
  8120. }
  8121. ],
  8122. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8123. "homepage": "https://symfony.com",
  8124. "keywords": [
  8125. "grapheme",
  8126. "i18n",
  8127. "string",
  8128. "unicode",
  8129. "utf-8",
  8130. "utf8"
  8131. ],
  8132. "support": {
  8133. "source": "https://github.com/symfony/string/tree/v6.4.21"
  8134. },
  8135. "funding": [
  8136. {
  8137. "url": "https://symfony.com/sponsor",
  8138. "type": "custom"
  8139. },
  8140. {
  8141. "url": "https://github.com/fabpot",
  8142. "type": "github"
  8143. },
  8144. {
  8145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8146. "type": "tidelift"
  8147. }
  8148. ],
  8149. "time": "2025-04-18T15:23:29+00:00"
  8150. },
  8151. {
  8152. "name": "symfony/translation",
  8153. "version": "v6.4.21",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/symfony/translation.git",
  8157. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  8162. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  8163. "shasum": "",
  8164. "mirrors": [
  8165. {
  8166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8167. "preferred": true
  8168. }
  8169. ]
  8170. },
  8171. "require": {
  8172. "php": ">=8.1",
  8173. "symfony/deprecation-contracts": "^2.5|^3",
  8174. "symfony/polyfill-mbstring": "~1.0",
  8175. "symfony/translation-contracts": "^2.5|^3.0"
  8176. },
  8177. "conflict": {
  8178. "symfony/config": "<5.4",
  8179. "symfony/console": "<5.4",
  8180. "symfony/dependency-injection": "<5.4",
  8181. "symfony/http-client-contracts": "<2.5",
  8182. "symfony/http-kernel": "<5.4",
  8183. "symfony/service-contracts": "<2.5",
  8184. "symfony/twig-bundle": "<5.4",
  8185. "symfony/yaml": "<5.4"
  8186. },
  8187. "provide": {
  8188. "symfony/translation-implementation": "2.3|3.0"
  8189. },
  8190. "require-dev": {
  8191. "nikic/php-parser": "^4.18|^5.0",
  8192. "psr/log": "^1|^2|^3",
  8193. "symfony/config": "^5.4|^6.0|^7.0",
  8194. "symfony/console": "^5.4|^6.0|^7.0",
  8195. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8196. "symfony/finder": "^5.4|^6.0|^7.0",
  8197. "symfony/http-client-contracts": "^2.5|^3.0",
  8198. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8199. "symfony/intl": "^5.4|^6.0|^7.0",
  8200. "symfony/polyfill-intl-icu": "^1.21",
  8201. "symfony/routing": "^5.4|^6.0|^7.0",
  8202. "symfony/service-contracts": "^2.5|^3",
  8203. "symfony/yaml": "^5.4|^6.0|^7.0"
  8204. },
  8205. "type": "library",
  8206. "autoload": {
  8207. "files": [
  8208. "Resources/functions.php"
  8209. ],
  8210. "psr-4": {
  8211. "Symfony\\Component\\Translation\\": ""
  8212. },
  8213. "exclude-from-classmap": [
  8214. "/Tests/"
  8215. ]
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "authors": [
  8222. {
  8223. "name": "Fabien Potencier",
  8224. "email": "fabien@symfony.com"
  8225. },
  8226. {
  8227. "name": "Symfony Community",
  8228. "homepage": "https://symfony.com/contributors"
  8229. }
  8230. ],
  8231. "description": "Provides tools to internationalize your application",
  8232. "homepage": "https://symfony.com",
  8233. "support": {
  8234. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  8235. },
  8236. "funding": [
  8237. {
  8238. "url": "https://symfony.com/sponsor",
  8239. "type": "custom"
  8240. },
  8241. {
  8242. "url": "https://github.com/fabpot",
  8243. "type": "github"
  8244. },
  8245. {
  8246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8247. "type": "tidelift"
  8248. }
  8249. ],
  8250. "time": "2025-04-07T19:02:30+00:00"
  8251. },
  8252. {
  8253. "name": "symfony/translation-contracts",
  8254. "version": "v3.5.1",
  8255. "source": {
  8256. "type": "git",
  8257. "url": "https://github.com/symfony/translation-contracts.git",
  8258. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8259. },
  8260. "dist": {
  8261. "type": "zip",
  8262. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8263. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8264. "shasum": "",
  8265. "mirrors": [
  8266. {
  8267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8268. "preferred": true
  8269. }
  8270. ]
  8271. },
  8272. "require": {
  8273. "php": ">=8.1"
  8274. },
  8275. "type": "library",
  8276. "extra": {
  8277. "thanks": {
  8278. "url": "https://github.com/symfony/contracts",
  8279. "name": "symfony/contracts"
  8280. },
  8281. "branch-alias": {
  8282. "dev-main": "3.5-dev"
  8283. }
  8284. },
  8285. "autoload": {
  8286. "psr-4": {
  8287. "Symfony\\Contracts\\Translation\\": ""
  8288. },
  8289. "exclude-from-classmap": [
  8290. "/Test/"
  8291. ]
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "MIT"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Nicolas Grekas",
  8300. "email": "p@tchwork.com"
  8301. },
  8302. {
  8303. "name": "Symfony Community",
  8304. "homepage": "https://symfony.com/contributors"
  8305. }
  8306. ],
  8307. "description": "Generic abstractions related to translation",
  8308. "homepage": "https://symfony.com",
  8309. "keywords": [
  8310. "abstractions",
  8311. "contracts",
  8312. "decoupling",
  8313. "interfaces",
  8314. "interoperability",
  8315. "standards"
  8316. ],
  8317. "support": {
  8318. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8319. },
  8320. "funding": [
  8321. {
  8322. "url": "https://symfony.com/sponsor",
  8323. "type": "custom"
  8324. },
  8325. {
  8326. "url": "https://github.com/fabpot",
  8327. "type": "github"
  8328. },
  8329. {
  8330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8331. "type": "tidelift"
  8332. }
  8333. ],
  8334. "time": "2024-09-25T14:20:29+00:00"
  8335. },
  8336. {
  8337. "name": "vlucas/phpdotenv",
  8338. "version": "v5.6.1",
  8339. "source": {
  8340. "type": "git",
  8341. "url": "https://github.com/vlucas/phpdotenv.git",
  8342. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8343. },
  8344. "dist": {
  8345. "type": "zip",
  8346. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8347. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8348. "shasum": "",
  8349. "mirrors": [
  8350. {
  8351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8352. "preferred": true
  8353. }
  8354. ]
  8355. },
  8356. "require": {
  8357. "ext-pcre": "*",
  8358. "graham-campbell/result-type": "^1.1.3",
  8359. "php": "^7.2.5 || ^8.0",
  8360. "phpoption/phpoption": "^1.9.3",
  8361. "symfony/polyfill-ctype": "^1.24",
  8362. "symfony/polyfill-mbstring": "^1.24",
  8363. "symfony/polyfill-php80": "^1.24"
  8364. },
  8365. "require-dev": {
  8366. "bamarni/composer-bin-plugin": "^1.8.2",
  8367. "ext-filter": "*",
  8368. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8369. },
  8370. "suggest": {
  8371. "ext-filter": "Required to use the boolean validator."
  8372. },
  8373. "type": "library",
  8374. "extra": {
  8375. "bamarni-bin": {
  8376. "bin-links": true,
  8377. "forward-command": false
  8378. },
  8379. "branch-alias": {
  8380. "dev-master": "5.6-dev"
  8381. }
  8382. },
  8383. "autoload": {
  8384. "psr-4": {
  8385. "Dotenv\\": "src/"
  8386. }
  8387. },
  8388. "notification-url": "https://packagist.org/downloads/",
  8389. "license": [
  8390. "BSD-3-Clause"
  8391. ],
  8392. "authors": [
  8393. {
  8394. "name": "Graham Campbell",
  8395. "email": "hello@gjcampbell.co.uk",
  8396. "homepage": "https://github.com/GrahamCampbell"
  8397. },
  8398. {
  8399. "name": "Vance Lucas",
  8400. "email": "vance@vancelucas.com",
  8401. "homepage": "https://github.com/vlucas"
  8402. }
  8403. ],
  8404. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8405. "keywords": [
  8406. "dotenv",
  8407. "env",
  8408. "environment"
  8409. ],
  8410. "support": {
  8411. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8412. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8413. },
  8414. "funding": [
  8415. {
  8416. "url": "https://github.com/GrahamCampbell",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2024-07-20T21:52:34+00:00"
  8425. },
  8426. {
  8427. "name": "voku/portable-ascii",
  8428. "version": "2.0.2",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/voku/portable-ascii.git",
  8432. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/16c17671a804bb92602822113dd91fbc8a35d2af",
  8437. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af",
  8438. "shasum": "",
  8439. "mirrors": [
  8440. {
  8441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8442. "preferred": true
  8443. }
  8444. ]
  8445. },
  8446. "require": {
  8447. "php": ">=7.0.0"
  8448. },
  8449. "require-dev": {
  8450. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8451. },
  8452. "suggest": {
  8453. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8454. },
  8455. "type": "library",
  8456. "autoload": {
  8457. "psr-4": {
  8458. "voku\\": "src/voku/"
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Lars Moelleken",
  8468. "homepage": "https://www.moelleken.org/"
  8469. }
  8470. ],
  8471. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8472. "homepage": "https://github.com/voku/portable-ascii",
  8473. "keywords": [
  8474. "ascii",
  8475. "clean",
  8476. "php"
  8477. ],
  8478. "support": {
  8479. "issues": "https://github.com/voku/portable-ascii/issues",
  8480. "source": "https://github.com/voku/portable-ascii/tree/2.0.2"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://www.paypal.me/moelleken",
  8485. "type": "custom"
  8486. },
  8487. {
  8488. "url": "https://github.com/voku",
  8489. "type": "github"
  8490. },
  8491. {
  8492. "url": "https://opencollective.com/portable-ascii",
  8493. "type": "open_collective"
  8494. },
  8495. {
  8496. "url": "https://www.patreon.com/voku",
  8497. "type": "patreon"
  8498. },
  8499. {
  8500. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8501. "type": "tidelift"
  8502. }
  8503. ],
  8504. "time": "2024-11-21T00:49:12+00:00"
  8505. }
  8506. ],
  8507. "packages-dev": [
  8508. {
  8509. "name": "clue/ndjson-react",
  8510. "version": "v1.3.0",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/clue/reactphp-ndjson.git",
  8514. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8519. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8520. "shasum": "",
  8521. "mirrors": [
  8522. {
  8523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8524. "preferred": true
  8525. }
  8526. ]
  8527. },
  8528. "require": {
  8529. "php": ">=5.3",
  8530. "react/stream": "^1.2"
  8531. },
  8532. "require-dev": {
  8533. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8534. "react/event-loop": "^1.2"
  8535. },
  8536. "type": "library",
  8537. "autoload": {
  8538. "psr-4": {
  8539. "Clue\\React\\NDJson\\": "src/"
  8540. }
  8541. },
  8542. "notification-url": "https://packagist.org/downloads/",
  8543. "license": [
  8544. "MIT"
  8545. ],
  8546. "authors": [
  8547. {
  8548. "name": "Christian Lück",
  8549. "email": "christian@clue.engineering"
  8550. }
  8551. ],
  8552. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8553. "homepage": "https://github.com/clue/reactphp-ndjson",
  8554. "keywords": [
  8555. "NDJSON",
  8556. "json",
  8557. "jsonlines",
  8558. "newline",
  8559. "reactphp",
  8560. "streaming"
  8561. ],
  8562. "support": {
  8563. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8564. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8565. },
  8566. "funding": [
  8567. {
  8568. "url": "https://clue.engineering/support",
  8569. "type": "custom"
  8570. },
  8571. {
  8572. "url": "https://github.com/clue",
  8573. "type": "github"
  8574. }
  8575. ],
  8576. "time": "2022-12-23T10:58:28+00:00"
  8577. },
  8578. {
  8579. "name": "composer/pcre",
  8580. "version": "3.3.2",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/composer/pcre.git",
  8584. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8589. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8590. "shasum": "",
  8591. "mirrors": [
  8592. {
  8593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8594. "preferred": true
  8595. }
  8596. ]
  8597. },
  8598. "require": {
  8599. "php": "^7.4 || ^8.0"
  8600. },
  8601. "conflict": {
  8602. "phpstan/phpstan": "<1.11.10"
  8603. },
  8604. "require-dev": {
  8605. "phpstan/phpstan": "^1.12 || ^2",
  8606. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8607. "phpunit/phpunit": "^8 || ^9"
  8608. },
  8609. "type": "library",
  8610. "extra": {
  8611. "branch-alias": {
  8612. "dev-main": "3.x-dev"
  8613. },
  8614. "phpstan": {
  8615. "includes": [
  8616. "extension.neon"
  8617. ]
  8618. }
  8619. },
  8620. "autoload": {
  8621. "psr-4": {
  8622. "Composer\\Pcre\\": "src"
  8623. }
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "MIT"
  8628. ],
  8629. "authors": [
  8630. {
  8631. "name": "Jordi Boggiano",
  8632. "email": "j.boggiano@seld.be",
  8633. "homepage": "http://seld.be"
  8634. }
  8635. ],
  8636. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8637. "keywords": [
  8638. "PCRE",
  8639. "preg",
  8640. "regex",
  8641. "regular expression"
  8642. ],
  8643. "support": {
  8644. "issues": "https://github.com/composer/pcre/issues",
  8645. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8646. },
  8647. "funding": [
  8648. {
  8649. "url": "https://packagist.com",
  8650. "type": "custom"
  8651. },
  8652. {
  8653. "url": "https://github.com/composer",
  8654. "type": "github"
  8655. },
  8656. {
  8657. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8658. "type": "tidelift"
  8659. }
  8660. ],
  8661. "time": "2024-11-12T16:29:46+00:00"
  8662. },
  8663. {
  8664. "name": "composer/semver",
  8665. "version": "3.4.2",
  8666. "source": {
  8667. "type": "git",
  8668. "url": "https://github.com/composer/semver.git",
  8669. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  8670. },
  8671. "dist": {
  8672. "type": "zip",
  8673. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8674. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8675. "shasum": "",
  8676. "mirrors": [
  8677. {
  8678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8679. "preferred": true
  8680. }
  8681. ]
  8682. },
  8683. "require": {
  8684. "php": "^5.3.2 || ^7.0 || ^8.0"
  8685. },
  8686. "require-dev": {
  8687. "phpstan/phpstan": "^1.4",
  8688. "symfony/phpunit-bridge": "^4.2 || ^5"
  8689. },
  8690. "type": "library",
  8691. "extra": {
  8692. "branch-alias": {
  8693. "dev-main": "3.x-dev"
  8694. }
  8695. },
  8696. "autoload": {
  8697. "psr-4": {
  8698. "Composer\\Semver\\": "src"
  8699. }
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "MIT"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Nils Adermann",
  8708. "email": "naderman@naderman.de",
  8709. "homepage": "http://www.naderman.de"
  8710. },
  8711. {
  8712. "name": "Jordi Boggiano",
  8713. "email": "j.boggiano@seld.be",
  8714. "homepage": "http://seld.be"
  8715. },
  8716. {
  8717. "name": "Rob Bast",
  8718. "email": "rob.bast@gmail.com",
  8719. "homepage": "http://robbast.nl"
  8720. }
  8721. ],
  8722. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8723. "keywords": [
  8724. "semantic",
  8725. "semver",
  8726. "validation",
  8727. "versioning"
  8728. ],
  8729. "support": {
  8730. "irc": "ircs://irc.libera.chat:6697/composer",
  8731. "issues": "https://github.com/composer/semver/issues",
  8732. "source": "https://github.com/composer/semver/tree/3.4.2"
  8733. },
  8734. "funding": [
  8735. {
  8736. "url": "https://packagist.com",
  8737. "type": "custom"
  8738. },
  8739. {
  8740. "url": "https://github.com/composer",
  8741. "type": "github"
  8742. },
  8743. {
  8744. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8745. "type": "tidelift"
  8746. }
  8747. ],
  8748. "time": "2024-07-12T11:35:52+00:00"
  8749. },
  8750. {
  8751. "name": "composer/xdebug-handler",
  8752. "version": "3.0.3",
  8753. "source": {
  8754. "type": "git",
  8755. "url": "https://github.com/composer/xdebug-handler.git",
  8756. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  8757. },
  8758. "dist": {
  8759. "type": "zip",
  8760. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  8761. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  8762. "shasum": "",
  8763. "mirrors": [
  8764. {
  8765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8766. "preferred": true
  8767. }
  8768. ]
  8769. },
  8770. "require": {
  8771. "composer/pcre": "^1 || ^2 || ^3",
  8772. "php": "^7.2.5 || ^8.0",
  8773. "psr/log": "^1 || ^2 || ^3"
  8774. },
  8775. "require-dev": {
  8776. "phpstan/phpstan": "^1.0",
  8777. "phpstan/phpstan-strict-rules": "^1.1",
  8778. "symfony/phpunit-bridge": "^6.0"
  8779. },
  8780. "type": "library",
  8781. "autoload": {
  8782. "psr-4": {
  8783. "Composer\\XdebugHandler\\": "src"
  8784. }
  8785. },
  8786. "notification-url": "https://packagist.org/downloads/",
  8787. "license": [
  8788. "MIT"
  8789. ],
  8790. "authors": [
  8791. {
  8792. "name": "John Stevenson",
  8793. "email": "john-stevenson@blueyonder.co.uk"
  8794. }
  8795. ],
  8796. "description": "Restarts a process without Xdebug.",
  8797. "keywords": [
  8798. "Xdebug",
  8799. "performance"
  8800. ],
  8801. "support": {
  8802. "irc": "irc://irc.freenode.org/composer",
  8803. "issues": "https://github.com/composer/xdebug-handler/issues",
  8804. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  8805. },
  8806. "funding": [
  8807. {
  8808. "url": "https://packagist.com",
  8809. "type": "custom"
  8810. },
  8811. {
  8812. "url": "https://github.com/composer",
  8813. "type": "github"
  8814. },
  8815. {
  8816. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8817. "type": "tidelift"
  8818. }
  8819. ],
  8820. "time": "2022-02-25T21:32:43+00:00"
  8821. },
  8822. {
  8823. "name": "evenement/evenement",
  8824. "version": "v3.0.2",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/igorw/evenement.git",
  8828. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8833. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8834. "shasum": "",
  8835. "mirrors": [
  8836. {
  8837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8838. "preferred": true
  8839. }
  8840. ]
  8841. },
  8842. "require": {
  8843. "php": ">=7.0"
  8844. },
  8845. "require-dev": {
  8846. "phpunit/phpunit": "^9 || ^6"
  8847. },
  8848. "type": "library",
  8849. "autoload": {
  8850. "psr-4": {
  8851. "Evenement\\": "src/"
  8852. }
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "MIT"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Igor Wiedler",
  8861. "email": "igor@wiedler.ch"
  8862. }
  8863. ],
  8864. "description": "Événement is a very simple event dispatching library for PHP",
  8865. "keywords": [
  8866. "event-dispatcher",
  8867. "event-emitter"
  8868. ],
  8869. "support": {
  8870. "issues": "https://github.com/igorw/evenement/issues",
  8871. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8872. },
  8873. "time": "2023-08-08T05:53:35+00:00"
  8874. },
  8875. {
  8876. "name": "fidry/cpu-core-counter",
  8877. "version": "1.1.0",
  8878. "source": {
  8879. "type": "git",
  8880. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8881. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8882. },
  8883. "dist": {
  8884. "type": "zip",
  8885. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8886. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8887. "shasum": "",
  8888. "mirrors": [
  8889. {
  8890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8891. "preferred": true
  8892. }
  8893. ]
  8894. },
  8895. "require": {
  8896. "php": "^7.2 || ^8.0"
  8897. },
  8898. "require-dev": {
  8899. "fidry/makefile": "^0.2.0",
  8900. "fidry/php-cs-fixer-config": "^1.1.2",
  8901. "phpstan/extension-installer": "^1.2.0",
  8902. "phpstan/phpstan": "^1.9.2",
  8903. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8904. "phpstan/phpstan-phpunit": "^1.2.2",
  8905. "phpstan/phpstan-strict-rules": "^1.4.4",
  8906. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8907. "webmozarts/strict-phpunit": "^7.5"
  8908. },
  8909. "type": "library",
  8910. "autoload": {
  8911. "psr-4": {
  8912. "Fidry\\CpuCoreCounter\\": "src/"
  8913. }
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "MIT"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Théo FIDRY",
  8922. "email": "theo.fidry@gmail.com"
  8923. }
  8924. ],
  8925. "description": "Tiny utility to get the number of CPU cores.",
  8926. "keywords": [
  8927. "CPU",
  8928. "core"
  8929. ],
  8930. "support": {
  8931. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8932. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8933. },
  8934. "funding": [
  8935. {
  8936. "url": "https://github.com/theofidry",
  8937. "type": "github"
  8938. }
  8939. ],
  8940. "time": "2024-02-07T09:43:46+00:00"
  8941. },
  8942. {
  8943. "name": "friendsofphp/php-cs-fixer",
  8944. "version": "v3.64.0",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8948. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8953. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8954. "shasum": "",
  8955. "mirrors": [
  8956. {
  8957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8958. "preferred": true
  8959. }
  8960. ]
  8961. },
  8962. "require": {
  8963. "clue/ndjson-react": "^1.0",
  8964. "composer/semver": "^3.4",
  8965. "composer/xdebug-handler": "^3.0.3",
  8966. "ext-filter": "*",
  8967. "ext-json": "*",
  8968. "ext-tokenizer": "*",
  8969. "fidry/cpu-core-counter": "^1.0",
  8970. "php": "^7.4 || ^8.0",
  8971. "react/child-process": "^0.6.5",
  8972. "react/event-loop": "^1.0",
  8973. "react/promise": "^2.0 || ^3.0",
  8974. "react/socket": "^1.0",
  8975. "react/stream": "^1.0",
  8976. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8977. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8978. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8979. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8980. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8981. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8982. "symfony/polyfill-mbstring": "^1.28",
  8983. "symfony/polyfill-php80": "^1.28",
  8984. "symfony/polyfill-php81": "^1.28",
  8985. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8986. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8987. },
  8988. "require-dev": {
  8989. "facile-it/paraunit": "^1.3 || ^2.3",
  8990. "infection/infection": "^0.29.5",
  8991. "justinrainbow/json-schema": "^5.2",
  8992. "keradus/cli-executor": "^2.1",
  8993. "mikey179/vfsstream": "^1.6.11",
  8994. "php-coveralls/php-coveralls": "^2.7",
  8995. "php-cs-fixer/accessible-object": "^1.1",
  8996. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8997. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8998. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8999. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  9000. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  9001. },
  9002. "suggest": {
  9003. "ext-dom": "For handling output formats in XML",
  9004. "ext-mbstring": "For handling non-UTF8 characters."
  9005. },
  9006. "bin": [
  9007. "php-cs-fixer"
  9008. ],
  9009. "type": "application",
  9010. "autoload": {
  9011. "psr-4": {
  9012. "PhpCsFixer\\": "src/"
  9013. },
  9014. "exclude-from-classmap": [
  9015. "src/Fixer/Internal/*"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "MIT"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Fabien Potencier",
  9025. "email": "fabien@symfony.com"
  9026. },
  9027. {
  9028. "name": "Dariusz Rumiński",
  9029. "email": "dariusz.ruminski@gmail.com"
  9030. }
  9031. ],
  9032. "description": "A tool to automatically fix PHP code style",
  9033. "keywords": [
  9034. "Static code analysis",
  9035. "fixer",
  9036. "standards",
  9037. "static analysis"
  9038. ],
  9039. "support": {
  9040. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  9041. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  9042. },
  9043. "funding": [
  9044. {
  9045. "url": "https://github.com/keradus",
  9046. "type": "github"
  9047. }
  9048. ],
  9049. "time": "2024-08-30T23:09:38+00:00"
  9050. },
  9051. {
  9052. "name": "hamcrest/hamcrest-php",
  9053. "version": "v2.0.1",
  9054. "source": {
  9055. "type": "git",
  9056. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9057. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9058. },
  9059. "dist": {
  9060. "type": "zip",
  9061. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9062. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9063. "shasum": "",
  9064. "mirrors": [
  9065. {
  9066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9067. "preferred": true
  9068. }
  9069. ]
  9070. },
  9071. "require": {
  9072. "php": "^5.3|^7.0|^8.0"
  9073. },
  9074. "replace": {
  9075. "cordoval/hamcrest-php": "*",
  9076. "davedevelopment/hamcrest-php": "*",
  9077. "kodova/hamcrest-php": "*"
  9078. },
  9079. "require-dev": {
  9080. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9081. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9082. },
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-master": "2.1-dev"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "classmap": [
  9091. "hamcrest"
  9092. ]
  9093. },
  9094. "notification-url": "https://packagist.org/downloads/",
  9095. "license": [
  9096. "BSD-3-Clause"
  9097. ],
  9098. "description": "This is the PHP port of Hamcrest Matchers",
  9099. "keywords": [
  9100. "test"
  9101. ],
  9102. "support": {
  9103. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9104. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9105. },
  9106. "time": "2020-07-09T08:09:16+00:00"
  9107. },
  9108. {
  9109. "name": "hyperf/devtool",
  9110. "version": "v3.1.51",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/hyperf/devtool.git",
  9114. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  9119. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  9120. "shasum": "",
  9121. "mirrors": [
  9122. {
  9123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9124. "preferred": true
  9125. }
  9126. ]
  9127. },
  9128. "require": {
  9129. "hyperf/code-parser": "~3.1.0",
  9130. "hyperf/command": "~3.1.0",
  9131. "hyperf/contract": "~3.1.0",
  9132. "hyperf/di": "~3.1.0",
  9133. "hyperf/support": "~3.1.0",
  9134. "hyperf/utils": "~3.1.0",
  9135. "php": ">=8.1"
  9136. },
  9137. "type": "library",
  9138. "extra": {
  9139. "hyperf": {
  9140. "config": "Hyperf\\Devtool\\ConfigProvider"
  9141. },
  9142. "branch-alias": {
  9143. "dev-master": "3.1-dev"
  9144. }
  9145. },
  9146. "autoload": {
  9147. "psr-4": {
  9148. "Hyperf\\Devtool\\": "src/"
  9149. }
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "MIT"
  9154. ],
  9155. "description": "A Devtool for Hyperf.",
  9156. "homepage": "https://hyperf.io",
  9157. "keywords": [
  9158. "dev",
  9159. "devtool",
  9160. "hyperf",
  9161. "php",
  9162. "swoole"
  9163. ],
  9164. "support": {
  9165. "docs": "https://hyperf.wiki",
  9166. "issues": "https://github.com/hyperf/hyperf/issues",
  9167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  9168. "source": "https://github.com/hyperf/hyperf"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9173. "type": "custom"
  9174. },
  9175. {
  9176. "url": "https://opencollective.com/hyperf",
  9177. "type": "open_collective"
  9178. }
  9179. ],
  9180. "time": "2025-02-06T06:42:00+00:00"
  9181. },
  9182. {
  9183. "name": "hyperf/testing",
  9184. "version": "v3.1.55",
  9185. "source": {
  9186. "type": "git",
  9187. "url": "https://github.com/hyperf/testing.git",
  9188. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  9189. },
  9190. "dist": {
  9191. "type": "zip",
  9192. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  9193. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  9194. "shasum": "",
  9195. "mirrors": [
  9196. {
  9197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9198. "preferred": true
  9199. }
  9200. ]
  9201. },
  9202. "require": {
  9203. "hyperf/codec": "~3.1.0",
  9204. "hyperf/collection": "~3.1.0",
  9205. "hyperf/contract": "~3.1.0",
  9206. "hyperf/coroutine": "~3.1.0",
  9207. "hyperf/http-message": "~3.1.0",
  9208. "hyperf/http-server": "~3.1.0",
  9209. "hyperf/support": "~3.1.0",
  9210. "hyperf/utils": "~3.1.0",
  9211. "php": ">=8.1",
  9212. "phpunit/phpunit": "^10.0",
  9213. "psr/container": "^1.0 || ^2.0",
  9214. "symfony/http-foundation": "^5.4 || ^6.0"
  9215. },
  9216. "suggest": {
  9217. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9218. },
  9219. "bin": [
  9220. "co-phpunit"
  9221. ],
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-master": "3.1-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "psr-4": {
  9230. "Hyperf\\Testing\\": "src/"
  9231. }
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "MIT"
  9236. ],
  9237. "description": "Testing for hyperf",
  9238. "keywords": [
  9239. "dev",
  9240. "php",
  9241. "swoole",
  9242. "testing"
  9243. ],
  9244. "support": {
  9245. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  9246. },
  9247. "funding": [
  9248. {
  9249. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9250. "type": "custom"
  9251. },
  9252. {
  9253. "url": "https://opencollective.com/hyperf",
  9254. "type": "open_collective"
  9255. }
  9256. ],
  9257. "time": "2025-05-02T14:13:24+00:00"
  9258. },
  9259. {
  9260. "name": "hyperf/watcher",
  9261. "version": "v3.1.54",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/hyperf/watcher.git",
  9265. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  9270. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  9271. "shasum": "",
  9272. "mirrors": [
  9273. {
  9274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9275. "preferred": true
  9276. }
  9277. ]
  9278. },
  9279. "require": {
  9280. "ext-posix": "*",
  9281. "hyperf/codec": "~3.1.0",
  9282. "hyperf/command": "~3.1.0",
  9283. "hyperf/di": "~3.1.0",
  9284. "hyperf/framework": "~3.1.0",
  9285. "hyperf/support": "~3.1.0",
  9286. "php": ">=8.1"
  9287. },
  9288. "type": "library",
  9289. "extra": {
  9290. "hyperf": {
  9291. "config": "Hyperf\\Watcher\\ConfigProvider"
  9292. },
  9293. "branch-alias": {
  9294. "dev-master": "3.1-dev"
  9295. }
  9296. },
  9297. "autoload": {
  9298. "files": [
  9299. "src/Functions.php"
  9300. ],
  9301. "psr-4": {
  9302. "Hyperf\\Watcher\\": "src/"
  9303. }
  9304. },
  9305. "notification-url": "https://packagist.org/downloads/",
  9306. "license": [
  9307. "MIT"
  9308. ],
  9309. "description": "Hot reload watcher for Hyperf",
  9310. "keywords": [
  9311. "dev",
  9312. "hyperf",
  9313. "php"
  9314. ],
  9315. "support": {
  9316. "issues": "https://github.com/hyperf/watcher/issues",
  9317. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  9318. },
  9319. "funding": [
  9320. {
  9321. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9322. "type": "custom"
  9323. },
  9324. {
  9325. "url": "https://opencollective.com/hyperf",
  9326. "type": "open_collective"
  9327. }
  9328. ],
  9329. "time": "2025-04-26T13:02:01+00:00"
  9330. },
  9331. {
  9332. "name": "mockery/mockery",
  9333. "version": "1.6.12",
  9334. "source": {
  9335. "type": "git",
  9336. "url": "https://github.com/mockery/mockery.git",
  9337. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9338. },
  9339. "dist": {
  9340. "type": "zip",
  9341. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9342. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9343. "shasum": "",
  9344. "mirrors": [
  9345. {
  9346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9347. "preferred": true
  9348. }
  9349. ]
  9350. },
  9351. "require": {
  9352. "hamcrest/hamcrest-php": "^2.0.1",
  9353. "lib-pcre": ">=7.0",
  9354. "php": ">=7.3"
  9355. },
  9356. "conflict": {
  9357. "phpunit/phpunit": "<8.0"
  9358. },
  9359. "require-dev": {
  9360. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9361. "symplify/easy-coding-standard": "^12.1.14"
  9362. },
  9363. "type": "library",
  9364. "autoload": {
  9365. "files": [
  9366. "library/helpers.php",
  9367. "library/Mockery.php"
  9368. ],
  9369. "psr-4": {
  9370. "Mockery\\": "library/Mockery"
  9371. }
  9372. },
  9373. "notification-url": "https://packagist.org/downloads/",
  9374. "license": [
  9375. "BSD-3-Clause"
  9376. ],
  9377. "authors": [
  9378. {
  9379. "name": "Pádraic Brady",
  9380. "email": "padraic.brady@gmail.com",
  9381. "homepage": "https://github.com/padraic",
  9382. "role": "Author"
  9383. },
  9384. {
  9385. "name": "Dave Marshall",
  9386. "email": "dave.marshall@atstsolutions.co.uk",
  9387. "homepage": "https://davedevelopment.co.uk",
  9388. "role": "Developer"
  9389. },
  9390. {
  9391. "name": "Nathanael Esayeas",
  9392. "email": "nathanael.esayeas@protonmail.com",
  9393. "homepage": "https://github.com/ghostwriter",
  9394. "role": "Lead Developer"
  9395. }
  9396. ],
  9397. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9398. "homepage": "https://github.com/mockery/mockery",
  9399. "keywords": [
  9400. "BDD",
  9401. "TDD",
  9402. "library",
  9403. "mock",
  9404. "mock objects",
  9405. "mockery",
  9406. "stub",
  9407. "test",
  9408. "test double",
  9409. "testing"
  9410. ],
  9411. "support": {
  9412. "docs": "https://docs.mockery.io/",
  9413. "issues": "https://github.com/mockery/mockery/issues",
  9414. "rss": "https://github.com/mockery/mockery/releases.atom",
  9415. "security": "https://github.com/mockery/mockery/security/advisories",
  9416. "source": "https://github.com/mockery/mockery"
  9417. },
  9418. "time": "2024-05-16T03:13:13+00:00"
  9419. },
  9420. {
  9421. "name": "myclabs/deep-copy",
  9422. "version": "1.13.0",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/myclabs/DeepCopy.git",
  9426. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  9431. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  9432. "shasum": "",
  9433. "mirrors": [
  9434. {
  9435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9436. "preferred": true
  9437. }
  9438. ]
  9439. },
  9440. "require": {
  9441. "php": "^7.1 || ^8.0"
  9442. },
  9443. "conflict": {
  9444. "doctrine/collections": "<1.6.8",
  9445. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9446. },
  9447. "require-dev": {
  9448. "doctrine/collections": "^1.6.8",
  9449. "doctrine/common": "^2.13.3 || ^3.2.2",
  9450. "phpspec/prophecy": "^1.10",
  9451. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9452. },
  9453. "type": "library",
  9454. "autoload": {
  9455. "files": [
  9456. "src/DeepCopy/deep_copy.php"
  9457. ],
  9458. "psr-4": {
  9459. "DeepCopy\\": "src/DeepCopy/"
  9460. }
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "MIT"
  9465. ],
  9466. "description": "Create deep copies (clones) of your objects",
  9467. "keywords": [
  9468. "clone",
  9469. "copy",
  9470. "duplicate",
  9471. "object",
  9472. "object graph"
  9473. ],
  9474. "support": {
  9475. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9476. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  9477. },
  9478. "funding": [
  9479. {
  9480. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9481. "type": "tidelift"
  9482. }
  9483. ],
  9484. "time": "2025-02-12T12:17:51+00:00"
  9485. },
  9486. {
  9487. "name": "phar-io/manifest",
  9488. "version": "dev-master",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/phar-io/manifest.git",
  9492. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9497. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9498. "shasum": "",
  9499. "mirrors": [
  9500. {
  9501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9502. "preferred": true
  9503. }
  9504. ]
  9505. },
  9506. "require": {
  9507. "ext-dom": "*",
  9508. "ext-libxml": "*",
  9509. "ext-phar": "*",
  9510. "ext-xmlwriter": "*",
  9511. "phar-io/version": "^3.0.1",
  9512. "php": "^7.2 || ^8.0"
  9513. },
  9514. "default-branch": true,
  9515. "type": "library",
  9516. "extra": {
  9517. "branch-alias": {
  9518. "dev-master": "2.0.x-dev"
  9519. }
  9520. },
  9521. "autoload": {
  9522. "classmap": [
  9523. "src/"
  9524. ]
  9525. },
  9526. "notification-url": "https://packagist.org/downloads/",
  9527. "license": [
  9528. "BSD-3-Clause"
  9529. ],
  9530. "authors": [
  9531. {
  9532. "name": "Arne Blankerts",
  9533. "email": "arne@blankerts.de",
  9534. "role": "Developer"
  9535. },
  9536. {
  9537. "name": "Sebastian Heuer",
  9538. "email": "sebastian@phpeople.de",
  9539. "role": "Developer"
  9540. },
  9541. {
  9542. "name": "Sebastian Bergmann",
  9543. "email": "sebastian@phpunit.de",
  9544. "role": "Developer"
  9545. }
  9546. ],
  9547. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9548. "support": {
  9549. "issues": "https://github.com/phar-io/manifest/issues",
  9550. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9551. },
  9552. "funding": [
  9553. {
  9554. "url": "https://github.com/theseer",
  9555. "type": "github"
  9556. }
  9557. ],
  9558. "time": "2024-03-03T12:33:53+00:00"
  9559. },
  9560. {
  9561. "name": "phar-io/version",
  9562. "version": "3.2.1",
  9563. "source": {
  9564. "type": "git",
  9565. "url": "https://github.com/phar-io/version.git",
  9566. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9567. },
  9568. "dist": {
  9569. "type": "zip",
  9570. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9571. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9572. "shasum": "",
  9573. "mirrors": [
  9574. {
  9575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9576. "preferred": true
  9577. }
  9578. ]
  9579. },
  9580. "require": {
  9581. "php": "^7.2 || ^8.0"
  9582. },
  9583. "type": "library",
  9584. "autoload": {
  9585. "classmap": [
  9586. "src/"
  9587. ]
  9588. },
  9589. "notification-url": "https://packagist.org/downloads/",
  9590. "license": [
  9591. "BSD-3-Clause"
  9592. ],
  9593. "authors": [
  9594. {
  9595. "name": "Arne Blankerts",
  9596. "email": "arne@blankerts.de",
  9597. "role": "Developer"
  9598. },
  9599. {
  9600. "name": "Sebastian Heuer",
  9601. "email": "sebastian@phpeople.de",
  9602. "role": "Developer"
  9603. },
  9604. {
  9605. "name": "Sebastian Bergmann",
  9606. "email": "sebastian@phpunit.de",
  9607. "role": "Developer"
  9608. }
  9609. ],
  9610. "description": "Library for handling version information and constraints",
  9611. "support": {
  9612. "issues": "https://github.com/phar-io/version/issues",
  9613. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9614. },
  9615. "time": "2022-02-21T01:04:05+00:00"
  9616. },
  9617. {
  9618. "name": "phpstan/phpstan",
  9619. "version": "1.12.24",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/phpstan/phpstan.git",
  9623. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/338b92068f58d9f8035b76aed6cf2b9e5624c025",
  9628. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025",
  9629. "shasum": "",
  9630. "mirrors": [
  9631. {
  9632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9633. "preferred": true
  9634. }
  9635. ]
  9636. },
  9637. "require": {
  9638. "php": "^7.2|^8.0"
  9639. },
  9640. "conflict": {
  9641. "phpstan/phpstan-shim": "*"
  9642. },
  9643. "bin": [
  9644. "phpstan",
  9645. "phpstan.phar"
  9646. ],
  9647. "type": "library",
  9648. "autoload": {
  9649. "files": [
  9650. "bootstrap.php"
  9651. ]
  9652. },
  9653. "notification-url": "https://packagist.org/downloads/",
  9654. "license": [
  9655. "MIT"
  9656. ],
  9657. "description": "PHPStan - PHP Static Analysis Tool",
  9658. "keywords": [
  9659. "dev",
  9660. "static analysis"
  9661. ],
  9662. "support": {
  9663. "docs": "https://phpstan.org/user-guide/getting-started",
  9664. "forum": "https://github.com/phpstan/phpstan/discussions",
  9665. "issues": "https://github.com/phpstan/phpstan/issues",
  9666. "security": "https://github.com/phpstan/phpstan/security/policy",
  9667. "source": "https://github.com/phpstan/phpstan-src"
  9668. },
  9669. "funding": [
  9670. {
  9671. "url": "https://github.com/ondrejmirtes",
  9672. "type": "github"
  9673. },
  9674. {
  9675. "url": "https://github.com/phpstan",
  9676. "type": "github"
  9677. }
  9678. ],
  9679. "time": "2025-04-16T13:01:53+00:00"
  9680. },
  9681. {
  9682. "name": "phpunit/php-code-coverage",
  9683. "version": "10.1.16",
  9684. "source": {
  9685. "type": "git",
  9686. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9687. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9688. },
  9689. "dist": {
  9690. "type": "zip",
  9691. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9692. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9693. "shasum": "",
  9694. "mirrors": [
  9695. {
  9696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9697. "preferred": true
  9698. }
  9699. ]
  9700. },
  9701. "require": {
  9702. "ext-dom": "*",
  9703. "ext-libxml": "*",
  9704. "ext-xmlwriter": "*",
  9705. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9706. "php": ">=8.1",
  9707. "phpunit/php-file-iterator": "^4.1.0",
  9708. "phpunit/php-text-template": "^3.0.1",
  9709. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9710. "sebastian/complexity": "^3.2.0",
  9711. "sebastian/environment": "^6.1.0",
  9712. "sebastian/lines-of-code": "^2.0.2",
  9713. "sebastian/version": "^4.0.1",
  9714. "theseer/tokenizer": "^1.2.3"
  9715. },
  9716. "require-dev": {
  9717. "phpunit/phpunit": "^10.1"
  9718. },
  9719. "suggest": {
  9720. "ext-pcov": "PHP extension that provides line coverage",
  9721. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9722. },
  9723. "type": "library",
  9724. "extra": {
  9725. "branch-alias": {
  9726. "dev-main": "10.1.x-dev"
  9727. }
  9728. },
  9729. "autoload": {
  9730. "classmap": [
  9731. "src/"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "BSD-3-Clause"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Sebastian Bergmann",
  9741. "email": "sebastian@phpunit.de",
  9742. "role": "lead"
  9743. }
  9744. ],
  9745. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9746. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9747. "keywords": [
  9748. "coverage",
  9749. "testing",
  9750. "xunit"
  9751. ],
  9752. "support": {
  9753. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9754. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9755. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9756. },
  9757. "funding": [
  9758. {
  9759. "url": "https://github.com/sebastianbergmann",
  9760. "type": "github"
  9761. }
  9762. ],
  9763. "time": "2024-08-22T04:31:57+00:00"
  9764. },
  9765. {
  9766. "name": "phpunit/php-file-iterator",
  9767. "version": "4.1.0",
  9768. "source": {
  9769. "type": "git",
  9770. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9771. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9772. },
  9773. "dist": {
  9774. "type": "zip",
  9775. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9776. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9777. "shasum": "",
  9778. "mirrors": [
  9779. {
  9780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9781. "preferred": true
  9782. }
  9783. ]
  9784. },
  9785. "require": {
  9786. "php": ">=8.1"
  9787. },
  9788. "require-dev": {
  9789. "phpunit/phpunit": "^10.0"
  9790. },
  9791. "type": "library",
  9792. "extra": {
  9793. "branch-alias": {
  9794. "dev-main": "4.0-dev"
  9795. }
  9796. },
  9797. "autoload": {
  9798. "classmap": [
  9799. "src/"
  9800. ]
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "BSD-3-Clause"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Sebastian Bergmann",
  9809. "email": "sebastian@phpunit.de",
  9810. "role": "lead"
  9811. }
  9812. ],
  9813. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9814. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9815. "keywords": [
  9816. "filesystem",
  9817. "iterator"
  9818. ],
  9819. "support": {
  9820. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9821. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9822. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9823. },
  9824. "funding": [
  9825. {
  9826. "url": "https://github.com/sebastianbergmann",
  9827. "type": "github"
  9828. }
  9829. ],
  9830. "time": "2023-08-31T06:24:48+00:00"
  9831. },
  9832. {
  9833. "name": "phpunit/php-invoker",
  9834. "version": "4.0.0",
  9835. "source": {
  9836. "type": "git",
  9837. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9838. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9839. },
  9840. "dist": {
  9841. "type": "zip",
  9842. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9843. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9844. "shasum": "",
  9845. "mirrors": [
  9846. {
  9847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9848. "preferred": true
  9849. }
  9850. ]
  9851. },
  9852. "require": {
  9853. "php": ">=8.1"
  9854. },
  9855. "require-dev": {
  9856. "ext-pcntl": "*",
  9857. "phpunit/phpunit": "^10.0"
  9858. },
  9859. "suggest": {
  9860. "ext-pcntl": "*"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-main": "4.0-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "classmap": [
  9870. "src/"
  9871. ]
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Sebastian Bergmann",
  9880. "email": "sebastian@phpunit.de",
  9881. "role": "lead"
  9882. }
  9883. ],
  9884. "description": "Invoke callables with a timeout",
  9885. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9886. "keywords": [
  9887. "process"
  9888. ],
  9889. "support": {
  9890. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9891. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/sebastianbergmann",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2023-02-03T06:56:09+00:00"
  9900. },
  9901. {
  9902. "name": "phpunit/php-text-template",
  9903. "version": "3.0.1",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9907. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9912. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9913. "shasum": "",
  9914. "mirrors": [
  9915. {
  9916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9917. "preferred": true
  9918. }
  9919. ]
  9920. },
  9921. "require": {
  9922. "php": ">=8.1"
  9923. },
  9924. "require-dev": {
  9925. "phpunit/phpunit": "^10.0"
  9926. },
  9927. "type": "library",
  9928. "extra": {
  9929. "branch-alias": {
  9930. "dev-main": "3.0-dev"
  9931. }
  9932. },
  9933. "autoload": {
  9934. "classmap": [
  9935. "src/"
  9936. ]
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "BSD-3-Clause"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Sebastian Bergmann",
  9945. "email": "sebastian@phpunit.de",
  9946. "role": "lead"
  9947. }
  9948. ],
  9949. "description": "Simple template engine.",
  9950. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9951. "keywords": [
  9952. "template"
  9953. ],
  9954. "support": {
  9955. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9956. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9957. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9958. },
  9959. "funding": [
  9960. {
  9961. "url": "https://github.com/sebastianbergmann",
  9962. "type": "github"
  9963. }
  9964. ],
  9965. "time": "2023-08-31T14:07:24+00:00"
  9966. },
  9967. {
  9968. "name": "phpunit/php-timer",
  9969. "version": "6.0.0",
  9970. "source": {
  9971. "type": "git",
  9972. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9973. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9974. },
  9975. "dist": {
  9976. "type": "zip",
  9977. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9978. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9979. "shasum": "",
  9980. "mirrors": [
  9981. {
  9982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9983. "preferred": true
  9984. }
  9985. ]
  9986. },
  9987. "require": {
  9988. "php": ">=8.1"
  9989. },
  9990. "require-dev": {
  9991. "phpunit/phpunit": "^10.0"
  9992. },
  9993. "type": "library",
  9994. "extra": {
  9995. "branch-alias": {
  9996. "dev-main": "6.0-dev"
  9997. }
  9998. },
  9999. "autoload": {
  10000. "classmap": [
  10001. "src/"
  10002. ]
  10003. },
  10004. "notification-url": "https://packagist.org/downloads/",
  10005. "license": [
  10006. "BSD-3-Clause"
  10007. ],
  10008. "authors": [
  10009. {
  10010. "name": "Sebastian Bergmann",
  10011. "email": "sebastian@phpunit.de",
  10012. "role": "lead"
  10013. }
  10014. ],
  10015. "description": "Utility class for timing",
  10016. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10017. "keywords": [
  10018. "timer"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10022. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2023-02-03T06:57:52+00:00"
  10031. },
  10032. {
  10033. "name": "phpunit/phpunit",
  10034. "version": "10.5.45",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10038. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  10043. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  10044. "shasum": "",
  10045. "mirrors": [
  10046. {
  10047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10048. "preferred": true
  10049. }
  10050. ]
  10051. },
  10052. "require": {
  10053. "ext-dom": "*",
  10054. "ext-json": "*",
  10055. "ext-libxml": "*",
  10056. "ext-mbstring": "*",
  10057. "ext-xml": "*",
  10058. "ext-xmlwriter": "*",
  10059. "myclabs/deep-copy": "^1.12.1",
  10060. "phar-io/manifest": "^2.0.4",
  10061. "phar-io/version": "^3.2.1",
  10062. "php": ">=8.1",
  10063. "phpunit/php-code-coverage": "^10.1.16",
  10064. "phpunit/php-file-iterator": "^4.1.0",
  10065. "phpunit/php-invoker": "^4.0.0",
  10066. "phpunit/php-text-template": "^3.0.1",
  10067. "phpunit/php-timer": "^6.0.0",
  10068. "sebastian/cli-parser": "^2.0.1",
  10069. "sebastian/code-unit": "^2.0.0",
  10070. "sebastian/comparator": "^5.0.3",
  10071. "sebastian/diff": "^5.1.1",
  10072. "sebastian/environment": "^6.1.0",
  10073. "sebastian/exporter": "^5.1.2",
  10074. "sebastian/global-state": "^6.0.2",
  10075. "sebastian/object-enumerator": "^5.0.0",
  10076. "sebastian/recursion-context": "^5.0.0",
  10077. "sebastian/type": "^4.0.0",
  10078. "sebastian/version": "^4.0.1"
  10079. },
  10080. "suggest": {
  10081. "ext-soap": "To be able to generate mocks based on WSDL files"
  10082. },
  10083. "bin": [
  10084. "phpunit"
  10085. ],
  10086. "type": "library",
  10087. "extra": {
  10088. "branch-alias": {
  10089. "dev-main": "10.5-dev"
  10090. }
  10091. },
  10092. "autoload": {
  10093. "files": [
  10094. "src/Framework/Assert/Functions.php"
  10095. ],
  10096. "classmap": [
  10097. "src/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "BSD-3-Clause"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Sebastian Bergmann",
  10107. "email": "sebastian@phpunit.de",
  10108. "role": "lead"
  10109. }
  10110. ],
  10111. "description": "The PHP Unit Testing framework.",
  10112. "homepage": "https://phpunit.de/",
  10113. "keywords": [
  10114. "phpunit",
  10115. "testing",
  10116. "xunit"
  10117. ],
  10118. "support": {
  10119. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10120. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10121. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  10122. },
  10123. "funding": [
  10124. {
  10125. "url": "https://phpunit.de/sponsors.html",
  10126. "type": "custom"
  10127. },
  10128. {
  10129. "url": "https://github.com/sebastianbergmann",
  10130. "type": "github"
  10131. },
  10132. {
  10133. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10134. "type": "tidelift"
  10135. }
  10136. ],
  10137. "time": "2025-02-06T16:08:12+00:00"
  10138. },
  10139. {
  10140. "name": "react/cache",
  10141. "version": "v1.2.0",
  10142. "source": {
  10143. "type": "git",
  10144. "url": "https://github.com/reactphp/cache.git",
  10145. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  10146. },
  10147. "dist": {
  10148. "type": "zip",
  10149. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  10150. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  10151. "shasum": "",
  10152. "mirrors": [
  10153. {
  10154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10155. "preferred": true
  10156. }
  10157. ]
  10158. },
  10159. "require": {
  10160. "php": ">=5.3.0",
  10161. "react/promise": "^3.0 || ^2.0 || ^1.1"
  10162. },
  10163. "require-dev": {
  10164. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  10165. },
  10166. "type": "library",
  10167. "autoload": {
  10168. "psr-4": {
  10169. "React\\Cache\\": "src/"
  10170. }
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "MIT"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Christian Lück",
  10179. "email": "christian@clue.engineering",
  10180. "homepage": "https://clue.engineering/"
  10181. },
  10182. {
  10183. "name": "Cees-Jan Kiewiet",
  10184. "email": "reactphp@ceesjankiewiet.nl",
  10185. "homepage": "https://wyrihaximus.net/"
  10186. },
  10187. {
  10188. "name": "Jan Sorgalla",
  10189. "email": "jsorgalla@gmail.com",
  10190. "homepage": "https://sorgalla.com/"
  10191. },
  10192. {
  10193. "name": "Chris Boden",
  10194. "email": "cboden@gmail.com",
  10195. "homepage": "https://cboden.dev/"
  10196. }
  10197. ],
  10198. "description": "Async, Promise-based cache interface for ReactPHP",
  10199. "keywords": [
  10200. "cache",
  10201. "caching",
  10202. "promise",
  10203. "reactphp"
  10204. ],
  10205. "support": {
  10206. "issues": "https://github.com/reactphp/cache/issues",
  10207. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  10208. },
  10209. "funding": [
  10210. {
  10211. "url": "https://opencollective.com/reactphp",
  10212. "type": "open_collective"
  10213. }
  10214. ],
  10215. "time": "2022-11-30T15:59:55+00:00"
  10216. },
  10217. {
  10218. "name": "react/child-process",
  10219. "version": "v0.6.6",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/reactphp/child-process.git",
  10223. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  10228. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  10229. "shasum": "",
  10230. "mirrors": [
  10231. {
  10232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10233. "preferred": true
  10234. }
  10235. ]
  10236. },
  10237. "require": {
  10238. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10239. "php": ">=5.3.0",
  10240. "react/event-loop": "^1.2",
  10241. "react/stream": "^1.4"
  10242. },
  10243. "require-dev": {
  10244. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10245. "react/socket": "^1.16",
  10246. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  10247. },
  10248. "type": "library",
  10249. "autoload": {
  10250. "psr-4": {
  10251. "React\\ChildProcess\\": "src/"
  10252. }
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "MIT"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Christian Lück",
  10261. "email": "christian@clue.engineering",
  10262. "homepage": "https://clue.engineering/"
  10263. },
  10264. {
  10265. "name": "Cees-Jan Kiewiet",
  10266. "email": "reactphp@ceesjankiewiet.nl",
  10267. "homepage": "https://wyrihaximus.net/"
  10268. },
  10269. {
  10270. "name": "Jan Sorgalla",
  10271. "email": "jsorgalla@gmail.com",
  10272. "homepage": "https://sorgalla.com/"
  10273. },
  10274. {
  10275. "name": "Chris Boden",
  10276. "email": "cboden@gmail.com",
  10277. "homepage": "https://cboden.dev/"
  10278. }
  10279. ],
  10280. "description": "Event-driven library for executing child processes with ReactPHP.",
  10281. "keywords": [
  10282. "event-driven",
  10283. "process",
  10284. "reactphp"
  10285. ],
  10286. "support": {
  10287. "issues": "https://github.com/reactphp/child-process/issues",
  10288. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  10289. },
  10290. "funding": [
  10291. {
  10292. "url": "https://opencollective.com/reactphp",
  10293. "type": "open_collective"
  10294. }
  10295. ],
  10296. "time": "2025-01-01T16:37:48+00:00"
  10297. },
  10298. {
  10299. "name": "react/dns",
  10300. "version": "v1.12.0",
  10301. "source": {
  10302. "type": "git",
  10303. "url": "https://github.com/reactphp/dns.git",
  10304. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  10305. },
  10306. "dist": {
  10307. "type": "zip",
  10308. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  10309. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  10310. "shasum": "",
  10311. "mirrors": [
  10312. {
  10313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10314. "preferred": true
  10315. }
  10316. ]
  10317. },
  10318. "require": {
  10319. "php": ">=5.3.0",
  10320. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10321. "react/event-loop": "^1.2",
  10322. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  10323. },
  10324. "require-dev": {
  10325. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10326. "react/async": "^4 || ^3 || ^2",
  10327. "react/promise-timer": "^1.9"
  10328. },
  10329. "type": "library",
  10330. "autoload": {
  10331. "psr-4": {
  10332. "React\\Dns\\": "src/"
  10333. }
  10334. },
  10335. "notification-url": "https://packagist.org/downloads/",
  10336. "license": [
  10337. "MIT"
  10338. ],
  10339. "authors": [
  10340. {
  10341. "name": "Christian Lück",
  10342. "email": "christian@clue.engineering",
  10343. "homepage": "https://clue.engineering/"
  10344. },
  10345. {
  10346. "name": "Cees-Jan Kiewiet",
  10347. "email": "reactphp@ceesjankiewiet.nl",
  10348. "homepage": "https://wyrihaximus.net/"
  10349. },
  10350. {
  10351. "name": "Jan Sorgalla",
  10352. "email": "jsorgalla@gmail.com",
  10353. "homepage": "https://sorgalla.com/"
  10354. },
  10355. {
  10356. "name": "Chris Boden",
  10357. "email": "cboden@gmail.com",
  10358. "homepage": "https://cboden.dev/"
  10359. }
  10360. ],
  10361. "description": "Async DNS resolver for ReactPHP",
  10362. "keywords": [
  10363. "async",
  10364. "dns",
  10365. "dns-resolver",
  10366. "reactphp"
  10367. ],
  10368. "support": {
  10369. "issues": "https://github.com/reactphp/dns/issues",
  10370. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  10371. },
  10372. "funding": [
  10373. {
  10374. "url": "https://opencollective.com/reactphp",
  10375. "type": "open_collective"
  10376. }
  10377. ],
  10378. "time": "2023-11-29T12:41:06+00:00"
  10379. },
  10380. {
  10381. "name": "react/event-loop",
  10382. "version": "v1.5.0",
  10383. "source": {
  10384. "type": "git",
  10385. "url": "https://github.com/reactphp/event-loop.git",
  10386. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10387. },
  10388. "dist": {
  10389. "type": "zip",
  10390. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10391. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10392. "shasum": "",
  10393. "mirrors": [
  10394. {
  10395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10396. "preferred": true
  10397. }
  10398. ]
  10399. },
  10400. "require": {
  10401. "php": ">=5.3.0"
  10402. },
  10403. "require-dev": {
  10404. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10405. },
  10406. "suggest": {
  10407. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10408. },
  10409. "type": "library",
  10410. "autoload": {
  10411. "psr-4": {
  10412. "React\\EventLoop\\": "src/"
  10413. }
  10414. },
  10415. "notification-url": "https://packagist.org/downloads/",
  10416. "license": [
  10417. "MIT"
  10418. ],
  10419. "authors": [
  10420. {
  10421. "name": "Christian Lück",
  10422. "email": "christian@clue.engineering",
  10423. "homepage": "https://clue.engineering/"
  10424. },
  10425. {
  10426. "name": "Cees-Jan Kiewiet",
  10427. "email": "reactphp@ceesjankiewiet.nl",
  10428. "homepage": "https://wyrihaximus.net/"
  10429. },
  10430. {
  10431. "name": "Jan Sorgalla",
  10432. "email": "jsorgalla@gmail.com",
  10433. "homepage": "https://sorgalla.com/"
  10434. },
  10435. {
  10436. "name": "Chris Boden",
  10437. "email": "cboden@gmail.com",
  10438. "homepage": "https://cboden.dev/"
  10439. }
  10440. ],
  10441. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10442. "keywords": [
  10443. "asynchronous",
  10444. "event-loop"
  10445. ],
  10446. "support": {
  10447. "issues": "https://github.com/reactphp/event-loop/issues",
  10448. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10449. },
  10450. "funding": [
  10451. {
  10452. "url": "https://opencollective.com/reactphp",
  10453. "type": "open_collective"
  10454. }
  10455. ],
  10456. "time": "2023-11-13T13:48:05+00:00"
  10457. },
  10458. {
  10459. "name": "react/promise",
  10460. "version": "v3.1.0",
  10461. "source": {
  10462. "type": "git",
  10463. "url": "https://github.com/reactphp/promise.git",
  10464. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  10465. },
  10466. "dist": {
  10467. "type": "zip",
  10468. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  10469. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  10470. "shasum": "",
  10471. "mirrors": [
  10472. {
  10473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10474. "preferred": true
  10475. }
  10476. ]
  10477. },
  10478. "require": {
  10479. "php": ">=7.1.0"
  10480. },
  10481. "require-dev": {
  10482. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10483. "phpunit/phpunit": "^9.6 || ^7.5"
  10484. },
  10485. "type": "library",
  10486. "autoload": {
  10487. "files": [
  10488. "src/functions_include.php"
  10489. ],
  10490. "psr-4": {
  10491. "React\\Promise\\": "src/"
  10492. }
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "MIT"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Jan Sorgalla",
  10501. "email": "jsorgalla@gmail.com",
  10502. "homepage": "https://sorgalla.com/"
  10503. },
  10504. {
  10505. "name": "Christian Lück",
  10506. "email": "christian@clue.engineering",
  10507. "homepage": "https://clue.engineering/"
  10508. },
  10509. {
  10510. "name": "Cees-Jan Kiewiet",
  10511. "email": "reactphp@ceesjankiewiet.nl",
  10512. "homepage": "https://wyrihaximus.net/"
  10513. },
  10514. {
  10515. "name": "Chris Boden",
  10516. "email": "cboden@gmail.com",
  10517. "homepage": "https://cboden.dev/"
  10518. }
  10519. ],
  10520. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10521. "keywords": [
  10522. "promise",
  10523. "promises"
  10524. ],
  10525. "support": {
  10526. "issues": "https://github.com/reactphp/promise/issues",
  10527. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  10528. },
  10529. "funding": [
  10530. {
  10531. "url": "https://opencollective.com/reactphp",
  10532. "type": "open_collective"
  10533. }
  10534. ],
  10535. "time": "2023-11-16T16:21:57+00:00"
  10536. },
  10537. {
  10538. "name": "react/socket",
  10539. "version": "v1.15.0",
  10540. "source": {
  10541. "type": "git",
  10542. "url": "https://github.com/reactphp/socket.git",
  10543. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  10544. },
  10545. "dist": {
  10546. "type": "zip",
  10547. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  10548. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  10549. "shasum": "",
  10550. "mirrors": [
  10551. {
  10552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10553. "preferred": true
  10554. }
  10555. ]
  10556. },
  10557. "require": {
  10558. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10559. "php": ">=5.3.0",
  10560. "react/dns": "^1.11",
  10561. "react/event-loop": "^1.2",
  10562. "react/promise": "^3 || ^2.6 || ^1.2.1",
  10563. "react/stream": "^1.2"
  10564. },
  10565. "require-dev": {
  10566. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10567. "react/async": "^4 || ^3 || ^2",
  10568. "react/promise-stream": "^1.4",
  10569. "react/promise-timer": "^1.10"
  10570. },
  10571. "type": "library",
  10572. "autoload": {
  10573. "psr-4": {
  10574. "React\\Socket\\": "src/"
  10575. }
  10576. },
  10577. "notification-url": "https://packagist.org/downloads/",
  10578. "license": [
  10579. "MIT"
  10580. ],
  10581. "authors": [
  10582. {
  10583. "name": "Christian Lück",
  10584. "email": "christian@clue.engineering",
  10585. "homepage": "https://clue.engineering/"
  10586. },
  10587. {
  10588. "name": "Cees-Jan Kiewiet",
  10589. "email": "reactphp@ceesjankiewiet.nl",
  10590. "homepage": "https://wyrihaximus.net/"
  10591. },
  10592. {
  10593. "name": "Jan Sorgalla",
  10594. "email": "jsorgalla@gmail.com",
  10595. "homepage": "https://sorgalla.com/"
  10596. },
  10597. {
  10598. "name": "Chris Boden",
  10599. "email": "cboden@gmail.com",
  10600. "homepage": "https://cboden.dev/"
  10601. }
  10602. ],
  10603. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10604. "keywords": [
  10605. "Connection",
  10606. "Socket",
  10607. "async",
  10608. "reactphp",
  10609. "stream"
  10610. ],
  10611. "support": {
  10612. "issues": "https://github.com/reactphp/socket/issues",
  10613. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://opencollective.com/reactphp",
  10618. "type": "open_collective"
  10619. }
  10620. ],
  10621. "time": "2023-12-15T11:02:10+00:00"
  10622. },
  10623. {
  10624. "name": "react/stream",
  10625. "version": "1.x-dev",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/reactphp/stream.git",
  10629. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10634. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  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. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10645. "php": ">=5.3.8",
  10646. "react/event-loop": "^1.2"
  10647. },
  10648. "require-dev": {
  10649. "clue/stream-filter": "~1.2",
  10650. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10651. },
  10652. "type": "library",
  10653. "autoload": {
  10654. "psr-4": {
  10655. "React\\Stream\\": "src/"
  10656. }
  10657. },
  10658. "notification-url": "https://packagist.org/downloads/",
  10659. "license": [
  10660. "MIT"
  10661. ],
  10662. "authors": [
  10663. {
  10664. "name": "Christian Lück",
  10665. "email": "christian@clue.engineering",
  10666. "homepage": "https://clue.engineering/"
  10667. },
  10668. {
  10669. "name": "Cees-Jan Kiewiet",
  10670. "email": "reactphp@ceesjankiewiet.nl",
  10671. "homepage": "https://wyrihaximus.net/"
  10672. },
  10673. {
  10674. "name": "Jan Sorgalla",
  10675. "email": "jsorgalla@gmail.com",
  10676. "homepage": "https://sorgalla.com/"
  10677. },
  10678. {
  10679. "name": "Chris Boden",
  10680. "email": "cboden@gmail.com",
  10681. "homepage": "https://cboden.dev/"
  10682. }
  10683. ],
  10684. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10685. "keywords": [
  10686. "event-driven",
  10687. "io",
  10688. "non-blocking",
  10689. "pipe",
  10690. "reactphp",
  10691. "readable",
  10692. "stream",
  10693. "writable"
  10694. ],
  10695. "support": {
  10696. "issues": "https://github.com/reactphp/stream/issues",
  10697. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10698. },
  10699. "funding": [
  10700. {
  10701. "url": "https://opencollective.com/reactphp",
  10702. "type": "open_collective"
  10703. }
  10704. ],
  10705. "time": "2024-06-11T12:45:25+00:00"
  10706. },
  10707. {
  10708. "name": "sebastian/cli-parser",
  10709. "version": "2.0.1",
  10710. "source": {
  10711. "type": "git",
  10712. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10713. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10714. },
  10715. "dist": {
  10716. "type": "zip",
  10717. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10718. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10719. "shasum": "",
  10720. "mirrors": [
  10721. {
  10722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10723. "preferred": true
  10724. }
  10725. ]
  10726. },
  10727. "require": {
  10728. "php": ">=8.1"
  10729. },
  10730. "require-dev": {
  10731. "phpunit/phpunit": "^10.0"
  10732. },
  10733. "type": "library",
  10734. "extra": {
  10735. "branch-alias": {
  10736. "dev-main": "2.0-dev"
  10737. }
  10738. },
  10739. "autoload": {
  10740. "classmap": [
  10741. "src/"
  10742. ]
  10743. },
  10744. "notification-url": "https://packagist.org/downloads/",
  10745. "license": [
  10746. "BSD-3-Clause"
  10747. ],
  10748. "authors": [
  10749. {
  10750. "name": "Sebastian Bergmann",
  10751. "email": "sebastian@phpunit.de",
  10752. "role": "lead"
  10753. }
  10754. ],
  10755. "description": "Library for parsing CLI options",
  10756. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10757. "support": {
  10758. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10759. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10760. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10761. },
  10762. "funding": [
  10763. {
  10764. "url": "https://github.com/sebastianbergmann",
  10765. "type": "github"
  10766. }
  10767. ],
  10768. "time": "2024-03-02T07:12:49+00:00"
  10769. },
  10770. {
  10771. "name": "sebastian/code-unit",
  10772. "version": "2.0.0",
  10773. "source": {
  10774. "type": "git",
  10775. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10776. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10777. },
  10778. "dist": {
  10779. "type": "zip",
  10780. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10781. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10782. "shasum": "",
  10783. "mirrors": [
  10784. {
  10785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10786. "preferred": true
  10787. }
  10788. ]
  10789. },
  10790. "require": {
  10791. "php": ">=8.1"
  10792. },
  10793. "require-dev": {
  10794. "phpunit/phpunit": "^10.0"
  10795. },
  10796. "type": "library",
  10797. "extra": {
  10798. "branch-alias": {
  10799. "dev-main": "2.0-dev"
  10800. }
  10801. },
  10802. "autoload": {
  10803. "classmap": [
  10804. "src/"
  10805. ]
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "BSD-3-Clause"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Sebastian Bergmann",
  10814. "email": "sebastian@phpunit.de",
  10815. "role": "lead"
  10816. }
  10817. ],
  10818. "description": "Collection of value objects that represent the PHP code units",
  10819. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10820. "support": {
  10821. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10822. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10823. },
  10824. "funding": [
  10825. {
  10826. "url": "https://github.com/sebastianbergmann",
  10827. "type": "github"
  10828. }
  10829. ],
  10830. "time": "2023-02-03T06:58:43+00:00"
  10831. },
  10832. {
  10833. "name": "sebastian/code-unit-reverse-lookup",
  10834. "version": "3.0.0",
  10835. "source": {
  10836. "type": "git",
  10837. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10838. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10839. },
  10840. "dist": {
  10841. "type": "zip",
  10842. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10843. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10844. "shasum": "",
  10845. "mirrors": [
  10846. {
  10847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10848. "preferred": true
  10849. }
  10850. ]
  10851. },
  10852. "require": {
  10853. "php": ">=8.1"
  10854. },
  10855. "require-dev": {
  10856. "phpunit/phpunit": "^10.0"
  10857. },
  10858. "type": "library",
  10859. "extra": {
  10860. "branch-alias": {
  10861. "dev-main": "3.0-dev"
  10862. }
  10863. },
  10864. "autoload": {
  10865. "classmap": [
  10866. "src/"
  10867. ]
  10868. },
  10869. "notification-url": "https://packagist.org/downloads/",
  10870. "license": [
  10871. "BSD-3-Clause"
  10872. ],
  10873. "authors": [
  10874. {
  10875. "name": "Sebastian Bergmann",
  10876. "email": "sebastian@phpunit.de"
  10877. }
  10878. ],
  10879. "description": "Looks up which function or method a line of code belongs to",
  10880. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10881. "support": {
  10882. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10883. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10884. },
  10885. "funding": [
  10886. {
  10887. "url": "https://github.com/sebastianbergmann",
  10888. "type": "github"
  10889. }
  10890. ],
  10891. "time": "2023-02-03T06:59:15+00:00"
  10892. },
  10893. {
  10894. "name": "sebastian/comparator",
  10895. "version": "5.0.3",
  10896. "source": {
  10897. "type": "git",
  10898. "url": "https://github.com/sebastianbergmann/comparator.git",
  10899. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10900. },
  10901. "dist": {
  10902. "type": "zip",
  10903. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10904. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10905. "shasum": "",
  10906. "mirrors": [
  10907. {
  10908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10909. "preferred": true
  10910. }
  10911. ]
  10912. },
  10913. "require": {
  10914. "ext-dom": "*",
  10915. "ext-mbstring": "*",
  10916. "php": ">=8.1",
  10917. "sebastian/diff": "^5.0",
  10918. "sebastian/exporter": "^5.0"
  10919. },
  10920. "require-dev": {
  10921. "phpunit/phpunit": "^10.5"
  10922. },
  10923. "type": "library",
  10924. "extra": {
  10925. "branch-alias": {
  10926. "dev-main": "5.0-dev"
  10927. }
  10928. },
  10929. "autoload": {
  10930. "classmap": [
  10931. "src/"
  10932. ]
  10933. },
  10934. "notification-url": "https://packagist.org/downloads/",
  10935. "license": [
  10936. "BSD-3-Clause"
  10937. ],
  10938. "authors": [
  10939. {
  10940. "name": "Sebastian Bergmann",
  10941. "email": "sebastian@phpunit.de"
  10942. },
  10943. {
  10944. "name": "Jeff Welch",
  10945. "email": "whatthejeff@gmail.com"
  10946. },
  10947. {
  10948. "name": "Volker Dusch",
  10949. "email": "github@wallbash.com"
  10950. },
  10951. {
  10952. "name": "Bernhard Schussek",
  10953. "email": "bschussek@2bepublished.at"
  10954. }
  10955. ],
  10956. "description": "Provides the functionality to compare PHP values for equality",
  10957. "homepage": "https://github.com/sebastianbergmann/comparator",
  10958. "keywords": [
  10959. "comparator",
  10960. "compare",
  10961. "equality"
  10962. ],
  10963. "support": {
  10964. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10965. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10966. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10967. },
  10968. "funding": [
  10969. {
  10970. "url": "https://github.com/sebastianbergmann",
  10971. "type": "github"
  10972. }
  10973. ],
  10974. "time": "2024-10-18T14:56:07+00:00"
  10975. },
  10976. {
  10977. "name": "sebastian/complexity",
  10978. "version": "3.2.0",
  10979. "source": {
  10980. "type": "git",
  10981. "url": "https://github.com/sebastianbergmann/complexity.git",
  10982. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10983. },
  10984. "dist": {
  10985. "type": "zip",
  10986. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10987. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10988. "shasum": "",
  10989. "mirrors": [
  10990. {
  10991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10992. "preferred": true
  10993. }
  10994. ]
  10995. },
  10996. "require": {
  10997. "nikic/php-parser": "^4.18 || ^5.0",
  10998. "php": ">=8.1"
  10999. },
  11000. "require-dev": {
  11001. "phpunit/phpunit": "^10.0"
  11002. },
  11003. "type": "library",
  11004. "extra": {
  11005. "branch-alias": {
  11006. "dev-main": "3.2-dev"
  11007. }
  11008. },
  11009. "autoload": {
  11010. "classmap": [
  11011. "src/"
  11012. ]
  11013. },
  11014. "notification-url": "https://packagist.org/downloads/",
  11015. "license": [
  11016. "BSD-3-Clause"
  11017. ],
  11018. "authors": [
  11019. {
  11020. "name": "Sebastian Bergmann",
  11021. "email": "sebastian@phpunit.de",
  11022. "role": "lead"
  11023. }
  11024. ],
  11025. "description": "Library for calculating the complexity of PHP code units",
  11026. "homepage": "https://github.com/sebastianbergmann/complexity",
  11027. "support": {
  11028. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11029. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11030. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11031. },
  11032. "funding": [
  11033. {
  11034. "url": "https://github.com/sebastianbergmann",
  11035. "type": "github"
  11036. }
  11037. ],
  11038. "time": "2023-12-21T08:37:17+00:00"
  11039. },
  11040. {
  11041. "name": "sebastian/diff",
  11042. "version": "5.1.1",
  11043. "source": {
  11044. "type": "git",
  11045. "url": "https://github.com/sebastianbergmann/diff.git",
  11046. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11047. },
  11048. "dist": {
  11049. "type": "zip",
  11050. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11051. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11052. "shasum": "",
  11053. "mirrors": [
  11054. {
  11055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11056. "preferred": true
  11057. }
  11058. ]
  11059. },
  11060. "require": {
  11061. "php": ">=8.1"
  11062. },
  11063. "require-dev": {
  11064. "phpunit/phpunit": "^10.0",
  11065. "symfony/process": "^6.4"
  11066. },
  11067. "type": "library",
  11068. "extra": {
  11069. "branch-alias": {
  11070. "dev-main": "5.1-dev"
  11071. }
  11072. },
  11073. "autoload": {
  11074. "classmap": [
  11075. "src/"
  11076. ]
  11077. },
  11078. "notification-url": "https://packagist.org/downloads/",
  11079. "license": [
  11080. "BSD-3-Clause"
  11081. ],
  11082. "authors": [
  11083. {
  11084. "name": "Sebastian Bergmann",
  11085. "email": "sebastian@phpunit.de"
  11086. },
  11087. {
  11088. "name": "Kore Nordmann",
  11089. "email": "mail@kore-nordmann.de"
  11090. }
  11091. ],
  11092. "description": "Diff implementation",
  11093. "homepage": "https://github.com/sebastianbergmann/diff",
  11094. "keywords": [
  11095. "diff",
  11096. "udiff",
  11097. "unidiff",
  11098. "unified diff"
  11099. ],
  11100. "support": {
  11101. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11102. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11103. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11104. },
  11105. "funding": [
  11106. {
  11107. "url": "https://github.com/sebastianbergmann",
  11108. "type": "github"
  11109. }
  11110. ],
  11111. "time": "2024-03-02T07:15:17+00:00"
  11112. },
  11113. {
  11114. "name": "sebastian/environment",
  11115. "version": "6.1.0",
  11116. "source": {
  11117. "type": "git",
  11118. "url": "https://github.com/sebastianbergmann/environment.git",
  11119. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11120. },
  11121. "dist": {
  11122. "type": "zip",
  11123. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11124. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11125. "shasum": "",
  11126. "mirrors": [
  11127. {
  11128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11129. "preferred": true
  11130. }
  11131. ]
  11132. },
  11133. "require": {
  11134. "php": ">=8.1"
  11135. },
  11136. "require-dev": {
  11137. "phpunit/phpunit": "^10.0"
  11138. },
  11139. "suggest": {
  11140. "ext-posix": "*"
  11141. },
  11142. "type": "library",
  11143. "extra": {
  11144. "branch-alias": {
  11145. "dev-main": "6.1-dev"
  11146. }
  11147. },
  11148. "autoload": {
  11149. "classmap": [
  11150. "src/"
  11151. ]
  11152. },
  11153. "notification-url": "https://packagist.org/downloads/",
  11154. "license": [
  11155. "BSD-3-Clause"
  11156. ],
  11157. "authors": [
  11158. {
  11159. "name": "Sebastian Bergmann",
  11160. "email": "sebastian@phpunit.de"
  11161. }
  11162. ],
  11163. "description": "Provides functionality to handle HHVM/PHP environments",
  11164. "homepage": "https://github.com/sebastianbergmann/environment",
  11165. "keywords": [
  11166. "Xdebug",
  11167. "environment",
  11168. "hhvm"
  11169. ],
  11170. "support": {
  11171. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11172. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11173. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  11174. },
  11175. "funding": [
  11176. {
  11177. "url": "https://github.com/sebastianbergmann",
  11178. "type": "github"
  11179. }
  11180. ],
  11181. "time": "2024-03-23T08:47:14+00:00"
  11182. },
  11183. {
  11184. "name": "sebastian/exporter",
  11185. "version": "5.1.2",
  11186. "source": {
  11187. "type": "git",
  11188. "url": "https://github.com/sebastianbergmann/exporter.git",
  11189. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11190. },
  11191. "dist": {
  11192. "type": "zip",
  11193. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11194. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11195. "shasum": "",
  11196. "mirrors": [
  11197. {
  11198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11199. "preferred": true
  11200. }
  11201. ]
  11202. },
  11203. "require": {
  11204. "ext-mbstring": "*",
  11205. "php": ">=8.1",
  11206. "sebastian/recursion-context": "^5.0"
  11207. },
  11208. "require-dev": {
  11209. "phpunit/phpunit": "^10.0"
  11210. },
  11211. "type": "library",
  11212. "extra": {
  11213. "branch-alias": {
  11214. "dev-main": "5.1-dev"
  11215. }
  11216. },
  11217. "autoload": {
  11218. "classmap": [
  11219. "src/"
  11220. ]
  11221. },
  11222. "notification-url": "https://packagist.org/downloads/",
  11223. "license": [
  11224. "BSD-3-Clause"
  11225. ],
  11226. "authors": [
  11227. {
  11228. "name": "Sebastian Bergmann",
  11229. "email": "sebastian@phpunit.de"
  11230. },
  11231. {
  11232. "name": "Jeff Welch",
  11233. "email": "whatthejeff@gmail.com"
  11234. },
  11235. {
  11236. "name": "Volker Dusch",
  11237. "email": "github@wallbash.com"
  11238. },
  11239. {
  11240. "name": "Adam Harvey",
  11241. "email": "aharvey@php.net"
  11242. },
  11243. {
  11244. "name": "Bernhard Schussek",
  11245. "email": "bschussek@gmail.com"
  11246. }
  11247. ],
  11248. "description": "Provides the functionality to export PHP variables for visualization",
  11249. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11250. "keywords": [
  11251. "export",
  11252. "exporter"
  11253. ],
  11254. "support": {
  11255. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11256. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11257. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11258. },
  11259. "funding": [
  11260. {
  11261. "url": "https://github.com/sebastianbergmann",
  11262. "type": "github"
  11263. }
  11264. ],
  11265. "time": "2024-03-02T07:17:12+00:00"
  11266. },
  11267. {
  11268. "name": "sebastian/global-state",
  11269. "version": "6.0.2",
  11270. "source": {
  11271. "type": "git",
  11272. "url": "https://github.com/sebastianbergmann/global-state.git",
  11273. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11274. },
  11275. "dist": {
  11276. "type": "zip",
  11277. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11278. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11279. "shasum": "",
  11280. "mirrors": [
  11281. {
  11282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11283. "preferred": true
  11284. }
  11285. ]
  11286. },
  11287. "require": {
  11288. "php": ">=8.1",
  11289. "sebastian/object-reflector": "^3.0",
  11290. "sebastian/recursion-context": "^5.0"
  11291. },
  11292. "require-dev": {
  11293. "ext-dom": "*",
  11294. "phpunit/phpunit": "^10.0"
  11295. },
  11296. "type": "library",
  11297. "extra": {
  11298. "branch-alias": {
  11299. "dev-main": "6.0-dev"
  11300. }
  11301. },
  11302. "autoload": {
  11303. "classmap": [
  11304. "src/"
  11305. ]
  11306. },
  11307. "notification-url": "https://packagist.org/downloads/",
  11308. "license": [
  11309. "BSD-3-Clause"
  11310. ],
  11311. "authors": [
  11312. {
  11313. "name": "Sebastian Bergmann",
  11314. "email": "sebastian@phpunit.de"
  11315. }
  11316. ],
  11317. "description": "Snapshotting of global state",
  11318. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11319. "keywords": [
  11320. "global state"
  11321. ],
  11322. "support": {
  11323. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11324. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11325. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11326. },
  11327. "funding": [
  11328. {
  11329. "url": "https://github.com/sebastianbergmann",
  11330. "type": "github"
  11331. }
  11332. ],
  11333. "time": "2024-03-02T07:19:19+00:00"
  11334. },
  11335. {
  11336. "name": "sebastian/lines-of-code",
  11337. "version": "2.0.2",
  11338. "source": {
  11339. "type": "git",
  11340. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11341. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11342. },
  11343. "dist": {
  11344. "type": "zip",
  11345. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11346. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11347. "shasum": "",
  11348. "mirrors": [
  11349. {
  11350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11351. "preferred": true
  11352. }
  11353. ]
  11354. },
  11355. "require": {
  11356. "nikic/php-parser": "^4.18 || ^5.0",
  11357. "php": ">=8.1"
  11358. },
  11359. "require-dev": {
  11360. "phpunit/phpunit": "^10.0"
  11361. },
  11362. "type": "library",
  11363. "extra": {
  11364. "branch-alias": {
  11365. "dev-main": "2.0-dev"
  11366. }
  11367. },
  11368. "autoload": {
  11369. "classmap": [
  11370. "src/"
  11371. ]
  11372. },
  11373. "notification-url": "https://packagist.org/downloads/",
  11374. "license": [
  11375. "BSD-3-Clause"
  11376. ],
  11377. "authors": [
  11378. {
  11379. "name": "Sebastian Bergmann",
  11380. "email": "sebastian@phpunit.de",
  11381. "role": "lead"
  11382. }
  11383. ],
  11384. "description": "Library for counting the lines of code in PHP source code",
  11385. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11386. "support": {
  11387. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11388. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11389. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11390. },
  11391. "funding": [
  11392. {
  11393. "url": "https://github.com/sebastianbergmann",
  11394. "type": "github"
  11395. }
  11396. ],
  11397. "time": "2023-12-21T08:38:20+00:00"
  11398. },
  11399. {
  11400. "name": "sebastian/object-enumerator",
  11401. "version": "5.0.0",
  11402. "source": {
  11403. "type": "git",
  11404. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11405. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11406. },
  11407. "dist": {
  11408. "type": "zip",
  11409. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11410. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11411. "shasum": "",
  11412. "mirrors": [
  11413. {
  11414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11415. "preferred": true
  11416. }
  11417. ]
  11418. },
  11419. "require": {
  11420. "php": ">=8.1",
  11421. "sebastian/object-reflector": "^3.0",
  11422. "sebastian/recursion-context": "^5.0"
  11423. },
  11424. "require-dev": {
  11425. "phpunit/phpunit": "^10.0"
  11426. },
  11427. "type": "library",
  11428. "extra": {
  11429. "branch-alias": {
  11430. "dev-main": "5.0-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "classmap": [
  11435. "src/"
  11436. ]
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "authors": [
  11443. {
  11444. "name": "Sebastian Bergmann",
  11445. "email": "sebastian@phpunit.de"
  11446. }
  11447. ],
  11448. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11449. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11450. "support": {
  11451. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11452. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11453. },
  11454. "funding": [
  11455. {
  11456. "url": "https://github.com/sebastianbergmann",
  11457. "type": "github"
  11458. }
  11459. ],
  11460. "time": "2023-02-03T07:08:32+00:00"
  11461. },
  11462. {
  11463. "name": "sebastian/object-reflector",
  11464. "version": "3.0.0",
  11465. "source": {
  11466. "type": "git",
  11467. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11468. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11469. },
  11470. "dist": {
  11471. "type": "zip",
  11472. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11473. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11474. "shasum": "",
  11475. "mirrors": [
  11476. {
  11477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11478. "preferred": true
  11479. }
  11480. ]
  11481. },
  11482. "require": {
  11483. "php": ">=8.1"
  11484. },
  11485. "require-dev": {
  11486. "phpunit/phpunit": "^10.0"
  11487. },
  11488. "type": "library",
  11489. "extra": {
  11490. "branch-alias": {
  11491. "dev-main": "3.0-dev"
  11492. }
  11493. },
  11494. "autoload": {
  11495. "classmap": [
  11496. "src/"
  11497. ]
  11498. },
  11499. "notification-url": "https://packagist.org/downloads/",
  11500. "license": [
  11501. "BSD-3-Clause"
  11502. ],
  11503. "authors": [
  11504. {
  11505. "name": "Sebastian Bergmann",
  11506. "email": "sebastian@phpunit.de"
  11507. }
  11508. ],
  11509. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11510. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11511. "support": {
  11512. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11513. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11514. },
  11515. "funding": [
  11516. {
  11517. "url": "https://github.com/sebastianbergmann",
  11518. "type": "github"
  11519. }
  11520. ],
  11521. "time": "2023-02-03T07:06:18+00:00"
  11522. },
  11523. {
  11524. "name": "sebastian/recursion-context",
  11525. "version": "5.0.0",
  11526. "source": {
  11527. "type": "git",
  11528. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11529. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11530. },
  11531. "dist": {
  11532. "type": "zip",
  11533. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11534. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11535. "shasum": "",
  11536. "mirrors": [
  11537. {
  11538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11539. "preferred": true
  11540. }
  11541. ]
  11542. },
  11543. "require": {
  11544. "php": ">=8.1"
  11545. },
  11546. "require-dev": {
  11547. "phpunit/phpunit": "^10.0"
  11548. },
  11549. "type": "library",
  11550. "extra": {
  11551. "branch-alias": {
  11552. "dev-main": "5.0-dev"
  11553. }
  11554. },
  11555. "autoload": {
  11556. "classmap": [
  11557. "src/"
  11558. ]
  11559. },
  11560. "notification-url": "https://packagist.org/downloads/",
  11561. "license": [
  11562. "BSD-3-Clause"
  11563. ],
  11564. "authors": [
  11565. {
  11566. "name": "Sebastian Bergmann",
  11567. "email": "sebastian@phpunit.de"
  11568. },
  11569. {
  11570. "name": "Jeff Welch",
  11571. "email": "whatthejeff@gmail.com"
  11572. },
  11573. {
  11574. "name": "Adam Harvey",
  11575. "email": "aharvey@php.net"
  11576. }
  11577. ],
  11578. "description": "Provides functionality to recursively process PHP variables",
  11579. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11580. "support": {
  11581. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11582. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11583. },
  11584. "funding": [
  11585. {
  11586. "url": "https://github.com/sebastianbergmann",
  11587. "type": "github"
  11588. }
  11589. ],
  11590. "time": "2023-02-03T07:05:40+00:00"
  11591. },
  11592. {
  11593. "name": "sebastian/type",
  11594. "version": "4.0.0",
  11595. "source": {
  11596. "type": "git",
  11597. "url": "https://github.com/sebastianbergmann/type.git",
  11598. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11599. },
  11600. "dist": {
  11601. "type": "zip",
  11602. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11603. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11604. "shasum": "",
  11605. "mirrors": [
  11606. {
  11607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11608. "preferred": true
  11609. }
  11610. ]
  11611. },
  11612. "require": {
  11613. "php": ">=8.1"
  11614. },
  11615. "require-dev": {
  11616. "phpunit/phpunit": "^10.0"
  11617. },
  11618. "type": "library",
  11619. "extra": {
  11620. "branch-alias": {
  11621. "dev-main": "4.0-dev"
  11622. }
  11623. },
  11624. "autoload": {
  11625. "classmap": [
  11626. "src/"
  11627. ]
  11628. },
  11629. "notification-url": "https://packagist.org/downloads/",
  11630. "license": [
  11631. "BSD-3-Clause"
  11632. ],
  11633. "authors": [
  11634. {
  11635. "name": "Sebastian Bergmann",
  11636. "email": "sebastian@phpunit.de",
  11637. "role": "lead"
  11638. }
  11639. ],
  11640. "description": "Collection of value objects that represent the types of the PHP type system",
  11641. "homepage": "https://github.com/sebastianbergmann/type",
  11642. "support": {
  11643. "issues": "https://github.com/sebastianbergmann/type/issues",
  11644. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11645. },
  11646. "funding": [
  11647. {
  11648. "url": "https://github.com/sebastianbergmann",
  11649. "type": "github"
  11650. }
  11651. ],
  11652. "time": "2023-02-03T07:10:45+00:00"
  11653. },
  11654. {
  11655. "name": "sebastian/version",
  11656. "version": "4.0.1",
  11657. "source": {
  11658. "type": "git",
  11659. "url": "https://github.com/sebastianbergmann/version.git",
  11660. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11661. },
  11662. "dist": {
  11663. "type": "zip",
  11664. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11665. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11666. "shasum": "",
  11667. "mirrors": [
  11668. {
  11669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11670. "preferred": true
  11671. }
  11672. ]
  11673. },
  11674. "require": {
  11675. "php": ">=8.1"
  11676. },
  11677. "type": "library",
  11678. "extra": {
  11679. "branch-alias": {
  11680. "dev-main": "4.0-dev"
  11681. }
  11682. },
  11683. "autoload": {
  11684. "classmap": [
  11685. "src/"
  11686. ]
  11687. },
  11688. "notification-url": "https://packagist.org/downloads/",
  11689. "license": [
  11690. "BSD-3-Clause"
  11691. ],
  11692. "authors": [
  11693. {
  11694. "name": "Sebastian Bergmann",
  11695. "email": "sebastian@phpunit.de",
  11696. "role": "lead"
  11697. }
  11698. ],
  11699. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11700. "homepage": "https://github.com/sebastianbergmann/version",
  11701. "support": {
  11702. "issues": "https://github.com/sebastianbergmann/version/issues",
  11703. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11704. },
  11705. "funding": [
  11706. {
  11707. "url": "https://github.com/sebastianbergmann",
  11708. "type": "github"
  11709. }
  11710. ],
  11711. "time": "2023-02-07T11:34:05+00:00"
  11712. },
  11713. {
  11714. "name": "swoole/ide-helper",
  11715. "version": "5.1.7",
  11716. "source": {
  11717. "type": "git",
  11718. "url": "https://github.com/swoole/ide-helper.git",
  11719. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  11720. },
  11721. "dist": {
  11722. "type": "zip",
  11723. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11724. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11725. "shasum": "",
  11726. "mirrors": [
  11727. {
  11728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11729. "preferred": true
  11730. }
  11731. ]
  11732. },
  11733. "type": "library",
  11734. "notification-url": "https://packagist.org/downloads/",
  11735. "license": [
  11736. "Apache-2.0"
  11737. ],
  11738. "authors": [
  11739. {
  11740. "name": "Team Swoole",
  11741. "email": "team@swoole.com"
  11742. }
  11743. ],
  11744. "description": "IDE help files for Swoole.",
  11745. "support": {
  11746. "issues": "https://github.com/swoole/ide-helper/issues",
  11747. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  11748. },
  11749. "time": "2025-03-22T23:53:02+00:00"
  11750. },
  11751. {
  11752. "name": "symfony/event-dispatcher",
  11753. "version": "v6.4.13",
  11754. "source": {
  11755. "type": "git",
  11756. "url": "https://github.com/symfony/event-dispatcher.git",
  11757. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11758. },
  11759. "dist": {
  11760. "type": "zip",
  11761. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11762. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11763. "shasum": "",
  11764. "mirrors": [
  11765. {
  11766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11767. "preferred": true
  11768. }
  11769. ]
  11770. },
  11771. "require": {
  11772. "php": ">=8.1",
  11773. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11774. },
  11775. "conflict": {
  11776. "symfony/dependency-injection": "<5.4",
  11777. "symfony/service-contracts": "<2.5"
  11778. },
  11779. "provide": {
  11780. "psr/event-dispatcher-implementation": "1.0",
  11781. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11782. },
  11783. "require-dev": {
  11784. "psr/log": "^1|^2|^3",
  11785. "symfony/config": "^5.4|^6.0|^7.0",
  11786. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11787. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11788. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11789. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11790. "symfony/service-contracts": "^2.5|^3",
  11791. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11792. },
  11793. "type": "library",
  11794. "autoload": {
  11795. "psr-4": {
  11796. "Symfony\\Component\\EventDispatcher\\": ""
  11797. },
  11798. "exclude-from-classmap": [
  11799. "/Tests/"
  11800. ]
  11801. },
  11802. "notification-url": "https://packagist.org/downloads/",
  11803. "license": [
  11804. "MIT"
  11805. ],
  11806. "authors": [
  11807. {
  11808. "name": "Fabien Potencier",
  11809. "email": "fabien@symfony.com"
  11810. },
  11811. {
  11812. "name": "Symfony Community",
  11813. "homepage": "https://symfony.com/contributors"
  11814. }
  11815. ],
  11816. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11817. "homepage": "https://symfony.com",
  11818. "support": {
  11819. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11820. },
  11821. "funding": [
  11822. {
  11823. "url": "https://symfony.com/sponsor",
  11824. "type": "custom"
  11825. },
  11826. {
  11827. "url": "https://github.com/fabpot",
  11828. "type": "github"
  11829. },
  11830. {
  11831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11832. "type": "tidelift"
  11833. }
  11834. ],
  11835. "time": "2024-09-25T14:18:03+00:00"
  11836. },
  11837. {
  11838. "name": "symfony/event-dispatcher-contracts",
  11839. "version": "v3.5.1",
  11840. "source": {
  11841. "type": "git",
  11842. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11843. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11844. },
  11845. "dist": {
  11846. "type": "zip",
  11847. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11848. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11849. "shasum": "",
  11850. "mirrors": [
  11851. {
  11852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11853. "preferred": true
  11854. }
  11855. ]
  11856. },
  11857. "require": {
  11858. "php": ">=8.1",
  11859. "psr/event-dispatcher": "^1"
  11860. },
  11861. "type": "library",
  11862. "extra": {
  11863. "thanks": {
  11864. "url": "https://github.com/symfony/contracts",
  11865. "name": "symfony/contracts"
  11866. },
  11867. "branch-alias": {
  11868. "dev-main": "3.5-dev"
  11869. }
  11870. },
  11871. "autoload": {
  11872. "psr-4": {
  11873. "Symfony\\Contracts\\EventDispatcher\\": ""
  11874. }
  11875. },
  11876. "notification-url": "https://packagist.org/downloads/",
  11877. "license": [
  11878. "MIT"
  11879. ],
  11880. "authors": [
  11881. {
  11882. "name": "Nicolas Grekas",
  11883. "email": "p@tchwork.com"
  11884. },
  11885. {
  11886. "name": "Symfony Community",
  11887. "homepage": "https://symfony.com/contributors"
  11888. }
  11889. ],
  11890. "description": "Generic abstractions related to dispatching event",
  11891. "homepage": "https://symfony.com",
  11892. "keywords": [
  11893. "abstractions",
  11894. "contracts",
  11895. "decoupling",
  11896. "interfaces",
  11897. "interoperability",
  11898. "standards"
  11899. ],
  11900. "support": {
  11901. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11902. },
  11903. "funding": [
  11904. {
  11905. "url": "https://symfony.com/sponsor",
  11906. "type": "custom"
  11907. },
  11908. {
  11909. "url": "https://github.com/fabpot",
  11910. "type": "github"
  11911. },
  11912. {
  11913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11914. "type": "tidelift"
  11915. }
  11916. ],
  11917. "time": "2024-09-25T14:20:29+00:00"
  11918. },
  11919. {
  11920. "name": "symfony/filesystem",
  11921. "version": "v6.4.13",
  11922. "source": {
  11923. "type": "git",
  11924. "url": "https://github.com/symfony/filesystem.git",
  11925. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11926. },
  11927. "dist": {
  11928. "type": "zip",
  11929. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11930. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11931. "shasum": "",
  11932. "mirrors": [
  11933. {
  11934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11935. "preferred": true
  11936. }
  11937. ]
  11938. },
  11939. "require": {
  11940. "php": ">=8.1",
  11941. "symfony/polyfill-ctype": "~1.8",
  11942. "symfony/polyfill-mbstring": "~1.8"
  11943. },
  11944. "require-dev": {
  11945. "symfony/process": "^5.4|^6.4|^7.0"
  11946. },
  11947. "type": "library",
  11948. "autoload": {
  11949. "psr-4": {
  11950. "Symfony\\Component\\Filesystem\\": ""
  11951. },
  11952. "exclude-from-classmap": [
  11953. "/Tests/"
  11954. ]
  11955. },
  11956. "notification-url": "https://packagist.org/downloads/",
  11957. "license": [
  11958. "MIT"
  11959. ],
  11960. "authors": [
  11961. {
  11962. "name": "Fabien Potencier",
  11963. "email": "fabien@symfony.com"
  11964. },
  11965. {
  11966. "name": "Symfony Community",
  11967. "homepage": "https://symfony.com/contributors"
  11968. }
  11969. ],
  11970. "description": "Provides basic utilities for the filesystem",
  11971. "homepage": "https://symfony.com",
  11972. "support": {
  11973. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11974. },
  11975. "funding": [
  11976. {
  11977. "url": "https://symfony.com/sponsor",
  11978. "type": "custom"
  11979. },
  11980. {
  11981. "url": "https://github.com/fabpot",
  11982. "type": "github"
  11983. },
  11984. {
  11985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11986. "type": "tidelift"
  11987. }
  11988. ],
  11989. "time": "2024-10-25T15:07:50+00:00"
  11990. },
  11991. {
  11992. "name": "symfony/http-foundation",
  11993. "version": "v6.4.21",
  11994. "source": {
  11995. "type": "git",
  11996. "url": "https://github.com/symfony/http-foundation.git",
  11997. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  11998. },
  11999. "dist": {
  12000. "type": "zip",
  12001. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  12002. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  12003. "shasum": "",
  12004. "mirrors": [
  12005. {
  12006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12007. "preferred": true
  12008. }
  12009. ]
  12010. },
  12011. "require": {
  12012. "php": ">=8.1",
  12013. "symfony/deprecation-contracts": "^2.5|^3",
  12014. "symfony/polyfill-mbstring": "~1.1",
  12015. "symfony/polyfill-php83": "^1.27"
  12016. },
  12017. "conflict": {
  12018. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  12019. },
  12020. "require-dev": {
  12021. "doctrine/dbal": "^2.13.1|^3|^4",
  12022. "predis/predis": "^1.1|^2.0",
  12023. "symfony/cache": "^6.4.12|^7.1.5",
  12024. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12025. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12026. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  12027. "symfony/mime": "^5.4|^6.0|^7.0",
  12028. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  12029. },
  12030. "type": "library",
  12031. "autoload": {
  12032. "psr-4": {
  12033. "Symfony\\Component\\HttpFoundation\\": ""
  12034. },
  12035. "exclude-from-classmap": [
  12036. "/Tests/"
  12037. ]
  12038. },
  12039. "notification-url": "https://packagist.org/downloads/",
  12040. "license": [
  12041. "MIT"
  12042. ],
  12043. "authors": [
  12044. {
  12045. "name": "Fabien Potencier",
  12046. "email": "fabien@symfony.com"
  12047. },
  12048. {
  12049. "name": "Symfony Community",
  12050. "homepage": "https://symfony.com/contributors"
  12051. }
  12052. ],
  12053. "description": "Defines an object-oriented layer for the HTTP specification",
  12054. "homepage": "https://symfony.com",
  12055. "support": {
  12056. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  12057. },
  12058. "funding": [
  12059. {
  12060. "url": "https://symfony.com/sponsor",
  12061. "type": "custom"
  12062. },
  12063. {
  12064. "url": "https://github.com/fabpot",
  12065. "type": "github"
  12066. },
  12067. {
  12068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12069. "type": "tidelift"
  12070. }
  12071. ],
  12072. "time": "2025-04-27T13:27:38+00:00"
  12073. },
  12074. {
  12075. "name": "symfony/options-resolver",
  12076. "version": "v6.4.16",
  12077. "source": {
  12078. "type": "git",
  12079. "url": "https://github.com/symfony/options-resolver.git",
  12080. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  12081. },
  12082. "dist": {
  12083. "type": "zip",
  12084. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  12085. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  12086. "shasum": "",
  12087. "mirrors": [
  12088. {
  12089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12090. "preferred": true
  12091. }
  12092. ]
  12093. },
  12094. "require": {
  12095. "php": ">=8.1",
  12096. "symfony/deprecation-contracts": "^2.5|^3"
  12097. },
  12098. "type": "library",
  12099. "autoload": {
  12100. "psr-4": {
  12101. "Symfony\\Component\\OptionsResolver\\": ""
  12102. },
  12103. "exclude-from-classmap": [
  12104. "/Tests/"
  12105. ]
  12106. },
  12107. "notification-url": "https://packagist.org/downloads/",
  12108. "license": [
  12109. "MIT"
  12110. ],
  12111. "authors": [
  12112. {
  12113. "name": "Fabien Potencier",
  12114. "email": "fabien@symfony.com"
  12115. },
  12116. {
  12117. "name": "Symfony Community",
  12118. "homepage": "https://symfony.com/contributors"
  12119. }
  12120. ],
  12121. "description": "Provides an improved replacement for the array_replace PHP function",
  12122. "homepage": "https://symfony.com",
  12123. "keywords": [
  12124. "config",
  12125. "configuration",
  12126. "options"
  12127. ],
  12128. "support": {
  12129. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  12130. },
  12131. "funding": [
  12132. {
  12133. "url": "https://symfony.com/sponsor",
  12134. "type": "custom"
  12135. },
  12136. {
  12137. "url": "https://github.com/fabpot",
  12138. "type": "github"
  12139. },
  12140. {
  12141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12142. "type": "tidelift"
  12143. }
  12144. ],
  12145. "time": "2024-11-20T10:57:02+00:00"
  12146. },
  12147. {
  12148. "name": "symfony/polyfill-php81",
  12149. "version": "v1.31.0",
  12150. "source": {
  12151. "type": "git",
  12152. "url": "https://github.com/symfony/polyfill-php81.git",
  12153. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12154. },
  12155. "dist": {
  12156. "type": "zip",
  12157. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12158. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12159. "shasum": "",
  12160. "mirrors": [
  12161. {
  12162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12163. "preferred": true
  12164. }
  12165. ]
  12166. },
  12167. "require": {
  12168. "php": ">=7.2"
  12169. },
  12170. "type": "library",
  12171. "extra": {
  12172. "thanks": {
  12173. "url": "https://github.com/symfony/polyfill",
  12174. "name": "symfony/polyfill"
  12175. }
  12176. },
  12177. "autoload": {
  12178. "files": [
  12179. "bootstrap.php"
  12180. ],
  12181. "psr-4": {
  12182. "Symfony\\Polyfill\\Php81\\": ""
  12183. },
  12184. "classmap": [
  12185. "Resources/stubs"
  12186. ]
  12187. },
  12188. "notification-url": "https://packagist.org/downloads/",
  12189. "license": [
  12190. "MIT"
  12191. ],
  12192. "authors": [
  12193. {
  12194. "name": "Nicolas Grekas",
  12195. "email": "p@tchwork.com"
  12196. },
  12197. {
  12198. "name": "Symfony Community",
  12199. "homepage": "https://symfony.com/contributors"
  12200. }
  12201. ],
  12202. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12203. "homepage": "https://symfony.com",
  12204. "keywords": [
  12205. "compatibility",
  12206. "polyfill",
  12207. "portable",
  12208. "shim"
  12209. ],
  12210. "support": {
  12211. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  12212. },
  12213. "funding": [
  12214. {
  12215. "url": "https://symfony.com/sponsor",
  12216. "type": "custom"
  12217. },
  12218. {
  12219. "url": "https://github.com/fabpot",
  12220. "type": "github"
  12221. },
  12222. {
  12223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12224. "type": "tidelift"
  12225. }
  12226. ],
  12227. "time": "2024-09-09T11:45:10+00:00"
  12228. },
  12229. {
  12230. "name": "symfony/polyfill-php83",
  12231. "version": "v1.31.0",
  12232. "source": {
  12233. "type": "git",
  12234. "url": "https://github.com/symfony/polyfill-php83.git",
  12235. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12236. },
  12237. "dist": {
  12238. "type": "zip",
  12239. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12240. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12241. "shasum": "",
  12242. "mirrors": [
  12243. {
  12244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12245. "preferred": true
  12246. }
  12247. ]
  12248. },
  12249. "require": {
  12250. "php": ">=7.2"
  12251. },
  12252. "type": "library",
  12253. "extra": {
  12254. "thanks": {
  12255. "url": "https://github.com/symfony/polyfill",
  12256. "name": "symfony/polyfill"
  12257. }
  12258. },
  12259. "autoload": {
  12260. "files": [
  12261. "bootstrap.php"
  12262. ],
  12263. "psr-4": {
  12264. "Symfony\\Polyfill\\Php83\\": ""
  12265. },
  12266. "classmap": [
  12267. "Resources/stubs"
  12268. ]
  12269. },
  12270. "notification-url": "https://packagist.org/downloads/",
  12271. "license": [
  12272. "MIT"
  12273. ],
  12274. "authors": [
  12275. {
  12276. "name": "Nicolas Grekas",
  12277. "email": "p@tchwork.com"
  12278. },
  12279. {
  12280. "name": "Symfony Community",
  12281. "homepage": "https://symfony.com/contributors"
  12282. }
  12283. ],
  12284. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12285. "homepage": "https://symfony.com",
  12286. "keywords": [
  12287. "compatibility",
  12288. "polyfill",
  12289. "portable",
  12290. "shim"
  12291. ],
  12292. "support": {
  12293. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12294. },
  12295. "funding": [
  12296. {
  12297. "url": "https://symfony.com/sponsor",
  12298. "type": "custom"
  12299. },
  12300. {
  12301. "url": "https://github.com/fabpot",
  12302. "type": "github"
  12303. },
  12304. {
  12305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12306. "type": "tidelift"
  12307. }
  12308. ],
  12309. "time": "2024-09-09T11:45:10+00:00"
  12310. },
  12311. {
  12312. "name": "symfony/process",
  12313. "version": "v6.4.20",
  12314. "source": {
  12315. "type": "git",
  12316. "url": "https://github.com/symfony/process.git",
  12317. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  12318. },
  12319. "dist": {
  12320. "type": "zip",
  12321. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  12322. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  12323. "shasum": "",
  12324. "mirrors": [
  12325. {
  12326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12327. "preferred": true
  12328. }
  12329. ]
  12330. },
  12331. "require": {
  12332. "php": ">=8.1"
  12333. },
  12334. "type": "library",
  12335. "autoload": {
  12336. "psr-4": {
  12337. "Symfony\\Component\\Process\\": ""
  12338. },
  12339. "exclude-from-classmap": [
  12340. "/Tests/"
  12341. ]
  12342. },
  12343. "notification-url": "https://packagist.org/downloads/",
  12344. "license": [
  12345. "MIT"
  12346. ],
  12347. "authors": [
  12348. {
  12349. "name": "Fabien Potencier",
  12350. "email": "fabien@symfony.com"
  12351. },
  12352. {
  12353. "name": "Symfony Community",
  12354. "homepage": "https://symfony.com/contributors"
  12355. }
  12356. ],
  12357. "description": "Executes commands in sub-processes",
  12358. "homepage": "https://symfony.com",
  12359. "support": {
  12360. "source": "https://github.com/symfony/process/tree/v6.4.20"
  12361. },
  12362. "funding": [
  12363. {
  12364. "url": "https://symfony.com/sponsor",
  12365. "type": "custom"
  12366. },
  12367. {
  12368. "url": "https://github.com/fabpot",
  12369. "type": "github"
  12370. },
  12371. {
  12372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12373. "type": "tidelift"
  12374. }
  12375. ],
  12376. "time": "2025-03-10T17:11:00+00:00"
  12377. },
  12378. {
  12379. "name": "symfony/stopwatch",
  12380. "version": "v6.4.19",
  12381. "source": {
  12382. "type": "git",
  12383. "url": "https://github.com/symfony/stopwatch.git",
  12384. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  12385. },
  12386. "dist": {
  12387. "type": "zip",
  12388. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  12389. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  12390. "shasum": "",
  12391. "mirrors": [
  12392. {
  12393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12394. "preferred": true
  12395. }
  12396. ]
  12397. },
  12398. "require": {
  12399. "php": ">=8.1",
  12400. "symfony/service-contracts": "^2.5|^3"
  12401. },
  12402. "type": "library",
  12403. "autoload": {
  12404. "psr-4": {
  12405. "Symfony\\Component\\Stopwatch\\": ""
  12406. },
  12407. "exclude-from-classmap": [
  12408. "/Tests/"
  12409. ]
  12410. },
  12411. "notification-url": "https://packagist.org/downloads/",
  12412. "license": [
  12413. "MIT"
  12414. ],
  12415. "authors": [
  12416. {
  12417. "name": "Fabien Potencier",
  12418. "email": "fabien@symfony.com"
  12419. },
  12420. {
  12421. "name": "Symfony Community",
  12422. "homepage": "https://symfony.com/contributors"
  12423. }
  12424. ],
  12425. "description": "Provides a way to profile code",
  12426. "homepage": "https://symfony.com",
  12427. "support": {
  12428. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  12429. },
  12430. "funding": [
  12431. {
  12432. "url": "https://symfony.com/sponsor",
  12433. "type": "custom"
  12434. },
  12435. {
  12436. "url": "https://github.com/fabpot",
  12437. "type": "github"
  12438. },
  12439. {
  12440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12441. "type": "tidelift"
  12442. }
  12443. ],
  12444. "time": "2025-02-21T10:06:30+00:00"
  12445. },
  12446. {
  12447. "name": "theseer/tokenizer",
  12448. "version": "1.2.3",
  12449. "source": {
  12450. "type": "git",
  12451. "url": "https://github.com/theseer/tokenizer.git",
  12452. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12453. },
  12454. "dist": {
  12455. "type": "zip",
  12456. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12457. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12458. "shasum": "",
  12459. "mirrors": [
  12460. {
  12461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12462. "preferred": true
  12463. }
  12464. ]
  12465. },
  12466. "require": {
  12467. "ext-dom": "*",
  12468. "ext-tokenizer": "*",
  12469. "ext-xmlwriter": "*",
  12470. "php": "^7.2 || ^8.0"
  12471. },
  12472. "type": "library",
  12473. "autoload": {
  12474. "classmap": [
  12475. "src/"
  12476. ]
  12477. },
  12478. "notification-url": "https://packagist.org/downloads/",
  12479. "license": [
  12480. "BSD-3-Clause"
  12481. ],
  12482. "authors": [
  12483. {
  12484. "name": "Arne Blankerts",
  12485. "email": "arne@blankerts.de",
  12486. "role": "Developer"
  12487. }
  12488. ],
  12489. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12490. "support": {
  12491. "issues": "https://github.com/theseer/tokenizer/issues",
  12492. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12493. },
  12494. "funding": [
  12495. {
  12496. "url": "https://github.com/theseer",
  12497. "type": "github"
  12498. }
  12499. ],
  12500. "time": "2024-03-03T12:36:25+00:00"
  12501. }
  12502. ],
  12503. "aliases": [],
  12504. "minimum-stability": "dev",
  12505. "stability-flags": {},
  12506. "prefer-stable": true,
  12507. "prefer-lowest": false,
  12508. "platform": {
  12509. "php": ">=8.1"
  12510. },
  12511. "platform-dev": {},
  12512. "plugin-api-version": "2.6.0"
  12513. }