composer.lock 416 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730
  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": "408b8e53c4a0d313ed75355b91296895",
  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.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "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.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "easyswoole/spl",
  501. "version": "2.1.3",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  510. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  551. },
  552. "time": "2024-07-09T14:44:25+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.3",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  733. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.3"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2024-07-20T21:45:45+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.9.2",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  795. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  801. "guzzlehttp/psr7": "^2.7.0",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "guzzle/client-integration-tests": "3.0.2",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2024-07-24T11:22:20+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.4",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  921. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-10-17T10:06:22+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.7.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1004. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-07-18T11:15:46+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.42",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1120. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-09-25T02:54:12+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/async-queue",
  1187. "version": "v3.1.42",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/async-queue.git",
  1191. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1196. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/command": "~3.1.0",
  1203. "hyperf/contract": "~3.1.0",
  1204. "hyperf/support": "~3.1.0",
  1205. "hyperf/utils": "~3.1.0",
  1206. "php": ">=8.1",
  1207. "psr/container": "^1.0 || ^2.0",
  1208. "psr/event-dispatcher": "^1.0"
  1209. },
  1210. "suggest": {
  1211. "hyperf/di": "Required to use annotations.",
  1212. "hyperf/event": "Required to dispatch a event.",
  1213. "hyperf/logger": "Required to use QueueHandleListener.",
  1214. "hyperf/process": "Auto register the consumer process for server."
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "3.1-dev"
  1220. },
  1221. "hyperf": {
  1222. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "files": [
  1227. "src/Functions.php"
  1228. ],
  1229. "psr-4": {
  1230. "Hyperf\\AsyncQueue\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "description": "A async queue component for hyperf.",
  1238. "homepage": "https://hyperf.io",
  1239. "keywords": [
  1240. "async-queue",
  1241. "hyperf",
  1242. "php"
  1243. ],
  1244. "support": {
  1245. "docs": "https://hyperf.wiki",
  1246. "issues": "https://github.com/hyperf/hyperf/issues",
  1247. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1248. "source": "https://github.com/hyperf/hyperf"
  1249. },
  1250. "funding": [
  1251. {
  1252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1253. "type": "custom"
  1254. },
  1255. {
  1256. "url": "https://opencollective.com/hyperf",
  1257. "type": "open_collective"
  1258. }
  1259. ],
  1260. "time": "2024-09-25T02:54:12+00:00"
  1261. },
  1262. {
  1263. "name": "hyperf/cache",
  1264. "version": "v3.1.43",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/hyperf/cache.git",
  1268. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1273. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "hyperf/codec": "~3.1.0",
  1278. "hyperf/collection": "~3.1.0",
  1279. "hyperf/contract": "~3.1.0",
  1280. "hyperf/support": "~3.1.0",
  1281. "hyperf/utils": "~3.1.0",
  1282. "php": ">=8.1",
  1283. "psr/container": "^1.0 || ^2.0",
  1284. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1285. },
  1286. "suggest": {
  1287. "hyperf/di": "Use cache annotations.",
  1288. "hyperf/event": "Use listener to delete annotation cache."
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "3.1-dev"
  1294. },
  1295. "hyperf": {
  1296. "config": "Hyperf\\Cache\\ConfigProvider"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Hyperf\\Cache\\": "src/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "description": "A cache component for hyperf.",
  1309. "homepage": "https://hyperf.io",
  1310. "keywords": [
  1311. "cache",
  1312. "hyperf",
  1313. "php"
  1314. ],
  1315. "support": {
  1316. "docs": "https://hyperf.wiki",
  1317. "issues": "https://github.com/hyperf/hyperf/issues",
  1318. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1319. "source": "https://github.com/hyperf/hyperf"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1324. "type": "custom"
  1325. },
  1326. {
  1327. "url": "https://opencollective.com/hyperf",
  1328. "type": "open_collective"
  1329. }
  1330. ],
  1331. "time": "2024-10-09T10:22:39+00:00"
  1332. },
  1333. {
  1334. "name": "hyperf/code-parser",
  1335. "version": "v3.1.42",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/hyperf/code-parser.git",
  1339. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1344. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "hyperf/collection": "~3.1.0",
  1349. "hyperf/stringable": "~3.1.0",
  1350. "hyperf/support": "~3.1.0",
  1351. "php": ">=8.1"
  1352. },
  1353. "suggest": {
  1354. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1355. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-master": "3.1-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Hyperf\\CodeParser\\": "src/"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "description": "A code parser component for Hyperf.",
  1373. "homepage": "https://hyperf.io",
  1374. "keywords": [
  1375. "code-parser",
  1376. "hyperf",
  1377. "php",
  1378. "swoole"
  1379. ],
  1380. "support": {
  1381. "docs": "https://hyperf.wiki",
  1382. "issues": "https://github.com/hyperf/hyperf/issues",
  1383. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1384. "source": "https://github.com/hyperf/hyperf"
  1385. },
  1386. "funding": [
  1387. {
  1388. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1389. "type": "custom"
  1390. },
  1391. {
  1392. "url": "https://opencollective.com/hyperf",
  1393. "type": "open_collective"
  1394. }
  1395. ],
  1396. "time": "2024-09-25T02:54:12+00:00"
  1397. },
  1398. {
  1399. "name": "hyperf/codec",
  1400. "version": "v3.1.42",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/hyperf/codec.git",
  1404. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1409. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "ext-json": "*",
  1414. "ext-xml": "*",
  1415. "hyperf/contract": "~3.1.0",
  1416. "php": ">=8.1"
  1417. },
  1418. "suggest": {
  1419. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1420. },
  1421. "type": "library",
  1422. "extra": {
  1423. "branch-alias": {
  1424. "dev-master": "3.1-dev"
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Hyperf\\Codec\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "description": "A codec component for Hyperf.",
  1437. "homepage": "https://hyperf.io",
  1438. "keywords": [
  1439. "codec",
  1440. "hyperf",
  1441. "php",
  1442. "swoole"
  1443. ],
  1444. "support": {
  1445. "docs": "https://hyperf.wiki",
  1446. "issues": "https://github.com/hyperf/hyperf/issues",
  1447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1448. "source": "https://github.com/hyperf/hyperf"
  1449. },
  1450. "funding": [
  1451. {
  1452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1453. "type": "custom"
  1454. },
  1455. {
  1456. "url": "https://opencollective.com/hyperf",
  1457. "type": "open_collective"
  1458. }
  1459. ],
  1460. "time": "2024-09-25T02:54:12+00:00"
  1461. },
  1462. {
  1463. "name": "hyperf/collection",
  1464. "version": "v3.1.45",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/hyperf/collection.git",
  1468. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/hyperf/collection/zipball/884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1473. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "hyperf/conditionable": "~3.1.0",
  1478. "hyperf/contract": "~3.1.0",
  1479. "hyperf/macroable": "~3.1.0",
  1480. "hyperf/stringable": "~3.1.0",
  1481. "php": ">=8.1"
  1482. },
  1483. "type": "library",
  1484. "extra": {
  1485. "branch-alias": {
  1486. "dev-master": "3.1-dev"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/Functions.php"
  1492. ],
  1493. "psr-4": {
  1494. "Hyperf\\Collection\\": "src/"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Hyperf Collection package which come from illuminate/collections",
  1502. "homepage": "https://hyperf.io",
  1503. "keywords": [
  1504. "collection",
  1505. "hyperf",
  1506. "php",
  1507. "swoole"
  1508. ],
  1509. "support": {
  1510. "docs": "https://hyperf.wiki",
  1511. "issues": "https://github.com/hyperf/hyperf/issues",
  1512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1513. "source": "https://github.com/hyperf/hyperf"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://opencollective.com/hyperf",
  1522. "type": "open_collective"
  1523. }
  1524. ],
  1525. "time": "2024-11-14T02:27:55+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/command",
  1529. "version": "v3.1.42",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/command.git",
  1533. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1538. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "hyperf/collection": "~3.1.0",
  1543. "hyperf/context": "~3.1.0",
  1544. "hyperf/contract": "~3.1.0",
  1545. "hyperf/coroutine": "~3.1.0",
  1546. "hyperf/di": "~3.1.0",
  1547. "hyperf/stringable": "~3.1.0",
  1548. "hyperf/support": "~3.1.0",
  1549. "hyperf/tappable": "~3.1.0",
  1550. "php": ">=8.1",
  1551. "psr/event-dispatcher": "^1.0",
  1552. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1553. },
  1554. "suggest": {
  1555. "hyperf/di": "Required to use annotations.",
  1556. "hyperf/event": "Required to use listeners."
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "branch-alias": {
  1561. "dev-master": "3.1-dev"
  1562. },
  1563. "hyperf": {
  1564. "config": "Hyperf\\Command\\ConfigProvider"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Hyperf\\Command\\": "src/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "description": "Command for hyperf",
  1577. "keywords": [
  1578. "command",
  1579. "php",
  1580. "swoole"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/hyperf/command/issues",
  1584. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1589. "type": "custom"
  1590. },
  1591. {
  1592. "url": "https://opencollective.com/hyperf",
  1593. "type": "open_collective"
  1594. }
  1595. ],
  1596. "time": "2024-09-25T02:54:12+00:00"
  1597. },
  1598. {
  1599. "name": "hyperf/conditionable",
  1600. "version": "v3.1.42",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/hyperf/conditionable.git",
  1604. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1609. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=8.1"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "3.1-dev"
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Hyperf\\Conditionable\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1631. "homepage": "https://hyperf.io",
  1632. "keywords": [
  1633. "conditionable",
  1634. "hyperf",
  1635. "php",
  1636. "swoole"
  1637. ],
  1638. "support": {
  1639. "docs": "https://hyperf.wiki",
  1640. "issues": "https://github.com/hyperf/hyperf/issues",
  1641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1642. "source": "https://github.com/hyperf/hyperf"
  1643. },
  1644. "funding": [
  1645. {
  1646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1647. "type": "custom"
  1648. },
  1649. {
  1650. "url": "https://opencollective.com/hyperf",
  1651. "type": "open_collective"
  1652. }
  1653. ],
  1654. "time": "2024-09-25T02:54:12+00:00"
  1655. },
  1656. {
  1657. "name": "hyperf/config",
  1658. "version": "v3.1.42",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/hyperf/config.git",
  1662. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1667. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "hyperf/collection": "~3.1.0",
  1672. "hyperf/contract": "~3.1.0",
  1673. "hyperf/support": "~3.1.0",
  1674. "php": ">=8.1",
  1675. "psr/container": "^1.0 || ^2.0",
  1676. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1677. },
  1678. "suggest": {
  1679. "hyperf/context": "Required to use config()",
  1680. "hyperf/di": "Allows using @Value annotation",
  1681. "hyperf/event": "Allows using @Value annotation",
  1682. "hyperf/framework": "Allows using @Value annotation",
  1683. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "3.1-dev"
  1689. },
  1690. "hyperf": {
  1691. "config": "Hyperf\\Config\\ConfigProvider"
  1692. }
  1693. },
  1694. "autoload": {
  1695. "files": [
  1696. "./src/Functions.php"
  1697. ],
  1698. "psr-4": {
  1699. "Hyperf\\Config\\": "src/"
  1700. }
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "MIT"
  1705. ],
  1706. "description": "An independent component that provides configuration container.",
  1707. "homepage": "https://hyperf.io",
  1708. "keywords": [
  1709. "config",
  1710. "configuration",
  1711. "hyperf",
  1712. "php",
  1713. "swoole"
  1714. ],
  1715. "support": {
  1716. "docs": "https://hyperf.wiki",
  1717. "issues": "https://github.com/hyperf/hyperf/issues",
  1718. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1719. "source": "https://github.com/hyperf/hyperf"
  1720. },
  1721. "funding": [
  1722. {
  1723. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1724. "type": "custom"
  1725. },
  1726. {
  1727. "url": "https://opencollective.com/hyperf",
  1728. "type": "open_collective"
  1729. }
  1730. ],
  1731. "time": "2024-09-25T02:54:12+00:00"
  1732. },
  1733. {
  1734. "name": "hyperf/config-center",
  1735. "version": "v3.1.42",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hyperf/config-center.git",
  1739. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1744. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "hyperf/support": "~3.1.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "hyperf/process": "^2.1"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "3.1-dev"
  1758. },
  1759. "hyperf": {
  1760. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Hyperf\\ConfigCenter\\": "src/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "description": "The abstraction component of config center",
  1773. "homepage": "https://hyperf.io",
  1774. "keywords": [
  1775. "config-center",
  1776. "hyperf",
  1777. "php"
  1778. ],
  1779. "support": {
  1780. "docs": "https://hyperf.wiki",
  1781. "issues": "https://github.com/hyperf/hyperf/issues",
  1782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1783. "source": "https://github.com/hyperf/hyperf"
  1784. },
  1785. "funding": [
  1786. {
  1787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1788. "type": "custom"
  1789. },
  1790. {
  1791. "url": "https://opencollective.com/hyperf",
  1792. "type": "open_collective"
  1793. }
  1794. ],
  1795. "time": "2024-09-25T02:54:12+00:00"
  1796. },
  1797. {
  1798. "name": "hyperf/config-nacos",
  1799. "version": "v3.1.42",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/hyperf/config-nacos.git",
  1803. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1808. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "hyperf/codec": "~3.1.0",
  1813. "hyperf/config-center": "~3.1.0",
  1814. "hyperf/contract": "~3.1.0",
  1815. "hyperf/guzzle": "~3.1.0",
  1816. "hyperf/nacos": "~3.1.0",
  1817. "hyperf/support": "~3.1.0",
  1818. "hyperf/utils": "~3.1.0",
  1819. "jetbrains/phpstorm-attributes": "^1.0",
  1820. "php": ">=8.1"
  1821. },
  1822. "suggest": {
  1823. "ext-json": "*",
  1824. "ext-simplexml": "*",
  1825. "ext-yaml": "*",
  1826. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1827. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1828. "hyperf/process": "Required to use processes. (~2.2.0)"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "3.1-dev"
  1834. },
  1835. "hyperf": {
  1836. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "psr-4": {
  1841. "Hyperf\\ConfigNacos\\": "src/"
  1842. }
  1843. },
  1844. "notification-url": "https://packagist.org/downloads/",
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "description": "A nacos adapter for config center component.",
  1849. "homepage": "https://hyperf.io",
  1850. "keywords": [
  1851. "hyperf",
  1852. "nacos",
  1853. "php",
  1854. "swoole"
  1855. ],
  1856. "support": {
  1857. "docs": "https://hyperf.wiki",
  1858. "issues": "https://github.com/hyperf/hyperf/issues",
  1859. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1860. "source": "https://github.com/hyperf/hyperf"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1865. "type": "custom"
  1866. },
  1867. {
  1868. "url": "https://opencollective.com/hyperf",
  1869. "type": "open_collective"
  1870. }
  1871. ],
  1872. "time": "2024-09-25T02:54:12+00:00"
  1873. },
  1874. {
  1875. "name": "hyperf/constants",
  1876. "version": "v3.1.42",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/hyperf/constants.git",
  1880. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1885. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "hyperf/di": "~3.1.0",
  1890. "hyperf/support": "~3.1.0",
  1891. "hyperf/utils": "~3.1.0",
  1892. "php": ">=8.1"
  1893. },
  1894. "suggest": {
  1895. "hyperf/translation": "Required to use translation."
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "3.1-dev"
  1901. },
  1902. "hyperf": {
  1903. "config": "Hyperf\\Constants\\ConfigProvider"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Hyperf\\Constants\\": "src/"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "description": "A constants component for hyperf.",
  1916. "homepage": "https://hyperf.io",
  1917. "keywords": [
  1918. "constants",
  1919. "hyperf",
  1920. "php"
  1921. ],
  1922. "support": {
  1923. "docs": "https://hyperf.wiki",
  1924. "issues": "https://github.com/hyperf/hyperf/issues",
  1925. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1926. "source": "https://github.com/hyperf/hyperf"
  1927. },
  1928. "funding": [
  1929. {
  1930. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1931. "type": "custom"
  1932. },
  1933. {
  1934. "url": "https://opencollective.com/hyperf",
  1935. "type": "open_collective"
  1936. }
  1937. ],
  1938. "time": "2024-09-25T02:54:12+00:00"
  1939. },
  1940. {
  1941. "name": "hyperf/consul",
  1942. "version": "v3.1.42",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/hyperf/consul.git",
  1946. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1951. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1956. "php": ">=8.1"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "3.1-dev"
  1962. },
  1963. "hyperf": {
  1964. "config": "Hyperf\\Consul\\ConfigProvider"
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Hyperf\\Consul\\": "src/"
  1970. }
  1971. },
  1972. "notification-url": "https://packagist.org/downloads/",
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "description": "A Consul Client for Hyperf.",
  1977. "homepage": "https://hyperf.io",
  1978. "keywords": [
  1979. "consul",
  1980. "consul-client",
  1981. "hyperf",
  1982. "php",
  1983. "swoole"
  1984. ],
  1985. "support": {
  1986. "docs": "https://hyperf.wiki",
  1987. "issues": "https://github.com/hyperf/hyperf/issues",
  1988. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1989. "source": "https://github.com/hyperf/hyperf"
  1990. },
  1991. "funding": [
  1992. {
  1993. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://opencollective.com/hyperf",
  1998. "type": "open_collective"
  1999. }
  2000. ],
  2001. "time": "2024-09-25T02:54:12+00:00"
  2002. },
  2003. {
  2004. "name": "hyperf/context",
  2005. "version": "v3.1.42",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/hyperf/context.git",
  2009. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2014. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "hyperf/engine": "^2.0",
  2019. "php": ">=8.1"
  2020. },
  2021. "suggest": {
  2022. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "3.1-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Hyperf\\Context\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "description": "A coroutine/application context library.",
  2040. "homepage": "https://hyperf.io",
  2041. "keywords": [
  2042. "Context",
  2043. "hyperf",
  2044. "php",
  2045. "swoole"
  2046. ],
  2047. "support": {
  2048. "docs": "https://hyperf.wiki",
  2049. "issues": "https://github.com/hyperf/hyperf/issues",
  2050. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2051. "source": "https://github.com/hyperf/hyperf"
  2052. },
  2053. "funding": [
  2054. {
  2055. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2056. "type": "custom"
  2057. },
  2058. {
  2059. "url": "https://opencollective.com/hyperf",
  2060. "type": "open_collective"
  2061. }
  2062. ],
  2063. "time": "2024-09-25T02:54:12+00:00"
  2064. },
  2065. {
  2066. "name": "hyperf/contract",
  2067. "version": "v3.1.42",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/hyperf/contract.git",
  2071. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2076. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2077. "shasum": ""
  2078. },
  2079. "require": {
  2080. "php": ">=8.1"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "3.1-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "Hyperf\\Contract\\": "src/"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "description": "The contracts of Hyperf.",
  2098. "homepage": "https://hyperf.io",
  2099. "keywords": [
  2100. "hyperf",
  2101. "php",
  2102. "swoole"
  2103. ],
  2104. "support": {
  2105. "docs": "https://hyperf.wiki",
  2106. "issues": "https://github.com/hyperf/hyperf/issues",
  2107. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2108. "source": "https://github.com/hyperf/hyperf"
  2109. },
  2110. "funding": [
  2111. {
  2112. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2113. "type": "custom"
  2114. },
  2115. {
  2116. "url": "https://opencollective.com/hyperf",
  2117. "type": "open_collective"
  2118. }
  2119. ],
  2120. "time": "2024-09-25T02:54:12+00:00"
  2121. },
  2122. {
  2123. "name": "hyperf/coordinator",
  2124. "version": "v3.1.42",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/hyperf/coordinator.git",
  2128. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2133. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "hyperf/engine": "^2.0",
  2138. "php": ">=8.1"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "3.1-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "files": [
  2148. "src/Functions.php"
  2149. ],
  2150. "psr-4": {
  2151. "Hyperf\\Coordinator\\": "src/"
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "description": "Hyperf Coordinator",
  2159. "homepage": "https://hyperf.io",
  2160. "keywords": [
  2161. "Coordinator",
  2162. "hyperf",
  2163. "php",
  2164. "swoole"
  2165. ],
  2166. "support": {
  2167. "docs": "https://hyperf.wiki",
  2168. "issues": "https://github.com/hyperf/hyperf/issues",
  2169. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2170. "source": "https://github.com/hyperf/hyperf"
  2171. },
  2172. "funding": [
  2173. {
  2174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2175. "type": "custom"
  2176. },
  2177. {
  2178. "url": "https://opencollective.com/hyperf",
  2179. "type": "open_collective"
  2180. }
  2181. ],
  2182. "time": "2024-09-25T02:54:12+00:00"
  2183. },
  2184. {
  2185. "name": "hyperf/coroutine",
  2186. "version": "v3.1.42",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/hyperf/coroutine.git",
  2190. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2195. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "hyperf/context": "~3.1.0",
  2200. "hyperf/contract": "~3.1.0",
  2201. "hyperf/engine": "^2.0",
  2202. "php": ">=8.1"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "3.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "files": [
  2212. "src/Functions.php"
  2213. ],
  2214. "psr-4": {
  2215. "Hyperf\\Coroutine\\": "src/"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "description": "Hyperf Coroutine",
  2223. "homepage": "https://hyperf.io",
  2224. "keywords": [
  2225. "coroutine",
  2226. "hyperf",
  2227. "php",
  2228. "swoole"
  2229. ],
  2230. "support": {
  2231. "docs": "https://hyperf.wiki",
  2232. "issues": "https://github.com/hyperf/hyperf/issues",
  2233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2234. "source": "https://github.com/hyperf/hyperf"
  2235. },
  2236. "funding": [
  2237. {
  2238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2239. "type": "custom"
  2240. },
  2241. {
  2242. "url": "https://opencollective.com/hyperf",
  2243. "type": "open_collective"
  2244. }
  2245. ],
  2246. "time": "2024-09-25T02:54:12+00:00"
  2247. },
  2248. {
  2249. "name": "hyperf/database",
  2250. "version": "v3.1.45",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/hyperf/database.git",
  2254. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/hyperf/database/zipball/6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2259. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "hyperf/code-parser": "~3.1.0",
  2264. "hyperf/collection": "~3.1.23",
  2265. "hyperf/conditionable": "~3.1.0",
  2266. "hyperf/macroable": "~3.1.0",
  2267. "hyperf/support": "~3.1.0",
  2268. "hyperf/tappable": "~3.1.0",
  2269. "hyperf/utils": "~3.1.0",
  2270. "nesbot/carbon": "^2.0",
  2271. "php": ">=8.1",
  2272. "psr/container": "^1.0 || ^2.0",
  2273. "psr/event-dispatcher": "^1.0"
  2274. },
  2275. "suggest": {
  2276. "doctrine/dbal": "Required to rename columns (^3.0).",
  2277. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2278. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2279. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2280. },
  2281. "type": "library",
  2282. "extra": {
  2283. "branch-alias": {
  2284. "dev-master": "3.1-dev"
  2285. }
  2286. },
  2287. "autoload": {
  2288. "psr-4": {
  2289. "Hyperf\\Database\\": "src/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "description": "A flexible database library.",
  2297. "homepage": "https://hyperf.io",
  2298. "keywords": [
  2299. "database",
  2300. "hyperf",
  2301. "php"
  2302. ],
  2303. "support": {
  2304. "docs": "https://hyperf.wiki",
  2305. "issues": "https://github.com/hyperf/hyperf/issues",
  2306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2307. "source": "https://github.com/hyperf/hyperf"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://opencollective.com/hyperf",
  2316. "type": "open_collective"
  2317. }
  2318. ],
  2319. "time": "2024-11-11T05:55:47+00:00"
  2320. },
  2321. {
  2322. "name": "hyperf/db-connection",
  2323. "version": "v3.1.44",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/hyperf/db-connection.git",
  2327. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2332. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "hyperf/database": "~3.1.0",
  2337. "hyperf/di": "~3.1.0",
  2338. "hyperf/framework": "~3.1.0",
  2339. "hyperf/model-listener": "~3.1.0",
  2340. "hyperf/pool": "~3.1.0",
  2341. "hyperf/support": "~3.1.0",
  2342. "hyperf/utils": "~3.1.0",
  2343. "php": ">=8.1",
  2344. "psr/container": "^1.0 || ^2.0"
  2345. },
  2346. "type": "library",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-master": "3.1-dev"
  2350. },
  2351. "hyperf": {
  2352. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\DbConnection\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A hyperf db connection handler for hyperf/database.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "Connection",
  2368. "database",
  2369. "hyperf",
  2370. "php"
  2371. ],
  2372. "support": {
  2373. "docs": "https://hyperf.wiki",
  2374. "issues": "https://github.com/hyperf/hyperf/issues",
  2375. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2376. "source": "https://github.com/hyperf/hyperf"
  2377. },
  2378. "funding": [
  2379. {
  2380. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2381. "type": "custom"
  2382. },
  2383. {
  2384. "url": "https://opencollective.com/hyperf",
  2385. "type": "open_collective"
  2386. }
  2387. ],
  2388. "time": "2024-10-11T08:58:16+00:00"
  2389. },
  2390. {
  2391. "name": "hyperf/di",
  2392. "version": "v3.1.42",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/hyperf/di.git",
  2396. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2401. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2402. "shasum": ""
  2403. },
  2404. "require": {
  2405. "doctrine/instantiator": "^1.0",
  2406. "hyperf/code-parser": "~3.1.0",
  2407. "hyperf/pipeline": "~3.1.0",
  2408. "hyperf/stdlib": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "nikic/php-parser": "^4.1",
  2411. "php": ">=8.1",
  2412. "php-di/phpdoc-reader": "^2.2",
  2413. "psr/container": "^1.0 || ^2.0",
  2414. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2415. "vlucas/phpdotenv": "^5.0"
  2416. },
  2417. "suggest": {
  2418. "ext-pcntl": "Required to scan annotations.",
  2419. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "3.1-dev"
  2425. },
  2426. "hyperf": {
  2427. "config": "Hyperf\\Di\\ConfigProvider"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Hyperf\\Di\\": "src/"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "description": "A DI for Hyperf.",
  2440. "homepage": "https://hyperf.io",
  2441. "keywords": [
  2442. "annotation",
  2443. "di",
  2444. "hyperf",
  2445. "php",
  2446. "swoole"
  2447. ],
  2448. "support": {
  2449. "docs": "https://hyperf.wiki",
  2450. "issues": "https://github.com/hyperf/hyperf/issues",
  2451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2452. "source": "https://github.com/hyperf/hyperf"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://opencollective.com/hyperf",
  2461. "type": "open_collective"
  2462. }
  2463. ],
  2464. "time": "2024-09-25T02:54:12+00:00"
  2465. },
  2466. {
  2467. "name": "hyperf/dispatcher",
  2468. "version": "v3.1.42",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/hyperf/dispatcher.git",
  2472. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2477. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "hyperf/contract": "~3.1.0",
  2482. "php": ">=8.1",
  2483. "psr/container": "^1.0 || ^2.0",
  2484. "psr/http-message": "^1.0 || ^2.0",
  2485. "psr/http-server-middleware": "^1.0"
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "branch-alias": {
  2490. "dev-master": "3.1-dev"
  2491. },
  2492. "hyperf": {
  2493. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "Hyperf\\Dispatcher\\": "src/"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "description": "A HTTP Server for Hyperf.",
  2506. "homepage": "https://hyperf.io",
  2507. "keywords": [
  2508. "dispatcher",
  2509. "filter",
  2510. "hyperf",
  2511. "middleware",
  2512. "php",
  2513. "swoole"
  2514. ],
  2515. "support": {
  2516. "docs": "https://hyperf.wiki",
  2517. "issues": "https://github.com/hyperf/hyperf/issues",
  2518. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2519. "source": "https://github.com/hyperf/hyperf"
  2520. },
  2521. "funding": [
  2522. {
  2523. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2524. "type": "custom"
  2525. },
  2526. {
  2527. "url": "https://opencollective.com/hyperf",
  2528. "type": "open_collective"
  2529. }
  2530. ],
  2531. "time": "2024-09-25T02:54:12+00:00"
  2532. },
  2533. {
  2534. "name": "hyperf/engine",
  2535. "version": "v2.11.0",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/hyperf/engine.git",
  2539. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2544. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "hyperf/engine-contract": "~1.10.0",
  2549. "php": ">=8.0"
  2550. },
  2551. "conflict": {
  2552. "ext-swoole": "<5.0"
  2553. },
  2554. "require-dev": {
  2555. "friendsofphp/php-cs-fixer": "^3.0",
  2556. "hyperf/guzzle": "^3.0",
  2557. "hyperf/http-message": "^3.0",
  2558. "mockery/mockery": "^1.5",
  2559. "phpstan/phpstan": "^1.0",
  2560. "phpunit/phpunit": "^9.4",
  2561. "swoole/ide-helper": "5.*"
  2562. },
  2563. "suggest": {
  2564. "ext-sockets": "*",
  2565. "ext-swoole": ">=5.0",
  2566. "hyperf/http-message": "Required to use ResponseEmitter.",
  2567. "psr/http-message": "Required to use WebSocket Frame."
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "2.11-dev"
  2573. },
  2574. "hyperf": {
  2575. "config": "Hyperf\\Engine\\ConfigProvider"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "files": [
  2580. "src/Functions.php"
  2581. ],
  2582. "psr-4": {
  2583. "Hyperf\\Engine\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "description": "Coroutine engine provided by swoole.",
  2591. "keywords": [
  2592. "engine",
  2593. "hyperf",
  2594. "php",
  2595. "swoole"
  2596. ],
  2597. "support": {
  2598. "issues": "https://github.com/hyperf/engine/issues",
  2599. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2600. },
  2601. "funding": [
  2602. {
  2603. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2604. "type": "custom"
  2605. },
  2606. {
  2607. "url": "https://opencollective.com/hyperf",
  2608. "type": "open_collective"
  2609. }
  2610. ],
  2611. "time": "2024-04-17T13:36:28+00:00"
  2612. },
  2613. {
  2614. "name": "hyperf/engine-contract",
  2615. "version": "v1.10.1",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/hyperf/engine-contract.git",
  2619. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2624. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=8.0"
  2629. },
  2630. "require-dev": {
  2631. "friendsofphp/php-cs-fixer": "^3.0",
  2632. "mockery/mockery": "^1.0",
  2633. "phpstan/phpstan": "^1.0",
  2634. "phpunit/phpunit": ">=7.0",
  2635. "psr/http-message": "^1.0",
  2636. "swoole/ide-helper": "^4.5"
  2637. },
  2638. "suggest": {
  2639. "psr/http-message": "Required to use WebSocket Frame."
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "1.9-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Hyperf\\Engine\\Contract\\": "src/"
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "MIT"
  2655. ],
  2656. "description": "Contract for Coroutine Engine",
  2657. "keywords": [
  2658. "contract",
  2659. "coroutine",
  2660. "engine",
  2661. "hyperf",
  2662. "php"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/hyperf/engine-contract/issues",
  2666. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://opencollective.com/hyperf",
  2675. "type": "open_collective"
  2676. }
  2677. ],
  2678. "time": "2024-04-17T13:34:51+00:00"
  2679. },
  2680. {
  2681. "name": "hyperf/event",
  2682. "version": "v3.1.42",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/hyperf/event.git",
  2686. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2691. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "hyperf/contract": "~3.1.0",
  2696. "hyperf/stdlib": "~3.1.0",
  2697. "php": ">=8.1",
  2698. "psr/event-dispatcher": "^1.0"
  2699. },
  2700. "suggest": {
  2701. "hyperf/di": "Required to use annotatioins."
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-master": "3.1-dev"
  2707. },
  2708. "hyperf": {
  2709. "config": "Hyperf\\Event\\ConfigProvider"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "psr-4": {
  2714. "Hyperf\\Event\\": "src/"
  2715. }
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "description": "an event manager that implements PSR-14.",
  2722. "homepage": "https://hyperf.io",
  2723. "keywords": [
  2724. "event",
  2725. "hyperf",
  2726. "php",
  2727. "swoole"
  2728. ],
  2729. "support": {
  2730. "docs": "https://hyperf.wiki",
  2731. "issues": "https://github.com/hyperf/hyperf/issues",
  2732. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2733. "source": "https://github.com/hyperf/hyperf"
  2734. },
  2735. "funding": [
  2736. {
  2737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2738. "type": "custom"
  2739. },
  2740. {
  2741. "url": "https://opencollective.com/hyperf",
  2742. "type": "open_collective"
  2743. }
  2744. ],
  2745. "time": "2024-09-25T02:54:12+00:00"
  2746. },
  2747. {
  2748. "name": "hyperf/exception-handler",
  2749. "version": "v3.1.42",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/hyperf/exception-handler.git",
  2753. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2758. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "hyperf/context": "~3.1.0",
  2763. "hyperf/contract": "~3.1.0",
  2764. "hyperf/dispatcher": "~3.1.0",
  2765. "hyperf/http-message": "~3.1.0",
  2766. "hyperf/stdlib": "~3.1.0",
  2767. "hyperf/support": "~3.1.0",
  2768. "php": ">=8.1",
  2769. "psr/container": "^1.0 || ^2.0",
  2770. "psr/http-message": "^1.0 || ^2.0",
  2771. "swow/psr7-plus": "^1.0"
  2772. },
  2773. "suggest": {
  2774. "hyperf/di": "Required to use #[ExceptionHandler]",
  2775. "hyperf/event": "Required to use listeners",
  2776. "hyperf/framework": "Required to use listeners",
  2777. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "3.1-dev"
  2783. },
  2784. "hyperf": {
  2785. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Hyperf\\ExceptionHandler\\": "src/"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "description": "Exception handler for hyperf",
  2798. "homepage": "https://hyperf.io",
  2799. "keywords": [
  2800. "exception-handler",
  2801. "php",
  2802. "swoole"
  2803. ],
  2804. "support": {
  2805. "docs": "https://hyperf.wiki",
  2806. "issues": "https://github.com/hyperf/hyperf/issues",
  2807. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2808. "source": "https://github.com/hyperf/hyperf"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2813. "type": "custom"
  2814. },
  2815. {
  2816. "url": "https://opencollective.com/hyperf",
  2817. "type": "open_collective"
  2818. }
  2819. ],
  2820. "time": "2024-09-25T02:54:12+00:00"
  2821. },
  2822. {
  2823. "name": "hyperf/framework",
  2824. "version": "v3.1.42",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/hyperf/framework.git",
  2828. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2833. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "fig/http-message-util": "^1.1.2",
  2838. "hyperf/contract": "~3.1.0",
  2839. "hyperf/coordinator": "~3.1.0",
  2840. "hyperf/coroutine": "~3.1.0",
  2841. "php": ">=8.1",
  2842. "psr/container": "^1.0 || ^2.0",
  2843. "psr/event-dispatcher": "^1.0",
  2844. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2845. },
  2846. "suggest": {
  2847. "ext-swoole": "Required to use swoole engine.",
  2848. "hyperf/command": "Required to use Command annotation.",
  2849. "hyperf/di": "Required to use Command annotation.",
  2850. "hyperf/dispatcher": "Required to use BootApplication event.",
  2851. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "3.1-dev"
  2857. },
  2858. "hyperf": {
  2859. "config": "Hyperf\\Framework\\ConfigProvider"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Hyperf\\Framework\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2872. "homepage": "https://hyperf.io",
  2873. "keywords": [
  2874. "Microservice",
  2875. "framework",
  2876. "hyperf",
  2877. "middleware",
  2878. "php",
  2879. "swoole"
  2880. ],
  2881. "support": {
  2882. "docs": "https://hyperf.wiki",
  2883. "issues": "https://github.com/hyperf/hyperf/issues",
  2884. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2885. "source": "https://github.com/hyperf/hyperf"
  2886. },
  2887. "funding": [
  2888. {
  2889. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2890. "type": "custom"
  2891. },
  2892. {
  2893. "url": "https://opencollective.com/hyperf",
  2894. "type": "open_collective"
  2895. }
  2896. ],
  2897. "time": "2024-09-25T02:54:12+00:00"
  2898. },
  2899. {
  2900. "name": "hyperf/guzzle",
  2901. "version": "v3.1.42",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/hyperf/guzzle.git",
  2905. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2910. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2915. "php": ">=8.1",
  2916. "psr/container": "^1.0 || ^2.0",
  2917. "psr/http-message": "^1.0 || ^2.0"
  2918. },
  2919. "suggest": {
  2920. "ext-curl": "Required for CURL handler support",
  2921. "hyperf/pool": "Required to use pool handler."
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.1-dev"
  2927. },
  2928. "hyperf": {
  2929. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2930. }
  2931. },
  2932. "autoload": {
  2933. "psr-4": {
  2934. "Hyperf\\Guzzle\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "description": "Swoole coroutine handler for guzzle",
  2942. "keywords": [
  2943. "Guzzle",
  2944. "handler",
  2945. "php",
  2946. "swoole"
  2947. ],
  2948. "support": {
  2949. "issues": "https://github.com/hyperf/guzzle/issues",
  2950. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2951. },
  2952. "funding": [
  2953. {
  2954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2955. "type": "custom"
  2956. },
  2957. {
  2958. "url": "https://opencollective.com/hyperf",
  2959. "type": "open_collective"
  2960. }
  2961. ],
  2962. "time": "2024-09-25T02:54:12+00:00"
  2963. },
  2964. {
  2965. "name": "hyperf/http-message",
  2966. "version": "v3.1.42",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/hyperf/http-message.git",
  2970. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2975. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "hyperf/codec": "~3.1.0",
  2980. "hyperf/engine": "^2.11",
  2981. "hyperf/support": "~3.1.0",
  2982. "laminas/laminas-mime": "^2.7",
  2983. "php": ">=8.1",
  2984. "psr/http-message": "^1.0 || ^2.0",
  2985. "swow/psr7-plus": "^1.0"
  2986. },
  2987. "suggest": {
  2988. "psr/container": "Required to replace RequestParserInterface."
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "3.1-dev"
  2994. },
  2995. "hyperf": {
  2996. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Hyperf\\HttpMessage\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "description": "microservice framework base on swoole",
  3009. "keywords": [
  3010. "http-message",
  3011. "hyperf",
  3012. "php",
  3013. "swoole"
  3014. ],
  3015. "support": {
  3016. "issues": "https://github.com/hyperf/http-message/issues",
  3017. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://opencollective.com/hyperf",
  3026. "type": "open_collective"
  3027. }
  3028. ],
  3029. "time": "2024-09-25T02:54:12+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/http-server",
  3033. "version": "v3.1.42",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/http-server.git",
  3037. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3042. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "hyperf/codec": "~3.1.0",
  3047. "hyperf/collection": "~3.1.0",
  3048. "hyperf/context": "~3.1.0",
  3049. "hyperf/contract": "~3.1.0",
  3050. "hyperf/coroutine": "~3.1.0",
  3051. "hyperf/dispatcher": "~3.1.0",
  3052. "hyperf/event": "~3.1.0",
  3053. "hyperf/exception-handler": "~3.1.0",
  3054. "hyperf/http-message": "~3.1.0",
  3055. "hyperf/macroable": "~3.1.0",
  3056. "hyperf/serializer": "~3.1.0",
  3057. "hyperf/server": "~3.1.0",
  3058. "hyperf/stdlib": "~3.1.0",
  3059. "hyperf/support": "~3.1.0",
  3060. "nikic/fast-route": "^1.3",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "swow/psr7-plus": "^1.0"
  3064. },
  3065. "suggest": {
  3066. "hyperf/di": "Required to use annotations."
  3067. },
  3068. "type": "library",
  3069. "extra": {
  3070. "branch-alias": {
  3071. "dev-master": "3.1-dev"
  3072. },
  3073. "hyperf": {
  3074. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3075. }
  3076. },
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Hyperf\\HttpServer\\": "src/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "description": "A HTTP Server for Hyperf.",
  3087. "homepage": "https://hyperf.io",
  3088. "keywords": [
  3089. "http",
  3090. "http-server",
  3091. "hyperf",
  3092. "php",
  3093. "swoole"
  3094. ],
  3095. "support": {
  3096. "docs": "https://hyperf.wiki",
  3097. "issues": "https://github.com/hyperf/hyperf/issues",
  3098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3099. "source": "https://github.com/hyperf/hyperf"
  3100. },
  3101. "funding": [
  3102. {
  3103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3104. "type": "custom"
  3105. },
  3106. {
  3107. "url": "https://opencollective.com/hyperf",
  3108. "type": "open_collective"
  3109. }
  3110. ],
  3111. "time": "2024-09-25T02:54:12+00:00"
  3112. },
  3113. {
  3114. "name": "hyperf/json-rpc",
  3115. "version": "v3.1.42",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/hyperf/json-rpc.git",
  3119. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3124. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "hyperf/codec": "~3.1.0",
  3129. "hyperf/context": "~3.1.0",
  3130. "hyperf/contract": "~3.1.0",
  3131. "hyperf/engine": "^2.0",
  3132. "hyperf/http-message": "~3.1.0",
  3133. "hyperf/load-balancer": "~3.1.0",
  3134. "hyperf/rpc": "~3.1.0",
  3135. "hyperf/serializer": "~3.1.0",
  3136. "hyperf/support": "~3.1.0",
  3137. "hyperf/utils": "~3.1.0",
  3138. "php": ">=8.1",
  3139. "psr/container": "^1.0 || ^2.0",
  3140. "swow/psr7-plus": "^1.0"
  3141. },
  3142. "suggest": {
  3143. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3144. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3145. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3146. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3147. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "3.1-dev"
  3153. },
  3154. "hyperf": {
  3155. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3156. }
  3157. },
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Hyperf\\JsonRpc\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3168. "homepage": "https://hyperf.io",
  3169. "keywords": [
  3170. "hyperf",
  3171. "json-rpc",
  3172. "php",
  3173. "swoole"
  3174. ],
  3175. "support": {
  3176. "docs": "https://hyperf.wiki",
  3177. "issues": "https://github.com/hyperf/hyperf/issues",
  3178. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3179. "source": "https://github.com/hyperf/hyperf"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3184. "type": "custom"
  3185. },
  3186. {
  3187. "url": "https://opencollective.com/hyperf",
  3188. "type": "open_collective"
  3189. }
  3190. ],
  3191. "time": "2024-09-25T02:54:12+00:00"
  3192. },
  3193. {
  3194. "name": "hyperf/load-balancer",
  3195. "version": "v3.1.42",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/hyperf/load-balancer.git",
  3199. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3204. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "hyperf/coordinator": "~3.1.0",
  3209. "hyperf/coroutine": "~3.1.0",
  3210. "markrogoyski/math-php": "^2.0",
  3211. "php": ">=8.1",
  3212. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "3.1-dev"
  3218. },
  3219. "hyperf": {
  3220. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Hyperf\\LoadBalancer\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "description": "A load balancer library for Hyperf.",
  3233. "homepage": "https://hyperf.io",
  3234. "keywords": [
  3235. "hyperf",
  3236. "load-balancer",
  3237. "php",
  3238. "swoole"
  3239. ],
  3240. "support": {
  3241. "docs": "https://hyperf.wiki",
  3242. "issues": "https://github.com/hyperf/hyperf/issues",
  3243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3244. "source": "https://github.com/hyperf/hyperf"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://opencollective.com/hyperf",
  3253. "type": "open_collective"
  3254. }
  3255. ],
  3256. "time": "2024-09-25T02:54:12+00:00"
  3257. },
  3258. {
  3259. "name": "hyperf/logger",
  3260. "version": "v3.1.42",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/hyperf/logger.git",
  3264. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3269. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "hyperf/contract": "~3.1.0",
  3274. "hyperf/support": "~3.1.0",
  3275. "hyperf/utils": "~3.1.0",
  3276. "monolog/monolog": "^2.7 || ^3.1",
  3277. "php": ">=8.1",
  3278. "psr/container": "^1.0 || ^2.0",
  3279. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "3.1-dev"
  3285. },
  3286. "hyperf": {
  3287. "config": "Hyperf\\Logger\\ConfigProvider"
  3288. }
  3289. },
  3290. "autoload": {
  3291. "psr-4": {
  3292. "Hyperf\\Logger\\": "src/"
  3293. }
  3294. },
  3295. "notification-url": "https://packagist.org/downloads/",
  3296. "license": [
  3297. "MIT"
  3298. ],
  3299. "description": "A logger component for hyperf.",
  3300. "homepage": "https://hyperf.io",
  3301. "keywords": [
  3302. "hyperf",
  3303. "logger",
  3304. "php"
  3305. ],
  3306. "support": {
  3307. "docs": "https://hyperf.wiki",
  3308. "issues": "https://github.com/hyperf/hyperf/issues",
  3309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3310. "source": "https://github.com/hyperf/hyperf"
  3311. },
  3312. "funding": [
  3313. {
  3314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3315. "type": "custom"
  3316. },
  3317. {
  3318. "url": "https://opencollective.com/hyperf",
  3319. "type": "open_collective"
  3320. }
  3321. ],
  3322. "time": "2024-09-25T02:54:12+00:00"
  3323. },
  3324. {
  3325. "name": "hyperf/macroable",
  3326. "version": "v3.1.42",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/hyperf/macroable.git",
  3330. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3335. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3336. "shasum": ""
  3337. },
  3338. "require": {
  3339. "php": ">=8.1"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "branch-alias": {
  3344. "dev-master": "3.1-dev"
  3345. }
  3346. },
  3347. "autoload": {
  3348. "psr-4": {
  3349. "Hyperf\\Macroable\\": "src/"
  3350. }
  3351. },
  3352. "notification-url": "https://packagist.org/downloads/",
  3353. "license": [
  3354. "MIT"
  3355. ],
  3356. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3357. "homepage": "https://hyperf.io",
  3358. "keywords": [
  3359. "hyperf",
  3360. "macroable",
  3361. "php",
  3362. "swoole"
  3363. ],
  3364. "support": {
  3365. "docs": "https://hyperf.wiki",
  3366. "issues": "https://github.com/hyperf/hyperf/issues",
  3367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3368. "source": "https://github.com/hyperf/hyperf"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3373. "type": "custom"
  3374. },
  3375. {
  3376. "url": "https://opencollective.com/hyperf",
  3377. "type": "open_collective"
  3378. }
  3379. ],
  3380. "time": "2024-09-25T02:54:12+00:00"
  3381. },
  3382. {
  3383. "name": "hyperf/memory",
  3384. "version": "v3.1.42",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/hyperf/memory.git",
  3388. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3393. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3394. "shasum": ""
  3395. },
  3396. "require": {
  3397. "php": ">=8.1"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "3.1-dev"
  3403. },
  3404. "hyperf": {
  3405. "config": "Hyperf\\Memory\\ConfigProvider"
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Hyperf\\Memory\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "description": "An independent component that use to operate and manage memory.",
  3418. "homepage": "https://hyperf.io",
  3419. "keywords": [
  3420. "hyperf",
  3421. "memory",
  3422. "php",
  3423. "swoole"
  3424. ],
  3425. "support": {
  3426. "docs": "https://hyperf.wiki",
  3427. "issues": "https://github.com/hyperf/hyperf/issues",
  3428. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3429. "source": "https://github.com/hyperf/hyperf"
  3430. },
  3431. "funding": [
  3432. {
  3433. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3434. "type": "custom"
  3435. },
  3436. {
  3437. "url": "https://opencollective.com/hyperf",
  3438. "type": "open_collective"
  3439. }
  3440. ],
  3441. "time": "2024-09-25T02:54:12+00:00"
  3442. },
  3443. {
  3444. "name": "hyperf/model-listener",
  3445. "version": "v3.1.42",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/hyperf/model-listener.git",
  3449. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3454. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "hyperf/contract": "~3.1.0",
  3459. "hyperf/database": "~3.1.0",
  3460. "hyperf/di": "~3.1.0",
  3461. "hyperf/event": "~3.1.0",
  3462. "hyperf/support": "~3.1.0",
  3463. "hyperf/utils": "~3.1.0",
  3464. "php": ">=8.1",
  3465. "psr/container": "^1.0 || ^2.0"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "branch-alias": {
  3470. "dev-master": "3.1-dev"
  3471. },
  3472. "hyperf": {
  3473. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Hyperf\\ModelListener\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "description": "A model listener for Hyperf.",
  3486. "homepage": "https://hyperf.io",
  3487. "keywords": [
  3488. "hyperf",
  3489. "model-listener",
  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/nacos",
  3513. "version": "v3.1.42",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/hyperf/nacos.git",
  3517. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3522. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3527. "hyperf/codec": "~3.1.0",
  3528. "hyperf/contract": "~3.1.0",
  3529. "hyperf/support": "~3.1.0",
  3530. "hyperf/utils": "~3.1.0",
  3531. "jetbrains/phpstorm-attributes": "^1.0",
  3532. "php": ">=8.1"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.1-dev"
  3538. },
  3539. "hyperf": {
  3540. "config": "Hyperf\\Nacos\\ConfigProvider"
  3541. }
  3542. },
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Hyperf\\Nacos\\": "src/"
  3546. }
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "description": "Nacos SDK",
  3553. "keywords": [
  3554. "hyperf",
  3555. "nacos",
  3556. "php"
  3557. ],
  3558. "support": {
  3559. "issues": "https://github.com/hyperf/nacos/issues",
  3560. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3561. },
  3562. "funding": [
  3563. {
  3564. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3565. "type": "custom"
  3566. },
  3567. {
  3568. "url": "https://opencollective.com/hyperf",
  3569. "type": "open_collective"
  3570. }
  3571. ],
  3572. "time": "2024-09-25T02:54:12+00:00"
  3573. },
  3574. {
  3575. "name": "hyperf/pipeline",
  3576. "version": "v3.1.42",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/hyperf/pipeline.git",
  3580. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3585. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "php": ">=8.1",
  3590. "psr/container": "^1.0 || ^2.0"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "3.1-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "Hyperf\\Pipeline\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3608. "homepage": "https://hyperf.io",
  3609. "keywords": [
  3610. "hyperf",
  3611. "php",
  3612. "pipeline",
  3613. "swoole"
  3614. ],
  3615. "support": {
  3616. "docs": "https://hyperf.wiki",
  3617. "issues": "https://github.com/hyperf/hyperf/issues",
  3618. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3619. "source": "https://github.com/hyperf/hyperf"
  3620. },
  3621. "funding": [
  3622. {
  3623. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3624. "type": "custom"
  3625. },
  3626. {
  3627. "url": "https://opencollective.com/hyperf",
  3628. "type": "open_collective"
  3629. }
  3630. ],
  3631. "time": "2024-09-25T02:54:12+00:00"
  3632. },
  3633. {
  3634. "name": "hyperf/pool",
  3635. "version": "v3.1.42",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://github.com/hyperf/pool.git",
  3639. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3644. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3645. "shasum": ""
  3646. },
  3647. "require": {
  3648. "hyperf/contract": "~3.1.0",
  3649. "hyperf/support": "~3.1.0",
  3650. "hyperf/utils": "~3.1.0",
  3651. "php": ">=8.1",
  3652. "psr/container": "^1.0 || ^2.0"
  3653. },
  3654. "suggest": {
  3655. "psr/event-dispatcher": "Required to use events."
  3656. },
  3657. "type": "library",
  3658. "extra": {
  3659. "branch-alias": {
  3660. "dev-master": "3.1-dev"
  3661. },
  3662. "hyperf": {
  3663. "config": "Hyperf\\Pool\\ConfigProvider"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Hyperf\\Pool\\": "src/"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "description": "An independent universal connection pool component.",
  3676. "homepage": "https://hyperf.io",
  3677. "keywords": [
  3678. "connection-pool",
  3679. "hyperf",
  3680. "php",
  3681. "swoole"
  3682. ],
  3683. "support": {
  3684. "docs": "https://hyperf.wiki",
  3685. "issues": "https://github.com/hyperf/hyperf/issues",
  3686. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3687. "source": "https://github.com/hyperf/hyperf"
  3688. },
  3689. "funding": [
  3690. {
  3691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3692. "type": "custom"
  3693. },
  3694. {
  3695. "url": "https://opencollective.com/hyperf",
  3696. "type": "open_collective"
  3697. }
  3698. ],
  3699. "time": "2024-09-25T02:54:12+00:00"
  3700. },
  3701. {
  3702. "name": "hyperf/process",
  3703. "version": "v3.1.42",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/hyperf/process.git",
  3707. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3712. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "hyperf/contract": "~3.1.0",
  3717. "hyperf/support": "~3.1.0",
  3718. "hyperf/utils": "~3.1.0",
  3719. "php": ">=8.1",
  3720. "psr/container": "^1.0 || ^2.0",
  3721. "psr/event-dispatcher": "^1.0"
  3722. },
  3723. "suggest": {
  3724. "hyperf/di": "Required to use annotations.",
  3725. "hyperf/event": "Required to dump the message before and after process.",
  3726. "hyperf/framework": "Required to use BootProcessListener."
  3727. },
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "3.1-dev"
  3732. },
  3733. "hyperf": {
  3734. "config": "Hyperf\\Process\\ConfigProvider"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "Hyperf\\Process\\": "src/"
  3740. }
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "MIT"
  3745. ],
  3746. "description": "A process component for hyperf.",
  3747. "homepage": "https://hyperf.io",
  3748. "keywords": [
  3749. "hyperf",
  3750. "php",
  3751. "process"
  3752. ],
  3753. "support": {
  3754. "docs": "https://hyperf.wiki",
  3755. "issues": "https://github.com/hyperf/hyperf/issues",
  3756. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3757. "source": "https://github.com/hyperf/hyperf"
  3758. },
  3759. "funding": [
  3760. {
  3761. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3762. "type": "custom"
  3763. },
  3764. {
  3765. "url": "https://opencollective.com/hyperf",
  3766. "type": "open_collective"
  3767. }
  3768. ],
  3769. "time": "2024-09-25T02:54:12+00:00"
  3770. },
  3771. {
  3772. "name": "hyperf/redis",
  3773. "version": "v3.1.42",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/hyperf/redis.git",
  3777. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3782. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "ext-redis": "^5.0 || ^6.0",
  3787. "hyperf/contract": "~3.1.0",
  3788. "hyperf/pool": "~3.1.0",
  3789. "hyperf/support": "~3.1.0",
  3790. "hyperf/tappable": "~3.1.0",
  3791. "hyperf/utils": "~3.1.0",
  3792. "php": ">=8.1",
  3793. "psr/container": "^1.0 || ^2.0"
  3794. },
  3795. "suggest": {
  3796. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3797. "hyperf/di": "Create the RedisPool via dependency injection."
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "3.1-dev"
  3803. },
  3804. "hyperf": {
  3805. "config": "Hyperf\\Redis\\ConfigProvider"
  3806. }
  3807. },
  3808. "autoload": {
  3809. "psr-4": {
  3810. "Hyperf\\Redis\\": "src/"
  3811. }
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "MIT"
  3816. ],
  3817. "description": "A redis component for hyperf.",
  3818. "homepage": "https://hyperf.io",
  3819. "keywords": [
  3820. "hyperf",
  3821. "php",
  3822. "pool",
  3823. "redis"
  3824. ],
  3825. "support": {
  3826. "docs": "https://hyperf.wiki",
  3827. "issues": "https://github.com/hyperf/hyperf/issues",
  3828. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3829. "source": "https://github.com/hyperf/hyperf"
  3830. },
  3831. "funding": [
  3832. {
  3833. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3834. "type": "custom"
  3835. },
  3836. {
  3837. "url": "https://opencollective.com/hyperf",
  3838. "type": "open_collective"
  3839. }
  3840. ],
  3841. "time": "2024-09-25T02:54:12+00:00"
  3842. },
  3843. {
  3844. "name": "hyperf/rpc",
  3845. "version": "v3.1.42",
  3846. "source": {
  3847. "type": "git",
  3848. "url": "https://github.com/hyperf/rpc.git",
  3849. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3850. },
  3851. "dist": {
  3852. "type": "zip",
  3853. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3854. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3855. "shasum": ""
  3856. },
  3857. "require": {
  3858. "hyperf/codec": "~3.1.0",
  3859. "hyperf/contract": "~3.1.0",
  3860. "hyperf/support": "~3.1.0",
  3861. "jetbrains/phpstorm-attributes": "^1.0",
  3862. "php": ">=8.1"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "3.1-dev"
  3868. },
  3869. "hyperf": []
  3870. },
  3871. "autoload": {
  3872. "psr-4": {
  3873. "Hyperf\\Rpc\\": "src/"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "description": "A rpc basic library for Hyperf.",
  3881. "homepage": "https://hyperf.io",
  3882. "keywords": [
  3883. "hyperf",
  3884. "php",
  3885. "rpc",
  3886. "swoole"
  3887. ],
  3888. "support": {
  3889. "docs": "https://hyperf.wiki",
  3890. "issues": "https://github.com/hyperf/hyperf/issues",
  3891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3892. "source": "https://github.com/hyperf/hyperf"
  3893. },
  3894. "funding": [
  3895. {
  3896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3897. "type": "custom"
  3898. },
  3899. {
  3900. "url": "https://opencollective.com/hyperf",
  3901. "type": "open_collective"
  3902. }
  3903. ],
  3904. "time": "2024-09-25T02:54:12+00:00"
  3905. },
  3906. {
  3907. "name": "hyperf/rpc-client",
  3908. "version": "v3.1.42",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/hyperf/rpc-client.git",
  3912. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3917. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3918. "shasum": ""
  3919. },
  3920. "require": {
  3921. "hyperf/code-parser": "~3.1.0",
  3922. "hyperf/load-balancer": "~3.1.0",
  3923. "hyperf/rpc": "~3.1.0",
  3924. "hyperf/support": "~3.1.0",
  3925. "hyperf/utils": "~3.1.0",
  3926. "jetbrains/phpstorm-attributes": "^1.0",
  3927. "php": ">=8.1",
  3928. "psr/container": "^1.0 || ^2.0"
  3929. },
  3930. "suggest": {
  3931. "hyperf/di": "For better container experience.",
  3932. "hyperf/pool": "Required to use connection pool.",
  3933. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3934. },
  3935. "type": "library",
  3936. "extra": {
  3937. "branch-alias": {
  3938. "dev-master": "3.1-dev"
  3939. },
  3940. "hyperf": {
  3941. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Hyperf\\RpcClient\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "description": "An abstract rpc server component for Hyperf.",
  3954. "homepage": "https://hyperf.io",
  3955. "keywords": [
  3956. "hyperf",
  3957. "json-rpc",
  3958. "php",
  3959. "rpc",
  3960. "rpc-client",
  3961. "swoole"
  3962. ],
  3963. "support": {
  3964. "docs": "https://hyperf.wiki",
  3965. "issues": "https://github.com/hyperf/hyperf/issues",
  3966. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3967. "source": "https://github.com/hyperf/hyperf"
  3968. },
  3969. "funding": [
  3970. {
  3971. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3972. "type": "custom"
  3973. },
  3974. {
  3975. "url": "https://opencollective.com/hyperf",
  3976. "type": "open_collective"
  3977. }
  3978. ],
  3979. "time": "2024-09-25T02:54:12+00:00"
  3980. },
  3981. {
  3982. "name": "hyperf/rpc-server",
  3983. "version": "v3.1.42",
  3984. "source": {
  3985. "type": "git",
  3986. "url": "https://github.com/hyperf/rpc-server.git",
  3987. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3988. },
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3992. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3993. "shasum": ""
  3994. },
  3995. "require": {
  3996. "hyperf/http-server": "~3.1.0",
  3997. "hyperf/rpc": "~3.1.0",
  3998. "php": ">=8.1"
  3999. },
  4000. "suggest": {
  4001. "hyperf/di": "Required to use annotations."
  4002. },
  4003. "type": "library",
  4004. "extra": {
  4005. "branch-alias": {
  4006. "dev-master": "3.1-dev"
  4007. },
  4008. "hyperf": {
  4009. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "Hyperf\\RpcServer\\": "src/"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "description": "An abstract rpc server component for Hyperf.",
  4022. "homepage": "https://hyperf.io",
  4023. "keywords": [
  4024. "hyperf",
  4025. "php",
  4026. "rpc",
  4027. "rpc-server",
  4028. "swoole"
  4029. ],
  4030. "support": {
  4031. "docs": "https://hyperf.wiki",
  4032. "issues": "https://github.com/hyperf/hyperf/issues",
  4033. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4034. "source": "https://github.com/hyperf/hyperf"
  4035. },
  4036. "funding": [
  4037. {
  4038. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4039. "type": "custom"
  4040. },
  4041. {
  4042. "url": "https://opencollective.com/hyperf",
  4043. "type": "open_collective"
  4044. }
  4045. ],
  4046. "time": "2024-09-25T02:54:12+00:00"
  4047. },
  4048. {
  4049. "name": "hyperf/serializer",
  4050. "version": "v3.1.42",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://github.com/hyperf/serializer.git",
  4054. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4059. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4060. "shasum": ""
  4061. },
  4062. "require": {
  4063. "hyperf/contract": "~3.1.0",
  4064. "php": ">=8.1"
  4065. },
  4066. "suggest": {
  4067. "hyperf/di": "Required to use ExceptionNormalizer",
  4068. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4069. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "3.1-dev"
  4075. },
  4076. "hyperf": {
  4077. "config": "Hyperf\\Serializer\\ConfigProvider"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Hyperf\\Serializer\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "A serializer component for Hyperf.",
  4090. "homepage": "https://hyperf.io",
  4091. "keywords": [
  4092. "hyperf",
  4093. "php",
  4094. "swoole",
  4095. "tappable"
  4096. ],
  4097. "support": {
  4098. "docs": "https://hyperf.wiki",
  4099. "issues": "https://github.com/hyperf/hyperf/issues",
  4100. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4101. "source": "https://github.com/hyperf/hyperf"
  4102. },
  4103. "funding": [
  4104. {
  4105. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4106. "type": "custom"
  4107. },
  4108. {
  4109. "url": "https://opencollective.com/hyperf",
  4110. "type": "open_collective"
  4111. }
  4112. ],
  4113. "time": "2024-09-25T02:54:12+00:00"
  4114. },
  4115. {
  4116. "name": "hyperf/server",
  4117. "version": "v3.1.42",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/hyperf/server.git",
  4121. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4126. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4127. "shasum": ""
  4128. },
  4129. "require": {
  4130. "hyperf/contract": "~3.1.0",
  4131. "hyperf/coordinator": "~3.1.0",
  4132. "hyperf/engine": "^2.8",
  4133. "hyperf/support": "~3.1.0",
  4134. "hyperf/tappable": "~3.1.0",
  4135. "php": ">=8.1",
  4136. "psr/container": "^1.0 || ^2.0",
  4137. "psr/event-dispatcher": "^1.0",
  4138. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4139. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4140. },
  4141. "suggest": {
  4142. "hyperf/event": "Dump the info after server start.",
  4143. "hyperf/framework": "Dump the info after server start."
  4144. },
  4145. "type": "library",
  4146. "extra": {
  4147. "branch-alias": {
  4148. "dev-master": "3.1-dev"
  4149. },
  4150. "hyperf": {
  4151. "config": "Hyperf\\Server\\ConfigProvider"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Hyperf\\Server\\": "src/"
  4157. }
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "description": "A base server library for Hyperf.",
  4164. "homepage": "https://hyperf.io",
  4165. "keywords": [
  4166. "hyperf",
  4167. "php",
  4168. "server",
  4169. "swoole"
  4170. ],
  4171. "support": {
  4172. "docs": "https://hyperf.wiki",
  4173. "issues": "https://github.com/hyperf/hyperf/issues",
  4174. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4175. "source": "https://github.com/hyperf/hyperf"
  4176. },
  4177. "funding": [
  4178. {
  4179. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4180. "type": "custom"
  4181. },
  4182. {
  4183. "url": "https://opencollective.com/hyperf",
  4184. "type": "open_collective"
  4185. }
  4186. ],
  4187. "time": "2024-09-25T02:54:12+00:00"
  4188. },
  4189. {
  4190. "name": "hyperf/service-governance",
  4191. "version": "v3.1.42",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/hyperf/service-governance.git",
  4195. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4200. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4201. "shasum": ""
  4202. },
  4203. "require": {
  4204. "hyperf/contract": "~3.1.0",
  4205. "hyperf/support": "~3.1.0",
  4206. "jetbrains/phpstorm-attributes": "^1.0",
  4207. "php": ">=8.1"
  4208. },
  4209. "suggest": {
  4210. "hyperf/event": "Required to use RegisterServiceListener.",
  4211. "hyperf/framework": "Required to use RegisterServiceListener.",
  4212. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4213. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4214. },
  4215. "type": "library",
  4216. "extra": {
  4217. "branch-alias": {
  4218. "dev-master": "3.1-dev"
  4219. },
  4220. "hyperf": {
  4221. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Hyperf\\ServiceGovernance\\": "src/"
  4227. }
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "description": "A service governance component for Hyperf.",
  4234. "homepage": "https://hyperf.io",
  4235. "keywords": [
  4236. "hyperf",
  4237. "php",
  4238. "service-governance",
  4239. "swoole"
  4240. ],
  4241. "support": {
  4242. "docs": "https://hyperf.wiki",
  4243. "issues": "https://github.com/hyperf/hyperf/issues",
  4244. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4245. "source": "https://github.com/hyperf/hyperf"
  4246. },
  4247. "funding": [
  4248. {
  4249. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4250. "type": "custom"
  4251. },
  4252. {
  4253. "url": "https://opencollective.com/hyperf",
  4254. "type": "open_collective"
  4255. }
  4256. ],
  4257. "time": "2024-09-25T02:54:12+00:00"
  4258. },
  4259. {
  4260. "name": "hyperf/service-governance-consul",
  4261. "version": "v3.1.42",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/hyperf/service-governance-consul.git",
  4265. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4270. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "hyperf/consul": "~3.1.0",
  4275. "hyperf/contract": "~3.1.0",
  4276. "hyperf/service-governance": "~3.1.0",
  4277. "hyperf/support": "~3.1.0",
  4278. "hyperf/utils": "~3.1.0",
  4279. "php": ">=8.1"
  4280. },
  4281. "type": "library",
  4282. "extra": {
  4283. "branch-alias": {
  4284. "dev-master": "3.1-dev"
  4285. },
  4286. "hyperf": {
  4287. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "description": "A consul adapter for service governance.",
  4300. "homepage": "https://hyperf.io",
  4301. "keywords": [
  4302. "consul-adapter",
  4303. "hyperf",
  4304. "php",
  4305. "service-governance",
  4306. "swoole"
  4307. ],
  4308. "support": {
  4309. "docs": "https://hyperf.wiki",
  4310. "issues": "https://github.com/hyperf/hyperf/issues",
  4311. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4312. "source": "https://github.com/hyperf/hyperf"
  4313. },
  4314. "funding": [
  4315. {
  4316. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4317. "type": "custom"
  4318. },
  4319. {
  4320. "url": "https://opencollective.com/hyperf",
  4321. "type": "open_collective"
  4322. }
  4323. ],
  4324. "time": "2024-09-25T02:54:12+00:00"
  4325. },
  4326. {
  4327. "name": "hyperf/service-governance-nacos",
  4328. "version": "v3.1.42",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4332. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4337. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "hyperf/codec": "~3.1.0",
  4342. "hyperf/contract": "~3.1.0",
  4343. "hyperf/nacos": "~3.1.0",
  4344. "hyperf/service-governance": "~3.1.0",
  4345. "hyperf/support": "~3.1.0",
  4346. "hyperf/utils": "~3.1.0",
  4347. "php": ">=8.1"
  4348. },
  4349. "type": "library",
  4350. "extra": {
  4351. "branch-alias": {
  4352. "dev-master": "3.1-dev"
  4353. },
  4354. "hyperf": {
  4355. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4356. }
  4357. },
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4361. }
  4362. },
  4363. "notification-url": "https://packagist.org/downloads/",
  4364. "license": [
  4365. "MIT"
  4366. ],
  4367. "description": "A nacos adapter for service governance.",
  4368. "homepage": "https://hyperf.io",
  4369. "keywords": [
  4370. "hyperf",
  4371. "nacos-adapter",
  4372. "php",
  4373. "service-governance",
  4374. "swoole"
  4375. ],
  4376. "support": {
  4377. "docs": "https://hyperf.wiki",
  4378. "issues": "https://github.com/hyperf/hyperf/issues",
  4379. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4380. "source": "https://github.com/hyperf/hyperf"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4385. "type": "custom"
  4386. },
  4387. {
  4388. "url": "https://opencollective.com/hyperf",
  4389. "type": "open_collective"
  4390. }
  4391. ],
  4392. "time": "2024-09-25T02:54:12+00:00"
  4393. },
  4394. {
  4395. "name": "hyperf/snowflake",
  4396. "version": "v3.1.42",
  4397. "source": {
  4398. "type": "git",
  4399. "url": "https://github.com/hyperf/snowflake.git",
  4400. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4401. },
  4402. "dist": {
  4403. "type": "zip",
  4404. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4405. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4406. "shasum": ""
  4407. },
  4408. "require": {
  4409. "hyperf/contract": "~3.1.0",
  4410. "php": ">=8.1"
  4411. },
  4412. "suggest": {
  4413. "hyperf/config": "Required to read snowflake config.",
  4414. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4415. "psr/container": "Required to use MetaGeneratorFactory."
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. },
  4422. "hyperf": {
  4423. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Hyperf\\Snowflake\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A snowflake library",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "php",
  4439. "snowflake"
  4440. ],
  4441. "support": {
  4442. "docs": "https://hyperf.wiki",
  4443. "issues": "https://github.com/hyperf/hyperf/issues",
  4444. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4445. "source": "https://github.com/hyperf/hyperf"
  4446. },
  4447. "funding": [
  4448. {
  4449. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4450. "type": "custom"
  4451. },
  4452. {
  4453. "url": "https://opencollective.com/hyperf",
  4454. "type": "open_collective"
  4455. }
  4456. ],
  4457. "time": "2024-09-25T02:54:12+00:00"
  4458. },
  4459. {
  4460. "name": "hyperf/stdlib",
  4461. "version": "v3.1.42",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/hyperf/stdlib.git",
  4465. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4470. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "php": ">=8.1"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "3.1-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Hyperf\\Stdlib\\": "src/"
  4485. }
  4486. },
  4487. "notification-url": "https://packagist.org/downloads/",
  4488. "license": [
  4489. "MIT"
  4490. ],
  4491. "description": "A stdlib component for Hyperf.",
  4492. "homepage": "https://hyperf.io",
  4493. "keywords": [
  4494. "hyperf",
  4495. "php",
  4496. "stdlib",
  4497. "swoole"
  4498. ],
  4499. "support": {
  4500. "docs": "https://hyperf.wiki",
  4501. "issues": "https://github.com/hyperf/hyperf/issues",
  4502. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4503. "source": "https://github.com/hyperf/hyperf"
  4504. },
  4505. "funding": [
  4506. {
  4507. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4508. "type": "custom"
  4509. },
  4510. {
  4511. "url": "https://opencollective.com/hyperf",
  4512. "type": "open_collective"
  4513. }
  4514. ],
  4515. "time": "2024-09-25T02:54:12+00:00"
  4516. },
  4517. {
  4518. "name": "hyperf/stringable",
  4519. "version": "v3.1.43",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/hyperf/stringable.git",
  4523. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4528. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "ext-mbstring": "*",
  4533. "hyperf/collection": "~3.1.0",
  4534. "hyperf/conditionable": "~3.1.0",
  4535. "hyperf/macroable": "~3.1.0",
  4536. "hyperf/tappable": "~3.1.0",
  4537. "php": ">=8.1"
  4538. },
  4539. "suggest": {
  4540. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4541. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4542. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4543. },
  4544. "type": "library",
  4545. "extra": {
  4546. "branch-alias": {
  4547. "dev-master": "3.1-dev"
  4548. }
  4549. },
  4550. "autoload": {
  4551. "files": [
  4552. "src/Functions.php"
  4553. ],
  4554. "psr-4": {
  4555. "Hyperf\\Stringable\\": "src/"
  4556. }
  4557. },
  4558. "notification-url": "https://packagist.org/downloads/",
  4559. "license": [
  4560. "MIT"
  4561. ],
  4562. "description": "Hyperf Stringable package which come from illuminate/support",
  4563. "homepage": "https://hyperf.io",
  4564. "keywords": [
  4565. "hyperf",
  4566. "php",
  4567. "stringable",
  4568. "swoole"
  4569. ],
  4570. "support": {
  4571. "docs": "https://hyperf.wiki",
  4572. "issues": "https://github.com/hyperf/hyperf/issues",
  4573. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4574. "source": "https://github.com/hyperf/hyperf"
  4575. },
  4576. "funding": [
  4577. {
  4578. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4579. "type": "custom"
  4580. },
  4581. {
  4582. "url": "https://opencollective.com/hyperf",
  4583. "type": "open_collective"
  4584. }
  4585. ],
  4586. "time": "2024-10-09T02:28:40+00:00"
  4587. },
  4588. {
  4589. "name": "hyperf/support",
  4590. "version": "v3.1.42",
  4591. "source": {
  4592. "type": "git",
  4593. "url": "https://github.com/hyperf/support.git",
  4594. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4595. },
  4596. "dist": {
  4597. "type": "zip",
  4598. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4599. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4600. "shasum": ""
  4601. },
  4602. "require": {
  4603. "hyperf/collection": "~3.1.0",
  4604. "hyperf/context": "~3.1.0",
  4605. "hyperf/contract": "~3.1.0",
  4606. "hyperf/coroutine": "~3.1.0",
  4607. "hyperf/macroable": "~3.1.0",
  4608. "hyperf/stringable": "~3.1.0",
  4609. "php": ">=8.1"
  4610. },
  4611. "suggest": {
  4612. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4613. },
  4614. "type": "library",
  4615. "extra": {
  4616. "branch-alias": {
  4617. "dev-master": "3.1-dev"
  4618. }
  4619. },
  4620. "autoload": {
  4621. "files": [
  4622. "src/Functions.php"
  4623. ],
  4624. "psr-4": {
  4625. "Hyperf\\Support\\": "src/"
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "description": "A support component for Hyperf.",
  4633. "homepage": "https://hyperf.io",
  4634. "keywords": [
  4635. "hyperf",
  4636. "php",
  4637. "support",
  4638. "swoole"
  4639. ],
  4640. "support": {
  4641. "docs": "https://hyperf.wiki",
  4642. "issues": "https://github.com/hyperf/hyperf/issues",
  4643. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4644. "source": "https://github.com/hyperf/hyperf"
  4645. },
  4646. "funding": [
  4647. {
  4648. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4649. "type": "custom"
  4650. },
  4651. {
  4652. "url": "https://opencollective.com/hyperf",
  4653. "type": "open_collective"
  4654. }
  4655. ],
  4656. "time": "2024-09-25T02:54:12+00:00"
  4657. },
  4658. {
  4659. "name": "hyperf/tappable",
  4660. "version": "v3.1.42",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://github.com/hyperf/tappable.git",
  4664. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4669. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4670. "shasum": ""
  4671. },
  4672. "require": {
  4673. "php": ">=8.1"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "3.1-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "files": [
  4683. "src/Functions.php"
  4684. ],
  4685. "psr-4": {
  4686. "Hyperf\\Tappable\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4694. "homepage": "https://hyperf.io",
  4695. "keywords": [
  4696. "hyperf",
  4697. "php",
  4698. "swoole",
  4699. "tappable"
  4700. ],
  4701. "support": {
  4702. "docs": "https://hyperf.wiki",
  4703. "issues": "https://github.com/hyperf/hyperf/issues",
  4704. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4705. "source": "https://github.com/hyperf/hyperf"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://opencollective.com/hyperf",
  4714. "type": "open_collective"
  4715. }
  4716. ],
  4717. "time": "2024-09-25T02:54:12+00:00"
  4718. },
  4719. {
  4720. "name": "hyperf/translation",
  4721. "version": "v3.1.42",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/hyperf/translation.git",
  4725. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4730. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4731. "shasum": ""
  4732. },
  4733. "require": {
  4734. "hyperf/contract": "~3.1.0",
  4735. "hyperf/macroable": "~3.1.0",
  4736. "hyperf/support": "~3.1.0",
  4737. "hyperf/utils": "~3.1.0",
  4738. "php": ">=8.1",
  4739. "psr/container": "^1.0 || ^2.0"
  4740. },
  4741. "type": "library",
  4742. "extra": {
  4743. "branch-alias": {
  4744. "dev-master": "3.1-dev"
  4745. },
  4746. "hyperf": {
  4747. "config": "Hyperf\\Translation\\ConfigProvider"
  4748. }
  4749. },
  4750. "autoload": {
  4751. "files": [
  4752. "src/Functions.php"
  4753. ],
  4754. "psr-4": {
  4755. "Hyperf\\Translation\\": "src/"
  4756. }
  4757. },
  4758. "notification-url": "https://packagist.org/downloads/",
  4759. "license": [
  4760. "MIT"
  4761. ],
  4762. "description": "An independent translation component, forked by illuminate/translation.",
  4763. "keywords": [
  4764. "hyperf",
  4765. "translation"
  4766. ],
  4767. "support": {
  4768. "issues": "https://github.com/hyperf/translation/issues",
  4769. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4770. },
  4771. "funding": [
  4772. {
  4773. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4774. "type": "custom"
  4775. },
  4776. {
  4777. "url": "https://opencollective.com/hyperf",
  4778. "type": "open_collective"
  4779. }
  4780. ],
  4781. "time": "2024-09-25T02:54:12+00:00"
  4782. },
  4783. {
  4784. "name": "hyperf/utils",
  4785. "version": "v3.1.42",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/hyperf/utils.git",
  4789. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4794. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4795. "shasum": ""
  4796. },
  4797. "require": {
  4798. "doctrine/inflector": "^2.0",
  4799. "hyperf/code-parser": "~3.1.0",
  4800. "hyperf/codec": "~3.1.0",
  4801. "hyperf/collection": "~3.1.0",
  4802. "hyperf/context": "~3.1.0",
  4803. "hyperf/contract": "~3.1.0",
  4804. "hyperf/coordinator": "~3.1.0",
  4805. "hyperf/coroutine": "~3.1.0",
  4806. "hyperf/engine": "^2.0",
  4807. "hyperf/macroable": "~3.1.0",
  4808. "hyperf/serializer": "~3.1.0",
  4809. "hyperf/stringable": "~3.1.0",
  4810. "hyperf/support": "~3.1.0",
  4811. "php": ">=8.1"
  4812. },
  4813. "type": "library",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-master": "3.1-dev"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "MIT"
  4822. ],
  4823. "description": "A tools package that could help developer solved the problem quickly.",
  4824. "homepage": "https://hyperf.io",
  4825. "keywords": [
  4826. "hyperf",
  4827. "php",
  4828. "swoole",
  4829. "utils"
  4830. ],
  4831. "support": {
  4832. "docs": "https://hyperf.wiki",
  4833. "issues": "https://github.com/hyperf/hyperf/issues",
  4834. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4835. "source": "https://github.com/hyperf/hyperf"
  4836. },
  4837. "funding": [
  4838. {
  4839. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4840. "type": "custom"
  4841. },
  4842. {
  4843. "url": "https://opencollective.com/hyperf",
  4844. "type": "open_collective"
  4845. }
  4846. ],
  4847. "time": "2024-09-25T02:54:12+00:00"
  4848. },
  4849. {
  4850. "name": "hyperf/validation",
  4851. "version": "v3.1.42",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://github.com/hyperf/validation.git",
  4855. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4860. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4861. "shasum": ""
  4862. },
  4863. "require": {
  4864. "egulias/email-validator": "^3.0",
  4865. "hyperf/collection": "~3.1.0",
  4866. "hyperf/conditionable": "~3.1.0",
  4867. "hyperf/contract": "~3.1.0",
  4868. "hyperf/di": "~3.1.0",
  4869. "hyperf/framework": "~3.1.0",
  4870. "hyperf/macroable": "~3.1.0",
  4871. "hyperf/stringable": "~3.1.0",
  4872. "hyperf/support": "~3.1.0",
  4873. "hyperf/tappable": "~3.1.0",
  4874. "hyperf/translation": "~3.1.0",
  4875. "hyperf/utils": "~3.1.0",
  4876. "nesbot/carbon": "^2.21",
  4877. "php": ">=8.1",
  4878. "psr/container": "^1.0 || ^2.0",
  4879. "psr/event-dispatcher": "^1.0",
  4880. "psr/http-message": "^1.0 || ^2.0"
  4881. },
  4882. "suggest": {
  4883. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4884. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4885. },
  4886. "type": "library",
  4887. "extra": {
  4888. "branch-alias": {
  4889. "dev-master": "3.1-dev"
  4890. },
  4891. "hyperf": {
  4892. "config": "Hyperf\\Validation\\ConfigProvider"
  4893. }
  4894. },
  4895. "autoload": {
  4896. "psr-4": {
  4897. "Hyperf\\Validation\\": "src/"
  4898. }
  4899. },
  4900. "notification-url": "https://packagist.org/downloads/",
  4901. "license": [
  4902. "MIT"
  4903. ],
  4904. "description": "hyperf validation",
  4905. "keywords": [
  4906. "hyperf",
  4907. "validation"
  4908. ],
  4909. "support": {
  4910. "issues": "https://github.com/hyperf/validation/issues",
  4911. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4912. },
  4913. "funding": [
  4914. {
  4915. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4916. "type": "custom"
  4917. },
  4918. {
  4919. "url": "https://opencollective.com/hyperf",
  4920. "type": "open_collective"
  4921. }
  4922. ],
  4923. "time": "2024-09-25T02:54:12+00:00"
  4924. },
  4925. {
  4926. "name": "hyperf/websocket-server",
  4927. "version": "v3.1.42",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/hyperf/websocket-server.git",
  4931. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4936. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "hyperf/collection": "~3.1.0",
  4941. "hyperf/contract": "~3.1.0",
  4942. "hyperf/exception-handler": "~3.1.0",
  4943. "hyperf/http-server": "~3.1.0",
  4944. "hyperf/support": "~3.1.0",
  4945. "hyperf/utils": "~3.1.0",
  4946. "php": ">=8.1",
  4947. "psr/container": "^1.0 || ^2.0",
  4948. "psr/event-dispatcher": "^1.0"
  4949. },
  4950. "type": "library",
  4951. "extra": {
  4952. "branch-alias": {
  4953. "dev-master": "3.1-dev"
  4954. },
  4955. "hyperf": {
  4956. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4957. }
  4958. },
  4959. "autoload": {
  4960. "psr-4": {
  4961. "Hyperf\\WebSocketServer\\": "src/"
  4962. }
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "description": "A websocket server library for Hyperf.",
  4969. "homepage": "https://hyperf.io",
  4970. "keywords": [
  4971. "hyperf",
  4972. "php",
  4973. "swoole",
  4974. "websocket"
  4975. ],
  4976. "support": {
  4977. "docs": "https://hyperf.wiki",
  4978. "issues": "https://github.com/hyperf/hyperf/issues",
  4979. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4980. "source": "https://github.com/hyperf/hyperf"
  4981. },
  4982. "funding": [
  4983. {
  4984. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4985. "type": "custom"
  4986. },
  4987. {
  4988. "url": "https://opencollective.com/hyperf",
  4989. "type": "open_collective"
  4990. }
  4991. ],
  4992. "time": "2024-09-25T02:54:12+00:00"
  4993. },
  4994. {
  4995. "name": "jetbrains/phpstorm-attributes",
  4996. "version": "1.2",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5000. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5005. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5006. "shasum": ""
  5007. },
  5008. "type": "library",
  5009. "autoload": {
  5010. "psr-4": {
  5011. "JetBrains\\PhpStorm\\": "src/"
  5012. }
  5013. },
  5014. "notification-url": "https://packagist.org/downloads/",
  5015. "license": [
  5016. "Apache-2.0"
  5017. ],
  5018. "authors": [
  5019. {
  5020. "name": "JetBrains",
  5021. "homepage": "https://www.jetbrains.com"
  5022. }
  5023. ],
  5024. "description": "PhpStorm specific attributes",
  5025. "keywords": [
  5026. "attributes",
  5027. "jetbrains",
  5028. "phpstorm"
  5029. ],
  5030. "support": {
  5031. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5032. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5033. },
  5034. "time": "2024-10-11T10:46:19+00:00"
  5035. },
  5036. {
  5037. "name": "laminas/laminas-mime",
  5038. "version": "2.12.0",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/laminas/laminas-mime.git",
  5042. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5047. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5052. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5053. },
  5054. "conflict": {
  5055. "zendframework/zend-mime": "*"
  5056. },
  5057. "require-dev": {
  5058. "laminas/laminas-coding-standard": "~2.4.0",
  5059. "laminas/laminas-mail": "^2.19.0",
  5060. "phpunit/phpunit": "~9.5.25"
  5061. },
  5062. "suggest": {
  5063. "laminas/laminas-mail": "Laminas\\Mail component"
  5064. },
  5065. "type": "library",
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Laminas\\Mime\\": "src/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "BSD-3-Clause"
  5074. ],
  5075. "description": "Create and parse MIME messages and parts",
  5076. "homepage": "https://laminas.dev",
  5077. "keywords": [
  5078. "laminas",
  5079. "mime"
  5080. ],
  5081. "support": {
  5082. "chat": "https://laminas.dev/chat",
  5083. "docs": "https://docs.laminas.dev/laminas-mime/",
  5084. "forum": "https://discourse.laminas.dev",
  5085. "issues": "https://github.com/laminas/laminas-mime/issues",
  5086. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5087. "source": "https://github.com/laminas/laminas-mime"
  5088. },
  5089. "funding": [
  5090. {
  5091. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5092. "type": "community_bridge"
  5093. }
  5094. ],
  5095. "time": "2023-11-02T16:47:19+00:00"
  5096. },
  5097. {
  5098. "name": "laminas/laminas-stdlib",
  5099. "version": "3.20.0",
  5100. "source": {
  5101. "type": "git",
  5102. "url": "https://github.com/laminas/laminas-stdlib.git",
  5103. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5104. },
  5105. "dist": {
  5106. "type": "zip",
  5107. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5108. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5109. "shasum": ""
  5110. },
  5111. "require": {
  5112. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5113. },
  5114. "conflict": {
  5115. "zendframework/zend-stdlib": "*"
  5116. },
  5117. "require-dev": {
  5118. "laminas/laminas-coding-standard": "^3.0",
  5119. "phpbench/phpbench": "^1.3.1",
  5120. "phpunit/phpunit": "^10.5.38",
  5121. "psalm/plugin-phpunit": "^0.19.0",
  5122. "vimeo/psalm": "^5.26.1"
  5123. },
  5124. "type": "library",
  5125. "autoload": {
  5126. "psr-4": {
  5127. "Laminas\\Stdlib\\": "src/"
  5128. }
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "BSD-3-Clause"
  5133. ],
  5134. "description": "SPL extensions, array utilities, error handlers, and more",
  5135. "homepage": "https://laminas.dev",
  5136. "keywords": [
  5137. "laminas",
  5138. "stdlib"
  5139. ],
  5140. "support": {
  5141. "chat": "https://laminas.dev/chat",
  5142. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5143. "forum": "https://discourse.laminas.dev",
  5144. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5145. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5146. "source": "https://github.com/laminas/laminas-stdlib"
  5147. },
  5148. "funding": [
  5149. {
  5150. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5151. "type": "community_bridge"
  5152. }
  5153. ],
  5154. "time": "2024-10-29T13:46:07+00:00"
  5155. },
  5156. {
  5157. "name": "lcobucci/clock",
  5158. "version": "2.3.0",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/lcobucci/clock.git",
  5162. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5167. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5168. "shasum": ""
  5169. },
  5170. "require": {
  5171. "php": "~8.1.0 || ~8.2.0",
  5172. "stella-maris/clock": "^0.1.7"
  5173. },
  5174. "provide": {
  5175. "psr/clock-implementation": "1.0"
  5176. },
  5177. "require-dev": {
  5178. "infection/infection": "^0.26",
  5179. "lcobucci/coding-standard": "^9.0",
  5180. "phpstan/extension-installer": "^1.2",
  5181. "phpstan/phpstan": "^1.9.4",
  5182. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5183. "phpstan/phpstan-phpunit": "^1.3.2",
  5184. "phpstan/phpstan-strict-rules": "^1.4.4",
  5185. "phpunit/phpunit": "^9.5.27"
  5186. },
  5187. "type": "library",
  5188. "autoload": {
  5189. "psr-4": {
  5190. "Lcobucci\\Clock\\": "src"
  5191. }
  5192. },
  5193. "notification-url": "https://packagist.org/downloads/",
  5194. "license": [
  5195. "MIT"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Luís Cobucci",
  5200. "email": "lcobucci@gmail.com"
  5201. }
  5202. ],
  5203. "description": "Yet another clock abstraction",
  5204. "support": {
  5205. "issues": "https://github.com/lcobucci/clock/issues",
  5206. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5207. },
  5208. "funding": [
  5209. {
  5210. "url": "https://github.com/lcobucci",
  5211. "type": "github"
  5212. },
  5213. {
  5214. "url": "https://www.patreon.com/lcobucci",
  5215. "type": "patreon"
  5216. }
  5217. ],
  5218. "time": "2022-12-19T14:38:11+00:00"
  5219. },
  5220. {
  5221. "name": "lcobucci/jwt",
  5222. "version": "4.1.5",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/lcobucci/jwt.git",
  5226. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5231. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5232. "shasum": ""
  5233. },
  5234. "require": {
  5235. "ext-hash": "*",
  5236. "ext-json": "*",
  5237. "ext-mbstring": "*",
  5238. "ext-openssl": "*",
  5239. "ext-sodium": "*",
  5240. "lcobucci/clock": "^2.0",
  5241. "php": "^7.4 || ^8.0"
  5242. },
  5243. "require-dev": {
  5244. "infection/infection": "^0.21",
  5245. "lcobucci/coding-standard": "^6.0",
  5246. "mikey179/vfsstream": "^1.6.7",
  5247. "phpbench/phpbench": "^1.0",
  5248. "phpstan/extension-installer": "^1.0",
  5249. "phpstan/phpstan": "^0.12",
  5250. "phpstan/phpstan-deprecation-rules": "^0.12",
  5251. "phpstan/phpstan-phpunit": "^0.12",
  5252. "phpstan/phpstan-strict-rules": "^0.12",
  5253. "phpunit/php-invoker": "^3.1",
  5254. "phpunit/phpunit": "^9.5"
  5255. },
  5256. "type": "library",
  5257. "autoload": {
  5258. "psr-4": {
  5259. "Lcobucci\\JWT\\": "src"
  5260. }
  5261. },
  5262. "notification-url": "https://packagist.org/downloads/",
  5263. "license": [
  5264. "BSD-3-Clause"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "Luís Cobucci",
  5269. "email": "lcobucci@gmail.com",
  5270. "role": "Developer"
  5271. }
  5272. ],
  5273. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5274. "keywords": [
  5275. "JWS",
  5276. "jwt"
  5277. ],
  5278. "support": {
  5279. "issues": "https://github.com/lcobucci/jwt/issues",
  5280. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://github.com/lcobucci",
  5285. "type": "github"
  5286. },
  5287. {
  5288. "url": "https://www.patreon.com/lcobucci",
  5289. "type": "patreon"
  5290. }
  5291. ],
  5292. "time": "2021-09-28T19:34:56+00:00"
  5293. },
  5294. {
  5295. "name": "markrogoyski/math-php",
  5296. "version": "v2.10.0",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/markrogoyski/math-php.git",
  5300. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5305. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5306. "shasum": ""
  5307. },
  5308. "require": {
  5309. "ext-json": "*",
  5310. "php": ">=7.2.0"
  5311. },
  5312. "require-dev": {
  5313. "php-coveralls/php-coveralls": "^2.0",
  5314. "php-parallel-lint/php-parallel-lint": "^1.2",
  5315. "phploc/phploc": "*",
  5316. "phpmd/phpmd": "^2.6",
  5317. "phpstan/phpstan": "^1.10",
  5318. "phpunit/phpunit": "^8.5",
  5319. "squizlabs/php_codesniffer": "3.*"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "MathPHP\\": "src/"
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Mark Rogoyski",
  5334. "email": "mark@rogoyski.com",
  5335. "homepage": "https://github.com/markrogoyski",
  5336. "role": "Lead developer"
  5337. },
  5338. {
  5339. "name": "Kevin Nowaczyk",
  5340. "homepage": "https://github.com/Beakerboy",
  5341. "role": "Developer"
  5342. },
  5343. {
  5344. "name": "MathPHP Community of Contributors",
  5345. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5346. }
  5347. ],
  5348. "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",
  5349. "homepage": "https://github.com/markrogoyski/math-php/",
  5350. "keywords": [
  5351. "algebra",
  5352. "combinatorics",
  5353. "distributions",
  5354. "linear algebra",
  5355. "math",
  5356. "mathematics",
  5357. "matrix",
  5358. "numerical analysis",
  5359. "probability",
  5360. "regressions",
  5361. "statistics"
  5362. ],
  5363. "support": {
  5364. "issues": "https://github.com/markrogoyski/math-php/issues",
  5365. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5366. },
  5367. "time": "2024-04-17T00:09:51+00:00"
  5368. },
  5369. {
  5370. "name": "monolog/monolog",
  5371. "version": "3.8.0",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/Seldaek/monolog.git",
  5375. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  5380. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  5381. "shasum": ""
  5382. },
  5383. "require": {
  5384. "php": ">=8.1",
  5385. "psr/log": "^2.0 || ^3.0"
  5386. },
  5387. "provide": {
  5388. "psr/log-implementation": "3.0.0"
  5389. },
  5390. "require-dev": {
  5391. "aws/aws-sdk-php": "^3.0",
  5392. "doctrine/couchdb": "~1.0@dev",
  5393. "elasticsearch/elasticsearch": "^7 || ^8",
  5394. "ext-json": "*",
  5395. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5396. "guzzlehttp/guzzle": "^7.4.5",
  5397. "guzzlehttp/psr7": "^2.2",
  5398. "mongodb/mongodb": "^1.8",
  5399. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5400. "php-console/php-console": "^3.1.8",
  5401. "phpstan/phpstan": "^2",
  5402. "phpstan/phpstan-deprecation-rules": "^2",
  5403. "phpstan/phpstan-strict-rules": "^2",
  5404. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5405. "predis/predis": "^1.1 || ^2",
  5406. "rollbar/rollbar": "^4.0",
  5407. "ruflin/elastica": "^7 || ^8",
  5408. "symfony/mailer": "^5.4 || ^6",
  5409. "symfony/mime": "^5.4 || ^6"
  5410. },
  5411. "suggest": {
  5412. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5413. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5414. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5415. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5416. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5417. "ext-mbstring": "Allow to work properly with unicode symbols",
  5418. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5419. "ext-openssl": "Required to send log messages using SSL",
  5420. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5421. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5422. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5423. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5424. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5425. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5426. },
  5427. "type": "library",
  5428. "extra": {
  5429. "branch-alias": {
  5430. "dev-main": "3.x-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Monolog\\": "src/Monolog"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Jordi Boggiano",
  5445. "email": "j.boggiano@seld.be",
  5446. "homepage": "https://seld.be"
  5447. }
  5448. ],
  5449. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5450. "homepage": "https://github.com/Seldaek/monolog",
  5451. "keywords": [
  5452. "log",
  5453. "logging",
  5454. "psr-3"
  5455. ],
  5456. "support": {
  5457. "issues": "https://github.com/Seldaek/monolog/issues",
  5458. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  5459. },
  5460. "funding": [
  5461. {
  5462. "url": "https://github.com/Seldaek",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2024-11-12T13:57:08+00:00"
  5471. },
  5472. {
  5473. "name": "nesbot/carbon",
  5474. "version": "2.72.5",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/briannesbitt/Carbon.git",
  5478. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5483. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "carbonphp/carbon-doctrine-types": "*",
  5488. "ext-json": "*",
  5489. "php": "^7.1.8 || ^8.0",
  5490. "psr/clock": "^1.0",
  5491. "symfony/polyfill-mbstring": "^1.0",
  5492. "symfony/polyfill-php80": "^1.16",
  5493. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5494. },
  5495. "provide": {
  5496. "psr/clock-implementation": "1.0"
  5497. },
  5498. "require-dev": {
  5499. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5500. "doctrine/orm": "^2.7 || ^3.0",
  5501. "friendsofphp/php-cs-fixer": "^3.0",
  5502. "kylekatarnls/multi-tester": "^2.0",
  5503. "ondrejmirtes/better-reflection": "*",
  5504. "phpmd/phpmd": "^2.9",
  5505. "phpstan/extension-installer": "^1.0",
  5506. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5507. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5508. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5509. "squizlabs/php_codesniffer": "^3.4"
  5510. },
  5511. "bin": [
  5512. "bin/carbon"
  5513. ],
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "3.x-dev",
  5518. "dev-2.x": "2.x-dev"
  5519. },
  5520. "laravel": {
  5521. "providers": [
  5522. "Carbon\\Laravel\\ServiceProvider"
  5523. ]
  5524. },
  5525. "phpstan": {
  5526. "includes": [
  5527. "extension.neon"
  5528. ]
  5529. }
  5530. },
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Carbon\\": "src/Carbon/"
  5534. }
  5535. },
  5536. "notification-url": "https://packagist.org/downloads/",
  5537. "license": [
  5538. "MIT"
  5539. ],
  5540. "authors": [
  5541. {
  5542. "name": "Brian Nesbitt",
  5543. "email": "brian@nesbot.com",
  5544. "homepage": "https://markido.com"
  5545. },
  5546. {
  5547. "name": "kylekatarnls",
  5548. "homepage": "https://github.com/kylekatarnls"
  5549. }
  5550. ],
  5551. "description": "An API extension for DateTime that supports 281 different languages.",
  5552. "homepage": "https://carbon.nesbot.com",
  5553. "keywords": [
  5554. "date",
  5555. "datetime",
  5556. "time"
  5557. ],
  5558. "support": {
  5559. "docs": "https://carbon.nesbot.com/docs",
  5560. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5561. "source": "https://github.com/briannesbitt/Carbon"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://github.com/sponsors/kylekatarnls",
  5566. "type": "github"
  5567. },
  5568. {
  5569. "url": "https://opencollective.com/Carbon#sponsor",
  5570. "type": "opencollective"
  5571. },
  5572. {
  5573. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5574. "type": "tidelift"
  5575. }
  5576. ],
  5577. "time": "2024-06-03T19:18:41+00:00"
  5578. },
  5579. {
  5580. "name": "nikic/fast-route",
  5581. "version": "v1.3.0",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/nikic/FastRoute.git",
  5585. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5590. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": ">=5.4.0"
  5595. },
  5596. "require-dev": {
  5597. "phpunit/phpunit": "^4.8.35|~5.7"
  5598. },
  5599. "type": "library",
  5600. "autoload": {
  5601. "files": [
  5602. "src/functions.php"
  5603. ],
  5604. "psr-4": {
  5605. "FastRoute\\": "src/"
  5606. }
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "BSD-3-Clause"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Nikita Popov",
  5615. "email": "nikic@php.net"
  5616. }
  5617. ],
  5618. "description": "Fast request router for PHP",
  5619. "keywords": [
  5620. "router",
  5621. "routing"
  5622. ],
  5623. "support": {
  5624. "issues": "https://github.com/nikic/FastRoute/issues",
  5625. "source": "https://github.com/nikic/FastRoute/tree/master"
  5626. },
  5627. "time": "2018-02-13T20:26:39+00:00"
  5628. },
  5629. {
  5630. "name": "nikic/php-parser",
  5631. "version": "v4.19.4",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/nikic/PHP-Parser.git",
  5635. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5640. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5641. "shasum": ""
  5642. },
  5643. "require": {
  5644. "ext-tokenizer": "*",
  5645. "php": ">=7.1"
  5646. },
  5647. "require-dev": {
  5648. "ircmaxell/php-yacc": "^0.0.7",
  5649. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5650. },
  5651. "bin": [
  5652. "bin/php-parse"
  5653. ],
  5654. "type": "library",
  5655. "extra": {
  5656. "branch-alias": {
  5657. "dev-master": "4.9-dev"
  5658. }
  5659. },
  5660. "autoload": {
  5661. "psr-4": {
  5662. "PhpParser\\": "lib/PhpParser"
  5663. }
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "BSD-3-Clause"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Nikita Popov"
  5672. }
  5673. ],
  5674. "description": "A PHP parser written in PHP",
  5675. "keywords": [
  5676. "parser",
  5677. "php"
  5678. ],
  5679. "support": {
  5680. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5681. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5682. },
  5683. "time": "2024-09-29T15:01:53+00:00"
  5684. },
  5685. {
  5686. "name": "paragonie/constant_time_encoding",
  5687. "version": "v3.0.0",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5691. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5696. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": "^8"
  5701. },
  5702. "require-dev": {
  5703. "phpunit/phpunit": "^9",
  5704. "vimeo/psalm": "^4|^5"
  5705. },
  5706. "type": "library",
  5707. "autoload": {
  5708. "psr-4": {
  5709. "ParagonIE\\ConstantTime\\": "src/"
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "Paragon Initiative Enterprises",
  5719. "email": "security@paragonie.com",
  5720. "homepage": "https://paragonie.com",
  5721. "role": "Maintainer"
  5722. },
  5723. {
  5724. "name": "Steve 'Sc00bz' Thomas",
  5725. "email": "steve@tobtu.com",
  5726. "homepage": "https://www.tobtu.com",
  5727. "role": "Original Developer"
  5728. }
  5729. ],
  5730. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5731. "keywords": [
  5732. "base16",
  5733. "base32",
  5734. "base32_decode",
  5735. "base32_encode",
  5736. "base64",
  5737. "base64_decode",
  5738. "base64_encode",
  5739. "bin2hex",
  5740. "encoding",
  5741. "hex",
  5742. "hex2bin",
  5743. "rfc4648"
  5744. ],
  5745. "support": {
  5746. "email": "info@paragonie.com",
  5747. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5748. "source": "https://github.com/paragonie/constant_time_encoding"
  5749. },
  5750. "time": "2024-05-08T12:36:18+00:00"
  5751. },
  5752. {
  5753. "name": "paragonie/random_compat",
  5754. "version": "v9.99.100",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/paragonie/random_compat.git",
  5758. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5763. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">= 7"
  5768. },
  5769. "require-dev": {
  5770. "phpunit/phpunit": "4.*|5.*",
  5771. "vimeo/psalm": "^1"
  5772. },
  5773. "suggest": {
  5774. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5775. },
  5776. "type": "library",
  5777. "notification-url": "https://packagist.org/downloads/",
  5778. "license": [
  5779. "MIT"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "Paragon Initiative Enterprises",
  5784. "email": "security@paragonie.com",
  5785. "homepage": "https://paragonie.com"
  5786. }
  5787. ],
  5788. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5789. "keywords": [
  5790. "csprng",
  5791. "polyfill",
  5792. "pseudorandom",
  5793. "random"
  5794. ],
  5795. "support": {
  5796. "email": "info@paragonie.com",
  5797. "issues": "https://github.com/paragonie/random_compat/issues",
  5798. "source": "https://github.com/paragonie/random_compat"
  5799. },
  5800. "time": "2020-10-15T08:29:30+00:00"
  5801. },
  5802. {
  5803. "name": "php-amqplib/php-amqplib",
  5804. "version": "v3.7.1",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5808. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5813. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "ext-mbstring": "*",
  5818. "ext-sockets": "*",
  5819. "php": "^7.2||^8.0",
  5820. "phpseclib/phpseclib": "^2.0|^3.0"
  5821. },
  5822. "conflict": {
  5823. "php": "7.4.0 - 7.4.1"
  5824. },
  5825. "replace": {
  5826. "videlalvaro/php-amqplib": "self.version"
  5827. },
  5828. "require-dev": {
  5829. "ext-curl": "*",
  5830. "nategood/httpful": "^0.2.20",
  5831. "phpunit/phpunit": "^7.5|^9.5",
  5832. "squizlabs/php_codesniffer": "^3.6"
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-master": "3.0-dev"
  5838. }
  5839. },
  5840. "autoload": {
  5841. "psr-4": {
  5842. "PhpAmqpLib\\": "PhpAmqpLib/"
  5843. }
  5844. },
  5845. "notification-url": "https://packagist.org/downloads/",
  5846. "license": [
  5847. "LGPL-2.1-or-later"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Alvaro Videla",
  5852. "role": "Original Maintainer"
  5853. },
  5854. {
  5855. "name": "Raúl Araya",
  5856. "email": "nubeiro@gmail.com",
  5857. "role": "Maintainer"
  5858. },
  5859. {
  5860. "name": "Luke Bakken",
  5861. "email": "luke@bakken.io",
  5862. "role": "Maintainer"
  5863. },
  5864. {
  5865. "name": "Ramūnas Dronga",
  5866. "email": "github@ramuno.lt",
  5867. "role": "Maintainer"
  5868. }
  5869. ],
  5870. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5871. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5872. "keywords": [
  5873. "message",
  5874. "queue",
  5875. "rabbitmq"
  5876. ],
  5877. "support": {
  5878. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5879. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5880. },
  5881. "time": "2024-09-03T19:18:03+00:00"
  5882. },
  5883. {
  5884. "name": "php-di/phpdoc-reader",
  5885. "version": "2.2.1",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5889. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5894. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "php": ">=7.2.0"
  5899. },
  5900. "require-dev": {
  5901. "mnapoli/hard-mode": "~0.3.0",
  5902. "phpunit/phpunit": "^8.5|^9.0"
  5903. },
  5904. "type": "library",
  5905. "autoload": {
  5906. "psr-4": {
  5907. "PhpDocReader\\": "src/PhpDocReader"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5915. "keywords": [
  5916. "phpdoc",
  5917. "reflection"
  5918. ],
  5919. "support": {
  5920. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5921. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5922. },
  5923. "time": "2020-10-12T12:39:22+00:00"
  5924. },
  5925. {
  5926. "name": "phper666/jwt-auth",
  5927. "version": "v4.0.11",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/phper666/jwt-auth.git",
  5931. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5936. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "ext-swoole": ">=4.4",
  5941. "lcobucci/jwt": "4.1.5",
  5942. "nesbot/carbon": "^1.0 || ^2.0",
  5943. "php": ">=7.4"
  5944. },
  5945. "suggest": {
  5946. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5947. "hyperf/command": "required hyperf/command ~2.2.0",
  5948. "hyperf/config": "required hyperf/config ~2.2.0",
  5949. "hyperf/di": "required hyperf/di ~2.2.0"
  5950. },
  5951. "type": "library",
  5952. "extra": {
  5953. "hyperf": {
  5954. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5955. }
  5956. },
  5957. "autoload": {
  5958. "files": [
  5959. "src/Functions.php"
  5960. ],
  5961. "psr-4": {
  5962. "Phper666\\JWTAuth\\": "src/"
  5963. }
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Li Yuzhao",
  5972. "email": "562405704@qq.com",
  5973. "homepage": "https://github.com/phper666/jwt-auth",
  5974. "role": "Developer"
  5975. }
  5976. ],
  5977. "description": "jwt-auth Component",
  5978. "keywords": [
  5979. "hyperf",
  5980. "php"
  5981. ],
  5982. "support": {
  5983. "issues": "https://github.com/phper666/jwt-auth/issues",
  5984. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5985. },
  5986. "time": "2024-02-02T13:24:54+00:00"
  5987. },
  5988. {
  5989. "name": "phpoption/phpoption",
  5990. "version": "1.9.3",
  5991. "source": {
  5992. "type": "git",
  5993. "url": "https://github.com/schmittjoh/php-option.git",
  5994. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5995. },
  5996. "dist": {
  5997. "type": "zip",
  5998. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5999. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6000. "shasum": ""
  6001. },
  6002. "require": {
  6003. "php": "^7.2.5 || ^8.0"
  6004. },
  6005. "require-dev": {
  6006. "bamarni/composer-bin-plugin": "^1.8.2",
  6007. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6008. },
  6009. "type": "library",
  6010. "extra": {
  6011. "bamarni-bin": {
  6012. "bin-links": true,
  6013. "forward-command": false
  6014. },
  6015. "branch-alias": {
  6016. "dev-master": "1.9-dev"
  6017. }
  6018. },
  6019. "autoload": {
  6020. "psr-4": {
  6021. "PhpOption\\": "src/PhpOption/"
  6022. }
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "Apache-2.0"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Johannes M. Schmitt",
  6031. "email": "schmittjoh@gmail.com",
  6032. "homepage": "https://github.com/schmittjoh"
  6033. },
  6034. {
  6035. "name": "Graham Campbell",
  6036. "email": "hello@gjcampbell.co.uk",
  6037. "homepage": "https://github.com/GrahamCampbell"
  6038. }
  6039. ],
  6040. "description": "Option Type for PHP",
  6041. "keywords": [
  6042. "language",
  6043. "option",
  6044. "php",
  6045. "type"
  6046. ],
  6047. "support": {
  6048. "issues": "https://github.com/schmittjoh/php-option/issues",
  6049. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6050. },
  6051. "funding": [
  6052. {
  6053. "url": "https://github.com/GrahamCampbell",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2024-07-20T21:41:07+00:00"
  6062. },
  6063. {
  6064. "name": "phpseclib/phpseclib",
  6065. "version": "3.0.42",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/phpseclib/phpseclib.git",
  6069. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6074. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "paragonie/constant_time_encoding": "^1|^2|^3",
  6079. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6080. "php": ">=5.6.1"
  6081. },
  6082. "require-dev": {
  6083. "phpunit/phpunit": "*"
  6084. },
  6085. "suggest": {
  6086. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6087. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6088. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6089. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6090. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6091. },
  6092. "type": "library",
  6093. "autoload": {
  6094. "files": [
  6095. "phpseclib/bootstrap.php"
  6096. ],
  6097. "psr-4": {
  6098. "phpseclib3\\": "phpseclib/"
  6099. }
  6100. },
  6101. "notification-url": "https://packagist.org/downloads/",
  6102. "license": [
  6103. "MIT"
  6104. ],
  6105. "authors": [
  6106. {
  6107. "name": "Jim Wigginton",
  6108. "email": "terrafrost@php.net",
  6109. "role": "Lead Developer"
  6110. },
  6111. {
  6112. "name": "Patrick Monnerat",
  6113. "email": "pm@datasphere.ch",
  6114. "role": "Developer"
  6115. },
  6116. {
  6117. "name": "Andreas Fischer",
  6118. "email": "bantu@phpbb.com",
  6119. "role": "Developer"
  6120. },
  6121. {
  6122. "name": "Hans-Jürgen Petrich",
  6123. "email": "petrich@tronic-media.com",
  6124. "role": "Developer"
  6125. },
  6126. {
  6127. "name": "Graham Campbell",
  6128. "email": "graham@alt-three.com",
  6129. "role": "Developer"
  6130. }
  6131. ],
  6132. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6133. "homepage": "http://phpseclib.sourceforge.net",
  6134. "keywords": [
  6135. "BigInteger",
  6136. "aes",
  6137. "asn.1",
  6138. "asn1",
  6139. "blowfish",
  6140. "crypto",
  6141. "cryptography",
  6142. "encryption",
  6143. "rsa",
  6144. "security",
  6145. "sftp",
  6146. "signature",
  6147. "signing",
  6148. "ssh",
  6149. "twofish",
  6150. "x.509",
  6151. "x509"
  6152. ],
  6153. "support": {
  6154. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6155. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6156. },
  6157. "funding": [
  6158. {
  6159. "url": "https://github.com/terrafrost",
  6160. "type": "github"
  6161. },
  6162. {
  6163. "url": "https://www.patreon.com/phpseclib",
  6164. "type": "patreon"
  6165. },
  6166. {
  6167. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6168. "type": "tidelift"
  6169. }
  6170. ],
  6171. "time": "2024-09-16T03:06:04+00:00"
  6172. },
  6173. {
  6174. "name": "psr/cache",
  6175. "version": "3.0.0",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/php-fig/cache.git",
  6179. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6184. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6185. "shasum": ""
  6186. },
  6187. "require": {
  6188. "php": ">=8.0.0"
  6189. },
  6190. "type": "library",
  6191. "extra": {
  6192. "branch-alias": {
  6193. "dev-master": "1.0.x-dev"
  6194. }
  6195. },
  6196. "autoload": {
  6197. "psr-4": {
  6198. "Psr\\Cache\\": "src/"
  6199. }
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "PHP-FIG",
  6208. "homepage": "https://www.php-fig.org/"
  6209. }
  6210. ],
  6211. "description": "Common interface for caching libraries",
  6212. "keywords": [
  6213. "cache",
  6214. "psr",
  6215. "psr-6"
  6216. ],
  6217. "support": {
  6218. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6219. },
  6220. "time": "2021-02-03T23:26:27+00:00"
  6221. },
  6222. {
  6223. "name": "psr/clock",
  6224. "version": "1.0.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/php-fig/clock.git",
  6228. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6233. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6234. "shasum": ""
  6235. },
  6236. "require": {
  6237. "php": "^7.0 || ^8.0"
  6238. },
  6239. "type": "library",
  6240. "autoload": {
  6241. "psr-4": {
  6242. "Psr\\Clock\\": "src/"
  6243. }
  6244. },
  6245. "notification-url": "https://packagist.org/downloads/",
  6246. "license": [
  6247. "MIT"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "PHP-FIG",
  6252. "homepage": "https://www.php-fig.org/"
  6253. }
  6254. ],
  6255. "description": "Common interface for reading the clock.",
  6256. "homepage": "https://github.com/php-fig/clock",
  6257. "keywords": [
  6258. "clock",
  6259. "now",
  6260. "psr",
  6261. "psr-20",
  6262. "time"
  6263. ],
  6264. "support": {
  6265. "issues": "https://github.com/php-fig/clock/issues",
  6266. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6267. },
  6268. "time": "2022-11-25T14:36:26+00:00"
  6269. },
  6270. {
  6271. "name": "psr/container",
  6272. "version": "2.0.2",
  6273. "source": {
  6274. "type": "git",
  6275. "url": "https://github.com/php-fig/container.git",
  6276. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6277. },
  6278. "dist": {
  6279. "type": "zip",
  6280. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6281. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6282. "shasum": ""
  6283. },
  6284. "require": {
  6285. "php": ">=7.4.0"
  6286. },
  6287. "type": "library",
  6288. "extra": {
  6289. "branch-alias": {
  6290. "dev-master": "2.0.x-dev"
  6291. }
  6292. },
  6293. "autoload": {
  6294. "psr-4": {
  6295. "Psr\\Container\\": "src/"
  6296. }
  6297. },
  6298. "notification-url": "https://packagist.org/downloads/",
  6299. "license": [
  6300. "MIT"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "PHP-FIG",
  6305. "homepage": "https://www.php-fig.org/"
  6306. }
  6307. ],
  6308. "description": "Common Container Interface (PHP FIG PSR-11)",
  6309. "homepage": "https://github.com/php-fig/container",
  6310. "keywords": [
  6311. "PSR-11",
  6312. "container",
  6313. "container-interface",
  6314. "container-interop",
  6315. "psr"
  6316. ],
  6317. "support": {
  6318. "issues": "https://github.com/php-fig/container/issues",
  6319. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6320. },
  6321. "time": "2021-11-05T16:47:00+00:00"
  6322. },
  6323. {
  6324. "name": "psr/event-dispatcher",
  6325. "version": "1.0.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/php-fig/event-dispatcher.git",
  6329. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6334. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=7.2.0"
  6339. },
  6340. "type": "library",
  6341. "extra": {
  6342. "branch-alias": {
  6343. "dev-master": "1.0.x-dev"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Psr\\EventDispatcher\\": "src/"
  6349. }
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "PHP-FIG",
  6358. "homepage": "http://www.php-fig.org/"
  6359. }
  6360. ],
  6361. "description": "Standard interfaces for event handling.",
  6362. "keywords": [
  6363. "events",
  6364. "psr",
  6365. "psr-14"
  6366. ],
  6367. "support": {
  6368. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6369. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6370. },
  6371. "time": "2019-01-08T18:20:26+00:00"
  6372. },
  6373. {
  6374. "name": "psr/http-client",
  6375. "version": "1.0.3",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/php-fig/http-client.git",
  6379. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6384. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "php": "^7.0 || ^8.0",
  6389. "psr/http-message": "^1.0 || ^2.0"
  6390. },
  6391. "type": "library",
  6392. "extra": {
  6393. "branch-alias": {
  6394. "dev-master": "1.0.x-dev"
  6395. }
  6396. },
  6397. "autoload": {
  6398. "psr-4": {
  6399. "Psr\\Http\\Client\\": "src/"
  6400. }
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "PHP-FIG",
  6409. "homepage": "https://www.php-fig.org/"
  6410. }
  6411. ],
  6412. "description": "Common interface for HTTP clients",
  6413. "homepage": "https://github.com/php-fig/http-client",
  6414. "keywords": [
  6415. "http",
  6416. "http-client",
  6417. "psr",
  6418. "psr-18"
  6419. ],
  6420. "support": {
  6421. "source": "https://github.com/php-fig/http-client"
  6422. },
  6423. "time": "2023-09-23T14:17:50+00:00"
  6424. },
  6425. {
  6426. "name": "psr/http-factory",
  6427. "version": "1.1.0",
  6428. "source": {
  6429. "type": "git",
  6430. "url": "https://github.com/php-fig/http-factory.git",
  6431. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6432. },
  6433. "dist": {
  6434. "type": "zip",
  6435. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6436. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6437. "shasum": ""
  6438. },
  6439. "require": {
  6440. "php": ">=7.1",
  6441. "psr/http-message": "^1.0 || ^2.0"
  6442. },
  6443. "type": "library",
  6444. "extra": {
  6445. "branch-alias": {
  6446. "dev-master": "1.0.x-dev"
  6447. }
  6448. },
  6449. "autoload": {
  6450. "psr-4": {
  6451. "Psr\\Http\\Message\\": "src/"
  6452. }
  6453. },
  6454. "notification-url": "https://packagist.org/downloads/",
  6455. "license": [
  6456. "MIT"
  6457. ],
  6458. "authors": [
  6459. {
  6460. "name": "PHP-FIG",
  6461. "homepage": "https://www.php-fig.org/"
  6462. }
  6463. ],
  6464. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6465. "keywords": [
  6466. "factory",
  6467. "http",
  6468. "message",
  6469. "psr",
  6470. "psr-17",
  6471. "psr-7",
  6472. "request",
  6473. "response"
  6474. ],
  6475. "support": {
  6476. "source": "https://github.com/php-fig/http-factory"
  6477. },
  6478. "time": "2024-04-15T12:06:14+00:00"
  6479. },
  6480. {
  6481. "name": "psr/http-message",
  6482. "version": "2.0",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/php-fig/http-message.git",
  6486. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6491. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6492. "shasum": ""
  6493. },
  6494. "require": {
  6495. "php": "^7.2 || ^8.0"
  6496. },
  6497. "type": "library",
  6498. "extra": {
  6499. "branch-alias": {
  6500. "dev-master": "2.0.x-dev"
  6501. }
  6502. },
  6503. "autoload": {
  6504. "psr-4": {
  6505. "Psr\\Http\\Message\\": "src/"
  6506. }
  6507. },
  6508. "notification-url": "https://packagist.org/downloads/",
  6509. "license": [
  6510. "MIT"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "PHP-FIG",
  6515. "homepage": "https://www.php-fig.org/"
  6516. }
  6517. ],
  6518. "description": "Common interface for HTTP messages",
  6519. "homepage": "https://github.com/php-fig/http-message",
  6520. "keywords": [
  6521. "http",
  6522. "http-message",
  6523. "psr",
  6524. "psr-7",
  6525. "request",
  6526. "response"
  6527. ],
  6528. "support": {
  6529. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6530. },
  6531. "time": "2023-04-04T09:54:51+00:00"
  6532. },
  6533. {
  6534. "name": "psr/http-server-handler",
  6535. "version": "1.0.2",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://github.com/php-fig/http-server-handler.git",
  6539. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6544. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6545. "shasum": ""
  6546. },
  6547. "require": {
  6548. "php": ">=7.0",
  6549. "psr/http-message": "^1.0 || ^2.0"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "branch-alias": {
  6554. "dev-master": "1.0.x-dev"
  6555. }
  6556. },
  6557. "autoload": {
  6558. "psr-4": {
  6559. "Psr\\Http\\Server\\": "src/"
  6560. }
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "MIT"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "PHP-FIG",
  6569. "homepage": "https://www.php-fig.org/"
  6570. }
  6571. ],
  6572. "description": "Common interface for HTTP server-side request handler",
  6573. "keywords": [
  6574. "handler",
  6575. "http",
  6576. "http-interop",
  6577. "psr",
  6578. "psr-15",
  6579. "psr-7",
  6580. "request",
  6581. "response",
  6582. "server"
  6583. ],
  6584. "support": {
  6585. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6586. },
  6587. "time": "2023-04-10T20:06:20+00:00"
  6588. },
  6589. {
  6590. "name": "psr/http-server-middleware",
  6591. "version": "1.0.2",
  6592. "source": {
  6593. "type": "git",
  6594. "url": "https://github.com/php-fig/http-server-middleware.git",
  6595. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6596. },
  6597. "dist": {
  6598. "type": "zip",
  6599. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6600. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6601. "shasum": ""
  6602. },
  6603. "require": {
  6604. "php": ">=7.0",
  6605. "psr/http-message": "^1.0 || ^2.0",
  6606. "psr/http-server-handler": "^1.0"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.0.x-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-4": {
  6616. "Psr\\Http\\Server\\": "src/"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "PHP-FIG",
  6626. "homepage": "https://www.php-fig.org/"
  6627. }
  6628. ],
  6629. "description": "Common interface for HTTP server-side middleware",
  6630. "keywords": [
  6631. "http",
  6632. "http-interop",
  6633. "middleware",
  6634. "psr",
  6635. "psr-15",
  6636. "psr-7",
  6637. "request",
  6638. "response"
  6639. ],
  6640. "support": {
  6641. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6642. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6643. },
  6644. "time": "2023-04-11T06:14:47+00:00"
  6645. },
  6646. {
  6647. "name": "psr/log",
  6648. "version": "3.0.2",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/php-fig/log.git",
  6652. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6657. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "php": ">=8.0.0"
  6662. },
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "3.x-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Psr\\Log\\": "src"
  6672. }
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "MIT"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "PHP-FIG",
  6681. "homepage": "https://www.php-fig.org/"
  6682. }
  6683. ],
  6684. "description": "Common interface for logging libraries",
  6685. "homepage": "https://github.com/php-fig/log",
  6686. "keywords": [
  6687. "log",
  6688. "psr",
  6689. "psr-3"
  6690. ],
  6691. "support": {
  6692. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6693. },
  6694. "time": "2024-09-11T13:17:53+00:00"
  6695. },
  6696. {
  6697. "name": "psr/simple-cache",
  6698. "version": "3.0.0",
  6699. "source": {
  6700. "type": "git",
  6701. "url": "https://github.com/php-fig/simple-cache.git",
  6702. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6703. },
  6704. "dist": {
  6705. "type": "zip",
  6706. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6707. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6708. "shasum": ""
  6709. },
  6710. "require": {
  6711. "php": ">=8.0.0"
  6712. },
  6713. "type": "library",
  6714. "extra": {
  6715. "branch-alias": {
  6716. "dev-master": "3.0.x-dev"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Psr\\SimpleCache\\": "src/"
  6722. }
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "MIT"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "PHP-FIG",
  6731. "homepage": "https://www.php-fig.org/"
  6732. }
  6733. ],
  6734. "description": "Common interfaces for simple caching",
  6735. "keywords": [
  6736. "cache",
  6737. "caching",
  6738. "psr",
  6739. "psr-16",
  6740. "simple-cache"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6744. },
  6745. "time": "2021-10-29T13:26:27+00:00"
  6746. },
  6747. {
  6748. "name": "ralouphie/getallheaders",
  6749. "version": "3.0.3",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/ralouphie/getallheaders.git",
  6753. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6758. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6759. "shasum": ""
  6760. },
  6761. "require": {
  6762. "php": ">=5.6"
  6763. },
  6764. "require-dev": {
  6765. "php-coveralls/php-coveralls": "^2.1",
  6766. "phpunit/phpunit": "^5 || ^6.5"
  6767. },
  6768. "type": "library",
  6769. "autoload": {
  6770. "files": [
  6771. "src/getallheaders.php"
  6772. ]
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "MIT"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "Ralph Khattar",
  6781. "email": "ralph.khattar@gmail.com"
  6782. }
  6783. ],
  6784. "description": "A polyfill for getallheaders.",
  6785. "support": {
  6786. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6787. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6788. },
  6789. "time": "2019-03-08T08:55:37+00:00"
  6790. },
  6791. {
  6792. "name": "stella-maris/clock",
  6793. "version": "0.1.7",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/stella-maris-solutions/clock.git",
  6797. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6802. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "php": "^7.0|^8.0",
  6807. "psr/clock": "^1.0"
  6808. },
  6809. "type": "library",
  6810. "autoload": {
  6811. "psr-4": {
  6812. "StellaMaris\\Clock\\": "src"
  6813. }
  6814. },
  6815. "notification-url": "https://packagist.org/downloads/",
  6816. "license": [
  6817. "MIT"
  6818. ],
  6819. "authors": [
  6820. {
  6821. "name": "Andreas Heigl",
  6822. "role": "Maintainer"
  6823. }
  6824. ],
  6825. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6826. "homepage": "https://gitlab.com/stella-maris/clock",
  6827. "keywords": [
  6828. "clock",
  6829. "datetime",
  6830. "point in time",
  6831. "psr20"
  6832. ],
  6833. "support": {
  6834. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6835. },
  6836. "time": "2022-11-25T16:15:06+00:00"
  6837. },
  6838. {
  6839. "name": "swow/psr7-plus",
  6840. "version": "v1.1.2",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://github.com/swow/psr7-plus.git",
  6844. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6849. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6850. "shasum": ""
  6851. },
  6852. "require": {
  6853. "php": ">=8.0",
  6854. "psr/http-client": "^1.0",
  6855. "psr/http-factory": "^1.0",
  6856. "psr/http-message": "^1.1|^2.0"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Swow\\Psr7\\Message\\": "src/Message/"
  6862. }
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "Apache-2.0"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "twose",
  6871. "email": "twosee@php.net"
  6872. }
  6873. ],
  6874. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6875. "keywords": [
  6876. "http",
  6877. "psr17",
  6878. "psr7",
  6879. "swow",
  6880. "websocket"
  6881. ],
  6882. "support": {
  6883. "issues": "https://github.com/swow/swow",
  6884. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6885. },
  6886. "time": "2023-06-15T09:18:11+00:00"
  6887. },
  6888. {
  6889. "name": "symfony/console",
  6890. "version": "v6.4.15",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/symfony/console.git",
  6894. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6899. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "php": ">=8.1",
  6904. "symfony/deprecation-contracts": "^2.5|^3",
  6905. "symfony/polyfill-mbstring": "~1.0",
  6906. "symfony/service-contracts": "^2.5|^3",
  6907. "symfony/string": "^5.4|^6.0|^7.0"
  6908. },
  6909. "conflict": {
  6910. "symfony/dependency-injection": "<5.4",
  6911. "symfony/dotenv": "<5.4",
  6912. "symfony/event-dispatcher": "<5.4",
  6913. "symfony/lock": "<5.4",
  6914. "symfony/process": "<5.4"
  6915. },
  6916. "provide": {
  6917. "psr/log-implementation": "1.0|2.0|3.0"
  6918. },
  6919. "require-dev": {
  6920. "psr/log": "^1|^2|^3",
  6921. "symfony/config": "^5.4|^6.0|^7.0",
  6922. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6923. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6924. "symfony/http-foundation": "^6.4|^7.0",
  6925. "symfony/http-kernel": "^6.4|^7.0",
  6926. "symfony/lock": "^5.4|^6.0|^7.0",
  6927. "symfony/messenger": "^5.4|^6.0|^7.0",
  6928. "symfony/process": "^5.4|^6.0|^7.0",
  6929. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6930. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6931. },
  6932. "type": "library",
  6933. "autoload": {
  6934. "psr-4": {
  6935. "Symfony\\Component\\Console\\": ""
  6936. },
  6937. "exclude-from-classmap": [
  6938. "/Tests/"
  6939. ]
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "authors": [
  6946. {
  6947. "name": "Fabien Potencier",
  6948. "email": "fabien@symfony.com"
  6949. },
  6950. {
  6951. "name": "Symfony Community",
  6952. "homepage": "https://symfony.com/contributors"
  6953. }
  6954. ],
  6955. "description": "Eases the creation of beautiful and testable command line interfaces",
  6956. "homepage": "https://symfony.com",
  6957. "keywords": [
  6958. "cli",
  6959. "command-line",
  6960. "console",
  6961. "terminal"
  6962. ],
  6963. "support": {
  6964. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6965. },
  6966. "funding": [
  6967. {
  6968. "url": "https://symfony.com/sponsor",
  6969. "type": "custom"
  6970. },
  6971. {
  6972. "url": "https://github.com/fabpot",
  6973. "type": "github"
  6974. },
  6975. {
  6976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6977. "type": "tidelift"
  6978. }
  6979. ],
  6980. "time": "2024-11-06T14:19:14+00:00"
  6981. },
  6982. {
  6983. "name": "symfony/deprecation-contracts",
  6984. "version": "v3.5.0",
  6985. "source": {
  6986. "type": "git",
  6987. "url": "https://github.com/symfony/deprecation-contracts.git",
  6988. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6989. },
  6990. "dist": {
  6991. "type": "zip",
  6992. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6993. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6994. "shasum": ""
  6995. },
  6996. "require": {
  6997. "php": ">=8.1"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-main": "3.5-dev"
  7003. },
  7004. "thanks": {
  7005. "name": "symfony/contracts",
  7006. "url": "https://github.com/symfony/contracts"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "files": [
  7011. "function.php"
  7012. ]
  7013. },
  7014. "notification-url": "https://packagist.org/downloads/",
  7015. "license": [
  7016. "MIT"
  7017. ],
  7018. "authors": [
  7019. {
  7020. "name": "Nicolas Grekas",
  7021. "email": "p@tchwork.com"
  7022. },
  7023. {
  7024. "name": "Symfony Community",
  7025. "homepage": "https://symfony.com/contributors"
  7026. }
  7027. ],
  7028. "description": "A generic function and convention to trigger deprecation notices",
  7029. "homepage": "https://symfony.com",
  7030. "support": {
  7031. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7032. },
  7033. "funding": [
  7034. {
  7035. "url": "https://symfony.com/sponsor",
  7036. "type": "custom"
  7037. },
  7038. {
  7039. "url": "https://github.com/fabpot",
  7040. "type": "github"
  7041. },
  7042. {
  7043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7044. "type": "tidelift"
  7045. }
  7046. ],
  7047. "time": "2024-04-18T09:32:20+00:00"
  7048. },
  7049. {
  7050. "name": "symfony/finder",
  7051. "version": "v6.4.13",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/symfony/finder.git",
  7055. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7060. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": ">=8.1"
  7065. },
  7066. "require-dev": {
  7067. "symfony/filesystem": "^6.0|^7.0"
  7068. },
  7069. "type": "library",
  7070. "autoload": {
  7071. "psr-4": {
  7072. "Symfony\\Component\\Finder\\": ""
  7073. },
  7074. "exclude-from-classmap": [
  7075. "/Tests/"
  7076. ]
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Fabien Potencier",
  7085. "email": "fabien@symfony.com"
  7086. },
  7087. {
  7088. "name": "Symfony Community",
  7089. "homepage": "https://symfony.com/contributors"
  7090. }
  7091. ],
  7092. "description": "Finds files and directories via an intuitive fluent interface",
  7093. "homepage": "https://symfony.com",
  7094. "support": {
  7095. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7096. },
  7097. "funding": [
  7098. {
  7099. "url": "https://symfony.com/sponsor",
  7100. "type": "custom"
  7101. },
  7102. {
  7103. "url": "https://github.com/fabpot",
  7104. "type": "github"
  7105. },
  7106. {
  7107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7108. "type": "tidelift"
  7109. }
  7110. ],
  7111. "time": "2024-10-01T08:30:56+00:00"
  7112. },
  7113. {
  7114. "name": "symfony/polyfill-ctype",
  7115. "version": "v1.31.0",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://github.com/symfony/polyfill-ctype.git",
  7119. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7124. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7125. "shasum": ""
  7126. },
  7127. "require": {
  7128. "php": ">=7.2"
  7129. },
  7130. "provide": {
  7131. "ext-ctype": "*"
  7132. },
  7133. "suggest": {
  7134. "ext-ctype": "For best performance"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "thanks": {
  7139. "name": "symfony/polyfill",
  7140. "url": "https://github.com/symfony/polyfill"
  7141. }
  7142. },
  7143. "autoload": {
  7144. "files": [
  7145. "bootstrap.php"
  7146. ],
  7147. "psr-4": {
  7148. "Symfony\\Polyfill\\Ctype\\": ""
  7149. }
  7150. },
  7151. "notification-url": "https://packagist.org/downloads/",
  7152. "license": [
  7153. "MIT"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Gert de Pagter",
  7158. "email": "BackEndTea@gmail.com"
  7159. },
  7160. {
  7161. "name": "Symfony Community",
  7162. "homepage": "https://symfony.com/contributors"
  7163. }
  7164. ],
  7165. "description": "Symfony polyfill for ctype functions",
  7166. "homepage": "https://symfony.com",
  7167. "keywords": [
  7168. "compatibility",
  7169. "ctype",
  7170. "polyfill",
  7171. "portable"
  7172. ],
  7173. "support": {
  7174. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7175. },
  7176. "funding": [
  7177. {
  7178. "url": "https://symfony.com/sponsor",
  7179. "type": "custom"
  7180. },
  7181. {
  7182. "url": "https://github.com/fabpot",
  7183. "type": "github"
  7184. },
  7185. {
  7186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7187. "type": "tidelift"
  7188. }
  7189. ],
  7190. "time": "2024-09-09T11:45:10+00:00"
  7191. },
  7192. {
  7193. "name": "symfony/polyfill-intl-grapheme",
  7194. "version": "v1.31.0",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7198. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7203. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7204. "shasum": ""
  7205. },
  7206. "require": {
  7207. "php": ">=7.2"
  7208. },
  7209. "suggest": {
  7210. "ext-intl": "For best performance"
  7211. },
  7212. "type": "library",
  7213. "extra": {
  7214. "thanks": {
  7215. "name": "symfony/polyfill",
  7216. "url": "https://github.com/symfony/polyfill"
  7217. }
  7218. },
  7219. "autoload": {
  7220. "files": [
  7221. "bootstrap.php"
  7222. ],
  7223. "psr-4": {
  7224. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7225. }
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Nicolas Grekas",
  7234. "email": "p@tchwork.com"
  7235. },
  7236. {
  7237. "name": "Symfony Community",
  7238. "homepage": "https://symfony.com/contributors"
  7239. }
  7240. ],
  7241. "description": "Symfony polyfill for intl's grapheme_* functions",
  7242. "homepage": "https://symfony.com",
  7243. "keywords": [
  7244. "compatibility",
  7245. "grapheme",
  7246. "intl",
  7247. "polyfill",
  7248. "portable",
  7249. "shim"
  7250. ],
  7251. "support": {
  7252. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7253. },
  7254. "funding": [
  7255. {
  7256. "url": "https://symfony.com/sponsor",
  7257. "type": "custom"
  7258. },
  7259. {
  7260. "url": "https://github.com/fabpot",
  7261. "type": "github"
  7262. },
  7263. {
  7264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7265. "type": "tidelift"
  7266. }
  7267. ],
  7268. "time": "2024-09-09T11:45:10+00:00"
  7269. },
  7270. {
  7271. "name": "symfony/polyfill-intl-idn",
  7272. "version": "v1.31.0",
  7273. "source": {
  7274. "type": "git",
  7275. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7276. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7277. },
  7278. "dist": {
  7279. "type": "zip",
  7280. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7281. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7282. "shasum": ""
  7283. },
  7284. "require": {
  7285. "php": ">=7.2",
  7286. "symfony/polyfill-intl-normalizer": "^1.10"
  7287. },
  7288. "suggest": {
  7289. "ext-intl": "For best performance"
  7290. },
  7291. "type": "library",
  7292. "extra": {
  7293. "thanks": {
  7294. "name": "symfony/polyfill",
  7295. "url": "https://github.com/symfony/polyfill"
  7296. }
  7297. },
  7298. "autoload": {
  7299. "files": [
  7300. "bootstrap.php"
  7301. ],
  7302. "psr-4": {
  7303. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7304. }
  7305. },
  7306. "notification-url": "https://packagist.org/downloads/",
  7307. "license": [
  7308. "MIT"
  7309. ],
  7310. "authors": [
  7311. {
  7312. "name": "Laurent Bassin",
  7313. "email": "laurent@bassin.info"
  7314. },
  7315. {
  7316. "name": "Trevor Rowbotham",
  7317. "email": "trevor.rowbotham@pm.me"
  7318. },
  7319. {
  7320. "name": "Symfony Community",
  7321. "homepage": "https://symfony.com/contributors"
  7322. }
  7323. ],
  7324. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7325. "homepage": "https://symfony.com",
  7326. "keywords": [
  7327. "compatibility",
  7328. "idn",
  7329. "intl",
  7330. "polyfill",
  7331. "portable",
  7332. "shim"
  7333. ],
  7334. "support": {
  7335. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7336. },
  7337. "funding": [
  7338. {
  7339. "url": "https://symfony.com/sponsor",
  7340. "type": "custom"
  7341. },
  7342. {
  7343. "url": "https://github.com/fabpot",
  7344. "type": "github"
  7345. },
  7346. {
  7347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7348. "type": "tidelift"
  7349. }
  7350. ],
  7351. "time": "2024-09-09T11:45:10+00:00"
  7352. },
  7353. {
  7354. "name": "symfony/polyfill-intl-normalizer",
  7355. "version": "v1.31.0",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7359. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7364. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7365. "shasum": ""
  7366. },
  7367. "require": {
  7368. "php": ">=7.2"
  7369. },
  7370. "suggest": {
  7371. "ext-intl": "For best performance"
  7372. },
  7373. "type": "library",
  7374. "extra": {
  7375. "thanks": {
  7376. "name": "symfony/polyfill",
  7377. "url": "https://github.com/symfony/polyfill"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "files": [
  7382. "bootstrap.php"
  7383. ],
  7384. "psr-4": {
  7385. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7386. },
  7387. "classmap": [
  7388. "Resources/stubs"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Nicolas Grekas",
  7398. "email": "p@tchwork.com"
  7399. },
  7400. {
  7401. "name": "Symfony Community",
  7402. "homepage": "https://symfony.com/contributors"
  7403. }
  7404. ],
  7405. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7406. "homepage": "https://symfony.com",
  7407. "keywords": [
  7408. "compatibility",
  7409. "intl",
  7410. "normalizer",
  7411. "polyfill",
  7412. "portable",
  7413. "shim"
  7414. ],
  7415. "support": {
  7416. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7417. },
  7418. "funding": [
  7419. {
  7420. "url": "https://symfony.com/sponsor",
  7421. "type": "custom"
  7422. },
  7423. {
  7424. "url": "https://github.com/fabpot",
  7425. "type": "github"
  7426. },
  7427. {
  7428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7429. "type": "tidelift"
  7430. }
  7431. ],
  7432. "time": "2024-09-09T11:45:10+00:00"
  7433. },
  7434. {
  7435. "name": "symfony/polyfill-mbstring",
  7436. "version": "v1.31.0",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7440. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7445. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7446. "shasum": ""
  7447. },
  7448. "require": {
  7449. "php": ">=7.2"
  7450. },
  7451. "provide": {
  7452. "ext-mbstring": "*"
  7453. },
  7454. "suggest": {
  7455. "ext-mbstring": "For best performance"
  7456. },
  7457. "type": "library",
  7458. "extra": {
  7459. "thanks": {
  7460. "name": "symfony/polyfill",
  7461. "url": "https://github.com/symfony/polyfill"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "files": [
  7466. "bootstrap.php"
  7467. ],
  7468. "psr-4": {
  7469. "Symfony\\Polyfill\\Mbstring\\": ""
  7470. }
  7471. },
  7472. "notification-url": "https://packagist.org/downloads/",
  7473. "license": [
  7474. "MIT"
  7475. ],
  7476. "authors": [
  7477. {
  7478. "name": "Nicolas Grekas",
  7479. "email": "p@tchwork.com"
  7480. },
  7481. {
  7482. "name": "Symfony Community",
  7483. "homepage": "https://symfony.com/contributors"
  7484. }
  7485. ],
  7486. "description": "Symfony polyfill for the Mbstring extension",
  7487. "homepage": "https://symfony.com",
  7488. "keywords": [
  7489. "compatibility",
  7490. "mbstring",
  7491. "polyfill",
  7492. "portable",
  7493. "shim"
  7494. ],
  7495. "support": {
  7496. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7497. },
  7498. "funding": [
  7499. {
  7500. "url": "https://symfony.com/sponsor",
  7501. "type": "custom"
  7502. },
  7503. {
  7504. "url": "https://github.com/fabpot",
  7505. "type": "github"
  7506. },
  7507. {
  7508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7509. "type": "tidelift"
  7510. }
  7511. ],
  7512. "time": "2024-09-09T11:45:10+00:00"
  7513. },
  7514. {
  7515. "name": "symfony/polyfill-php80",
  7516. "version": "v1.31.0",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://github.com/symfony/polyfill-php80.git",
  7520. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7525. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7526. "shasum": ""
  7527. },
  7528. "require": {
  7529. "php": ">=7.2"
  7530. },
  7531. "type": "library",
  7532. "extra": {
  7533. "thanks": {
  7534. "name": "symfony/polyfill",
  7535. "url": "https://github.com/symfony/polyfill"
  7536. }
  7537. },
  7538. "autoload": {
  7539. "files": [
  7540. "bootstrap.php"
  7541. ],
  7542. "psr-4": {
  7543. "Symfony\\Polyfill\\Php80\\": ""
  7544. },
  7545. "classmap": [
  7546. "Resources/stubs"
  7547. ]
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Ion Bazan",
  7556. "email": "ion.bazan@gmail.com"
  7557. },
  7558. {
  7559. "name": "Nicolas Grekas",
  7560. "email": "p@tchwork.com"
  7561. },
  7562. {
  7563. "name": "Symfony Community",
  7564. "homepage": "https://symfony.com/contributors"
  7565. }
  7566. ],
  7567. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7568. "homepage": "https://symfony.com",
  7569. "keywords": [
  7570. "compatibility",
  7571. "polyfill",
  7572. "portable",
  7573. "shim"
  7574. ],
  7575. "support": {
  7576. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://symfony.com/sponsor",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://github.com/fabpot",
  7585. "type": "github"
  7586. },
  7587. {
  7588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7589. "type": "tidelift"
  7590. }
  7591. ],
  7592. "time": "2024-09-09T11:45:10+00:00"
  7593. },
  7594. {
  7595. "name": "symfony/service-contracts",
  7596. "version": "v3.5.0",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/symfony/service-contracts.git",
  7600. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7605. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=8.1",
  7610. "psr/container": "^1.1|^2.0",
  7611. "symfony/deprecation-contracts": "^2.5|^3"
  7612. },
  7613. "conflict": {
  7614. "ext-psr": "<1.1|>=2"
  7615. },
  7616. "type": "library",
  7617. "extra": {
  7618. "branch-alias": {
  7619. "dev-main": "3.5-dev"
  7620. },
  7621. "thanks": {
  7622. "name": "symfony/contracts",
  7623. "url": "https://github.com/symfony/contracts"
  7624. }
  7625. },
  7626. "autoload": {
  7627. "psr-4": {
  7628. "Symfony\\Contracts\\Service\\": ""
  7629. },
  7630. "exclude-from-classmap": [
  7631. "/Test/"
  7632. ]
  7633. },
  7634. "notification-url": "https://packagist.org/downloads/",
  7635. "license": [
  7636. "MIT"
  7637. ],
  7638. "authors": [
  7639. {
  7640. "name": "Nicolas Grekas",
  7641. "email": "p@tchwork.com"
  7642. },
  7643. {
  7644. "name": "Symfony Community",
  7645. "homepage": "https://symfony.com/contributors"
  7646. }
  7647. ],
  7648. "description": "Generic abstractions related to writing services",
  7649. "homepage": "https://symfony.com",
  7650. "keywords": [
  7651. "abstractions",
  7652. "contracts",
  7653. "decoupling",
  7654. "interfaces",
  7655. "interoperability",
  7656. "standards"
  7657. ],
  7658. "support": {
  7659. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7660. },
  7661. "funding": [
  7662. {
  7663. "url": "https://symfony.com/sponsor",
  7664. "type": "custom"
  7665. },
  7666. {
  7667. "url": "https://github.com/fabpot",
  7668. "type": "github"
  7669. },
  7670. {
  7671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7672. "type": "tidelift"
  7673. }
  7674. ],
  7675. "time": "2024-04-18T09:32:20+00:00"
  7676. },
  7677. {
  7678. "name": "symfony/string",
  7679. "version": "v6.4.15",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/symfony/string.git",
  7683. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7688. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7689. "shasum": ""
  7690. },
  7691. "require": {
  7692. "php": ">=8.1",
  7693. "symfony/polyfill-ctype": "~1.8",
  7694. "symfony/polyfill-intl-grapheme": "~1.0",
  7695. "symfony/polyfill-intl-normalizer": "~1.0",
  7696. "symfony/polyfill-mbstring": "~1.0"
  7697. },
  7698. "conflict": {
  7699. "symfony/translation-contracts": "<2.5"
  7700. },
  7701. "require-dev": {
  7702. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7703. "symfony/http-client": "^5.4|^6.0|^7.0",
  7704. "symfony/intl": "^6.2|^7.0",
  7705. "symfony/translation-contracts": "^2.5|^3.0",
  7706. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7707. },
  7708. "type": "library",
  7709. "autoload": {
  7710. "files": [
  7711. "Resources/functions.php"
  7712. ],
  7713. "psr-4": {
  7714. "Symfony\\Component\\String\\": ""
  7715. },
  7716. "exclude-from-classmap": [
  7717. "/Tests/"
  7718. ]
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Nicolas Grekas",
  7727. "email": "p@tchwork.com"
  7728. },
  7729. {
  7730. "name": "Symfony Community",
  7731. "homepage": "https://symfony.com/contributors"
  7732. }
  7733. ],
  7734. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7735. "homepage": "https://symfony.com",
  7736. "keywords": [
  7737. "grapheme",
  7738. "i18n",
  7739. "string",
  7740. "unicode",
  7741. "utf-8",
  7742. "utf8"
  7743. ],
  7744. "support": {
  7745. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7746. },
  7747. "funding": [
  7748. {
  7749. "url": "https://symfony.com/sponsor",
  7750. "type": "custom"
  7751. },
  7752. {
  7753. "url": "https://github.com/fabpot",
  7754. "type": "github"
  7755. },
  7756. {
  7757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7758. "type": "tidelift"
  7759. }
  7760. ],
  7761. "time": "2024-11-13T13:31:12+00:00"
  7762. },
  7763. {
  7764. "name": "symfony/translation",
  7765. "version": "v6.4.13",
  7766. "source": {
  7767. "type": "git",
  7768. "url": "https://github.com/symfony/translation.git",
  7769. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7770. },
  7771. "dist": {
  7772. "type": "zip",
  7773. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7774. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7775. "shasum": ""
  7776. },
  7777. "require": {
  7778. "php": ">=8.1",
  7779. "symfony/deprecation-contracts": "^2.5|^3",
  7780. "symfony/polyfill-mbstring": "~1.0",
  7781. "symfony/translation-contracts": "^2.5|^3.0"
  7782. },
  7783. "conflict": {
  7784. "symfony/config": "<5.4",
  7785. "symfony/console": "<5.4",
  7786. "symfony/dependency-injection": "<5.4",
  7787. "symfony/http-client-contracts": "<2.5",
  7788. "symfony/http-kernel": "<5.4",
  7789. "symfony/service-contracts": "<2.5",
  7790. "symfony/twig-bundle": "<5.4",
  7791. "symfony/yaml": "<5.4"
  7792. },
  7793. "provide": {
  7794. "symfony/translation-implementation": "2.3|3.0"
  7795. },
  7796. "require-dev": {
  7797. "nikic/php-parser": "^4.18|^5.0",
  7798. "psr/log": "^1|^2|^3",
  7799. "symfony/config": "^5.4|^6.0|^7.0",
  7800. "symfony/console": "^5.4|^6.0|^7.0",
  7801. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7802. "symfony/finder": "^5.4|^6.0|^7.0",
  7803. "symfony/http-client-contracts": "^2.5|^3.0",
  7804. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7805. "symfony/intl": "^5.4|^6.0|^7.0",
  7806. "symfony/polyfill-intl-icu": "^1.21",
  7807. "symfony/routing": "^5.4|^6.0|^7.0",
  7808. "symfony/service-contracts": "^2.5|^3",
  7809. "symfony/yaml": "^5.4|^6.0|^7.0"
  7810. },
  7811. "type": "library",
  7812. "autoload": {
  7813. "files": [
  7814. "Resources/functions.php"
  7815. ],
  7816. "psr-4": {
  7817. "Symfony\\Component\\Translation\\": ""
  7818. },
  7819. "exclude-from-classmap": [
  7820. "/Tests/"
  7821. ]
  7822. },
  7823. "notification-url": "https://packagist.org/downloads/",
  7824. "license": [
  7825. "MIT"
  7826. ],
  7827. "authors": [
  7828. {
  7829. "name": "Fabien Potencier",
  7830. "email": "fabien@symfony.com"
  7831. },
  7832. {
  7833. "name": "Symfony Community",
  7834. "homepage": "https://symfony.com/contributors"
  7835. }
  7836. ],
  7837. "description": "Provides tools to internationalize your application",
  7838. "homepage": "https://symfony.com",
  7839. "support": {
  7840. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7841. },
  7842. "funding": [
  7843. {
  7844. "url": "https://symfony.com/sponsor",
  7845. "type": "custom"
  7846. },
  7847. {
  7848. "url": "https://github.com/fabpot",
  7849. "type": "github"
  7850. },
  7851. {
  7852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7853. "type": "tidelift"
  7854. }
  7855. ],
  7856. "time": "2024-09-27T18:14:25+00:00"
  7857. },
  7858. {
  7859. "name": "symfony/translation-contracts",
  7860. "version": "v3.5.0",
  7861. "source": {
  7862. "type": "git",
  7863. "url": "https://github.com/symfony/translation-contracts.git",
  7864. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7865. },
  7866. "dist": {
  7867. "type": "zip",
  7868. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7869. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7870. "shasum": ""
  7871. },
  7872. "require": {
  7873. "php": ">=8.1"
  7874. },
  7875. "type": "library",
  7876. "extra": {
  7877. "branch-alias": {
  7878. "dev-main": "3.5-dev"
  7879. },
  7880. "thanks": {
  7881. "name": "symfony/contracts",
  7882. "url": "https://github.com/symfony/contracts"
  7883. }
  7884. },
  7885. "autoload": {
  7886. "psr-4": {
  7887. "Symfony\\Contracts\\Translation\\": ""
  7888. },
  7889. "exclude-from-classmap": [
  7890. "/Test/"
  7891. ]
  7892. },
  7893. "notification-url": "https://packagist.org/downloads/",
  7894. "license": [
  7895. "MIT"
  7896. ],
  7897. "authors": [
  7898. {
  7899. "name": "Nicolas Grekas",
  7900. "email": "p@tchwork.com"
  7901. },
  7902. {
  7903. "name": "Symfony Community",
  7904. "homepage": "https://symfony.com/contributors"
  7905. }
  7906. ],
  7907. "description": "Generic abstractions related to translation",
  7908. "homepage": "https://symfony.com",
  7909. "keywords": [
  7910. "abstractions",
  7911. "contracts",
  7912. "decoupling",
  7913. "interfaces",
  7914. "interoperability",
  7915. "standards"
  7916. ],
  7917. "support": {
  7918. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7919. },
  7920. "funding": [
  7921. {
  7922. "url": "https://symfony.com/sponsor",
  7923. "type": "custom"
  7924. },
  7925. {
  7926. "url": "https://github.com/fabpot",
  7927. "type": "github"
  7928. },
  7929. {
  7930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7931. "type": "tidelift"
  7932. }
  7933. ],
  7934. "time": "2024-04-18T09:32:20+00:00"
  7935. },
  7936. {
  7937. "name": "vlucas/phpdotenv",
  7938. "version": "v5.6.1",
  7939. "source": {
  7940. "type": "git",
  7941. "url": "https://github.com/vlucas/phpdotenv.git",
  7942. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7943. },
  7944. "dist": {
  7945. "type": "zip",
  7946. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7947. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7948. "shasum": ""
  7949. },
  7950. "require": {
  7951. "ext-pcre": "*",
  7952. "graham-campbell/result-type": "^1.1.3",
  7953. "php": "^7.2.5 || ^8.0",
  7954. "phpoption/phpoption": "^1.9.3",
  7955. "symfony/polyfill-ctype": "^1.24",
  7956. "symfony/polyfill-mbstring": "^1.24",
  7957. "symfony/polyfill-php80": "^1.24"
  7958. },
  7959. "require-dev": {
  7960. "bamarni/composer-bin-plugin": "^1.8.2",
  7961. "ext-filter": "*",
  7962. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7963. },
  7964. "suggest": {
  7965. "ext-filter": "Required to use the boolean validator."
  7966. },
  7967. "type": "library",
  7968. "extra": {
  7969. "bamarni-bin": {
  7970. "bin-links": true,
  7971. "forward-command": false
  7972. },
  7973. "branch-alias": {
  7974. "dev-master": "5.6-dev"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Dotenv\\": "src/"
  7980. }
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "BSD-3-Clause"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Graham Campbell",
  7989. "email": "hello@gjcampbell.co.uk",
  7990. "homepage": "https://github.com/GrahamCampbell"
  7991. },
  7992. {
  7993. "name": "Vance Lucas",
  7994. "email": "vance@vancelucas.com",
  7995. "homepage": "https://github.com/vlucas"
  7996. }
  7997. ],
  7998. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7999. "keywords": [
  8000. "dotenv",
  8001. "env",
  8002. "environment"
  8003. ],
  8004. "support": {
  8005. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8006. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8007. },
  8008. "funding": [
  8009. {
  8010. "url": "https://github.com/GrahamCampbell",
  8011. "type": "github"
  8012. },
  8013. {
  8014. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8015. "type": "tidelift"
  8016. }
  8017. ],
  8018. "time": "2024-07-20T21:52:34+00:00"
  8019. }
  8020. ],
  8021. "packages-dev": [
  8022. {
  8023. "name": "clue/ndjson-react",
  8024. "version": "v1.3.0",
  8025. "source": {
  8026. "type": "git",
  8027. "url": "https://github.com/clue/reactphp-ndjson.git",
  8028. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8029. },
  8030. "dist": {
  8031. "type": "zip",
  8032. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8033. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8034. "shasum": ""
  8035. },
  8036. "require": {
  8037. "php": ">=5.3",
  8038. "react/stream": "^1.2"
  8039. },
  8040. "require-dev": {
  8041. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8042. "react/event-loop": "^1.2"
  8043. },
  8044. "type": "library",
  8045. "autoload": {
  8046. "psr-4": {
  8047. "Clue\\React\\NDJson\\": "src/"
  8048. }
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Christian Lück",
  8057. "email": "christian@clue.engineering"
  8058. }
  8059. ],
  8060. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8061. "homepage": "https://github.com/clue/reactphp-ndjson",
  8062. "keywords": [
  8063. "NDJSON",
  8064. "json",
  8065. "jsonlines",
  8066. "newline",
  8067. "reactphp",
  8068. "streaming"
  8069. ],
  8070. "support": {
  8071. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8072. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://clue.engineering/support",
  8077. "type": "custom"
  8078. },
  8079. {
  8080. "url": "https://github.com/clue",
  8081. "type": "github"
  8082. }
  8083. ],
  8084. "time": "2022-12-23T10:58:28+00:00"
  8085. },
  8086. {
  8087. "name": "composer/pcre",
  8088. "version": "3.3.2",
  8089. "source": {
  8090. "type": "git",
  8091. "url": "https://github.com/composer/pcre.git",
  8092. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8093. },
  8094. "dist": {
  8095. "type": "zip",
  8096. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8097. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8098. "shasum": ""
  8099. },
  8100. "require": {
  8101. "php": "^7.4 || ^8.0"
  8102. },
  8103. "conflict": {
  8104. "phpstan/phpstan": "<1.11.10"
  8105. },
  8106. "require-dev": {
  8107. "phpstan/phpstan": "^1.12 || ^2",
  8108. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8109. "phpunit/phpunit": "^8 || ^9"
  8110. },
  8111. "type": "library",
  8112. "extra": {
  8113. "branch-alias": {
  8114. "dev-main": "3.x-dev"
  8115. },
  8116. "phpstan": {
  8117. "includes": [
  8118. "extension.neon"
  8119. ]
  8120. }
  8121. },
  8122. "autoload": {
  8123. "psr-4": {
  8124. "Composer\\Pcre\\": "src"
  8125. }
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "MIT"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Jordi Boggiano",
  8134. "email": "j.boggiano@seld.be",
  8135. "homepage": "http://seld.be"
  8136. }
  8137. ],
  8138. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8139. "keywords": [
  8140. "PCRE",
  8141. "preg",
  8142. "regex",
  8143. "regular expression"
  8144. ],
  8145. "support": {
  8146. "issues": "https://github.com/composer/pcre/issues",
  8147. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8148. },
  8149. "funding": [
  8150. {
  8151. "url": "https://packagist.com",
  8152. "type": "custom"
  8153. },
  8154. {
  8155. "url": "https://github.com/composer",
  8156. "type": "github"
  8157. },
  8158. {
  8159. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8160. "type": "tidelift"
  8161. }
  8162. ],
  8163. "time": "2024-11-12T16:29:46+00:00"
  8164. },
  8165. {
  8166. "name": "composer/semver",
  8167. "version": "3.4.3",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/composer/semver.git",
  8171. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8176. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8177. "shasum": ""
  8178. },
  8179. "require": {
  8180. "php": "^5.3.2 || ^7.0 || ^8.0"
  8181. },
  8182. "require-dev": {
  8183. "phpstan/phpstan": "^1.11",
  8184. "symfony/phpunit-bridge": "^3 || ^7"
  8185. },
  8186. "type": "library",
  8187. "extra": {
  8188. "branch-alias": {
  8189. "dev-main": "3.x-dev"
  8190. }
  8191. },
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Composer\\Semver\\": "src"
  8195. }
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "Nils Adermann",
  8204. "email": "naderman@naderman.de",
  8205. "homepage": "http://www.naderman.de"
  8206. },
  8207. {
  8208. "name": "Jordi Boggiano",
  8209. "email": "j.boggiano@seld.be",
  8210. "homepage": "http://seld.be"
  8211. },
  8212. {
  8213. "name": "Rob Bast",
  8214. "email": "rob.bast@gmail.com",
  8215. "homepage": "http://robbast.nl"
  8216. }
  8217. ],
  8218. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8219. "keywords": [
  8220. "semantic",
  8221. "semver",
  8222. "validation",
  8223. "versioning"
  8224. ],
  8225. "support": {
  8226. "irc": "ircs://irc.libera.chat:6697/composer",
  8227. "issues": "https://github.com/composer/semver/issues",
  8228. "source": "https://github.com/composer/semver/tree/3.4.3"
  8229. },
  8230. "funding": [
  8231. {
  8232. "url": "https://packagist.com",
  8233. "type": "custom"
  8234. },
  8235. {
  8236. "url": "https://github.com/composer",
  8237. "type": "github"
  8238. },
  8239. {
  8240. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8241. "type": "tidelift"
  8242. }
  8243. ],
  8244. "time": "2024-09-19T14:15:21+00:00"
  8245. },
  8246. {
  8247. "name": "composer/xdebug-handler",
  8248. "version": "3.0.5",
  8249. "source": {
  8250. "type": "git",
  8251. "url": "https://github.com/composer/xdebug-handler.git",
  8252. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8253. },
  8254. "dist": {
  8255. "type": "zip",
  8256. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8257. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8258. "shasum": ""
  8259. },
  8260. "require": {
  8261. "composer/pcre": "^1 || ^2 || ^3",
  8262. "php": "^7.2.5 || ^8.0",
  8263. "psr/log": "^1 || ^2 || ^3"
  8264. },
  8265. "require-dev": {
  8266. "phpstan/phpstan": "^1.0",
  8267. "phpstan/phpstan-strict-rules": "^1.1",
  8268. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8269. },
  8270. "type": "library",
  8271. "autoload": {
  8272. "psr-4": {
  8273. "Composer\\XdebugHandler\\": "src"
  8274. }
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "John Stevenson",
  8283. "email": "john-stevenson@blueyonder.co.uk"
  8284. }
  8285. ],
  8286. "description": "Restarts a process without Xdebug.",
  8287. "keywords": [
  8288. "Xdebug",
  8289. "performance"
  8290. ],
  8291. "support": {
  8292. "irc": "ircs://irc.libera.chat:6697/composer",
  8293. "issues": "https://github.com/composer/xdebug-handler/issues",
  8294. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8295. },
  8296. "funding": [
  8297. {
  8298. "url": "https://packagist.com",
  8299. "type": "custom"
  8300. },
  8301. {
  8302. "url": "https://github.com/composer",
  8303. "type": "github"
  8304. },
  8305. {
  8306. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8307. "type": "tidelift"
  8308. }
  8309. ],
  8310. "time": "2024-05-06T16:37:16+00:00"
  8311. },
  8312. {
  8313. "name": "evenement/evenement",
  8314. "version": "v3.0.2",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/igorw/evenement.git",
  8318. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8323. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "php": ">=7.0"
  8328. },
  8329. "require-dev": {
  8330. "phpunit/phpunit": "^9 || ^6"
  8331. },
  8332. "type": "library",
  8333. "autoload": {
  8334. "psr-4": {
  8335. "Evenement\\": "src/"
  8336. }
  8337. },
  8338. "notification-url": "https://packagist.org/downloads/",
  8339. "license": [
  8340. "MIT"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Igor Wiedler",
  8345. "email": "igor@wiedler.ch"
  8346. }
  8347. ],
  8348. "description": "Événement is a very simple event dispatching library for PHP",
  8349. "keywords": [
  8350. "event-dispatcher",
  8351. "event-emitter"
  8352. ],
  8353. "support": {
  8354. "issues": "https://github.com/igorw/evenement/issues",
  8355. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8356. },
  8357. "time": "2023-08-08T05:53:35+00:00"
  8358. },
  8359. {
  8360. "name": "fidry/cpu-core-counter",
  8361. "version": "1.2.0",
  8362. "source": {
  8363. "type": "git",
  8364. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8365. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8366. },
  8367. "dist": {
  8368. "type": "zip",
  8369. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8370. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8371. "shasum": ""
  8372. },
  8373. "require": {
  8374. "php": "^7.2 || ^8.0"
  8375. },
  8376. "require-dev": {
  8377. "fidry/makefile": "^0.2.0",
  8378. "fidry/php-cs-fixer-config": "^1.1.2",
  8379. "phpstan/extension-installer": "^1.2.0",
  8380. "phpstan/phpstan": "^1.9.2",
  8381. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8382. "phpstan/phpstan-phpunit": "^1.2.2",
  8383. "phpstan/phpstan-strict-rules": "^1.4.4",
  8384. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8385. "webmozarts/strict-phpunit": "^7.5"
  8386. },
  8387. "type": "library",
  8388. "autoload": {
  8389. "psr-4": {
  8390. "Fidry\\CpuCoreCounter\\": "src/"
  8391. }
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "MIT"
  8396. ],
  8397. "authors": [
  8398. {
  8399. "name": "Théo FIDRY",
  8400. "email": "theo.fidry@gmail.com"
  8401. }
  8402. ],
  8403. "description": "Tiny utility to get the number of CPU cores.",
  8404. "keywords": [
  8405. "CPU",
  8406. "core"
  8407. ],
  8408. "support": {
  8409. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8410. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8411. },
  8412. "funding": [
  8413. {
  8414. "url": "https://github.com/theofidry",
  8415. "type": "github"
  8416. }
  8417. ],
  8418. "time": "2024-08-06T10:04:20+00:00"
  8419. },
  8420. {
  8421. "name": "friendsofphp/php-cs-fixer",
  8422. "version": "v3.64.0",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8426. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8431. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "clue/ndjson-react": "^1.0",
  8436. "composer/semver": "^3.4",
  8437. "composer/xdebug-handler": "^3.0.3",
  8438. "ext-filter": "*",
  8439. "ext-json": "*",
  8440. "ext-tokenizer": "*",
  8441. "fidry/cpu-core-counter": "^1.0",
  8442. "php": "^7.4 || ^8.0",
  8443. "react/child-process": "^0.6.5",
  8444. "react/event-loop": "^1.0",
  8445. "react/promise": "^2.0 || ^3.0",
  8446. "react/socket": "^1.0",
  8447. "react/stream": "^1.0",
  8448. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8449. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8450. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8451. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8452. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8453. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8454. "symfony/polyfill-mbstring": "^1.28",
  8455. "symfony/polyfill-php80": "^1.28",
  8456. "symfony/polyfill-php81": "^1.28",
  8457. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8458. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8459. },
  8460. "require-dev": {
  8461. "facile-it/paraunit": "^1.3 || ^2.3",
  8462. "infection/infection": "^0.29.5",
  8463. "justinrainbow/json-schema": "^5.2",
  8464. "keradus/cli-executor": "^2.1",
  8465. "mikey179/vfsstream": "^1.6.11",
  8466. "php-coveralls/php-coveralls": "^2.7",
  8467. "php-cs-fixer/accessible-object": "^1.1",
  8468. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8469. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8470. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8471. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8472. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8473. },
  8474. "suggest": {
  8475. "ext-dom": "For handling output formats in XML",
  8476. "ext-mbstring": "For handling non-UTF8 characters."
  8477. },
  8478. "bin": [
  8479. "php-cs-fixer"
  8480. ],
  8481. "type": "application",
  8482. "autoload": {
  8483. "psr-4": {
  8484. "PhpCsFixer\\": "src/"
  8485. },
  8486. "exclude-from-classmap": [
  8487. "src/Fixer/Internal/*"
  8488. ]
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "MIT"
  8493. ],
  8494. "authors": [
  8495. {
  8496. "name": "Fabien Potencier",
  8497. "email": "fabien@symfony.com"
  8498. },
  8499. {
  8500. "name": "Dariusz Rumiński",
  8501. "email": "dariusz.ruminski@gmail.com"
  8502. }
  8503. ],
  8504. "description": "A tool to automatically fix PHP code style",
  8505. "keywords": [
  8506. "Static code analysis",
  8507. "fixer",
  8508. "standards",
  8509. "static analysis"
  8510. ],
  8511. "support": {
  8512. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8513. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8514. },
  8515. "funding": [
  8516. {
  8517. "url": "https://github.com/keradus",
  8518. "type": "github"
  8519. }
  8520. ],
  8521. "time": "2024-08-30T23:09:38+00:00"
  8522. },
  8523. {
  8524. "name": "hamcrest/hamcrest-php",
  8525. "version": "v2.0.1",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8529. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8534. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8535. "shasum": ""
  8536. },
  8537. "require": {
  8538. "php": "^5.3|^7.0|^8.0"
  8539. },
  8540. "replace": {
  8541. "cordoval/hamcrest-php": "*",
  8542. "davedevelopment/hamcrest-php": "*",
  8543. "kodova/hamcrest-php": "*"
  8544. },
  8545. "require-dev": {
  8546. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8547. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8548. },
  8549. "type": "library",
  8550. "extra": {
  8551. "branch-alias": {
  8552. "dev-master": "2.1-dev"
  8553. }
  8554. },
  8555. "autoload": {
  8556. "classmap": [
  8557. "hamcrest"
  8558. ]
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "BSD-3-Clause"
  8563. ],
  8564. "description": "This is the PHP port of Hamcrest Matchers",
  8565. "keywords": [
  8566. "test"
  8567. ],
  8568. "support": {
  8569. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8570. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8571. },
  8572. "time": "2020-07-09T08:09:16+00:00"
  8573. },
  8574. {
  8575. "name": "hyperf/devtool",
  8576. "version": "v3.1.42",
  8577. "source": {
  8578. "type": "git",
  8579. "url": "https://github.com/hyperf/devtool.git",
  8580. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8581. },
  8582. "dist": {
  8583. "type": "zip",
  8584. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8585. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8586. "shasum": ""
  8587. },
  8588. "require": {
  8589. "hyperf/code-parser": "~3.1.0",
  8590. "hyperf/command": "~3.1.0",
  8591. "hyperf/contract": "~3.1.0",
  8592. "hyperf/di": "~3.1.0",
  8593. "hyperf/support": "~3.1.0",
  8594. "hyperf/utils": "~3.1.0",
  8595. "php": ">=8.1"
  8596. },
  8597. "type": "library",
  8598. "extra": {
  8599. "branch-alias": {
  8600. "dev-master": "3.1-dev"
  8601. },
  8602. "hyperf": {
  8603. "config": "Hyperf\\Devtool\\ConfigProvider"
  8604. }
  8605. },
  8606. "autoload": {
  8607. "psr-4": {
  8608. "Hyperf\\Devtool\\": "src/"
  8609. }
  8610. },
  8611. "notification-url": "https://packagist.org/downloads/",
  8612. "license": [
  8613. "MIT"
  8614. ],
  8615. "description": "A Devtool for Hyperf.",
  8616. "homepage": "https://hyperf.io",
  8617. "keywords": [
  8618. "dev",
  8619. "devtool",
  8620. "hyperf",
  8621. "php",
  8622. "swoole"
  8623. ],
  8624. "support": {
  8625. "docs": "https://hyperf.wiki",
  8626. "issues": "https://github.com/hyperf/hyperf/issues",
  8627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8628. "source": "https://github.com/hyperf/hyperf"
  8629. },
  8630. "funding": [
  8631. {
  8632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8633. "type": "custom"
  8634. },
  8635. {
  8636. "url": "https://opencollective.com/hyperf",
  8637. "type": "open_collective"
  8638. }
  8639. ],
  8640. "time": "2024-09-25T02:54:12+00:00"
  8641. },
  8642. {
  8643. "name": "hyperf/testing",
  8644. "version": "v3.1.44",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/hyperf/testing.git",
  8648. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8653. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "hyperf/codec": "~3.1.0",
  8658. "hyperf/collection": "~3.1.0",
  8659. "hyperf/contract": "~3.1.0",
  8660. "hyperf/coroutine": "~3.1.0",
  8661. "hyperf/http-message": "~3.1.0",
  8662. "hyperf/http-server": "~3.1.0",
  8663. "hyperf/support": "~3.1.0",
  8664. "hyperf/utils": "~3.1.0",
  8665. "php": ">=8.1",
  8666. "phpunit/phpunit": "^10.0",
  8667. "psr/container": "^1.0 || ^2.0",
  8668. "symfony/http-foundation": "^5.4 || ^6.0"
  8669. },
  8670. "suggest": {
  8671. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8672. },
  8673. "bin": [
  8674. "co-phpunit"
  8675. ],
  8676. "type": "library",
  8677. "extra": {
  8678. "branch-alias": {
  8679. "dev-master": "3.1-dev"
  8680. }
  8681. },
  8682. "autoload": {
  8683. "psr-4": {
  8684. "Hyperf\\Testing\\": "src/"
  8685. }
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "MIT"
  8690. ],
  8691. "description": "Testing for hyperf",
  8692. "keywords": [
  8693. "dev",
  8694. "php",
  8695. "swoole",
  8696. "testing"
  8697. ],
  8698. "support": {
  8699. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8700. },
  8701. "funding": [
  8702. {
  8703. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8704. "type": "custom"
  8705. },
  8706. {
  8707. "url": "https://opencollective.com/hyperf",
  8708. "type": "open_collective"
  8709. }
  8710. ],
  8711. "time": "2024-10-23T10:24:12+00:00"
  8712. },
  8713. {
  8714. "name": "hyperf/watcher",
  8715. "version": "v3.1.43",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/hyperf/watcher.git",
  8719. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8724. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8725. "shasum": ""
  8726. },
  8727. "require": {
  8728. "ext-posix": "*",
  8729. "hyperf/codec": "~3.1.0",
  8730. "hyperf/command": "~3.1.0",
  8731. "hyperf/di": "~3.1.0",
  8732. "hyperf/framework": "~3.1.0",
  8733. "hyperf/support": "~3.1.0",
  8734. "php": ">=8.1"
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-master": "3.1-dev"
  8740. },
  8741. "hyperf": {
  8742. "config": "Hyperf\\Watcher\\ConfigProvider"
  8743. }
  8744. },
  8745. "autoload": {
  8746. "files": [
  8747. "src/Functions.php"
  8748. ],
  8749. "psr-4": {
  8750. "Hyperf\\Watcher\\": "src/"
  8751. }
  8752. },
  8753. "notification-url": "https://packagist.org/downloads/",
  8754. "license": [
  8755. "MIT"
  8756. ],
  8757. "description": "Hot reload watcher for Hyperf",
  8758. "keywords": [
  8759. "dev",
  8760. "hyperf",
  8761. "php"
  8762. ],
  8763. "support": {
  8764. "issues": "https://github.com/hyperf/watcher/issues",
  8765. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8766. },
  8767. "funding": [
  8768. {
  8769. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8770. "type": "custom"
  8771. },
  8772. {
  8773. "url": "https://opencollective.com/hyperf",
  8774. "type": "open_collective"
  8775. }
  8776. ],
  8777. "time": "2024-10-06T12:33:12+00:00"
  8778. },
  8779. {
  8780. "name": "mockery/mockery",
  8781. "version": "1.6.12",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/mockery/mockery.git",
  8785. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8790. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8791. "shasum": ""
  8792. },
  8793. "require": {
  8794. "hamcrest/hamcrest-php": "^2.0.1",
  8795. "lib-pcre": ">=7.0",
  8796. "php": ">=7.3"
  8797. },
  8798. "conflict": {
  8799. "phpunit/phpunit": "<8.0"
  8800. },
  8801. "require-dev": {
  8802. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8803. "symplify/easy-coding-standard": "^12.1.14"
  8804. },
  8805. "type": "library",
  8806. "autoload": {
  8807. "files": [
  8808. "library/helpers.php",
  8809. "library/Mockery.php"
  8810. ],
  8811. "psr-4": {
  8812. "Mockery\\": "library/Mockery"
  8813. }
  8814. },
  8815. "notification-url": "https://packagist.org/downloads/",
  8816. "license": [
  8817. "BSD-3-Clause"
  8818. ],
  8819. "authors": [
  8820. {
  8821. "name": "Pádraic Brady",
  8822. "email": "padraic.brady@gmail.com",
  8823. "homepage": "https://github.com/padraic",
  8824. "role": "Author"
  8825. },
  8826. {
  8827. "name": "Dave Marshall",
  8828. "email": "dave.marshall@atstsolutions.co.uk",
  8829. "homepage": "https://davedevelopment.co.uk",
  8830. "role": "Developer"
  8831. },
  8832. {
  8833. "name": "Nathanael Esayeas",
  8834. "email": "nathanael.esayeas@protonmail.com",
  8835. "homepage": "https://github.com/ghostwriter",
  8836. "role": "Lead Developer"
  8837. }
  8838. ],
  8839. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8840. "homepage": "https://github.com/mockery/mockery",
  8841. "keywords": [
  8842. "BDD",
  8843. "TDD",
  8844. "library",
  8845. "mock",
  8846. "mock objects",
  8847. "mockery",
  8848. "stub",
  8849. "test",
  8850. "test double",
  8851. "testing"
  8852. ],
  8853. "support": {
  8854. "docs": "https://docs.mockery.io/",
  8855. "issues": "https://github.com/mockery/mockery/issues",
  8856. "rss": "https://github.com/mockery/mockery/releases.atom",
  8857. "security": "https://github.com/mockery/mockery/security/advisories",
  8858. "source": "https://github.com/mockery/mockery"
  8859. },
  8860. "time": "2024-05-16T03:13:13+00:00"
  8861. },
  8862. {
  8863. "name": "myclabs/deep-copy",
  8864. "version": "1.12.1",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/myclabs/DeepCopy.git",
  8868. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8873. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": "^7.1 || ^8.0"
  8878. },
  8879. "conflict": {
  8880. "doctrine/collections": "<1.6.8",
  8881. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8882. },
  8883. "require-dev": {
  8884. "doctrine/collections": "^1.6.8",
  8885. "doctrine/common": "^2.13.3 || ^3.2.2",
  8886. "phpspec/prophecy": "^1.10",
  8887. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8888. },
  8889. "type": "library",
  8890. "autoload": {
  8891. "files": [
  8892. "src/DeepCopy/deep_copy.php"
  8893. ],
  8894. "psr-4": {
  8895. "DeepCopy\\": "src/DeepCopy/"
  8896. }
  8897. },
  8898. "notification-url": "https://packagist.org/downloads/",
  8899. "license": [
  8900. "MIT"
  8901. ],
  8902. "description": "Create deep copies (clones) of your objects",
  8903. "keywords": [
  8904. "clone",
  8905. "copy",
  8906. "duplicate",
  8907. "object",
  8908. "object graph"
  8909. ],
  8910. "support": {
  8911. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8912. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8913. },
  8914. "funding": [
  8915. {
  8916. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8917. "type": "tidelift"
  8918. }
  8919. ],
  8920. "time": "2024-11-08T17:47:46+00:00"
  8921. },
  8922. {
  8923. "name": "phar-io/manifest",
  8924. "version": "2.0.4",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/phar-io/manifest.git",
  8928. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8933. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8934. "shasum": ""
  8935. },
  8936. "require": {
  8937. "ext-dom": "*",
  8938. "ext-libxml": "*",
  8939. "ext-phar": "*",
  8940. "ext-xmlwriter": "*",
  8941. "phar-io/version": "^3.0.1",
  8942. "php": "^7.2 || ^8.0"
  8943. },
  8944. "type": "library",
  8945. "extra": {
  8946. "branch-alias": {
  8947. "dev-master": "2.0.x-dev"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "classmap": [
  8952. "src/"
  8953. ]
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "BSD-3-Clause"
  8958. ],
  8959. "authors": [
  8960. {
  8961. "name": "Arne Blankerts",
  8962. "email": "arne@blankerts.de",
  8963. "role": "Developer"
  8964. },
  8965. {
  8966. "name": "Sebastian Heuer",
  8967. "email": "sebastian@phpeople.de",
  8968. "role": "Developer"
  8969. },
  8970. {
  8971. "name": "Sebastian Bergmann",
  8972. "email": "sebastian@phpunit.de",
  8973. "role": "Developer"
  8974. }
  8975. ],
  8976. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8977. "support": {
  8978. "issues": "https://github.com/phar-io/manifest/issues",
  8979. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8980. },
  8981. "funding": [
  8982. {
  8983. "url": "https://github.com/theseer",
  8984. "type": "github"
  8985. }
  8986. ],
  8987. "time": "2024-03-03T12:33:53+00:00"
  8988. },
  8989. {
  8990. "name": "phar-io/version",
  8991. "version": "3.2.1",
  8992. "source": {
  8993. "type": "git",
  8994. "url": "https://github.com/phar-io/version.git",
  8995. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8996. },
  8997. "dist": {
  8998. "type": "zip",
  8999. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9000. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9001. "shasum": ""
  9002. },
  9003. "require": {
  9004. "php": "^7.2 || ^8.0"
  9005. },
  9006. "type": "library",
  9007. "autoload": {
  9008. "classmap": [
  9009. "src/"
  9010. ]
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "BSD-3-Clause"
  9015. ],
  9016. "authors": [
  9017. {
  9018. "name": "Arne Blankerts",
  9019. "email": "arne@blankerts.de",
  9020. "role": "Developer"
  9021. },
  9022. {
  9023. "name": "Sebastian Heuer",
  9024. "email": "sebastian@phpeople.de",
  9025. "role": "Developer"
  9026. },
  9027. {
  9028. "name": "Sebastian Bergmann",
  9029. "email": "sebastian@phpunit.de",
  9030. "role": "Developer"
  9031. }
  9032. ],
  9033. "description": "Library for handling version information and constraints",
  9034. "support": {
  9035. "issues": "https://github.com/phar-io/version/issues",
  9036. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9037. },
  9038. "time": "2022-02-21T01:04:05+00:00"
  9039. },
  9040. {
  9041. "name": "phpstan/phpstan",
  9042. "version": "1.12.11",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/phpstan/phpstan.git",
  9046. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9051. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9052. "shasum": ""
  9053. },
  9054. "require": {
  9055. "php": "^7.2|^8.0"
  9056. },
  9057. "conflict": {
  9058. "phpstan/phpstan-shim": "*"
  9059. },
  9060. "bin": [
  9061. "phpstan",
  9062. "phpstan.phar"
  9063. ],
  9064. "type": "library",
  9065. "autoload": {
  9066. "files": [
  9067. "bootstrap.php"
  9068. ]
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "description": "PHPStan - PHP Static Analysis Tool",
  9075. "keywords": [
  9076. "dev",
  9077. "static analysis"
  9078. ],
  9079. "support": {
  9080. "docs": "https://phpstan.org/user-guide/getting-started",
  9081. "forum": "https://github.com/phpstan/phpstan/discussions",
  9082. "issues": "https://github.com/phpstan/phpstan/issues",
  9083. "security": "https://github.com/phpstan/phpstan/security/policy",
  9084. "source": "https://github.com/phpstan/phpstan-src"
  9085. },
  9086. "funding": [
  9087. {
  9088. "url": "https://github.com/ondrejmirtes",
  9089. "type": "github"
  9090. },
  9091. {
  9092. "url": "https://github.com/phpstan",
  9093. "type": "github"
  9094. }
  9095. ],
  9096. "time": "2024-11-17T14:08:01+00:00"
  9097. },
  9098. {
  9099. "name": "phpunit/php-code-coverage",
  9100. "version": "10.1.16",
  9101. "source": {
  9102. "type": "git",
  9103. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9104. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9105. },
  9106. "dist": {
  9107. "type": "zip",
  9108. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9109. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9110. "shasum": ""
  9111. },
  9112. "require": {
  9113. "ext-dom": "*",
  9114. "ext-libxml": "*",
  9115. "ext-xmlwriter": "*",
  9116. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9117. "php": ">=8.1",
  9118. "phpunit/php-file-iterator": "^4.1.0",
  9119. "phpunit/php-text-template": "^3.0.1",
  9120. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9121. "sebastian/complexity": "^3.2.0",
  9122. "sebastian/environment": "^6.1.0",
  9123. "sebastian/lines-of-code": "^2.0.2",
  9124. "sebastian/version": "^4.0.1",
  9125. "theseer/tokenizer": "^1.2.3"
  9126. },
  9127. "require-dev": {
  9128. "phpunit/phpunit": "^10.1"
  9129. },
  9130. "suggest": {
  9131. "ext-pcov": "PHP extension that provides line coverage",
  9132. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9133. },
  9134. "type": "library",
  9135. "extra": {
  9136. "branch-alias": {
  9137. "dev-main": "10.1.x-dev"
  9138. }
  9139. },
  9140. "autoload": {
  9141. "classmap": [
  9142. "src/"
  9143. ]
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "BSD-3-Clause"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Sebastian Bergmann",
  9152. "email": "sebastian@phpunit.de",
  9153. "role": "lead"
  9154. }
  9155. ],
  9156. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9157. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9158. "keywords": [
  9159. "coverage",
  9160. "testing",
  9161. "xunit"
  9162. ],
  9163. "support": {
  9164. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9165. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9166. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/sebastianbergmann",
  9171. "type": "github"
  9172. }
  9173. ],
  9174. "time": "2024-08-22T04:31:57+00:00"
  9175. },
  9176. {
  9177. "name": "phpunit/php-file-iterator",
  9178. "version": "4.1.0",
  9179. "source": {
  9180. "type": "git",
  9181. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9182. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9183. },
  9184. "dist": {
  9185. "type": "zip",
  9186. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9187. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9188. "shasum": ""
  9189. },
  9190. "require": {
  9191. "php": ">=8.1"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^10.0"
  9195. },
  9196. "type": "library",
  9197. "extra": {
  9198. "branch-alias": {
  9199. "dev-main": "4.0-dev"
  9200. }
  9201. },
  9202. "autoload": {
  9203. "classmap": [
  9204. "src/"
  9205. ]
  9206. },
  9207. "notification-url": "https://packagist.org/downloads/",
  9208. "license": [
  9209. "BSD-3-Clause"
  9210. ],
  9211. "authors": [
  9212. {
  9213. "name": "Sebastian Bergmann",
  9214. "email": "sebastian@phpunit.de",
  9215. "role": "lead"
  9216. }
  9217. ],
  9218. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9219. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9220. "keywords": [
  9221. "filesystem",
  9222. "iterator"
  9223. ],
  9224. "support": {
  9225. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9226. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9227. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9228. },
  9229. "funding": [
  9230. {
  9231. "url": "https://github.com/sebastianbergmann",
  9232. "type": "github"
  9233. }
  9234. ],
  9235. "time": "2023-08-31T06:24:48+00:00"
  9236. },
  9237. {
  9238. "name": "phpunit/php-invoker",
  9239. "version": "4.0.0",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9243. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9248. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9249. "shasum": ""
  9250. },
  9251. "require": {
  9252. "php": ">=8.1"
  9253. },
  9254. "require-dev": {
  9255. "ext-pcntl": "*",
  9256. "phpunit/phpunit": "^10.0"
  9257. },
  9258. "suggest": {
  9259. "ext-pcntl": "*"
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-main": "4.0-dev"
  9265. }
  9266. },
  9267. "autoload": {
  9268. "classmap": [
  9269. "src/"
  9270. ]
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "BSD-3-Clause"
  9275. ],
  9276. "authors": [
  9277. {
  9278. "name": "Sebastian Bergmann",
  9279. "email": "sebastian@phpunit.de",
  9280. "role": "lead"
  9281. }
  9282. ],
  9283. "description": "Invoke callables with a timeout",
  9284. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9285. "keywords": [
  9286. "process"
  9287. ],
  9288. "support": {
  9289. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9290. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9291. },
  9292. "funding": [
  9293. {
  9294. "url": "https://github.com/sebastianbergmann",
  9295. "type": "github"
  9296. }
  9297. ],
  9298. "time": "2023-02-03T06:56:09+00:00"
  9299. },
  9300. {
  9301. "name": "phpunit/php-text-template",
  9302. "version": "3.0.1",
  9303. "source": {
  9304. "type": "git",
  9305. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9306. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9307. },
  9308. "dist": {
  9309. "type": "zip",
  9310. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9311. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9312. "shasum": ""
  9313. },
  9314. "require": {
  9315. "php": ">=8.1"
  9316. },
  9317. "require-dev": {
  9318. "phpunit/phpunit": "^10.0"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-main": "3.0-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "classmap": [
  9328. "src/"
  9329. ]
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "BSD-3-Clause"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Sebastian Bergmann",
  9338. "email": "sebastian@phpunit.de",
  9339. "role": "lead"
  9340. }
  9341. ],
  9342. "description": "Simple template engine.",
  9343. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9344. "keywords": [
  9345. "template"
  9346. ],
  9347. "support": {
  9348. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9349. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9350. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9351. },
  9352. "funding": [
  9353. {
  9354. "url": "https://github.com/sebastianbergmann",
  9355. "type": "github"
  9356. }
  9357. ],
  9358. "time": "2023-08-31T14:07:24+00:00"
  9359. },
  9360. {
  9361. "name": "phpunit/php-timer",
  9362. "version": "6.0.0",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9366. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9371. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "php": ">=8.1"
  9376. },
  9377. "require-dev": {
  9378. "phpunit/phpunit": "^10.0"
  9379. },
  9380. "type": "library",
  9381. "extra": {
  9382. "branch-alias": {
  9383. "dev-main": "6.0-dev"
  9384. }
  9385. },
  9386. "autoload": {
  9387. "classmap": [
  9388. "src/"
  9389. ]
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "BSD-3-Clause"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Sebastian Bergmann",
  9398. "email": "sebastian@phpunit.de",
  9399. "role": "lead"
  9400. }
  9401. ],
  9402. "description": "Utility class for timing",
  9403. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9404. "keywords": [
  9405. "timer"
  9406. ],
  9407. "support": {
  9408. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9409. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2023-02-03T06:57:52+00:00"
  9418. },
  9419. {
  9420. "name": "phpunit/phpunit",
  9421. "version": "10.5.38",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9425. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9430. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "ext-dom": "*",
  9435. "ext-json": "*",
  9436. "ext-libxml": "*",
  9437. "ext-mbstring": "*",
  9438. "ext-xml": "*",
  9439. "ext-xmlwriter": "*",
  9440. "myclabs/deep-copy": "^1.12.0",
  9441. "phar-io/manifest": "^2.0.4",
  9442. "phar-io/version": "^3.2.1",
  9443. "php": ">=8.1",
  9444. "phpunit/php-code-coverage": "^10.1.16",
  9445. "phpunit/php-file-iterator": "^4.1.0",
  9446. "phpunit/php-invoker": "^4.0.0",
  9447. "phpunit/php-text-template": "^3.0.1",
  9448. "phpunit/php-timer": "^6.0.0",
  9449. "sebastian/cli-parser": "^2.0.1",
  9450. "sebastian/code-unit": "^2.0.0",
  9451. "sebastian/comparator": "^5.0.3",
  9452. "sebastian/diff": "^5.1.1",
  9453. "sebastian/environment": "^6.1.0",
  9454. "sebastian/exporter": "^5.1.2",
  9455. "sebastian/global-state": "^6.0.2",
  9456. "sebastian/object-enumerator": "^5.0.0",
  9457. "sebastian/recursion-context": "^5.0.0",
  9458. "sebastian/type": "^4.0.0",
  9459. "sebastian/version": "^4.0.1"
  9460. },
  9461. "suggest": {
  9462. "ext-soap": "To be able to generate mocks based on WSDL files"
  9463. },
  9464. "bin": [
  9465. "phpunit"
  9466. ],
  9467. "type": "library",
  9468. "extra": {
  9469. "branch-alias": {
  9470. "dev-main": "10.5-dev"
  9471. }
  9472. },
  9473. "autoload": {
  9474. "files": [
  9475. "src/Framework/Assert/Functions.php"
  9476. ],
  9477. "classmap": [
  9478. "src/"
  9479. ]
  9480. },
  9481. "notification-url": "https://packagist.org/downloads/",
  9482. "license": [
  9483. "BSD-3-Clause"
  9484. ],
  9485. "authors": [
  9486. {
  9487. "name": "Sebastian Bergmann",
  9488. "email": "sebastian@phpunit.de",
  9489. "role": "lead"
  9490. }
  9491. ],
  9492. "description": "The PHP Unit Testing framework.",
  9493. "homepage": "https://phpunit.de/",
  9494. "keywords": [
  9495. "phpunit",
  9496. "testing",
  9497. "xunit"
  9498. ],
  9499. "support": {
  9500. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9501. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9502. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9503. },
  9504. "funding": [
  9505. {
  9506. "url": "https://phpunit.de/sponsors.html",
  9507. "type": "custom"
  9508. },
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. },
  9513. {
  9514. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9515. "type": "tidelift"
  9516. }
  9517. ],
  9518. "time": "2024-10-28T13:06:21+00:00"
  9519. },
  9520. {
  9521. "name": "react/cache",
  9522. "version": "v1.2.0",
  9523. "source": {
  9524. "type": "git",
  9525. "url": "https://github.com/reactphp/cache.git",
  9526. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9527. },
  9528. "dist": {
  9529. "type": "zip",
  9530. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9531. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9532. "shasum": ""
  9533. },
  9534. "require": {
  9535. "php": ">=5.3.0",
  9536. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9537. },
  9538. "require-dev": {
  9539. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9540. },
  9541. "type": "library",
  9542. "autoload": {
  9543. "psr-4": {
  9544. "React\\Cache\\": "src/"
  9545. }
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "MIT"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Christian Lück",
  9554. "email": "christian@clue.engineering",
  9555. "homepage": "https://clue.engineering/"
  9556. },
  9557. {
  9558. "name": "Cees-Jan Kiewiet",
  9559. "email": "reactphp@ceesjankiewiet.nl",
  9560. "homepage": "https://wyrihaximus.net/"
  9561. },
  9562. {
  9563. "name": "Jan Sorgalla",
  9564. "email": "jsorgalla@gmail.com",
  9565. "homepage": "https://sorgalla.com/"
  9566. },
  9567. {
  9568. "name": "Chris Boden",
  9569. "email": "cboden@gmail.com",
  9570. "homepage": "https://cboden.dev/"
  9571. }
  9572. ],
  9573. "description": "Async, Promise-based cache interface for ReactPHP",
  9574. "keywords": [
  9575. "cache",
  9576. "caching",
  9577. "promise",
  9578. "reactphp"
  9579. ],
  9580. "support": {
  9581. "issues": "https://github.com/reactphp/cache/issues",
  9582. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9583. },
  9584. "funding": [
  9585. {
  9586. "url": "https://opencollective.com/reactphp",
  9587. "type": "open_collective"
  9588. }
  9589. ],
  9590. "time": "2022-11-30T15:59:55+00:00"
  9591. },
  9592. {
  9593. "name": "react/child-process",
  9594. "version": "v0.6.5",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/reactphp/child-process.git",
  9598. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9603. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9604. "shasum": ""
  9605. },
  9606. "require": {
  9607. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9608. "php": ">=5.3.0",
  9609. "react/event-loop": "^1.2",
  9610. "react/stream": "^1.2"
  9611. },
  9612. "require-dev": {
  9613. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9614. "react/socket": "^1.8",
  9615. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "psr-4": {
  9620. "React\\ChildProcess\\": "src"
  9621. }
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "MIT"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Christian Lück",
  9630. "email": "christian@clue.engineering",
  9631. "homepage": "https://clue.engineering/"
  9632. },
  9633. {
  9634. "name": "Cees-Jan Kiewiet",
  9635. "email": "reactphp@ceesjankiewiet.nl",
  9636. "homepage": "https://wyrihaximus.net/"
  9637. },
  9638. {
  9639. "name": "Jan Sorgalla",
  9640. "email": "jsorgalla@gmail.com",
  9641. "homepage": "https://sorgalla.com/"
  9642. },
  9643. {
  9644. "name": "Chris Boden",
  9645. "email": "cboden@gmail.com",
  9646. "homepage": "https://cboden.dev/"
  9647. }
  9648. ],
  9649. "description": "Event-driven library for executing child processes with ReactPHP.",
  9650. "keywords": [
  9651. "event-driven",
  9652. "process",
  9653. "reactphp"
  9654. ],
  9655. "support": {
  9656. "issues": "https://github.com/reactphp/child-process/issues",
  9657. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9658. },
  9659. "funding": [
  9660. {
  9661. "url": "https://github.com/WyriHaximus",
  9662. "type": "github"
  9663. },
  9664. {
  9665. "url": "https://github.com/clue",
  9666. "type": "github"
  9667. }
  9668. ],
  9669. "time": "2022-09-16T13:41:56+00:00"
  9670. },
  9671. {
  9672. "name": "react/dns",
  9673. "version": "v1.13.0",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/reactphp/dns.git",
  9677. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9682. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "php": ">=5.3.0",
  9687. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9688. "react/event-loop": "^1.2",
  9689. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9690. },
  9691. "require-dev": {
  9692. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9693. "react/async": "^4.3 || ^3 || ^2",
  9694. "react/promise-timer": "^1.11"
  9695. },
  9696. "type": "library",
  9697. "autoload": {
  9698. "psr-4": {
  9699. "React\\Dns\\": "src/"
  9700. }
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "MIT"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Christian Lück",
  9709. "email": "christian@clue.engineering",
  9710. "homepage": "https://clue.engineering/"
  9711. },
  9712. {
  9713. "name": "Cees-Jan Kiewiet",
  9714. "email": "reactphp@ceesjankiewiet.nl",
  9715. "homepage": "https://wyrihaximus.net/"
  9716. },
  9717. {
  9718. "name": "Jan Sorgalla",
  9719. "email": "jsorgalla@gmail.com",
  9720. "homepage": "https://sorgalla.com/"
  9721. },
  9722. {
  9723. "name": "Chris Boden",
  9724. "email": "cboden@gmail.com",
  9725. "homepage": "https://cboden.dev/"
  9726. }
  9727. ],
  9728. "description": "Async DNS resolver for ReactPHP",
  9729. "keywords": [
  9730. "async",
  9731. "dns",
  9732. "dns-resolver",
  9733. "reactphp"
  9734. ],
  9735. "support": {
  9736. "issues": "https://github.com/reactphp/dns/issues",
  9737. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9738. },
  9739. "funding": [
  9740. {
  9741. "url": "https://opencollective.com/reactphp",
  9742. "type": "open_collective"
  9743. }
  9744. ],
  9745. "time": "2024-06-13T14:18:03+00:00"
  9746. },
  9747. {
  9748. "name": "react/event-loop",
  9749. "version": "v1.5.0",
  9750. "source": {
  9751. "type": "git",
  9752. "url": "https://github.com/reactphp/event-loop.git",
  9753. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9754. },
  9755. "dist": {
  9756. "type": "zip",
  9757. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9758. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9759. "shasum": ""
  9760. },
  9761. "require": {
  9762. "php": ">=5.3.0"
  9763. },
  9764. "require-dev": {
  9765. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9766. },
  9767. "suggest": {
  9768. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9769. },
  9770. "type": "library",
  9771. "autoload": {
  9772. "psr-4": {
  9773. "React\\EventLoop\\": "src/"
  9774. }
  9775. },
  9776. "notification-url": "https://packagist.org/downloads/",
  9777. "license": [
  9778. "MIT"
  9779. ],
  9780. "authors": [
  9781. {
  9782. "name": "Christian Lück",
  9783. "email": "christian@clue.engineering",
  9784. "homepage": "https://clue.engineering/"
  9785. },
  9786. {
  9787. "name": "Cees-Jan Kiewiet",
  9788. "email": "reactphp@ceesjankiewiet.nl",
  9789. "homepage": "https://wyrihaximus.net/"
  9790. },
  9791. {
  9792. "name": "Jan Sorgalla",
  9793. "email": "jsorgalla@gmail.com",
  9794. "homepage": "https://sorgalla.com/"
  9795. },
  9796. {
  9797. "name": "Chris Boden",
  9798. "email": "cboden@gmail.com",
  9799. "homepage": "https://cboden.dev/"
  9800. }
  9801. ],
  9802. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9803. "keywords": [
  9804. "asynchronous",
  9805. "event-loop"
  9806. ],
  9807. "support": {
  9808. "issues": "https://github.com/reactphp/event-loop/issues",
  9809. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://opencollective.com/reactphp",
  9814. "type": "open_collective"
  9815. }
  9816. ],
  9817. "time": "2023-11-13T13:48:05+00:00"
  9818. },
  9819. {
  9820. "name": "react/promise",
  9821. "version": "v3.2.0",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/reactphp/promise.git",
  9825. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9830. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": ">=7.1.0"
  9835. },
  9836. "require-dev": {
  9837. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9838. "phpunit/phpunit": "^9.6 || ^7.5"
  9839. },
  9840. "type": "library",
  9841. "autoload": {
  9842. "files": [
  9843. "src/functions_include.php"
  9844. ],
  9845. "psr-4": {
  9846. "React\\Promise\\": "src/"
  9847. }
  9848. },
  9849. "notification-url": "https://packagist.org/downloads/",
  9850. "license": [
  9851. "MIT"
  9852. ],
  9853. "authors": [
  9854. {
  9855. "name": "Jan Sorgalla",
  9856. "email": "jsorgalla@gmail.com",
  9857. "homepage": "https://sorgalla.com/"
  9858. },
  9859. {
  9860. "name": "Christian Lück",
  9861. "email": "christian@clue.engineering",
  9862. "homepage": "https://clue.engineering/"
  9863. },
  9864. {
  9865. "name": "Cees-Jan Kiewiet",
  9866. "email": "reactphp@ceesjankiewiet.nl",
  9867. "homepage": "https://wyrihaximus.net/"
  9868. },
  9869. {
  9870. "name": "Chris Boden",
  9871. "email": "cboden@gmail.com",
  9872. "homepage": "https://cboden.dev/"
  9873. }
  9874. ],
  9875. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9876. "keywords": [
  9877. "promise",
  9878. "promises"
  9879. ],
  9880. "support": {
  9881. "issues": "https://github.com/reactphp/promise/issues",
  9882. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9883. },
  9884. "funding": [
  9885. {
  9886. "url": "https://opencollective.com/reactphp",
  9887. "type": "open_collective"
  9888. }
  9889. ],
  9890. "time": "2024-05-24T10:39:05+00:00"
  9891. },
  9892. {
  9893. "name": "react/socket",
  9894. "version": "v1.16.0",
  9895. "source": {
  9896. "type": "git",
  9897. "url": "https://github.com/reactphp/socket.git",
  9898. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9899. },
  9900. "dist": {
  9901. "type": "zip",
  9902. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9903. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9904. "shasum": ""
  9905. },
  9906. "require": {
  9907. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9908. "php": ">=5.3.0",
  9909. "react/dns": "^1.13",
  9910. "react/event-loop": "^1.2",
  9911. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9912. "react/stream": "^1.4"
  9913. },
  9914. "require-dev": {
  9915. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9916. "react/async": "^4.3 || ^3.3 || ^2",
  9917. "react/promise-stream": "^1.4",
  9918. "react/promise-timer": "^1.11"
  9919. },
  9920. "type": "library",
  9921. "autoload": {
  9922. "psr-4": {
  9923. "React\\Socket\\": "src/"
  9924. }
  9925. },
  9926. "notification-url": "https://packagist.org/downloads/",
  9927. "license": [
  9928. "MIT"
  9929. ],
  9930. "authors": [
  9931. {
  9932. "name": "Christian Lück",
  9933. "email": "christian@clue.engineering",
  9934. "homepage": "https://clue.engineering/"
  9935. },
  9936. {
  9937. "name": "Cees-Jan Kiewiet",
  9938. "email": "reactphp@ceesjankiewiet.nl",
  9939. "homepage": "https://wyrihaximus.net/"
  9940. },
  9941. {
  9942. "name": "Jan Sorgalla",
  9943. "email": "jsorgalla@gmail.com",
  9944. "homepage": "https://sorgalla.com/"
  9945. },
  9946. {
  9947. "name": "Chris Boden",
  9948. "email": "cboden@gmail.com",
  9949. "homepage": "https://cboden.dev/"
  9950. }
  9951. ],
  9952. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9953. "keywords": [
  9954. "Connection",
  9955. "Socket",
  9956. "async",
  9957. "reactphp",
  9958. "stream"
  9959. ],
  9960. "support": {
  9961. "issues": "https://github.com/reactphp/socket/issues",
  9962. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9963. },
  9964. "funding": [
  9965. {
  9966. "url": "https://opencollective.com/reactphp",
  9967. "type": "open_collective"
  9968. }
  9969. ],
  9970. "time": "2024-07-26T10:38:09+00:00"
  9971. },
  9972. {
  9973. "name": "react/stream",
  9974. "version": "v1.4.0",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/reactphp/stream.git",
  9978. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9983. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9988. "php": ">=5.3.8",
  9989. "react/event-loop": "^1.2"
  9990. },
  9991. "require-dev": {
  9992. "clue/stream-filter": "~1.2",
  9993. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9994. },
  9995. "type": "library",
  9996. "autoload": {
  9997. "psr-4": {
  9998. "React\\Stream\\": "src/"
  9999. }
  10000. },
  10001. "notification-url": "https://packagist.org/downloads/",
  10002. "license": [
  10003. "MIT"
  10004. ],
  10005. "authors": [
  10006. {
  10007. "name": "Christian Lück",
  10008. "email": "christian@clue.engineering",
  10009. "homepage": "https://clue.engineering/"
  10010. },
  10011. {
  10012. "name": "Cees-Jan Kiewiet",
  10013. "email": "reactphp@ceesjankiewiet.nl",
  10014. "homepage": "https://wyrihaximus.net/"
  10015. },
  10016. {
  10017. "name": "Jan Sorgalla",
  10018. "email": "jsorgalla@gmail.com",
  10019. "homepage": "https://sorgalla.com/"
  10020. },
  10021. {
  10022. "name": "Chris Boden",
  10023. "email": "cboden@gmail.com",
  10024. "homepage": "https://cboden.dev/"
  10025. }
  10026. ],
  10027. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10028. "keywords": [
  10029. "event-driven",
  10030. "io",
  10031. "non-blocking",
  10032. "pipe",
  10033. "reactphp",
  10034. "readable",
  10035. "stream",
  10036. "writable"
  10037. ],
  10038. "support": {
  10039. "issues": "https://github.com/reactphp/stream/issues",
  10040. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10041. },
  10042. "funding": [
  10043. {
  10044. "url": "https://opencollective.com/reactphp",
  10045. "type": "open_collective"
  10046. }
  10047. ],
  10048. "time": "2024-06-11T12:45:25+00:00"
  10049. },
  10050. {
  10051. "name": "sebastian/cli-parser",
  10052. "version": "2.0.1",
  10053. "source": {
  10054. "type": "git",
  10055. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10056. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10057. },
  10058. "dist": {
  10059. "type": "zip",
  10060. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10061. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10062. "shasum": ""
  10063. },
  10064. "require": {
  10065. "php": ">=8.1"
  10066. },
  10067. "require-dev": {
  10068. "phpunit/phpunit": "^10.0"
  10069. },
  10070. "type": "library",
  10071. "extra": {
  10072. "branch-alias": {
  10073. "dev-main": "2.0-dev"
  10074. }
  10075. },
  10076. "autoload": {
  10077. "classmap": [
  10078. "src/"
  10079. ]
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "BSD-3-Clause"
  10084. ],
  10085. "authors": [
  10086. {
  10087. "name": "Sebastian Bergmann",
  10088. "email": "sebastian@phpunit.de",
  10089. "role": "lead"
  10090. }
  10091. ],
  10092. "description": "Library for parsing CLI options",
  10093. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10094. "support": {
  10095. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10096. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10097. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10098. },
  10099. "funding": [
  10100. {
  10101. "url": "https://github.com/sebastianbergmann",
  10102. "type": "github"
  10103. }
  10104. ],
  10105. "time": "2024-03-02T07:12:49+00:00"
  10106. },
  10107. {
  10108. "name": "sebastian/code-unit",
  10109. "version": "2.0.0",
  10110. "source": {
  10111. "type": "git",
  10112. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10113. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10114. },
  10115. "dist": {
  10116. "type": "zip",
  10117. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10118. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10119. "shasum": ""
  10120. },
  10121. "require": {
  10122. "php": ">=8.1"
  10123. },
  10124. "require-dev": {
  10125. "phpunit/phpunit": "^10.0"
  10126. },
  10127. "type": "library",
  10128. "extra": {
  10129. "branch-alias": {
  10130. "dev-main": "2.0-dev"
  10131. }
  10132. },
  10133. "autoload": {
  10134. "classmap": [
  10135. "src/"
  10136. ]
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "BSD-3-Clause"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Sebastian Bergmann",
  10145. "email": "sebastian@phpunit.de",
  10146. "role": "lead"
  10147. }
  10148. ],
  10149. "description": "Collection of value objects that represent the PHP code units",
  10150. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10151. "support": {
  10152. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10153. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10154. },
  10155. "funding": [
  10156. {
  10157. "url": "https://github.com/sebastianbergmann",
  10158. "type": "github"
  10159. }
  10160. ],
  10161. "time": "2023-02-03T06:58:43+00:00"
  10162. },
  10163. {
  10164. "name": "sebastian/code-unit-reverse-lookup",
  10165. "version": "3.0.0",
  10166. "source": {
  10167. "type": "git",
  10168. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10169. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10170. },
  10171. "dist": {
  10172. "type": "zip",
  10173. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10174. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10175. "shasum": ""
  10176. },
  10177. "require": {
  10178. "php": ">=8.1"
  10179. },
  10180. "require-dev": {
  10181. "phpunit/phpunit": "^10.0"
  10182. },
  10183. "type": "library",
  10184. "extra": {
  10185. "branch-alias": {
  10186. "dev-main": "3.0-dev"
  10187. }
  10188. },
  10189. "autoload": {
  10190. "classmap": [
  10191. "src/"
  10192. ]
  10193. },
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "BSD-3-Clause"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Sebastian Bergmann",
  10201. "email": "sebastian@phpunit.de"
  10202. }
  10203. ],
  10204. "description": "Looks up which function or method a line of code belongs to",
  10205. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10206. "support": {
  10207. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10208. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10209. },
  10210. "funding": [
  10211. {
  10212. "url": "https://github.com/sebastianbergmann",
  10213. "type": "github"
  10214. }
  10215. ],
  10216. "time": "2023-02-03T06:59:15+00:00"
  10217. },
  10218. {
  10219. "name": "sebastian/comparator",
  10220. "version": "5.0.3",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/sebastianbergmann/comparator.git",
  10224. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10229. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "ext-dom": "*",
  10234. "ext-mbstring": "*",
  10235. "php": ">=8.1",
  10236. "sebastian/diff": "^5.0",
  10237. "sebastian/exporter": "^5.0"
  10238. },
  10239. "require-dev": {
  10240. "phpunit/phpunit": "^10.5"
  10241. },
  10242. "type": "library",
  10243. "extra": {
  10244. "branch-alias": {
  10245. "dev-main": "5.0-dev"
  10246. }
  10247. },
  10248. "autoload": {
  10249. "classmap": [
  10250. "src/"
  10251. ]
  10252. },
  10253. "notification-url": "https://packagist.org/downloads/",
  10254. "license": [
  10255. "BSD-3-Clause"
  10256. ],
  10257. "authors": [
  10258. {
  10259. "name": "Sebastian Bergmann",
  10260. "email": "sebastian@phpunit.de"
  10261. },
  10262. {
  10263. "name": "Jeff Welch",
  10264. "email": "whatthejeff@gmail.com"
  10265. },
  10266. {
  10267. "name": "Volker Dusch",
  10268. "email": "github@wallbash.com"
  10269. },
  10270. {
  10271. "name": "Bernhard Schussek",
  10272. "email": "bschussek@2bepublished.at"
  10273. }
  10274. ],
  10275. "description": "Provides the functionality to compare PHP values for equality",
  10276. "homepage": "https://github.com/sebastianbergmann/comparator",
  10277. "keywords": [
  10278. "comparator",
  10279. "compare",
  10280. "equality"
  10281. ],
  10282. "support": {
  10283. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10284. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10285. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10286. },
  10287. "funding": [
  10288. {
  10289. "url": "https://github.com/sebastianbergmann",
  10290. "type": "github"
  10291. }
  10292. ],
  10293. "time": "2024-10-18T14:56:07+00:00"
  10294. },
  10295. {
  10296. "name": "sebastian/complexity",
  10297. "version": "3.2.0",
  10298. "source": {
  10299. "type": "git",
  10300. "url": "https://github.com/sebastianbergmann/complexity.git",
  10301. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10302. },
  10303. "dist": {
  10304. "type": "zip",
  10305. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10306. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10307. "shasum": ""
  10308. },
  10309. "require": {
  10310. "nikic/php-parser": "^4.18 || ^5.0",
  10311. "php": ">=8.1"
  10312. },
  10313. "require-dev": {
  10314. "phpunit/phpunit": "^10.0"
  10315. },
  10316. "type": "library",
  10317. "extra": {
  10318. "branch-alias": {
  10319. "dev-main": "3.2-dev"
  10320. }
  10321. },
  10322. "autoload": {
  10323. "classmap": [
  10324. "src/"
  10325. ]
  10326. },
  10327. "notification-url": "https://packagist.org/downloads/",
  10328. "license": [
  10329. "BSD-3-Clause"
  10330. ],
  10331. "authors": [
  10332. {
  10333. "name": "Sebastian Bergmann",
  10334. "email": "sebastian@phpunit.de",
  10335. "role": "lead"
  10336. }
  10337. ],
  10338. "description": "Library for calculating the complexity of PHP code units",
  10339. "homepage": "https://github.com/sebastianbergmann/complexity",
  10340. "support": {
  10341. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10342. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10343. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10344. },
  10345. "funding": [
  10346. {
  10347. "url": "https://github.com/sebastianbergmann",
  10348. "type": "github"
  10349. }
  10350. ],
  10351. "time": "2023-12-21T08:37:17+00:00"
  10352. },
  10353. {
  10354. "name": "sebastian/diff",
  10355. "version": "5.1.1",
  10356. "source": {
  10357. "type": "git",
  10358. "url": "https://github.com/sebastianbergmann/diff.git",
  10359. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10360. },
  10361. "dist": {
  10362. "type": "zip",
  10363. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10364. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10365. "shasum": ""
  10366. },
  10367. "require": {
  10368. "php": ">=8.1"
  10369. },
  10370. "require-dev": {
  10371. "phpunit/phpunit": "^10.0",
  10372. "symfony/process": "^6.4"
  10373. },
  10374. "type": "library",
  10375. "extra": {
  10376. "branch-alias": {
  10377. "dev-main": "5.1-dev"
  10378. }
  10379. },
  10380. "autoload": {
  10381. "classmap": [
  10382. "src/"
  10383. ]
  10384. },
  10385. "notification-url": "https://packagist.org/downloads/",
  10386. "license": [
  10387. "BSD-3-Clause"
  10388. ],
  10389. "authors": [
  10390. {
  10391. "name": "Sebastian Bergmann",
  10392. "email": "sebastian@phpunit.de"
  10393. },
  10394. {
  10395. "name": "Kore Nordmann",
  10396. "email": "mail@kore-nordmann.de"
  10397. }
  10398. ],
  10399. "description": "Diff implementation",
  10400. "homepage": "https://github.com/sebastianbergmann/diff",
  10401. "keywords": [
  10402. "diff",
  10403. "udiff",
  10404. "unidiff",
  10405. "unified diff"
  10406. ],
  10407. "support": {
  10408. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10409. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10410. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10411. },
  10412. "funding": [
  10413. {
  10414. "url": "https://github.com/sebastianbergmann",
  10415. "type": "github"
  10416. }
  10417. ],
  10418. "time": "2024-03-02T07:15:17+00:00"
  10419. },
  10420. {
  10421. "name": "sebastian/environment",
  10422. "version": "6.1.0",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/sebastianbergmann/environment.git",
  10426. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10431. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10432. "shasum": ""
  10433. },
  10434. "require": {
  10435. "php": ">=8.1"
  10436. },
  10437. "require-dev": {
  10438. "phpunit/phpunit": "^10.0"
  10439. },
  10440. "suggest": {
  10441. "ext-posix": "*"
  10442. },
  10443. "type": "library",
  10444. "extra": {
  10445. "branch-alias": {
  10446. "dev-main": "6.1-dev"
  10447. }
  10448. },
  10449. "autoload": {
  10450. "classmap": [
  10451. "src/"
  10452. ]
  10453. },
  10454. "notification-url": "https://packagist.org/downloads/",
  10455. "license": [
  10456. "BSD-3-Clause"
  10457. ],
  10458. "authors": [
  10459. {
  10460. "name": "Sebastian Bergmann",
  10461. "email": "sebastian@phpunit.de"
  10462. }
  10463. ],
  10464. "description": "Provides functionality to handle HHVM/PHP environments",
  10465. "homepage": "https://github.com/sebastianbergmann/environment",
  10466. "keywords": [
  10467. "Xdebug",
  10468. "environment",
  10469. "hhvm"
  10470. ],
  10471. "support": {
  10472. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10473. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10474. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10475. },
  10476. "funding": [
  10477. {
  10478. "url": "https://github.com/sebastianbergmann",
  10479. "type": "github"
  10480. }
  10481. ],
  10482. "time": "2024-03-23T08:47:14+00:00"
  10483. },
  10484. {
  10485. "name": "sebastian/exporter",
  10486. "version": "5.1.2",
  10487. "source": {
  10488. "type": "git",
  10489. "url": "https://github.com/sebastianbergmann/exporter.git",
  10490. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10491. },
  10492. "dist": {
  10493. "type": "zip",
  10494. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10495. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10496. "shasum": ""
  10497. },
  10498. "require": {
  10499. "ext-mbstring": "*",
  10500. "php": ">=8.1",
  10501. "sebastian/recursion-context": "^5.0"
  10502. },
  10503. "require-dev": {
  10504. "phpunit/phpunit": "^10.0"
  10505. },
  10506. "type": "library",
  10507. "extra": {
  10508. "branch-alias": {
  10509. "dev-main": "5.1-dev"
  10510. }
  10511. },
  10512. "autoload": {
  10513. "classmap": [
  10514. "src/"
  10515. ]
  10516. },
  10517. "notification-url": "https://packagist.org/downloads/",
  10518. "license": [
  10519. "BSD-3-Clause"
  10520. ],
  10521. "authors": [
  10522. {
  10523. "name": "Sebastian Bergmann",
  10524. "email": "sebastian@phpunit.de"
  10525. },
  10526. {
  10527. "name": "Jeff Welch",
  10528. "email": "whatthejeff@gmail.com"
  10529. },
  10530. {
  10531. "name": "Volker Dusch",
  10532. "email": "github@wallbash.com"
  10533. },
  10534. {
  10535. "name": "Adam Harvey",
  10536. "email": "aharvey@php.net"
  10537. },
  10538. {
  10539. "name": "Bernhard Schussek",
  10540. "email": "bschussek@gmail.com"
  10541. }
  10542. ],
  10543. "description": "Provides the functionality to export PHP variables for visualization",
  10544. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10545. "keywords": [
  10546. "export",
  10547. "exporter"
  10548. ],
  10549. "support": {
  10550. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10551. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10552. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10553. },
  10554. "funding": [
  10555. {
  10556. "url": "https://github.com/sebastianbergmann",
  10557. "type": "github"
  10558. }
  10559. ],
  10560. "time": "2024-03-02T07:17:12+00:00"
  10561. },
  10562. {
  10563. "name": "sebastian/global-state",
  10564. "version": "6.0.2",
  10565. "source": {
  10566. "type": "git",
  10567. "url": "https://github.com/sebastianbergmann/global-state.git",
  10568. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10569. },
  10570. "dist": {
  10571. "type": "zip",
  10572. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10573. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10574. "shasum": ""
  10575. },
  10576. "require": {
  10577. "php": ">=8.1",
  10578. "sebastian/object-reflector": "^3.0",
  10579. "sebastian/recursion-context": "^5.0"
  10580. },
  10581. "require-dev": {
  10582. "ext-dom": "*",
  10583. "phpunit/phpunit": "^10.0"
  10584. },
  10585. "type": "library",
  10586. "extra": {
  10587. "branch-alias": {
  10588. "dev-main": "6.0-dev"
  10589. }
  10590. },
  10591. "autoload": {
  10592. "classmap": [
  10593. "src/"
  10594. ]
  10595. },
  10596. "notification-url": "https://packagist.org/downloads/",
  10597. "license": [
  10598. "BSD-3-Clause"
  10599. ],
  10600. "authors": [
  10601. {
  10602. "name": "Sebastian Bergmann",
  10603. "email": "sebastian@phpunit.de"
  10604. }
  10605. ],
  10606. "description": "Snapshotting of global state",
  10607. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10608. "keywords": [
  10609. "global state"
  10610. ],
  10611. "support": {
  10612. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10613. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10614. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/sebastianbergmann",
  10619. "type": "github"
  10620. }
  10621. ],
  10622. "time": "2024-03-02T07:19:19+00:00"
  10623. },
  10624. {
  10625. "name": "sebastian/lines-of-code",
  10626. "version": "2.0.2",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10630. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10635. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "nikic/php-parser": "^4.18 || ^5.0",
  10640. "php": ">=8.1"
  10641. },
  10642. "require-dev": {
  10643. "phpunit/phpunit": "^10.0"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-main": "2.0-dev"
  10649. }
  10650. },
  10651. "autoload": {
  10652. "classmap": [
  10653. "src/"
  10654. ]
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "BSD-3-Clause"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Sebastian Bergmann",
  10663. "email": "sebastian@phpunit.de",
  10664. "role": "lead"
  10665. }
  10666. ],
  10667. "description": "Library for counting the lines of code in PHP source code",
  10668. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10669. "support": {
  10670. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10671. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10672. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10673. },
  10674. "funding": [
  10675. {
  10676. "url": "https://github.com/sebastianbergmann",
  10677. "type": "github"
  10678. }
  10679. ],
  10680. "time": "2023-12-21T08:38:20+00:00"
  10681. },
  10682. {
  10683. "name": "sebastian/object-enumerator",
  10684. "version": "5.0.0",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10688. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10693. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "php": ">=8.1",
  10698. "sebastian/object-reflector": "^3.0",
  10699. "sebastian/recursion-context": "^5.0"
  10700. },
  10701. "require-dev": {
  10702. "phpunit/phpunit": "^10.0"
  10703. },
  10704. "type": "library",
  10705. "extra": {
  10706. "branch-alias": {
  10707. "dev-main": "5.0-dev"
  10708. }
  10709. },
  10710. "autoload": {
  10711. "classmap": [
  10712. "src/"
  10713. ]
  10714. },
  10715. "notification-url": "https://packagist.org/downloads/",
  10716. "license": [
  10717. "BSD-3-Clause"
  10718. ],
  10719. "authors": [
  10720. {
  10721. "name": "Sebastian Bergmann",
  10722. "email": "sebastian@phpunit.de"
  10723. }
  10724. ],
  10725. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10726. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10727. "support": {
  10728. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10729. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10730. },
  10731. "funding": [
  10732. {
  10733. "url": "https://github.com/sebastianbergmann",
  10734. "type": "github"
  10735. }
  10736. ],
  10737. "time": "2023-02-03T07:08:32+00:00"
  10738. },
  10739. {
  10740. "name": "sebastian/object-reflector",
  10741. "version": "3.0.0",
  10742. "source": {
  10743. "type": "git",
  10744. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10745. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10746. },
  10747. "dist": {
  10748. "type": "zip",
  10749. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10750. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10751. "shasum": ""
  10752. },
  10753. "require": {
  10754. "php": ">=8.1"
  10755. },
  10756. "require-dev": {
  10757. "phpunit/phpunit": "^10.0"
  10758. },
  10759. "type": "library",
  10760. "extra": {
  10761. "branch-alias": {
  10762. "dev-main": "3.0-dev"
  10763. }
  10764. },
  10765. "autoload": {
  10766. "classmap": [
  10767. "src/"
  10768. ]
  10769. },
  10770. "notification-url": "https://packagist.org/downloads/",
  10771. "license": [
  10772. "BSD-3-Clause"
  10773. ],
  10774. "authors": [
  10775. {
  10776. "name": "Sebastian Bergmann",
  10777. "email": "sebastian@phpunit.de"
  10778. }
  10779. ],
  10780. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10781. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10782. "support": {
  10783. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10784. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10785. },
  10786. "funding": [
  10787. {
  10788. "url": "https://github.com/sebastianbergmann",
  10789. "type": "github"
  10790. }
  10791. ],
  10792. "time": "2023-02-03T07:06:18+00:00"
  10793. },
  10794. {
  10795. "name": "sebastian/recursion-context",
  10796. "version": "5.0.0",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10800. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10805. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10806. "shasum": ""
  10807. },
  10808. "require": {
  10809. "php": ">=8.1"
  10810. },
  10811. "require-dev": {
  10812. "phpunit/phpunit": "^10.0"
  10813. },
  10814. "type": "library",
  10815. "extra": {
  10816. "branch-alias": {
  10817. "dev-main": "5.0-dev"
  10818. }
  10819. },
  10820. "autoload": {
  10821. "classmap": [
  10822. "src/"
  10823. ]
  10824. },
  10825. "notification-url": "https://packagist.org/downloads/",
  10826. "license": [
  10827. "BSD-3-Clause"
  10828. ],
  10829. "authors": [
  10830. {
  10831. "name": "Sebastian Bergmann",
  10832. "email": "sebastian@phpunit.de"
  10833. },
  10834. {
  10835. "name": "Jeff Welch",
  10836. "email": "whatthejeff@gmail.com"
  10837. },
  10838. {
  10839. "name": "Adam Harvey",
  10840. "email": "aharvey@php.net"
  10841. }
  10842. ],
  10843. "description": "Provides functionality to recursively process PHP variables",
  10844. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10845. "support": {
  10846. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10847. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10848. },
  10849. "funding": [
  10850. {
  10851. "url": "https://github.com/sebastianbergmann",
  10852. "type": "github"
  10853. }
  10854. ],
  10855. "time": "2023-02-03T07:05:40+00:00"
  10856. },
  10857. {
  10858. "name": "sebastian/type",
  10859. "version": "4.0.0",
  10860. "source": {
  10861. "type": "git",
  10862. "url": "https://github.com/sebastianbergmann/type.git",
  10863. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10864. },
  10865. "dist": {
  10866. "type": "zip",
  10867. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10868. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10869. "shasum": ""
  10870. },
  10871. "require": {
  10872. "php": ">=8.1"
  10873. },
  10874. "require-dev": {
  10875. "phpunit/phpunit": "^10.0"
  10876. },
  10877. "type": "library",
  10878. "extra": {
  10879. "branch-alias": {
  10880. "dev-main": "4.0-dev"
  10881. }
  10882. },
  10883. "autoload": {
  10884. "classmap": [
  10885. "src/"
  10886. ]
  10887. },
  10888. "notification-url": "https://packagist.org/downloads/",
  10889. "license": [
  10890. "BSD-3-Clause"
  10891. ],
  10892. "authors": [
  10893. {
  10894. "name": "Sebastian Bergmann",
  10895. "email": "sebastian@phpunit.de",
  10896. "role": "lead"
  10897. }
  10898. ],
  10899. "description": "Collection of value objects that represent the types of the PHP type system",
  10900. "homepage": "https://github.com/sebastianbergmann/type",
  10901. "support": {
  10902. "issues": "https://github.com/sebastianbergmann/type/issues",
  10903. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10904. },
  10905. "funding": [
  10906. {
  10907. "url": "https://github.com/sebastianbergmann",
  10908. "type": "github"
  10909. }
  10910. ],
  10911. "time": "2023-02-03T07:10:45+00:00"
  10912. },
  10913. {
  10914. "name": "sebastian/version",
  10915. "version": "4.0.1",
  10916. "source": {
  10917. "type": "git",
  10918. "url": "https://github.com/sebastianbergmann/version.git",
  10919. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10920. },
  10921. "dist": {
  10922. "type": "zip",
  10923. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10924. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10925. "shasum": ""
  10926. },
  10927. "require": {
  10928. "php": ">=8.1"
  10929. },
  10930. "type": "library",
  10931. "extra": {
  10932. "branch-alias": {
  10933. "dev-main": "4.0-dev"
  10934. }
  10935. },
  10936. "autoload": {
  10937. "classmap": [
  10938. "src/"
  10939. ]
  10940. },
  10941. "notification-url": "https://packagist.org/downloads/",
  10942. "license": [
  10943. "BSD-3-Clause"
  10944. ],
  10945. "authors": [
  10946. {
  10947. "name": "Sebastian Bergmann",
  10948. "email": "sebastian@phpunit.de",
  10949. "role": "lead"
  10950. }
  10951. ],
  10952. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10953. "homepage": "https://github.com/sebastianbergmann/version",
  10954. "support": {
  10955. "issues": "https://github.com/sebastianbergmann/version/issues",
  10956. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10957. },
  10958. "funding": [
  10959. {
  10960. "url": "https://github.com/sebastianbergmann",
  10961. "type": "github"
  10962. }
  10963. ],
  10964. "time": "2023-02-07T11:34:05+00:00"
  10965. },
  10966. {
  10967. "name": "swoole/ide-helper",
  10968. "version": "5.1.5",
  10969. "source": {
  10970. "type": "git",
  10971. "url": "https://github.com/swoole/ide-helper.git",
  10972. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10973. },
  10974. "dist": {
  10975. "type": "zip",
  10976. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10977. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10978. "shasum": ""
  10979. },
  10980. "type": "library",
  10981. "notification-url": "https://packagist.org/downloads/",
  10982. "license": [
  10983. "Apache-2.0"
  10984. ],
  10985. "authors": [
  10986. {
  10987. "name": "Team Swoole",
  10988. "email": "team@swoole.com"
  10989. }
  10990. ],
  10991. "description": "IDE help files for Swoole.",
  10992. "support": {
  10993. "issues": "https://github.com/swoole/ide-helper/issues",
  10994. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10995. },
  10996. "time": "2024-11-05T07:35:30+00:00"
  10997. },
  10998. {
  10999. "name": "symfony/event-dispatcher",
  11000. "version": "v6.4.13",
  11001. "source": {
  11002. "type": "git",
  11003. "url": "https://github.com/symfony/event-dispatcher.git",
  11004. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11005. },
  11006. "dist": {
  11007. "type": "zip",
  11008. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11009. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11010. "shasum": ""
  11011. },
  11012. "require": {
  11013. "php": ">=8.1",
  11014. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11015. },
  11016. "conflict": {
  11017. "symfony/dependency-injection": "<5.4",
  11018. "symfony/service-contracts": "<2.5"
  11019. },
  11020. "provide": {
  11021. "psr/event-dispatcher-implementation": "1.0",
  11022. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11023. },
  11024. "require-dev": {
  11025. "psr/log": "^1|^2|^3",
  11026. "symfony/config": "^5.4|^6.0|^7.0",
  11027. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11028. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11029. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11030. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11031. "symfony/service-contracts": "^2.5|^3",
  11032. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11033. },
  11034. "type": "library",
  11035. "autoload": {
  11036. "psr-4": {
  11037. "Symfony\\Component\\EventDispatcher\\": ""
  11038. },
  11039. "exclude-from-classmap": [
  11040. "/Tests/"
  11041. ]
  11042. },
  11043. "notification-url": "https://packagist.org/downloads/",
  11044. "license": [
  11045. "MIT"
  11046. ],
  11047. "authors": [
  11048. {
  11049. "name": "Fabien Potencier",
  11050. "email": "fabien@symfony.com"
  11051. },
  11052. {
  11053. "name": "Symfony Community",
  11054. "homepage": "https://symfony.com/contributors"
  11055. }
  11056. ],
  11057. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11058. "homepage": "https://symfony.com",
  11059. "support": {
  11060. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11061. },
  11062. "funding": [
  11063. {
  11064. "url": "https://symfony.com/sponsor",
  11065. "type": "custom"
  11066. },
  11067. {
  11068. "url": "https://github.com/fabpot",
  11069. "type": "github"
  11070. },
  11071. {
  11072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11073. "type": "tidelift"
  11074. }
  11075. ],
  11076. "time": "2024-09-25T14:18:03+00:00"
  11077. },
  11078. {
  11079. "name": "symfony/event-dispatcher-contracts",
  11080. "version": "v3.5.0",
  11081. "source": {
  11082. "type": "git",
  11083. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11084. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11085. },
  11086. "dist": {
  11087. "type": "zip",
  11088. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11089. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11090. "shasum": ""
  11091. },
  11092. "require": {
  11093. "php": ">=8.1",
  11094. "psr/event-dispatcher": "^1"
  11095. },
  11096. "type": "library",
  11097. "extra": {
  11098. "branch-alias": {
  11099. "dev-main": "3.5-dev"
  11100. },
  11101. "thanks": {
  11102. "name": "symfony/contracts",
  11103. "url": "https://github.com/symfony/contracts"
  11104. }
  11105. },
  11106. "autoload": {
  11107. "psr-4": {
  11108. "Symfony\\Contracts\\EventDispatcher\\": ""
  11109. }
  11110. },
  11111. "notification-url": "https://packagist.org/downloads/",
  11112. "license": [
  11113. "MIT"
  11114. ],
  11115. "authors": [
  11116. {
  11117. "name": "Nicolas Grekas",
  11118. "email": "p@tchwork.com"
  11119. },
  11120. {
  11121. "name": "Symfony Community",
  11122. "homepage": "https://symfony.com/contributors"
  11123. }
  11124. ],
  11125. "description": "Generic abstractions related to dispatching event",
  11126. "homepage": "https://symfony.com",
  11127. "keywords": [
  11128. "abstractions",
  11129. "contracts",
  11130. "decoupling",
  11131. "interfaces",
  11132. "interoperability",
  11133. "standards"
  11134. ],
  11135. "support": {
  11136. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11137. },
  11138. "funding": [
  11139. {
  11140. "url": "https://symfony.com/sponsor",
  11141. "type": "custom"
  11142. },
  11143. {
  11144. "url": "https://github.com/fabpot",
  11145. "type": "github"
  11146. },
  11147. {
  11148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11149. "type": "tidelift"
  11150. }
  11151. ],
  11152. "time": "2024-04-18T09:32:20+00:00"
  11153. },
  11154. {
  11155. "name": "symfony/filesystem",
  11156. "version": "v6.4.13",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/symfony/filesystem.git",
  11160. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11165. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11166. "shasum": ""
  11167. },
  11168. "require": {
  11169. "php": ">=8.1",
  11170. "symfony/polyfill-ctype": "~1.8",
  11171. "symfony/polyfill-mbstring": "~1.8"
  11172. },
  11173. "require-dev": {
  11174. "symfony/process": "^5.4|^6.4|^7.0"
  11175. },
  11176. "type": "library",
  11177. "autoload": {
  11178. "psr-4": {
  11179. "Symfony\\Component\\Filesystem\\": ""
  11180. },
  11181. "exclude-from-classmap": [
  11182. "/Tests/"
  11183. ]
  11184. },
  11185. "notification-url": "https://packagist.org/downloads/",
  11186. "license": [
  11187. "MIT"
  11188. ],
  11189. "authors": [
  11190. {
  11191. "name": "Fabien Potencier",
  11192. "email": "fabien@symfony.com"
  11193. },
  11194. {
  11195. "name": "Symfony Community",
  11196. "homepage": "https://symfony.com/contributors"
  11197. }
  11198. ],
  11199. "description": "Provides basic utilities for the filesystem",
  11200. "homepage": "https://symfony.com",
  11201. "support": {
  11202. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11203. },
  11204. "funding": [
  11205. {
  11206. "url": "https://symfony.com/sponsor",
  11207. "type": "custom"
  11208. },
  11209. {
  11210. "url": "https://github.com/fabpot",
  11211. "type": "github"
  11212. },
  11213. {
  11214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11215. "type": "tidelift"
  11216. }
  11217. ],
  11218. "time": "2024-10-25T15:07:50+00:00"
  11219. },
  11220. {
  11221. "name": "symfony/http-foundation",
  11222. "version": "v6.4.15",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/symfony/http-foundation.git",
  11226. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11231. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11232. "shasum": ""
  11233. },
  11234. "require": {
  11235. "php": ">=8.1",
  11236. "symfony/deprecation-contracts": "^2.5|^3",
  11237. "symfony/polyfill-mbstring": "~1.1",
  11238. "symfony/polyfill-php83": "^1.27"
  11239. },
  11240. "conflict": {
  11241. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11242. },
  11243. "require-dev": {
  11244. "doctrine/dbal": "^2.13.1|^3|^4",
  11245. "predis/predis": "^1.1|^2.0",
  11246. "symfony/cache": "^6.4.12|^7.1.5",
  11247. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11248. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11249. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11250. "symfony/mime": "^5.4|^6.0|^7.0",
  11251. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11252. },
  11253. "type": "library",
  11254. "autoload": {
  11255. "psr-4": {
  11256. "Symfony\\Component\\HttpFoundation\\": ""
  11257. },
  11258. "exclude-from-classmap": [
  11259. "/Tests/"
  11260. ]
  11261. },
  11262. "notification-url": "https://packagist.org/downloads/",
  11263. "license": [
  11264. "MIT"
  11265. ],
  11266. "authors": [
  11267. {
  11268. "name": "Fabien Potencier",
  11269. "email": "fabien@symfony.com"
  11270. },
  11271. {
  11272. "name": "Symfony Community",
  11273. "homepage": "https://symfony.com/contributors"
  11274. }
  11275. ],
  11276. "description": "Defines an object-oriented layer for the HTTP specification",
  11277. "homepage": "https://symfony.com",
  11278. "support": {
  11279. "source": "https://github.com/symfony/http-foundation/tree/v6.4.15"
  11280. },
  11281. "funding": [
  11282. {
  11283. "url": "https://symfony.com/sponsor",
  11284. "type": "custom"
  11285. },
  11286. {
  11287. "url": "https://github.com/fabpot",
  11288. "type": "github"
  11289. },
  11290. {
  11291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11292. "type": "tidelift"
  11293. }
  11294. ],
  11295. "time": "2024-11-08T16:09:24+00:00"
  11296. },
  11297. {
  11298. "name": "symfony/options-resolver",
  11299. "version": "v6.4.13",
  11300. "source": {
  11301. "type": "git",
  11302. "url": "https://github.com/symfony/options-resolver.git",
  11303. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11304. },
  11305. "dist": {
  11306. "type": "zip",
  11307. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11308. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11309. "shasum": ""
  11310. },
  11311. "require": {
  11312. "php": ">=8.1",
  11313. "symfony/deprecation-contracts": "^2.5|^3"
  11314. },
  11315. "type": "library",
  11316. "autoload": {
  11317. "psr-4": {
  11318. "Symfony\\Component\\OptionsResolver\\": ""
  11319. },
  11320. "exclude-from-classmap": [
  11321. "/Tests/"
  11322. ]
  11323. },
  11324. "notification-url": "https://packagist.org/downloads/",
  11325. "license": [
  11326. "MIT"
  11327. ],
  11328. "authors": [
  11329. {
  11330. "name": "Fabien Potencier",
  11331. "email": "fabien@symfony.com"
  11332. },
  11333. {
  11334. "name": "Symfony Community",
  11335. "homepage": "https://symfony.com/contributors"
  11336. }
  11337. ],
  11338. "description": "Provides an improved replacement for the array_replace PHP function",
  11339. "homepage": "https://symfony.com",
  11340. "keywords": [
  11341. "config",
  11342. "configuration",
  11343. "options"
  11344. ],
  11345. "support": {
  11346. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11347. },
  11348. "funding": [
  11349. {
  11350. "url": "https://symfony.com/sponsor",
  11351. "type": "custom"
  11352. },
  11353. {
  11354. "url": "https://github.com/fabpot",
  11355. "type": "github"
  11356. },
  11357. {
  11358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11359. "type": "tidelift"
  11360. }
  11361. ],
  11362. "time": "2024-09-25T14:18:03+00:00"
  11363. },
  11364. {
  11365. "name": "symfony/polyfill-php81",
  11366. "version": "v1.31.0",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/symfony/polyfill-php81.git",
  11370. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11375. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11376. "shasum": ""
  11377. },
  11378. "require": {
  11379. "php": ">=7.2"
  11380. },
  11381. "type": "library",
  11382. "extra": {
  11383. "thanks": {
  11384. "name": "symfony/polyfill",
  11385. "url": "https://github.com/symfony/polyfill"
  11386. }
  11387. },
  11388. "autoload": {
  11389. "files": [
  11390. "bootstrap.php"
  11391. ],
  11392. "psr-4": {
  11393. "Symfony\\Polyfill\\Php81\\": ""
  11394. },
  11395. "classmap": [
  11396. "Resources/stubs"
  11397. ]
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "MIT"
  11402. ],
  11403. "authors": [
  11404. {
  11405. "name": "Nicolas Grekas",
  11406. "email": "p@tchwork.com"
  11407. },
  11408. {
  11409. "name": "Symfony Community",
  11410. "homepage": "https://symfony.com/contributors"
  11411. }
  11412. ],
  11413. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11414. "homepage": "https://symfony.com",
  11415. "keywords": [
  11416. "compatibility",
  11417. "polyfill",
  11418. "portable",
  11419. "shim"
  11420. ],
  11421. "support": {
  11422. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11423. },
  11424. "funding": [
  11425. {
  11426. "url": "https://symfony.com/sponsor",
  11427. "type": "custom"
  11428. },
  11429. {
  11430. "url": "https://github.com/fabpot",
  11431. "type": "github"
  11432. },
  11433. {
  11434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11435. "type": "tidelift"
  11436. }
  11437. ],
  11438. "time": "2024-09-09T11:45:10+00:00"
  11439. },
  11440. {
  11441. "name": "symfony/polyfill-php83",
  11442. "version": "v1.31.0",
  11443. "source": {
  11444. "type": "git",
  11445. "url": "https://github.com/symfony/polyfill-php83.git",
  11446. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11447. },
  11448. "dist": {
  11449. "type": "zip",
  11450. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11451. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11452. "shasum": ""
  11453. },
  11454. "require": {
  11455. "php": ">=7.2"
  11456. },
  11457. "type": "library",
  11458. "extra": {
  11459. "thanks": {
  11460. "name": "symfony/polyfill",
  11461. "url": "https://github.com/symfony/polyfill"
  11462. }
  11463. },
  11464. "autoload": {
  11465. "files": [
  11466. "bootstrap.php"
  11467. ],
  11468. "psr-4": {
  11469. "Symfony\\Polyfill\\Php83\\": ""
  11470. },
  11471. "classmap": [
  11472. "Resources/stubs"
  11473. ]
  11474. },
  11475. "notification-url": "https://packagist.org/downloads/",
  11476. "license": [
  11477. "MIT"
  11478. ],
  11479. "authors": [
  11480. {
  11481. "name": "Nicolas Grekas",
  11482. "email": "p@tchwork.com"
  11483. },
  11484. {
  11485. "name": "Symfony Community",
  11486. "homepage": "https://symfony.com/contributors"
  11487. }
  11488. ],
  11489. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11490. "homepage": "https://symfony.com",
  11491. "keywords": [
  11492. "compatibility",
  11493. "polyfill",
  11494. "portable",
  11495. "shim"
  11496. ],
  11497. "support": {
  11498. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11499. },
  11500. "funding": [
  11501. {
  11502. "url": "https://symfony.com/sponsor",
  11503. "type": "custom"
  11504. },
  11505. {
  11506. "url": "https://github.com/fabpot",
  11507. "type": "github"
  11508. },
  11509. {
  11510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11511. "type": "tidelift"
  11512. }
  11513. ],
  11514. "time": "2024-09-09T11:45:10+00:00"
  11515. },
  11516. {
  11517. "name": "symfony/process",
  11518. "version": "v6.4.15",
  11519. "source": {
  11520. "type": "git",
  11521. "url": "https://github.com/symfony/process.git",
  11522. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11523. },
  11524. "dist": {
  11525. "type": "zip",
  11526. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11527. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11528. "shasum": ""
  11529. },
  11530. "require": {
  11531. "php": ">=8.1"
  11532. },
  11533. "type": "library",
  11534. "autoload": {
  11535. "psr-4": {
  11536. "Symfony\\Component\\Process\\": ""
  11537. },
  11538. "exclude-from-classmap": [
  11539. "/Tests/"
  11540. ]
  11541. },
  11542. "notification-url": "https://packagist.org/downloads/",
  11543. "license": [
  11544. "MIT"
  11545. ],
  11546. "authors": [
  11547. {
  11548. "name": "Fabien Potencier",
  11549. "email": "fabien@symfony.com"
  11550. },
  11551. {
  11552. "name": "Symfony Community",
  11553. "homepage": "https://symfony.com/contributors"
  11554. }
  11555. ],
  11556. "description": "Executes commands in sub-processes",
  11557. "homepage": "https://symfony.com",
  11558. "support": {
  11559. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11560. },
  11561. "funding": [
  11562. {
  11563. "url": "https://symfony.com/sponsor",
  11564. "type": "custom"
  11565. },
  11566. {
  11567. "url": "https://github.com/fabpot",
  11568. "type": "github"
  11569. },
  11570. {
  11571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11572. "type": "tidelift"
  11573. }
  11574. ],
  11575. "time": "2024-11-06T14:19:14+00:00"
  11576. },
  11577. {
  11578. "name": "symfony/stopwatch",
  11579. "version": "v6.4.13",
  11580. "source": {
  11581. "type": "git",
  11582. "url": "https://github.com/symfony/stopwatch.git",
  11583. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11584. },
  11585. "dist": {
  11586. "type": "zip",
  11587. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11588. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11589. "shasum": ""
  11590. },
  11591. "require": {
  11592. "php": ">=8.1",
  11593. "symfony/service-contracts": "^2.5|^3"
  11594. },
  11595. "type": "library",
  11596. "autoload": {
  11597. "psr-4": {
  11598. "Symfony\\Component\\Stopwatch\\": ""
  11599. },
  11600. "exclude-from-classmap": [
  11601. "/Tests/"
  11602. ]
  11603. },
  11604. "notification-url": "https://packagist.org/downloads/",
  11605. "license": [
  11606. "MIT"
  11607. ],
  11608. "authors": [
  11609. {
  11610. "name": "Fabien Potencier",
  11611. "email": "fabien@symfony.com"
  11612. },
  11613. {
  11614. "name": "Symfony Community",
  11615. "homepage": "https://symfony.com/contributors"
  11616. }
  11617. ],
  11618. "description": "Provides a way to profile code",
  11619. "homepage": "https://symfony.com",
  11620. "support": {
  11621. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11622. },
  11623. "funding": [
  11624. {
  11625. "url": "https://symfony.com/sponsor",
  11626. "type": "custom"
  11627. },
  11628. {
  11629. "url": "https://github.com/fabpot",
  11630. "type": "github"
  11631. },
  11632. {
  11633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11634. "type": "tidelift"
  11635. }
  11636. ],
  11637. "time": "2024-09-25T14:18:03+00:00"
  11638. },
  11639. {
  11640. "name": "theseer/tokenizer",
  11641. "version": "1.2.3",
  11642. "source": {
  11643. "type": "git",
  11644. "url": "https://github.com/theseer/tokenizer.git",
  11645. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11646. },
  11647. "dist": {
  11648. "type": "zip",
  11649. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11650. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11651. "shasum": ""
  11652. },
  11653. "require": {
  11654. "ext-dom": "*",
  11655. "ext-tokenizer": "*",
  11656. "ext-xmlwriter": "*",
  11657. "php": "^7.2 || ^8.0"
  11658. },
  11659. "type": "library",
  11660. "autoload": {
  11661. "classmap": [
  11662. "src/"
  11663. ]
  11664. },
  11665. "notification-url": "https://packagist.org/downloads/",
  11666. "license": [
  11667. "BSD-3-Clause"
  11668. ],
  11669. "authors": [
  11670. {
  11671. "name": "Arne Blankerts",
  11672. "email": "arne@blankerts.de",
  11673. "role": "Developer"
  11674. }
  11675. ],
  11676. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11677. "support": {
  11678. "issues": "https://github.com/theseer/tokenizer/issues",
  11679. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11680. },
  11681. "funding": [
  11682. {
  11683. "url": "https://github.com/theseer",
  11684. "type": "github"
  11685. }
  11686. ],
  11687. "time": "2024-03-03T12:36:25+00:00"
  11688. },
  11689. {
  11690. "name": "zx/php-tools",
  11691. "version": "v0.0.1",
  11692. "source": {
  11693. "type": "git",
  11694. "url": "https://gitee.com/open-php/php-tools.git",
  11695. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11696. },
  11697. "require": {
  11698. "php": ">=7.0"
  11699. },
  11700. "type": "library",
  11701. "autoload": {
  11702. "psr-4": {
  11703. "ZX\\": "src/"
  11704. }
  11705. },
  11706. "notification-url": "https://packagist.org/downloads/",
  11707. "license": [
  11708. "mit"
  11709. ],
  11710. "authors": [
  11711. {
  11712. "name": "zx",
  11713. "email": "903464207@qq.com"
  11714. }
  11715. ],
  11716. "description": "php-tools",
  11717. "time": "2023-06-25T06:24:10+00:00"
  11718. }
  11719. ],
  11720. "aliases": [],
  11721. "minimum-stability": "dev",
  11722. "stability-flags": [],
  11723. "prefer-stable": true,
  11724. "prefer-lowest": false,
  11725. "platform": {
  11726. "php": ">=8.1"
  11727. },
  11728. "platform-dev": [],
  11729. "plugin-api-version": "2.6.0"
  11730. }