composer.lock 429 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093
  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": "a5f35ff942b3fe4f147979a94a5ee5ee",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.4",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  224. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9 || ^12",
  232. "phpstan/phpstan": "1.4.10 || 2.0.3",
  233. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psr/log": "^1 || ^2 || ^3"
  236. },
  237. "suggest": {
  238. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Deprecations\\": "src"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  251. "homepage": "https://www.doctrine-project.org/",
  252. "support": {
  253. "issues": "https://github.com/doctrine/deprecations/issues",
  254. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  255. },
  256. "time": "2024-12-07T21:18:45+00:00"
  257. },
  258. {
  259. "name": "doctrine/inflector",
  260. "version": "2.0.10",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/inflector.git",
  264. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  269. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": "^7.2 || ^8.0"
  274. },
  275. "require-dev": {
  276. "doctrine/coding-standard": "^11.0",
  277. "phpstan/phpstan": "^1.8",
  278. "phpstan/phpstan-phpunit": "^1.1",
  279. "phpstan/phpstan-strict-rules": "^1.3",
  280. "phpunit/phpunit": "^8.5 || ^9.5",
  281. "vimeo/psalm": "^4.25 || ^5.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  317. "keywords": [
  318. "inflection",
  319. "inflector",
  320. "lowercase",
  321. "manipulation",
  322. "php",
  323. "plural",
  324. "singular",
  325. "strings",
  326. "uppercase",
  327. "words"
  328. ],
  329. "support": {
  330. "issues": "https://github.com/doctrine/inflector/issues",
  331. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://www.doctrine-project.org/sponsorship.html",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://www.patreon.com/phpdoctrine",
  340. "type": "patreon"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2024-02-18T20:23:39+00:00"
  348. },
  349. {
  350. "name": "doctrine/instantiator",
  351. "version": "1.5.0",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/instantiator.git",
  355. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  360. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^9 || ^11",
  368. "ext-pdo": "*",
  369. "ext-phar": "*",
  370. "phpbench/phpbench": "^0.16 || ^1",
  371. "phpstan/phpstan": "^1.4",
  372. "phpstan/phpstan-phpunit": "^1",
  373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  374. "vimeo/psalm": "^4.30 || ^5.4"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Marco Pivetta",
  389. "email": "ocramius@gmail.com",
  390. "homepage": "https://ocramius.github.io/"
  391. }
  392. ],
  393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  395. "keywords": [
  396. "constructor",
  397. "instantiate"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/instantiator/issues",
  401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-30T00:15:36+00:00"
  418. },
  419. {
  420. "name": "doctrine/lexer",
  421. "version": "2.1.1",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/doctrine/lexer.git",
  425. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  430. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "doctrine/deprecations": "^1.0",
  435. "php": "^7.1 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^9 || ^12",
  439. "phpstan/phpstan": "^1.3",
  440. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  441. "psalm/plugin-phpunit": "^0.18.3",
  442. "vimeo/psalm": "^4.11 || ^5.21"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Doctrine\\Common\\Lexer\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Guilherme Blanco",
  457. "email": "guilhermeblanco@gmail.com"
  458. },
  459. {
  460. "name": "Roman Borschel",
  461. "email": "roman@code-factory.org"
  462. },
  463. {
  464. "name": "Johannes Schmitt",
  465. "email": "schmittjoh@gmail.com"
  466. }
  467. ],
  468. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  469. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  470. "keywords": [
  471. "annotations",
  472. "docblock",
  473. "lexer",
  474. "parser",
  475. "php"
  476. ],
  477. "support": {
  478. "issues": "https://github.com/doctrine/lexer/issues",
  479. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  480. },
  481. "funding": [
  482. {
  483. "url": "https://www.doctrine-project.org/sponsorship.html",
  484. "type": "custom"
  485. },
  486. {
  487. "url": "https://www.patreon.com/phpdoctrine",
  488. "type": "patreon"
  489. },
  490. {
  491. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  492. "type": "tidelift"
  493. }
  494. ],
  495. "time": "2024-02-05T11:35:39+00:00"
  496. },
  497. {
  498. "name": "easyswoole/spl",
  499. "version": "2.1.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/easy-swoole/spl.git",
  503. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  508. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-json": "*",
  514. "ext-simplexml": "*",
  515. "php": ">=8.1.0"
  516. },
  517. "require-dev": {
  518. "easyswoole/phpunit": "^1.0",
  519. "easyswoole/swoole-ide-helper": "^1.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "EasySwoole\\Spl\\": "src/",
  525. "EasySwoole\\Spl\\Test\\": "test/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "authors": [
  533. {
  534. "name": "YF",
  535. "email": "291323003@qq.com"
  536. }
  537. ],
  538. "description": "php stander lib",
  539. "homepage": "https://www.easyswoole.com/",
  540. "keywords": [
  541. "async",
  542. "easyswoole",
  543. "framework",
  544. "swoole"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/easy-swoole/spl/issues",
  548. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  549. },
  550. "time": "2024-07-09T14:44:25+00:00"
  551. },
  552. {
  553. "name": "easyswoole/verifycode",
  554. "version": "3.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/easy-swoole/verify-code.git",
  558. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  563. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "easyswoole/spl": "^2.0",
  568. "ext-gd": "*",
  569. "php": ">=8.1"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "EasySwoole\\VerifyCode\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. },
  586. {
  587. "name": "evalor",
  588. "email": "mipone@foxmail.com"
  589. }
  590. ],
  591. "support": {
  592. "issues": "https://github.com/easy-swoole/verify-code/issues",
  593. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  594. },
  595. "time": "2023-09-06T06:45:56+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "3.2.6",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  608. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "doctrine/lexer": "^1.2|^2",
  613. "php": ">=7.2",
  614. "symfony/polyfill-intl-idn": "^1.15"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "^8.5.8|^9.3.3",
  618. "vimeo/psalm": "^4"
  619. },
  620. "suggest": {
  621. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "3.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Egulias\\EmailValidator\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Eduardo Gulias Davis"
  641. }
  642. ],
  643. "description": "A library for validating emails against several RFCs",
  644. "homepage": "https://github.com/egulias/EmailValidator",
  645. "keywords": [
  646. "email",
  647. "emailvalidation",
  648. "emailvalidator",
  649. "validation",
  650. "validator"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/egulias/EmailValidator/issues",
  654. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/egulias",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2023-06-01T07:04:22+00:00"
  663. },
  664. {
  665. "name": "fig/http-message-util",
  666. "version": "1.1.5",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/php-fig/http-message-util.git",
  670. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  675. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": "^5.3 || ^7.0 || ^8.0"
  680. },
  681. "suggest": {
  682. "psr/http-message": "The package containing the PSR-7 interfaces"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "1.1.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Fig\\Http\\Message\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "PHP-FIG",
  702. "homepage": "https://www.php-fig.org/"
  703. }
  704. ],
  705. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  706. "keywords": [
  707. "http",
  708. "http-message",
  709. "psr",
  710. "psr-7",
  711. "request",
  712. "response"
  713. ],
  714. "support": {
  715. "issues": "https://github.com/php-fig/http-message-util/issues",
  716. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  717. },
  718. "time": "2020-11-24T22:02:12+00:00"
  719. },
  720. {
  721. "name": "friendsofhyperf/openai-client",
  722. "version": "v3.1.48",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/friendsofhyperf/openai-client.git",
  726. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/friendsofhyperf/openai-client/zipball/bf889a83edefb712381f53967c0ab71d7df5ff01",
  731. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "hyperf/config": "~3.1.0",
  736. "hyperf/di": "~3.1.0",
  737. "hyperf/guzzle": "~3.1.0",
  738. "openai-php/client": "^0.10.0",
  739. "php": ">=8.1"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "hyperf": {
  744. "config": "FriendsOfHyperf\\OpenAi\\ConfigProvider"
  745. },
  746. "branch-alias": {
  747. "dev-main": "3.1-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "FriendsOfHyperf\\OpenAi\\": "src/"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "huangdijia",
  762. "email": "huangdijia@gmail.com"
  763. }
  764. ],
  765. "description": "The openai client component for Hyperf.",
  766. "homepage": "https://github.com/friendsofhyperf/openai-client",
  767. "keywords": [
  768. "hyperf",
  769. "openai",
  770. "v3.1"
  771. ],
  772. "support": {
  773. "docs": "https://hyperf.fans",
  774. "issues": "https://github.com/friendsofhyperf/components/issues",
  775. "pull-request": "https://github.com/friendsofhyperf/components/pulls",
  776. "source": "https://github.com/friendsofhyperf/components"
  777. },
  778. "funding": [
  779. {
  780. "url": "https://hdj.me/sponsors/",
  781. "type": "custom"
  782. },
  783. {
  784. "url": "https://github.com/huangdijia",
  785. "type": "github"
  786. }
  787. ],
  788. "time": "2024-11-28T08:49:14+00:00"
  789. },
  790. {
  791. "name": "graham-campbell/result-type",
  792. "version": "v1.1.3",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  796. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  801. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": "^7.2.5 || ^8.0",
  806. "phpoption/phpoption": "^1.9.3"
  807. },
  808. "require-dev": {
  809. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  810. },
  811. "type": "library",
  812. "autoload": {
  813. "psr-4": {
  814. "GrahamCampbell\\ResultType\\": "src/"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Graham Campbell",
  824. "email": "hello@gjcampbell.co.uk",
  825. "homepage": "https://github.com/GrahamCampbell"
  826. }
  827. ],
  828. "description": "An Implementation Of The Result Type",
  829. "keywords": [
  830. "Graham Campbell",
  831. "GrahamCampbell",
  832. "Result Type",
  833. "Result-Type",
  834. "result"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  838. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  839. },
  840. "funding": [
  841. {
  842. "url": "https://github.com/GrahamCampbell",
  843. "type": "github"
  844. },
  845. {
  846. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  847. "type": "tidelift"
  848. }
  849. ],
  850. "time": "2024-07-20T21:45:45+00:00"
  851. },
  852. {
  853. "name": "guzzlehttp/guzzle",
  854. "version": "7.9.2",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/guzzle/guzzle.git",
  858. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  863. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "ext-json": "*",
  868. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  869. "guzzlehttp/psr7": "^2.7.0",
  870. "php": "^7.2.5 || ^8.0",
  871. "psr/http-client": "^1.0",
  872. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  873. },
  874. "provide": {
  875. "psr/http-client-implementation": "1.0"
  876. },
  877. "require-dev": {
  878. "bamarni/composer-bin-plugin": "^1.8.2",
  879. "ext-curl": "*",
  880. "guzzle/client-integration-tests": "3.0.2",
  881. "php-http/message-factory": "^1.1",
  882. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  883. "psr/log": "^1.1 || ^2.0 || ^3.0"
  884. },
  885. "suggest": {
  886. "ext-curl": "Required for CURL handler support",
  887. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  888. "psr/log": "Required for using the Log middleware"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "bamarni-bin": {
  893. "bin-links": true,
  894. "forward-command": false
  895. }
  896. },
  897. "autoload": {
  898. "files": [
  899. "src/functions_include.php"
  900. ],
  901. "psr-4": {
  902. "GuzzleHttp\\": "src/"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Graham Campbell",
  912. "email": "hello@gjcampbell.co.uk",
  913. "homepage": "https://github.com/GrahamCampbell"
  914. },
  915. {
  916. "name": "Michael Dowling",
  917. "email": "mtdowling@gmail.com",
  918. "homepage": "https://github.com/mtdowling"
  919. },
  920. {
  921. "name": "Jeremy Lindblom",
  922. "email": "jeremeamia@gmail.com",
  923. "homepage": "https://github.com/jeremeamia"
  924. },
  925. {
  926. "name": "George Mponos",
  927. "email": "gmponos@gmail.com",
  928. "homepage": "https://github.com/gmponos"
  929. },
  930. {
  931. "name": "Tobias Nyholm",
  932. "email": "tobias.nyholm@gmail.com",
  933. "homepage": "https://github.com/Nyholm"
  934. },
  935. {
  936. "name": "Márk Sági-Kazár",
  937. "email": "mark.sagikazar@gmail.com",
  938. "homepage": "https://github.com/sagikazarmark"
  939. },
  940. {
  941. "name": "Tobias Schultze",
  942. "email": "webmaster@tubo-world.de",
  943. "homepage": "https://github.com/Tobion"
  944. }
  945. ],
  946. "description": "Guzzle is a PHP HTTP client library",
  947. "keywords": [
  948. "client",
  949. "curl",
  950. "framework",
  951. "http",
  952. "http client",
  953. "psr-18",
  954. "psr-7",
  955. "rest",
  956. "web service"
  957. ],
  958. "support": {
  959. "issues": "https://github.com/guzzle/guzzle/issues",
  960. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  961. },
  962. "funding": [
  963. {
  964. "url": "https://github.com/GrahamCampbell",
  965. "type": "github"
  966. },
  967. {
  968. "url": "https://github.com/Nyholm",
  969. "type": "github"
  970. },
  971. {
  972. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  973. "type": "tidelift"
  974. }
  975. ],
  976. "time": "2024-07-24T11:22:20+00:00"
  977. },
  978. {
  979. "name": "guzzlehttp/promises",
  980. "version": "2.0.4",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/guzzle/promises.git",
  984. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  989. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": "^7.2.5 || ^8.0"
  994. },
  995. "require-dev": {
  996. "bamarni/composer-bin-plugin": "^1.8.2",
  997. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "bamarni-bin": {
  1002. "bin-links": true,
  1003. "forward-command": false
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "GuzzleHttp\\Promise\\": "src/"
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Graham Campbell",
  1018. "email": "hello@gjcampbell.co.uk",
  1019. "homepage": "https://github.com/GrahamCampbell"
  1020. },
  1021. {
  1022. "name": "Michael Dowling",
  1023. "email": "mtdowling@gmail.com",
  1024. "homepage": "https://github.com/mtdowling"
  1025. },
  1026. {
  1027. "name": "Tobias Nyholm",
  1028. "email": "tobias.nyholm@gmail.com",
  1029. "homepage": "https://github.com/Nyholm"
  1030. },
  1031. {
  1032. "name": "Tobias Schultze",
  1033. "email": "webmaster@tubo-world.de",
  1034. "homepage": "https://github.com/Tobion"
  1035. }
  1036. ],
  1037. "description": "Guzzle promises library",
  1038. "keywords": [
  1039. "promise"
  1040. ],
  1041. "support": {
  1042. "issues": "https://github.com/guzzle/promises/issues",
  1043. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://github.com/GrahamCampbell",
  1048. "type": "github"
  1049. },
  1050. {
  1051. "url": "https://github.com/Nyholm",
  1052. "type": "github"
  1053. },
  1054. {
  1055. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1056. "type": "tidelift"
  1057. }
  1058. ],
  1059. "time": "2024-10-17T10:06:22+00:00"
  1060. },
  1061. {
  1062. "name": "guzzlehttp/psr7",
  1063. "version": "2.7.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/guzzle/psr7.git",
  1067. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1072. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "php": "^7.2.5 || ^8.0",
  1077. "psr/http-factory": "^1.0",
  1078. "psr/http-message": "^1.1 || ^2.0",
  1079. "ralouphie/getallheaders": "^3.0"
  1080. },
  1081. "provide": {
  1082. "psr/http-factory-implementation": "1.0",
  1083. "psr/http-message-implementation": "1.0"
  1084. },
  1085. "require-dev": {
  1086. "bamarni/composer-bin-plugin": "^1.8.2",
  1087. "http-interop/http-factory-tests": "0.9.0",
  1088. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1089. },
  1090. "suggest": {
  1091. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1092. },
  1093. "type": "library",
  1094. "extra": {
  1095. "bamarni-bin": {
  1096. "bin-links": true,
  1097. "forward-command": false
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-4": {
  1102. "GuzzleHttp\\Psr7\\": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Graham Campbell",
  1112. "email": "hello@gjcampbell.co.uk",
  1113. "homepage": "https://github.com/GrahamCampbell"
  1114. },
  1115. {
  1116. "name": "Michael Dowling",
  1117. "email": "mtdowling@gmail.com",
  1118. "homepage": "https://github.com/mtdowling"
  1119. },
  1120. {
  1121. "name": "George Mponos",
  1122. "email": "gmponos@gmail.com",
  1123. "homepage": "https://github.com/gmponos"
  1124. },
  1125. {
  1126. "name": "Tobias Nyholm",
  1127. "email": "tobias.nyholm@gmail.com",
  1128. "homepage": "https://github.com/Nyholm"
  1129. },
  1130. {
  1131. "name": "Márk Sági-Kazár",
  1132. "email": "mark.sagikazar@gmail.com",
  1133. "homepage": "https://github.com/sagikazarmark"
  1134. },
  1135. {
  1136. "name": "Tobias Schultze",
  1137. "email": "webmaster@tubo-world.de",
  1138. "homepage": "https://github.com/Tobion"
  1139. },
  1140. {
  1141. "name": "Márk Sági-Kazár",
  1142. "email": "mark.sagikazar@gmail.com",
  1143. "homepage": "https://sagikazarmark.hu"
  1144. }
  1145. ],
  1146. "description": "PSR-7 message implementation that also provides common utility methods",
  1147. "keywords": [
  1148. "http",
  1149. "message",
  1150. "psr-7",
  1151. "request",
  1152. "response",
  1153. "stream",
  1154. "uri",
  1155. "url"
  1156. ],
  1157. "support": {
  1158. "issues": "https://github.com/guzzle/psr7/issues",
  1159. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1160. },
  1161. "funding": [
  1162. {
  1163. "url": "https://github.com/GrahamCampbell",
  1164. "type": "github"
  1165. },
  1166. {
  1167. "url": "https://github.com/Nyholm",
  1168. "type": "github"
  1169. },
  1170. {
  1171. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1172. "type": "tidelift"
  1173. }
  1174. ],
  1175. "time": "2024-07-18T11:15:46+00:00"
  1176. },
  1177. {
  1178. "name": "hyperf/amqp",
  1179. "version": "v3.1.42",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/hyperf/amqp.git",
  1183. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1188. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "doctrine/instantiator": "^1.2.0",
  1193. "hyperf/codec": "~3.1.0",
  1194. "hyperf/contract": "~3.1.0",
  1195. "hyperf/coroutine": "~3.1.0",
  1196. "hyperf/pool": "~3.1.0",
  1197. "hyperf/process": "~3.1.0",
  1198. "hyperf/support": "~3.1.0",
  1199. "hyperf/utils": "~3.1.0",
  1200. "php": ">=8.1",
  1201. "php-amqplib/php-amqplib": "^3.5",
  1202. "psr/container": "^1.0 || ^2.0",
  1203. "psr/event-dispatcher": "^1.0",
  1204. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1205. },
  1206. "suggest": {
  1207. "hyperf/di": "Required to use annotations.",
  1208. "hyperf/event": "Declare queue and start consumers automatically."
  1209. },
  1210. "type": "library",
  1211. "extra": {
  1212. "branch-alias": {
  1213. "dev-master": "3.1-dev"
  1214. },
  1215. "hyperf": {
  1216. "config": "Hyperf\\Amqp\\ConfigProvider"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Hyperf\\Amqp\\": "src/"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "description": "A amqplib for hyperf.",
  1229. "homepage": "https://hyperf.io",
  1230. "keywords": [
  1231. "AMQP",
  1232. "hyperf",
  1233. "php"
  1234. ],
  1235. "support": {
  1236. "docs": "https://hyperf.wiki",
  1237. "issues": "https://github.com/hyperf/hyperf/issues",
  1238. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1239. "source": "https://github.com/hyperf/hyperf"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://opencollective.com/hyperf",
  1248. "type": "open_collective"
  1249. }
  1250. ],
  1251. "time": "2024-09-25T02:54:12+00:00"
  1252. },
  1253. {
  1254. "name": "hyperf/async-queue",
  1255. "version": "v3.1.42",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/hyperf/async-queue.git",
  1259. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1264. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "hyperf/codec": "~3.1.0",
  1269. "hyperf/collection": "~3.1.0",
  1270. "hyperf/command": "~3.1.0",
  1271. "hyperf/contract": "~3.1.0",
  1272. "hyperf/support": "~3.1.0",
  1273. "hyperf/utils": "~3.1.0",
  1274. "php": ">=8.1",
  1275. "psr/container": "^1.0 || ^2.0",
  1276. "psr/event-dispatcher": "^1.0"
  1277. },
  1278. "suggest": {
  1279. "hyperf/di": "Required to use annotations.",
  1280. "hyperf/event": "Required to dispatch a event.",
  1281. "hyperf/logger": "Required to use QueueHandleListener.",
  1282. "hyperf/process": "Auto register the consumer process for server."
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "branch-alias": {
  1287. "dev-master": "3.1-dev"
  1288. },
  1289. "hyperf": {
  1290. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "files": [
  1295. "src/Functions.php"
  1296. ],
  1297. "psr-4": {
  1298. "Hyperf\\AsyncQueue\\": "src/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "description": "A async queue component for hyperf.",
  1306. "homepage": "https://hyperf.io",
  1307. "keywords": [
  1308. "async-queue",
  1309. "hyperf",
  1310. "php"
  1311. ],
  1312. "support": {
  1313. "docs": "https://hyperf.wiki",
  1314. "issues": "https://github.com/hyperf/hyperf/issues",
  1315. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1316. "source": "https://github.com/hyperf/hyperf"
  1317. },
  1318. "funding": [
  1319. {
  1320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1321. "type": "custom"
  1322. },
  1323. {
  1324. "url": "https://opencollective.com/hyperf",
  1325. "type": "open_collective"
  1326. }
  1327. ],
  1328. "time": "2024-09-25T02:54:12+00:00"
  1329. },
  1330. {
  1331. "name": "hyperf/cache",
  1332. "version": "v3.1.43",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/hyperf/cache.git",
  1336. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1341. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1342. "shasum": ""
  1343. },
  1344. "require": {
  1345. "hyperf/codec": "~3.1.0",
  1346. "hyperf/collection": "~3.1.0",
  1347. "hyperf/contract": "~3.1.0",
  1348. "hyperf/support": "~3.1.0",
  1349. "hyperf/utils": "~3.1.0",
  1350. "php": ">=8.1",
  1351. "psr/container": "^1.0 || ^2.0",
  1352. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1353. },
  1354. "suggest": {
  1355. "hyperf/di": "Use cache annotations.",
  1356. "hyperf/event": "Use listener to delete annotation cache."
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "3.1-dev"
  1362. },
  1363. "hyperf": {
  1364. "config": "Hyperf\\Cache\\ConfigProvider"
  1365. }
  1366. },
  1367. "autoload": {
  1368. "psr-4": {
  1369. "Hyperf\\Cache\\": "src/"
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "description": "A cache component for hyperf.",
  1377. "homepage": "https://hyperf.io",
  1378. "keywords": [
  1379. "cache",
  1380. "hyperf",
  1381. "php"
  1382. ],
  1383. "support": {
  1384. "docs": "https://hyperf.wiki",
  1385. "issues": "https://github.com/hyperf/hyperf/issues",
  1386. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1387. "source": "https://github.com/hyperf/hyperf"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1392. "type": "custom"
  1393. },
  1394. {
  1395. "url": "https://opencollective.com/hyperf",
  1396. "type": "open_collective"
  1397. }
  1398. ],
  1399. "time": "2024-10-09T10:22:39+00:00"
  1400. },
  1401. {
  1402. "name": "hyperf/code-parser",
  1403. "version": "v3.1.42",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/hyperf/code-parser.git",
  1407. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1412. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "hyperf/collection": "~3.1.0",
  1417. "hyperf/stringable": "~3.1.0",
  1418. "hyperf/support": "~3.1.0",
  1419. "php": ">=8.1"
  1420. },
  1421. "suggest": {
  1422. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1423. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "3.1-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Hyperf\\CodeParser\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "description": "A code parser component for Hyperf.",
  1441. "homepage": "https://hyperf.io",
  1442. "keywords": [
  1443. "code-parser",
  1444. "hyperf",
  1445. "php",
  1446. "swoole"
  1447. ],
  1448. "support": {
  1449. "docs": "https://hyperf.wiki",
  1450. "issues": "https://github.com/hyperf/hyperf/issues",
  1451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1452. "source": "https://github.com/hyperf/hyperf"
  1453. },
  1454. "funding": [
  1455. {
  1456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1457. "type": "custom"
  1458. },
  1459. {
  1460. "url": "https://opencollective.com/hyperf",
  1461. "type": "open_collective"
  1462. }
  1463. ],
  1464. "time": "2024-09-25T02:54:12+00:00"
  1465. },
  1466. {
  1467. "name": "hyperf/codec",
  1468. "version": "v3.1.42",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/hyperf/codec.git",
  1472. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1477. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "ext-json": "*",
  1482. "ext-xml": "*",
  1483. "hyperf/contract": "~3.1.0",
  1484. "php": ">=8.1"
  1485. },
  1486. "suggest": {
  1487. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-master": "3.1-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Hyperf\\Codec\\": "src/"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "description": "A codec component for Hyperf.",
  1505. "homepage": "https://hyperf.io",
  1506. "keywords": [
  1507. "codec",
  1508. "hyperf",
  1509. "php",
  1510. "swoole"
  1511. ],
  1512. "support": {
  1513. "docs": "https://hyperf.wiki",
  1514. "issues": "https://github.com/hyperf/hyperf/issues",
  1515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1516. "source": "https://github.com/hyperf/hyperf"
  1517. },
  1518. "funding": [
  1519. {
  1520. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://opencollective.com/hyperf",
  1525. "type": "open_collective"
  1526. }
  1527. ],
  1528. "time": "2024-09-25T02:54:12+00:00"
  1529. },
  1530. {
  1531. "name": "hyperf/collection",
  1532. "version": "v3.1.47",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/hyperf/collection.git",
  1536. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1541. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "hyperf/conditionable": "~3.1.0",
  1546. "hyperf/contract": "~3.1.0",
  1547. "hyperf/macroable": "~3.1.0",
  1548. "hyperf/stringable": "~3.1.0",
  1549. "php": ">=8.1"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "3.1-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "files": [
  1559. "src/Functions.php"
  1560. ],
  1561. "psr-4": {
  1562. "Hyperf\\Collection\\": "src/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "description": "Hyperf Collection package which come from illuminate/collections",
  1570. "homepage": "https://hyperf.io",
  1571. "keywords": [
  1572. "collection",
  1573. "hyperf",
  1574. "php",
  1575. "swoole"
  1576. ],
  1577. "support": {
  1578. "docs": "https://hyperf.wiki",
  1579. "issues": "https://github.com/hyperf/hyperf/issues",
  1580. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1581. "source": "https://github.com/hyperf/hyperf"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1586. "type": "custom"
  1587. },
  1588. {
  1589. "url": "https://opencollective.com/hyperf",
  1590. "type": "open_collective"
  1591. }
  1592. ],
  1593. "time": "2024-11-28T01:51:55+00:00"
  1594. },
  1595. {
  1596. "name": "hyperf/command",
  1597. "version": "v3.1.42",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/hyperf/command.git",
  1601. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1606. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "hyperf/collection": "~3.1.0",
  1611. "hyperf/context": "~3.1.0",
  1612. "hyperf/contract": "~3.1.0",
  1613. "hyperf/coroutine": "~3.1.0",
  1614. "hyperf/di": "~3.1.0",
  1615. "hyperf/stringable": "~3.1.0",
  1616. "hyperf/support": "~3.1.0",
  1617. "hyperf/tappable": "~3.1.0",
  1618. "php": ">=8.1",
  1619. "psr/event-dispatcher": "^1.0",
  1620. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1621. },
  1622. "suggest": {
  1623. "hyperf/di": "Required to use annotations.",
  1624. "hyperf/event": "Required to use listeners."
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "3.1-dev"
  1630. },
  1631. "hyperf": {
  1632. "config": "Hyperf\\Command\\ConfigProvider"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Hyperf\\Command\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "description": "Command for hyperf",
  1645. "keywords": [
  1646. "command",
  1647. "php",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/hyperf/command/issues",
  1652. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://opencollective.com/hyperf",
  1661. "type": "open_collective"
  1662. }
  1663. ],
  1664. "time": "2024-09-25T02:54:12+00:00"
  1665. },
  1666. {
  1667. "name": "hyperf/conditionable",
  1668. "version": "v3.1.42",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/hyperf/conditionable.git",
  1672. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1677. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": ">=8.1"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. }
  1688. },
  1689. "autoload": {
  1690. "psr-4": {
  1691. "Hyperf\\Conditionable\\": "src/"
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "MIT"
  1697. ],
  1698. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1699. "homepage": "https://hyperf.io",
  1700. "keywords": [
  1701. "conditionable",
  1702. "hyperf",
  1703. "php",
  1704. "swoole"
  1705. ],
  1706. "support": {
  1707. "docs": "https://hyperf.wiki",
  1708. "issues": "https://github.com/hyperf/hyperf/issues",
  1709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1710. "source": "https://github.com/hyperf/hyperf"
  1711. },
  1712. "funding": [
  1713. {
  1714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1715. "type": "custom"
  1716. },
  1717. {
  1718. "url": "https://opencollective.com/hyperf",
  1719. "type": "open_collective"
  1720. }
  1721. ],
  1722. "time": "2024-09-25T02:54:12+00:00"
  1723. },
  1724. {
  1725. "name": "hyperf/config",
  1726. "version": "v3.1.42",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/hyperf/config.git",
  1730. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1735. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "hyperf/collection": "~3.1.0",
  1740. "hyperf/contract": "~3.1.0",
  1741. "hyperf/support": "~3.1.0",
  1742. "php": ">=8.1",
  1743. "psr/container": "^1.0 || ^2.0",
  1744. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1745. },
  1746. "suggest": {
  1747. "hyperf/context": "Required to use config()",
  1748. "hyperf/di": "Allows using @Value annotation",
  1749. "hyperf/event": "Allows using @Value annotation",
  1750. "hyperf/framework": "Allows using @Value annotation",
  1751. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "3.1-dev"
  1757. },
  1758. "hyperf": {
  1759. "config": "Hyperf\\Config\\ConfigProvider"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "files": [
  1764. "./src/Functions.php"
  1765. ],
  1766. "psr-4": {
  1767. "Hyperf\\Config\\": "src/"
  1768. }
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "description": "An independent component that provides configuration container.",
  1775. "homepage": "https://hyperf.io",
  1776. "keywords": [
  1777. "config",
  1778. "configuration",
  1779. "hyperf",
  1780. "php",
  1781. "swoole"
  1782. ],
  1783. "support": {
  1784. "docs": "https://hyperf.wiki",
  1785. "issues": "https://github.com/hyperf/hyperf/issues",
  1786. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1787. "source": "https://github.com/hyperf/hyperf"
  1788. },
  1789. "funding": [
  1790. {
  1791. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1792. "type": "custom"
  1793. },
  1794. {
  1795. "url": "https://opencollective.com/hyperf",
  1796. "type": "open_collective"
  1797. }
  1798. ],
  1799. "time": "2024-09-25T02:54:12+00:00"
  1800. },
  1801. {
  1802. "name": "hyperf/config-center",
  1803. "version": "v3.1.42",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/hyperf/config-center.git",
  1807. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1812. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "hyperf/support": "~3.1.0",
  1817. "php": ">=8.1"
  1818. },
  1819. "suggest": {
  1820. "hyperf/process": "^2.1"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "branch-alias": {
  1825. "dev-master": "3.1-dev"
  1826. },
  1827. "hyperf": {
  1828. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Hyperf\\ConfigCenter\\": "src/"
  1834. }
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT"
  1839. ],
  1840. "description": "The abstraction component of config center",
  1841. "homepage": "https://hyperf.io",
  1842. "keywords": [
  1843. "config-center",
  1844. "hyperf",
  1845. "php"
  1846. ],
  1847. "support": {
  1848. "docs": "https://hyperf.wiki",
  1849. "issues": "https://github.com/hyperf/hyperf/issues",
  1850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1851. "source": "https://github.com/hyperf/hyperf"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://opencollective.com/hyperf",
  1860. "type": "open_collective"
  1861. }
  1862. ],
  1863. "time": "2024-09-25T02:54:12+00:00"
  1864. },
  1865. {
  1866. "name": "hyperf/config-nacos",
  1867. "version": "v3.1.42",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/hyperf/config-nacos.git",
  1871. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1876. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "hyperf/codec": "~3.1.0",
  1881. "hyperf/config-center": "~3.1.0",
  1882. "hyperf/contract": "~3.1.0",
  1883. "hyperf/guzzle": "~3.1.0",
  1884. "hyperf/nacos": "~3.1.0",
  1885. "hyperf/support": "~3.1.0",
  1886. "hyperf/utils": "~3.1.0",
  1887. "jetbrains/phpstorm-attributes": "^1.0",
  1888. "php": ">=8.1"
  1889. },
  1890. "suggest": {
  1891. "ext-json": "*",
  1892. "ext-simplexml": "*",
  1893. "ext-yaml": "*",
  1894. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1895. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1896. "hyperf/process": "Required to use processes. (~2.2.0)"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "3.1-dev"
  1902. },
  1903. "hyperf": {
  1904. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Hyperf\\ConfigNacos\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "description": "A nacos adapter for config center component.",
  1917. "homepage": "https://hyperf.io",
  1918. "keywords": [
  1919. "hyperf",
  1920. "nacos",
  1921. "php",
  1922. "swoole"
  1923. ],
  1924. "support": {
  1925. "docs": "https://hyperf.wiki",
  1926. "issues": "https://github.com/hyperf/hyperf/issues",
  1927. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1928. "source": "https://github.com/hyperf/hyperf"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://opencollective.com/hyperf",
  1937. "type": "open_collective"
  1938. }
  1939. ],
  1940. "time": "2024-09-25T02:54:12+00:00"
  1941. },
  1942. {
  1943. "name": "hyperf/constants",
  1944. "version": "v3.1.42",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/hyperf/constants.git",
  1948. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1953. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "hyperf/di": "~3.1.0",
  1958. "hyperf/support": "~3.1.0",
  1959. "hyperf/utils": "~3.1.0",
  1960. "php": ">=8.1"
  1961. },
  1962. "suggest": {
  1963. "hyperf/translation": "Required to use translation."
  1964. },
  1965. "type": "library",
  1966. "extra": {
  1967. "branch-alias": {
  1968. "dev-master": "3.1-dev"
  1969. },
  1970. "hyperf": {
  1971. "config": "Hyperf\\Constants\\ConfigProvider"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Hyperf\\Constants\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "description": "A constants component for hyperf.",
  1984. "homepage": "https://hyperf.io",
  1985. "keywords": [
  1986. "constants",
  1987. "hyperf",
  1988. "php"
  1989. ],
  1990. "support": {
  1991. "docs": "https://hyperf.wiki",
  1992. "issues": "https://github.com/hyperf/hyperf/issues",
  1993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1994. "source": "https://github.com/hyperf/hyperf"
  1995. },
  1996. "funding": [
  1997. {
  1998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1999. "type": "custom"
  2000. },
  2001. {
  2002. "url": "https://opencollective.com/hyperf",
  2003. "type": "open_collective"
  2004. }
  2005. ],
  2006. "time": "2024-09-25T02:54:12+00:00"
  2007. },
  2008. {
  2009. "name": "hyperf/consul",
  2010. "version": "v3.1.42",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hyperf/consul.git",
  2014. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2019. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2024. "php": ">=8.1"
  2025. },
  2026. "type": "library",
  2027. "extra": {
  2028. "branch-alias": {
  2029. "dev-master": "3.1-dev"
  2030. },
  2031. "hyperf": {
  2032. "config": "Hyperf\\Consul\\ConfigProvider"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Hyperf\\Consul\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "description": "A Consul Client for Hyperf.",
  2045. "homepage": "https://hyperf.io",
  2046. "keywords": [
  2047. "consul",
  2048. "consul-client",
  2049. "hyperf",
  2050. "php",
  2051. "swoole"
  2052. ],
  2053. "support": {
  2054. "docs": "https://hyperf.wiki",
  2055. "issues": "https://github.com/hyperf/hyperf/issues",
  2056. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2057. "source": "https://github.com/hyperf/hyperf"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://opencollective.com/hyperf",
  2066. "type": "open_collective"
  2067. }
  2068. ],
  2069. "time": "2024-09-25T02:54:12+00:00"
  2070. },
  2071. {
  2072. "name": "hyperf/context",
  2073. "version": "v3.1.42",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/hyperf/context.git",
  2077. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2082. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "hyperf/engine": "^2.0",
  2087. "php": ">=8.1"
  2088. },
  2089. "suggest": {
  2090. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "3.1-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "psr-4": {
  2100. "Hyperf\\Context\\": "src/"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "MIT"
  2106. ],
  2107. "description": "A coroutine/application context library.",
  2108. "homepage": "https://hyperf.io",
  2109. "keywords": [
  2110. "Context",
  2111. "hyperf",
  2112. "php",
  2113. "swoole"
  2114. ],
  2115. "support": {
  2116. "docs": "https://hyperf.wiki",
  2117. "issues": "https://github.com/hyperf/hyperf/issues",
  2118. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2119. "source": "https://github.com/hyperf/hyperf"
  2120. },
  2121. "funding": [
  2122. {
  2123. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2124. "type": "custom"
  2125. },
  2126. {
  2127. "url": "https://opencollective.com/hyperf",
  2128. "type": "open_collective"
  2129. }
  2130. ],
  2131. "time": "2024-09-25T02:54:12+00:00"
  2132. },
  2133. {
  2134. "name": "hyperf/contract",
  2135. "version": "v3.1.42",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/hyperf/contract.git",
  2139. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2144. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=8.1"
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "3.1-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Hyperf\\Contract\\": "src/"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "description": "The contracts of Hyperf.",
  2166. "homepage": "https://hyperf.io",
  2167. "keywords": [
  2168. "hyperf",
  2169. "php",
  2170. "swoole"
  2171. ],
  2172. "support": {
  2173. "docs": "https://hyperf.wiki",
  2174. "issues": "https://github.com/hyperf/hyperf/issues",
  2175. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2176. "source": "https://github.com/hyperf/hyperf"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2181. "type": "custom"
  2182. },
  2183. {
  2184. "url": "https://opencollective.com/hyperf",
  2185. "type": "open_collective"
  2186. }
  2187. ],
  2188. "time": "2024-09-25T02:54:12+00:00"
  2189. },
  2190. {
  2191. "name": "hyperf/coordinator",
  2192. "version": "v3.1.42",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/hyperf/coordinator.git",
  2196. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2201. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "hyperf/engine": "^2.0",
  2206. "php": ">=8.1"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "3.1-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "files": [
  2216. "src/Functions.php"
  2217. ],
  2218. "psr-4": {
  2219. "Hyperf\\Coordinator\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "Hyperf Coordinator",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "Coordinator",
  2230. "hyperf",
  2231. "php",
  2232. "swoole"
  2233. ],
  2234. "support": {
  2235. "docs": "https://hyperf.wiki",
  2236. "issues": "https://github.com/hyperf/hyperf/issues",
  2237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2238. "source": "https://github.com/hyperf/hyperf"
  2239. },
  2240. "funding": [
  2241. {
  2242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2243. "type": "custom"
  2244. },
  2245. {
  2246. "url": "https://opencollective.com/hyperf",
  2247. "type": "open_collective"
  2248. }
  2249. ],
  2250. "time": "2024-09-25T02:54:12+00:00"
  2251. },
  2252. {
  2253. "name": "hyperf/coroutine",
  2254. "version": "v3.1.49",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/hyperf/coroutine.git",
  2258. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/959ea68ac700061d8f7b76708bc52f588b66979b",
  2263. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "hyperf/context": "~3.1.0",
  2268. "hyperf/contract": "~3.1.0",
  2269. "hyperf/engine": "^2.0",
  2270. "php": ">=8.1"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "3.1-dev"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "files": [
  2280. "src/Functions.php"
  2281. ],
  2282. "psr-4": {
  2283. "Hyperf\\Coroutine\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "description": "Hyperf Coroutine",
  2291. "homepage": "https://hyperf.io",
  2292. "keywords": [
  2293. "coroutine",
  2294. "hyperf",
  2295. "php",
  2296. "swoole"
  2297. ],
  2298. "support": {
  2299. "docs": "https://hyperf.wiki",
  2300. "issues": "https://github.com/hyperf/hyperf/issues",
  2301. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2302. "source": "https://github.com/hyperf/hyperf"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2307. "type": "custom"
  2308. },
  2309. {
  2310. "url": "https://opencollective.com/hyperf",
  2311. "type": "open_collective"
  2312. }
  2313. ],
  2314. "time": "2024-12-13T07:51:52+00:00"
  2315. },
  2316. {
  2317. "name": "hyperf/database",
  2318. "version": "v3.1.48",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/hyperf/database.git",
  2322. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2327. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "hyperf/code-parser": "~3.1.0",
  2332. "hyperf/collection": "~3.1.23",
  2333. "hyperf/conditionable": "~3.1.0",
  2334. "hyperf/macroable": "~3.1.0",
  2335. "hyperf/support": "~3.1.0",
  2336. "hyperf/tappable": "~3.1.0",
  2337. "hyperf/utils": "~3.1.0",
  2338. "nesbot/carbon": "^2.0",
  2339. "php": ">=8.1",
  2340. "psr/container": "^1.0 || ^2.0",
  2341. "psr/event-dispatcher": "^1.0"
  2342. },
  2343. "suggest": {
  2344. "doctrine/dbal": "Required to rename columns (^3.0).",
  2345. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2346. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2347. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "3.1-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\Database\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A flexible database library.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "database",
  2368. "hyperf",
  2369. "php"
  2370. ],
  2371. "support": {
  2372. "docs": "https://hyperf.wiki",
  2373. "issues": "https://github.com/hyperf/hyperf/issues",
  2374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2375. "source": "https://github.com/hyperf/hyperf"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://opencollective.com/hyperf",
  2384. "type": "open_collective"
  2385. }
  2386. ],
  2387. "time": "2024-12-12T01:58:16+00:00"
  2388. },
  2389. {
  2390. "name": "hyperf/db-connection",
  2391. "version": "v3.1.44",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/hyperf/db-connection.git",
  2395. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2400. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "hyperf/database": "~3.1.0",
  2405. "hyperf/di": "~3.1.0",
  2406. "hyperf/framework": "~3.1.0",
  2407. "hyperf/model-listener": "~3.1.0",
  2408. "hyperf/pool": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "hyperf/utils": "~3.1.0",
  2411. "php": ">=8.1",
  2412. "psr/container": "^1.0 || ^2.0"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "3.1-dev"
  2418. },
  2419. "hyperf": {
  2420. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "psr-4": {
  2425. "Hyperf\\DbConnection\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "description": "A hyperf db connection handler for hyperf/database.",
  2433. "homepage": "https://hyperf.io",
  2434. "keywords": [
  2435. "Connection",
  2436. "database",
  2437. "hyperf",
  2438. "php"
  2439. ],
  2440. "support": {
  2441. "docs": "https://hyperf.wiki",
  2442. "issues": "https://github.com/hyperf/hyperf/issues",
  2443. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2444. "source": "https://github.com/hyperf/hyperf"
  2445. },
  2446. "funding": [
  2447. {
  2448. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2449. "type": "custom"
  2450. },
  2451. {
  2452. "url": "https://opencollective.com/hyperf",
  2453. "type": "open_collective"
  2454. }
  2455. ],
  2456. "time": "2024-10-11T08:58:16+00:00"
  2457. },
  2458. {
  2459. "name": "hyperf/di",
  2460. "version": "v3.1.42",
  2461. "source": {
  2462. "type": "git",
  2463. "url": "https://github.com/hyperf/di.git",
  2464. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2465. },
  2466. "dist": {
  2467. "type": "zip",
  2468. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2469. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2470. "shasum": ""
  2471. },
  2472. "require": {
  2473. "doctrine/instantiator": "^1.0",
  2474. "hyperf/code-parser": "~3.1.0",
  2475. "hyperf/pipeline": "~3.1.0",
  2476. "hyperf/stdlib": "~3.1.0",
  2477. "hyperf/support": "~3.1.0",
  2478. "nikic/php-parser": "^4.1",
  2479. "php": ">=8.1",
  2480. "php-di/phpdoc-reader": "^2.2",
  2481. "psr/container": "^1.0 || ^2.0",
  2482. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2483. "vlucas/phpdotenv": "^5.0"
  2484. },
  2485. "suggest": {
  2486. "ext-pcntl": "Required to scan annotations.",
  2487. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2488. },
  2489. "type": "library",
  2490. "extra": {
  2491. "branch-alias": {
  2492. "dev-master": "3.1-dev"
  2493. },
  2494. "hyperf": {
  2495. "config": "Hyperf\\Di\\ConfigProvider"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Hyperf\\Di\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "description": "A DI for Hyperf.",
  2508. "homepage": "https://hyperf.io",
  2509. "keywords": [
  2510. "annotation",
  2511. "di",
  2512. "hyperf",
  2513. "php",
  2514. "swoole"
  2515. ],
  2516. "support": {
  2517. "docs": "https://hyperf.wiki",
  2518. "issues": "https://github.com/hyperf/hyperf/issues",
  2519. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2520. "source": "https://github.com/hyperf/hyperf"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2525. "type": "custom"
  2526. },
  2527. {
  2528. "url": "https://opencollective.com/hyperf",
  2529. "type": "open_collective"
  2530. }
  2531. ],
  2532. "time": "2024-09-25T02:54:12+00:00"
  2533. },
  2534. {
  2535. "name": "hyperf/dispatcher",
  2536. "version": "v3.1.42",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/hyperf/dispatcher.git",
  2540. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2545. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2546. "shasum": ""
  2547. },
  2548. "require": {
  2549. "hyperf/contract": "~3.1.0",
  2550. "php": ">=8.1",
  2551. "psr/container": "^1.0 || ^2.0",
  2552. "psr/http-message": "^1.0 || ^2.0",
  2553. "psr/http-server-middleware": "^1.0"
  2554. },
  2555. "type": "library",
  2556. "extra": {
  2557. "branch-alias": {
  2558. "dev-master": "3.1-dev"
  2559. },
  2560. "hyperf": {
  2561. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2562. }
  2563. },
  2564. "autoload": {
  2565. "psr-4": {
  2566. "Hyperf\\Dispatcher\\": "src/"
  2567. }
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "description": "A HTTP Server for Hyperf.",
  2574. "homepage": "https://hyperf.io",
  2575. "keywords": [
  2576. "dispatcher",
  2577. "filter",
  2578. "hyperf",
  2579. "middleware",
  2580. "php",
  2581. "swoole"
  2582. ],
  2583. "support": {
  2584. "docs": "https://hyperf.wiki",
  2585. "issues": "https://github.com/hyperf/hyperf/issues",
  2586. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2587. "source": "https://github.com/hyperf/hyperf"
  2588. },
  2589. "funding": [
  2590. {
  2591. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2592. "type": "custom"
  2593. },
  2594. {
  2595. "url": "https://opencollective.com/hyperf",
  2596. "type": "open_collective"
  2597. }
  2598. ],
  2599. "time": "2024-09-25T02:54:12+00:00"
  2600. },
  2601. {
  2602. "name": "hyperf/engine",
  2603. "version": "v2.12.1",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/hyperf/engine.git",
  2607. "reference": "90be8143841482dcd00051050986251e126c6132"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2612. "reference": "90be8143841482dcd00051050986251e126c6132",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "hyperf/engine-contract": "~1.11.0",
  2617. "php": ">=8.0"
  2618. },
  2619. "conflict": {
  2620. "ext-swoole": "<5.0"
  2621. },
  2622. "require-dev": {
  2623. "friendsofphp/php-cs-fixer": "^3.0",
  2624. "hyperf/guzzle": "^3.0",
  2625. "hyperf/http-message": "^3.0",
  2626. "mockery/mockery": "^1.5",
  2627. "phpstan/phpstan": "^1.0",
  2628. "phpunit/phpunit": "^9.4",
  2629. "swoole/ide-helper": "5.*"
  2630. },
  2631. "suggest": {
  2632. "ext-sockets": "*",
  2633. "ext-swoole": ">=5.0",
  2634. "hyperf/http-message": "Required to use ResponseEmitter.",
  2635. "psr/http-message": "Required to use WebSocket Frame."
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "hyperf": {
  2640. "config": "Hyperf\\Engine\\ConfigProvider"
  2641. },
  2642. "branch-alias": {
  2643. "dev-master": "2.12-dev"
  2644. }
  2645. },
  2646. "autoload": {
  2647. "files": [
  2648. "src/Functions.php"
  2649. ],
  2650. "psr-4": {
  2651. "Hyperf\\Engine\\": "src/"
  2652. }
  2653. },
  2654. "notification-url": "https://packagist.org/downloads/",
  2655. "license": [
  2656. "MIT"
  2657. ],
  2658. "description": "Coroutine engine provided by swoole.",
  2659. "keywords": [
  2660. "engine",
  2661. "hyperf",
  2662. "php",
  2663. "swoole"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/hyperf/engine/issues",
  2667. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2668. },
  2669. "funding": [
  2670. {
  2671. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2672. "type": "custom"
  2673. },
  2674. {
  2675. "url": "https://opencollective.com/hyperf",
  2676. "type": "open_collective"
  2677. }
  2678. ],
  2679. "time": "2024-12-17T12:36:21+00:00"
  2680. },
  2681. {
  2682. "name": "hyperf/engine-contract",
  2683. "version": "v1.11.0",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/hyperf/engine-contract.git",
  2687. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2692. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "php": ">=8.0"
  2697. },
  2698. "require-dev": {
  2699. "friendsofphp/php-cs-fixer": "^3.0",
  2700. "mockery/mockery": "^1.0",
  2701. "phpstan/phpstan": "^1.0",
  2702. "phpunit/phpunit": ">=7.0",
  2703. "psr/http-message": "^1.0",
  2704. "swoole/ide-helper": "^4.5"
  2705. },
  2706. "suggest": {
  2707. "psr/http-message": "Required to use WebSocket Frame."
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "1.9-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "Hyperf\\Engine\\Contract\\": "src/"
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "MIT"
  2723. ],
  2724. "description": "Contract for Coroutine Engine",
  2725. "keywords": [
  2726. "contract",
  2727. "coroutine",
  2728. "engine",
  2729. "hyperf",
  2730. "php"
  2731. ],
  2732. "support": {
  2733. "issues": "https://github.com/hyperf/engine-contract/issues",
  2734. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2739. "type": "custom"
  2740. },
  2741. {
  2742. "url": "https://opencollective.com/hyperf",
  2743. "type": "open_collective"
  2744. }
  2745. ],
  2746. "time": "2024-11-19T04:15:31+00:00"
  2747. },
  2748. {
  2749. "name": "hyperf/event",
  2750. "version": "v3.1.42",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/hyperf/event.git",
  2754. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2759. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2760. "shasum": ""
  2761. },
  2762. "require": {
  2763. "hyperf/contract": "~3.1.0",
  2764. "hyperf/stdlib": "~3.1.0",
  2765. "php": ">=8.1",
  2766. "psr/event-dispatcher": "^1.0"
  2767. },
  2768. "suggest": {
  2769. "hyperf/di": "Required to use annotatioins."
  2770. },
  2771. "type": "library",
  2772. "extra": {
  2773. "branch-alias": {
  2774. "dev-master": "3.1-dev"
  2775. },
  2776. "hyperf": {
  2777. "config": "Hyperf\\Event\\ConfigProvider"
  2778. }
  2779. },
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Hyperf\\Event\\": "src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "description": "an event manager that implements PSR-14.",
  2790. "homepage": "https://hyperf.io",
  2791. "keywords": [
  2792. "event",
  2793. "hyperf",
  2794. "php",
  2795. "swoole"
  2796. ],
  2797. "support": {
  2798. "docs": "https://hyperf.wiki",
  2799. "issues": "https://github.com/hyperf/hyperf/issues",
  2800. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2801. "source": "https://github.com/hyperf/hyperf"
  2802. },
  2803. "funding": [
  2804. {
  2805. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2806. "type": "custom"
  2807. },
  2808. {
  2809. "url": "https://opencollective.com/hyperf",
  2810. "type": "open_collective"
  2811. }
  2812. ],
  2813. "time": "2024-09-25T02:54:12+00:00"
  2814. },
  2815. {
  2816. "name": "hyperf/exception-handler",
  2817. "version": "v3.1.42",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/hyperf/exception-handler.git",
  2821. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2826. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "hyperf/context": "~3.1.0",
  2831. "hyperf/contract": "~3.1.0",
  2832. "hyperf/dispatcher": "~3.1.0",
  2833. "hyperf/http-message": "~3.1.0",
  2834. "hyperf/stdlib": "~3.1.0",
  2835. "hyperf/support": "~3.1.0",
  2836. "php": ">=8.1",
  2837. "psr/container": "^1.0 || ^2.0",
  2838. "psr/http-message": "^1.0 || ^2.0",
  2839. "swow/psr7-plus": "^1.0"
  2840. },
  2841. "suggest": {
  2842. "hyperf/di": "Required to use #[ExceptionHandler]",
  2843. "hyperf/event": "Required to use listeners",
  2844. "hyperf/framework": "Required to use listeners",
  2845. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.1-dev"
  2851. },
  2852. "hyperf": {
  2853. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2854. }
  2855. },
  2856. "autoload": {
  2857. "psr-4": {
  2858. "Hyperf\\ExceptionHandler\\": "src/"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "description": "Exception handler for hyperf",
  2866. "homepage": "https://hyperf.io",
  2867. "keywords": [
  2868. "exception-handler",
  2869. "php",
  2870. "swoole"
  2871. ],
  2872. "support": {
  2873. "docs": "https://hyperf.wiki",
  2874. "issues": "https://github.com/hyperf/hyperf/issues",
  2875. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2876. "source": "https://github.com/hyperf/hyperf"
  2877. },
  2878. "funding": [
  2879. {
  2880. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2881. "type": "custom"
  2882. },
  2883. {
  2884. "url": "https://opencollective.com/hyperf",
  2885. "type": "open_collective"
  2886. }
  2887. ],
  2888. "time": "2024-09-25T02:54:12+00:00"
  2889. },
  2890. {
  2891. "name": "hyperf/framework",
  2892. "version": "v3.1.42",
  2893. "source": {
  2894. "type": "git",
  2895. "url": "https://github.com/hyperf/framework.git",
  2896. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2897. },
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2901. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2902. "shasum": ""
  2903. },
  2904. "require": {
  2905. "fig/http-message-util": "^1.1.2",
  2906. "hyperf/contract": "~3.1.0",
  2907. "hyperf/coordinator": "~3.1.0",
  2908. "hyperf/coroutine": "~3.1.0",
  2909. "php": ">=8.1",
  2910. "psr/container": "^1.0 || ^2.0",
  2911. "psr/event-dispatcher": "^1.0",
  2912. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2913. },
  2914. "suggest": {
  2915. "ext-swoole": "Required to use swoole engine.",
  2916. "hyperf/command": "Required to use Command annotation.",
  2917. "hyperf/di": "Required to use Command annotation.",
  2918. "hyperf/dispatcher": "Required to use BootApplication event.",
  2919. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "3.1-dev"
  2925. },
  2926. "hyperf": {
  2927. "config": "Hyperf\\Framework\\ConfigProvider"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Hyperf\\Framework\\": "src/"
  2933. }
  2934. },
  2935. "notification-url": "https://packagist.org/downloads/",
  2936. "license": [
  2937. "MIT"
  2938. ],
  2939. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2940. "homepage": "https://hyperf.io",
  2941. "keywords": [
  2942. "Microservice",
  2943. "framework",
  2944. "hyperf",
  2945. "middleware",
  2946. "php",
  2947. "swoole"
  2948. ],
  2949. "support": {
  2950. "docs": "https://hyperf.wiki",
  2951. "issues": "https://github.com/hyperf/hyperf/issues",
  2952. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2953. "source": "https://github.com/hyperf/hyperf"
  2954. },
  2955. "funding": [
  2956. {
  2957. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2958. "type": "custom"
  2959. },
  2960. {
  2961. "url": "https://opencollective.com/hyperf",
  2962. "type": "open_collective"
  2963. }
  2964. ],
  2965. "time": "2024-09-25T02:54:12+00:00"
  2966. },
  2967. {
  2968. "name": "hyperf/guzzle",
  2969. "version": "v3.1.42",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/hyperf/guzzle.git",
  2973. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2978. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2983. "php": ">=8.1",
  2984. "psr/container": "^1.0 || ^2.0",
  2985. "psr/http-message": "^1.0 || ^2.0"
  2986. },
  2987. "suggest": {
  2988. "ext-curl": "Required for CURL handler support",
  2989. "hyperf/pool": "Required to use pool handler."
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. },
  2996. "hyperf": {
  2997. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2998. }
  2999. },
  3000. "autoload": {
  3001. "psr-4": {
  3002. "Hyperf\\Guzzle\\": "src/"
  3003. }
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "description": "Swoole coroutine handler for guzzle",
  3010. "keywords": [
  3011. "Guzzle",
  3012. "handler",
  3013. "php",
  3014. "swoole"
  3015. ],
  3016. "support": {
  3017. "issues": "https://github.com/hyperf/guzzle/issues",
  3018. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  3019. },
  3020. "funding": [
  3021. {
  3022. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3023. "type": "custom"
  3024. },
  3025. {
  3026. "url": "https://opencollective.com/hyperf",
  3027. "type": "open_collective"
  3028. }
  3029. ],
  3030. "time": "2024-09-25T02:54:12+00:00"
  3031. },
  3032. {
  3033. "name": "hyperf/http-message",
  3034. "version": "v3.1.48",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://github.com/hyperf/http-message.git",
  3038. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3043. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3044. "shasum": ""
  3045. },
  3046. "require": {
  3047. "hyperf/codec": "~3.1.0",
  3048. "hyperf/engine": "^2.11",
  3049. "hyperf/support": "~3.1.0",
  3050. "laminas/laminas-mime": "^2.7",
  3051. "php": ">=8.1",
  3052. "psr/http-message": "^1.0 || ^2.0",
  3053. "swow/psr7-plus": "^1.0"
  3054. },
  3055. "suggest": {
  3056. "psr/container": "Required to replace RequestParserInterface."
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "hyperf": {
  3061. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3062. },
  3063. "branch-alias": {
  3064. "dev-master": "3.1-dev"
  3065. }
  3066. },
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Hyperf\\HttpMessage\\": "src/"
  3070. }
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "description": "microservice framework base on swoole",
  3077. "keywords": [
  3078. "http-message",
  3079. "hyperf",
  3080. "php",
  3081. "swoole"
  3082. ],
  3083. "support": {
  3084. "issues": "https://github.com/hyperf/http-message/issues",
  3085. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3086. },
  3087. "funding": [
  3088. {
  3089. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3090. "type": "custom"
  3091. },
  3092. {
  3093. "url": "https://opencollective.com/hyperf",
  3094. "type": "open_collective"
  3095. }
  3096. ],
  3097. "time": "2024-12-05T02:41:08+00:00"
  3098. },
  3099. {
  3100. "name": "hyperf/http-server",
  3101. "version": "v3.1.42",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/hyperf/http-server.git",
  3105. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3110. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "hyperf/codec": "~3.1.0",
  3115. "hyperf/collection": "~3.1.0",
  3116. "hyperf/context": "~3.1.0",
  3117. "hyperf/contract": "~3.1.0",
  3118. "hyperf/coroutine": "~3.1.0",
  3119. "hyperf/dispatcher": "~3.1.0",
  3120. "hyperf/event": "~3.1.0",
  3121. "hyperf/exception-handler": "~3.1.0",
  3122. "hyperf/http-message": "~3.1.0",
  3123. "hyperf/macroable": "~3.1.0",
  3124. "hyperf/serializer": "~3.1.0",
  3125. "hyperf/server": "~3.1.0",
  3126. "hyperf/stdlib": "~3.1.0",
  3127. "hyperf/support": "~3.1.0",
  3128. "nikic/fast-route": "^1.3",
  3129. "php": ">=8.1",
  3130. "psr/container": "^1.0 || ^2.0",
  3131. "swow/psr7-plus": "^1.0"
  3132. },
  3133. "suggest": {
  3134. "hyperf/di": "Required to use annotations."
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-master": "3.1-dev"
  3140. },
  3141. "hyperf": {
  3142. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3143. }
  3144. },
  3145. "autoload": {
  3146. "psr-4": {
  3147. "Hyperf\\HttpServer\\": "src/"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "description": "A HTTP Server for Hyperf.",
  3155. "homepage": "https://hyperf.io",
  3156. "keywords": [
  3157. "http",
  3158. "http-server",
  3159. "hyperf",
  3160. "php",
  3161. "swoole"
  3162. ],
  3163. "support": {
  3164. "docs": "https://hyperf.wiki",
  3165. "issues": "https://github.com/hyperf/hyperf/issues",
  3166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3167. "source": "https://github.com/hyperf/hyperf"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://opencollective.com/hyperf",
  3176. "type": "open_collective"
  3177. }
  3178. ],
  3179. "time": "2024-09-25T02:54:12+00:00"
  3180. },
  3181. {
  3182. "name": "hyperf/json-rpc",
  3183. "version": "v3.1.47",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/hyperf/json-rpc.git",
  3187. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3192. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "hyperf/codec": "~3.1.0",
  3197. "hyperf/context": "~3.1.0",
  3198. "hyperf/contract": "~3.1.0",
  3199. "hyperf/engine": "^2.0",
  3200. "hyperf/http-message": "~3.1.0",
  3201. "hyperf/load-balancer": "~3.1.0",
  3202. "hyperf/rpc": "~3.1.0",
  3203. "hyperf/serializer": "~3.1.0",
  3204. "hyperf/support": "~3.1.0",
  3205. "hyperf/utils": "~3.1.0",
  3206. "php": ">=8.1",
  3207. "psr/container": "^1.0 || ^2.0",
  3208. "swow/psr7-plus": "^1.0"
  3209. },
  3210. "suggest": {
  3211. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3212. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3213. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3214. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3215. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3216. },
  3217. "type": "library",
  3218. "extra": {
  3219. "hyperf": {
  3220. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3221. },
  3222. "branch-alias": {
  3223. "dev-master": "3.1-dev"
  3224. }
  3225. },
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Hyperf\\JsonRpc\\": "src/"
  3229. }
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "MIT"
  3234. ],
  3235. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3236. "homepage": "https://hyperf.io",
  3237. "keywords": [
  3238. "hyperf",
  3239. "json-rpc",
  3240. "php",
  3241. "swoole"
  3242. ],
  3243. "support": {
  3244. "docs": "https://hyperf.wiki",
  3245. "issues": "https://github.com/hyperf/hyperf/issues",
  3246. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3247. "source": "https://github.com/hyperf/hyperf"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://opencollective.com/hyperf",
  3256. "type": "open_collective"
  3257. }
  3258. ],
  3259. "time": "2024-11-28T01:51:55+00:00"
  3260. },
  3261. {
  3262. "name": "hyperf/load-balancer",
  3263. "version": "v3.1.42",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/hyperf/load-balancer.git",
  3267. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3272. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "hyperf/coordinator": "~3.1.0",
  3277. "hyperf/coroutine": "~3.1.0",
  3278. "markrogoyski/math-php": "^2.0",
  3279. "php": ">=8.1",
  3280. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3281. },
  3282. "type": "library",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-master": "3.1-dev"
  3286. },
  3287. "hyperf": {
  3288. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "psr-4": {
  3293. "Hyperf\\LoadBalancer\\": "src/"
  3294. }
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "description": "A load balancer library for Hyperf.",
  3301. "homepage": "https://hyperf.io",
  3302. "keywords": [
  3303. "hyperf",
  3304. "load-balancer",
  3305. "php",
  3306. "swoole"
  3307. ],
  3308. "support": {
  3309. "docs": "https://hyperf.wiki",
  3310. "issues": "https://github.com/hyperf/hyperf/issues",
  3311. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3312. "source": "https://github.com/hyperf/hyperf"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://opencollective.com/hyperf",
  3321. "type": "open_collective"
  3322. }
  3323. ],
  3324. "time": "2024-09-25T02:54:12+00:00"
  3325. },
  3326. {
  3327. "name": "hyperf/logger",
  3328. "version": "v3.1.42",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/hyperf/logger.git",
  3332. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3337. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "hyperf/contract": "~3.1.0",
  3342. "hyperf/support": "~3.1.0",
  3343. "hyperf/utils": "~3.1.0",
  3344. "monolog/monolog": "^2.7 || ^3.1",
  3345. "php": ">=8.1",
  3346. "psr/container": "^1.0 || ^2.0",
  3347. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3348. },
  3349. "type": "library",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-master": "3.1-dev"
  3353. },
  3354. "hyperf": {
  3355. "config": "Hyperf\\Logger\\ConfigProvider"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "Hyperf\\Logger\\": "src/"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "MIT"
  3366. ],
  3367. "description": "A logger component for hyperf.",
  3368. "homepage": "https://hyperf.io",
  3369. "keywords": [
  3370. "hyperf",
  3371. "logger",
  3372. "php"
  3373. ],
  3374. "support": {
  3375. "docs": "https://hyperf.wiki",
  3376. "issues": "https://github.com/hyperf/hyperf/issues",
  3377. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3378. "source": "https://github.com/hyperf/hyperf"
  3379. },
  3380. "funding": [
  3381. {
  3382. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3383. "type": "custom"
  3384. },
  3385. {
  3386. "url": "https://opencollective.com/hyperf",
  3387. "type": "open_collective"
  3388. }
  3389. ],
  3390. "time": "2024-09-25T02:54:12+00:00"
  3391. },
  3392. {
  3393. "name": "hyperf/macroable",
  3394. "version": "v3.1.42",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/hyperf/macroable.git",
  3398. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3403. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": ">=8.1"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "3.1-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "Hyperf\\Macroable\\": "src/"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3425. "homepage": "https://hyperf.io",
  3426. "keywords": [
  3427. "hyperf",
  3428. "macroable",
  3429. "php",
  3430. "swoole"
  3431. ],
  3432. "support": {
  3433. "docs": "https://hyperf.wiki",
  3434. "issues": "https://github.com/hyperf/hyperf/issues",
  3435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3436. "source": "https://github.com/hyperf/hyperf"
  3437. },
  3438. "funding": [
  3439. {
  3440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3441. "type": "custom"
  3442. },
  3443. {
  3444. "url": "https://opencollective.com/hyperf",
  3445. "type": "open_collective"
  3446. }
  3447. ],
  3448. "time": "2024-09-25T02:54:12+00:00"
  3449. },
  3450. {
  3451. "name": "hyperf/memory",
  3452. "version": "v3.1.42",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/hyperf/memory.git",
  3456. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3461. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "php": ">=8.1"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "branch-alias": {
  3470. "dev-master": "3.1-dev"
  3471. },
  3472. "hyperf": {
  3473. "config": "Hyperf\\Memory\\ConfigProvider"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Hyperf\\Memory\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "description": "An independent component that use to operate and manage memory.",
  3486. "homepage": "https://hyperf.io",
  3487. "keywords": [
  3488. "hyperf",
  3489. "memory",
  3490. "php",
  3491. "swoole"
  3492. ],
  3493. "support": {
  3494. "docs": "https://hyperf.wiki",
  3495. "issues": "https://github.com/hyperf/hyperf/issues",
  3496. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3497. "source": "https://github.com/hyperf/hyperf"
  3498. },
  3499. "funding": [
  3500. {
  3501. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3502. "type": "custom"
  3503. },
  3504. {
  3505. "url": "https://opencollective.com/hyperf",
  3506. "type": "open_collective"
  3507. }
  3508. ],
  3509. "time": "2024-09-25T02:54:12+00:00"
  3510. },
  3511. {
  3512. "name": "hyperf/model-listener",
  3513. "version": "v3.1.42",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/hyperf/model-listener.git",
  3517. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3522. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "hyperf/contract": "~3.1.0",
  3527. "hyperf/database": "~3.1.0",
  3528. "hyperf/di": "~3.1.0",
  3529. "hyperf/event": "~3.1.0",
  3530. "hyperf/support": "~3.1.0",
  3531. "hyperf/utils": "~3.1.0",
  3532. "php": ">=8.1",
  3533. "psr/container": "^1.0 || ^2.0"
  3534. },
  3535. "type": "library",
  3536. "extra": {
  3537. "branch-alias": {
  3538. "dev-master": "3.1-dev"
  3539. },
  3540. "hyperf": {
  3541. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3542. }
  3543. },
  3544. "autoload": {
  3545. "psr-4": {
  3546. "Hyperf\\ModelListener\\": "src/"
  3547. }
  3548. },
  3549. "notification-url": "https://packagist.org/downloads/",
  3550. "license": [
  3551. "MIT"
  3552. ],
  3553. "description": "A model listener for Hyperf.",
  3554. "homepage": "https://hyperf.io",
  3555. "keywords": [
  3556. "hyperf",
  3557. "model-listener",
  3558. "php",
  3559. "swoole"
  3560. ],
  3561. "support": {
  3562. "docs": "https://hyperf.wiki",
  3563. "issues": "https://github.com/hyperf/hyperf/issues",
  3564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3565. "source": "https://github.com/hyperf/hyperf"
  3566. },
  3567. "funding": [
  3568. {
  3569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3570. "type": "custom"
  3571. },
  3572. {
  3573. "url": "https://opencollective.com/hyperf",
  3574. "type": "open_collective"
  3575. }
  3576. ],
  3577. "time": "2024-09-25T02:54:12+00:00"
  3578. },
  3579. {
  3580. "name": "hyperf/nacos",
  3581. "version": "v3.1.42",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://github.com/hyperf/nacos.git",
  3585. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3590. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3591. "shasum": ""
  3592. },
  3593. "require": {
  3594. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3595. "hyperf/codec": "~3.1.0",
  3596. "hyperf/contract": "~3.1.0",
  3597. "hyperf/support": "~3.1.0",
  3598. "hyperf/utils": "~3.1.0",
  3599. "jetbrains/phpstorm-attributes": "^1.0",
  3600. "php": ">=8.1"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-master": "3.1-dev"
  3606. },
  3607. "hyperf": {
  3608. "config": "Hyperf\\Nacos\\ConfigProvider"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Hyperf\\Nacos\\": "src/"
  3614. }
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "description": "Nacos SDK",
  3621. "keywords": [
  3622. "hyperf",
  3623. "nacos",
  3624. "php"
  3625. ],
  3626. "support": {
  3627. "issues": "https://github.com/hyperf/nacos/issues",
  3628. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://opencollective.com/hyperf",
  3637. "type": "open_collective"
  3638. }
  3639. ],
  3640. "time": "2024-09-25T02:54:12+00:00"
  3641. },
  3642. {
  3643. "name": "hyperf/paginator",
  3644. "version": "v3.1.49",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/hyperf/paginator.git",
  3648. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3653. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "hyperf/contract": "~3.1.0",
  3658. "hyperf/support": "~3.1.0",
  3659. "hyperf/utils": "~3.1.0",
  3660. "php": ">=8.1"
  3661. },
  3662. "suggest": {
  3663. "hyperf/event": "Reqiured to use PageResolverListener.",
  3664. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3665. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3666. },
  3667. "type": "library",
  3668. "extra": {
  3669. "hyperf": {
  3670. "config": "Hyperf\\Paginator\\ConfigProvider"
  3671. },
  3672. "branch-alias": {
  3673. "dev-master": "3.1-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Hyperf\\Paginator\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "description": "A paginator component for hyperf.",
  3686. "homepage": "https://hyperf.io",
  3687. "keywords": [
  3688. "hyperf",
  3689. "paginator",
  3690. "php"
  3691. ],
  3692. "support": {
  3693. "docs": "https://hyperf.wiki",
  3694. "issues": "https://github.com/hyperf/hyperf/issues",
  3695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3696. "source": "https://github.com/hyperf/hyperf"
  3697. },
  3698. "funding": [
  3699. {
  3700. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3701. "type": "custom"
  3702. },
  3703. {
  3704. "url": "https://opencollective.com/hyperf",
  3705. "type": "open_collective"
  3706. }
  3707. ],
  3708. "time": "2024-12-17T09:42:13+00:00"
  3709. },
  3710. {
  3711. "name": "hyperf/pipeline",
  3712. "version": "v3.1.42",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/hyperf/pipeline.git",
  3716. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3721. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=8.1",
  3726. "psr/container": "^1.0 || ^2.0"
  3727. },
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "3.1-dev"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-4": {
  3736. "Hyperf\\Pipeline\\": "src/"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3744. "homepage": "https://hyperf.io",
  3745. "keywords": [
  3746. "hyperf",
  3747. "php",
  3748. "pipeline",
  3749. "swoole"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-09-25T02:54:12+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/pool",
  3771. "version": "v3.1.42",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/pool.git",
  3775. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3780. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "hyperf/contract": "~3.1.0",
  3785. "hyperf/support": "~3.1.0",
  3786. "hyperf/utils": "~3.1.0",
  3787. "php": ">=8.1",
  3788. "psr/container": "^1.0 || ^2.0"
  3789. },
  3790. "suggest": {
  3791. "psr/event-dispatcher": "Required to use events."
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-master": "3.1-dev"
  3797. },
  3798. "hyperf": {
  3799. "config": "Hyperf\\Pool\\ConfigProvider"
  3800. }
  3801. },
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Hyperf\\Pool\\": "src/"
  3805. }
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "description": "An independent universal connection pool component.",
  3812. "homepage": "https://hyperf.io",
  3813. "keywords": [
  3814. "connection-pool",
  3815. "hyperf",
  3816. "php",
  3817. "swoole"
  3818. ],
  3819. "support": {
  3820. "docs": "https://hyperf.wiki",
  3821. "issues": "https://github.com/hyperf/hyperf/issues",
  3822. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3823. "source": "https://github.com/hyperf/hyperf"
  3824. },
  3825. "funding": [
  3826. {
  3827. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3828. "type": "custom"
  3829. },
  3830. {
  3831. "url": "https://opencollective.com/hyperf",
  3832. "type": "open_collective"
  3833. }
  3834. ],
  3835. "time": "2024-09-25T02:54:12+00:00"
  3836. },
  3837. {
  3838. "name": "hyperf/process",
  3839. "version": "v3.1.48",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/hyperf/process.git",
  3843. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3848. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "hyperf/contract": "~3.1.0",
  3853. "hyperf/support": "~3.1.0",
  3854. "hyperf/utils": "~3.1.0",
  3855. "php": ">=8.1",
  3856. "psr/container": "^1.0 || ^2.0",
  3857. "psr/event-dispatcher": "^1.0"
  3858. },
  3859. "suggest": {
  3860. "hyperf/di": "Required to use annotations.",
  3861. "hyperf/event": "Required to dump the message before and after process.",
  3862. "hyperf/framework": "Required to use BootProcessListener."
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "hyperf": {
  3867. "config": "Hyperf\\Process\\ConfigProvider"
  3868. },
  3869. "branch-alias": {
  3870. "dev-master": "3.1-dev"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Hyperf\\Process\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "description": "A process component for hyperf.",
  3883. "homepage": "https://hyperf.io",
  3884. "keywords": [
  3885. "hyperf",
  3886. "php",
  3887. "process"
  3888. ],
  3889. "support": {
  3890. "docs": "https://hyperf.wiki",
  3891. "issues": "https://github.com/hyperf/hyperf/issues",
  3892. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3893. "source": "https://github.com/hyperf/hyperf"
  3894. },
  3895. "funding": [
  3896. {
  3897. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3898. "type": "custom"
  3899. },
  3900. {
  3901. "url": "https://opencollective.com/hyperf",
  3902. "type": "open_collective"
  3903. }
  3904. ],
  3905. "time": "2024-12-02T10:54:30+00:00"
  3906. },
  3907. {
  3908. "name": "hyperf/redis",
  3909. "version": "v3.1.42",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/hyperf/redis.git",
  3913. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3918. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "ext-redis": "^5.0 || ^6.0",
  3923. "hyperf/contract": "~3.1.0",
  3924. "hyperf/pool": "~3.1.0",
  3925. "hyperf/support": "~3.1.0",
  3926. "hyperf/tappable": "~3.1.0",
  3927. "hyperf/utils": "~3.1.0",
  3928. "php": ">=8.1",
  3929. "psr/container": "^1.0 || ^2.0"
  3930. },
  3931. "suggest": {
  3932. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3933. "hyperf/di": "Create the RedisPool via dependency injection."
  3934. },
  3935. "type": "library",
  3936. "extra": {
  3937. "branch-alias": {
  3938. "dev-master": "3.1-dev"
  3939. },
  3940. "hyperf": {
  3941. "config": "Hyperf\\Redis\\ConfigProvider"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Hyperf\\Redis\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "description": "A redis component for hyperf.",
  3954. "homepage": "https://hyperf.io",
  3955. "keywords": [
  3956. "hyperf",
  3957. "php",
  3958. "pool",
  3959. "redis"
  3960. ],
  3961. "support": {
  3962. "docs": "https://hyperf.wiki",
  3963. "issues": "https://github.com/hyperf/hyperf/issues",
  3964. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3965. "source": "https://github.com/hyperf/hyperf"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3970. "type": "custom"
  3971. },
  3972. {
  3973. "url": "https://opencollective.com/hyperf",
  3974. "type": "open_collective"
  3975. }
  3976. ],
  3977. "time": "2024-09-25T02:54:12+00:00"
  3978. },
  3979. {
  3980. "name": "hyperf/rpc",
  3981. "version": "v3.1.42",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/hyperf/rpc.git",
  3985. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3990. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "hyperf/codec": "~3.1.0",
  3995. "hyperf/contract": "~3.1.0",
  3996. "hyperf/support": "~3.1.0",
  3997. "jetbrains/phpstorm-attributes": "^1.0",
  3998. "php": ">=8.1"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "3.1-dev"
  4004. },
  4005. "hyperf": []
  4006. },
  4007. "autoload": {
  4008. "psr-4": {
  4009. "Hyperf\\Rpc\\": "src/"
  4010. }
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "description": "A rpc basic library for Hyperf.",
  4017. "homepage": "https://hyperf.io",
  4018. "keywords": [
  4019. "hyperf",
  4020. "php",
  4021. "rpc",
  4022. "swoole"
  4023. ],
  4024. "support": {
  4025. "docs": "https://hyperf.wiki",
  4026. "issues": "https://github.com/hyperf/hyperf/issues",
  4027. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4028. "source": "https://github.com/hyperf/hyperf"
  4029. },
  4030. "funding": [
  4031. {
  4032. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4033. "type": "custom"
  4034. },
  4035. {
  4036. "url": "https://opencollective.com/hyperf",
  4037. "type": "open_collective"
  4038. }
  4039. ],
  4040. "time": "2024-09-25T02:54:12+00:00"
  4041. },
  4042. {
  4043. "name": "hyperf/rpc-client",
  4044. "version": "v3.1.42",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/hyperf/rpc-client.git",
  4048. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4053. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4054. "shasum": ""
  4055. },
  4056. "require": {
  4057. "hyperf/code-parser": "~3.1.0",
  4058. "hyperf/load-balancer": "~3.1.0",
  4059. "hyperf/rpc": "~3.1.0",
  4060. "hyperf/support": "~3.1.0",
  4061. "hyperf/utils": "~3.1.0",
  4062. "jetbrains/phpstorm-attributes": "^1.0",
  4063. "php": ">=8.1",
  4064. "psr/container": "^1.0 || ^2.0"
  4065. },
  4066. "suggest": {
  4067. "hyperf/di": "For better container experience.",
  4068. "hyperf/pool": "Required to use connection pool.",
  4069. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "3.1-dev"
  4075. },
  4076. "hyperf": {
  4077. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Hyperf\\RpcClient\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "An abstract rpc server component for Hyperf.",
  4090. "homepage": "https://hyperf.io",
  4091. "keywords": [
  4092. "hyperf",
  4093. "json-rpc",
  4094. "php",
  4095. "rpc",
  4096. "rpc-client",
  4097. "swoole"
  4098. ],
  4099. "support": {
  4100. "docs": "https://hyperf.wiki",
  4101. "issues": "https://github.com/hyperf/hyperf/issues",
  4102. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4103. "source": "https://github.com/hyperf/hyperf"
  4104. },
  4105. "funding": [
  4106. {
  4107. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://opencollective.com/hyperf",
  4112. "type": "open_collective"
  4113. }
  4114. ],
  4115. "time": "2024-09-25T02:54:12+00:00"
  4116. },
  4117. {
  4118. "name": "hyperf/rpc-server",
  4119. "version": "v3.1.42",
  4120. "source": {
  4121. "type": "git",
  4122. "url": "https://github.com/hyperf/rpc-server.git",
  4123. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4124. },
  4125. "dist": {
  4126. "type": "zip",
  4127. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4128. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4129. "shasum": ""
  4130. },
  4131. "require": {
  4132. "hyperf/http-server": "~3.1.0",
  4133. "hyperf/rpc": "~3.1.0",
  4134. "php": ">=8.1"
  4135. },
  4136. "suggest": {
  4137. "hyperf/di": "Required to use annotations."
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-master": "3.1-dev"
  4143. },
  4144. "hyperf": {
  4145. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Hyperf\\RpcServer\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "description": "An abstract rpc server component for Hyperf.",
  4158. "homepage": "https://hyperf.io",
  4159. "keywords": [
  4160. "hyperf",
  4161. "php",
  4162. "rpc",
  4163. "rpc-server",
  4164. "swoole"
  4165. ],
  4166. "support": {
  4167. "docs": "https://hyperf.wiki",
  4168. "issues": "https://github.com/hyperf/hyperf/issues",
  4169. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4170. "source": "https://github.com/hyperf/hyperf"
  4171. },
  4172. "funding": [
  4173. {
  4174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4175. "type": "custom"
  4176. },
  4177. {
  4178. "url": "https://opencollective.com/hyperf",
  4179. "type": "open_collective"
  4180. }
  4181. ],
  4182. "time": "2024-09-25T02:54:12+00:00"
  4183. },
  4184. {
  4185. "name": "hyperf/serializer",
  4186. "version": "v3.1.42",
  4187. "source": {
  4188. "type": "git",
  4189. "url": "https://github.com/hyperf/serializer.git",
  4190. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4191. },
  4192. "dist": {
  4193. "type": "zip",
  4194. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4195. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4196. "shasum": ""
  4197. },
  4198. "require": {
  4199. "hyperf/contract": "~3.1.0",
  4200. "php": ">=8.1"
  4201. },
  4202. "suggest": {
  4203. "hyperf/di": "Required to use ExceptionNormalizer",
  4204. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4205. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4206. },
  4207. "type": "library",
  4208. "extra": {
  4209. "branch-alias": {
  4210. "dev-master": "3.1-dev"
  4211. },
  4212. "hyperf": {
  4213. "config": "Hyperf\\Serializer\\ConfigProvider"
  4214. }
  4215. },
  4216. "autoload": {
  4217. "psr-4": {
  4218. "Hyperf\\Serializer\\": "src/"
  4219. }
  4220. },
  4221. "notification-url": "https://packagist.org/downloads/",
  4222. "license": [
  4223. "MIT"
  4224. ],
  4225. "description": "A serializer component for Hyperf.",
  4226. "homepage": "https://hyperf.io",
  4227. "keywords": [
  4228. "hyperf",
  4229. "php",
  4230. "swoole",
  4231. "tappable"
  4232. ],
  4233. "support": {
  4234. "docs": "https://hyperf.wiki",
  4235. "issues": "https://github.com/hyperf/hyperf/issues",
  4236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4237. "source": "https://github.com/hyperf/hyperf"
  4238. },
  4239. "funding": [
  4240. {
  4241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4242. "type": "custom"
  4243. },
  4244. {
  4245. "url": "https://opencollective.com/hyperf",
  4246. "type": "open_collective"
  4247. }
  4248. ],
  4249. "time": "2024-09-25T02:54:12+00:00"
  4250. },
  4251. {
  4252. "name": "hyperf/server",
  4253. "version": "v3.1.42",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/hyperf/server.git",
  4257. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4262. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "hyperf/contract": "~3.1.0",
  4267. "hyperf/coordinator": "~3.1.0",
  4268. "hyperf/engine": "^2.8",
  4269. "hyperf/support": "~3.1.0",
  4270. "hyperf/tappable": "~3.1.0",
  4271. "php": ">=8.1",
  4272. "psr/container": "^1.0 || ^2.0",
  4273. "psr/event-dispatcher": "^1.0",
  4274. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4275. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4276. },
  4277. "suggest": {
  4278. "hyperf/event": "Dump the info after server start.",
  4279. "hyperf/framework": "Dump the info after server start."
  4280. },
  4281. "type": "library",
  4282. "extra": {
  4283. "branch-alias": {
  4284. "dev-master": "3.1-dev"
  4285. },
  4286. "hyperf": {
  4287. "config": "Hyperf\\Server\\ConfigProvider"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Hyperf\\Server\\": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "description": "A base server library for Hyperf.",
  4300. "homepage": "https://hyperf.io",
  4301. "keywords": [
  4302. "hyperf",
  4303. "php",
  4304. "server",
  4305. "swoole"
  4306. ],
  4307. "support": {
  4308. "docs": "https://hyperf.wiki",
  4309. "issues": "https://github.com/hyperf/hyperf/issues",
  4310. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4311. "source": "https://github.com/hyperf/hyperf"
  4312. },
  4313. "funding": [
  4314. {
  4315. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4316. "type": "custom"
  4317. },
  4318. {
  4319. "url": "https://opencollective.com/hyperf",
  4320. "type": "open_collective"
  4321. }
  4322. ],
  4323. "time": "2024-09-25T02:54:12+00:00"
  4324. },
  4325. {
  4326. "name": "hyperf/service-governance",
  4327. "version": "v3.1.42",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/hyperf/service-governance.git",
  4331. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4336. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4337. "shasum": ""
  4338. },
  4339. "require": {
  4340. "hyperf/contract": "~3.1.0",
  4341. "hyperf/support": "~3.1.0",
  4342. "jetbrains/phpstorm-attributes": "^1.0",
  4343. "php": ">=8.1"
  4344. },
  4345. "suggest": {
  4346. "hyperf/event": "Required to use RegisterServiceListener.",
  4347. "hyperf/framework": "Required to use RegisterServiceListener.",
  4348. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4349. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4350. },
  4351. "type": "library",
  4352. "extra": {
  4353. "branch-alias": {
  4354. "dev-master": "3.1-dev"
  4355. },
  4356. "hyperf": {
  4357. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "psr-4": {
  4362. "Hyperf\\ServiceGovernance\\": "src/"
  4363. }
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "description": "A service governance component for Hyperf.",
  4370. "homepage": "https://hyperf.io",
  4371. "keywords": [
  4372. "hyperf",
  4373. "php",
  4374. "service-governance",
  4375. "swoole"
  4376. ],
  4377. "support": {
  4378. "docs": "https://hyperf.wiki",
  4379. "issues": "https://github.com/hyperf/hyperf/issues",
  4380. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4381. "source": "https://github.com/hyperf/hyperf"
  4382. },
  4383. "funding": [
  4384. {
  4385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4386. "type": "custom"
  4387. },
  4388. {
  4389. "url": "https://opencollective.com/hyperf",
  4390. "type": "open_collective"
  4391. }
  4392. ],
  4393. "time": "2024-09-25T02:54:12+00:00"
  4394. },
  4395. {
  4396. "name": "hyperf/service-governance-consul",
  4397. "version": "v3.1.42",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/hyperf/service-governance-consul.git",
  4401. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4406. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "hyperf/consul": "~3.1.0",
  4411. "hyperf/contract": "~3.1.0",
  4412. "hyperf/service-governance": "~3.1.0",
  4413. "hyperf/support": "~3.1.0",
  4414. "hyperf/utils": "~3.1.0",
  4415. "php": ">=8.1"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. },
  4422. "hyperf": {
  4423. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A consul adapter for service governance.",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "consul-adapter",
  4439. "hyperf",
  4440. "php",
  4441. "service-governance",
  4442. "swoole"
  4443. ],
  4444. "support": {
  4445. "docs": "https://hyperf.wiki",
  4446. "issues": "https://github.com/hyperf/hyperf/issues",
  4447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4448. "source": "https://github.com/hyperf/hyperf"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://opencollective.com/hyperf",
  4457. "type": "open_collective"
  4458. }
  4459. ],
  4460. "time": "2024-09-25T02:54:12+00:00"
  4461. },
  4462. {
  4463. "name": "hyperf/service-governance-nacos",
  4464. "version": "v3.1.42",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4468. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4473. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "hyperf/codec": "~3.1.0",
  4478. "hyperf/contract": "~3.1.0",
  4479. "hyperf/nacos": "~3.1.0",
  4480. "hyperf/service-governance": "~3.1.0",
  4481. "hyperf/support": "~3.1.0",
  4482. "hyperf/utils": "~3.1.0",
  4483. "php": ">=8.1"
  4484. },
  4485. "type": "library",
  4486. "extra": {
  4487. "branch-alias": {
  4488. "dev-master": "3.1-dev"
  4489. },
  4490. "hyperf": {
  4491. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "psr-4": {
  4496. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4497. }
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "description": "A nacos adapter for service governance.",
  4504. "homepage": "https://hyperf.io",
  4505. "keywords": [
  4506. "hyperf",
  4507. "nacos-adapter",
  4508. "php",
  4509. "service-governance",
  4510. "swoole"
  4511. ],
  4512. "support": {
  4513. "docs": "https://hyperf.wiki",
  4514. "issues": "https://github.com/hyperf/hyperf/issues",
  4515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4516. "source": "https://github.com/hyperf/hyperf"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4521. "type": "custom"
  4522. },
  4523. {
  4524. "url": "https://opencollective.com/hyperf",
  4525. "type": "open_collective"
  4526. }
  4527. ],
  4528. "time": "2024-09-25T02:54:12+00:00"
  4529. },
  4530. {
  4531. "name": "hyperf/snowflake",
  4532. "version": "v3.1.42",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/hyperf/snowflake.git",
  4536. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4541. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "hyperf/contract": "~3.1.0",
  4546. "php": ">=8.1"
  4547. },
  4548. "suggest": {
  4549. "hyperf/config": "Required to read snowflake config.",
  4550. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4551. "psr/container": "Required to use MetaGeneratorFactory."
  4552. },
  4553. "type": "library",
  4554. "extra": {
  4555. "branch-alias": {
  4556. "dev-master": "3.1-dev"
  4557. },
  4558. "hyperf": {
  4559. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4560. }
  4561. },
  4562. "autoload": {
  4563. "psr-4": {
  4564. "Hyperf\\Snowflake\\": "src/"
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "description": "A snowflake library",
  4572. "homepage": "https://hyperf.io",
  4573. "keywords": [
  4574. "php",
  4575. "snowflake"
  4576. ],
  4577. "support": {
  4578. "docs": "https://hyperf.wiki",
  4579. "issues": "https://github.com/hyperf/hyperf/issues",
  4580. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4581. "source": "https://github.com/hyperf/hyperf"
  4582. },
  4583. "funding": [
  4584. {
  4585. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4586. "type": "custom"
  4587. },
  4588. {
  4589. "url": "https://opencollective.com/hyperf",
  4590. "type": "open_collective"
  4591. }
  4592. ],
  4593. "time": "2024-09-25T02:54:12+00:00"
  4594. },
  4595. {
  4596. "name": "hyperf/stdlib",
  4597. "version": "v3.1.42",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/hyperf/stdlib.git",
  4601. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4606. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "php": ">=8.1"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "psr-4": {
  4620. "Hyperf\\Stdlib\\": "src/"
  4621. }
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "description": "A stdlib component for Hyperf.",
  4628. "homepage": "https://hyperf.io",
  4629. "keywords": [
  4630. "hyperf",
  4631. "php",
  4632. "stdlib",
  4633. "swoole"
  4634. ],
  4635. "support": {
  4636. "docs": "https://hyperf.wiki",
  4637. "issues": "https://github.com/hyperf/hyperf/issues",
  4638. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4639. "source": "https://github.com/hyperf/hyperf"
  4640. },
  4641. "funding": [
  4642. {
  4643. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4644. "type": "custom"
  4645. },
  4646. {
  4647. "url": "https://opencollective.com/hyperf",
  4648. "type": "open_collective"
  4649. }
  4650. ],
  4651. "time": "2024-09-25T02:54:12+00:00"
  4652. },
  4653. {
  4654. "name": "hyperf/stringable",
  4655. "version": "v3.1.43",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/hyperf/stringable.git",
  4659. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4664. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "ext-mbstring": "*",
  4669. "hyperf/collection": "~3.1.0",
  4670. "hyperf/conditionable": "~3.1.0",
  4671. "hyperf/macroable": "~3.1.0",
  4672. "hyperf/tappable": "~3.1.0",
  4673. "php": ">=8.1"
  4674. },
  4675. "suggest": {
  4676. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4677. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4678. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "branch-alias": {
  4683. "dev-master": "3.1-dev"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "files": [
  4688. "src/Functions.php"
  4689. ],
  4690. "psr-4": {
  4691. "Hyperf\\Stringable\\": "src/"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "description": "Hyperf Stringable package which come from illuminate/support",
  4699. "homepage": "https://hyperf.io",
  4700. "keywords": [
  4701. "hyperf",
  4702. "php",
  4703. "stringable",
  4704. "swoole"
  4705. ],
  4706. "support": {
  4707. "docs": "https://hyperf.wiki",
  4708. "issues": "https://github.com/hyperf/hyperf/issues",
  4709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4710. "source": "https://github.com/hyperf/hyperf"
  4711. },
  4712. "funding": [
  4713. {
  4714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4715. "type": "custom"
  4716. },
  4717. {
  4718. "url": "https://opencollective.com/hyperf",
  4719. "type": "open_collective"
  4720. }
  4721. ],
  4722. "time": "2024-10-09T02:28:40+00:00"
  4723. },
  4724. {
  4725. "name": "hyperf/support",
  4726. "version": "v3.1.47",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/hyperf/support.git",
  4730. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4735. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "hyperf/collection": "~3.1.0",
  4740. "hyperf/context": "~3.1.0",
  4741. "hyperf/contract": "~3.1.0",
  4742. "hyperf/coroutine": "~3.1.0",
  4743. "hyperf/macroable": "~3.1.0",
  4744. "hyperf/stringable": "~3.1.0",
  4745. "php": ">=8.1"
  4746. },
  4747. "suggest": {
  4748. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4749. },
  4750. "type": "library",
  4751. "extra": {
  4752. "branch-alias": {
  4753. "dev-master": "3.1-dev"
  4754. }
  4755. },
  4756. "autoload": {
  4757. "files": [
  4758. "src/Functions.php"
  4759. ],
  4760. "psr-4": {
  4761. "Hyperf\\Support\\": "src/"
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "description": "A support component for Hyperf.",
  4769. "homepage": "https://hyperf.io",
  4770. "keywords": [
  4771. "hyperf",
  4772. "php",
  4773. "support",
  4774. "swoole"
  4775. ],
  4776. "support": {
  4777. "docs": "https://hyperf.wiki",
  4778. "issues": "https://github.com/hyperf/hyperf/issues",
  4779. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4780. "source": "https://github.com/hyperf/hyperf"
  4781. },
  4782. "funding": [
  4783. {
  4784. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4785. "type": "custom"
  4786. },
  4787. {
  4788. "url": "https://opencollective.com/hyperf",
  4789. "type": "open_collective"
  4790. }
  4791. ],
  4792. "time": "2024-11-28T01:51:55+00:00"
  4793. },
  4794. {
  4795. "name": "hyperf/tappable",
  4796. "version": "v3.1.42",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/hyperf/tappable.git",
  4800. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4805. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4806. "shasum": ""
  4807. },
  4808. "require": {
  4809. "php": ">=8.1"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "3.1-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "files": [
  4819. "src/Functions.php"
  4820. ],
  4821. "psr-4": {
  4822. "Hyperf\\Tappable\\": "src/"
  4823. }
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4830. "homepage": "https://hyperf.io",
  4831. "keywords": [
  4832. "hyperf",
  4833. "php",
  4834. "swoole",
  4835. "tappable"
  4836. ],
  4837. "support": {
  4838. "docs": "https://hyperf.wiki",
  4839. "issues": "https://github.com/hyperf/hyperf/issues",
  4840. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4841. "source": "https://github.com/hyperf/hyperf"
  4842. },
  4843. "funding": [
  4844. {
  4845. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4846. "type": "custom"
  4847. },
  4848. {
  4849. "url": "https://opencollective.com/hyperf",
  4850. "type": "open_collective"
  4851. }
  4852. ],
  4853. "time": "2024-09-25T02:54:12+00:00"
  4854. },
  4855. {
  4856. "name": "hyperf/translation",
  4857. "version": "v3.1.42",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://github.com/hyperf/translation.git",
  4861. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4866. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4867. "shasum": ""
  4868. },
  4869. "require": {
  4870. "hyperf/contract": "~3.1.0",
  4871. "hyperf/macroable": "~3.1.0",
  4872. "hyperf/support": "~3.1.0",
  4873. "hyperf/utils": "~3.1.0",
  4874. "php": ">=8.1",
  4875. "psr/container": "^1.0 || ^2.0"
  4876. },
  4877. "type": "library",
  4878. "extra": {
  4879. "branch-alias": {
  4880. "dev-master": "3.1-dev"
  4881. },
  4882. "hyperf": {
  4883. "config": "Hyperf\\Translation\\ConfigProvider"
  4884. }
  4885. },
  4886. "autoload": {
  4887. "files": [
  4888. "src/Functions.php"
  4889. ],
  4890. "psr-4": {
  4891. "Hyperf\\Translation\\": "src/"
  4892. }
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "MIT"
  4897. ],
  4898. "description": "An independent translation component, forked by illuminate/translation.",
  4899. "keywords": [
  4900. "hyperf",
  4901. "translation"
  4902. ],
  4903. "support": {
  4904. "issues": "https://github.com/hyperf/translation/issues",
  4905. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4906. },
  4907. "funding": [
  4908. {
  4909. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4910. "type": "custom"
  4911. },
  4912. {
  4913. "url": "https://opencollective.com/hyperf",
  4914. "type": "open_collective"
  4915. }
  4916. ],
  4917. "time": "2024-09-25T02:54:12+00:00"
  4918. },
  4919. {
  4920. "name": "hyperf/utils",
  4921. "version": "v3.1.42",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/hyperf/utils.git",
  4925. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4930. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "doctrine/inflector": "^2.0",
  4935. "hyperf/code-parser": "~3.1.0",
  4936. "hyperf/codec": "~3.1.0",
  4937. "hyperf/collection": "~3.1.0",
  4938. "hyperf/context": "~3.1.0",
  4939. "hyperf/contract": "~3.1.0",
  4940. "hyperf/coordinator": "~3.1.0",
  4941. "hyperf/coroutine": "~3.1.0",
  4942. "hyperf/engine": "^2.0",
  4943. "hyperf/macroable": "~3.1.0",
  4944. "hyperf/serializer": "~3.1.0",
  4945. "hyperf/stringable": "~3.1.0",
  4946. "hyperf/support": "~3.1.0",
  4947. "php": ">=8.1"
  4948. },
  4949. "type": "library",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-master": "3.1-dev"
  4953. }
  4954. },
  4955. "notification-url": "https://packagist.org/downloads/",
  4956. "license": [
  4957. "MIT"
  4958. ],
  4959. "description": "A tools package that could help developer solved the problem quickly.",
  4960. "homepage": "https://hyperf.io",
  4961. "keywords": [
  4962. "hyperf",
  4963. "php",
  4964. "swoole",
  4965. "utils"
  4966. ],
  4967. "support": {
  4968. "docs": "https://hyperf.wiki",
  4969. "issues": "https://github.com/hyperf/hyperf/issues",
  4970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4971. "source": "https://github.com/hyperf/hyperf"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://opencollective.com/hyperf",
  4980. "type": "open_collective"
  4981. }
  4982. ],
  4983. "time": "2024-09-25T02:54:12+00:00"
  4984. },
  4985. {
  4986. "name": "hyperf/validation",
  4987. "version": "v3.1.47",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/hyperf/validation.git",
  4991. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4996. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4997. "shasum": ""
  4998. },
  4999. "require": {
  5000. "egulias/email-validator": "^3.0",
  5001. "hyperf/collection": "~3.1.0",
  5002. "hyperf/conditionable": "~3.1.0",
  5003. "hyperf/contract": "~3.1.0",
  5004. "hyperf/di": "~3.1.0",
  5005. "hyperf/framework": "~3.1.0",
  5006. "hyperf/macroable": "~3.1.0",
  5007. "hyperf/stringable": "~3.1.0",
  5008. "hyperf/support": "~3.1.0",
  5009. "hyperf/tappable": "~3.1.0",
  5010. "hyperf/translation": "~3.1.0",
  5011. "hyperf/utils": "~3.1.0",
  5012. "nesbot/carbon": "^2.21",
  5013. "php": ">=8.1",
  5014. "psr/container": "^1.0 || ^2.0",
  5015. "psr/event-dispatcher": "^1.0",
  5016. "psr/http-message": "^1.0 || ^2.0"
  5017. },
  5018. "suggest": {
  5019. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5020. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5021. },
  5022. "type": "library",
  5023. "extra": {
  5024. "hyperf": {
  5025. "config": "Hyperf\\Validation\\ConfigProvider"
  5026. },
  5027. "branch-alias": {
  5028. "dev-master": "3.1-dev"
  5029. }
  5030. },
  5031. "autoload": {
  5032. "psr-4": {
  5033. "Hyperf\\Validation\\": "src/"
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "description": "hyperf validation",
  5041. "keywords": [
  5042. "hyperf",
  5043. "validation"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/hyperf/validation/issues",
  5047. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5052. "type": "custom"
  5053. },
  5054. {
  5055. "url": "https://opencollective.com/hyperf",
  5056. "type": "open_collective"
  5057. }
  5058. ],
  5059. "time": "2024-11-28T01:51:55+00:00"
  5060. },
  5061. {
  5062. "name": "hyperf/websocket-server",
  5063. "version": "v3.1.42",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/hyperf/websocket-server.git",
  5067. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  5072. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "hyperf/collection": "~3.1.0",
  5077. "hyperf/contract": "~3.1.0",
  5078. "hyperf/exception-handler": "~3.1.0",
  5079. "hyperf/http-server": "~3.1.0",
  5080. "hyperf/support": "~3.1.0",
  5081. "hyperf/utils": "~3.1.0",
  5082. "php": ">=8.1",
  5083. "psr/container": "^1.0 || ^2.0",
  5084. "psr/event-dispatcher": "^1.0"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "branch-alias": {
  5089. "dev-master": "3.1-dev"
  5090. },
  5091. "hyperf": {
  5092. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5093. }
  5094. },
  5095. "autoload": {
  5096. "psr-4": {
  5097. "Hyperf\\WebSocketServer\\": "src/"
  5098. }
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "MIT"
  5103. ],
  5104. "description": "A websocket server library for Hyperf.",
  5105. "homepage": "https://hyperf.io",
  5106. "keywords": [
  5107. "hyperf",
  5108. "php",
  5109. "swoole",
  5110. "websocket"
  5111. ],
  5112. "support": {
  5113. "docs": "https://hyperf.wiki",
  5114. "issues": "https://github.com/hyperf/hyperf/issues",
  5115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5116. "source": "https://github.com/hyperf/hyperf"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5121. "type": "custom"
  5122. },
  5123. {
  5124. "url": "https://opencollective.com/hyperf",
  5125. "type": "open_collective"
  5126. }
  5127. ],
  5128. "time": "2024-09-25T02:54:12+00:00"
  5129. },
  5130. {
  5131. "name": "jetbrains/phpstorm-attributes",
  5132. "version": "1.2",
  5133. "source": {
  5134. "type": "git",
  5135. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5136. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5137. },
  5138. "dist": {
  5139. "type": "zip",
  5140. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5141. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5142. "shasum": ""
  5143. },
  5144. "type": "library",
  5145. "autoload": {
  5146. "psr-4": {
  5147. "JetBrains\\PhpStorm\\": "src/"
  5148. }
  5149. },
  5150. "notification-url": "https://packagist.org/downloads/",
  5151. "license": [
  5152. "Apache-2.0"
  5153. ],
  5154. "authors": [
  5155. {
  5156. "name": "JetBrains",
  5157. "homepage": "https://www.jetbrains.com"
  5158. }
  5159. ],
  5160. "description": "PhpStorm specific attributes",
  5161. "keywords": [
  5162. "attributes",
  5163. "jetbrains",
  5164. "phpstorm"
  5165. ],
  5166. "support": {
  5167. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5168. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5169. },
  5170. "time": "2024-10-11T10:46:19+00:00"
  5171. },
  5172. {
  5173. "name": "laminas/laminas-mime",
  5174. "version": "2.12.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/laminas/laminas-mime.git",
  5178. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5183. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5188. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5189. },
  5190. "conflict": {
  5191. "zendframework/zend-mime": "*"
  5192. },
  5193. "require-dev": {
  5194. "laminas/laminas-coding-standard": "~2.4.0",
  5195. "laminas/laminas-mail": "^2.19.0",
  5196. "phpunit/phpunit": "~9.5.25"
  5197. },
  5198. "suggest": {
  5199. "laminas/laminas-mail": "Laminas\\Mail component"
  5200. },
  5201. "type": "library",
  5202. "autoload": {
  5203. "psr-4": {
  5204. "Laminas\\Mime\\": "src/"
  5205. }
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "BSD-3-Clause"
  5210. ],
  5211. "description": "Create and parse MIME messages and parts",
  5212. "homepage": "https://laminas.dev",
  5213. "keywords": [
  5214. "laminas",
  5215. "mime"
  5216. ],
  5217. "support": {
  5218. "chat": "https://laminas.dev/chat",
  5219. "docs": "https://docs.laminas.dev/laminas-mime/",
  5220. "forum": "https://discourse.laminas.dev",
  5221. "issues": "https://github.com/laminas/laminas-mime/issues",
  5222. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5223. "source": "https://github.com/laminas/laminas-mime"
  5224. },
  5225. "funding": [
  5226. {
  5227. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5228. "type": "community_bridge"
  5229. }
  5230. ],
  5231. "abandoned": "symfony/mime",
  5232. "time": "2023-11-02T16:47:19+00:00"
  5233. },
  5234. {
  5235. "name": "laminas/laminas-stdlib",
  5236. "version": "3.20.0",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/laminas/laminas-stdlib.git",
  5240. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5245. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5246. "shasum": ""
  5247. },
  5248. "require": {
  5249. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5250. },
  5251. "conflict": {
  5252. "zendframework/zend-stdlib": "*"
  5253. },
  5254. "require-dev": {
  5255. "laminas/laminas-coding-standard": "^3.0",
  5256. "phpbench/phpbench": "^1.3.1",
  5257. "phpunit/phpunit": "^10.5.38",
  5258. "psalm/plugin-phpunit": "^0.19.0",
  5259. "vimeo/psalm": "^5.26.1"
  5260. },
  5261. "type": "library",
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Laminas\\Stdlib\\": "src/"
  5265. }
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "license": [
  5269. "BSD-3-Clause"
  5270. ],
  5271. "description": "SPL extensions, array utilities, error handlers, and more",
  5272. "homepage": "https://laminas.dev",
  5273. "keywords": [
  5274. "laminas",
  5275. "stdlib"
  5276. ],
  5277. "support": {
  5278. "chat": "https://laminas.dev/chat",
  5279. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5280. "forum": "https://discourse.laminas.dev",
  5281. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5282. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5283. "source": "https://github.com/laminas/laminas-stdlib"
  5284. },
  5285. "funding": [
  5286. {
  5287. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5288. "type": "community_bridge"
  5289. }
  5290. ],
  5291. "time": "2024-10-29T13:46:07+00:00"
  5292. },
  5293. {
  5294. "name": "lcobucci/clock",
  5295. "version": "2.3.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/lcobucci/clock.git",
  5299. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5304. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "php": "~8.1.0 || ~8.2.0",
  5309. "stella-maris/clock": "^0.1.7"
  5310. },
  5311. "provide": {
  5312. "psr/clock-implementation": "1.0"
  5313. },
  5314. "require-dev": {
  5315. "infection/infection": "^0.26",
  5316. "lcobucci/coding-standard": "^9.0",
  5317. "phpstan/extension-installer": "^1.2",
  5318. "phpstan/phpstan": "^1.9.4",
  5319. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5320. "phpstan/phpstan-phpunit": "^1.3.2",
  5321. "phpstan/phpstan-strict-rules": "^1.4.4",
  5322. "phpunit/phpunit": "^9.5.27"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Lcobucci\\Clock\\": "src"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "MIT"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Luís Cobucci",
  5337. "email": "lcobucci@gmail.com"
  5338. }
  5339. ],
  5340. "description": "Yet another clock abstraction",
  5341. "support": {
  5342. "issues": "https://github.com/lcobucci/clock/issues",
  5343. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5344. },
  5345. "funding": [
  5346. {
  5347. "url": "https://github.com/lcobucci",
  5348. "type": "github"
  5349. },
  5350. {
  5351. "url": "https://www.patreon.com/lcobucci",
  5352. "type": "patreon"
  5353. }
  5354. ],
  5355. "time": "2022-12-19T14:38:11+00:00"
  5356. },
  5357. {
  5358. "name": "lcobucci/jwt",
  5359. "version": "4.1.5",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/lcobucci/jwt.git",
  5363. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5368. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "ext-hash": "*",
  5373. "ext-json": "*",
  5374. "ext-mbstring": "*",
  5375. "ext-openssl": "*",
  5376. "ext-sodium": "*",
  5377. "lcobucci/clock": "^2.0",
  5378. "php": "^7.4 || ^8.0"
  5379. },
  5380. "require-dev": {
  5381. "infection/infection": "^0.21",
  5382. "lcobucci/coding-standard": "^6.0",
  5383. "mikey179/vfsstream": "^1.6.7",
  5384. "phpbench/phpbench": "^1.0",
  5385. "phpstan/extension-installer": "^1.0",
  5386. "phpstan/phpstan": "^0.12",
  5387. "phpstan/phpstan-deprecation-rules": "^0.12",
  5388. "phpstan/phpstan-phpunit": "^0.12",
  5389. "phpstan/phpstan-strict-rules": "^0.12",
  5390. "phpunit/php-invoker": "^3.1",
  5391. "phpunit/phpunit": "^9.5"
  5392. },
  5393. "type": "library",
  5394. "autoload": {
  5395. "psr-4": {
  5396. "Lcobucci\\JWT\\": "src"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "BSD-3-Clause"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Luís Cobucci",
  5406. "email": "lcobucci@gmail.com",
  5407. "role": "Developer"
  5408. }
  5409. ],
  5410. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5411. "keywords": [
  5412. "JWS",
  5413. "jwt"
  5414. ],
  5415. "support": {
  5416. "issues": "https://github.com/lcobucci/jwt/issues",
  5417. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5418. },
  5419. "funding": [
  5420. {
  5421. "url": "https://github.com/lcobucci",
  5422. "type": "github"
  5423. },
  5424. {
  5425. "url": "https://www.patreon.com/lcobucci",
  5426. "type": "patreon"
  5427. }
  5428. ],
  5429. "time": "2021-09-28T19:34:56+00:00"
  5430. },
  5431. {
  5432. "name": "markrogoyski/math-php",
  5433. "version": "v2.10.0",
  5434. "source": {
  5435. "type": "git",
  5436. "url": "https://github.com/markrogoyski/math-php.git",
  5437. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5438. },
  5439. "dist": {
  5440. "type": "zip",
  5441. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5442. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5443. "shasum": ""
  5444. },
  5445. "require": {
  5446. "ext-json": "*",
  5447. "php": ">=7.2.0"
  5448. },
  5449. "require-dev": {
  5450. "php-coveralls/php-coveralls": "^2.0",
  5451. "php-parallel-lint/php-parallel-lint": "^1.2",
  5452. "phploc/phploc": "*",
  5453. "phpmd/phpmd": "^2.6",
  5454. "phpstan/phpstan": "^1.10",
  5455. "phpunit/phpunit": "^8.5",
  5456. "squizlabs/php_codesniffer": "3.*"
  5457. },
  5458. "type": "library",
  5459. "autoload": {
  5460. "psr-4": {
  5461. "MathPHP\\": "src/"
  5462. }
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Mark Rogoyski",
  5471. "email": "mark@rogoyski.com",
  5472. "homepage": "https://github.com/markrogoyski",
  5473. "role": "Lead developer"
  5474. },
  5475. {
  5476. "name": "Kevin Nowaczyk",
  5477. "homepage": "https://github.com/Beakerboy",
  5478. "role": "Developer"
  5479. },
  5480. {
  5481. "name": "MathPHP Community of Contributors",
  5482. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5483. }
  5484. ],
  5485. "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",
  5486. "homepage": "https://github.com/markrogoyski/math-php/",
  5487. "keywords": [
  5488. "algebra",
  5489. "combinatorics",
  5490. "distributions",
  5491. "linear algebra",
  5492. "math",
  5493. "mathematics",
  5494. "matrix",
  5495. "numerical analysis",
  5496. "probability",
  5497. "regressions",
  5498. "statistics"
  5499. ],
  5500. "support": {
  5501. "issues": "https://github.com/markrogoyski/math-php/issues",
  5502. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5503. },
  5504. "time": "2024-04-17T00:09:51+00:00"
  5505. },
  5506. {
  5507. "name": "monolog/monolog",
  5508. "version": "3.8.1",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/Seldaek/monolog.git",
  5512. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5517. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5518. "shasum": ""
  5519. },
  5520. "require": {
  5521. "php": ">=8.1",
  5522. "psr/log": "^2.0 || ^3.0"
  5523. },
  5524. "provide": {
  5525. "psr/log-implementation": "3.0.0"
  5526. },
  5527. "require-dev": {
  5528. "aws/aws-sdk-php": "^3.0",
  5529. "doctrine/couchdb": "~1.0@dev",
  5530. "elasticsearch/elasticsearch": "^7 || ^8",
  5531. "ext-json": "*",
  5532. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5533. "guzzlehttp/guzzle": "^7.4.5",
  5534. "guzzlehttp/psr7": "^2.2",
  5535. "mongodb/mongodb": "^1.8",
  5536. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5537. "php-console/php-console": "^3.1.8",
  5538. "phpstan/phpstan": "^2",
  5539. "phpstan/phpstan-deprecation-rules": "^2",
  5540. "phpstan/phpstan-strict-rules": "^2",
  5541. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5542. "predis/predis": "^1.1 || ^2",
  5543. "rollbar/rollbar": "^4.0",
  5544. "ruflin/elastica": "^7 || ^8",
  5545. "symfony/mailer": "^5.4 || ^6",
  5546. "symfony/mime": "^5.4 || ^6"
  5547. },
  5548. "suggest": {
  5549. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5550. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5551. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5552. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5553. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5554. "ext-mbstring": "Allow to work properly with unicode symbols",
  5555. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5556. "ext-openssl": "Required to send log messages using SSL",
  5557. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5558. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5559. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5560. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5561. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5562. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "branch-alias": {
  5567. "dev-main": "3.x-dev"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "psr-4": {
  5572. "Monolog\\": "src/Monolog"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "MIT"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "Jordi Boggiano",
  5582. "email": "j.boggiano@seld.be",
  5583. "homepage": "https://seld.be"
  5584. }
  5585. ],
  5586. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5587. "homepage": "https://github.com/Seldaek/monolog",
  5588. "keywords": [
  5589. "log",
  5590. "logging",
  5591. "psr-3"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/Seldaek/monolog/issues",
  5595. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5596. },
  5597. "funding": [
  5598. {
  5599. "url": "https://github.com/Seldaek",
  5600. "type": "github"
  5601. },
  5602. {
  5603. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5604. "type": "tidelift"
  5605. }
  5606. ],
  5607. "time": "2024-12-05T17:15:07+00:00"
  5608. },
  5609. {
  5610. "name": "nesbot/carbon",
  5611. "version": "2.72.5",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/briannesbitt/Carbon.git",
  5615. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5620. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "carbonphp/carbon-doctrine-types": "*",
  5625. "ext-json": "*",
  5626. "php": "^7.1.8 || ^8.0",
  5627. "psr/clock": "^1.0",
  5628. "symfony/polyfill-mbstring": "^1.0",
  5629. "symfony/polyfill-php80": "^1.16",
  5630. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5631. },
  5632. "provide": {
  5633. "psr/clock-implementation": "1.0"
  5634. },
  5635. "require-dev": {
  5636. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5637. "doctrine/orm": "^2.7 || ^3.0",
  5638. "friendsofphp/php-cs-fixer": "^3.0",
  5639. "kylekatarnls/multi-tester": "^2.0",
  5640. "ondrejmirtes/better-reflection": "*",
  5641. "phpmd/phpmd": "^2.9",
  5642. "phpstan/extension-installer": "^1.0",
  5643. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5644. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5645. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5646. "squizlabs/php_codesniffer": "^3.4"
  5647. },
  5648. "bin": [
  5649. "bin/carbon"
  5650. ],
  5651. "type": "library",
  5652. "extra": {
  5653. "branch-alias": {
  5654. "dev-master": "3.x-dev",
  5655. "dev-2.x": "2.x-dev"
  5656. },
  5657. "laravel": {
  5658. "providers": [
  5659. "Carbon\\Laravel\\ServiceProvider"
  5660. ]
  5661. },
  5662. "phpstan": {
  5663. "includes": [
  5664. "extension.neon"
  5665. ]
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Carbon\\": "src/Carbon/"
  5671. }
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "MIT"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "Brian Nesbitt",
  5680. "email": "brian@nesbot.com",
  5681. "homepage": "https://markido.com"
  5682. },
  5683. {
  5684. "name": "kylekatarnls",
  5685. "homepage": "https://github.com/kylekatarnls"
  5686. }
  5687. ],
  5688. "description": "An API extension for DateTime that supports 281 different languages.",
  5689. "homepage": "https://carbon.nesbot.com",
  5690. "keywords": [
  5691. "date",
  5692. "datetime",
  5693. "time"
  5694. ],
  5695. "support": {
  5696. "docs": "https://carbon.nesbot.com/docs",
  5697. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5698. "source": "https://github.com/briannesbitt/Carbon"
  5699. },
  5700. "funding": [
  5701. {
  5702. "url": "https://github.com/sponsors/kylekatarnls",
  5703. "type": "github"
  5704. },
  5705. {
  5706. "url": "https://opencollective.com/Carbon#sponsor",
  5707. "type": "opencollective"
  5708. },
  5709. {
  5710. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5711. "type": "tidelift"
  5712. }
  5713. ],
  5714. "time": "2024-06-03T19:18:41+00:00"
  5715. },
  5716. {
  5717. "name": "nikic/fast-route",
  5718. "version": "v1.3.0",
  5719. "source": {
  5720. "type": "git",
  5721. "url": "https://github.com/nikic/FastRoute.git",
  5722. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5723. },
  5724. "dist": {
  5725. "type": "zip",
  5726. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5727. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5728. "shasum": ""
  5729. },
  5730. "require": {
  5731. "php": ">=5.4.0"
  5732. },
  5733. "require-dev": {
  5734. "phpunit/phpunit": "^4.8.35|~5.7"
  5735. },
  5736. "type": "library",
  5737. "autoload": {
  5738. "files": [
  5739. "src/functions.php"
  5740. ],
  5741. "psr-4": {
  5742. "FastRoute\\": "src/"
  5743. }
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "BSD-3-Clause"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Nikita Popov",
  5752. "email": "nikic@php.net"
  5753. }
  5754. ],
  5755. "description": "Fast request router for PHP",
  5756. "keywords": [
  5757. "router",
  5758. "routing"
  5759. ],
  5760. "support": {
  5761. "issues": "https://github.com/nikic/FastRoute/issues",
  5762. "source": "https://github.com/nikic/FastRoute/tree/master"
  5763. },
  5764. "time": "2018-02-13T20:26:39+00:00"
  5765. },
  5766. {
  5767. "name": "nikic/php-parser",
  5768. "version": "v4.19.4",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/nikic/PHP-Parser.git",
  5772. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5777. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5778. "shasum": ""
  5779. },
  5780. "require": {
  5781. "ext-tokenizer": "*",
  5782. "php": ">=7.1"
  5783. },
  5784. "require-dev": {
  5785. "ircmaxell/php-yacc": "^0.0.7",
  5786. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5787. },
  5788. "bin": [
  5789. "bin/php-parse"
  5790. ],
  5791. "type": "library",
  5792. "extra": {
  5793. "branch-alias": {
  5794. "dev-master": "4.9-dev"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "psr-4": {
  5799. "PhpParser\\": "lib/PhpParser"
  5800. }
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "BSD-3-Clause"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Nikita Popov"
  5809. }
  5810. ],
  5811. "description": "A PHP parser written in PHP",
  5812. "keywords": [
  5813. "parser",
  5814. "php"
  5815. ],
  5816. "support": {
  5817. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5818. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5819. },
  5820. "time": "2024-09-29T15:01:53+00:00"
  5821. },
  5822. {
  5823. "name": "openai-php/client",
  5824. "version": "v0.10.3",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/openai-php/client.git",
  5828. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5833. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": "^8.1.0",
  5838. "php-http/discovery": "^1.20.0",
  5839. "php-http/multipart-stream-builder": "^1.4.2",
  5840. "psr/http-client": "^1.0.3",
  5841. "psr/http-client-implementation": "^1.0.1",
  5842. "psr/http-factory-implementation": "*",
  5843. "psr/http-message": "^1.1.0|^2.0.0"
  5844. },
  5845. "require-dev": {
  5846. "guzzlehttp/guzzle": "^7.9.2",
  5847. "guzzlehttp/psr7": "^2.7.0",
  5848. "laravel/pint": "^1.18.1",
  5849. "mockery/mockery": "^1.6.12",
  5850. "nunomaduro/collision": "^7.11.0|^8.5.0",
  5851. "pestphp/pest": "^2.36.0|^3.5.0",
  5852. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  5853. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  5854. "phpstan/phpstan": "^1.12.7",
  5855. "symfony/var-dumper": "^6.4.11|^7.1.5"
  5856. },
  5857. "type": "library",
  5858. "autoload": {
  5859. "files": [
  5860. "src/OpenAI.php"
  5861. ],
  5862. "psr-4": {
  5863. "OpenAI\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "Nuno Maduro",
  5873. "email": "enunomaduro@gmail.com"
  5874. },
  5875. {
  5876. "name": "Sandro Gehri"
  5877. }
  5878. ],
  5879. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  5880. "keywords": [
  5881. "GPT-3",
  5882. "api",
  5883. "client",
  5884. "codex",
  5885. "dall-e",
  5886. "language",
  5887. "natural",
  5888. "openai",
  5889. "php",
  5890. "processing",
  5891. "sdk"
  5892. ],
  5893. "support": {
  5894. "issues": "https://github.com/openai-php/client/issues",
  5895. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  5896. },
  5897. "funding": [
  5898. {
  5899. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5900. "type": "custom"
  5901. },
  5902. {
  5903. "url": "https://github.com/gehrisandro",
  5904. "type": "github"
  5905. },
  5906. {
  5907. "url": "https://github.com/nunomaduro",
  5908. "type": "github"
  5909. }
  5910. ],
  5911. "time": "2024-11-12T20:51:16+00:00"
  5912. },
  5913. {
  5914. "name": "paragonie/constant_time_encoding",
  5915. "version": "v3.0.0",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5919. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5924. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": "^8"
  5929. },
  5930. "require-dev": {
  5931. "phpunit/phpunit": "^9",
  5932. "vimeo/psalm": "^4|^5"
  5933. },
  5934. "type": "library",
  5935. "autoload": {
  5936. "psr-4": {
  5937. "ParagonIE\\ConstantTime\\": "src/"
  5938. }
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Paragon Initiative Enterprises",
  5947. "email": "security@paragonie.com",
  5948. "homepage": "https://paragonie.com",
  5949. "role": "Maintainer"
  5950. },
  5951. {
  5952. "name": "Steve 'Sc00bz' Thomas",
  5953. "email": "steve@tobtu.com",
  5954. "homepage": "https://www.tobtu.com",
  5955. "role": "Original Developer"
  5956. }
  5957. ],
  5958. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5959. "keywords": [
  5960. "base16",
  5961. "base32",
  5962. "base32_decode",
  5963. "base32_encode",
  5964. "base64",
  5965. "base64_decode",
  5966. "base64_encode",
  5967. "bin2hex",
  5968. "encoding",
  5969. "hex",
  5970. "hex2bin",
  5971. "rfc4648"
  5972. ],
  5973. "support": {
  5974. "email": "info@paragonie.com",
  5975. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5976. "source": "https://github.com/paragonie/constant_time_encoding"
  5977. },
  5978. "time": "2024-05-08T12:36:18+00:00"
  5979. },
  5980. {
  5981. "name": "paragonie/random_compat",
  5982. "version": "v9.99.100",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/paragonie/random_compat.git",
  5986. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5991. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5992. "shasum": ""
  5993. },
  5994. "require": {
  5995. "php": ">= 7"
  5996. },
  5997. "require-dev": {
  5998. "phpunit/phpunit": "4.*|5.*",
  5999. "vimeo/psalm": "^1"
  6000. },
  6001. "suggest": {
  6002. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6003. },
  6004. "type": "library",
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "MIT"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "Paragon Initiative Enterprises",
  6012. "email": "security@paragonie.com",
  6013. "homepage": "https://paragonie.com"
  6014. }
  6015. ],
  6016. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6017. "keywords": [
  6018. "csprng",
  6019. "polyfill",
  6020. "pseudorandom",
  6021. "random"
  6022. ],
  6023. "support": {
  6024. "email": "info@paragonie.com",
  6025. "issues": "https://github.com/paragonie/random_compat/issues",
  6026. "source": "https://github.com/paragonie/random_compat"
  6027. },
  6028. "time": "2020-10-15T08:29:30+00:00"
  6029. },
  6030. {
  6031. "name": "php-amqplib/php-amqplib",
  6032. "version": "v3.7.2",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6036. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6041. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "ext-mbstring": "*",
  6046. "ext-sockets": "*",
  6047. "php": "^7.2||^8.0",
  6048. "phpseclib/phpseclib": "^2.0|^3.0"
  6049. },
  6050. "conflict": {
  6051. "php": "7.4.0 - 7.4.1"
  6052. },
  6053. "replace": {
  6054. "videlalvaro/php-amqplib": "self.version"
  6055. },
  6056. "require-dev": {
  6057. "ext-curl": "*",
  6058. "nategood/httpful": "^0.2.20",
  6059. "phpunit/phpunit": "^7.5|^9.5",
  6060. "squizlabs/php_codesniffer": "^3.6"
  6061. },
  6062. "type": "library",
  6063. "extra": {
  6064. "branch-alias": {
  6065. "dev-master": "3.0-dev"
  6066. }
  6067. },
  6068. "autoload": {
  6069. "psr-4": {
  6070. "PhpAmqpLib\\": "PhpAmqpLib/"
  6071. }
  6072. },
  6073. "notification-url": "https://packagist.org/downloads/",
  6074. "license": [
  6075. "LGPL-2.1-or-later"
  6076. ],
  6077. "authors": [
  6078. {
  6079. "name": "Alvaro Videla",
  6080. "role": "Original Maintainer"
  6081. },
  6082. {
  6083. "name": "Raúl Araya",
  6084. "email": "nubeiro@gmail.com",
  6085. "role": "Maintainer"
  6086. },
  6087. {
  6088. "name": "Luke Bakken",
  6089. "email": "luke@bakken.io",
  6090. "role": "Maintainer"
  6091. },
  6092. {
  6093. "name": "Ramūnas Dronga",
  6094. "email": "github@ramuno.lt",
  6095. "role": "Maintainer"
  6096. }
  6097. ],
  6098. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6099. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6100. "keywords": [
  6101. "message",
  6102. "queue",
  6103. "rabbitmq"
  6104. ],
  6105. "support": {
  6106. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6107. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  6108. },
  6109. "time": "2024-11-21T09:21:41+00:00"
  6110. },
  6111. {
  6112. "name": "php-di/phpdoc-reader",
  6113. "version": "2.2.1",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6117. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6122. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "php": ">=7.2.0"
  6127. },
  6128. "require-dev": {
  6129. "mnapoli/hard-mode": "~0.3.0",
  6130. "phpunit/phpunit": "^8.5|^9.0"
  6131. },
  6132. "type": "library",
  6133. "autoload": {
  6134. "psr-4": {
  6135. "PhpDocReader\\": "src/PhpDocReader"
  6136. }
  6137. },
  6138. "notification-url": "https://packagist.org/downloads/",
  6139. "license": [
  6140. "MIT"
  6141. ],
  6142. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6143. "keywords": [
  6144. "phpdoc",
  6145. "reflection"
  6146. ],
  6147. "support": {
  6148. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6149. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6150. },
  6151. "time": "2020-10-12T12:39:22+00:00"
  6152. },
  6153. {
  6154. "name": "php-http/discovery",
  6155. "version": "1.20.0",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/php-http/discovery.git",
  6159. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6164. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "composer-plugin-api": "^1.0|^2.0",
  6169. "php": "^7.1 || ^8.0"
  6170. },
  6171. "conflict": {
  6172. "nyholm/psr7": "<1.0",
  6173. "zendframework/zend-diactoros": "*"
  6174. },
  6175. "provide": {
  6176. "php-http/async-client-implementation": "*",
  6177. "php-http/client-implementation": "*",
  6178. "psr/http-client-implementation": "*",
  6179. "psr/http-factory-implementation": "*",
  6180. "psr/http-message-implementation": "*"
  6181. },
  6182. "require-dev": {
  6183. "composer/composer": "^1.0.2|^2.0",
  6184. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6185. "php-http/httplug": "^1.0 || ^2.0",
  6186. "php-http/message-factory": "^1.0",
  6187. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6188. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6189. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6190. },
  6191. "type": "composer-plugin",
  6192. "extra": {
  6193. "class": "Http\\Discovery\\Composer\\Plugin",
  6194. "plugin-optional": true
  6195. },
  6196. "autoload": {
  6197. "psr-4": {
  6198. "Http\\Discovery\\": "src/"
  6199. },
  6200. "exclude-from-classmap": [
  6201. "src/Composer/Plugin.php"
  6202. ]
  6203. },
  6204. "notification-url": "https://packagist.org/downloads/",
  6205. "license": [
  6206. "MIT"
  6207. ],
  6208. "authors": [
  6209. {
  6210. "name": "Márk Sági-Kazár",
  6211. "email": "mark.sagikazar@gmail.com"
  6212. }
  6213. ],
  6214. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6215. "homepage": "http://php-http.org",
  6216. "keywords": [
  6217. "adapter",
  6218. "client",
  6219. "discovery",
  6220. "factory",
  6221. "http",
  6222. "message",
  6223. "psr17",
  6224. "psr7"
  6225. ],
  6226. "support": {
  6227. "issues": "https://github.com/php-http/discovery/issues",
  6228. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6229. },
  6230. "time": "2024-10-02T11:20:13+00:00"
  6231. },
  6232. {
  6233. "name": "php-http/multipart-stream-builder",
  6234. "version": "1.4.2",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/php-http/multipart-stream-builder.git",
  6238. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  6243. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  6244. "shasum": ""
  6245. },
  6246. "require": {
  6247. "php": "^7.1 || ^8.0",
  6248. "php-http/discovery": "^1.15",
  6249. "psr/http-factory-implementation": "^1.0"
  6250. },
  6251. "require-dev": {
  6252. "nyholm/psr7": "^1.0",
  6253. "php-http/message": "^1.5",
  6254. "php-http/message-factory": "^1.0.2",
  6255. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  6256. },
  6257. "type": "library",
  6258. "autoload": {
  6259. "psr-4": {
  6260. "Http\\Message\\MultipartStream\\": "src/"
  6261. }
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "MIT"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Tobias Nyholm",
  6270. "email": "tobias.nyholm@gmail.com"
  6271. }
  6272. ],
  6273. "description": "A builder class that help you create a multipart stream",
  6274. "homepage": "http://php-http.org",
  6275. "keywords": [
  6276. "factory",
  6277. "http",
  6278. "message",
  6279. "multipart stream",
  6280. "stream"
  6281. ],
  6282. "support": {
  6283. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  6284. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  6285. },
  6286. "time": "2024-09-04T13:22:54+00:00"
  6287. },
  6288. {
  6289. "name": "phper666/jwt-auth",
  6290. "version": "v4.0.11",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/phper666/jwt-auth.git",
  6294. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6299. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "ext-swoole": ">=4.4",
  6304. "lcobucci/jwt": "4.1.5",
  6305. "nesbot/carbon": "^1.0 || ^2.0",
  6306. "php": ">=7.4"
  6307. },
  6308. "suggest": {
  6309. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6310. "hyperf/command": "required hyperf/command ~2.2.0",
  6311. "hyperf/config": "required hyperf/config ~2.2.0",
  6312. "hyperf/di": "required hyperf/di ~2.2.0"
  6313. },
  6314. "type": "library",
  6315. "extra": {
  6316. "hyperf": {
  6317. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6318. }
  6319. },
  6320. "autoload": {
  6321. "files": [
  6322. "src/Functions.php"
  6323. ],
  6324. "psr-4": {
  6325. "Phper666\\JWTAuth\\": "src/"
  6326. }
  6327. },
  6328. "notification-url": "https://packagist.org/downloads/",
  6329. "license": [
  6330. "MIT"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Li Yuzhao",
  6335. "email": "562405704@qq.com",
  6336. "homepage": "https://github.com/phper666/jwt-auth",
  6337. "role": "Developer"
  6338. }
  6339. ],
  6340. "description": "jwt-auth Component",
  6341. "keywords": [
  6342. "hyperf",
  6343. "php"
  6344. ],
  6345. "support": {
  6346. "issues": "https://github.com/phper666/jwt-auth/issues",
  6347. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6348. },
  6349. "time": "2024-02-02T13:24:54+00:00"
  6350. },
  6351. {
  6352. "name": "phpoption/phpoption",
  6353. "version": "1.9.3",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/schmittjoh/php-option.git",
  6357. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6362. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "php": "^7.2.5 || ^8.0"
  6367. },
  6368. "require-dev": {
  6369. "bamarni/composer-bin-plugin": "^1.8.2",
  6370. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "bamarni-bin": {
  6375. "bin-links": true,
  6376. "forward-command": false
  6377. },
  6378. "branch-alias": {
  6379. "dev-master": "1.9-dev"
  6380. }
  6381. },
  6382. "autoload": {
  6383. "psr-4": {
  6384. "PhpOption\\": "src/PhpOption/"
  6385. }
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "Apache-2.0"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Johannes M. Schmitt",
  6394. "email": "schmittjoh@gmail.com",
  6395. "homepage": "https://github.com/schmittjoh"
  6396. },
  6397. {
  6398. "name": "Graham Campbell",
  6399. "email": "hello@gjcampbell.co.uk",
  6400. "homepage": "https://github.com/GrahamCampbell"
  6401. }
  6402. ],
  6403. "description": "Option Type for PHP",
  6404. "keywords": [
  6405. "language",
  6406. "option",
  6407. "php",
  6408. "type"
  6409. ],
  6410. "support": {
  6411. "issues": "https://github.com/schmittjoh/php-option/issues",
  6412. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://github.com/GrahamCampbell",
  6417. "type": "github"
  6418. },
  6419. {
  6420. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6421. "type": "tidelift"
  6422. }
  6423. ],
  6424. "time": "2024-07-20T21:41:07+00:00"
  6425. },
  6426. {
  6427. "name": "phpseclib/phpseclib",
  6428. "version": "3.0.43",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://github.com/phpseclib/phpseclib.git",
  6432. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6433. },
  6434. "dist": {
  6435. "type": "zip",
  6436. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6437. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6438. "shasum": ""
  6439. },
  6440. "require": {
  6441. "paragonie/constant_time_encoding": "^1|^2|^3",
  6442. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6443. "php": ">=5.6.1"
  6444. },
  6445. "require-dev": {
  6446. "phpunit/phpunit": "*"
  6447. },
  6448. "suggest": {
  6449. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6450. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6451. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6452. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6453. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "files": [
  6458. "phpseclib/bootstrap.php"
  6459. ],
  6460. "psr-4": {
  6461. "phpseclib3\\": "phpseclib/"
  6462. }
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Jim Wigginton",
  6471. "email": "terrafrost@php.net",
  6472. "role": "Lead Developer"
  6473. },
  6474. {
  6475. "name": "Patrick Monnerat",
  6476. "email": "pm@datasphere.ch",
  6477. "role": "Developer"
  6478. },
  6479. {
  6480. "name": "Andreas Fischer",
  6481. "email": "bantu@phpbb.com",
  6482. "role": "Developer"
  6483. },
  6484. {
  6485. "name": "Hans-Jürgen Petrich",
  6486. "email": "petrich@tronic-media.com",
  6487. "role": "Developer"
  6488. },
  6489. {
  6490. "name": "Graham Campbell",
  6491. "email": "graham@alt-three.com",
  6492. "role": "Developer"
  6493. }
  6494. ],
  6495. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6496. "homepage": "http://phpseclib.sourceforge.net",
  6497. "keywords": [
  6498. "BigInteger",
  6499. "aes",
  6500. "asn.1",
  6501. "asn1",
  6502. "blowfish",
  6503. "crypto",
  6504. "cryptography",
  6505. "encryption",
  6506. "rsa",
  6507. "security",
  6508. "sftp",
  6509. "signature",
  6510. "signing",
  6511. "ssh",
  6512. "twofish",
  6513. "x.509",
  6514. "x509"
  6515. ],
  6516. "support": {
  6517. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6518. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6519. },
  6520. "funding": [
  6521. {
  6522. "url": "https://github.com/terrafrost",
  6523. "type": "github"
  6524. },
  6525. {
  6526. "url": "https://www.patreon.com/phpseclib",
  6527. "type": "patreon"
  6528. },
  6529. {
  6530. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6531. "type": "tidelift"
  6532. }
  6533. ],
  6534. "time": "2024-12-14T21:12:59+00:00"
  6535. },
  6536. {
  6537. "name": "psr/cache",
  6538. "version": "3.0.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/php-fig/cache.git",
  6542. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6547. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=8.0.0"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "branch-alias": {
  6556. "dev-master": "1.0.x-dev"
  6557. }
  6558. },
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Psr\\Cache\\": "src/"
  6562. }
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "license": [
  6566. "MIT"
  6567. ],
  6568. "authors": [
  6569. {
  6570. "name": "PHP-FIG",
  6571. "homepage": "https://www.php-fig.org/"
  6572. }
  6573. ],
  6574. "description": "Common interface for caching libraries",
  6575. "keywords": [
  6576. "cache",
  6577. "psr",
  6578. "psr-6"
  6579. ],
  6580. "support": {
  6581. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6582. },
  6583. "time": "2021-02-03T23:26:27+00:00"
  6584. },
  6585. {
  6586. "name": "psr/clock",
  6587. "version": "1.0.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/php-fig/clock.git",
  6591. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6596. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "php": "^7.0 || ^8.0"
  6601. },
  6602. "type": "library",
  6603. "autoload": {
  6604. "psr-4": {
  6605. "Psr\\Clock\\": "src/"
  6606. }
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "PHP-FIG",
  6615. "homepage": "https://www.php-fig.org/"
  6616. }
  6617. ],
  6618. "description": "Common interface for reading the clock.",
  6619. "homepage": "https://github.com/php-fig/clock",
  6620. "keywords": [
  6621. "clock",
  6622. "now",
  6623. "psr",
  6624. "psr-20",
  6625. "time"
  6626. ],
  6627. "support": {
  6628. "issues": "https://github.com/php-fig/clock/issues",
  6629. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6630. },
  6631. "time": "2022-11-25T14:36:26+00:00"
  6632. },
  6633. {
  6634. "name": "psr/container",
  6635. "version": "2.0.2",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/php-fig/container.git",
  6639. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6644. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=7.4.0"
  6649. },
  6650. "type": "library",
  6651. "extra": {
  6652. "branch-alias": {
  6653. "dev-master": "2.0.x-dev"
  6654. }
  6655. },
  6656. "autoload": {
  6657. "psr-4": {
  6658. "Psr\\Container\\": "src/"
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "PHP-FIG",
  6668. "homepage": "https://www.php-fig.org/"
  6669. }
  6670. ],
  6671. "description": "Common Container Interface (PHP FIG PSR-11)",
  6672. "homepage": "https://github.com/php-fig/container",
  6673. "keywords": [
  6674. "PSR-11",
  6675. "container",
  6676. "container-interface",
  6677. "container-interop",
  6678. "psr"
  6679. ],
  6680. "support": {
  6681. "issues": "https://github.com/php-fig/container/issues",
  6682. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6683. },
  6684. "time": "2021-11-05T16:47:00+00:00"
  6685. },
  6686. {
  6687. "name": "psr/event-dispatcher",
  6688. "version": "1.0.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/php-fig/event-dispatcher.git",
  6692. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6697. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=7.2.0"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-master": "1.0.x-dev"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Psr\\EventDispatcher\\": "src/"
  6712. }
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "PHP-FIG",
  6721. "homepage": "http://www.php-fig.org/"
  6722. }
  6723. ],
  6724. "description": "Standard interfaces for event handling.",
  6725. "keywords": [
  6726. "events",
  6727. "psr",
  6728. "psr-14"
  6729. ],
  6730. "support": {
  6731. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6732. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6733. },
  6734. "time": "2019-01-08T18:20:26+00:00"
  6735. },
  6736. {
  6737. "name": "psr/http-client",
  6738. "version": "1.0.3",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/php-fig/http-client.git",
  6742. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6747. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": "^7.0 || ^8.0",
  6752. "psr/http-message": "^1.0 || ^2.0"
  6753. },
  6754. "type": "library",
  6755. "extra": {
  6756. "branch-alias": {
  6757. "dev-master": "1.0.x-dev"
  6758. }
  6759. },
  6760. "autoload": {
  6761. "psr-4": {
  6762. "Psr\\Http\\Client\\": "src/"
  6763. }
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "MIT"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "PHP-FIG",
  6772. "homepage": "https://www.php-fig.org/"
  6773. }
  6774. ],
  6775. "description": "Common interface for HTTP clients",
  6776. "homepage": "https://github.com/php-fig/http-client",
  6777. "keywords": [
  6778. "http",
  6779. "http-client",
  6780. "psr",
  6781. "psr-18"
  6782. ],
  6783. "support": {
  6784. "source": "https://github.com/php-fig/http-client"
  6785. },
  6786. "time": "2023-09-23T14:17:50+00:00"
  6787. },
  6788. {
  6789. "name": "psr/http-factory",
  6790. "version": "1.1.0",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/php-fig/http-factory.git",
  6794. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6799. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": ">=7.1",
  6804. "psr/http-message": "^1.0 || ^2.0"
  6805. },
  6806. "type": "library",
  6807. "extra": {
  6808. "branch-alias": {
  6809. "dev-master": "1.0.x-dev"
  6810. }
  6811. },
  6812. "autoload": {
  6813. "psr-4": {
  6814. "Psr\\Http\\Message\\": "src/"
  6815. }
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "MIT"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "PHP-FIG",
  6824. "homepage": "https://www.php-fig.org/"
  6825. }
  6826. ],
  6827. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6828. "keywords": [
  6829. "factory",
  6830. "http",
  6831. "message",
  6832. "psr",
  6833. "psr-17",
  6834. "psr-7",
  6835. "request",
  6836. "response"
  6837. ],
  6838. "support": {
  6839. "source": "https://github.com/php-fig/http-factory"
  6840. },
  6841. "time": "2024-04-15T12:06:14+00:00"
  6842. },
  6843. {
  6844. "name": "psr/http-message",
  6845. "version": "2.0",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/php-fig/http-message.git",
  6849. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6854. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": "^7.2 || ^8.0"
  6859. },
  6860. "type": "library",
  6861. "extra": {
  6862. "branch-alias": {
  6863. "dev-master": "2.0.x-dev"
  6864. }
  6865. },
  6866. "autoload": {
  6867. "psr-4": {
  6868. "Psr\\Http\\Message\\": "src/"
  6869. }
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "license": [
  6873. "MIT"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "PHP-FIG",
  6878. "homepage": "https://www.php-fig.org/"
  6879. }
  6880. ],
  6881. "description": "Common interface for HTTP messages",
  6882. "homepage": "https://github.com/php-fig/http-message",
  6883. "keywords": [
  6884. "http",
  6885. "http-message",
  6886. "psr",
  6887. "psr-7",
  6888. "request",
  6889. "response"
  6890. ],
  6891. "support": {
  6892. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6893. },
  6894. "time": "2023-04-04T09:54:51+00:00"
  6895. },
  6896. {
  6897. "name": "psr/http-server-handler",
  6898. "version": "1.0.2",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://github.com/php-fig/http-server-handler.git",
  6902. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6907. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6908. "shasum": ""
  6909. },
  6910. "require": {
  6911. "php": ">=7.0",
  6912. "psr/http-message": "^1.0 || ^2.0"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-master": "1.0.x-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "psr-4": {
  6922. "Psr\\Http\\Server\\": "src/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "PHP-FIG",
  6932. "homepage": "https://www.php-fig.org/"
  6933. }
  6934. ],
  6935. "description": "Common interface for HTTP server-side request handler",
  6936. "keywords": [
  6937. "handler",
  6938. "http",
  6939. "http-interop",
  6940. "psr",
  6941. "psr-15",
  6942. "psr-7",
  6943. "request",
  6944. "response",
  6945. "server"
  6946. ],
  6947. "support": {
  6948. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6949. },
  6950. "time": "2023-04-10T20:06:20+00:00"
  6951. },
  6952. {
  6953. "name": "psr/http-server-middleware",
  6954. "version": "1.0.2",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/php-fig/http-server-middleware.git",
  6958. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6963. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=7.0",
  6968. "psr/http-message": "^1.0 || ^2.0",
  6969. "psr/http-server-handler": "^1.0"
  6970. },
  6971. "type": "library",
  6972. "extra": {
  6973. "branch-alias": {
  6974. "dev-master": "1.0.x-dev"
  6975. }
  6976. },
  6977. "autoload": {
  6978. "psr-4": {
  6979. "Psr\\Http\\Server\\": "src/"
  6980. }
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "PHP-FIG",
  6989. "homepage": "https://www.php-fig.org/"
  6990. }
  6991. ],
  6992. "description": "Common interface for HTTP server-side middleware",
  6993. "keywords": [
  6994. "http",
  6995. "http-interop",
  6996. "middleware",
  6997. "psr",
  6998. "psr-15",
  6999. "psr-7",
  7000. "request",
  7001. "response"
  7002. ],
  7003. "support": {
  7004. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7005. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7006. },
  7007. "time": "2023-04-11T06:14:47+00:00"
  7008. },
  7009. {
  7010. "name": "psr/log",
  7011. "version": "3.0.2",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/php-fig/log.git",
  7015. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7020. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "php": ">=8.0.0"
  7025. },
  7026. "type": "library",
  7027. "extra": {
  7028. "branch-alias": {
  7029. "dev-master": "3.x-dev"
  7030. }
  7031. },
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Psr\\Log\\": "src"
  7035. }
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "PHP-FIG",
  7044. "homepage": "https://www.php-fig.org/"
  7045. }
  7046. ],
  7047. "description": "Common interface for logging libraries",
  7048. "homepage": "https://github.com/php-fig/log",
  7049. "keywords": [
  7050. "log",
  7051. "psr",
  7052. "psr-3"
  7053. ],
  7054. "support": {
  7055. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7056. },
  7057. "time": "2024-09-11T13:17:53+00:00"
  7058. },
  7059. {
  7060. "name": "psr/simple-cache",
  7061. "version": "3.0.0",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/php-fig/simple-cache.git",
  7065. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7070. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7071. "shasum": ""
  7072. },
  7073. "require": {
  7074. "php": ">=8.0.0"
  7075. },
  7076. "type": "library",
  7077. "extra": {
  7078. "branch-alias": {
  7079. "dev-master": "3.0.x-dev"
  7080. }
  7081. },
  7082. "autoload": {
  7083. "psr-4": {
  7084. "Psr\\SimpleCache\\": "src/"
  7085. }
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "PHP-FIG",
  7094. "homepage": "https://www.php-fig.org/"
  7095. }
  7096. ],
  7097. "description": "Common interfaces for simple caching",
  7098. "keywords": [
  7099. "cache",
  7100. "caching",
  7101. "psr",
  7102. "psr-16",
  7103. "simple-cache"
  7104. ],
  7105. "support": {
  7106. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7107. },
  7108. "time": "2021-10-29T13:26:27+00:00"
  7109. },
  7110. {
  7111. "name": "ralouphie/getallheaders",
  7112. "version": "3.0.3",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/ralouphie/getallheaders.git",
  7116. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7121. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7122. "shasum": ""
  7123. },
  7124. "require": {
  7125. "php": ">=5.6"
  7126. },
  7127. "require-dev": {
  7128. "php-coveralls/php-coveralls": "^2.1",
  7129. "phpunit/phpunit": "^5 || ^6.5"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "files": [
  7134. "src/getallheaders.php"
  7135. ]
  7136. },
  7137. "notification-url": "https://packagist.org/downloads/",
  7138. "license": [
  7139. "MIT"
  7140. ],
  7141. "authors": [
  7142. {
  7143. "name": "Ralph Khattar",
  7144. "email": "ralph.khattar@gmail.com"
  7145. }
  7146. ],
  7147. "description": "A polyfill for getallheaders.",
  7148. "support": {
  7149. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7150. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7151. },
  7152. "time": "2019-03-08T08:55:37+00:00"
  7153. },
  7154. {
  7155. "name": "stella-maris/clock",
  7156. "version": "0.1.7",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/stella-maris-solutions/clock.git",
  7160. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7165. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": "^7.0|^8.0",
  7170. "psr/clock": "^1.0"
  7171. },
  7172. "type": "library",
  7173. "autoload": {
  7174. "psr-4": {
  7175. "StellaMaris\\Clock\\": "src"
  7176. }
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Andreas Heigl",
  7185. "role": "Maintainer"
  7186. }
  7187. ],
  7188. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  7189. "homepage": "https://gitlab.com/stella-maris/clock",
  7190. "keywords": [
  7191. "clock",
  7192. "datetime",
  7193. "point in time",
  7194. "psr20"
  7195. ],
  7196. "support": {
  7197. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  7198. },
  7199. "time": "2022-11-25T16:15:06+00:00"
  7200. },
  7201. {
  7202. "name": "swow/psr7-plus",
  7203. "version": "v1.1.2",
  7204. "source": {
  7205. "type": "git",
  7206. "url": "https://github.com/swow/psr7-plus.git",
  7207. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  7208. },
  7209. "dist": {
  7210. "type": "zip",
  7211. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  7212. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  7213. "shasum": ""
  7214. },
  7215. "require": {
  7216. "php": ">=8.0",
  7217. "psr/http-client": "^1.0",
  7218. "psr/http-factory": "^1.0",
  7219. "psr/http-message": "^1.1|^2.0"
  7220. },
  7221. "type": "library",
  7222. "autoload": {
  7223. "psr-4": {
  7224. "Swow\\Psr7\\Message\\": "src/Message/"
  7225. }
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "Apache-2.0"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "twose",
  7234. "email": "twosee@php.net"
  7235. }
  7236. ],
  7237. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  7238. "keywords": [
  7239. "http",
  7240. "psr17",
  7241. "psr7",
  7242. "swow",
  7243. "websocket"
  7244. ],
  7245. "support": {
  7246. "issues": "https://github.com/swow/swow",
  7247. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  7248. },
  7249. "time": "2023-06-15T09:18:11+00:00"
  7250. },
  7251. {
  7252. "name": "symfony/console",
  7253. "version": "v6.4.15",
  7254. "source": {
  7255. "type": "git",
  7256. "url": "https://github.com/symfony/console.git",
  7257. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  7258. },
  7259. "dist": {
  7260. "type": "zip",
  7261. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  7262. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  7263. "shasum": ""
  7264. },
  7265. "require": {
  7266. "php": ">=8.1",
  7267. "symfony/deprecation-contracts": "^2.5|^3",
  7268. "symfony/polyfill-mbstring": "~1.0",
  7269. "symfony/service-contracts": "^2.5|^3",
  7270. "symfony/string": "^5.4|^6.0|^7.0"
  7271. },
  7272. "conflict": {
  7273. "symfony/dependency-injection": "<5.4",
  7274. "symfony/dotenv": "<5.4",
  7275. "symfony/event-dispatcher": "<5.4",
  7276. "symfony/lock": "<5.4",
  7277. "symfony/process": "<5.4"
  7278. },
  7279. "provide": {
  7280. "psr/log-implementation": "1.0|2.0|3.0"
  7281. },
  7282. "require-dev": {
  7283. "psr/log": "^1|^2|^3",
  7284. "symfony/config": "^5.4|^6.0|^7.0",
  7285. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7286. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7287. "symfony/http-foundation": "^6.4|^7.0",
  7288. "symfony/http-kernel": "^6.4|^7.0",
  7289. "symfony/lock": "^5.4|^6.0|^7.0",
  7290. "symfony/messenger": "^5.4|^6.0|^7.0",
  7291. "symfony/process": "^5.4|^6.0|^7.0",
  7292. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7293. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7294. },
  7295. "type": "library",
  7296. "autoload": {
  7297. "psr-4": {
  7298. "Symfony\\Component\\Console\\": ""
  7299. },
  7300. "exclude-from-classmap": [
  7301. "/Tests/"
  7302. ]
  7303. },
  7304. "notification-url": "https://packagist.org/downloads/",
  7305. "license": [
  7306. "MIT"
  7307. ],
  7308. "authors": [
  7309. {
  7310. "name": "Fabien Potencier",
  7311. "email": "fabien@symfony.com"
  7312. },
  7313. {
  7314. "name": "Symfony Community",
  7315. "homepage": "https://symfony.com/contributors"
  7316. }
  7317. ],
  7318. "description": "Eases the creation of beautiful and testable command line interfaces",
  7319. "homepage": "https://symfony.com",
  7320. "keywords": [
  7321. "cli",
  7322. "command-line",
  7323. "console",
  7324. "terminal"
  7325. ],
  7326. "support": {
  7327. "source": "https://github.com/symfony/console/tree/v6.4.15"
  7328. },
  7329. "funding": [
  7330. {
  7331. "url": "https://symfony.com/sponsor",
  7332. "type": "custom"
  7333. },
  7334. {
  7335. "url": "https://github.com/fabpot",
  7336. "type": "github"
  7337. },
  7338. {
  7339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7340. "type": "tidelift"
  7341. }
  7342. ],
  7343. "time": "2024-11-06T14:19:14+00:00"
  7344. },
  7345. {
  7346. "name": "symfony/deprecation-contracts",
  7347. "version": "v3.5.1",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/symfony/deprecation-contracts.git",
  7351. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7356. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "php": ">=8.1"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-main": "3.5-dev"
  7366. },
  7367. "thanks": {
  7368. "name": "symfony/contracts",
  7369. "url": "https://github.com/symfony/contracts"
  7370. }
  7371. },
  7372. "autoload": {
  7373. "files": [
  7374. "function.php"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Nicolas Grekas",
  7384. "email": "p@tchwork.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "A generic function and convention to trigger deprecation notices",
  7392. "homepage": "https://symfony.com",
  7393. "support": {
  7394. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2024-09-25T14:20:29+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/finder",
  7414. "version": "v6.4.13",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/finder.git",
  7418. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7423. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": ">=8.1"
  7428. },
  7429. "require-dev": {
  7430. "symfony/filesystem": "^6.0|^7.0"
  7431. },
  7432. "type": "library",
  7433. "autoload": {
  7434. "psr-4": {
  7435. "Symfony\\Component\\Finder\\": ""
  7436. },
  7437. "exclude-from-classmap": [
  7438. "/Tests/"
  7439. ]
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Fabien Potencier",
  7448. "email": "fabien@symfony.com"
  7449. },
  7450. {
  7451. "name": "Symfony Community",
  7452. "homepage": "https://symfony.com/contributors"
  7453. }
  7454. ],
  7455. "description": "Finds files and directories via an intuitive fluent interface",
  7456. "homepage": "https://symfony.com",
  7457. "support": {
  7458. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7459. },
  7460. "funding": [
  7461. {
  7462. "url": "https://symfony.com/sponsor",
  7463. "type": "custom"
  7464. },
  7465. {
  7466. "url": "https://github.com/fabpot",
  7467. "type": "github"
  7468. },
  7469. {
  7470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7471. "type": "tidelift"
  7472. }
  7473. ],
  7474. "time": "2024-10-01T08:30:56+00:00"
  7475. },
  7476. {
  7477. "name": "symfony/polyfill-ctype",
  7478. "version": "v1.31.0",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/symfony/polyfill-ctype.git",
  7482. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7487. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7488. "shasum": ""
  7489. },
  7490. "require": {
  7491. "php": ">=7.2"
  7492. },
  7493. "provide": {
  7494. "ext-ctype": "*"
  7495. },
  7496. "suggest": {
  7497. "ext-ctype": "For best performance"
  7498. },
  7499. "type": "library",
  7500. "extra": {
  7501. "thanks": {
  7502. "url": "https://github.com/symfony/polyfill",
  7503. "name": "symfony/polyfill"
  7504. }
  7505. },
  7506. "autoload": {
  7507. "files": [
  7508. "bootstrap.php"
  7509. ],
  7510. "psr-4": {
  7511. "Symfony\\Polyfill\\Ctype\\": ""
  7512. }
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "Gert de Pagter",
  7521. "email": "BackEndTea@gmail.com"
  7522. },
  7523. {
  7524. "name": "Symfony Community",
  7525. "homepage": "https://symfony.com/contributors"
  7526. }
  7527. ],
  7528. "description": "Symfony polyfill for ctype functions",
  7529. "homepage": "https://symfony.com",
  7530. "keywords": [
  7531. "compatibility",
  7532. "ctype",
  7533. "polyfill",
  7534. "portable"
  7535. ],
  7536. "support": {
  7537. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7538. },
  7539. "funding": [
  7540. {
  7541. "url": "https://symfony.com/sponsor",
  7542. "type": "custom"
  7543. },
  7544. {
  7545. "url": "https://github.com/fabpot",
  7546. "type": "github"
  7547. },
  7548. {
  7549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7550. "type": "tidelift"
  7551. }
  7552. ],
  7553. "time": "2024-09-09T11:45:10+00:00"
  7554. },
  7555. {
  7556. "name": "symfony/polyfill-intl-grapheme",
  7557. "version": "v1.31.0",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7561. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7566. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=7.2"
  7571. },
  7572. "suggest": {
  7573. "ext-intl": "For best performance"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "thanks": {
  7578. "url": "https://github.com/symfony/polyfill",
  7579. "name": "symfony/polyfill"
  7580. }
  7581. },
  7582. "autoload": {
  7583. "files": [
  7584. "bootstrap.php"
  7585. ],
  7586. "psr-4": {
  7587. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nicolas Grekas",
  7597. "email": "p@tchwork.com"
  7598. },
  7599. {
  7600. "name": "Symfony Community",
  7601. "homepage": "https://symfony.com/contributors"
  7602. }
  7603. ],
  7604. "description": "Symfony polyfill for intl's grapheme_* functions",
  7605. "homepage": "https://symfony.com",
  7606. "keywords": [
  7607. "compatibility",
  7608. "grapheme",
  7609. "intl",
  7610. "polyfill",
  7611. "portable",
  7612. "shim"
  7613. ],
  7614. "support": {
  7615. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7616. },
  7617. "funding": [
  7618. {
  7619. "url": "https://symfony.com/sponsor",
  7620. "type": "custom"
  7621. },
  7622. {
  7623. "url": "https://github.com/fabpot",
  7624. "type": "github"
  7625. },
  7626. {
  7627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7628. "type": "tidelift"
  7629. }
  7630. ],
  7631. "time": "2024-09-09T11:45:10+00:00"
  7632. },
  7633. {
  7634. "name": "symfony/polyfill-intl-idn",
  7635. "version": "v1.31.0",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7639. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7644. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "php": ">=7.2",
  7649. "symfony/polyfill-intl-normalizer": "^1.10"
  7650. },
  7651. "suggest": {
  7652. "ext-intl": "For best performance"
  7653. },
  7654. "type": "library",
  7655. "extra": {
  7656. "thanks": {
  7657. "url": "https://github.com/symfony/polyfill",
  7658. "name": "symfony/polyfill"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "files": [
  7663. "bootstrap.php"
  7664. ],
  7665. "psr-4": {
  7666. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Laurent Bassin",
  7676. "email": "laurent@bassin.info"
  7677. },
  7678. {
  7679. "name": "Trevor Rowbotham",
  7680. "email": "trevor.rowbotham@pm.me"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7688. "homepage": "https://symfony.com",
  7689. "keywords": [
  7690. "compatibility",
  7691. "idn",
  7692. "intl",
  7693. "polyfill",
  7694. "portable",
  7695. "shim"
  7696. ],
  7697. "support": {
  7698. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7699. },
  7700. "funding": [
  7701. {
  7702. "url": "https://symfony.com/sponsor",
  7703. "type": "custom"
  7704. },
  7705. {
  7706. "url": "https://github.com/fabpot",
  7707. "type": "github"
  7708. },
  7709. {
  7710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7711. "type": "tidelift"
  7712. }
  7713. ],
  7714. "time": "2024-09-09T11:45:10+00:00"
  7715. },
  7716. {
  7717. "name": "symfony/polyfill-intl-normalizer",
  7718. "version": "v1.31.0",
  7719. "source": {
  7720. "type": "git",
  7721. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7722. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7723. },
  7724. "dist": {
  7725. "type": "zip",
  7726. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7727. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7728. "shasum": ""
  7729. },
  7730. "require": {
  7731. "php": ">=7.2"
  7732. },
  7733. "suggest": {
  7734. "ext-intl": "For best performance"
  7735. },
  7736. "type": "library",
  7737. "extra": {
  7738. "thanks": {
  7739. "url": "https://github.com/symfony/polyfill",
  7740. "name": "symfony/polyfill"
  7741. }
  7742. },
  7743. "autoload": {
  7744. "files": [
  7745. "bootstrap.php"
  7746. ],
  7747. "psr-4": {
  7748. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7749. },
  7750. "classmap": [
  7751. "Resources/stubs"
  7752. ]
  7753. },
  7754. "notification-url": "https://packagist.org/downloads/",
  7755. "license": [
  7756. "MIT"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "Nicolas Grekas",
  7761. "email": "p@tchwork.com"
  7762. },
  7763. {
  7764. "name": "Symfony Community",
  7765. "homepage": "https://symfony.com/contributors"
  7766. }
  7767. ],
  7768. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7769. "homepage": "https://symfony.com",
  7770. "keywords": [
  7771. "compatibility",
  7772. "intl",
  7773. "normalizer",
  7774. "polyfill",
  7775. "portable",
  7776. "shim"
  7777. ],
  7778. "support": {
  7779. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7780. },
  7781. "funding": [
  7782. {
  7783. "url": "https://symfony.com/sponsor",
  7784. "type": "custom"
  7785. },
  7786. {
  7787. "url": "https://github.com/fabpot",
  7788. "type": "github"
  7789. },
  7790. {
  7791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7792. "type": "tidelift"
  7793. }
  7794. ],
  7795. "time": "2024-09-09T11:45:10+00:00"
  7796. },
  7797. {
  7798. "name": "symfony/polyfill-mbstring",
  7799. "version": "v1.31.0",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7803. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7808. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7809. "shasum": ""
  7810. },
  7811. "require": {
  7812. "php": ">=7.2"
  7813. },
  7814. "provide": {
  7815. "ext-mbstring": "*"
  7816. },
  7817. "suggest": {
  7818. "ext-mbstring": "For best performance"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "thanks": {
  7823. "url": "https://github.com/symfony/polyfill",
  7824. "name": "symfony/polyfill"
  7825. }
  7826. },
  7827. "autoload": {
  7828. "files": [
  7829. "bootstrap.php"
  7830. ],
  7831. "psr-4": {
  7832. "Symfony\\Polyfill\\Mbstring\\": ""
  7833. }
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Nicolas Grekas",
  7842. "email": "p@tchwork.com"
  7843. },
  7844. {
  7845. "name": "Symfony Community",
  7846. "homepage": "https://symfony.com/contributors"
  7847. }
  7848. ],
  7849. "description": "Symfony polyfill for the Mbstring extension",
  7850. "homepage": "https://symfony.com",
  7851. "keywords": [
  7852. "compatibility",
  7853. "mbstring",
  7854. "polyfill",
  7855. "portable",
  7856. "shim"
  7857. ],
  7858. "support": {
  7859. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7860. },
  7861. "funding": [
  7862. {
  7863. "url": "https://symfony.com/sponsor",
  7864. "type": "custom"
  7865. },
  7866. {
  7867. "url": "https://github.com/fabpot",
  7868. "type": "github"
  7869. },
  7870. {
  7871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7872. "type": "tidelift"
  7873. }
  7874. ],
  7875. "time": "2024-09-09T11:45:10+00:00"
  7876. },
  7877. {
  7878. "name": "symfony/polyfill-php80",
  7879. "version": "v1.31.0",
  7880. "source": {
  7881. "type": "git",
  7882. "url": "https://github.com/symfony/polyfill-php80.git",
  7883. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7884. },
  7885. "dist": {
  7886. "type": "zip",
  7887. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7888. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7889. "shasum": ""
  7890. },
  7891. "require": {
  7892. "php": ">=7.2"
  7893. },
  7894. "type": "library",
  7895. "extra": {
  7896. "thanks": {
  7897. "url": "https://github.com/symfony/polyfill",
  7898. "name": "symfony/polyfill"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "files": [
  7903. "bootstrap.php"
  7904. ],
  7905. "psr-4": {
  7906. "Symfony\\Polyfill\\Php80\\": ""
  7907. },
  7908. "classmap": [
  7909. "Resources/stubs"
  7910. ]
  7911. },
  7912. "notification-url": "https://packagist.org/downloads/",
  7913. "license": [
  7914. "MIT"
  7915. ],
  7916. "authors": [
  7917. {
  7918. "name": "Ion Bazan",
  7919. "email": "ion.bazan@gmail.com"
  7920. },
  7921. {
  7922. "name": "Nicolas Grekas",
  7923. "email": "p@tchwork.com"
  7924. },
  7925. {
  7926. "name": "Symfony Community",
  7927. "homepage": "https://symfony.com/contributors"
  7928. }
  7929. ],
  7930. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7931. "homepage": "https://symfony.com",
  7932. "keywords": [
  7933. "compatibility",
  7934. "polyfill",
  7935. "portable",
  7936. "shim"
  7937. ],
  7938. "support": {
  7939. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7940. },
  7941. "funding": [
  7942. {
  7943. "url": "https://symfony.com/sponsor",
  7944. "type": "custom"
  7945. },
  7946. {
  7947. "url": "https://github.com/fabpot",
  7948. "type": "github"
  7949. },
  7950. {
  7951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7952. "type": "tidelift"
  7953. }
  7954. ],
  7955. "time": "2024-09-09T11:45:10+00:00"
  7956. },
  7957. {
  7958. "name": "symfony/service-contracts",
  7959. "version": "v3.5.1",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://github.com/symfony/service-contracts.git",
  7963. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7968. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7969. "shasum": ""
  7970. },
  7971. "require": {
  7972. "php": ">=8.1",
  7973. "psr/container": "^1.1|^2.0",
  7974. "symfony/deprecation-contracts": "^2.5|^3"
  7975. },
  7976. "conflict": {
  7977. "ext-psr": "<1.1|>=2"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "branch-alias": {
  7982. "dev-main": "3.5-dev"
  7983. },
  7984. "thanks": {
  7985. "name": "symfony/contracts",
  7986. "url": "https://github.com/symfony/contracts"
  7987. }
  7988. },
  7989. "autoload": {
  7990. "psr-4": {
  7991. "Symfony\\Contracts\\Service\\": ""
  7992. },
  7993. "exclude-from-classmap": [
  7994. "/Test/"
  7995. ]
  7996. },
  7997. "notification-url": "https://packagist.org/downloads/",
  7998. "license": [
  7999. "MIT"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "Nicolas Grekas",
  8004. "email": "p@tchwork.com"
  8005. },
  8006. {
  8007. "name": "Symfony Community",
  8008. "homepage": "https://symfony.com/contributors"
  8009. }
  8010. ],
  8011. "description": "Generic abstractions related to writing services",
  8012. "homepage": "https://symfony.com",
  8013. "keywords": [
  8014. "abstractions",
  8015. "contracts",
  8016. "decoupling",
  8017. "interfaces",
  8018. "interoperability",
  8019. "standards"
  8020. ],
  8021. "support": {
  8022. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8023. },
  8024. "funding": [
  8025. {
  8026. "url": "https://symfony.com/sponsor",
  8027. "type": "custom"
  8028. },
  8029. {
  8030. "url": "https://github.com/fabpot",
  8031. "type": "github"
  8032. },
  8033. {
  8034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8035. "type": "tidelift"
  8036. }
  8037. ],
  8038. "time": "2024-09-25T14:20:29+00:00"
  8039. },
  8040. {
  8041. "name": "symfony/string",
  8042. "version": "v6.4.15",
  8043. "source": {
  8044. "type": "git",
  8045. "url": "https://github.com/symfony/string.git",
  8046. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  8047. },
  8048. "dist": {
  8049. "type": "zip",
  8050. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8051. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8052. "shasum": ""
  8053. },
  8054. "require": {
  8055. "php": ">=8.1",
  8056. "symfony/polyfill-ctype": "~1.8",
  8057. "symfony/polyfill-intl-grapheme": "~1.0",
  8058. "symfony/polyfill-intl-normalizer": "~1.0",
  8059. "symfony/polyfill-mbstring": "~1.0"
  8060. },
  8061. "conflict": {
  8062. "symfony/translation-contracts": "<2.5"
  8063. },
  8064. "require-dev": {
  8065. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8066. "symfony/http-client": "^5.4|^6.0|^7.0",
  8067. "symfony/intl": "^6.2|^7.0",
  8068. "symfony/translation-contracts": "^2.5|^3.0",
  8069. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8070. },
  8071. "type": "library",
  8072. "autoload": {
  8073. "files": [
  8074. "Resources/functions.php"
  8075. ],
  8076. "psr-4": {
  8077. "Symfony\\Component\\String\\": ""
  8078. },
  8079. "exclude-from-classmap": [
  8080. "/Tests/"
  8081. ]
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "Nicolas Grekas",
  8090. "email": "p@tchwork.com"
  8091. },
  8092. {
  8093. "name": "Symfony Community",
  8094. "homepage": "https://symfony.com/contributors"
  8095. }
  8096. ],
  8097. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8098. "homepage": "https://symfony.com",
  8099. "keywords": [
  8100. "grapheme",
  8101. "i18n",
  8102. "string",
  8103. "unicode",
  8104. "utf-8",
  8105. "utf8"
  8106. ],
  8107. "support": {
  8108. "source": "https://github.com/symfony/string/tree/v6.4.15"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://symfony.com/sponsor",
  8113. "type": "custom"
  8114. },
  8115. {
  8116. "url": "https://github.com/fabpot",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8121. "type": "tidelift"
  8122. }
  8123. ],
  8124. "time": "2024-11-13T13:31:12+00:00"
  8125. },
  8126. {
  8127. "name": "symfony/translation",
  8128. "version": "v6.4.13",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/symfony/translation.git",
  8132. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8137. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8138. "shasum": ""
  8139. },
  8140. "require": {
  8141. "php": ">=8.1",
  8142. "symfony/deprecation-contracts": "^2.5|^3",
  8143. "symfony/polyfill-mbstring": "~1.0",
  8144. "symfony/translation-contracts": "^2.5|^3.0"
  8145. },
  8146. "conflict": {
  8147. "symfony/config": "<5.4",
  8148. "symfony/console": "<5.4",
  8149. "symfony/dependency-injection": "<5.4",
  8150. "symfony/http-client-contracts": "<2.5",
  8151. "symfony/http-kernel": "<5.4",
  8152. "symfony/service-contracts": "<2.5",
  8153. "symfony/twig-bundle": "<5.4",
  8154. "symfony/yaml": "<5.4"
  8155. },
  8156. "provide": {
  8157. "symfony/translation-implementation": "2.3|3.0"
  8158. },
  8159. "require-dev": {
  8160. "nikic/php-parser": "^4.18|^5.0",
  8161. "psr/log": "^1|^2|^3",
  8162. "symfony/config": "^5.4|^6.0|^7.0",
  8163. "symfony/console": "^5.4|^6.0|^7.0",
  8164. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8165. "symfony/finder": "^5.4|^6.0|^7.0",
  8166. "symfony/http-client-contracts": "^2.5|^3.0",
  8167. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8168. "symfony/intl": "^5.4|^6.0|^7.0",
  8169. "symfony/polyfill-intl-icu": "^1.21",
  8170. "symfony/routing": "^5.4|^6.0|^7.0",
  8171. "symfony/service-contracts": "^2.5|^3",
  8172. "symfony/yaml": "^5.4|^6.0|^7.0"
  8173. },
  8174. "type": "library",
  8175. "autoload": {
  8176. "files": [
  8177. "Resources/functions.php"
  8178. ],
  8179. "psr-4": {
  8180. "Symfony\\Component\\Translation\\": ""
  8181. },
  8182. "exclude-from-classmap": [
  8183. "/Tests/"
  8184. ]
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Fabien Potencier",
  8193. "email": "fabien@symfony.com"
  8194. },
  8195. {
  8196. "name": "Symfony Community",
  8197. "homepage": "https://symfony.com/contributors"
  8198. }
  8199. ],
  8200. "description": "Provides tools to internationalize your application",
  8201. "homepage": "https://symfony.com",
  8202. "support": {
  8203. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  8204. },
  8205. "funding": [
  8206. {
  8207. "url": "https://symfony.com/sponsor",
  8208. "type": "custom"
  8209. },
  8210. {
  8211. "url": "https://github.com/fabpot",
  8212. "type": "github"
  8213. },
  8214. {
  8215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8216. "type": "tidelift"
  8217. }
  8218. ],
  8219. "time": "2024-09-27T18:14:25+00:00"
  8220. },
  8221. {
  8222. "name": "symfony/translation-contracts",
  8223. "version": "v3.5.1",
  8224. "source": {
  8225. "type": "git",
  8226. "url": "https://github.com/symfony/translation-contracts.git",
  8227. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8228. },
  8229. "dist": {
  8230. "type": "zip",
  8231. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8232. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8233. "shasum": ""
  8234. },
  8235. "require": {
  8236. "php": ">=8.1"
  8237. },
  8238. "type": "library",
  8239. "extra": {
  8240. "branch-alias": {
  8241. "dev-main": "3.5-dev"
  8242. },
  8243. "thanks": {
  8244. "name": "symfony/contracts",
  8245. "url": "https://github.com/symfony/contracts"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "psr-4": {
  8250. "Symfony\\Contracts\\Translation\\": ""
  8251. },
  8252. "exclude-from-classmap": [
  8253. "/Test/"
  8254. ]
  8255. },
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "MIT"
  8259. ],
  8260. "authors": [
  8261. {
  8262. "name": "Nicolas Grekas",
  8263. "email": "p@tchwork.com"
  8264. },
  8265. {
  8266. "name": "Symfony Community",
  8267. "homepage": "https://symfony.com/contributors"
  8268. }
  8269. ],
  8270. "description": "Generic abstractions related to translation",
  8271. "homepage": "https://symfony.com",
  8272. "keywords": [
  8273. "abstractions",
  8274. "contracts",
  8275. "decoupling",
  8276. "interfaces",
  8277. "interoperability",
  8278. "standards"
  8279. ],
  8280. "support": {
  8281. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8282. },
  8283. "funding": [
  8284. {
  8285. "url": "https://symfony.com/sponsor",
  8286. "type": "custom"
  8287. },
  8288. {
  8289. "url": "https://github.com/fabpot",
  8290. "type": "github"
  8291. },
  8292. {
  8293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8294. "type": "tidelift"
  8295. }
  8296. ],
  8297. "time": "2024-09-25T14:20:29+00:00"
  8298. },
  8299. {
  8300. "name": "vlucas/phpdotenv",
  8301. "version": "v5.6.1",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/vlucas/phpdotenv.git",
  8305. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8310. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8311. "shasum": ""
  8312. },
  8313. "require": {
  8314. "ext-pcre": "*",
  8315. "graham-campbell/result-type": "^1.1.3",
  8316. "php": "^7.2.5 || ^8.0",
  8317. "phpoption/phpoption": "^1.9.3",
  8318. "symfony/polyfill-ctype": "^1.24",
  8319. "symfony/polyfill-mbstring": "^1.24",
  8320. "symfony/polyfill-php80": "^1.24"
  8321. },
  8322. "require-dev": {
  8323. "bamarni/composer-bin-plugin": "^1.8.2",
  8324. "ext-filter": "*",
  8325. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8326. },
  8327. "suggest": {
  8328. "ext-filter": "Required to use the boolean validator."
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "bamarni-bin": {
  8333. "bin-links": true,
  8334. "forward-command": false
  8335. },
  8336. "branch-alias": {
  8337. "dev-master": "5.6-dev"
  8338. }
  8339. },
  8340. "autoload": {
  8341. "psr-4": {
  8342. "Dotenv\\": "src/"
  8343. }
  8344. },
  8345. "notification-url": "https://packagist.org/downloads/",
  8346. "license": [
  8347. "BSD-3-Clause"
  8348. ],
  8349. "authors": [
  8350. {
  8351. "name": "Graham Campbell",
  8352. "email": "hello@gjcampbell.co.uk",
  8353. "homepage": "https://github.com/GrahamCampbell"
  8354. },
  8355. {
  8356. "name": "Vance Lucas",
  8357. "email": "vance@vancelucas.com",
  8358. "homepage": "https://github.com/vlucas"
  8359. }
  8360. ],
  8361. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8362. "keywords": [
  8363. "dotenv",
  8364. "env",
  8365. "environment"
  8366. ],
  8367. "support": {
  8368. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8369. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8370. },
  8371. "funding": [
  8372. {
  8373. "url": "https://github.com/GrahamCampbell",
  8374. "type": "github"
  8375. },
  8376. {
  8377. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8378. "type": "tidelift"
  8379. }
  8380. ],
  8381. "time": "2024-07-20T21:52:34+00:00"
  8382. }
  8383. ],
  8384. "packages-dev": [
  8385. {
  8386. "name": "clue/ndjson-react",
  8387. "version": "v1.3.0",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/clue/reactphp-ndjson.git",
  8391. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8396. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8397. "shasum": ""
  8398. },
  8399. "require": {
  8400. "php": ">=5.3",
  8401. "react/stream": "^1.2"
  8402. },
  8403. "require-dev": {
  8404. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8405. "react/event-loop": "^1.2"
  8406. },
  8407. "type": "library",
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Clue\\React\\NDJson\\": "src/"
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Christian Lück",
  8420. "email": "christian@clue.engineering"
  8421. }
  8422. ],
  8423. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8424. "homepage": "https://github.com/clue/reactphp-ndjson",
  8425. "keywords": [
  8426. "NDJSON",
  8427. "json",
  8428. "jsonlines",
  8429. "newline",
  8430. "reactphp",
  8431. "streaming"
  8432. ],
  8433. "support": {
  8434. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8435. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8436. },
  8437. "funding": [
  8438. {
  8439. "url": "https://clue.engineering/support",
  8440. "type": "custom"
  8441. },
  8442. {
  8443. "url": "https://github.com/clue",
  8444. "type": "github"
  8445. }
  8446. ],
  8447. "time": "2022-12-23T10:58:28+00:00"
  8448. },
  8449. {
  8450. "name": "composer/pcre",
  8451. "version": "3.3.2",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/composer/pcre.git",
  8455. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8460. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": "^7.4 || ^8.0"
  8465. },
  8466. "conflict": {
  8467. "phpstan/phpstan": "<1.11.10"
  8468. },
  8469. "require-dev": {
  8470. "phpstan/phpstan": "^1.12 || ^2",
  8471. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8472. "phpunit/phpunit": "^8 || ^9"
  8473. },
  8474. "type": "library",
  8475. "extra": {
  8476. "branch-alias": {
  8477. "dev-main": "3.x-dev"
  8478. },
  8479. "phpstan": {
  8480. "includes": [
  8481. "extension.neon"
  8482. ]
  8483. }
  8484. },
  8485. "autoload": {
  8486. "psr-4": {
  8487. "Composer\\Pcre\\": "src"
  8488. }
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "MIT"
  8493. ],
  8494. "authors": [
  8495. {
  8496. "name": "Jordi Boggiano",
  8497. "email": "j.boggiano@seld.be",
  8498. "homepage": "http://seld.be"
  8499. }
  8500. ],
  8501. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8502. "keywords": [
  8503. "PCRE",
  8504. "preg",
  8505. "regex",
  8506. "regular expression"
  8507. ],
  8508. "support": {
  8509. "issues": "https://github.com/composer/pcre/issues",
  8510. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8511. },
  8512. "funding": [
  8513. {
  8514. "url": "https://packagist.com",
  8515. "type": "custom"
  8516. },
  8517. {
  8518. "url": "https://github.com/composer",
  8519. "type": "github"
  8520. },
  8521. {
  8522. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8523. "type": "tidelift"
  8524. }
  8525. ],
  8526. "time": "2024-11-12T16:29:46+00:00"
  8527. },
  8528. {
  8529. "name": "composer/semver",
  8530. "version": "3.4.3",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/composer/semver.git",
  8534. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8539. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8540. "shasum": ""
  8541. },
  8542. "require": {
  8543. "php": "^5.3.2 || ^7.0 || ^8.0"
  8544. },
  8545. "require-dev": {
  8546. "phpstan/phpstan": "^1.11",
  8547. "symfony/phpunit-bridge": "^3 || ^7"
  8548. },
  8549. "type": "library",
  8550. "extra": {
  8551. "branch-alias": {
  8552. "dev-main": "3.x-dev"
  8553. }
  8554. },
  8555. "autoload": {
  8556. "psr-4": {
  8557. "Composer\\Semver\\": "src"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Nils Adermann",
  8567. "email": "naderman@naderman.de",
  8568. "homepage": "http://www.naderman.de"
  8569. },
  8570. {
  8571. "name": "Jordi Boggiano",
  8572. "email": "j.boggiano@seld.be",
  8573. "homepage": "http://seld.be"
  8574. },
  8575. {
  8576. "name": "Rob Bast",
  8577. "email": "rob.bast@gmail.com",
  8578. "homepage": "http://robbast.nl"
  8579. }
  8580. ],
  8581. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8582. "keywords": [
  8583. "semantic",
  8584. "semver",
  8585. "validation",
  8586. "versioning"
  8587. ],
  8588. "support": {
  8589. "irc": "ircs://irc.libera.chat:6697/composer",
  8590. "issues": "https://github.com/composer/semver/issues",
  8591. "source": "https://github.com/composer/semver/tree/3.4.3"
  8592. },
  8593. "funding": [
  8594. {
  8595. "url": "https://packagist.com",
  8596. "type": "custom"
  8597. },
  8598. {
  8599. "url": "https://github.com/composer",
  8600. "type": "github"
  8601. },
  8602. {
  8603. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8604. "type": "tidelift"
  8605. }
  8606. ],
  8607. "time": "2024-09-19T14:15:21+00:00"
  8608. },
  8609. {
  8610. "name": "composer/xdebug-handler",
  8611. "version": "3.0.5",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/composer/xdebug-handler.git",
  8615. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8620. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "composer/pcre": "^1 || ^2 || ^3",
  8625. "php": "^7.2.5 || ^8.0",
  8626. "psr/log": "^1 || ^2 || ^3"
  8627. },
  8628. "require-dev": {
  8629. "phpstan/phpstan": "^1.0",
  8630. "phpstan/phpstan-strict-rules": "^1.1",
  8631. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8632. },
  8633. "type": "library",
  8634. "autoload": {
  8635. "psr-4": {
  8636. "Composer\\XdebugHandler\\": "src"
  8637. }
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "MIT"
  8642. ],
  8643. "authors": [
  8644. {
  8645. "name": "John Stevenson",
  8646. "email": "john-stevenson@blueyonder.co.uk"
  8647. }
  8648. ],
  8649. "description": "Restarts a process without Xdebug.",
  8650. "keywords": [
  8651. "Xdebug",
  8652. "performance"
  8653. ],
  8654. "support": {
  8655. "irc": "ircs://irc.libera.chat:6697/composer",
  8656. "issues": "https://github.com/composer/xdebug-handler/issues",
  8657. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://packagist.com",
  8662. "type": "custom"
  8663. },
  8664. {
  8665. "url": "https://github.com/composer",
  8666. "type": "github"
  8667. },
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2024-05-06T16:37:16+00:00"
  8674. },
  8675. {
  8676. "name": "evenement/evenement",
  8677. "version": "v3.0.2",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/igorw/evenement.git",
  8681. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8686. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=7.0"
  8691. },
  8692. "require-dev": {
  8693. "phpunit/phpunit": "^9 || ^6"
  8694. },
  8695. "type": "library",
  8696. "autoload": {
  8697. "psr-4": {
  8698. "Evenement\\": "src/"
  8699. }
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "MIT"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Igor Wiedler",
  8708. "email": "igor@wiedler.ch"
  8709. }
  8710. ],
  8711. "description": "Événement is a very simple event dispatching library for PHP",
  8712. "keywords": [
  8713. "event-dispatcher",
  8714. "event-emitter"
  8715. ],
  8716. "support": {
  8717. "issues": "https://github.com/igorw/evenement/issues",
  8718. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8719. },
  8720. "time": "2023-08-08T05:53:35+00:00"
  8721. },
  8722. {
  8723. "name": "fidry/cpu-core-counter",
  8724. "version": "1.2.0",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8728. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8733. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "php": "^7.2 || ^8.0"
  8738. },
  8739. "require-dev": {
  8740. "fidry/makefile": "^0.2.0",
  8741. "fidry/php-cs-fixer-config": "^1.1.2",
  8742. "phpstan/extension-installer": "^1.2.0",
  8743. "phpstan/phpstan": "^1.9.2",
  8744. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8745. "phpstan/phpstan-phpunit": "^1.2.2",
  8746. "phpstan/phpstan-strict-rules": "^1.4.4",
  8747. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8748. "webmozarts/strict-phpunit": "^7.5"
  8749. },
  8750. "type": "library",
  8751. "autoload": {
  8752. "psr-4": {
  8753. "Fidry\\CpuCoreCounter\\": "src/"
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "MIT"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Théo FIDRY",
  8763. "email": "theo.fidry@gmail.com"
  8764. }
  8765. ],
  8766. "description": "Tiny utility to get the number of CPU cores.",
  8767. "keywords": [
  8768. "CPU",
  8769. "core"
  8770. ],
  8771. "support": {
  8772. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8773. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8774. },
  8775. "funding": [
  8776. {
  8777. "url": "https://github.com/theofidry",
  8778. "type": "github"
  8779. }
  8780. ],
  8781. "time": "2024-08-06T10:04:20+00:00"
  8782. },
  8783. {
  8784. "name": "friendsofphp/php-cs-fixer",
  8785. "version": "v3.65.0",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8789. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8794. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "clue/ndjson-react": "^1.0",
  8799. "composer/semver": "^3.4",
  8800. "composer/xdebug-handler": "^3.0.3",
  8801. "ext-filter": "*",
  8802. "ext-json": "*",
  8803. "ext-tokenizer": "*",
  8804. "fidry/cpu-core-counter": "^1.2",
  8805. "php": "^7.4 || ^8.0",
  8806. "react/child-process": "^0.6.5",
  8807. "react/event-loop": "^1.0",
  8808. "react/promise": "^2.0 || ^3.0",
  8809. "react/socket": "^1.0",
  8810. "react/stream": "^1.0",
  8811. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8812. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8813. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8814. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8815. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8816. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8817. "symfony/polyfill-mbstring": "^1.28",
  8818. "symfony/polyfill-php80": "^1.28",
  8819. "symfony/polyfill-php81": "^1.28",
  8820. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8821. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8822. },
  8823. "require-dev": {
  8824. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8825. "infection/infection": "^0.29.8",
  8826. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8827. "keradus/cli-executor": "^2.1",
  8828. "mikey179/vfsstream": "^1.6.12",
  8829. "php-coveralls/php-coveralls": "^2.7",
  8830. "php-cs-fixer/accessible-object": "^1.1",
  8831. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8832. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8833. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8834. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8835. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8836. },
  8837. "suggest": {
  8838. "ext-dom": "For handling output formats in XML",
  8839. "ext-mbstring": "For handling non-UTF8 characters."
  8840. },
  8841. "bin": [
  8842. "php-cs-fixer"
  8843. ],
  8844. "type": "application",
  8845. "autoload": {
  8846. "psr-4": {
  8847. "PhpCsFixer\\": "src/"
  8848. },
  8849. "exclude-from-classmap": [
  8850. "src/Fixer/Internal/*"
  8851. ]
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Fabien Potencier",
  8860. "email": "fabien@symfony.com"
  8861. },
  8862. {
  8863. "name": "Dariusz Rumiński",
  8864. "email": "dariusz.ruminski@gmail.com"
  8865. }
  8866. ],
  8867. "description": "A tool to automatically fix PHP code style",
  8868. "keywords": [
  8869. "Static code analysis",
  8870. "fixer",
  8871. "standards",
  8872. "static analysis"
  8873. ],
  8874. "support": {
  8875. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8876. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8877. },
  8878. "funding": [
  8879. {
  8880. "url": "https://github.com/keradus",
  8881. "type": "github"
  8882. }
  8883. ],
  8884. "time": "2024-11-25T00:39:24+00:00"
  8885. },
  8886. {
  8887. "name": "hamcrest/hamcrest-php",
  8888. "version": "v2.0.1",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8892. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8897. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8898. "shasum": ""
  8899. },
  8900. "require": {
  8901. "php": "^5.3|^7.0|^8.0"
  8902. },
  8903. "replace": {
  8904. "cordoval/hamcrest-php": "*",
  8905. "davedevelopment/hamcrest-php": "*",
  8906. "kodova/hamcrest-php": "*"
  8907. },
  8908. "require-dev": {
  8909. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8910. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "2.1-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "classmap": [
  8920. "hamcrest"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "BSD-3-Clause"
  8926. ],
  8927. "description": "This is the PHP port of Hamcrest Matchers",
  8928. "keywords": [
  8929. "test"
  8930. ],
  8931. "support": {
  8932. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8933. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8934. },
  8935. "time": "2020-07-09T08:09:16+00:00"
  8936. },
  8937. {
  8938. "name": "hyperf/devtool",
  8939. "version": "v3.1.42",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/hyperf/devtool.git",
  8943. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8948. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "hyperf/code-parser": "~3.1.0",
  8953. "hyperf/command": "~3.1.0",
  8954. "hyperf/contract": "~3.1.0",
  8955. "hyperf/di": "~3.1.0",
  8956. "hyperf/support": "~3.1.0",
  8957. "hyperf/utils": "~3.1.0",
  8958. "php": ">=8.1"
  8959. },
  8960. "type": "library",
  8961. "extra": {
  8962. "branch-alias": {
  8963. "dev-master": "3.1-dev"
  8964. },
  8965. "hyperf": {
  8966. "config": "Hyperf\\Devtool\\ConfigProvider"
  8967. }
  8968. },
  8969. "autoload": {
  8970. "psr-4": {
  8971. "Hyperf\\Devtool\\": "src/"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "description": "A Devtool for Hyperf.",
  8979. "homepage": "https://hyperf.io",
  8980. "keywords": [
  8981. "dev",
  8982. "devtool",
  8983. "hyperf",
  8984. "php",
  8985. "swoole"
  8986. ],
  8987. "support": {
  8988. "docs": "https://hyperf.wiki",
  8989. "issues": "https://github.com/hyperf/hyperf/issues",
  8990. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8991. "source": "https://github.com/hyperf/hyperf"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8996. "type": "custom"
  8997. },
  8998. {
  8999. "url": "https://opencollective.com/hyperf",
  9000. "type": "open_collective"
  9001. }
  9002. ],
  9003. "time": "2024-09-25T02:54:12+00:00"
  9004. },
  9005. {
  9006. "name": "hyperf/testing",
  9007. "version": "v3.1.48",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/hyperf/testing.git",
  9011. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9016. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "hyperf/codec": "~3.1.0",
  9021. "hyperf/collection": "~3.1.0",
  9022. "hyperf/contract": "~3.1.0",
  9023. "hyperf/coroutine": "~3.1.0",
  9024. "hyperf/http-message": "~3.1.0",
  9025. "hyperf/http-server": "~3.1.0",
  9026. "hyperf/support": "~3.1.0",
  9027. "hyperf/utils": "~3.1.0",
  9028. "php": ">=8.1",
  9029. "phpunit/phpunit": "^10.0",
  9030. "psr/container": "^1.0 || ^2.0",
  9031. "symfony/http-foundation": "^5.4 || ^6.0"
  9032. },
  9033. "suggest": {
  9034. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9035. },
  9036. "bin": [
  9037. "co-phpunit"
  9038. ],
  9039. "type": "library",
  9040. "extra": {
  9041. "branch-alias": {
  9042. "dev-master": "3.1-dev"
  9043. }
  9044. },
  9045. "autoload": {
  9046. "psr-4": {
  9047. "Hyperf\\Testing\\": "src/"
  9048. }
  9049. },
  9050. "notification-url": "https://packagist.org/downloads/",
  9051. "license": [
  9052. "MIT"
  9053. ],
  9054. "description": "Testing for hyperf",
  9055. "keywords": [
  9056. "dev",
  9057. "php",
  9058. "swoole",
  9059. "testing"
  9060. ],
  9061. "support": {
  9062. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  9063. },
  9064. "funding": [
  9065. {
  9066. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9067. "type": "custom"
  9068. },
  9069. {
  9070. "url": "https://opencollective.com/hyperf",
  9071. "type": "open_collective"
  9072. }
  9073. ],
  9074. "time": "2024-12-12T02:12:29+00:00"
  9075. },
  9076. {
  9077. "name": "hyperf/watcher",
  9078. "version": "v3.1.43",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/hyperf/watcher.git",
  9082. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9087. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9088. "shasum": ""
  9089. },
  9090. "require": {
  9091. "ext-posix": "*",
  9092. "hyperf/codec": "~3.1.0",
  9093. "hyperf/command": "~3.1.0",
  9094. "hyperf/di": "~3.1.0",
  9095. "hyperf/framework": "~3.1.0",
  9096. "hyperf/support": "~3.1.0",
  9097. "php": ">=8.1"
  9098. },
  9099. "type": "library",
  9100. "extra": {
  9101. "branch-alias": {
  9102. "dev-master": "3.1-dev"
  9103. },
  9104. "hyperf": {
  9105. "config": "Hyperf\\Watcher\\ConfigProvider"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "files": [
  9110. "src/Functions.php"
  9111. ],
  9112. "psr-4": {
  9113. "Hyperf\\Watcher\\": "src/"
  9114. }
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "MIT"
  9119. ],
  9120. "description": "Hot reload watcher for Hyperf",
  9121. "keywords": [
  9122. "dev",
  9123. "hyperf",
  9124. "php"
  9125. ],
  9126. "support": {
  9127. "issues": "https://github.com/hyperf/watcher/issues",
  9128. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9133. "type": "custom"
  9134. },
  9135. {
  9136. "url": "https://opencollective.com/hyperf",
  9137. "type": "open_collective"
  9138. }
  9139. ],
  9140. "time": "2024-10-06T12:33:12+00:00"
  9141. },
  9142. {
  9143. "name": "mockery/mockery",
  9144. "version": "1.6.12",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/mockery/mockery.git",
  9148. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9153. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9154. "shasum": ""
  9155. },
  9156. "require": {
  9157. "hamcrest/hamcrest-php": "^2.0.1",
  9158. "lib-pcre": ">=7.0",
  9159. "php": ">=7.3"
  9160. },
  9161. "conflict": {
  9162. "phpunit/phpunit": "<8.0"
  9163. },
  9164. "require-dev": {
  9165. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9166. "symplify/easy-coding-standard": "^12.1.14"
  9167. },
  9168. "type": "library",
  9169. "autoload": {
  9170. "files": [
  9171. "library/helpers.php",
  9172. "library/Mockery.php"
  9173. ],
  9174. "psr-4": {
  9175. "Mockery\\": "library/Mockery"
  9176. }
  9177. },
  9178. "notification-url": "https://packagist.org/downloads/",
  9179. "license": [
  9180. "BSD-3-Clause"
  9181. ],
  9182. "authors": [
  9183. {
  9184. "name": "Pádraic Brady",
  9185. "email": "padraic.brady@gmail.com",
  9186. "homepage": "https://github.com/padraic",
  9187. "role": "Author"
  9188. },
  9189. {
  9190. "name": "Dave Marshall",
  9191. "email": "dave.marshall@atstsolutions.co.uk",
  9192. "homepage": "https://davedevelopment.co.uk",
  9193. "role": "Developer"
  9194. },
  9195. {
  9196. "name": "Nathanael Esayeas",
  9197. "email": "nathanael.esayeas@protonmail.com",
  9198. "homepage": "https://github.com/ghostwriter",
  9199. "role": "Lead Developer"
  9200. }
  9201. ],
  9202. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9203. "homepage": "https://github.com/mockery/mockery",
  9204. "keywords": [
  9205. "BDD",
  9206. "TDD",
  9207. "library",
  9208. "mock",
  9209. "mock objects",
  9210. "mockery",
  9211. "stub",
  9212. "test",
  9213. "test double",
  9214. "testing"
  9215. ],
  9216. "support": {
  9217. "docs": "https://docs.mockery.io/",
  9218. "issues": "https://github.com/mockery/mockery/issues",
  9219. "rss": "https://github.com/mockery/mockery/releases.atom",
  9220. "security": "https://github.com/mockery/mockery/security/advisories",
  9221. "source": "https://github.com/mockery/mockery"
  9222. },
  9223. "time": "2024-05-16T03:13:13+00:00"
  9224. },
  9225. {
  9226. "name": "myclabs/deep-copy",
  9227. "version": "1.12.1",
  9228. "source": {
  9229. "type": "git",
  9230. "url": "https://github.com/myclabs/DeepCopy.git",
  9231. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9232. },
  9233. "dist": {
  9234. "type": "zip",
  9235. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9236. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9237. "shasum": ""
  9238. },
  9239. "require": {
  9240. "php": "^7.1 || ^8.0"
  9241. },
  9242. "conflict": {
  9243. "doctrine/collections": "<1.6.8",
  9244. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9245. },
  9246. "require-dev": {
  9247. "doctrine/collections": "^1.6.8",
  9248. "doctrine/common": "^2.13.3 || ^3.2.2",
  9249. "phpspec/prophecy": "^1.10",
  9250. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9251. },
  9252. "type": "library",
  9253. "autoload": {
  9254. "files": [
  9255. "src/DeepCopy/deep_copy.php"
  9256. ],
  9257. "psr-4": {
  9258. "DeepCopy\\": "src/DeepCopy/"
  9259. }
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "MIT"
  9264. ],
  9265. "description": "Create deep copies (clones) of your objects",
  9266. "keywords": [
  9267. "clone",
  9268. "copy",
  9269. "duplicate",
  9270. "object",
  9271. "object graph"
  9272. ],
  9273. "support": {
  9274. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9275. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9276. },
  9277. "funding": [
  9278. {
  9279. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9280. "type": "tidelift"
  9281. }
  9282. ],
  9283. "time": "2024-11-08T17:47:46+00:00"
  9284. },
  9285. {
  9286. "name": "phar-io/manifest",
  9287. "version": "2.0.4",
  9288. "source": {
  9289. "type": "git",
  9290. "url": "https://github.com/phar-io/manifest.git",
  9291. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9292. },
  9293. "dist": {
  9294. "type": "zip",
  9295. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9296. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9297. "shasum": ""
  9298. },
  9299. "require": {
  9300. "ext-dom": "*",
  9301. "ext-libxml": "*",
  9302. "ext-phar": "*",
  9303. "ext-xmlwriter": "*",
  9304. "phar-io/version": "^3.0.1",
  9305. "php": "^7.2 || ^8.0"
  9306. },
  9307. "type": "library",
  9308. "extra": {
  9309. "branch-alias": {
  9310. "dev-master": "2.0.x-dev"
  9311. }
  9312. },
  9313. "autoload": {
  9314. "classmap": [
  9315. "src/"
  9316. ]
  9317. },
  9318. "notification-url": "https://packagist.org/downloads/",
  9319. "license": [
  9320. "BSD-3-Clause"
  9321. ],
  9322. "authors": [
  9323. {
  9324. "name": "Arne Blankerts",
  9325. "email": "arne@blankerts.de",
  9326. "role": "Developer"
  9327. },
  9328. {
  9329. "name": "Sebastian Heuer",
  9330. "email": "sebastian@phpeople.de",
  9331. "role": "Developer"
  9332. },
  9333. {
  9334. "name": "Sebastian Bergmann",
  9335. "email": "sebastian@phpunit.de",
  9336. "role": "Developer"
  9337. }
  9338. ],
  9339. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9340. "support": {
  9341. "issues": "https://github.com/phar-io/manifest/issues",
  9342. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://github.com/theseer",
  9347. "type": "github"
  9348. }
  9349. ],
  9350. "time": "2024-03-03T12:33:53+00:00"
  9351. },
  9352. {
  9353. "name": "phar-io/version",
  9354. "version": "3.2.1",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/phar-io/version.git",
  9358. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9363. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9364. "shasum": ""
  9365. },
  9366. "require": {
  9367. "php": "^7.2 || ^8.0"
  9368. },
  9369. "type": "library",
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Arne Blankerts",
  9382. "email": "arne@blankerts.de",
  9383. "role": "Developer"
  9384. },
  9385. {
  9386. "name": "Sebastian Heuer",
  9387. "email": "sebastian@phpeople.de",
  9388. "role": "Developer"
  9389. },
  9390. {
  9391. "name": "Sebastian Bergmann",
  9392. "email": "sebastian@phpunit.de",
  9393. "role": "Developer"
  9394. }
  9395. ],
  9396. "description": "Library for handling version information and constraints",
  9397. "support": {
  9398. "issues": "https://github.com/phar-io/version/issues",
  9399. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9400. },
  9401. "time": "2022-02-21T01:04:05+00:00"
  9402. },
  9403. {
  9404. "name": "phpstan/phpstan",
  9405. "version": "1.12.13",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/phpstan/phpstan.git",
  9409. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b469068840cfa031e1deaf2fa1886d00e20680f",
  9414. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f",
  9415. "shasum": ""
  9416. },
  9417. "require": {
  9418. "php": "^7.2|^8.0"
  9419. },
  9420. "conflict": {
  9421. "phpstan/phpstan-shim": "*"
  9422. },
  9423. "bin": [
  9424. "phpstan",
  9425. "phpstan.phar"
  9426. ],
  9427. "type": "library",
  9428. "autoload": {
  9429. "files": [
  9430. "bootstrap.php"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "description": "PHPStan - PHP Static Analysis Tool",
  9438. "keywords": [
  9439. "dev",
  9440. "static analysis"
  9441. ],
  9442. "support": {
  9443. "docs": "https://phpstan.org/user-guide/getting-started",
  9444. "forum": "https://github.com/phpstan/phpstan/discussions",
  9445. "issues": "https://github.com/phpstan/phpstan/issues",
  9446. "security": "https://github.com/phpstan/phpstan/security/policy",
  9447. "source": "https://github.com/phpstan/phpstan-src"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/ondrejmirtes",
  9452. "type": "github"
  9453. },
  9454. {
  9455. "url": "https://github.com/phpstan",
  9456. "type": "github"
  9457. }
  9458. ],
  9459. "time": "2024-12-17T17:00:20+00:00"
  9460. },
  9461. {
  9462. "name": "phpunit/php-code-coverage",
  9463. "version": "10.1.16",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9467. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9472. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9473. "shasum": ""
  9474. },
  9475. "require": {
  9476. "ext-dom": "*",
  9477. "ext-libxml": "*",
  9478. "ext-xmlwriter": "*",
  9479. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9480. "php": ">=8.1",
  9481. "phpunit/php-file-iterator": "^4.1.0",
  9482. "phpunit/php-text-template": "^3.0.1",
  9483. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9484. "sebastian/complexity": "^3.2.0",
  9485. "sebastian/environment": "^6.1.0",
  9486. "sebastian/lines-of-code": "^2.0.2",
  9487. "sebastian/version": "^4.0.1",
  9488. "theseer/tokenizer": "^1.2.3"
  9489. },
  9490. "require-dev": {
  9491. "phpunit/phpunit": "^10.1"
  9492. },
  9493. "suggest": {
  9494. "ext-pcov": "PHP extension that provides line coverage",
  9495. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9496. },
  9497. "type": "library",
  9498. "extra": {
  9499. "branch-alias": {
  9500. "dev-main": "10.1.x-dev"
  9501. }
  9502. },
  9503. "autoload": {
  9504. "classmap": [
  9505. "src/"
  9506. ]
  9507. },
  9508. "notification-url": "https://packagist.org/downloads/",
  9509. "license": [
  9510. "BSD-3-Clause"
  9511. ],
  9512. "authors": [
  9513. {
  9514. "name": "Sebastian Bergmann",
  9515. "email": "sebastian@phpunit.de",
  9516. "role": "lead"
  9517. }
  9518. ],
  9519. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9520. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9521. "keywords": [
  9522. "coverage",
  9523. "testing",
  9524. "xunit"
  9525. ],
  9526. "support": {
  9527. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9528. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9529. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9530. },
  9531. "funding": [
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. }
  9536. ],
  9537. "time": "2024-08-22T04:31:57+00:00"
  9538. },
  9539. {
  9540. "name": "phpunit/php-file-iterator",
  9541. "version": "4.1.0",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9545. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9550. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": ">=8.1"
  9555. },
  9556. "require-dev": {
  9557. "phpunit/phpunit": "^10.0"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "branch-alias": {
  9562. "dev-main": "4.0-dev"
  9563. }
  9564. },
  9565. "autoload": {
  9566. "classmap": [
  9567. "src/"
  9568. ]
  9569. },
  9570. "notification-url": "https://packagist.org/downloads/",
  9571. "license": [
  9572. "BSD-3-Clause"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Sebastian Bergmann",
  9577. "email": "sebastian@phpunit.de",
  9578. "role": "lead"
  9579. }
  9580. ],
  9581. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9582. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9583. "keywords": [
  9584. "filesystem",
  9585. "iterator"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9589. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9590. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9591. },
  9592. "funding": [
  9593. {
  9594. "url": "https://github.com/sebastianbergmann",
  9595. "type": "github"
  9596. }
  9597. ],
  9598. "time": "2023-08-31T06:24:48+00:00"
  9599. },
  9600. {
  9601. "name": "phpunit/php-invoker",
  9602. "version": "4.0.0",
  9603. "source": {
  9604. "type": "git",
  9605. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9606. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9607. },
  9608. "dist": {
  9609. "type": "zip",
  9610. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9611. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9612. "shasum": ""
  9613. },
  9614. "require": {
  9615. "php": ">=8.1"
  9616. },
  9617. "require-dev": {
  9618. "ext-pcntl": "*",
  9619. "phpunit/phpunit": "^10.0"
  9620. },
  9621. "suggest": {
  9622. "ext-pcntl": "*"
  9623. },
  9624. "type": "library",
  9625. "extra": {
  9626. "branch-alias": {
  9627. "dev-main": "4.0-dev"
  9628. }
  9629. },
  9630. "autoload": {
  9631. "classmap": [
  9632. "src/"
  9633. ]
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "BSD-3-Clause"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Sebastian Bergmann",
  9642. "email": "sebastian@phpunit.de",
  9643. "role": "lead"
  9644. }
  9645. ],
  9646. "description": "Invoke callables with a timeout",
  9647. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9648. "keywords": [
  9649. "process"
  9650. ],
  9651. "support": {
  9652. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9653. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9654. },
  9655. "funding": [
  9656. {
  9657. "url": "https://github.com/sebastianbergmann",
  9658. "type": "github"
  9659. }
  9660. ],
  9661. "time": "2023-02-03T06:56:09+00:00"
  9662. },
  9663. {
  9664. "name": "phpunit/php-text-template",
  9665. "version": "3.0.1",
  9666. "source": {
  9667. "type": "git",
  9668. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9669. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9670. },
  9671. "dist": {
  9672. "type": "zip",
  9673. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9674. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9675. "shasum": ""
  9676. },
  9677. "require": {
  9678. "php": ">=8.1"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^10.0"
  9682. },
  9683. "type": "library",
  9684. "extra": {
  9685. "branch-alias": {
  9686. "dev-main": "3.0-dev"
  9687. }
  9688. },
  9689. "autoload": {
  9690. "classmap": [
  9691. "src/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "BSD-3-Clause"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Sebastian Bergmann",
  9701. "email": "sebastian@phpunit.de",
  9702. "role": "lead"
  9703. }
  9704. ],
  9705. "description": "Simple template engine.",
  9706. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9707. "keywords": [
  9708. "template"
  9709. ],
  9710. "support": {
  9711. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9712. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9713. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9714. },
  9715. "funding": [
  9716. {
  9717. "url": "https://github.com/sebastianbergmann",
  9718. "type": "github"
  9719. }
  9720. ],
  9721. "time": "2023-08-31T14:07:24+00:00"
  9722. },
  9723. {
  9724. "name": "phpunit/php-timer",
  9725. "version": "6.0.0",
  9726. "source": {
  9727. "type": "git",
  9728. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9729. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9730. },
  9731. "dist": {
  9732. "type": "zip",
  9733. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9734. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9735. "shasum": ""
  9736. },
  9737. "require": {
  9738. "php": ">=8.1"
  9739. },
  9740. "require-dev": {
  9741. "phpunit/phpunit": "^10.0"
  9742. },
  9743. "type": "library",
  9744. "extra": {
  9745. "branch-alias": {
  9746. "dev-main": "6.0-dev"
  9747. }
  9748. },
  9749. "autoload": {
  9750. "classmap": [
  9751. "src/"
  9752. ]
  9753. },
  9754. "notification-url": "https://packagist.org/downloads/",
  9755. "license": [
  9756. "BSD-3-Clause"
  9757. ],
  9758. "authors": [
  9759. {
  9760. "name": "Sebastian Bergmann",
  9761. "email": "sebastian@phpunit.de",
  9762. "role": "lead"
  9763. }
  9764. ],
  9765. "description": "Utility class for timing",
  9766. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9767. "keywords": [
  9768. "timer"
  9769. ],
  9770. "support": {
  9771. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9772. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9773. },
  9774. "funding": [
  9775. {
  9776. "url": "https://github.com/sebastianbergmann",
  9777. "type": "github"
  9778. }
  9779. ],
  9780. "time": "2023-02-03T06:57:52+00:00"
  9781. },
  9782. {
  9783. "name": "phpunit/phpunit",
  9784. "version": "10.5.39",
  9785. "source": {
  9786. "type": "git",
  9787. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9788. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9"
  9789. },
  9790. "dist": {
  9791. "type": "zip",
  9792. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4e89eff200b801db58f3d580ad7426431949eaa9",
  9793. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9",
  9794. "shasum": ""
  9795. },
  9796. "require": {
  9797. "ext-dom": "*",
  9798. "ext-json": "*",
  9799. "ext-libxml": "*",
  9800. "ext-mbstring": "*",
  9801. "ext-xml": "*",
  9802. "ext-xmlwriter": "*",
  9803. "myclabs/deep-copy": "^1.12.1",
  9804. "phar-io/manifest": "^2.0.4",
  9805. "phar-io/version": "^3.2.1",
  9806. "php": ">=8.1",
  9807. "phpunit/php-code-coverage": "^10.1.16",
  9808. "phpunit/php-file-iterator": "^4.1.0",
  9809. "phpunit/php-invoker": "^4.0.0",
  9810. "phpunit/php-text-template": "^3.0.1",
  9811. "phpunit/php-timer": "^6.0.0",
  9812. "sebastian/cli-parser": "^2.0.1",
  9813. "sebastian/code-unit": "^2.0.0",
  9814. "sebastian/comparator": "^5.0.3",
  9815. "sebastian/diff": "^5.1.1",
  9816. "sebastian/environment": "^6.1.0",
  9817. "sebastian/exporter": "^5.1.2",
  9818. "sebastian/global-state": "^6.0.2",
  9819. "sebastian/object-enumerator": "^5.0.0",
  9820. "sebastian/recursion-context": "^5.0.0",
  9821. "sebastian/type": "^4.0.0",
  9822. "sebastian/version": "^4.0.1"
  9823. },
  9824. "suggest": {
  9825. "ext-soap": "To be able to generate mocks based on WSDL files"
  9826. },
  9827. "bin": [
  9828. "phpunit"
  9829. ],
  9830. "type": "library",
  9831. "extra": {
  9832. "branch-alias": {
  9833. "dev-main": "10.5-dev"
  9834. }
  9835. },
  9836. "autoload": {
  9837. "files": [
  9838. "src/Framework/Assert/Functions.php"
  9839. ],
  9840. "classmap": [
  9841. "src/"
  9842. ]
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "BSD-3-Clause"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Sebastian Bergmann",
  9851. "email": "sebastian@phpunit.de",
  9852. "role": "lead"
  9853. }
  9854. ],
  9855. "description": "The PHP Unit Testing framework.",
  9856. "homepage": "https://phpunit.de/",
  9857. "keywords": [
  9858. "phpunit",
  9859. "testing",
  9860. "xunit"
  9861. ],
  9862. "support": {
  9863. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9864. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9865. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.39"
  9866. },
  9867. "funding": [
  9868. {
  9869. "url": "https://phpunit.de/sponsors.html",
  9870. "type": "custom"
  9871. },
  9872. {
  9873. "url": "https://github.com/sebastianbergmann",
  9874. "type": "github"
  9875. },
  9876. {
  9877. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9878. "type": "tidelift"
  9879. }
  9880. ],
  9881. "time": "2024-12-11T10:51:07+00:00"
  9882. },
  9883. {
  9884. "name": "react/cache",
  9885. "version": "v1.2.0",
  9886. "source": {
  9887. "type": "git",
  9888. "url": "https://github.com/reactphp/cache.git",
  9889. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9890. },
  9891. "dist": {
  9892. "type": "zip",
  9893. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9894. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9895. "shasum": ""
  9896. },
  9897. "require": {
  9898. "php": ">=5.3.0",
  9899. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9900. },
  9901. "require-dev": {
  9902. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9903. },
  9904. "type": "library",
  9905. "autoload": {
  9906. "psr-4": {
  9907. "React\\Cache\\": "src/"
  9908. }
  9909. },
  9910. "notification-url": "https://packagist.org/downloads/",
  9911. "license": [
  9912. "MIT"
  9913. ],
  9914. "authors": [
  9915. {
  9916. "name": "Christian Lück",
  9917. "email": "christian@clue.engineering",
  9918. "homepage": "https://clue.engineering/"
  9919. },
  9920. {
  9921. "name": "Cees-Jan Kiewiet",
  9922. "email": "reactphp@ceesjankiewiet.nl",
  9923. "homepage": "https://wyrihaximus.net/"
  9924. },
  9925. {
  9926. "name": "Jan Sorgalla",
  9927. "email": "jsorgalla@gmail.com",
  9928. "homepage": "https://sorgalla.com/"
  9929. },
  9930. {
  9931. "name": "Chris Boden",
  9932. "email": "cboden@gmail.com",
  9933. "homepage": "https://cboden.dev/"
  9934. }
  9935. ],
  9936. "description": "Async, Promise-based cache interface for ReactPHP",
  9937. "keywords": [
  9938. "cache",
  9939. "caching",
  9940. "promise",
  9941. "reactphp"
  9942. ],
  9943. "support": {
  9944. "issues": "https://github.com/reactphp/cache/issues",
  9945. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9946. },
  9947. "funding": [
  9948. {
  9949. "url": "https://opencollective.com/reactphp",
  9950. "type": "open_collective"
  9951. }
  9952. ],
  9953. "time": "2022-11-30T15:59:55+00:00"
  9954. },
  9955. {
  9956. "name": "react/child-process",
  9957. "version": "v0.6.5",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/reactphp/child-process.git",
  9961. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9966. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9971. "php": ">=5.3.0",
  9972. "react/event-loop": "^1.2",
  9973. "react/stream": "^1.2"
  9974. },
  9975. "require-dev": {
  9976. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9977. "react/socket": "^1.8",
  9978. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9979. },
  9980. "type": "library",
  9981. "autoload": {
  9982. "psr-4": {
  9983. "React\\ChildProcess\\": "src"
  9984. }
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "MIT"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Christian Lück",
  9993. "email": "christian@clue.engineering",
  9994. "homepage": "https://clue.engineering/"
  9995. },
  9996. {
  9997. "name": "Cees-Jan Kiewiet",
  9998. "email": "reactphp@ceesjankiewiet.nl",
  9999. "homepage": "https://wyrihaximus.net/"
  10000. },
  10001. {
  10002. "name": "Jan Sorgalla",
  10003. "email": "jsorgalla@gmail.com",
  10004. "homepage": "https://sorgalla.com/"
  10005. },
  10006. {
  10007. "name": "Chris Boden",
  10008. "email": "cboden@gmail.com",
  10009. "homepage": "https://cboden.dev/"
  10010. }
  10011. ],
  10012. "description": "Event-driven library for executing child processes with ReactPHP.",
  10013. "keywords": [
  10014. "event-driven",
  10015. "process",
  10016. "reactphp"
  10017. ],
  10018. "support": {
  10019. "issues": "https://github.com/reactphp/child-process/issues",
  10020. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  10021. },
  10022. "funding": [
  10023. {
  10024. "url": "https://github.com/WyriHaximus",
  10025. "type": "github"
  10026. },
  10027. {
  10028. "url": "https://github.com/clue",
  10029. "type": "github"
  10030. }
  10031. ],
  10032. "time": "2022-09-16T13:41:56+00:00"
  10033. },
  10034. {
  10035. "name": "react/dns",
  10036. "version": "v1.13.0",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/reactphp/dns.git",
  10040. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10045. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "php": ">=5.3.0",
  10050. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10051. "react/event-loop": "^1.2",
  10052. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  10053. },
  10054. "require-dev": {
  10055. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10056. "react/async": "^4.3 || ^3 || ^2",
  10057. "react/promise-timer": "^1.11"
  10058. },
  10059. "type": "library",
  10060. "autoload": {
  10061. "psr-4": {
  10062. "React\\Dns\\": "src/"
  10063. }
  10064. },
  10065. "notification-url": "https://packagist.org/downloads/",
  10066. "license": [
  10067. "MIT"
  10068. ],
  10069. "authors": [
  10070. {
  10071. "name": "Christian Lück",
  10072. "email": "christian@clue.engineering",
  10073. "homepage": "https://clue.engineering/"
  10074. },
  10075. {
  10076. "name": "Cees-Jan Kiewiet",
  10077. "email": "reactphp@ceesjankiewiet.nl",
  10078. "homepage": "https://wyrihaximus.net/"
  10079. },
  10080. {
  10081. "name": "Jan Sorgalla",
  10082. "email": "jsorgalla@gmail.com",
  10083. "homepage": "https://sorgalla.com/"
  10084. },
  10085. {
  10086. "name": "Chris Boden",
  10087. "email": "cboden@gmail.com",
  10088. "homepage": "https://cboden.dev/"
  10089. }
  10090. ],
  10091. "description": "Async DNS resolver for ReactPHP",
  10092. "keywords": [
  10093. "async",
  10094. "dns",
  10095. "dns-resolver",
  10096. "reactphp"
  10097. ],
  10098. "support": {
  10099. "issues": "https://github.com/reactphp/dns/issues",
  10100. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  10101. },
  10102. "funding": [
  10103. {
  10104. "url": "https://opencollective.com/reactphp",
  10105. "type": "open_collective"
  10106. }
  10107. ],
  10108. "time": "2024-06-13T14:18:03+00:00"
  10109. },
  10110. {
  10111. "name": "react/event-loop",
  10112. "version": "v1.5.0",
  10113. "source": {
  10114. "type": "git",
  10115. "url": "https://github.com/reactphp/event-loop.git",
  10116. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10117. },
  10118. "dist": {
  10119. "type": "zip",
  10120. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10121. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10122. "shasum": ""
  10123. },
  10124. "require": {
  10125. "php": ">=5.3.0"
  10126. },
  10127. "require-dev": {
  10128. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10129. },
  10130. "suggest": {
  10131. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10132. },
  10133. "type": "library",
  10134. "autoload": {
  10135. "psr-4": {
  10136. "React\\EventLoop\\": "src/"
  10137. }
  10138. },
  10139. "notification-url": "https://packagist.org/downloads/",
  10140. "license": [
  10141. "MIT"
  10142. ],
  10143. "authors": [
  10144. {
  10145. "name": "Christian Lück",
  10146. "email": "christian@clue.engineering",
  10147. "homepage": "https://clue.engineering/"
  10148. },
  10149. {
  10150. "name": "Cees-Jan Kiewiet",
  10151. "email": "reactphp@ceesjankiewiet.nl",
  10152. "homepage": "https://wyrihaximus.net/"
  10153. },
  10154. {
  10155. "name": "Jan Sorgalla",
  10156. "email": "jsorgalla@gmail.com",
  10157. "homepage": "https://sorgalla.com/"
  10158. },
  10159. {
  10160. "name": "Chris Boden",
  10161. "email": "cboden@gmail.com",
  10162. "homepage": "https://cboden.dev/"
  10163. }
  10164. ],
  10165. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10166. "keywords": [
  10167. "asynchronous",
  10168. "event-loop"
  10169. ],
  10170. "support": {
  10171. "issues": "https://github.com/reactphp/event-loop/issues",
  10172. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10173. },
  10174. "funding": [
  10175. {
  10176. "url": "https://opencollective.com/reactphp",
  10177. "type": "open_collective"
  10178. }
  10179. ],
  10180. "time": "2023-11-13T13:48:05+00:00"
  10181. },
  10182. {
  10183. "name": "react/promise",
  10184. "version": "v3.2.0",
  10185. "source": {
  10186. "type": "git",
  10187. "url": "https://github.com/reactphp/promise.git",
  10188. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  10189. },
  10190. "dist": {
  10191. "type": "zip",
  10192. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  10193. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  10194. "shasum": ""
  10195. },
  10196. "require": {
  10197. "php": ">=7.1.0"
  10198. },
  10199. "require-dev": {
  10200. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10201. "phpunit/phpunit": "^9.6 || ^7.5"
  10202. },
  10203. "type": "library",
  10204. "autoload": {
  10205. "files": [
  10206. "src/functions_include.php"
  10207. ],
  10208. "psr-4": {
  10209. "React\\Promise\\": "src/"
  10210. }
  10211. },
  10212. "notification-url": "https://packagist.org/downloads/",
  10213. "license": [
  10214. "MIT"
  10215. ],
  10216. "authors": [
  10217. {
  10218. "name": "Jan Sorgalla",
  10219. "email": "jsorgalla@gmail.com",
  10220. "homepage": "https://sorgalla.com/"
  10221. },
  10222. {
  10223. "name": "Christian Lück",
  10224. "email": "christian@clue.engineering",
  10225. "homepage": "https://clue.engineering/"
  10226. },
  10227. {
  10228. "name": "Cees-Jan Kiewiet",
  10229. "email": "reactphp@ceesjankiewiet.nl",
  10230. "homepage": "https://wyrihaximus.net/"
  10231. },
  10232. {
  10233. "name": "Chris Boden",
  10234. "email": "cboden@gmail.com",
  10235. "homepage": "https://cboden.dev/"
  10236. }
  10237. ],
  10238. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10239. "keywords": [
  10240. "promise",
  10241. "promises"
  10242. ],
  10243. "support": {
  10244. "issues": "https://github.com/reactphp/promise/issues",
  10245. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  10246. },
  10247. "funding": [
  10248. {
  10249. "url": "https://opencollective.com/reactphp",
  10250. "type": "open_collective"
  10251. }
  10252. ],
  10253. "time": "2024-05-24T10:39:05+00:00"
  10254. },
  10255. {
  10256. "name": "react/socket",
  10257. "version": "v1.16.0",
  10258. "source": {
  10259. "type": "git",
  10260. "url": "https://github.com/reactphp/socket.git",
  10261. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  10262. },
  10263. "dist": {
  10264. "type": "zip",
  10265. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10266. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10267. "shasum": ""
  10268. },
  10269. "require": {
  10270. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10271. "php": ">=5.3.0",
  10272. "react/dns": "^1.13",
  10273. "react/event-loop": "^1.2",
  10274. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  10275. "react/stream": "^1.4"
  10276. },
  10277. "require-dev": {
  10278. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10279. "react/async": "^4.3 || ^3.3 || ^2",
  10280. "react/promise-stream": "^1.4",
  10281. "react/promise-timer": "^1.11"
  10282. },
  10283. "type": "library",
  10284. "autoload": {
  10285. "psr-4": {
  10286. "React\\Socket\\": "src/"
  10287. }
  10288. },
  10289. "notification-url": "https://packagist.org/downloads/",
  10290. "license": [
  10291. "MIT"
  10292. ],
  10293. "authors": [
  10294. {
  10295. "name": "Christian Lück",
  10296. "email": "christian@clue.engineering",
  10297. "homepage": "https://clue.engineering/"
  10298. },
  10299. {
  10300. "name": "Cees-Jan Kiewiet",
  10301. "email": "reactphp@ceesjankiewiet.nl",
  10302. "homepage": "https://wyrihaximus.net/"
  10303. },
  10304. {
  10305. "name": "Jan Sorgalla",
  10306. "email": "jsorgalla@gmail.com",
  10307. "homepage": "https://sorgalla.com/"
  10308. },
  10309. {
  10310. "name": "Chris Boden",
  10311. "email": "cboden@gmail.com",
  10312. "homepage": "https://cboden.dev/"
  10313. }
  10314. ],
  10315. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10316. "keywords": [
  10317. "Connection",
  10318. "Socket",
  10319. "async",
  10320. "reactphp",
  10321. "stream"
  10322. ],
  10323. "support": {
  10324. "issues": "https://github.com/reactphp/socket/issues",
  10325. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10326. },
  10327. "funding": [
  10328. {
  10329. "url": "https://opencollective.com/reactphp",
  10330. "type": "open_collective"
  10331. }
  10332. ],
  10333. "time": "2024-07-26T10:38:09+00:00"
  10334. },
  10335. {
  10336. "name": "react/stream",
  10337. "version": "v1.4.0",
  10338. "source": {
  10339. "type": "git",
  10340. "url": "https://github.com/reactphp/stream.git",
  10341. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10342. },
  10343. "dist": {
  10344. "type": "zip",
  10345. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10346. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10347. "shasum": ""
  10348. },
  10349. "require": {
  10350. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10351. "php": ">=5.3.8",
  10352. "react/event-loop": "^1.2"
  10353. },
  10354. "require-dev": {
  10355. "clue/stream-filter": "~1.2",
  10356. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10357. },
  10358. "type": "library",
  10359. "autoload": {
  10360. "psr-4": {
  10361. "React\\Stream\\": "src/"
  10362. }
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "Christian Lück",
  10371. "email": "christian@clue.engineering",
  10372. "homepage": "https://clue.engineering/"
  10373. },
  10374. {
  10375. "name": "Cees-Jan Kiewiet",
  10376. "email": "reactphp@ceesjankiewiet.nl",
  10377. "homepage": "https://wyrihaximus.net/"
  10378. },
  10379. {
  10380. "name": "Jan Sorgalla",
  10381. "email": "jsorgalla@gmail.com",
  10382. "homepage": "https://sorgalla.com/"
  10383. },
  10384. {
  10385. "name": "Chris Boden",
  10386. "email": "cboden@gmail.com",
  10387. "homepage": "https://cboden.dev/"
  10388. }
  10389. ],
  10390. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10391. "keywords": [
  10392. "event-driven",
  10393. "io",
  10394. "non-blocking",
  10395. "pipe",
  10396. "reactphp",
  10397. "readable",
  10398. "stream",
  10399. "writable"
  10400. ],
  10401. "support": {
  10402. "issues": "https://github.com/reactphp/stream/issues",
  10403. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10404. },
  10405. "funding": [
  10406. {
  10407. "url": "https://opencollective.com/reactphp",
  10408. "type": "open_collective"
  10409. }
  10410. ],
  10411. "time": "2024-06-11T12:45:25+00:00"
  10412. },
  10413. {
  10414. "name": "sebastian/cli-parser",
  10415. "version": "2.0.1",
  10416. "source": {
  10417. "type": "git",
  10418. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10419. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10420. },
  10421. "dist": {
  10422. "type": "zip",
  10423. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10424. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10425. "shasum": ""
  10426. },
  10427. "require": {
  10428. "php": ">=8.1"
  10429. },
  10430. "require-dev": {
  10431. "phpunit/phpunit": "^10.0"
  10432. },
  10433. "type": "library",
  10434. "extra": {
  10435. "branch-alias": {
  10436. "dev-main": "2.0-dev"
  10437. }
  10438. },
  10439. "autoload": {
  10440. "classmap": [
  10441. "src/"
  10442. ]
  10443. },
  10444. "notification-url": "https://packagist.org/downloads/",
  10445. "license": [
  10446. "BSD-3-Clause"
  10447. ],
  10448. "authors": [
  10449. {
  10450. "name": "Sebastian Bergmann",
  10451. "email": "sebastian@phpunit.de",
  10452. "role": "lead"
  10453. }
  10454. ],
  10455. "description": "Library for parsing CLI options",
  10456. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10457. "support": {
  10458. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10459. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10460. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://github.com/sebastianbergmann",
  10465. "type": "github"
  10466. }
  10467. ],
  10468. "time": "2024-03-02T07:12:49+00:00"
  10469. },
  10470. {
  10471. "name": "sebastian/code-unit",
  10472. "version": "2.0.0",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10476. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10481. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10482. "shasum": ""
  10483. },
  10484. "require": {
  10485. "php": ">=8.1"
  10486. },
  10487. "require-dev": {
  10488. "phpunit/phpunit": "^10.0"
  10489. },
  10490. "type": "library",
  10491. "extra": {
  10492. "branch-alias": {
  10493. "dev-main": "2.0-dev"
  10494. }
  10495. },
  10496. "autoload": {
  10497. "classmap": [
  10498. "src/"
  10499. ]
  10500. },
  10501. "notification-url": "https://packagist.org/downloads/",
  10502. "license": [
  10503. "BSD-3-Clause"
  10504. ],
  10505. "authors": [
  10506. {
  10507. "name": "Sebastian Bergmann",
  10508. "email": "sebastian@phpunit.de",
  10509. "role": "lead"
  10510. }
  10511. ],
  10512. "description": "Collection of value objects that represent the PHP code units",
  10513. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10514. "support": {
  10515. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10516. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10517. },
  10518. "funding": [
  10519. {
  10520. "url": "https://github.com/sebastianbergmann",
  10521. "type": "github"
  10522. }
  10523. ],
  10524. "time": "2023-02-03T06:58:43+00:00"
  10525. },
  10526. {
  10527. "name": "sebastian/code-unit-reverse-lookup",
  10528. "version": "3.0.0",
  10529. "source": {
  10530. "type": "git",
  10531. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10532. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10533. },
  10534. "dist": {
  10535. "type": "zip",
  10536. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10537. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10538. "shasum": ""
  10539. },
  10540. "require": {
  10541. "php": ">=8.1"
  10542. },
  10543. "require-dev": {
  10544. "phpunit/phpunit": "^10.0"
  10545. },
  10546. "type": "library",
  10547. "extra": {
  10548. "branch-alias": {
  10549. "dev-main": "3.0-dev"
  10550. }
  10551. },
  10552. "autoload": {
  10553. "classmap": [
  10554. "src/"
  10555. ]
  10556. },
  10557. "notification-url": "https://packagist.org/downloads/",
  10558. "license": [
  10559. "BSD-3-Clause"
  10560. ],
  10561. "authors": [
  10562. {
  10563. "name": "Sebastian Bergmann",
  10564. "email": "sebastian@phpunit.de"
  10565. }
  10566. ],
  10567. "description": "Looks up which function or method a line of code belongs to",
  10568. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10569. "support": {
  10570. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10571. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://github.com/sebastianbergmann",
  10576. "type": "github"
  10577. }
  10578. ],
  10579. "time": "2023-02-03T06:59:15+00:00"
  10580. },
  10581. {
  10582. "name": "sebastian/comparator",
  10583. "version": "5.0.3",
  10584. "source": {
  10585. "type": "git",
  10586. "url": "https://github.com/sebastianbergmann/comparator.git",
  10587. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10588. },
  10589. "dist": {
  10590. "type": "zip",
  10591. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10592. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10593. "shasum": ""
  10594. },
  10595. "require": {
  10596. "ext-dom": "*",
  10597. "ext-mbstring": "*",
  10598. "php": ">=8.1",
  10599. "sebastian/diff": "^5.0",
  10600. "sebastian/exporter": "^5.0"
  10601. },
  10602. "require-dev": {
  10603. "phpunit/phpunit": "^10.5"
  10604. },
  10605. "type": "library",
  10606. "extra": {
  10607. "branch-alias": {
  10608. "dev-main": "5.0-dev"
  10609. }
  10610. },
  10611. "autoload": {
  10612. "classmap": [
  10613. "src/"
  10614. ]
  10615. },
  10616. "notification-url": "https://packagist.org/downloads/",
  10617. "license": [
  10618. "BSD-3-Clause"
  10619. ],
  10620. "authors": [
  10621. {
  10622. "name": "Sebastian Bergmann",
  10623. "email": "sebastian@phpunit.de"
  10624. },
  10625. {
  10626. "name": "Jeff Welch",
  10627. "email": "whatthejeff@gmail.com"
  10628. },
  10629. {
  10630. "name": "Volker Dusch",
  10631. "email": "github@wallbash.com"
  10632. },
  10633. {
  10634. "name": "Bernhard Schussek",
  10635. "email": "bschussek@2bepublished.at"
  10636. }
  10637. ],
  10638. "description": "Provides the functionality to compare PHP values for equality",
  10639. "homepage": "https://github.com/sebastianbergmann/comparator",
  10640. "keywords": [
  10641. "comparator",
  10642. "compare",
  10643. "equality"
  10644. ],
  10645. "support": {
  10646. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10647. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10648. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10649. },
  10650. "funding": [
  10651. {
  10652. "url": "https://github.com/sebastianbergmann",
  10653. "type": "github"
  10654. }
  10655. ],
  10656. "time": "2024-10-18T14:56:07+00:00"
  10657. },
  10658. {
  10659. "name": "sebastian/complexity",
  10660. "version": "3.2.0",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/sebastianbergmann/complexity.git",
  10664. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10669. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "nikic/php-parser": "^4.18 || ^5.0",
  10674. "php": ">=8.1"
  10675. },
  10676. "require-dev": {
  10677. "phpunit/phpunit": "^10.0"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-main": "3.2-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "classmap": [
  10687. "src/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Sebastian Bergmann",
  10697. "email": "sebastian@phpunit.de",
  10698. "role": "lead"
  10699. }
  10700. ],
  10701. "description": "Library for calculating the complexity of PHP code units",
  10702. "homepage": "https://github.com/sebastianbergmann/complexity",
  10703. "support": {
  10704. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10705. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10706. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10707. },
  10708. "funding": [
  10709. {
  10710. "url": "https://github.com/sebastianbergmann",
  10711. "type": "github"
  10712. }
  10713. ],
  10714. "time": "2023-12-21T08:37:17+00:00"
  10715. },
  10716. {
  10717. "name": "sebastian/diff",
  10718. "version": "5.1.1",
  10719. "source": {
  10720. "type": "git",
  10721. "url": "https://github.com/sebastianbergmann/diff.git",
  10722. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10723. },
  10724. "dist": {
  10725. "type": "zip",
  10726. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10727. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10728. "shasum": ""
  10729. },
  10730. "require": {
  10731. "php": ">=8.1"
  10732. },
  10733. "require-dev": {
  10734. "phpunit/phpunit": "^10.0",
  10735. "symfony/process": "^6.4"
  10736. },
  10737. "type": "library",
  10738. "extra": {
  10739. "branch-alias": {
  10740. "dev-main": "5.1-dev"
  10741. }
  10742. },
  10743. "autoload": {
  10744. "classmap": [
  10745. "src/"
  10746. ]
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "BSD-3-Clause"
  10751. ],
  10752. "authors": [
  10753. {
  10754. "name": "Sebastian Bergmann",
  10755. "email": "sebastian@phpunit.de"
  10756. },
  10757. {
  10758. "name": "Kore Nordmann",
  10759. "email": "mail@kore-nordmann.de"
  10760. }
  10761. ],
  10762. "description": "Diff implementation",
  10763. "homepage": "https://github.com/sebastianbergmann/diff",
  10764. "keywords": [
  10765. "diff",
  10766. "udiff",
  10767. "unidiff",
  10768. "unified diff"
  10769. ],
  10770. "support": {
  10771. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10772. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10773. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10774. },
  10775. "funding": [
  10776. {
  10777. "url": "https://github.com/sebastianbergmann",
  10778. "type": "github"
  10779. }
  10780. ],
  10781. "time": "2024-03-02T07:15:17+00:00"
  10782. },
  10783. {
  10784. "name": "sebastian/environment",
  10785. "version": "6.1.0",
  10786. "source": {
  10787. "type": "git",
  10788. "url": "https://github.com/sebastianbergmann/environment.git",
  10789. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10790. },
  10791. "dist": {
  10792. "type": "zip",
  10793. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10794. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10795. "shasum": ""
  10796. },
  10797. "require": {
  10798. "php": ">=8.1"
  10799. },
  10800. "require-dev": {
  10801. "phpunit/phpunit": "^10.0"
  10802. },
  10803. "suggest": {
  10804. "ext-posix": "*"
  10805. },
  10806. "type": "library",
  10807. "extra": {
  10808. "branch-alias": {
  10809. "dev-main": "6.1-dev"
  10810. }
  10811. },
  10812. "autoload": {
  10813. "classmap": [
  10814. "src/"
  10815. ]
  10816. },
  10817. "notification-url": "https://packagist.org/downloads/",
  10818. "license": [
  10819. "BSD-3-Clause"
  10820. ],
  10821. "authors": [
  10822. {
  10823. "name": "Sebastian Bergmann",
  10824. "email": "sebastian@phpunit.de"
  10825. }
  10826. ],
  10827. "description": "Provides functionality to handle HHVM/PHP environments",
  10828. "homepage": "https://github.com/sebastianbergmann/environment",
  10829. "keywords": [
  10830. "Xdebug",
  10831. "environment",
  10832. "hhvm"
  10833. ],
  10834. "support": {
  10835. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10836. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10837. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10838. },
  10839. "funding": [
  10840. {
  10841. "url": "https://github.com/sebastianbergmann",
  10842. "type": "github"
  10843. }
  10844. ],
  10845. "time": "2024-03-23T08:47:14+00:00"
  10846. },
  10847. {
  10848. "name": "sebastian/exporter",
  10849. "version": "5.1.2",
  10850. "source": {
  10851. "type": "git",
  10852. "url": "https://github.com/sebastianbergmann/exporter.git",
  10853. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10854. },
  10855. "dist": {
  10856. "type": "zip",
  10857. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10858. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10859. "shasum": ""
  10860. },
  10861. "require": {
  10862. "ext-mbstring": "*",
  10863. "php": ">=8.1",
  10864. "sebastian/recursion-context": "^5.0"
  10865. },
  10866. "require-dev": {
  10867. "phpunit/phpunit": "^10.0"
  10868. },
  10869. "type": "library",
  10870. "extra": {
  10871. "branch-alias": {
  10872. "dev-main": "5.1-dev"
  10873. }
  10874. },
  10875. "autoload": {
  10876. "classmap": [
  10877. "src/"
  10878. ]
  10879. },
  10880. "notification-url": "https://packagist.org/downloads/",
  10881. "license": [
  10882. "BSD-3-Clause"
  10883. ],
  10884. "authors": [
  10885. {
  10886. "name": "Sebastian Bergmann",
  10887. "email": "sebastian@phpunit.de"
  10888. },
  10889. {
  10890. "name": "Jeff Welch",
  10891. "email": "whatthejeff@gmail.com"
  10892. },
  10893. {
  10894. "name": "Volker Dusch",
  10895. "email": "github@wallbash.com"
  10896. },
  10897. {
  10898. "name": "Adam Harvey",
  10899. "email": "aharvey@php.net"
  10900. },
  10901. {
  10902. "name": "Bernhard Schussek",
  10903. "email": "bschussek@gmail.com"
  10904. }
  10905. ],
  10906. "description": "Provides the functionality to export PHP variables for visualization",
  10907. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10908. "keywords": [
  10909. "export",
  10910. "exporter"
  10911. ],
  10912. "support": {
  10913. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10914. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10915. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://github.com/sebastianbergmann",
  10920. "type": "github"
  10921. }
  10922. ],
  10923. "time": "2024-03-02T07:17:12+00:00"
  10924. },
  10925. {
  10926. "name": "sebastian/global-state",
  10927. "version": "6.0.2",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/sebastianbergmann/global-state.git",
  10931. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10936. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": ">=8.1",
  10941. "sebastian/object-reflector": "^3.0",
  10942. "sebastian/recursion-context": "^5.0"
  10943. },
  10944. "require-dev": {
  10945. "ext-dom": "*",
  10946. "phpunit/phpunit": "^10.0"
  10947. },
  10948. "type": "library",
  10949. "extra": {
  10950. "branch-alias": {
  10951. "dev-main": "6.0-dev"
  10952. }
  10953. },
  10954. "autoload": {
  10955. "classmap": [
  10956. "src/"
  10957. ]
  10958. },
  10959. "notification-url": "https://packagist.org/downloads/",
  10960. "license": [
  10961. "BSD-3-Clause"
  10962. ],
  10963. "authors": [
  10964. {
  10965. "name": "Sebastian Bergmann",
  10966. "email": "sebastian@phpunit.de"
  10967. }
  10968. ],
  10969. "description": "Snapshotting of global state",
  10970. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10971. "keywords": [
  10972. "global state"
  10973. ],
  10974. "support": {
  10975. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10976. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10977. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10978. },
  10979. "funding": [
  10980. {
  10981. "url": "https://github.com/sebastianbergmann",
  10982. "type": "github"
  10983. }
  10984. ],
  10985. "time": "2024-03-02T07:19:19+00:00"
  10986. },
  10987. {
  10988. "name": "sebastian/lines-of-code",
  10989. "version": "2.0.2",
  10990. "source": {
  10991. "type": "git",
  10992. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10993. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10994. },
  10995. "dist": {
  10996. "type": "zip",
  10997. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10998. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10999. "shasum": ""
  11000. },
  11001. "require": {
  11002. "nikic/php-parser": "^4.18 || ^5.0",
  11003. "php": ">=8.1"
  11004. },
  11005. "require-dev": {
  11006. "phpunit/phpunit": "^10.0"
  11007. },
  11008. "type": "library",
  11009. "extra": {
  11010. "branch-alias": {
  11011. "dev-main": "2.0-dev"
  11012. }
  11013. },
  11014. "autoload": {
  11015. "classmap": [
  11016. "src/"
  11017. ]
  11018. },
  11019. "notification-url": "https://packagist.org/downloads/",
  11020. "license": [
  11021. "BSD-3-Clause"
  11022. ],
  11023. "authors": [
  11024. {
  11025. "name": "Sebastian Bergmann",
  11026. "email": "sebastian@phpunit.de",
  11027. "role": "lead"
  11028. }
  11029. ],
  11030. "description": "Library for counting the lines of code in PHP source code",
  11031. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11032. "support": {
  11033. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11034. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11035. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11036. },
  11037. "funding": [
  11038. {
  11039. "url": "https://github.com/sebastianbergmann",
  11040. "type": "github"
  11041. }
  11042. ],
  11043. "time": "2023-12-21T08:38:20+00:00"
  11044. },
  11045. {
  11046. "name": "sebastian/object-enumerator",
  11047. "version": "5.0.0",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11051. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11056. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11057. "shasum": ""
  11058. },
  11059. "require": {
  11060. "php": ">=8.1",
  11061. "sebastian/object-reflector": "^3.0",
  11062. "sebastian/recursion-context": "^5.0"
  11063. },
  11064. "require-dev": {
  11065. "phpunit/phpunit": "^10.0"
  11066. },
  11067. "type": "library",
  11068. "extra": {
  11069. "branch-alias": {
  11070. "dev-main": "5.0-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. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11089. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11090. "support": {
  11091. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11092. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://github.com/sebastianbergmann",
  11097. "type": "github"
  11098. }
  11099. ],
  11100. "time": "2023-02-03T07:08:32+00:00"
  11101. },
  11102. {
  11103. "name": "sebastian/object-reflector",
  11104. "version": "3.0.0",
  11105. "source": {
  11106. "type": "git",
  11107. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11108. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11109. },
  11110. "dist": {
  11111. "type": "zip",
  11112. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11113. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11114. "shasum": ""
  11115. },
  11116. "require": {
  11117. "php": ">=8.1"
  11118. },
  11119. "require-dev": {
  11120. "phpunit/phpunit": "^10.0"
  11121. },
  11122. "type": "library",
  11123. "extra": {
  11124. "branch-alias": {
  11125. "dev-main": "3.0-dev"
  11126. }
  11127. },
  11128. "autoload": {
  11129. "classmap": [
  11130. "src/"
  11131. ]
  11132. },
  11133. "notification-url": "https://packagist.org/downloads/",
  11134. "license": [
  11135. "BSD-3-Clause"
  11136. ],
  11137. "authors": [
  11138. {
  11139. "name": "Sebastian Bergmann",
  11140. "email": "sebastian@phpunit.de"
  11141. }
  11142. ],
  11143. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11144. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11145. "support": {
  11146. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11147. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11148. },
  11149. "funding": [
  11150. {
  11151. "url": "https://github.com/sebastianbergmann",
  11152. "type": "github"
  11153. }
  11154. ],
  11155. "time": "2023-02-03T07:06:18+00:00"
  11156. },
  11157. {
  11158. "name": "sebastian/recursion-context",
  11159. "version": "5.0.0",
  11160. "source": {
  11161. "type": "git",
  11162. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11163. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11164. },
  11165. "dist": {
  11166. "type": "zip",
  11167. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11168. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11169. "shasum": ""
  11170. },
  11171. "require": {
  11172. "php": ">=8.1"
  11173. },
  11174. "require-dev": {
  11175. "phpunit/phpunit": "^10.0"
  11176. },
  11177. "type": "library",
  11178. "extra": {
  11179. "branch-alias": {
  11180. "dev-main": "5.0-dev"
  11181. }
  11182. },
  11183. "autoload": {
  11184. "classmap": [
  11185. "src/"
  11186. ]
  11187. },
  11188. "notification-url": "https://packagist.org/downloads/",
  11189. "license": [
  11190. "BSD-3-Clause"
  11191. ],
  11192. "authors": [
  11193. {
  11194. "name": "Sebastian Bergmann",
  11195. "email": "sebastian@phpunit.de"
  11196. },
  11197. {
  11198. "name": "Jeff Welch",
  11199. "email": "whatthejeff@gmail.com"
  11200. },
  11201. {
  11202. "name": "Adam Harvey",
  11203. "email": "aharvey@php.net"
  11204. }
  11205. ],
  11206. "description": "Provides functionality to recursively process PHP variables",
  11207. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11208. "support": {
  11209. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11210. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11211. },
  11212. "funding": [
  11213. {
  11214. "url": "https://github.com/sebastianbergmann",
  11215. "type": "github"
  11216. }
  11217. ],
  11218. "time": "2023-02-03T07:05:40+00:00"
  11219. },
  11220. {
  11221. "name": "sebastian/type",
  11222. "version": "4.0.0",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/sebastianbergmann/type.git",
  11226. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11231. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11232. "shasum": ""
  11233. },
  11234. "require": {
  11235. "php": ">=8.1"
  11236. },
  11237. "require-dev": {
  11238. "phpunit/phpunit": "^10.0"
  11239. },
  11240. "type": "library",
  11241. "extra": {
  11242. "branch-alias": {
  11243. "dev-main": "4.0-dev"
  11244. }
  11245. },
  11246. "autoload": {
  11247. "classmap": [
  11248. "src/"
  11249. ]
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "BSD-3-Clause"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Sebastian Bergmann",
  11258. "email": "sebastian@phpunit.de",
  11259. "role": "lead"
  11260. }
  11261. ],
  11262. "description": "Collection of value objects that represent the types of the PHP type system",
  11263. "homepage": "https://github.com/sebastianbergmann/type",
  11264. "support": {
  11265. "issues": "https://github.com/sebastianbergmann/type/issues",
  11266. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11267. },
  11268. "funding": [
  11269. {
  11270. "url": "https://github.com/sebastianbergmann",
  11271. "type": "github"
  11272. }
  11273. ],
  11274. "time": "2023-02-03T07:10:45+00:00"
  11275. },
  11276. {
  11277. "name": "sebastian/version",
  11278. "version": "4.0.1",
  11279. "source": {
  11280. "type": "git",
  11281. "url": "https://github.com/sebastianbergmann/version.git",
  11282. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11283. },
  11284. "dist": {
  11285. "type": "zip",
  11286. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11287. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11288. "shasum": ""
  11289. },
  11290. "require": {
  11291. "php": ">=8.1"
  11292. },
  11293. "type": "library",
  11294. "extra": {
  11295. "branch-alias": {
  11296. "dev-main": "4.0-dev"
  11297. }
  11298. },
  11299. "autoload": {
  11300. "classmap": [
  11301. "src/"
  11302. ]
  11303. },
  11304. "notification-url": "https://packagist.org/downloads/",
  11305. "license": [
  11306. "BSD-3-Clause"
  11307. ],
  11308. "authors": [
  11309. {
  11310. "name": "Sebastian Bergmann",
  11311. "email": "sebastian@phpunit.de",
  11312. "role": "lead"
  11313. }
  11314. ],
  11315. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11316. "homepage": "https://github.com/sebastianbergmann/version",
  11317. "support": {
  11318. "issues": "https://github.com/sebastianbergmann/version/issues",
  11319. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11320. },
  11321. "funding": [
  11322. {
  11323. "url": "https://github.com/sebastianbergmann",
  11324. "type": "github"
  11325. }
  11326. ],
  11327. "time": "2023-02-07T11:34:05+00:00"
  11328. },
  11329. {
  11330. "name": "swoole/ide-helper",
  11331. "version": "5.1.6",
  11332. "source": {
  11333. "type": "git",
  11334. "url": "https://github.com/swoole/ide-helper.git",
  11335. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  11336. },
  11337. "dist": {
  11338. "type": "zip",
  11339. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11340. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11341. "shasum": ""
  11342. },
  11343. "type": "library",
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "Apache-2.0"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Team Swoole",
  11351. "email": "team@swoole.com"
  11352. }
  11353. ],
  11354. "description": "IDE help files for Swoole.",
  11355. "support": {
  11356. "issues": "https://github.com/swoole/ide-helper/issues",
  11357. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  11358. },
  11359. "time": "2024-11-29T07:21:36+00:00"
  11360. },
  11361. {
  11362. "name": "symfony/event-dispatcher",
  11363. "version": "v6.4.13",
  11364. "source": {
  11365. "type": "git",
  11366. "url": "https://github.com/symfony/event-dispatcher.git",
  11367. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11368. },
  11369. "dist": {
  11370. "type": "zip",
  11371. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11372. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11373. "shasum": ""
  11374. },
  11375. "require": {
  11376. "php": ">=8.1",
  11377. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11378. },
  11379. "conflict": {
  11380. "symfony/dependency-injection": "<5.4",
  11381. "symfony/service-contracts": "<2.5"
  11382. },
  11383. "provide": {
  11384. "psr/event-dispatcher-implementation": "1.0",
  11385. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11386. },
  11387. "require-dev": {
  11388. "psr/log": "^1|^2|^3",
  11389. "symfony/config": "^5.4|^6.0|^7.0",
  11390. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11391. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11392. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11393. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11394. "symfony/service-contracts": "^2.5|^3",
  11395. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11396. },
  11397. "type": "library",
  11398. "autoload": {
  11399. "psr-4": {
  11400. "Symfony\\Component\\EventDispatcher\\": ""
  11401. },
  11402. "exclude-from-classmap": [
  11403. "/Tests/"
  11404. ]
  11405. },
  11406. "notification-url": "https://packagist.org/downloads/",
  11407. "license": [
  11408. "MIT"
  11409. ],
  11410. "authors": [
  11411. {
  11412. "name": "Fabien Potencier",
  11413. "email": "fabien@symfony.com"
  11414. },
  11415. {
  11416. "name": "Symfony Community",
  11417. "homepage": "https://symfony.com/contributors"
  11418. }
  11419. ],
  11420. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11421. "homepage": "https://symfony.com",
  11422. "support": {
  11423. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11424. },
  11425. "funding": [
  11426. {
  11427. "url": "https://symfony.com/sponsor",
  11428. "type": "custom"
  11429. },
  11430. {
  11431. "url": "https://github.com/fabpot",
  11432. "type": "github"
  11433. },
  11434. {
  11435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11436. "type": "tidelift"
  11437. }
  11438. ],
  11439. "time": "2024-09-25T14:18:03+00:00"
  11440. },
  11441. {
  11442. "name": "symfony/event-dispatcher-contracts",
  11443. "version": "v3.5.1",
  11444. "source": {
  11445. "type": "git",
  11446. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11447. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11448. },
  11449. "dist": {
  11450. "type": "zip",
  11451. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11452. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11453. "shasum": ""
  11454. },
  11455. "require": {
  11456. "php": ">=8.1",
  11457. "psr/event-dispatcher": "^1"
  11458. },
  11459. "type": "library",
  11460. "extra": {
  11461. "branch-alias": {
  11462. "dev-main": "3.5-dev"
  11463. },
  11464. "thanks": {
  11465. "name": "symfony/contracts",
  11466. "url": "https://github.com/symfony/contracts"
  11467. }
  11468. },
  11469. "autoload": {
  11470. "psr-4": {
  11471. "Symfony\\Contracts\\EventDispatcher\\": ""
  11472. }
  11473. },
  11474. "notification-url": "https://packagist.org/downloads/",
  11475. "license": [
  11476. "MIT"
  11477. ],
  11478. "authors": [
  11479. {
  11480. "name": "Nicolas Grekas",
  11481. "email": "p@tchwork.com"
  11482. },
  11483. {
  11484. "name": "Symfony Community",
  11485. "homepage": "https://symfony.com/contributors"
  11486. }
  11487. ],
  11488. "description": "Generic abstractions related to dispatching event",
  11489. "homepage": "https://symfony.com",
  11490. "keywords": [
  11491. "abstractions",
  11492. "contracts",
  11493. "decoupling",
  11494. "interfaces",
  11495. "interoperability",
  11496. "standards"
  11497. ],
  11498. "support": {
  11499. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11500. },
  11501. "funding": [
  11502. {
  11503. "url": "https://symfony.com/sponsor",
  11504. "type": "custom"
  11505. },
  11506. {
  11507. "url": "https://github.com/fabpot",
  11508. "type": "github"
  11509. },
  11510. {
  11511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11512. "type": "tidelift"
  11513. }
  11514. ],
  11515. "time": "2024-09-25T14:20:29+00:00"
  11516. },
  11517. {
  11518. "name": "symfony/filesystem",
  11519. "version": "v6.4.13",
  11520. "source": {
  11521. "type": "git",
  11522. "url": "https://github.com/symfony/filesystem.git",
  11523. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11524. },
  11525. "dist": {
  11526. "type": "zip",
  11527. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11528. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11529. "shasum": ""
  11530. },
  11531. "require": {
  11532. "php": ">=8.1",
  11533. "symfony/polyfill-ctype": "~1.8",
  11534. "symfony/polyfill-mbstring": "~1.8"
  11535. },
  11536. "require-dev": {
  11537. "symfony/process": "^5.4|^6.4|^7.0"
  11538. },
  11539. "type": "library",
  11540. "autoload": {
  11541. "psr-4": {
  11542. "Symfony\\Component\\Filesystem\\": ""
  11543. },
  11544. "exclude-from-classmap": [
  11545. "/Tests/"
  11546. ]
  11547. },
  11548. "notification-url": "https://packagist.org/downloads/",
  11549. "license": [
  11550. "MIT"
  11551. ],
  11552. "authors": [
  11553. {
  11554. "name": "Fabien Potencier",
  11555. "email": "fabien@symfony.com"
  11556. },
  11557. {
  11558. "name": "Symfony Community",
  11559. "homepage": "https://symfony.com/contributors"
  11560. }
  11561. ],
  11562. "description": "Provides basic utilities for the filesystem",
  11563. "homepage": "https://symfony.com",
  11564. "support": {
  11565. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11566. },
  11567. "funding": [
  11568. {
  11569. "url": "https://symfony.com/sponsor",
  11570. "type": "custom"
  11571. },
  11572. {
  11573. "url": "https://github.com/fabpot",
  11574. "type": "github"
  11575. },
  11576. {
  11577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11578. "type": "tidelift"
  11579. }
  11580. ],
  11581. "time": "2024-10-25T15:07:50+00:00"
  11582. },
  11583. {
  11584. "name": "symfony/http-foundation",
  11585. "version": "v6.4.16",
  11586. "source": {
  11587. "type": "git",
  11588. "url": "https://github.com/symfony/http-foundation.git",
  11589. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11590. },
  11591. "dist": {
  11592. "type": "zip",
  11593. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11594. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11595. "shasum": ""
  11596. },
  11597. "require": {
  11598. "php": ">=8.1",
  11599. "symfony/deprecation-contracts": "^2.5|^3",
  11600. "symfony/polyfill-mbstring": "~1.1",
  11601. "symfony/polyfill-php83": "^1.27"
  11602. },
  11603. "conflict": {
  11604. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11605. },
  11606. "require-dev": {
  11607. "doctrine/dbal": "^2.13.1|^3|^4",
  11608. "predis/predis": "^1.1|^2.0",
  11609. "symfony/cache": "^6.4.12|^7.1.5",
  11610. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11611. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11612. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11613. "symfony/mime": "^5.4|^6.0|^7.0",
  11614. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11615. },
  11616. "type": "library",
  11617. "autoload": {
  11618. "psr-4": {
  11619. "Symfony\\Component\\HttpFoundation\\": ""
  11620. },
  11621. "exclude-from-classmap": [
  11622. "/Tests/"
  11623. ]
  11624. },
  11625. "notification-url": "https://packagist.org/downloads/",
  11626. "license": [
  11627. "MIT"
  11628. ],
  11629. "authors": [
  11630. {
  11631. "name": "Fabien Potencier",
  11632. "email": "fabien@symfony.com"
  11633. },
  11634. {
  11635. "name": "Symfony Community",
  11636. "homepage": "https://symfony.com/contributors"
  11637. }
  11638. ],
  11639. "description": "Defines an object-oriented layer for the HTTP specification",
  11640. "homepage": "https://symfony.com",
  11641. "support": {
  11642. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11643. },
  11644. "funding": [
  11645. {
  11646. "url": "https://symfony.com/sponsor",
  11647. "type": "custom"
  11648. },
  11649. {
  11650. "url": "https://github.com/fabpot",
  11651. "type": "github"
  11652. },
  11653. {
  11654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11655. "type": "tidelift"
  11656. }
  11657. ],
  11658. "time": "2024-11-13T18:58:10+00:00"
  11659. },
  11660. {
  11661. "name": "symfony/options-resolver",
  11662. "version": "v6.4.16",
  11663. "source": {
  11664. "type": "git",
  11665. "url": "https://github.com/symfony/options-resolver.git",
  11666. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11667. },
  11668. "dist": {
  11669. "type": "zip",
  11670. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11671. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11672. "shasum": ""
  11673. },
  11674. "require": {
  11675. "php": ">=8.1",
  11676. "symfony/deprecation-contracts": "^2.5|^3"
  11677. },
  11678. "type": "library",
  11679. "autoload": {
  11680. "psr-4": {
  11681. "Symfony\\Component\\OptionsResolver\\": ""
  11682. },
  11683. "exclude-from-classmap": [
  11684. "/Tests/"
  11685. ]
  11686. },
  11687. "notification-url": "https://packagist.org/downloads/",
  11688. "license": [
  11689. "MIT"
  11690. ],
  11691. "authors": [
  11692. {
  11693. "name": "Fabien Potencier",
  11694. "email": "fabien@symfony.com"
  11695. },
  11696. {
  11697. "name": "Symfony Community",
  11698. "homepage": "https://symfony.com/contributors"
  11699. }
  11700. ],
  11701. "description": "Provides an improved replacement for the array_replace PHP function",
  11702. "homepage": "https://symfony.com",
  11703. "keywords": [
  11704. "config",
  11705. "configuration",
  11706. "options"
  11707. ],
  11708. "support": {
  11709. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11710. },
  11711. "funding": [
  11712. {
  11713. "url": "https://symfony.com/sponsor",
  11714. "type": "custom"
  11715. },
  11716. {
  11717. "url": "https://github.com/fabpot",
  11718. "type": "github"
  11719. },
  11720. {
  11721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11722. "type": "tidelift"
  11723. }
  11724. ],
  11725. "time": "2024-11-20T10:57:02+00:00"
  11726. },
  11727. {
  11728. "name": "symfony/polyfill-php81",
  11729. "version": "v1.31.0",
  11730. "source": {
  11731. "type": "git",
  11732. "url": "https://github.com/symfony/polyfill-php81.git",
  11733. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11734. },
  11735. "dist": {
  11736. "type": "zip",
  11737. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11738. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11739. "shasum": ""
  11740. },
  11741. "require": {
  11742. "php": ">=7.2"
  11743. },
  11744. "type": "library",
  11745. "extra": {
  11746. "thanks": {
  11747. "url": "https://github.com/symfony/polyfill",
  11748. "name": "symfony/polyfill"
  11749. }
  11750. },
  11751. "autoload": {
  11752. "files": [
  11753. "bootstrap.php"
  11754. ],
  11755. "psr-4": {
  11756. "Symfony\\Polyfill\\Php81\\": ""
  11757. },
  11758. "classmap": [
  11759. "Resources/stubs"
  11760. ]
  11761. },
  11762. "notification-url": "https://packagist.org/downloads/",
  11763. "license": [
  11764. "MIT"
  11765. ],
  11766. "authors": [
  11767. {
  11768. "name": "Nicolas Grekas",
  11769. "email": "p@tchwork.com"
  11770. },
  11771. {
  11772. "name": "Symfony Community",
  11773. "homepage": "https://symfony.com/contributors"
  11774. }
  11775. ],
  11776. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11777. "homepage": "https://symfony.com",
  11778. "keywords": [
  11779. "compatibility",
  11780. "polyfill",
  11781. "portable",
  11782. "shim"
  11783. ],
  11784. "support": {
  11785. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11786. },
  11787. "funding": [
  11788. {
  11789. "url": "https://symfony.com/sponsor",
  11790. "type": "custom"
  11791. },
  11792. {
  11793. "url": "https://github.com/fabpot",
  11794. "type": "github"
  11795. },
  11796. {
  11797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11798. "type": "tidelift"
  11799. }
  11800. ],
  11801. "time": "2024-09-09T11:45:10+00:00"
  11802. },
  11803. {
  11804. "name": "symfony/polyfill-php83",
  11805. "version": "v1.31.0",
  11806. "source": {
  11807. "type": "git",
  11808. "url": "https://github.com/symfony/polyfill-php83.git",
  11809. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11810. },
  11811. "dist": {
  11812. "type": "zip",
  11813. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11814. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11815. "shasum": ""
  11816. },
  11817. "require": {
  11818. "php": ">=7.2"
  11819. },
  11820. "type": "library",
  11821. "extra": {
  11822. "thanks": {
  11823. "url": "https://github.com/symfony/polyfill",
  11824. "name": "symfony/polyfill"
  11825. }
  11826. },
  11827. "autoload": {
  11828. "files": [
  11829. "bootstrap.php"
  11830. ],
  11831. "psr-4": {
  11832. "Symfony\\Polyfill\\Php83\\": ""
  11833. },
  11834. "classmap": [
  11835. "Resources/stubs"
  11836. ]
  11837. },
  11838. "notification-url": "https://packagist.org/downloads/",
  11839. "license": [
  11840. "MIT"
  11841. ],
  11842. "authors": [
  11843. {
  11844. "name": "Nicolas Grekas",
  11845. "email": "p@tchwork.com"
  11846. },
  11847. {
  11848. "name": "Symfony Community",
  11849. "homepage": "https://symfony.com/contributors"
  11850. }
  11851. ],
  11852. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11853. "homepage": "https://symfony.com",
  11854. "keywords": [
  11855. "compatibility",
  11856. "polyfill",
  11857. "portable",
  11858. "shim"
  11859. ],
  11860. "support": {
  11861. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11862. },
  11863. "funding": [
  11864. {
  11865. "url": "https://symfony.com/sponsor",
  11866. "type": "custom"
  11867. },
  11868. {
  11869. "url": "https://github.com/fabpot",
  11870. "type": "github"
  11871. },
  11872. {
  11873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11874. "type": "tidelift"
  11875. }
  11876. ],
  11877. "time": "2024-09-09T11:45:10+00:00"
  11878. },
  11879. {
  11880. "name": "symfony/process",
  11881. "version": "v6.4.15",
  11882. "source": {
  11883. "type": "git",
  11884. "url": "https://github.com/symfony/process.git",
  11885. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11886. },
  11887. "dist": {
  11888. "type": "zip",
  11889. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11890. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11891. "shasum": ""
  11892. },
  11893. "require": {
  11894. "php": ">=8.1"
  11895. },
  11896. "type": "library",
  11897. "autoload": {
  11898. "psr-4": {
  11899. "Symfony\\Component\\Process\\": ""
  11900. },
  11901. "exclude-from-classmap": [
  11902. "/Tests/"
  11903. ]
  11904. },
  11905. "notification-url": "https://packagist.org/downloads/",
  11906. "license": [
  11907. "MIT"
  11908. ],
  11909. "authors": [
  11910. {
  11911. "name": "Fabien Potencier",
  11912. "email": "fabien@symfony.com"
  11913. },
  11914. {
  11915. "name": "Symfony Community",
  11916. "homepage": "https://symfony.com/contributors"
  11917. }
  11918. ],
  11919. "description": "Executes commands in sub-processes",
  11920. "homepage": "https://symfony.com",
  11921. "support": {
  11922. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11923. },
  11924. "funding": [
  11925. {
  11926. "url": "https://symfony.com/sponsor",
  11927. "type": "custom"
  11928. },
  11929. {
  11930. "url": "https://github.com/fabpot",
  11931. "type": "github"
  11932. },
  11933. {
  11934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11935. "type": "tidelift"
  11936. }
  11937. ],
  11938. "time": "2024-11-06T14:19:14+00:00"
  11939. },
  11940. {
  11941. "name": "symfony/stopwatch",
  11942. "version": "v6.4.13",
  11943. "source": {
  11944. "type": "git",
  11945. "url": "https://github.com/symfony/stopwatch.git",
  11946. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11947. },
  11948. "dist": {
  11949. "type": "zip",
  11950. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11951. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11952. "shasum": ""
  11953. },
  11954. "require": {
  11955. "php": ">=8.1",
  11956. "symfony/service-contracts": "^2.5|^3"
  11957. },
  11958. "type": "library",
  11959. "autoload": {
  11960. "psr-4": {
  11961. "Symfony\\Component\\Stopwatch\\": ""
  11962. },
  11963. "exclude-from-classmap": [
  11964. "/Tests/"
  11965. ]
  11966. },
  11967. "notification-url": "https://packagist.org/downloads/",
  11968. "license": [
  11969. "MIT"
  11970. ],
  11971. "authors": [
  11972. {
  11973. "name": "Fabien Potencier",
  11974. "email": "fabien@symfony.com"
  11975. },
  11976. {
  11977. "name": "Symfony Community",
  11978. "homepage": "https://symfony.com/contributors"
  11979. }
  11980. ],
  11981. "description": "Provides a way to profile code",
  11982. "homepage": "https://symfony.com",
  11983. "support": {
  11984. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11985. },
  11986. "funding": [
  11987. {
  11988. "url": "https://symfony.com/sponsor",
  11989. "type": "custom"
  11990. },
  11991. {
  11992. "url": "https://github.com/fabpot",
  11993. "type": "github"
  11994. },
  11995. {
  11996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11997. "type": "tidelift"
  11998. }
  11999. ],
  12000. "time": "2024-09-25T14:18:03+00:00"
  12001. },
  12002. {
  12003. "name": "theseer/tokenizer",
  12004. "version": "1.2.3",
  12005. "source": {
  12006. "type": "git",
  12007. "url": "https://github.com/theseer/tokenizer.git",
  12008. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12009. },
  12010. "dist": {
  12011. "type": "zip",
  12012. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12013. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12014. "shasum": ""
  12015. },
  12016. "require": {
  12017. "ext-dom": "*",
  12018. "ext-tokenizer": "*",
  12019. "ext-xmlwriter": "*",
  12020. "php": "^7.2 || ^8.0"
  12021. },
  12022. "type": "library",
  12023. "autoload": {
  12024. "classmap": [
  12025. "src/"
  12026. ]
  12027. },
  12028. "notification-url": "https://packagist.org/downloads/",
  12029. "license": [
  12030. "BSD-3-Clause"
  12031. ],
  12032. "authors": [
  12033. {
  12034. "name": "Arne Blankerts",
  12035. "email": "arne@blankerts.de",
  12036. "role": "Developer"
  12037. }
  12038. ],
  12039. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12040. "support": {
  12041. "issues": "https://github.com/theseer/tokenizer/issues",
  12042. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12043. },
  12044. "funding": [
  12045. {
  12046. "url": "https://github.com/theseer",
  12047. "type": "github"
  12048. }
  12049. ],
  12050. "time": "2024-03-03T12:36:25+00:00"
  12051. },
  12052. {
  12053. "name": "zx/php-tools",
  12054. "version": "v0.0.1",
  12055. "source": {
  12056. "type": "git",
  12057. "url": "https://gitee.com/open-php/php-tools.git",
  12058. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  12059. },
  12060. "require": {
  12061. "php": ">=7.0"
  12062. },
  12063. "type": "library",
  12064. "autoload": {
  12065. "psr-4": {
  12066. "ZX\\": "src/"
  12067. }
  12068. },
  12069. "notification-url": "https://packagist.org/downloads/",
  12070. "license": [
  12071. "mit"
  12072. ],
  12073. "authors": [
  12074. {
  12075. "name": "zx",
  12076. "email": "903464207@qq.com"
  12077. }
  12078. ],
  12079. "description": "php-tools",
  12080. "time": "2023-06-25T06:24:10+00:00"
  12081. }
  12082. ],
  12083. "aliases": [],
  12084. "minimum-stability": "dev",
  12085. "stability-flags": [],
  12086. "prefer-stable": true,
  12087. "prefer-lowest": false,
  12088. "platform": {
  12089. "php": ">=8.1"
  12090. },
  12091. "platform-dev": [],
  12092. "plugin-api-version": "2.6.0"
  12093. }