composer.lock 413 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652
  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": "e71f383836139c57d31eb8084467a897",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.4",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  224. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9 || ^12",
  232. "phpstan/phpstan": "1.4.10 || 2.0.3",
  233. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psr/log": "^1 || ^2 || ^3"
  236. },
  237. "suggest": {
  238. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Deprecations\\": "src"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  251. "homepage": "https://www.doctrine-project.org/",
  252. "support": {
  253. "issues": "https://github.com/doctrine/deprecations/issues",
  254. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  255. },
  256. "time": "2024-12-07T21:18:45+00:00"
  257. },
  258. {
  259. "name": "doctrine/inflector",
  260. "version": "2.0.10",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/inflector.git",
  264. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  269. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": "^7.2 || ^8.0"
  274. },
  275. "require-dev": {
  276. "doctrine/coding-standard": "^11.0",
  277. "phpstan/phpstan": "^1.8",
  278. "phpstan/phpstan-phpunit": "^1.1",
  279. "phpstan/phpstan-strict-rules": "^1.3",
  280. "phpunit/phpunit": "^8.5 || ^9.5",
  281. "vimeo/psalm": "^4.25 || ^5.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  317. "keywords": [
  318. "inflection",
  319. "inflector",
  320. "lowercase",
  321. "manipulation",
  322. "php",
  323. "plural",
  324. "singular",
  325. "strings",
  326. "uppercase",
  327. "words"
  328. ],
  329. "support": {
  330. "issues": "https://github.com/doctrine/inflector/issues",
  331. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://www.doctrine-project.org/sponsorship.html",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://www.patreon.com/phpdoctrine",
  340. "type": "patreon"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2024-02-18T20:23:39+00:00"
  348. },
  349. {
  350. "name": "doctrine/instantiator",
  351. "version": "1.5.0",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/instantiator.git",
  355. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  360. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^9 || ^11",
  368. "ext-pdo": "*",
  369. "ext-phar": "*",
  370. "phpbench/phpbench": "^0.16 || ^1",
  371. "phpstan/phpstan": "^1.4",
  372. "phpstan/phpstan-phpunit": "^1",
  373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  374. "vimeo/psalm": "^4.30 || ^5.4"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Marco Pivetta",
  389. "email": "ocramius@gmail.com",
  390. "homepage": "https://ocramius.github.io/"
  391. }
  392. ],
  393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  395. "keywords": [
  396. "constructor",
  397. "instantiate"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/instantiator/issues",
  401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-30T00:15:36+00:00"
  418. },
  419. {
  420. "name": "doctrine/lexer",
  421. "version": "2.1.1",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/doctrine/lexer.git",
  425. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  430. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "doctrine/deprecations": "^1.0",
  435. "php": "^7.1 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^9 || ^12",
  439. "phpstan/phpstan": "^1.3",
  440. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  441. "psalm/plugin-phpunit": "^0.18.3",
  442. "vimeo/psalm": "^4.11 || ^5.21"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Doctrine\\Common\\Lexer\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Guilherme Blanco",
  457. "email": "guilhermeblanco@gmail.com"
  458. },
  459. {
  460. "name": "Roman Borschel",
  461. "email": "roman@code-factory.org"
  462. },
  463. {
  464. "name": "Johannes Schmitt",
  465. "email": "schmittjoh@gmail.com"
  466. }
  467. ],
  468. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  469. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  470. "keywords": [
  471. "annotations",
  472. "docblock",
  473. "lexer",
  474. "parser",
  475. "php"
  476. ],
  477. "support": {
  478. "issues": "https://github.com/doctrine/lexer/issues",
  479. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  480. },
  481. "funding": [
  482. {
  483. "url": "https://www.doctrine-project.org/sponsorship.html",
  484. "type": "custom"
  485. },
  486. {
  487. "url": "https://www.patreon.com/phpdoctrine",
  488. "type": "patreon"
  489. },
  490. {
  491. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  492. "type": "tidelift"
  493. }
  494. ],
  495. "time": "2024-02-05T11:35:39+00:00"
  496. },
  497. {
  498. "name": "easyswoole/spl",
  499. "version": "2.1.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/easy-swoole/spl.git",
  503. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  508. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-json": "*",
  514. "ext-simplexml": "*",
  515. "php": ">=8.1.0"
  516. },
  517. "require-dev": {
  518. "easyswoole/phpunit": "^1.0",
  519. "easyswoole/swoole-ide-helper": "^1.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "EasySwoole\\Spl\\": "src/",
  525. "EasySwoole\\Spl\\Test\\": "test/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "authors": [
  533. {
  534. "name": "YF",
  535. "email": "291323003@qq.com"
  536. }
  537. ],
  538. "description": "php stander lib",
  539. "homepage": "https://www.easyswoole.com/",
  540. "keywords": [
  541. "async",
  542. "easyswoole",
  543. "framework",
  544. "swoole"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/easy-swoole/spl/issues",
  548. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  549. },
  550. "time": "2024-07-09T14:44:25+00:00"
  551. },
  552. {
  553. "name": "easyswoole/verifycode",
  554. "version": "3.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/easy-swoole/verify-code.git",
  558. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  563. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "easyswoole/spl": "^2.0",
  568. "ext-gd": "*",
  569. "php": ">=8.1"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "EasySwoole\\VerifyCode\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. },
  586. {
  587. "name": "evalor",
  588. "email": "mipone@foxmail.com"
  589. }
  590. ],
  591. "support": {
  592. "issues": "https://github.com/easy-swoole/verify-code/issues",
  593. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  594. },
  595. "time": "2023-09-06T06:45:56+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "3.2.6",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  608. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "doctrine/lexer": "^1.2|^2",
  613. "php": ">=7.2",
  614. "symfony/polyfill-intl-idn": "^1.15"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "^8.5.8|^9.3.3",
  618. "vimeo/psalm": "^4"
  619. },
  620. "suggest": {
  621. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "3.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Egulias\\EmailValidator\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Eduardo Gulias Davis"
  641. }
  642. ],
  643. "description": "A library for validating emails against several RFCs",
  644. "homepage": "https://github.com/egulias/EmailValidator",
  645. "keywords": [
  646. "email",
  647. "emailvalidation",
  648. "emailvalidator",
  649. "validation",
  650. "validator"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/egulias/EmailValidator/issues",
  654. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/egulias",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2023-06-01T07:04:22+00:00"
  663. },
  664. {
  665. "name": "fig/http-message-util",
  666. "version": "1.1.5",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/php-fig/http-message-util.git",
  670. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  675. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": "^5.3 || ^7.0 || ^8.0"
  680. },
  681. "suggest": {
  682. "psr/http-message": "The package containing the PSR-7 interfaces"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "1.1.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Fig\\Http\\Message\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "PHP-FIG",
  702. "homepage": "https://www.php-fig.org/"
  703. }
  704. ],
  705. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  706. "keywords": [
  707. "http",
  708. "http-message",
  709. "psr",
  710. "psr-7",
  711. "request",
  712. "response"
  713. ],
  714. "support": {
  715. "issues": "https://github.com/php-fig/http-message-util/issues",
  716. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  717. },
  718. "time": "2020-11-24T22:02:12+00:00"
  719. },
  720. {
  721. "name": "graham-campbell/result-type",
  722. "version": "v1.1.3",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  726. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  731. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "php": "^7.2.5 || ^8.0",
  736. "phpoption/phpoption": "^1.9.3"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "GrahamCampbell\\ResultType\\": "src/"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Graham Campbell",
  754. "email": "hello@gjcampbell.co.uk",
  755. "homepage": "https://github.com/GrahamCampbell"
  756. }
  757. ],
  758. "description": "An Implementation Of The Result Type",
  759. "keywords": [
  760. "Graham Campbell",
  761. "GrahamCampbell",
  762. "Result Type",
  763. "Result-Type",
  764. "result"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  768. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/GrahamCampbell",
  773. "type": "github"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2024-07-20T21:45:45+00:00"
  781. },
  782. {
  783. "name": "guzzlehttp/guzzle",
  784. "version": "7.9.2",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/guzzle/guzzle.git",
  788. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  793. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "ext-json": "*",
  798. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  799. "guzzlehttp/psr7": "^2.7.0",
  800. "php": "^7.2.5 || ^8.0",
  801. "psr/http-client": "^1.0",
  802. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  803. },
  804. "provide": {
  805. "psr/http-client-implementation": "1.0"
  806. },
  807. "require-dev": {
  808. "bamarni/composer-bin-plugin": "^1.8.2",
  809. "ext-curl": "*",
  810. "guzzle/client-integration-tests": "3.0.2",
  811. "php-http/message-factory": "^1.1",
  812. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  813. "psr/log": "^1.1 || ^2.0 || ^3.0"
  814. },
  815. "suggest": {
  816. "ext-curl": "Required for CURL handler support",
  817. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  818. "psr/log": "Required for using the Log middleware"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "bamarni-bin": {
  823. "bin-links": true,
  824. "forward-command": false
  825. }
  826. },
  827. "autoload": {
  828. "files": [
  829. "src/functions_include.php"
  830. ],
  831. "psr-4": {
  832. "GuzzleHttp\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Graham Campbell",
  842. "email": "hello@gjcampbell.co.uk",
  843. "homepage": "https://github.com/GrahamCampbell"
  844. },
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Jeremy Lindblom",
  852. "email": "jeremeamia@gmail.com",
  853. "homepage": "https://github.com/jeremeamia"
  854. },
  855. {
  856. "name": "George Mponos",
  857. "email": "gmponos@gmail.com",
  858. "homepage": "https://github.com/gmponos"
  859. },
  860. {
  861. "name": "Tobias Nyholm",
  862. "email": "tobias.nyholm@gmail.com",
  863. "homepage": "https://github.com/Nyholm"
  864. },
  865. {
  866. "name": "Márk Sági-Kazár",
  867. "email": "mark.sagikazar@gmail.com",
  868. "homepage": "https://github.com/sagikazarmark"
  869. },
  870. {
  871. "name": "Tobias Schultze",
  872. "email": "webmaster@tubo-world.de",
  873. "homepage": "https://github.com/Tobion"
  874. }
  875. ],
  876. "description": "Guzzle is a PHP HTTP client library",
  877. "keywords": [
  878. "client",
  879. "curl",
  880. "framework",
  881. "http",
  882. "http client",
  883. "psr-18",
  884. "psr-7",
  885. "rest",
  886. "web service"
  887. ],
  888. "support": {
  889. "issues": "https://github.com/guzzle/guzzle/issues",
  890. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  891. },
  892. "funding": [
  893. {
  894. "url": "https://github.com/GrahamCampbell",
  895. "type": "github"
  896. },
  897. {
  898. "url": "https://github.com/Nyholm",
  899. "type": "github"
  900. },
  901. {
  902. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  903. "type": "tidelift"
  904. }
  905. ],
  906. "time": "2024-07-24T11:22:20+00:00"
  907. },
  908. {
  909. "name": "guzzlehttp/promises",
  910. "version": "2.0.4",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/guzzle/promises.git",
  914. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  919. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": "^7.2.5 || ^8.0"
  924. },
  925. "require-dev": {
  926. "bamarni/composer-bin-plugin": "^1.8.2",
  927. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "bamarni-bin": {
  932. "bin-links": true,
  933. "forward-command": false
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "GuzzleHttp\\Promise\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Graham Campbell",
  948. "email": "hello@gjcampbell.co.uk",
  949. "homepage": "https://github.com/GrahamCampbell"
  950. },
  951. {
  952. "name": "Michael Dowling",
  953. "email": "mtdowling@gmail.com",
  954. "homepage": "https://github.com/mtdowling"
  955. },
  956. {
  957. "name": "Tobias Nyholm",
  958. "email": "tobias.nyholm@gmail.com",
  959. "homepage": "https://github.com/Nyholm"
  960. },
  961. {
  962. "name": "Tobias Schultze",
  963. "email": "webmaster@tubo-world.de",
  964. "homepage": "https://github.com/Tobion"
  965. }
  966. ],
  967. "description": "Guzzle promises library",
  968. "keywords": [
  969. "promise"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/guzzle/promises/issues",
  973. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  974. },
  975. "funding": [
  976. {
  977. "url": "https://github.com/GrahamCampbell",
  978. "type": "github"
  979. },
  980. {
  981. "url": "https://github.com/Nyholm",
  982. "type": "github"
  983. },
  984. {
  985. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  986. "type": "tidelift"
  987. }
  988. ],
  989. "time": "2024-10-17T10:06:22+00:00"
  990. },
  991. {
  992. "name": "guzzlehttp/psr7",
  993. "version": "2.7.0",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/guzzle/psr7.git",
  997. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1002. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "php": "^7.2.5 || ^8.0",
  1007. "psr/http-factory": "^1.0",
  1008. "psr/http-message": "^1.1 || ^2.0",
  1009. "ralouphie/getallheaders": "^3.0"
  1010. },
  1011. "provide": {
  1012. "psr/http-factory-implementation": "1.0",
  1013. "psr/http-message-implementation": "1.0"
  1014. },
  1015. "require-dev": {
  1016. "bamarni/composer-bin-plugin": "^1.8.2",
  1017. "http-interop/http-factory-tests": "0.9.0",
  1018. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1019. },
  1020. "suggest": {
  1021. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "bamarni-bin": {
  1026. "bin-links": true,
  1027. "forward-command": false
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "GuzzleHttp\\Psr7\\": "src/"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Graham Campbell",
  1042. "email": "hello@gjcampbell.co.uk",
  1043. "homepage": "https://github.com/GrahamCampbell"
  1044. },
  1045. {
  1046. "name": "Michael Dowling",
  1047. "email": "mtdowling@gmail.com",
  1048. "homepage": "https://github.com/mtdowling"
  1049. },
  1050. {
  1051. "name": "George Mponos",
  1052. "email": "gmponos@gmail.com",
  1053. "homepage": "https://github.com/gmponos"
  1054. },
  1055. {
  1056. "name": "Tobias Nyholm",
  1057. "email": "tobias.nyholm@gmail.com",
  1058. "homepage": "https://github.com/Nyholm"
  1059. },
  1060. {
  1061. "name": "Márk Sági-Kazár",
  1062. "email": "mark.sagikazar@gmail.com",
  1063. "homepage": "https://github.com/sagikazarmark"
  1064. },
  1065. {
  1066. "name": "Tobias Schultze",
  1067. "email": "webmaster@tubo-world.de",
  1068. "homepage": "https://github.com/Tobion"
  1069. },
  1070. {
  1071. "name": "Márk Sági-Kazár",
  1072. "email": "mark.sagikazar@gmail.com",
  1073. "homepage": "https://sagikazarmark.hu"
  1074. }
  1075. ],
  1076. "description": "PSR-7 message implementation that also provides common utility methods",
  1077. "keywords": [
  1078. "http",
  1079. "message",
  1080. "psr-7",
  1081. "request",
  1082. "response",
  1083. "stream",
  1084. "uri",
  1085. "url"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/guzzle/psr7/issues",
  1089. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://github.com/GrahamCampbell",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://github.com/Nyholm",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2024-07-18T11:15:46+00:00"
  1106. },
  1107. {
  1108. "name": "hyperf/amqp",
  1109. "version": "v3.1.42",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/hyperf/amqp.git",
  1113. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1118. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "doctrine/instantiator": "^1.2.0",
  1123. "hyperf/codec": "~3.1.0",
  1124. "hyperf/contract": "~3.1.0",
  1125. "hyperf/coroutine": "~3.1.0",
  1126. "hyperf/pool": "~3.1.0",
  1127. "hyperf/process": "~3.1.0",
  1128. "hyperf/support": "~3.1.0",
  1129. "hyperf/utils": "~3.1.0",
  1130. "php": ">=8.1",
  1131. "php-amqplib/php-amqplib": "^3.5",
  1132. "psr/container": "^1.0 || ^2.0",
  1133. "psr/event-dispatcher": "^1.0",
  1134. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1135. },
  1136. "suggest": {
  1137. "hyperf/di": "Required to use annotations.",
  1138. "hyperf/event": "Declare queue and start consumers automatically."
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "3.1-dev"
  1144. },
  1145. "hyperf": {
  1146. "config": "Hyperf\\Amqp\\ConfigProvider"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Hyperf\\Amqp\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "description": "A amqplib for hyperf.",
  1159. "homepage": "https://hyperf.io",
  1160. "keywords": [
  1161. "AMQP",
  1162. "hyperf",
  1163. "php"
  1164. ],
  1165. "support": {
  1166. "docs": "https://hyperf.wiki",
  1167. "issues": "https://github.com/hyperf/hyperf/issues",
  1168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1169. "source": "https://github.com/hyperf/hyperf"
  1170. },
  1171. "funding": [
  1172. {
  1173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1174. "type": "custom"
  1175. },
  1176. {
  1177. "url": "https://opencollective.com/hyperf",
  1178. "type": "open_collective"
  1179. }
  1180. ],
  1181. "time": "2024-09-25T02:54:12+00:00"
  1182. },
  1183. {
  1184. "name": "hyperf/cache",
  1185. "version": "v3.1.43",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/hyperf/cache.git",
  1189. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1194. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "hyperf/codec": "~3.1.0",
  1199. "hyperf/collection": "~3.1.0",
  1200. "hyperf/contract": "~3.1.0",
  1201. "hyperf/support": "~3.1.0",
  1202. "hyperf/utils": "~3.1.0",
  1203. "php": ">=8.1",
  1204. "psr/container": "^1.0 || ^2.0",
  1205. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1206. },
  1207. "suggest": {
  1208. "hyperf/di": "Use cache annotations.",
  1209. "hyperf/event": "Use listener to delete annotation cache."
  1210. },
  1211. "type": "library",
  1212. "extra": {
  1213. "branch-alias": {
  1214. "dev-master": "3.1-dev"
  1215. },
  1216. "hyperf": {
  1217. "config": "Hyperf\\Cache\\ConfigProvider"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Hyperf\\Cache\\": "src/"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "description": "A cache component for hyperf.",
  1230. "homepage": "https://hyperf.io",
  1231. "keywords": [
  1232. "cache",
  1233. "hyperf",
  1234. "php"
  1235. ],
  1236. "support": {
  1237. "docs": "https://hyperf.wiki",
  1238. "issues": "https://github.com/hyperf/hyperf/issues",
  1239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1240. "source": "https://github.com/hyperf/hyperf"
  1241. },
  1242. "funding": [
  1243. {
  1244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1245. "type": "custom"
  1246. },
  1247. {
  1248. "url": "https://opencollective.com/hyperf",
  1249. "type": "open_collective"
  1250. }
  1251. ],
  1252. "time": "2024-10-09T10:22:39+00:00"
  1253. },
  1254. {
  1255. "name": "hyperf/code-parser",
  1256. "version": "v3.1.42",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/hyperf/code-parser.git",
  1260. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1265. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "hyperf/collection": "~3.1.0",
  1270. "hyperf/stringable": "~3.1.0",
  1271. "hyperf/support": "~3.1.0",
  1272. "php": ">=8.1"
  1273. },
  1274. "suggest": {
  1275. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1276. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "3.1-dev"
  1282. }
  1283. },
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Hyperf\\CodeParser\\": "src/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "description": "A code parser component for Hyperf.",
  1294. "homepage": "https://hyperf.io",
  1295. "keywords": [
  1296. "code-parser",
  1297. "hyperf",
  1298. "php",
  1299. "swoole"
  1300. ],
  1301. "support": {
  1302. "docs": "https://hyperf.wiki",
  1303. "issues": "https://github.com/hyperf/hyperf/issues",
  1304. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1305. "source": "https://github.com/hyperf/hyperf"
  1306. },
  1307. "funding": [
  1308. {
  1309. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1310. "type": "custom"
  1311. },
  1312. {
  1313. "url": "https://opencollective.com/hyperf",
  1314. "type": "open_collective"
  1315. }
  1316. ],
  1317. "time": "2024-09-25T02:54:12+00:00"
  1318. },
  1319. {
  1320. "name": "hyperf/codec",
  1321. "version": "v3.1.42",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/hyperf/codec.git",
  1325. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1330. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "ext-json": "*",
  1335. "ext-xml": "*",
  1336. "hyperf/contract": "~3.1.0",
  1337. "php": ">=8.1"
  1338. },
  1339. "suggest": {
  1340. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1341. },
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-master": "3.1-dev"
  1346. }
  1347. },
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Hyperf\\Codec\\": "src/"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "description": "A codec component for Hyperf.",
  1358. "homepage": "https://hyperf.io",
  1359. "keywords": [
  1360. "codec",
  1361. "hyperf",
  1362. "php",
  1363. "swoole"
  1364. ],
  1365. "support": {
  1366. "docs": "https://hyperf.wiki",
  1367. "issues": "https://github.com/hyperf/hyperf/issues",
  1368. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1369. "source": "https://github.com/hyperf/hyperf"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://opencollective.com/hyperf",
  1378. "type": "open_collective"
  1379. }
  1380. ],
  1381. "time": "2024-09-25T02:54:12+00:00"
  1382. },
  1383. {
  1384. "name": "hyperf/collection",
  1385. "version": "v3.1.47",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/hyperf/collection.git",
  1389. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1394. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "hyperf/conditionable": "~3.1.0",
  1399. "hyperf/contract": "~3.1.0",
  1400. "hyperf/macroable": "~3.1.0",
  1401. "hyperf/stringable": "~3.1.0",
  1402. "php": ">=8.1"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "3.1-dev"
  1408. }
  1409. },
  1410. "autoload": {
  1411. "files": [
  1412. "src/Functions.php"
  1413. ],
  1414. "psr-4": {
  1415. "Hyperf\\Collection\\": "src/"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "MIT"
  1421. ],
  1422. "description": "Hyperf Collection package which come from illuminate/collections",
  1423. "homepage": "https://hyperf.io",
  1424. "keywords": [
  1425. "collection",
  1426. "hyperf",
  1427. "php",
  1428. "swoole"
  1429. ],
  1430. "support": {
  1431. "docs": "https://hyperf.wiki",
  1432. "issues": "https://github.com/hyperf/hyperf/issues",
  1433. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1434. "source": "https://github.com/hyperf/hyperf"
  1435. },
  1436. "funding": [
  1437. {
  1438. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1439. "type": "custom"
  1440. },
  1441. {
  1442. "url": "https://opencollective.com/hyperf",
  1443. "type": "open_collective"
  1444. }
  1445. ],
  1446. "time": "2024-11-28T01:51:55+00:00"
  1447. },
  1448. {
  1449. "name": "hyperf/command",
  1450. "version": "v3.1.42",
  1451. "source": {
  1452. "type": "git",
  1453. "url": "https://github.com/hyperf/command.git",
  1454. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1455. },
  1456. "dist": {
  1457. "type": "zip",
  1458. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1459. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1460. "shasum": ""
  1461. },
  1462. "require": {
  1463. "hyperf/collection": "~3.1.0",
  1464. "hyperf/context": "~3.1.0",
  1465. "hyperf/contract": "~3.1.0",
  1466. "hyperf/coroutine": "~3.1.0",
  1467. "hyperf/di": "~3.1.0",
  1468. "hyperf/stringable": "~3.1.0",
  1469. "hyperf/support": "~3.1.0",
  1470. "hyperf/tappable": "~3.1.0",
  1471. "php": ">=8.1",
  1472. "psr/event-dispatcher": "^1.0",
  1473. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1474. },
  1475. "suggest": {
  1476. "hyperf/di": "Required to use annotations.",
  1477. "hyperf/event": "Required to use listeners."
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "3.1-dev"
  1483. },
  1484. "hyperf": {
  1485. "config": "Hyperf\\Command\\ConfigProvider"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Hyperf\\Command\\": "src/"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "description": "Command for hyperf",
  1498. "keywords": [
  1499. "command",
  1500. "php",
  1501. "swoole"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/hyperf/command/issues",
  1505. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1506. },
  1507. "funding": [
  1508. {
  1509. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1510. "type": "custom"
  1511. },
  1512. {
  1513. "url": "https://opencollective.com/hyperf",
  1514. "type": "open_collective"
  1515. }
  1516. ],
  1517. "time": "2024-09-25T02:54:12+00:00"
  1518. },
  1519. {
  1520. "name": "hyperf/conditionable",
  1521. "version": "v3.1.42",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/hyperf/conditionable.git",
  1525. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1530. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "php": ">=8.1"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-master": "3.1-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "Hyperf\\Conditionable\\": "src/"
  1545. }
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "MIT"
  1550. ],
  1551. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1552. "homepage": "https://hyperf.io",
  1553. "keywords": [
  1554. "conditionable",
  1555. "hyperf",
  1556. "php",
  1557. "swoole"
  1558. ],
  1559. "support": {
  1560. "docs": "https://hyperf.wiki",
  1561. "issues": "https://github.com/hyperf/hyperf/issues",
  1562. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1563. "source": "https://github.com/hyperf/hyperf"
  1564. },
  1565. "funding": [
  1566. {
  1567. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1568. "type": "custom"
  1569. },
  1570. {
  1571. "url": "https://opencollective.com/hyperf",
  1572. "type": "open_collective"
  1573. }
  1574. ],
  1575. "time": "2024-09-25T02:54:12+00:00"
  1576. },
  1577. {
  1578. "name": "hyperf/config",
  1579. "version": "v3.1.42",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/hyperf/config.git",
  1583. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1588. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "hyperf/collection": "~3.1.0",
  1593. "hyperf/contract": "~3.1.0",
  1594. "hyperf/support": "~3.1.0",
  1595. "php": ">=8.1",
  1596. "psr/container": "^1.0 || ^2.0",
  1597. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1598. },
  1599. "suggest": {
  1600. "hyperf/context": "Required to use config()",
  1601. "hyperf/di": "Allows using @Value annotation",
  1602. "hyperf/event": "Allows using @Value annotation",
  1603. "hyperf/framework": "Allows using @Value annotation",
  1604. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1605. },
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "3.1-dev"
  1610. },
  1611. "hyperf": {
  1612. "config": "Hyperf\\Config\\ConfigProvider"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "files": [
  1617. "./src/Functions.php"
  1618. ],
  1619. "psr-4": {
  1620. "Hyperf\\Config\\": "src/"
  1621. }
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "description": "An independent component that provides configuration container.",
  1628. "homepage": "https://hyperf.io",
  1629. "keywords": [
  1630. "config",
  1631. "configuration",
  1632. "hyperf",
  1633. "php",
  1634. "swoole"
  1635. ],
  1636. "support": {
  1637. "docs": "https://hyperf.wiki",
  1638. "issues": "https://github.com/hyperf/hyperf/issues",
  1639. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1640. "source": "https://github.com/hyperf/hyperf"
  1641. },
  1642. "funding": [
  1643. {
  1644. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1645. "type": "custom"
  1646. },
  1647. {
  1648. "url": "https://opencollective.com/hyperf",
  1649. "type": "open_collective"
  1650. }
  1651. ],
  1652. "time": "2024-09-25T02:54:12+00:00"
  1653. },
  1654. {
  1655. "name": "hyperf/config-center",
  1656. "version": "v3.1.42",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/hyperf/config-center.git",
  1660. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1665. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "hyperf/support": "~3.1.0",
  1670. "php": ">=8.1"
  1671. },
  1672. "suggest": {
  1673. "hyperf/process": "^2.1"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "branch-alias": {
  1678. "dev-master": "3.1-dev"
  1679. },
  1680. "hyperf": {
  1681. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "Hyperf\\ConfigCenter\\": "src/"
  1687. }
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "description": "The abstraction component of config center",
  1694. "homepage": "https://hyperf.io",
  1695. "keywords": [
  1696. "config-center",
  1697. "hyperf",
  1698. "php"
  1699. ],
  1700. "support": {
  1701. "docs": "https://hyperf.wiki",
  1702. "issues": "https://github.com/hyperf/hyperf/issues",
  1703. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1704. "source": "https://github.com/hyperf/hyperf"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1709. "type": "custom"
  1710. },
  1711. {
  1712. "url": "https://opencollective.com/hyperf",
  1713. "type": "open_collective"
  1714. }
  1715. ],
  1716. "time": "2024-09-25T02:54:12+00:00"
  1717. },
  1718. {
  1719. "name": "hyperf/config-nacos",
  1720. "version": "v3.1.42",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/hyperf/config-nacos.git",
  1724. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1729. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "hyperf/codec": "~3.1.0",
  1734. "hyperf/config-center": "~3.1.0",
  1735. "hyperf/contract": "~3.1.0",
  1736. "hyperf/guzzle": "~3.1.0",
  1737. "hyperf/nacos": "~3.1.0",
  1738. "hyperf/support": "~3.1.0",
  1739. "hyperf/utils": "~3.1.0",
  1740. "jetbrains/phpstorm-attributes": "^1.0",
  1741. "php": ">=8.1"
  1742. },
  1743. "suggest": {
  1744. "ext-json": "*",
  1745. "ext-simplexml": "*",
  1746. "ext-yaml": "*",
  1747. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1748. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1749. "hyperf/process": "Required to use processes. (~2.2.0)"
  1750. },
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-master": "3.1-dev"
  1755. },
  1756. "hyperf": {
  1757. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "psr-4": {
  1762. "Hyperf\\ConfigNacos\\": "src/"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "description": "A nacos adapter for config center component.",
  1770. "homepage": "https://hyperf.io",
  1771. "keywords": [
  1772. "hyperf",
  1773. "nacos",
  1774. "php",
  1775. "swoole"
  1776. ],
  1777. "support": {
  1778. "docs": "https://hyperf.wiki",
  1779. "issues": "https://github.com/hyperf/hyperf/issues",
  1780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1781. "source": "https://github.com/hyperf/hyperf"
  1782. },
  1783. "funding": [
  1784. {
  1785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1786. "type": "custom"
  1787. },
  1788. {
  1789. "url": "https://opencollective.com/hyperf",
  1790. "type": "open_collective"
  1791. }
  1792. ],
  1793. "time": "2024-09-25T02:54:12+00:00"
  1794. },
  1795. {
  1796. "name": "hyperf/constants",
  1797. "version": "v3.1.42",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/hyperf/constants.git",
  1801. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1806. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "hyperf/di": "~3.1.0",
  1811. "hyperf/support": "~3.1.0",
  1812. "hyperf/utils": "~3.1.0",
  1813. "php": ">=8.1"
  1814. },
  1815. "suggest": {
  1816. "hyperf/translation": "Required to use translation."
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "3.1-dev"
  1822. },
  1823. "hyperf": {
  1824. "config": "Hyperf\\Constants\\ConfigProvider"
  1825. }
  1826. },
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Hyperf\\Constants\\": "src/"
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "description": "A constants component for hyperf.",
  1837. "homepage": "https://hyperf.io",
  1838. "keywords": [
  1839. "constants",
  1840. "hyperf",
  1841. "php"
  1842. ],
  1843. "support": {
  1844. "docs": "https://hyperf.wiki",
  1845. "issues": "https://github.com/hyperf/hyperf/issues",
  1846. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1847. "source": "https://github.com/hyperf/hyperf"
  1848. },
  1849. "funding": [
  1850. {
  1851. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1852. "type": "custom"
  1853. },
  1854. {
  1855. "url": "https://opencollective.com/hyperf",
  1856. "type": "open_collective"
  1857. }
  1858. ],
  1859. "time": "2024-09-25T02:54:12+00:00"
  1860. },
  1861. {
  1862. "name": "hyperf/consul",
  1863. "version": "v3.1.42",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/hyperf/consul.git",
  1867. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1872. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1877. "php": ">=8.1"
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "3.1-dev"
  1883. },
  1884. "hyperf": {
  1885. "config": "Hyperf\\Consul\\ConfigProvider"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Hyperf\\Consul\\": "src/"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "description": "A Consul Client for Hyperf.",
  1898. "homepage": "https://hyperf.io",
  1899. "keywords": [
  1900. "consul",
  1901. "consul-client",
  1902. "hyperf",
  1903. "php",
  1904. "swoole"
  1905. ],
  1906. "support": {
  1907. "docs": "https://hyperf.wiki",
  1908. "issues": "https://github.com/hyperf/hyperf/issues",
  1909. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1910. "source": "https://github.com/hyperf/hyperf"
  1911. },
  1912. "funding": [
  1913. {
  1914. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1915. "type": "custom"
  1916. },
  1917. {
  1918. "url": "https://opencollective.com/hyperf",
  1919. "type": "open_collective"
  1920. }
  1921. ],
  1922. "time": "2024-09-25T02:54:12+00:00"
  1923. },
  1924. {
  1925. "name": "hyperf/context",
  1926. "version": "v3.1.42",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/hyperf/context.git",
  1930. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1935. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1936. "shasum": ""
  1937. },
  1938. "require": {
  1939. "hyperf/engine": "^2.0",
  1940. "php": ">=8.1"
  1941. },
  1942. "suggest": {
  1943. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1944. },
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "3.1-dev"
  1949. }
  1950. },
  1951. "autoload": {
  1952. "psr-4": {
  1953. "Hyperf\\Context\\": "src/"
  1954. }
  1955. },
  1956. "notification-url": "https://packagist.org/downloads/",
  1957. "license": [
  1958. "MIT"
  1959. ],
  1960. "description": "A coroutine/application context library.",
  1961. "homepage": "https://hyperf.io",
  1962. "keywords": [
  1963. "Context",
  1964. "hyperf",
  1965. "php",
  1966. "swoole"
  1967. ],
  1968. "support": {
  1969. "docs": "https://hyperf.wiki",
  1970. "issues": "https://github.com/hyperf/hyperf/issues",
  1971. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1972. "source": "https://github.com/hyperf/hyperf"
  1973. },
  1974. "funding": [
  1975. {
  1976. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1977. "type": "custom"
  1978. },
  1979. {
  1980. "url": "https://opencollective.com/hyperf",
  1981. "type": "open_collective"
  1982. }
  1983. ],
  1984. "time": "2024-09-25T02:54:12+00:00"
  1985. },
  1986. {
  1987. "name": "hyperf/contract",
  1988. "version": "v3.1.42",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/hyperf/contract.git",
  1992. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1997. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "php": ">=8.1"
  2002. },
  2003. "type": "library",
  2004. "extra": {
  2005. "branch-alias": {
  2006. "dev-master": "3.1-dev"
  2007. }
  2008. },
  2009. "autoload": {
  2010. "psr-4": {
  2011. "Hyperf\\Contract\\": "src/"
  2012. }
  2013. },
  2014. "notification-url": "https://packagist.org/downloads/",
  2015. "license": [
  2016. "MIT"
  2017. ],
  2018. "description": "The contracts of Hyperf.",
  2019. "homepage": "https://hyperf.io",
  2020. "keywords": [
  2021. "hyperf",
  2022. "php",
  2023. "swoole"
  2024. ],
  2025. "support": {
  2026. "docs": "https://hyperf.wiki",
  2027. "issues": "https://github.com/hyperf/hyperf/issues",
  2028. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2029. "source": "https://github.com/hyperf/hyperf"
  2030. },
  2031. "funding": [
  2032. {
  2033. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2034. "type": "custom"
  2035. },
  2036. {
  2037. "url": "https://opencollective.com/hyperf",
  2038. "type": "open_collective"
  2039. }
  2040. ],
  2041. "time": "2024-09-25T02:54:12+00:00"
  2042. },
  2043. {
  2044. "name": "hyperf/coordinator",
  2045. "version": "v3.1.42",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/hyperf/coordinator.git",
  2049. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2054. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "hyperf/engine": "^2.0",
  2059. "php": ">=8.1"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.1-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "files": [
  2069. "src/Functions.php"
  2070. ],
  2071. "psr-4": {
  2072. "Hyperf\\Coordinator\\": "src/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "description": "Hyperf Coordinator",
  2080. "homepage": "https://hyperf.io",
  2081. "keywords": [
  2082. "Coordinator",
  2083. "hyperf",
  2084. "php",
  2085. "swoole"
  2086. ],
  2087. "support": {
  2088. "docs": "https://hyperf.wiki",
  2089. "issues": "https://github.com/hyperf/hyperf/issues",
  2090. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2091. "source": "https://github.com/hyperf/hyperf"
  2092. },
  2093. "funding": [
  2094. {
  2095. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2096. "type": "custom"
  2097. },
  2098. {
  2099. "url": "https://opencollective.com/hyperf",
  2100. "type": "open_collective"
  2101. }
  2102. ],
  2103. "time": "2024-09-25T02:54:12+00:00"
  2104. },
  2105. {
  2106. "name": "hyperf/coroutine",
  2107. "version": "v3.1.49",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/hyperf/coroutine.git",
  2111. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/959ea68ac700061d8f7b76708bc52f588b66979b",
  2116. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b",
  2117. "shasum": ""
  2118. },
  2119. "require": {
  2120. "hyperf/context": "~3.1.0",
  2121. "hyperf/contract": "~3.1.0",
  2122. "hyperf/engine": "^2.0",
  2123. "php": ">=8.1"
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "3.1-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "files": [
  2133. "src/Functions.php"
  2134. ],
  2135. "psr-4": {
  2136. "Hyperf\\Coroutine\\": "src/"
  2137. }
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "description": "Hyperf Coroutine",
  2144. "homepage": "https://hyperf.io",
  2145. "keywords": [
  2146. "coroutine",
  2147. "hyperf",
  2148. "php",
  2149. "swoole"
  2150. ],
  2151. "support": {
  2152. "docs": "https://hyperf.wiki",
  2153. "issues": "https://github.com/hyperf/hyperf/issues",
  2154. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2155. "source": "https://github.com/hyperf/hyperf"
  2156. },
  2157. "funding": [
  2158. {
  2159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2160. "type": "custom"
  2161. },
  2162. {
  2163. "url": "https://opencollective.com/hyperf",
  2164. "type": "open_collective"
  2165. }
  2166. ],
  2167. "time": "2024-12-13T07:51:52+00:00"
  2168. },
  2169. {
  2170. "name": "hyperf/database",
  2171. "version": "v3.1.48",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/hyperf/database.git",
  2175. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2180. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "hyperf/code-parser": "~3.1.0",
  2185. "hyperf/collection": "~3.1.23",
  2186. "hyperf/conditionable": "~3.1.0",
  2187. "hyperf/macroable": "~3.1.0",
  2188. "hyperf/support": "~3.1.0",
  2189. "hyperf/tappable": "~3.1.0",
  2190. "hyperf/utils": "~3.1.0",
  2191. "nesbot/carbon": "^2.0",
  2192. "php": ">=8.1",
  2193. "psr/container": "^1.0 || ^2.0",
  2194. "psr/event-dispatcher": "^1.0"
  2195. },
  2196. "suggest": {
  2197. "doctrine/dbal": "Required to rename columns (^3.0).",
  2198. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2199. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2200. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "3.1-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "psr-4": {
  2210. "Hyperf\\Database\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "description": "A flexible database library.",
  2218. "homepage": "https://hyperf.io",
  2219. "keywords": [
  2220. "database",
  2221. "hyperf",
  2222. "php"
  2223. ],
  2224. "support": {
  2225. "docs": "https://hyperf.wiki",
  2226. "issues": "https://github.com/hyperf/hyperf/issues",
  2227. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2228. "source": "https://github.com/hyperf/hyperf"
  2229. },
  2230. "funding": [
  2231. {
  2232. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2233. "type": "custom"
  2234. },
  2235. {
  2236. "url": "https://opencollective.com/hyperf",
  2237. "type": "open_collective"
  2238. }
  2239. ],
  2240. "time": "2024-12-12T01:58:16+00:00"
  2241. },
  2242. {
  2243. "name": "hyperf/db-connection",
  2244. "version": "v3.1.44",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/hyperf/db-connection.git",
  2248. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2253. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "hyperf/database": "~3.1.0",
  2258. "hyperf/di": "~3.1.0",
  2259. "hyperf/framework": "~3.1.0",
  2260. "hyperf/model-listener": "~3.1.0",
  2261. "hyperf/pool": "~3.1.0",
  2262. "hyperf/support": "~3.1.0",
  2263. "hyperf/utils": "~3.1.0",
  2264. "php": ">=8.1",
  2265. "psr/container": "^1.0 || ^2.0"
  2266. },
  2267. "type": "library",
  2268. "extra": {
  2269. "branch-alias": {
  2270. "dev-master": "3.1-dev"
  2271. },
  2272. "hyperf": {
  2273. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2274. }
  2275. },
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Hyperf\\DbConnection\\": "src/"
  2279. }
  2280. },
  2281. "notification-url": "https://packagist.org/downloads/",
  2282. "license": [
  2283. "MIT"
  2284. ],
  2285. "description": "A hyperf db connection handler for hyperf/database.",
  2286. "homepage": "https://hyperf.io",
  2287. "keywords": [
  2288. "Connection",
  2289. "database",
  2290. "hyperf",
  2291. "php"
  2292. ],
  2293. "support": {
  2294. "docs": "https://hyperf.wiki",
  2295. "issues": "https://github.com/hyperf/hyperf/issues",
  2296. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2297. "source": "https://github.com/hyperf/hyperf"
  2298. },
  2299. "funding": [
  2300. {
  2301. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2302. "type": "custom"
  2303. },
  2304. {
  2305. "url": "https://opencollective.com/hyperf",
  2306. "type": "open_collective"
  2307. }
  2308. ],
  2309. "time": "2024-10-11T08:58:16+00:00"
  2310. },
  2311. {
  2312. "name": "hyperf/di",
  2313. "version": "v3.1.42",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/hyperf/di.git",
  2317. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2322. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2323. "shasum": ""
  2324. },
  2325. "require": {
  2326. "doctrine/instantiator": "^1.0",
  2327. "hyperf/code-parser": "~3.1.0",
  2328. "hyperf/pipeline": "~3.1.0",
  2329. "hyperf/stdlib": "~3.1.0",
  2330. "hyperf/support": "~3.1.0",
  2331. "nikic/php-parser": "^4.1",
  2332. "php": ">=8.1",
  2333. "php-di/phpdoc-reader": "^2.2",
  2334. "psr/container": "^1.0 || ^2.0",
  2335. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2336. "vlucas/phpdotenv": "^5.0"
  2337. },
  2338. "suggest": {
  2339. "ext-pcntl": "Required to scan annotations.",
  2340. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "3.1-dev"
  2346. },
  2347. "hyperf": {
  2348. "config": "Hyperf\\Di\\ConfigProvider"
  2349. }
  2350. },
  2351. "autoload": {
  2352. "psr-4": {
  2353. "Hyperf\\Di\\": "src/"
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "description": "A DI for Hyperf.",
  2361. "homepage": "https://hyperf.io",
  2362. "keywords": [
  2363. "annotation",
  2364. "di",
  2365. "hyperf",
  2366. "php",
  2367. "swoole"
  2368. ],
  2369. "support": {
  2370. "docs": "https://hyperf.wiki",
  2371. "issues": "https://github.com/hyperf/hyperf/issues",
  2372. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2373. "source": "https://github.com/hyperf/hyperf"
  2374. },
  2375. "funding": [
  2376. {
  2377. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2378. "type": "custom"
  2379. },
  2380. {
  2381. "url": "https://opencollective.com/hyperf",
  2382. "type": "open_collective"
  2383. }
  2384. ],
  2385. "time": "2024-09-25T02:54:12+00:00"
  2386. },
  2387. {
  2388. "name": "hyperf/dispatcher",
  2389. "version": "v3.1.42",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/hyperf/dispatcher.git",
  2393. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2398. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2399. "shasum": ""
  2400. },
  2401. "require": {
  2402. "hyperf/contract": "~3.1.0",
  2403. "php": ">=8.1",
  2404. "psr/container": "^1.0 || ^2.0",
  2405. "psr/http-message": "^1.0 || ^2.0",
  2406. "psr/http-server-middleware": "^1.0"
  2407. },
  2408. "type": "library",
  2409. "extra": {
  2410. "branch-alias": {
  2411. "dev-master": "3.1-dev"
  2412. },
  2413. "hyperf": {
  2414. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2415. }
  2416. },
  2417. "autoload": {
  2418. "psr-4": {
  2419. "Hyperf\\Dispatcher\\": "src/"
  2420. }
  2421. },
  2422. "notification-url": "https://packagist.org/downloads/",
  2423. "license": [
  2424. "MIT"
  2425. ],
  2426. "description": "A HTTP Server for Hyperf.",
  2427. "homepage": "https://hyperf.io",
  2428. "keywords": [
  2429. "dispatcher",
  2430. "filter",
  2431. "hyperf",
  2432. "middleware",
  2433. "php",
  2434. "swoole"
  2435. ],
  2436. "support": {
  2437. "docs": "https://hyperf.wiki",
  2438. "issues": "https://github.com/hyperf/hyperf/issues",
  2439. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2440. "source": "https://github.com/hyperf/hyperf"
  2441. },
  2442. "funding": [
  2443. {
  2444. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2445. "type": "custom"
  2446. },
  2447. {
  2448. "url": "https://opencollective.com/hyperf",
  2449. "type": "open_collective"
  2450. }
  2451. ],
  2452. "time": "2024-09-25T02:54:12+00:00"
  2453. },
  2454. {
  2455. "name": "hyperf/engine",
  2456. "version": "v2.12.1",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/hyperf/engine.git",
  2460. "reference": "90be8143841482dcd00051050986251e126c6132"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2465. "reference": "90be8143841482dcd00051050986251e126c6132",
  2466. "shasum": ""
  2467. },
  2468. "require": {
  2469. "hyperf/engine-contract": "~1.11.0",
  2470. "php": ">=8.0"
  2471. },
  2472. "conflict": {
  2473. "ext-swoole": "<5.0"
  2474. },
  2475. "require-dev": {
  2476. "friendsofphp/php-cs-fixer": "^3.0",
  2477. "hyperf/guzzle": "^3.0",
  2478. "hyperf/http-message": "^3.0",
  2479. "mockery/mockery": "^1.5",
  2480. "phpstan/phpstan": "^1.0",
  2481. "phpunit/phpunit": "^9.4",
  2482. "swoole/ide-helper": "5.*"
  2483. },
  2484. "suggest": {
  2485. "ext-sockets": "*",
  2486. "ext-swoole": ">=5.0",
  2487. "hyperf/http-message": "Required to use ResponseEmitter.",
  2488. "psr/http-message": "Required to use WebSocket Frame."
  2489. },
  2490. "type": "library",
  2491. "extra": {
  2492. "hyperf": {
  2493. "config": "Hyperf\\Engine\\ConfigProvider"
  2494. },
  2495. "branch-alias": {
  2496. "dev-master": "2.12-dev"
  2497. }
  2498. },
  2499. "autoload": {
  2500. "files": [
  2501. "src/Functions.php"
  2502. ],
  2503. "psr-4": {
  2504. "Hyperf\\Engine\\": "src/"
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "description": "Coroutine engine provided by swoole.",
  2512. "keywords": [
  2513. "engine",
  2514. "hyperf",
  2515. "php",
  2516. "swoole"
  2517. ],
  2518. "support": {
  2519. "issues": "https://github.com/hyperf/engine/issues",
  2520. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2525. "type": "custom"
  2526. },
  2527. {
  2528. "url": "https://opencollective.com/hyperf",
  2529. "type": "open_collective"
  2530. }
  2531. ],
  2532. "time": "2024-12-17T12:36:21+00:00"
  2533. },
  2534. {
  2535. "name": "hyperf/engine-contract",
  2536. "version": "v1.11.0",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/hyperf/engine-contract.git",
  2540. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2545. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2546. "shasum": ""
  2547. },
  2548. "require": {
  2549. "php": ">=8.0"
  2550. },
  2551. "require-dev": {
  2552. "friendsofphp/php-cs-fixer": "^3.0",
  2553. "mockery/mockery": "^1.0",
  2554. "phpstan/phpstan": "^1.0",
  2555. "phpunit/phpunit": ">=7.0",
  2556. "psr/http-message": "^1.0",
  2557. "swoole/ide-helper": "^4.5"
  2558. },
  2559. "suggest": {
  2560. "psr/http-message": "Required to use WebSocket Frame."
  2561. },
  2562. "type": "library",
  2563. "extra": {
  2564. "branch-alias": {
  2565. "dev-master": "1.9-dev"
  2566. }
  2567. },
  2568. "autoload": {
  2569. "psr-4": {
  2570. "Hyperf\\Engine\\Contract\\": "src/"
  2571. }
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "description": "Contract for Coroutine Engine",
  2578. "keywords": [
  2579. "contract",
  2580. "coroutine",
  2581. "engine",
  2582. "hyperf",
  2583. "php"
  2584. ],
  2585. "support": {
  2586. "issues": "https://github.com/hyperf/engine-contract/issues",
  2587. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2588. },
  2589. "funding": [
  2590. {
  2591. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2592. "type": "custom"
  2593. },
  2594. {
  2595. "url": "https://opencollective.com/hyperf",
  2596. "type": "open_collective"
  2597. }
  2598. ],
  2599. "time": "2024-11-19T04:15:31+00:00"
  2600. },
  2601. {
  2602. "name": "hyperf/event",
  2603. "version": "v3.1.42",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/hyperf/event.git",
  2607. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2612. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "hyperf/contract": "~3.1.0",
  2617. "hyperf/stdlib": "~3.1.0",
  2618. "php": ">=8.1",
  2619. "psr/event-dispatcher": "^1.0"
  2620. },
  2621. "suggest": {
  2622. "hyperf/di": "Required to use annotatioins."
  2623. },
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-master": "3.1-dev"
  2628. },
  2629. "hyperf": {
  2630. "config": "Hyperf\\Event\\ConfigProvider"
  2631. }
  2632. },
  2633. "autoload": {
  2634. "psr-4": {
  2635. "Hyperf\\Event\\": "src/"
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "description": "an event manager that implements PSR-14.",
  2643. "homepage": "https://hyperf.io",
  2644. "keywords": [
  2645. "event",
  2646. "hyperf",
  2647. "php",
  2648. "swoole"
  2649. ],
  2650. "support": {
  2651. "docs": "https://hyperf.wiki",
  2652. "issues": "https://github.com/hyperf/hyperf/issues",
  2653. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2654. "source": "https://github.com/hyperf/hyperf"
  2655. },
  2656. "funding": [
  2657. {
  2658. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2659. "type": "custom"
  2660. },
  2661. {
  2662. "url": "https://opencollective.com/hyperf",
  2663. "type": "open_collective"
  2664. }
  2665. ],
  2666. "time": "2024-09-25T02:54:12+00:00"
  2667. },
  2668. {
  2669. "name": "hyperf/exception-handler",
  2670. "version": "v3.1.42",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://github.com/hyperf/exception-handler.git",
  2674. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2679. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2680. "shasum": ""
  2681. },
  2682. "require": {
  2683. "hyperf/context": "~3.1.0",
  2684. "hyperf/contract": "~3.1.0",
  2685. "hyperf/dispatcher": "~3.1.0",
  2686. "hyperf/http-message": "~3.1.0",
  2687. "hyperf/stdlib": "~3.1.0",
  2688. "hyperf/support": "~3.1.0",
  2689. "php": ">=8.1",
  2690. "psr/container": "^1.0 || ^2.0",
  2691. "psr/http-message": "^1.0 || ^2.0",
  2692. "swow/psr7-plus": "^1.0"
  2693. },
  2694. "suggest": {
  2695. "hyperf/di": "Required to use #[ExceptionHandler]",
  2696. "hyperf/event": "Required to use listeners",
  2697. "hyperf/framework": "Required to use listeners",
  2698. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2699. },
  2700. "type": "library",
  2701. "extra": {
  2702. "branch-alias": {
  2703. "dev-master": "3.1-dev"
  2704. },
  2705. "hyperf": {
  2706. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2707. }
  2708. },
  2709. "autoload": {
  2710. "psr-4": {
  2711. "Hyperf\\ExceptionHandler\\": "src/"
  2712. }
  2713. },
  2714. "notification-url": "https://packagist.org/downloads/",
  2715. "license": [
  2716. "MIT"
  2717. ],
  2718. "description": "Exception handler for hyperf",
  2719. "homepage": "https://hyperf.io",
  2720. "keywords": [
  2721. "exception-handler",
  2722. "php",
  2723. "swoole"
  2724. ],
  2725. "support": {
  2726. "docs": "https://hyperf.wiki",
  2727. "issues": "https://github.com/hyperf/hyperf/issues",
  2728. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2729. "source": "https://github.com/hyperf/hyperf"
  2730. },
  2731. "funding": [
  2732. {
  2733. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2734. "type": "custom"
  2735. },
  2736. {
  2737. "url": "https://opencollective.com/hyperf",
  2738. "type": "open_collective"
  2739. }
  2740. ],
  2741. "time": "2024-09-25T02:54:12+00:00"
  2742. },
  2743. {
  2744. "name": "hyperf/framework",
  2745. "version": "v3.1.42",
  2746. "source": {
  2747. "type": "git",
  2748. "url": "https://github.com/hyperf/framework.git",
  2749. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2750. },
  2751. "dist": {
  2752. "type": "zip",
  2753. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2754. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2755. "shasum": ""
  2756. },
  2757. "require": {
  2758. "fig/http-message-util": "^1.1.2",
  2759. "hyperf/contract": "~3.1.0",
  2760. "hyperf/coordinator": "~3.1.0",
  2761. "hyperf/coroutine": "~3.1.0",
  2762. "php": ">=8.1",
  2763. "psr/container": "^1.0 || ^2.0",
  2764. "psr/event-dispatcher": "^1.0",
  2765. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2766. },
  2767. "suggest": {
  2768. "ext-swoole": "Required to use swoole engine.",
  2769. "hyperf/command": "Required to use Command annotation.",
  2770. "hyperf/di": "Required to use Command annotation.",
  2771. "hyperf/dispatcher": "Required to use BootApplication event.",
  2772. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2773. },
  2774. "type": "library",
  2775. "extra": {
  2776. "branch-alias": {
  2777. "dev-master": "3.1-dev"
  2778. },
  2779. "hyperf": {
  2780. "config": "Hyperf\\Framework\\ConfigProvider"
  2781. }
  2782. },
  2783. "autoload": {
  2784. "psr-4": {
  2785. "Hyperf\\Framework\\": "src/"
  2786. }
  2787. },
  2788. "notification-url": "https://packagist.org/downloads/",
  2789. "license": [
  2790. "MIT"
  2791. ],
  2792. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2793. "homepage": "https://hyperf.io",
  2794. "keywords": [
  2795. "Microservice",
  2796. "framework",
  2797. "hyperf",
  2798. "middleware",
  2799. "php",
  2800. "swoole"
  2801. ],
  2802. "support": {
  2803. "docs": "https://hyperf.wiki",
  2804. "issues": "https://github.com/hyperf/hyperf/issues",
  2805. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2806. "source": "https://github.com/hyperf/hyperf"
  2807. },
  2808. "funding": [
  2809. {
  2810. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2811. "type": "custom"
  2812. },
  2813. {
  2814. "url": "https://opencollective.com/hyperf",
  2815. "type": "open_collective"
  2816. }
  2817. ],
  2818. "time": "2024-09-25T02:54:12+00:00"
  2819. },
  2820. {
  2821. "name": "hyperf/guzzle",
  2822. "version": "v3.1.42",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/hyperf/guzzle.git",
  2826. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2831. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2836. "php": ">=8.1",
  2837. "psr/container": "^1.0 || ^2.0",
  2838. "psr/http-message": "^1.0 || ^2.0"
  2839. },
  2840. "suggest": {
  2841. "ext-curl": "Required for CURL handler support",
  2842. "hyperf/pool": "Required to use pool handler."
  2843. },
  2844. "type": "library",
  2845. "extra": {
  2846. "branch-alias": {
  2847. "dev-master": "3.1-dev"
  2848. },
  2849. "hyperf": {
  2850. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "psr-4": {
  2855. "Hyperf\\Guzzle\\": "src/"
  2856. }
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "description": "Swoole coroutine handler for guzzle",
  2863. "keywords": [
  2864. "Guzzle",
  2865. "handler",
  2866. "php",
  2867. "swoole"
  2868. ],
  2869. "support": {
  2870. "issues": "https://github.com/hyperf/guzzle/issues",
  2871. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2872. },
  2873. "funding": [
  2874. {
  2875. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2876. "type": "custom"
  2877. },
  2878. {
  2879. "url": "https://opencollective.com/hyperf",
  2880. "type": "open_collective"
  2881. }
  2882. ],
  2883. "time": "2024-09-25T02:54:12+00:00"
  2884. },
  2885. {
  2886. "name": "hyperf/http-message",
  2887. "version": "v3.1.48",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/hyperf/http-message.git",
  2891. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2896. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "hyperf/codec": "~3.1.0",
  2901. "hyperf/engine": "^2.11",
  2902. "hyperf/support": "~3.1.0",
  2903. "laminas/laminas-mime": "^2.7",
  2904. "php": ">=8.1",
  2905. "psr/http-message": "^1.0 || ^2.0",
  2906. "swow/psr7-plus": "^1.0"
  2907. },
  2908. "suggest": {
  2909. "psr/container": "Required to replace RequestParserInterface."
  2910. },
  2911. "type": "library",
  2912. "extra": {
  2913. "hyperf": {
  2914. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2915. },
  2916. "branch-alias": {
  2917. "dev-master": "3.1-dev"
  2918. }
  2919. },
  2920. "autoload": {
  2921. "psr-4": {
  2922. "Hyperf\\HttpMessage\\": "src/"
  2923. }
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "MIT"
  2928. ],
  2929. "description": "microservice framework base on swoole",
  2930. "keywords": [
  2931. "http-message",
  2932. "hyperf",
  2933. "php",
  2934. "swoole"
  2935. ],
  2936. "support": {
  2937. "issues": "https://github.com/hyperf/http-message/issues",
  2938. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2939. },
  2940. "funding": [
  2941. {
  2942. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2943. "type": "custom"
  2944. },
  2945. {
  2946. "url": "https://opencollective.com/hyperf",
  2947. "type": "open_collective"
  2948. }
  2949. ],
  2950. "time": "2024-12-05T02:41:08+00:00"
  2951. },
  2952. {
  2953. "name": "hyperf/http-server",
  2954. "version": "v3.1.42",
  2955. "source": {
  2956. "type": "git",
  2957. "url": "https://github.com/hyperf/http-server.git",
  2958. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2959. },
  2960. "dist": {
  2961. "type": "zip",
  2962. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2963. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2964. "shasum": ""
  2965. },
  2966. "require": {
  2967. "hyperf/codec": "~3.1.0",
  2968. "hyperf/collection": "~3.1.0",
  2969. "hyperf/context": "~3.1.0",
  2970. "hyperf/contract": "~3.1.0",
  2971. "hyperf/coroutine": "~3.1.0",
  2972. "hyperf/dispatcher": "~3.1.0",
  2973. "hyperf/event": "~3.1.0",
  2974. "hyperf/exception-handler": "~3.1.0",
  2975. "hyperf/http-message": "~3.1.0",
  2976. "hyperf/macroable": "~3.1.0",
  2977. "hyperf/serializer": "~3.1.0",
  2978. "hyperf/server": "~3.1.0",
  2979. "hyperf/stdlib": "~3.1.0",
  2980. "hyperf/support": "~3.1.0",
  2981. "nikic/fast-route": "^1.3",
  2982. "php": ">=8.1",
  2983. "psr/container": "^1.0 || ^2.0",
  2984. "swow/psr7-plus": "^1.0"
  2985. },
  2986. "suggest": {
  2987. "hyperf/di": "Required to use annotations."
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "branch-alias": {
  2992. "dev-master": "3.1-dev"
  2993. },
  2994. "hyperf": {
  2995. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2996. }
  2997. },
  2998. "autoload": {
  2999. "psr-4": {
  3000. "Hyperf\\HttpServer\\": "src/"
  3001. }
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "MIT"
  3006. ],
  3007. "description": "A HTTP Server for Hyperf.",
  3008. "homepage": "https://hyperf.io",
  3009. "keywords": [
  3010. "http",
  3011. "http-server",
  3012. "hyperf",
  3013. "php",
  3014. "swoole"
  3015. ],
  3016. "support": {
  3017. "docs": "https://hyperf.wiki",
  3018. "issues": "https://github.com/hyperf/hyperf/issues",
  3019. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3020. "source": "https://github.com/hyperf/hyperf"
  3021. },
  3022. "funding": [
  3023. {
  3024. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3025. "type": "custom"
  3026. },
  3027. {
  3028. "url": "https://opencollective.com/hyperf",
  3029. "type": "open_collective"
  3030. }
  3031. ],
  3032. "time": "2024-09-25T02:54:12+00:00"
  3033. },
  3034. {
  3035. "name": "hyperf/json-rpc",
  3036. "version": "v3.1.47",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/hyperf/json-rpc.git",
  3040. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3045. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "hyperf/codec": "~3.1.0",
  3050. "hyperf/context": "~3.1.0",
  3051. "hyperf/contract": "~3.1.0",
  3052. "hyperf/engine": "^2.0",
  3053. "hyperf/http-message": "~3.1.0",
  3054. "hyperf/load-balancer": "~3.1.0",
  3055. "hyperf/rpc": "~3.1.0",
  3056. "hyperf/serializer": "~3.1.0",
  3057. "hyperf/support": "~3.1.0",
  3058. "hyperf/utils": "~3.1.0",
  3059. "php": ">=8.1",
  3060. "psr/container": "^1.0 || ^2.0",
  3061. "swow/psr7-plus": "^1.0"
  3062. },
  3063. "suggest": {
  3064. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3065. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3066. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3067. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3068. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3069. },
  3070. "type": "library",
  3071. "extra": {
  3072. "hyperf": {
  3073. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3074. },
  3075. "branch-alias": {
  3076. "dev-master": "3.1-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Hyperf\\JsonRpc\\": "src/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3089. "homepage": "https://hyperf.io",
  3090. "keywords": [
  3091. "hyperf",
  3092. "json-rpc",
  3093. "php",
  3094. "swoole"
  3095. ],
  3096. "support": {
  3097. "docs": "https://hyperf.wiki",
  3098. "issues": "https://github.com/hyperf/hyperf/issues",
  3099. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3100. "source": "https://github.com/hyperf/hyperf"
  3101. },
  3102. "funding": [
  3103. {
  3104. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3105. "type": "custom"
  3106. },
  3107. {
  3108. "url": "https://opencollective.com/hyperf",
  3109. "type": "open_collective"
  3110. }
  3111. ],
  3112. "time": "2024-11-28T01:51:55+00:00"
  3113. },
  3114. {
  3115. "name": "hyperf/load-balancer",
  3116. "version": "v3.1.42",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/hyperf/load-balancer.git",
  3120. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3125. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3126. "shasum": ""
  3127. },
  3128. "require": {
  3129. "hyperf/coordinator": "~3.1.0",
  3130. "hyperf/coroutine": "~3.1.0",
  3131. "markrogoyski/math-php": "^2.0",
  3132. "php": ">=8.1",
  3133. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3134. },
  3135. "type": "library",
  3136. "extra": {
  3137. "branch-alias": {
  3138. "dev-master": "3.1-dev"
  3139. },
  3140. "hyperf": {
  3141. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3142. }
  3143. },
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Hyperf\\LoadBalancer\\": "src/"
  3147. }
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "description": "A load balancer library for Hyperf.",
  3154. "homepage": "https://hyperf.io",
  3155. "keywords": [
  3156. "hyperf",
  3157. "load-balancer",
  3158. "php",
  3159. "swoole"
  3160. ],
  3161. "support": {
  3162. "docs": "https://hyperf.wiki",
  3163. "issues": "https://github.com/hyperf/hyperf/issues",
  3164. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3165. "source": "https://github.com/hyperf/hyperf"
  3166. },
  3167. "funding": [
  3168. {
  3169. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3170. "type": "custom"
  3171. },
  3172. {
  3173. "url": "https://opencollective.com/hyperf",
  3174. "type": "open_collective"
  3175. }
  3176. ],
  3177. "time": "2024-09-25T02:54:12+00:00"
  3178. },
  3179. {
  3180. "name": "hyperf/logger",
  3181. "version": "v3.1.42",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/hyperf/logger.git",
  3185. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3190. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3191. "shasum": ""
  3192. },
  3193. "require": {
  3194. "hyperf/contract": "~3.1.0",
  3195. "hyperf/support": "~3.1.0",
  3196. "hyperf/utils": "~3.1.0",
  3197. "monolog/monolog": "^2.7 || ^3.1",
  3198. "php": ">=8.1",
  3199. "psr/container": "^1.0 || ^2.0",
  3200. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3201. },
  3202. "type": "library",
  3203. "extra": {
  3204. "branch-alias": {
  3205. "dev-master": "3.1-dev"
  3206. },
  3207. "hyperf": {
  3208. "config": "Hyperf\\Logger\\ConfigProvider"
  3209. }
  3210. },
  3211. "autoload": {
  3212. "psr-4": {
  3213. "Hyperf\\Logger\\": "src/"
  3214. }
  3215. },
  3216. "notification-url": "https://packagist.org/downloads/",
  3217. "license": [
  3218. "MIT"
  3219. ],
  3220. "description": "A logger component for hyperf.",
  3221. "homepage": "https://hyperf.io",
  3222. "keywords": [
  3223. "hyperf",
  3224. "logger",
  3225. "php"
  3226. ],
  3227. "support": {
  3228. "docs": "https://hyperf.wiki",
  3229. "issues": "https://github.com/hyperf/hyperf/issues",
  3230. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3231. "source": "https://github.com/hyperf/hyperf"
  3232. },
  3233. "funding": [
  3234. {
  3235. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3236. "type": "custom"
  3237. },
  3238. {
  3239. "url": "https://opencollective.com/hyperf",
  3240. "type": "open_collective"
  3241. }
  3242. ],
  3243. "time": "2024-09-25T02:54:12+00:00"
  3244. },
  3245. {
  3246. "name": "hyperf/macroable",
  3247. "version": "v3.1.42",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/hyperf/macroable.git",
  3251. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3256. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3257. "shasum": ""
  3258. },
  3259. "require": {
  3260. "php": ">=8.1"
  3261. },
  3262. "type": "library",
  3263. "extra": {
  3264. "branch-alias": {
  3265. "dev-master": "3.1-dev"
  3266. }
  3267. },
  3268. "autoload": {
  3269. "psr-4": {
  3270. "Hyperf\\Macroable\\": "src/"
  3271. }
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3278. "homepage": "https://hyperf.io",
  3279. "keywords": [
  3280. "hyperf",
  3281. "macroable",
  3282. "php",
  3283. "swoole"
  3284. ],
  3285. "support": {
  3286. "docs": "https://hyperf.wiki",
  3287. "issues": "https://github.com/hyperf/hyperf/issues",
  3288. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3289. "source": "https://github.com/hyperf/hyperf"
  3290. },
  3291. "funding": [
  3292. {
  3293. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3294. "type": "custom"
  3295. },
  3296. {
  3297. "url": "https://opencollective.com/hyperf",
  3298. "type": "open_collective"
  3299. }
  3300. ],
  3301. "time": "2024-09-25T02:54:12+00:00"
  3302. },
  3303. {
  3304. "name": "hyperf/memory",
  3305. "version": "v3.1.42",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/hyperf/memory.git",
  3309. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3314. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": ">=8.1"
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "branch-alias": {
  3323. "dev-master": "3.1-dev"
  3324. },
  3325. "hyperf": {
  3326. "config": "Hyperf\\Memory\\ConfigProvider"
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Hyperf\\Memory\\": "src/"
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "description": "An independent component that use to operate and manage memory.",
  3339. "homepage": "https://hyperf.io",
  3340. "keywords": [
  3341. "hyperf",
  3342. "memory",
  3343. "php",
  3344. "swoole"
  3345. ],
  3346. "support": {
  3347. "docs": "https://hyperf.wiki",
  3348. "issues": "https://github.com/hyperf/hyperf/issues",
  3349. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3350. "source": "https://github.com/hyperf/hyperf"
  3351. },
  3352. "funding": [
  3353. {
  3354. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3355. "type": "custom"
  3356. },
  3357. {
  3358. "url": "https://opencollective.com/hyperf",
  3359. "type": "open_collective"
  3360. }
  3361. ],
  3362. "time": "2024-09-25T02:54:12+00:00"
  3363. },
  3364. {
  3365. "name": "hyperf/model-listener",
  3366. "version": "v3.1.42",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://github.com/hyperf/model-listener.git",
  3370. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3375. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3376. "shasum": ""
  3377. },
  3378. "require": {
  3379. "hyperf/contract": "~3.1.0",
  3380. "hyperf/database": "~3.1.0",
  3381. "hyperf/di": "~3.1.0",
  3382. "hyperf/event": "~3.1.0",
  3383. "hyperf/support": "~3.1.0",
  3384. "hyperf/utils": "~3.1.0",
  3385. "php": ">=8.1",
  3386. "psr/container": "^1.0 || ^2.0"
  3387. },
  3388. "type": "library",
  3389. "extra": {
  3390. "branch-alias": {
  3391. "dev-master": "3.1-dev"
  3392. },
  3393. "hyperf": {
  3394. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3395. }
  3396. },
  3397. "autoload": {
  3398. "psr-4": {
  3399. "Hyperf\\ModelListener\\": "src/"
  3400. }
  3401. },
  3402. "notification-url": "https://packagist.org/downloads/",
  3403. "license": [
  3404. "MIT"
  3405. ],
  3406. "description": "A model listener for Hyperf.",
  3407. "homepage": "https://hyperf.io",
  3408. "keywords": [
  3409. "hyperf",
  3410. "model-listener",
  3411. "php",
  3412. "swoole"
  3413. ],
  3414. "support": {
  3415. "docs": "https://hyperf.wiki",
  3416. "issues": "https://github.com/hyperf/hyperf/issues",
  3417. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3418. "source": "https://github.com/hyperf/hyperf"
  3419. },
  3420. "funding": [
  3421. {
  3422. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3423. "type": "custom"
  3424. },
  3425. {
  3426. "url": "https://opencollective.com/hyperf",
  3427. "type": "open_collective"
  3428. }
  3429. ],
  3430. "time": "2024-09-25T02:54:12+00:00"
  3431. },
  3432. {
  3433. "name": "hyperf/nacos",
  3434. "version": "v3.1.42",
  3435. "source": {
  3436. "type": "git",
  3437. "url": "https://github.com/hyperf/nacos.git",
  3438. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3439. },
  3440. "dist": {
  3441. "type": "zip",
  3442. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3443. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3444. "shasum": ""
  3445. },
  3446. "require": {
  3447. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3448. "hyperf/codec": "~3.1.0",
  3449. "hyperf/contract": "~3.1.0",
  3450. "hyperf/support": "~3.1.0",
  3451. "hyperf/utils": "~3.1.0",
  3452. "jetbrains/phpstorm-attributes": "^1.0",
  3453. "php": ">=8.1"
  3454. },
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-master": "3.1-dev"
  3459. },
  3460. "hyperf": {
  3461. "config": "Hyperf\\Nacos\\ConfigProvider"
  3462. }
  3463. },
  3464. "autoload": {
  3465. "psr-4": {
  3466. "Hyperf\\Nacos\\": "src/"
  3467. }
  3468. },
  3469. "notification-url": "https://packagist.org/downloads/",
  3470. "license": [
  3471. "MIT"
  3472. ],
  3473. "description": "Nacos SDK",
  3474. "keywords": [
  3475. "hyperf",
  3476. "nacos",
  3477. "php"
  3478. ],
  3479. "support": {
  3480. "issues": "https://github.com/hyperf/nacos/issues",
  3481. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3482. },
  3483. "funding": [
  3484. {
  3485. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3486. "type": "custom"
  3487. },
  3488. {
  3489. "url": "https://opencollective.com/hyperf",
  3490. "type": "open_collective"
  3491. }
  3492. ],
  3493. "time": "2024-09-25T02:54:12+00:00"
  3494. },
  3495. {
  3496. "name": "hyperf/pipeline",
  3497. "version": "v3.1.42",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/hyperf/pipeline.git",
  3501. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3506. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=8.1",
  3511. "psr/container": "^1.0 || ^2.0"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "3.1-dev"
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Hyperf\\Pipeline\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3529. "homepage": "https://hyperf.io",
  3530. "keywords": [
  3531. "hyperf",
  3532. "php",
  3533. "pipeline",
  3534. "swoole"
  3535. ],
  3536. "support": {
  3537. "docs": "https://hyperf.wiki",
  3538. "issues": "https://github.com/hyperf/hyperf/issues",
  3539. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3540. "source": "https://github.com/hyperf/hyperf"
  3541. },
  3542. "funding": [
  3543. {
  3544. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3545. "type": "custom"
  3546. },
  3547. {
  3548. "url": "https://opencollective.com/hyperf",
  3549. "type": "open_collective"
  3550. }
  3551. ],
  3552. "time": "2024-09-25T02:54:12+00:00"
  3553. },
  3554. {
  3555. "name": "hyperf/pool",
  3556. "version": "v3.1.42",
  3557. "source": {
  3558. "type": "git",
  3559. "url": "https://github.com/hyperf/pool.git",
  3560. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3561. },
  3562. "dist": {
  3563. "type": "zip",
  3564. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3565. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3566. "shasum": ""
  3567. },
  3568. "require": {
  3569. "hyperf/contract": "~3.1.0",
  3570. "hyperf/support": "~3.1.0",
  3571. "hyperf/utils": "~3.1.0",
  3572. "php": ">=8.1",
  3573. "psr/container": "^1.0 || ^2.0"
  3574. },
  3575. "suggest": {
  3576. "psr/event-dispatcher": "Required to use events."
  3577. },
  3578. "type": "library",
  3579. "extra": {
  3580. "branch-alias": {
  3581. "dev-master": "3.1-dev"
  3582. },
  3583. "hyperf": {
  3584. "config": "Hyperf\\Pool\\ConfigProvider"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Hyperf\\Pool\\": "src/"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "description": "An independent universal connection pool component.",
  3597. "homepage": "https://hyperf.io",
  3598. "keywords": [
  3599. "connection-pool",
  3600. "hyperf",
  3601. "php",
  3602. "swoole"
  3603. ],
  3604. "support": {
  3605. "docs": "https://hyperf.wiki",
  3606. "issues": "https://github.com/hyperf/hyperf/issues",
  3607. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3608. "source": "https://github.com/hyperf/hyperf"
  3609. },
  3610. "funding": [
  3611. {
  3612. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3613. "type": "custom"
  3614. },
  3615. {
  3616. "url": "https://opencollective.com/hyperf",
  3617. "type": "open_collective"
  3618. }
  3619. ],
  3620. "time": "2024-09-25T02:54:12+00:00"
  3621. },
  3622. {
  3623. "name": "hyperf/process",
  3624. "version": "v3.1.48",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/hyperf/process.git",
  3628. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3633. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3634. "shasum": ""
  3635. },
  3636. "require": {
  3637. "hyperf/contract": "~3.1.0",
  3638. "hyperf/support": "~3.1.0",
  3639. "hyperf/utils": "~3.1.0",
  3640. "php": ">=8.1",
  3641. "psr/container": "^1.0 || ^2.0",
  3642. "psr/event-dispatcher": "^1.0"
  3643. },
  3644. "suggest": {
  3645. "hyperf/di": "Required to use annotations.",
  3646. "hyperf/event": "Required to dump the message before and after process.",
  3647. "hyperf/framework": "Required to use BootProcessListener."
  3648. },
  3649. "type": "library",
  3650. "extra": {
  3651. "hyperf": {
  3652. "config": "Hyperf\\Process\\ConfigProvider"
  3653. },
  3654. "branch-alias": {
  3655. "dev-master": "3.1-dev"
  3656. }
  3657. },
  3658. "autoload": {
  3659. "psr-4": {
  3660. "Hyperf\\Process\\": "src/"
  3661. }
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "description": "A process component for hyperf.",
  3668. "homepage": "https://hyperf.io",
  3669. "keywords": [
  3670. "hyperf",
  3671. "php",
  3672. "process"
  3673. ],
  3674. "support": {
  3675. "docs": "https://hyperf.wiki",
  3676. "issues": "https://github.com/hyperf/hyperf/issues",
  3677. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3678. "source": "https://github.com/hyperf/hyperf"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://opencollective.com/hyperf",
  3687. "type": "open_collective"
  3688. }
  3689. ],
  3690. "time": "2024-12-02T10:54:30+00:00"
  3691. },
  3692. {
  3693. "name": "hyperf/redis",
  3694. "version": "v3.1.42",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/hyperf/redis.git",
  3698. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3703. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3704. "shasum": ""
  3705. },
  3706. "require": {
  3707. "ext-redis": "^5.0 || ^6.0",
  3708. "hyperf/contract": "~3.1.0",
  3709. "hyperf/pool": "~3.1.0",
  3710. "hyperf/support": "~3.1.0",
  3711. "hyperf/tappable": "~3.1.0",
  3712. "hyperf/utils": "~3.1.0",
  3713. "php": ">=8.1",
  3714. "psr/container": "^1.0 || ^2.0"
  3715. },
  3716. "suggest": {
  3717. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3718. "hyperf/di": "Create the RedisPool via dependency injection."
  3719. },
  3720. "type": "library",
  3721. "extra": {
  3722. "branch-alias": {
  3723. "dev-master": "3.1-dev"
  3724. },
  3725. "hyperf": {
  3726. "config": "Hyperf\\Redis\\ConfigProvider"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Hyperf\\Redis\\": "src/"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "description": "A redis component for hyperf.",
  3739. "homepage": "https://hyperf.io",
  3740. "keywords": [
  3741. "hyperf",
  3742. "php",
  3743. "pool",
  3744. "redis"
  3745. ],
  3746. "support": {
  3747. "docs": "https://hyperf.wiki",
  3748. "issues": "https://github.com/hyperf/hyperf/issues",
  3749. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3750. "source": "https://github.com/hyperf/hyperf"
  3751. },
  3752. "funding": [
  3753. {
  3754. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3755. "type": "custom"
  3756. },
  3757. {
  3758. "url": "https://opencollective.com/hyperf",
  3759. "type": "open_collective"
  3760. }
  3761. ],
  3762. "time": "2024-09-25T02:54:12+00:00"
  3763. },
  3764. {
  3765. "name": "hyperf/rpc",
  3766. "version": "v3.1.42",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/hyperf/rpc.git",
  3770. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3775. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "hyperf/codec": "~3.1.0",
  3780. "hyperf/contract": "~3.1.0",
  3781. "hyperf/support": "~3.1.0",
  3782. "jetbrains/phpstorm-attributes": "^1.0",
  3783. "php": ">=8.1"
  3784. },
  3785. "type": "library",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-master": "3.1-dev"
  3789. },
  3790. "hyperf": []
  3791. },
  3792. "autoload": {
  3793. "psr-4": {
  3794. "Hyperf\\Rpc\\": "src/"
  3795. }
  3796. },
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "MIT"
  3800. ],
  3801. "description": "A rpc basic library for Hyperf.",
  3802. "homepage": "https://hyperf.io",
  3803. "keywords": [
  3804. "hyperf",
  3805. "php",
  3806. "rpc",
  3807. "swoole"
  3808. ],
  3809. "support": {
  3810. "docs": "https://hyperf.wiki",
  3811. "issues": "https://github.com/hyperf/hyperf/issues",
  3812. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3813. "source": "https://github.com/hyperf/hyperf"
  3814. },
  3815. "funding": [
  3816. {
  3817. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3818. "type": "custom"
  3819. },
  3820. {
  3821. "url": "https://opencollective.com/hyperf",
  3822. "type": "open_collective"
  3823. }
  3824. ],
  3825. "time": "2024-09-25T02:54:12+00:00"
  3826. },
  3827. {
  3828. "name": "hyperf/rpc-client",
  3829. "version": "v3.1.42",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/hyperf/rpc-client.git",
  3833. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3838. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "hyperf/code-parser": "~3.1.0",
  3843. "hyperf/load-balancer": "~3.1.0",
  3844. "hyperf/rpc": "~3.1.0",
  3845. "hyperf/support": "~3.1.0",
  3846. "hyperf/utils": "~3.1.0",
  3847. "jetbrains/phpstorm-attributes": "^1.0",
  3848. "php": ">=8.1",
  3849. "psr/container": "^1.0 || ^2.0"
  3850. },
  3851. "suggest": {
  3852. "hyperf/di": "For better container experience.",
  3853. "hyperf/pool": "Required to use connection pool.",
  3854. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3855. },
  3856. "type": "library",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-master": "3.1-dev"
  3860. },
  3861. "hyperf": {
  3862. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "Hyperf\\RpcClient\\": "src/"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "description": "An abstract rpc server component for Hyperf.",
  3875. "homepage": "https://hyperf.io",
  3876. "keywords": [
  3877. "hyperf",
  3878. "json-rpc",
  3879. "php",
  3880. "rpc",
  3881. "rpc-client",
  3882. "swoole"
  3883. ],
  3884. "support": {
  3885. "docs": "https://hyperf.wiki",
  3886. "issues": "https://github.com/hyperf/hyperf/issues",
  3887. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3888. "source": "https://github.com/hyperf/hyperf"
  3889. },
  3890. "funding": [
  3891. {
  3892. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3893. "type": "custom"
  3894. },
  3895. {
  3896. "url": "https://opencollective.com/hyperf",
  3897. "type": "open_collective"
  3898. }
  3899. ],
  3900. "time": "2024-09-25T02:54:12+00:00"
  3901. },
  3902. {
  3903. "name": "hyperf/rpc-server",
  3904. "version": "v3.1.42",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://github.com/hyperf/rpc-server.git",
  3908. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3913. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3914. "shasum": ""
  3915. },
  3916. "require": {
  3917. "hyperf/http-server": "~3.1.0",
  3918. "hyperf/rpc": "~3.1.0",
  3919. "php": ">=8.1"
  3920. },
  3921. "suggest": {
  3922. "hyperf/di": "Required to use annotations."
  3923. },
  3924. "type": "library",
  3925. "extra": {
  3926. "branch-alias": {
  3927. "dev-master": "3.1-dev"
  3928. },
  3929. "hyperf": {
  3930. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3931. }
  3932. },
  3933. "autoload": {
  3934. "psr-4": {
  3935. "Hyperf\\RpcServer\\": "src/"
  3936. }
  3937. },
  3938. "notification-url": "https://packagist.org/downloads/",
  3939. "license": [
  3940. "MIT"
  3941. ],
  3942. "description": "An abstract rpc server component for Hyperf.",
  3943. "homepage": "https://hyperf.io",
  3944. "keywords": [
  3945. "hyperf",
  3946. "php",
  3947. "rpc",
  3948. "rpc-server",
  3949. "swoole"
  3950. ],
  3951. "support": {
  3952. "docs": "https://hyperf.wiki",
  3953. "issues": "https://github.com/hyperf/hyperf/issues",
  3954. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3955. "source": "https://github.com/hyperf/hyperf"
  3956. },
  3957. "funding": [
  3958. {
  3959. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3960. "type": "custom"
  3961. },
  3962. {
  3963. "url": "https://opencollective.com/hyperf",
  3964. "type": "open_collective"
  3965. }
  3966. ],
  3967. "time": "2024-09-25T02:54:12+00:00"
  3968. },
  3969. {
  3970. "name": "hyperf/serializer",
  3971. "version": "v3.1.42",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/hyperf/serializer.git",
  3975. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3980. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "hyperf/contract": "~3.1.0",
  3985. "php": ">=8.1"
  3986. },
  3987. "suggest": {
  3988. "hyperf/di": "Required to use ExceptionNormalizer",
  3989. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3990. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3991. },
  3992. "type": "library",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-master": "3.1-dev"
  3996. },
  3997. "hyperf": {
  3998. "config": "Hyperf\\Serializer\\ConfigProvider"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "psr-4": {
  4003. "Hyperf\\Serializer\\": "src/"
  4004. }
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "MIT"
  4009. ],
  4010. "description": "A serializer component for Hyperf.",
  4011. "homepage": "https://hyperf.io",
  4012. "keywords": [
  4013. "hyperf",
  4014. "php",
  4015. "swoole",
  4016. "tappable"
  4017. ],
  4018. "support": {
  4019. "docs": "https://hyperf.wiki",
  4020. "issues": "https://github.com/hyperf/hyperf/issues",
  4021. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4022. "source": "https://github.com/hyperf/hyperf"
  4023. },
  4024. "funding": [
  4025. {
  4026. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4027. "type": "custom"
  4028. },
  4029. {
  4030. "url": "https://opencollective.com/hyperf",
  4031. "type": "open_collective"
  4032. }
  4033. ],
  4034. "time": "2024-09-25T02:54:12+00:00"
  4035. },
  4036. {
  4037. "name": "hyperf/server",
  4038. "version": "v3.1.42",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/hyperf/server.git",
  4042. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4047. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "hyperf/contract": "~3.1.0",
  4052. "hyperf/coordinator": "~3.1.0",
  4053. "hyperf/engine": "^2.8",
  4054. "hyperf/support": "~3.1.0",
  4055. "hyperf/tappable": "~3.1.0",
  4056. "php": ">=8.1",
  4057. "psr/container": "^1.0 || ^2.0",
  4058. "psr/event-dispatcher": "^1.0",
  4059. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4060. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4061. },
  4062. "suggest": {
  4063. "hyperf/event": "Dump the info after server start.",
  4064. "hyperf/framework": "Dump the info after server start."
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "branch-alias": {
  4069. "dev-master": "3.1-dev"
  4070. },
  4071. "hyperf": {
  4072. "config": "Hyperf\\Server\\ConfigProvider"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "psr-4": {
  4077. "Hyperf\\Server\\": "src/"
  4078. }
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "MIT"
  4083. ],
  4084. "description": "A base server library for Hyperf.",
  4085. "homepage": "https://hyperf.io",
  4086. "keywords": [
  4087. "hyperf",
  4088. "php",
  4089. "server",
  4090. "swoole"
  4091. ],
  4092. "support": {
  4093. "docs": "https://hyperf.wiki",
  4094. "issues": "https://github.com/hyperf/hyperf/issues",
  4095. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4096. "source": "https://github.com/hyperf/hyperf"
  4097. },
  4098. "funding": [
  4099. {
  4100. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4101. "type": "custom"
  4102. },
  4103. {
  4104. "url": "https://opencollective.com/hyperf",
  4105. "type": "open_collective"
  4106. }
  4107. ],
  4108. "time": "2024-09-25T02:54:12+00:00"
  4109. },
  4110. {
  4111. "name": "hyperf/service-governance",
  4112. "version": "v3.1.42",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://github.com/hyperf/service-governance.git",
  4116. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4121. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4122. "shasum": ""
  4123. },
  4124. "require": {
  4125. "hyperf/contract": "~3.1.0",
  4126. "hyperf/support": "~3.1.0",
  4127. "jetbrains/phpstorm-attributes": "^1.0",
  4128. "php": ">=8.1"
  4129. },
  4130. "suggest": {
  4131. "hyperf/event": "Required to use RegisterServiceListener.",
  4132. "hyperf/framework": "Required to use RegisterServiceListener.",
  4133. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4134. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-master": "3.1-dev"
  4140. },
  4141. "hyperf": {
  4142. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "Hyperf\\ServiceGovernance\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "description": "A service governance component for Hyperf.",
  4155. "homepage": "https://hyperf.io",
  4156. "keywords": [
  4157. "hyperf",
  4158. "php",
  4159. "service-governance",
  4160. "swoole"
  4161. ],
  4162. "support": {
  4163. "docs": "https://hyperf.wiki",
  4164. "issues": "https://github.com/hyperf/hyperf/issues",
  4165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4166. "source": "https://github.com/hyperf/hyperf"
  4167. },
  4168. "funding": [
  4169. {
  4170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4171. "type": "custom"
  4172. },
  4173. {
  4174. "url": "https://opencollective.com/hyperf",
  4175. "type": "open_collective"
  4176. }
  4177. ],
  4178. "time": "2024-09-25T02:54:12+00:00"
  4179. },
  4180. {
  4181. "name": "hyperf/service-governance-consul",
  4182. "version": "v3.1.42",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/hyperf/service-governance-consul.git",
  4186. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4191. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "hyperf/consul": "~3.1.0",
  4196. "hyperf/contract": "~3.1.0",
  4197. "hyperf/service-governance": "~3.1.0",
  4198. "hyperf/support": "~3.1.0",
  4199. "hyperf/utils": "~3.1.0",
  4200. "php": ">=8.1"
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "3.1-dev"
  4206. },
  4207. "hyperf": {
  4208. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4209. }
  4210. },
  4211. "autoload": {
  4212. "psr-4": {
  4213. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4214. }
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "description": "A consul adapter for service governance.",
  4221. "homepage": "https://hyperf.io",
  4222. "keywords": [
  4223. "consul-adapter",
  4224. "hyperf",
  4225. "php",
  4226. "service-governance",
  4227. "swoole"
  4228. ],
  4229. "support": {
  4230. "docs": "https://hyperf.wiki",
  4231. "issues": "https://github.com/hyperf/hyperf/issues",
  4232. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4233. "source": "https://github.com/hyperf/hyperf"
  4234. },
  4235. "funding": [
  4236. {
  4237. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4238. "type": "custom"
  4239. },
  4240. {
  4241. "url": "https://opencollective.com/hyperf",
  4242. "type": "open_collective"
  4243. }
  4244. ],
  4245. "time": "2024-09-25T02:54:12+00:00"
  4246. },
  4247. {
  4248. "name": "hyperf/service-governance-nacos",
  4249. "version": "v3.1.42",
  4250. "source": {
  4251. "type": "git",
  4252. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4253. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4254. },
  4255. "dist": {
  4256. "type": "zip",
  4257. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4258. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4259. "shasum": ""
  4260. },
  4261. "require": {
  4262. "hyperf/codec": "~3.1.0",
  4263. "hyperf/contract": "~3.1.0",
  4264. "hyperf/nacos": "~3.1.0",
  4265. "hyperf/service-governance": "~3.1.0",
  4266. "hyperf/support": "~3.1.0",
  4267. "hyperf/utils": "~3.1.0",
  4268. "php": ">=8.1"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-master": "3.1-dev"
  4274. },
  4275. "hyperf": {
  4276. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4277. }
  4278. },
  4279. "autoload": {
  4280. "psr-4": {
  4281. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "description": "A nacos adapter for service governance.",
  4289. "homepage": "https://hyperf.io",
  4290. "keywords": [
  4291. "hyperf",
  4292. "nacos-adapter",
  4293. "php",
  4294. "service-governance",
  4295. "swoole"
  4296. ],
  4297. "support": {
  4298. "docs": "https://hyperf.wiki",
  4299. "issues": "https://github.com/hyperf/hyperf/issues",
  4300. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4301. "source": "https://github.com/hyperf/hyperf"
  4302. },
  4303. "funding": [
  4304. {
  4305. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4306. "type": "custom"
  4307. },
  4308. {
  4309. "url": "https://opencollective.com/hyperf",
  4310. "type": "open_collective"
  4311. }
  4312. ],
  4313. "time": "2024-09-25T02:54:12+00:00"
  4314. },
  4315. {
  4316. "name": "hyperf/snowflake",
  4317. "version": "v3.1.42",
  4318. "source": {
  4319. "type": "git",
  4320. "url": "https://github.com/hyperf/snowflake.git",
  4321. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4322. },
  4323. "dist": {
  4324. "type": "zip",
  4325. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4326. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4327. "shasum": ""
  4328. },
  4329. "require": {
  4330. "hyperf/contract": "~3.1.0",
  4331. "php": ">=8.1"
  4332. },
  4333. "suggest": {
  4334. "hyperf/config": "Required to read snowflake config.",
  4335. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4336. "psr/container": "Required to use MetaGeneratorFactory."
  4337. },
  4338. "type": "library",
  4339. "extra": {
  4340. "branch-alias": {
  4341. "dev-master": "3.1-dev"
  4342. },
  4343. "hyperf": {
  4344. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4345. }
  4346. },
  4347. "autoload": {
  4348. "psr-4": {
  4349. "Hyperf\\Snowflake\\": "src/"
  4350. }
  4351. },
  4352. "notification-url": "https://packagist.org/downloads/",
  4353. "license": [
  4354. "MIT"
  4355. ],
  4356. "description": "A snowflake library",
  4357. "homepage": "https://hyperf.io",
  4358. "keywords": [
  4359. "php",
  4360. "snowflake"
  4361. ],
  4362. "support": {
  4363. "docs": "https://hyperf.wiki",
  4364. "issues": "https://github.com/hyperf/hyperf/issues",
  4365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4366. "source": "https://github.com/hyperf/hyperf"
  4367. },
  4368. "funding": [
  4369. {
  4370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4371. "type": "custom"
  4372. },
  4373. {
  4374. "url": "https://opencollective.com/hyperf",
  4375. "type": "open_collective"
  4376. }
  4377. ],
  4378. "time": "2024-09-25T02:54:12+00:00"
  4379. },
  4380. {
  4381. "name": "hyperf/stdlib",
  4382. "version": "v3.1.42",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/hyperf/stdlib.git",
  4386. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4391. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "php": ">=8.1"
  4396. },
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-master": "3.1-dev"
  4401. }
  4402. },
  4403. "autoload": {
  4404. "psr-4": {
  4405. "Hyperf\\Stdlib\\": "src/"
  4406. }
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "MIT"
  4411. ],
  4412. "description": "A stdlib component for Hyperf.",
  4413. "homepage": "https://hyperf.io",
  4414. "keywords": [
  4415. "hyperf",
  4416. "php",
  4417. "stdlib",
  4418. "swoole"
  4419. ],
  4420. "support": {
  4421. "docs": "https://hyperf.wiki",
  4422. "issues": "https://github.com/hyperf/hyperf/issues",
  4423. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4424. "source": "https://github.com/hyperf/hyperf"
  4425. },
  4426. "funding": [
  4427. {
  4428. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4429. "type": "custom"
  4430. },
  4431. {
  4432. "url": "https://opencollective.com/hyperf",
  4433. "type": "open_collective"
  4434. }
  4435. ],
  4436. "time": "2024-09-25T02:54:12+00:00"
  4437. },
  4438. {
  4439. "name": "hyperf/stringable",
  4440. "version": "v3.1.43",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/hyperf/stringable.git",
  4444. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4449. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "ext-mbstring": "*",
  4454. "hyperf/collection": "~3.1.0",
  4455. "hyperf/conditionable": "~3.1.0",
  4456. "hyperf/macroable": "~3.1.0",
  4457. "hyperf/tappable": "~3.1.0",
  4458. "php": ">=8.1"
  4459. },
  4460. "suggest": {
  4461. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4462. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4463. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4464. },
  4465. "type": "library",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-master": "3.1-dev"
  4469. }
  4470. },
  4471. "autoload": {
  4472. "files": [
  4473. "src/Functions.php"
  4474. ],
  4475. "psr-4": {
  4476. "Hyperf\\Stringable\\": "src/"
  4477. }
  4478. },
  4479. "notification-url": "https://packagist.org/downloads/",
  4480. "license": [
  4481. "MIT"
  4482. ],
  4483. "description": "Hyperf Stringable package which come from illuminate/support",
  4484. "homepage": "https://hyperf.io",
  4485. "keywords": [
  4486. "hyperf",
  4487. "php",
  4488. "stringable",
  4489. "swoole"
  4490. ],
  4491. "support": {
  4492. "docs": "https://hyperf.wiki",
  4493. "issues": "https://github.com/hyperf/hyperf/issues",
  4494. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4495. "source": "https://github.com/hyperf/hyperf"
  4496. },
  4497. "funding": [
  4498. {
  4499. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4500. "type": "custom"
  4501. },
  4502. {
  4503. "url": "https://opencollective.com/hyperf",
  4504. "type": "open_collective"
  4505. }
  4506. ],
  4507. "time": "2024-10-09T02:28:40+00:00"
  4508. },
  4509. {
  4510. "name": "hyperf/support",
  4511. "version": "v3.1.47",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/hyperf/support.git",
  4515. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4520. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "hyperf/collection": "~3.1.0",
  4525. "hyperf/context": "~3.1.0",
  4526. "hyperf/contract": "~3.1.0",
  4527. "hyperf/coroutine": "~3.1.0",
  4528. "hyperf/macroable": "~3.1.0",
  4529. "hyperf/stringable": "~3.1.0",
  4530. "php": ">=8.1"
  4531. },
  4532. "suggest": {
  4533. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4534. },
  4535. "type": "library",
  4536. "extra": {
  4537. "branch-alias": {
  4538. "dev-master": "3.1-dev"
  4539. }
  4540. },
  4541. "autoload": {
  4542. "files": [
  4543. "src/Functions.php"
  4544. ],
  4545. "psr-4": {
  4546. "Hyperf\\Support\\": "src/"
  4547. }
  4548. },
  4549. "notification-url": "https://packagist.org/downloads/",
  4550. "license": [
  4551. "MIT"
  4552. ],
  4553. "description": "A support component for Hyperf.",
  4554. "homepage": "https://hyperf.io",
  4555. "keywords": [
  4556. "hyperf",
  4557. "php",
  4558. "support",
  4559. "swoole"
  4560. ],
  4561. "support": {
  4562. "docs": "https://hyperf.wiki",
  4563. "issues": "https://github.com/hyperf/hyperf/issues",
  4564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4565. "source": "https://github.com/hyperf/hyperf"
  4566. },
  4567. "funding": [
  4568. {
  4569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4570. "type": "custom"
  4571. },
  4572. {
  4573. "url": "https://opencollective.com/hyperf",
  4574. "type": "open_collective"
  4575. }
  4576. ],
  4577. "time": "2024-11-28T01:51:55+00:00"
  4578. },
  4579. {
  4580. "name": "hyperf/tappable",
  4581. "version": "v3.1.42",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/hyperf/tappable.git",
  4585. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4590. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "php": ">=8.1"
  4595. },
  4596. "type": "library",
  4597. "extra": {
  4598. "branch-alias": {
  4599. "dev-master": "3.1-dev"
  4600. }
  4601. },
  4602. "autoload": {
  4603. "files": [
  4604. "src/Functions.php"
  4605. ],
  4606. "psr-4": {
  4607. "Hyperf\\Tappable\\": "src/"
  4608. }
  4609. },
  4610. "notification-url": "https://packagist.org/downloads/",
  4611. "license": [
  4612. "MIT"
  4613. ],
  4614. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4615. "homepage": "https://hyperf.io",
  4616. "keywords": [
  4617. "hyperf",
  4618. "php",
  4619. "swoole",
  4620. "tappable"
  4621. ],
  4622. "support": {
  4623. "docs": "https://hyperf.wiki",
  4624. "issues": "https://github.com/hyperf/hyperf/issues",
  4625. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4626. "source": "https://github.com/hyperf/hyperf"
  4627. },
  4628. "funding": [
  4629. {
  4630. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4631. "type": "custom"
  4632. },
  4633. {
  4634. "url": "https://opencollective.com/hyperf",
  4635. "type": "open_collective"
  4636. }
  4637. ],
  4638. "time": "2024-09-25T02:54:12+00:00"
  4639. },
  4640. {
  4641. "name": "hyperf/translation",
  4642. "version": "v3.1.42",
  4643. "source": {
  4644. "type": "git",
  4645. "url": "https://github.com/hyperf/translation.git",
  4646. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4647. },
  4648. "dist": {
  4649. "type": "zip",
  4650. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4651. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4652. "shasum": ""
  4653. },
  4654. "require": {
  4655. "hyperf/contract": "~3.1.0",
  4656. "hyperf/macroable": "~3.1.0",
  4657. "hyperf/support": "~3.1.0",
  4658. "hyperf/utils": "~3.1.0",
  4659. "php": ">=8.1",
  4660. "psr/container": "^1.0 || ^2.0"
  4661. },
  4662. "type": "library",
  4663. "extra": {
  4664. "branch-alias": {
  4665. "dev-master": "3.1-dev"
  4666. },
  4667. "hyperf": {
  4668. "config": "Hyperf\\Translation\\ConfigProvider"
  4669. }
  4670. },
  4671. "autoload": {
  4672. "files": [
  4673. "src/Functions.php"
  4674. ],
  4675. "psr-4": {
  4676. "Hyperf\\Translation\\": "src/"
  4677. }
  4678. },
  4679. "notification-url": "https://packagist.org/downloads/",
  4680. "license": [
  4681. "MIT"
  4682. ],
  4683. "description": "An independent translation component, forked by illuminate/translation.",
  4684. "keywords": [
  4685. "hyperf",
  4686. "translation"
  4687. ],
  4688. "support": {
  4689. "issues": "https://github.com/hyperf/translation/issues",
  4690. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4691. },
  4692. "funding": [
  4693. {
  4694. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4695. "type": "custom"
  4696. },
  4697. {
  4698. "url": "https://opencollective.com/hyperf",
  4699. "type": "open_collective"
  4700. }
  4701. ],
  4702. "time": "2024-09-25T02:54:12+00:00"
  4703. },
  4704. {
  4705. "name": "hyperf/utils",
  4706. "version": "v3.1.42",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/hyperf/utils.git",
  4710. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4715. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4716. "shasum": ""
  4717. },
  4718. "require": {
  4719. "doctrine/inflector": "^2.0",
  4720. "hyperf/code-parser": "~3.1.0",
  4721. "hyperf/codec": "~3.1.0",
  4722. "hyperf/collection": "~3.1.0",
  4723. "hyperf/context": "~3.1.0",
  4724. "hyperf/contract": "~3.1.0",
  4725. "hyperf/coordinator": "~3.1.0",
  4726. "hyperf/coroutine": "~3.1.0",
  4727. "hyperf/engine": "^2.0",
  4728. "hyperf/macroable": "~3.1.0",
  4729. "hyperf/serializer": "~3.1.0",
  4730. "hyperf/stringable": "~3.1.0",
  4731. "hyperf/support": "~3.1.0",
  4732. "php": ">=8.1"
  4733. },
  4734. "type": "library",
  4735. "extra": {
  4736. "branch-alias": {
  4737. "dev-master": "3.1-dev"
  4738. }
  4739. },
  4740. "notification-url": "https://packagist.org/downloads/",
  4741. "license": [
  4742. "MIT"
  4743. ],
  4744. "description": "A tools package that could help developer solved the problem quickly.",
  4745. "homepage": "https://hyperf.io",
  4746. "keywords": [
  4747. "hyperf",
  4748. "php",
  4749. "swoole",
  4750. "utils"
  4751. ],
  4752. "support": {
  4753. "docs": "https://hyperf.wiki",
  4754. "issues": "https://github.com/hyperf/hyperf/issues",
  4755. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4756. "source": "https://github.com/hyperf/hyperf"
  4757. },
  4758. "funding": [
  4759. {
  4760. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4761. "type": "custom"
  4762. },
  4763. {
  4764. "url": "https://opencollective.com/hyperf",
  4765. "type": "open_collective"
  4766. }
  4767. ],
  4768. "time": "2024-09-25T02:54:12+00:00"
  4769. },
  4770. {
  4771. "name": "hyperf/validation",
  4772. "version": "v3.1.47",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/hyperf/validation.git",
  4776. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4781. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "egulias/email-validator": "^3.0",
  4786. "hyperf/collection": "~3.1.0",
  4787. "hyperf/conditionable": "~3.1.0",
  4788. "hyperf/contract": "~3.1.0",
  4789. "hyperf/di": "~3.1.0",
  4790. "hyperf/framework": "~3.1.0",
  4791. "hyperf/macroable": "~3.1.0",
  4792. "hyperf/stringable": "~3.1.0",
  4793. "hyperf/support": "~3.1.0",
  4794. "hyperf/tappable": "~3.1.0",
  4795. "hyperf/translation": "~3.1.0",
  4796. "hyperf/utils": "~3.1.0",
  4797. "nesbot/carbon": "^2.21",
  4798. "php": ">=8.1",
  4799. "psr/container": "^1.0 || ^2.0",
  4800. "psr/event-dispatcher": "^1.0",
  4801. "psr/http-message": "^1.0 || ^2.0"
  4802. },
  4803. "suggest": {
  4804. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4805. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4806. },
  4807. "type": "library",
  4808. "extra": {
  4809. "hyperf": {
  4810. "config": "Hyperf\\Validation\\ConfigProvider"
  4811. },
  4812. "branch-alias": {
  4813. "dev-master": "3.1-dev"
  4814. }
  4815. },
  4816. "autoload": {
  4817. "psr-4": {
  4818. "Hyperf\\Validation\\": "src/"
  4819. }
  4820. },
  4821. "notification-url": "https://packagist.org/downloads/",
  4822. "license": [
  4823. "MIT"
  4824. ],
  4825. "description": "hyperf validation",
  4826. "keywords": [
  4827. "hyperf",
  4828. "validation"
  4829. ],
  4830. "support": {
  4831. "issues": "https://github.com/hyperf/validation/issues",
  4832. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  4833. },
  4834. "funding": [
  4835. {
  4836. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4837. "type": "custom"
  4838. },
  4839. {
  4840. "url": "https://opencollective.com/hyperf",
  4841. "type": "open_collective"
  4842. }
  4843. ],
  4844. "time": "2024-11-28T01:51:55+00:00"
  4845. },
  4846. {
  4847. "name": "hyperf/websocket-server",
  4848. "version": "v3.1.42",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/hyperf/websocket-server.git",
  4852. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4857. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4858. "shasum": ""
  4859. },
  4860. "require": {
  4861. "hyperf/collection": "~3.1.0",
  4862. "hyperf/contract": "~3.1.0",
  4863. "hyperf/exception-handler": "~3.1.0",
  4864. "hyperf/http-server": "~3.1.0",
  4865. "hyperf/support": "~3.1.0",
  4866. "hyperf/utils": "~3.1.0",
  4867. "php": ">=8.1",
  4868. "psr/container": "^1.0 || ^2.0",
  4869. "psr/event-dispatcher": "^1.0"
  4870. },
  4871. "type": "library",
  4872. "extra": {
  4873. "branch-alias": {
  4874. "dev-master": "3.1-dev"
  4875. },
  4876. "hyperf": {
  4877. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4878. }
  4879. },
  4880. "autoload": {
  4881. "psr-4": {
  4882. "Hyperf\\WebSocketServer\\": "src/"
  4883. }
  4884. },
  4885. "notification-url": "https://packagist.org/downloads/",
  4886. "license": [
  4887. "MIT"
  4888. ],
  4889. "description": "A websocket server library for Hyperf.",
  4890. "homepage": "https://hyperf.io",
  4891. "keywords": [
  4892. "hyperf",
  4893. "php",
  4894. "swoole",
  4895. "websocket"
  4896. ],
  4897. "support": {
  4898. "docs": "https://hyperf.wiki",
  4899. "issues": "https://github.com/hyperf/hyperf/issues",
  4900. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4901. "source": "https://github.com/hyperf/hyperf"
  4902. },
  4903. "funding": [
  4904. {
  4905. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4906. "type": "custom"
  4907. },
  4908. {
  4909. "url": "https://opencollective.com/hyperf",
  4910. "type": "open_collective"
  4911. }
  4912. ],
  4913. "time": "2024-09-25T02:54:12+00:00"
  4914. },
  4915. {
  4916. "name": "jetbrains/phpstorm-attributes",
  4917. "version": "1.2",
  4918. "source": {
  4919. "type": "git",
  4920. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4921. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4922. },
  4923. "dist": {
  4924. "type": "zip",
  4925. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4926. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4927. "shasum": ""
  4928. },
  4929. "type": "library",
  4930. "autoload": {
  4931. "psr-4": {
  4932. "JetBrains\\PhpStorm\\": "src/"
  4933. }
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "Apache-2.0"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "JetBrains",
  4942. "homepage": "https://www.jetbrains.com"
  4943. }
  4944. ],
  4945. "description": "PhpStorm specific attributes",
  4946. "keywords": [
  4947. "attributes",
  4948. "jetbrains",
  4949. "phpstorm"
  4950. ],
  4951. "support": {
  4952. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4953. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4954. },
  4955. "time": "2024-10-11T10:46:19+00:00"
  4956. },
  4957. {
  4958. "name": "laminas/laminas-mime",
  4959. "version": "2.12.0",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://github.com/laminas/laminas-mime.git",
  4963. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4964. },
  4965. "dist": {
  4966. "type": "zip",
  4967. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4968. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4969. "shasum": ""
  4970. },
  4971. "require": {
  4972. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4973. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4974. },
  4975. "conflict": {
  4976. "zendframework/zend-mime": "*"
  4977. },
  4978. "require-dev": {
  4979. "laminas/laminas-coding-standard": "~2.4.0",
  4980. "laminas/laminas-mail": "^2.19.0",
  4981. "phpunit/phpunit": "~9.5.25"
  4982. },
  4983. "suggest": {
  4984. "laminas/laminas-mail": "Laminas\\Mail component"
  4985. },
  4986. "type": "library",
  4987. "autoload": {
  4988. "psr-4": {
  4989. "Laminas\\Mime\\": "src/"
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "BSD-3-Clause"
  4995. ],
  4996. "description": "Create and parse MIME messages and parts",
  4997. "homepage": "https://laminas.dev",
  4998. "keywords": [
  4999. "laminas",
  5000. "mime"
  5001. ],
  5002. "support": {
  5003. "chat": "https://laminas.dev/chat",
  5004. "docs": "https://docs.laminas.dev/laminas-mime/",
  5005. "forum": "https://discourse.laminas.dev",
  5006. "issues": "https://github.com/laminas/laminas-mime/issues",
  5007. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5008. "source": "https://github.com/laminas/laminas-mime"
  5009. },
  5010. "funding": [
  5011. {
  5012. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5013. "type": "community_bridge"
  5014. }
  5015. ],
  5016. "abandoned": "symfony/mime",
  5017. "time": "2023-11-02T16:47:19+00:00"
  5018. },
  5019. {
  5020. "name": "laminas/laminas-stdlib",
  5021. "version": "3.20.0",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/laminas/laminas-stdlib.git",
  5025. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5030. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5031. "shasum": ""
  5032. },
  5033. "require": {
  5034. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5035. },
  5036. "conflict": {
  5037. "zendframework/zend-stdlib": "*"
  5038. },
  5039. "require-dev": {
  5040. "laminas/laminas-coding-standard": "^3.0",
  5041. "phpbench/phpbench": "^1.3.1",
  5042. "phpunit/phpunit": "^10.5.38",
  5043. "psalm/plugin-phpunit": "^0.19.0",
  5044. "vimeo/psalm": "^5.26.1"
  5045. },
  5046. "type": "library",
  5047. "autoload": {
  5048. "psr-4": {
  5049. "Laminas\\Stdlib\\": "src/"
  5050. }
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "BSD-3-Clause"
  5055. ],
  5056. "description": "SPL extensions, array utilities, error handlers, and more",
  5057. "homepage": "https://laminas.dev",
  5058. "keywords": [
  5059. "laminas",
  5060. "stdlib"
  5061. ],
  5062. "support": {
  5063. "chat": "https://laminas.dev/chat",
  5064. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5065. "forum": "https://discourse.laminas.dev",
  5066. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5067. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5068. "source": "https://github.com/laminas/laminas-stdlib"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5073. "type": "community_bridge"
  5074. }
  5075. ],
  5076. "time": "2024-10-29T13:46:07+00:00"
  5077. },
  5078. {
  5079. "name": "lcobucci/clock",
  5080. "version": "2.3.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/lcobucci/clock.git",
  5084. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5089. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": "~8.1.0 || ~8.2.0",
  5094. "stella-maris/clock": "^0.1.7"
  5095. },
  5096. "provide": {
  5097. "psr/clock-implementation": "1.0"
  5098. },
  5099. "require-dev": {
  5100. "infection/infection": "^0.26",
  5101. "lcobucci/coding-standard": "^9.0",
  5102. "phpstan/extension-installer": "^1.2",
  5103. "phpstan/phpstan": "^1.9.4",
  5104. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5105. "phpstan/phpstan-phpunit": "^1.3.2",
  5106. "phpstan/phpstan-strict-rules": "^1.4.4",
  5107. "phpunit/phpunit": "^9.5.27"
  5108. },
  5109. "type": "library",
  5110. "autoload": {
  5111. "psr-4": {
  5112. "Lcobucci\\Clock\\": "src"
  5113. }
  5114. },
  5115. "notification-url": "https://packagist.org/downloads/",
  5116. "license": [
  5117. "MIT"
  5118. ],
  5119. "authors": [
  5120. {
  5121. "name": "Luís Cobucci",
  5122. "email": "lcobucci@gmail.com"
  5123. }
  5124. ],
  5125. "description": "Yet another clock abstraction",
  5126. "support": {
  5127. "issues": "https://github.com/lcobucci/clock/issues",
  5128. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5129. },
  5130. "funding": [
  5131. {
  5132. "url": "https://github.com/lcobucci",
  5133. "type": "github"
  5134. },
  5135. {
  5136. "url": "https://www.patreon.com/lcobucci",
  5137. "type": "patreon"
  5138. }
  5139. ],
  5140. "time": "2022-12-19T14:38:11+00:00"
  5141. },
  5142. {
  5143. "name": "lcobucci/jwt",
  5144. "version": "4.1.5",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://github.com/lcobucci/jwt.git",
  5148. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5149. },
  5150. "dist": {
  5151. "type": "zip",
  5152. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5153. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5154. "shasum": ""
  5155. },
  5156. "require": {
  5157. "ext-hash": "*",
  5158. "ext-json": "*",
  5159. "ext-mbstring": "*",
  5160. "ext-openssl": "*",
  5161. "ext-sodium": "*",
  5162. "lcobucci/clock": "^2.0",
  5163. "php": "^7.4 || ^8.0"
  5164. },
  5165. "require-dev": {
  5166. "infection/infection": "^0.21",
  5167. "lcobucci/coding-standard": "^6.0",
  5168. "mikey179/vfsstream": "^1.6.7",
  5169. "phpbench/phpbench": "^1.0",
  5170. "phpstan/extension-installer": "^1.0",
  5171. "phpstan/phpstan": "^0.12",
  5172. "phpstan/phpstan-deprecation-rules": "^0.12",
  5173. "phpstan/phpstan-phpunit": "^0.12",
  5174. "phpstan/phpstan-strict-rules": "^0.12",
  5175. "phpunit/php-invoker": "^3.1",
  5176. "phpunit/phpunit": "^9.5"
  5177. },
  5178. "type": "library",
  5179. "autoload": {
  5180. "psr-4": {
  5181. "Lcobucci\\JWT\\": "src"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "BSD-3-Clause"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Luís Cobucci",
  5191. "email": "lcobucci@gmail.com",
  5192. "role": "Developer"
  5193. }
  5194. ],
  5195. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5196. "keywords": [
  5197. "JWS",
  5198. "jwt"
  5199. ],
  5200. "support": {
  5201. "issues": "https://github.com/lcobucci/jwt/issues",
  5202. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5203. },
  5204. "funding": [
  5205. {
  5206. "url": "https://github.com/lcobucci",
  5207. "type": "github"
  5208. },
  5209. {
  5210. "url": "https://www.patreon.com/lcobucci",
  5211. "type": "patreon"
  5212. }
  5213. ],
  5214. "time": "2021-09-28T19:34:56+00:00"
  5215. },
  5216. {
  5217. "name": "markrogoyski/math-php",
  5218. "version": "v2.10.0",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/markrogoyski/math-php.git",
  5222. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5227. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5228. "shasum": ""
  5229. },
  5230. "require": {
  5231. "ext-json": "*",
  5232. "php": ">=7.2.0"
  5233. },
  5234. "require-dev": {
  5235. "php-coveralls/php-coveralls": "^2.0",
  5236. "php-parallel-lint/php-parallel-lint": "^1.2",
  5237. "phploc/phploc": "*",
  5238. "phpmd/phpmd": "^2.6",
  5239. "phpstan/phpstan": "^1.10",
  5240. "phpunit/phpunit": "^8.5",
  5241. "squizlabs/php_codesniffer": "3.*"
  5242. },
  5243. "type": "library",
  5244. "autoload": {
  5245. "psr-4": {
  5246. "MathPHP\\": "src/"
  5247. }
  5248. },
  5249. "notification-url": "https://packagist.org/downloads/",
  5250. "license": [
  5251. "MIT"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Mark Rogoyski",
  5256. "email": "mark@rogoyski.com",
  5257. "homepage": "https://github.com/markrogoyski",
  5258. "role": "Lead developer"
  5259. },
  5260. {
  5261. "name": "Kevin Nowaczyk",
  5262. "homepage": "https://github.com/Beakerboy",
  5263. "role": "Developer"
  5264. },
  5265. {
  5266. "name": "MathPHP Community of Contributors",
  5267. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5268. }
  5269. ],
  5270. "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",
  5271. "homepage": "https://github.com/markrogoyski/math-php/",
  5272. "keywords": [
  5273. "algebra",
  5274. "combinatorics",
  5275. "distributions",
  5276. "linear algebra",
  5277. "math",
  5278. "mathematics",
  5279. "matrix",
  5280. "numerical analysis",
  5281. "probability",
  5282. "regressions",
  5283. "statistics"
  5284. ],
  5285. "support": {
  5286. "issues": "https://github.com/markrogoyski/math-php/issues",
  5287. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5288. },
  5289. "time": "2024-04-17T00:09:51+00:00"
  5290. },
  5291. {
  5292. "name": "monolog/monolog",
  5293. "version": "3.8.1",
  5294. "source": {
  5295. "type": "git",
  5296. "url": "https://github.com/Seldaek/monolog.git",
  5297. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5298. },
  5299. "dist": {
  5300. "type": "zip",
  5301. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5302. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5303. "shasum": ""
  5304. },
  5305. "require": {
  5306. "php": ">=8.1",
  5307. "psr/log": "^2.0 || ^3.0"
  5308. },
  5309. "provide": {
  5310. "psr/log-implementation": "3.0.0"
  5311. },
  5312. "require-dev": {
  5313. "aws/aws-sdk-php": "^3.0",
  5314. "doctrine/couchdb": "~1.0@dev",
  5315. "elasticsearch/elasticsearch": "^7 || ^8",
  5316. "ext-json": "*",
  5317. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5318. "guzzlehttp/guzzle": "^7.4.5",
  5319. "guzzlehttp/psr7": "^2.2",
  5320. "mongodb/mongodb": "^1.8",
  5321. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5322. "php-console/php-console": "^3.1.8",
  5323. "phpstan/phpstan": "^2",
  5324. "phpstan/phpstan-deprecation-rules": "^2",
  5325. "phpstan/phpstan-strict-rules": "^2",
  5326. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5327. "predis/predis": "^1.1 || ^2",
  5328. "rollbar/rollbar": "^4.0",
  5329. "ruflin/elastica": "^7 || ^8",
  5330. "symfony/mailer": "^5.4 || ^6",
  5331. "symfony/mime": "^5.4 || ^6"
  5332. },
  5333. "suggest": {
  5334. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5335. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5336. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5337. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5338. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5339. "ext-mbstring": "Allow to work properly with unicode symbols",
  5340. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5341. "ext-openssl": "Required to send log messages using SSL",
  5342. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5343. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5344. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5345. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5346. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5347. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5348. },
  5349. "type": "library",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-main": "3.x-dev"
  5353. }
  5354. },
  5355. "autoload": {
  5356. "psr-4": {
  5357. "Monolog\\": "src/Monolog"
  5358. }
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Jordi Boggiano",
  5367. "email": "j.boggiano@seld.be",
  5368. "homepage": "https://seld.be"
  5369. }
  5370. ],
  5371. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5372. "homepage": "https://github.com/Seldaek/monolog",
  5373. "keywords": [
  5374. "log",
  5375. "logging",
  5376. "psr-3"
  5377. ],
  5378. "support": {
  5379. "issues": "https://github.com/Seldaek/monolog/issues",
  5380. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5381. },
  5382. "funding": [
  5383. {
  5384. "url": "https://github.com/Seldaek",
  5385. "type": "github"
  5386. },
  5387. {
  5388. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5389. "type": "tidelift"
  5390. }
  5391. ],
  5392. "time": "2024-12-05T17:15:07+00:00"
  5393. },
  5394. {
  5395. "name": "nesbot/carbon",
  5396. "version": "2.72.5",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/briannesbitt/Carbon.git",
  5400. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5405. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5406. "shasum": ""
  5407. },
  5408. "require": {
  5409. "carbonphp/carbon-doctrine-types": "*",
  5410. "ext-json": "*",
  5411. "php": "^7.1.8 || ^8.0",
  5412. "psr/clock": "^1.0",
  5413. "symfony/polyfill-mbstring": "^1.0",
  5414. "symfony/polyfill-php80": "^1.16",
  5415. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5416. },
  5417. "provide": {
  5418. "psr/clock-implementation": "1.0"
  5419. },
  5420. "require-dev": {
  5421. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5422. "doctrine/orm": "^2.7 || ^3.0",
  5423. "friendsofphp/php-cs-fixer": "^3.0",
  5424. "kylekatarnls/multi-tester": "^2.0",
  5425. "ondrejmirtes/better-reflection": "*",
  5426. "phpmd/phpmd": "^2.9",
  5427. "phpstan/extension-installer": "^1.0",
  5428. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5429. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5430. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5431. "squizlabs/php_codesniffer": "^3.4"
  5432. },
  5433. "bin": [
  5434. "bin/carbon"
  5435. ],
  5436. "type": "library",
  5437. "extra": {
  5438. "branch-alias": {
  5439. "dev-master": "3.x-dev",
  5440. "dev-2.x": "2.x-dev"
  5441. },
  5442. "laravel": {
  5443. "providers": [
  5444. "Carbon\\Laravel\\ServiceProvider"
  5445. ]
  5446. },
  5447. "phpstan": {
  5448. "includes": [
  5449. "extension.neon"
  5450. ]
  5451. }
  5452. },
  5453. "autoload": {
  5454. "psr-4": {
  5455. "Carbon\\": "src/Carbon/"
  5456. }
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Brian Nesbitt",
  5465. "email": "brian@nesbot.com",
  5466. "homepage": "https://markido.com"
  5467. },
  5468. {
  5469. "name": "kylekatarnls",
  5470. "homepage": "https://github.com/kylekatarnls"
  5471. }
  5472. ],
  5473. "description": "An API extension for DateTime that supports 281 different languages.",
  5474. "homepage": "https://carbon.nesbot.com",
  5475. "keywords": [
  5476. "date",
  5477. "datetime",
  5478. "time"
  5479. ],
  5480. "support": {
  5481. "docs": "https://carbon.nesbot.com/docs",
  5482. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5483. "source": "https://github.com/briannesbitt/Carbon"
  5484. },
  5485. "funding": [
  5486. {
  5487. "url": "https://github.com/sponsors/kylekatarnls",
  5488. "type": "github"
  5489. },
  5490. {
  5491. "url": "https://opencollective.com/Carbon#sponsor",
  5492. "type": "opencollective"
  5493. },
  5494. {
  5495. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5496. "type": "tidelift"
  5497. }
  5498. ],
  5499. "time": "2024-06-03T19:18:41+00:00"
  5500. },
  5501. {
  5502. "name": "nikic/fast-route",
  5503. "version": "v1.3.0",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/nikic/FastRoute.git",
  5507. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5512. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5513. "shasum": ""
  5514. },
  5515. "require": {
  5516. "php": ">=5.4.0"
  5517. },
  5518. "require-dev": {
  5519. "phpunit/phpunit": "^4.8.35|~5.7"
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "files": [
  5524. "src/functions.php"
  5525. ],
  5526. "psr-4": {
  5527. "FastRoute\\": "src/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "BSD-3-Clause"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Nikita Popov",
  5537. "email": "nikic@php.net"
  5538. }
  5539. ],
  5540. "description": "Fast request router for PHP",
  5541. "keywords": [
  5542. "router",
  5543. "routing"
  5544. ],
  5545. "support": {
  5546. "issues": "https://github.com/nikic/FastRoute/issues",
  5547. "source": "https://github.com/nikic/FastRoute/tree/master"
  5548. },
  5549. "time": "2018-02-13T20:26:39+00:00"
  5550. },
  5551. {
  5552. "name": "nikic/php-parser",
  5553. "version": "v4.19.4",
  5554. "source": {
  5555. "type": "git",
  5556. "url": "https://github.com/nikic/PHP-Parser.git",
  5557. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5558. },
  5559. "dist": {
  5560. "type": "zip",
  5561. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5562. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5563. "shasum": ""
  5564. },
  5565. "require": {
  5566. "ext-tokenizer": "*",
  5567. "php": ">=7.1"
  5568. },
  5569. "require-dev": {
  5570. "ircmaxell/php-yacc": "^0.0.7",
  5571. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5572. },
  5573. "bin": [
  5574. "bin/php-parse"
  5575. ],
  5576. "type": "library",
  5577. "extra": {
  5578. "branch-alias": {
  5579. "dev-master": "4.9-dev"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "psr-4": {
  5584. "PhpParser\\": "lib/PhpParser"
  5585. }
  5586. },
  5587. "notification-url": "https://packagist.org/downloads/",
  5588. "license": [
  5589. "BSD-3-Clause"
  5590. ],
  5591. "authors": [
  5592. {
  5593. "name": "Nikita Popov"
  5594. }
  5595. ],
  5596. "description": "A PHP parser written in PHP",
  5597. "keywords": [
  5598. "parser",
  5599. "php"
  5600. ],
  5601. "support": {
  5602. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5603. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5604. },
  5605. "time": "2024-09-29T15:01:53+00:00"
  5606. },
  5607. {
  5608. "name": "paragonie/constant_time_encoding",
  5609. "version": "v3.0.0",
  5610. "source": {
  5611. "type": "git",
  5612. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5613. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5614. },
  5615. "dist": {
  5616. "type": "zip",
  5617. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5618. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5619. "shasum": ""
  5620. },
  5621. "require": {
  5622. "php": "^8"
  5623. },
  5624. "require-dev": {
  5625. "phpunit/phpunit": "^9",
  5626. "vimeo/psalm": "^4|^5"
  5627. },
  5628. "type": "library",
  5629. "autoload": {
  5630. "psr-4": {
  5631. "ParagonIE\\ConstantTime\\": "src/"
  5632. }
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "Paragon Initiative Enterprises",
  5641. "email": "security@paragonie.com",
  5642. "homepage": "https://paragonie.com",
  5643. "role": "Maintainer"
  5644. },
  5645. {
  5646. "name": "Steve 'Sc00bz' Thomas",
  5647. "email": "steve@tobtu.com",
  5648. "homepage": "https://www.tobtu.com",
  5649. "role": "Original Developer"
  5650. }
  5651. ],
  5652. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5653. "keywords": [
  5654. "base16",
  5655. "base32",
  5656. "base32_decode",
  5657. "base32_encode",
  5658. "base64",
  5659. "base64_decode",
  5660. "base64_encode",
  5661. "bin2hex",
  5662. "encoding",
  5663. "hex",
  5664. "hex2bin",
  5665. "rfc4648"
  5666. ],
  5667. "support": {
  5668. "email": "info@paragonie.com",
  5669. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5670. "source": "https://github.com/paragonie/constant_time_encoding"
  5671. },
  5672. "time": "2024-05-08T12:36:18+00:00"
  5673. },
  5674. {
  5675. "name": "paragonie/random_compat",
  5676. "version": "v9.99.100",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/paragonie/random_compat.git",
  5680. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5685. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5686. "shasum": ""
  5687. },
  5688. "require": {
  5689. "php": ">= 7"
  5690. },
  5691. "require-dev": {
  5692. "phpunit/phpunit": "4.*|5.*",
  5693. "vimeo/psalm": "^1"
  5694. },
  5695. "suggest": {
  5696. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5697. },
  5698. "type": "library",
  5699. "notification-url": "https://packagist.org/downloads/",
  5700. "license": [
  5701. "MIT"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "Paragon Initiative Enterprises",
  5706. "email": "security@paragonie.com",
  5707. "homepage": "https://paragonie.com"
  5708. }
  5709. ],
  5710. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5711. "keywords": [
  5712. "csprng",
  5713. "polyfill",
  5714. "pseudorandom",
  5715. "random"
  5716. ],
  5717. "support": {
  5718. "email": "info@paragonie.com",
  5719. "issues": "https://github.com/paragonie/random_compat/issues",
  5720. "source": "https://github.com/paragonie/random_compat"
  5721. },
  5722. "time": "2020-10-15T08:29:30+00:00"
  5723. },
  5724. {
  5725. "name": "php-amqplib/php-amqplib",
  5726. "version": "v3.7.2",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5730. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5735. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "ext-mbstring": "*",
  5740. "ext-sockets": "*",
  5741. "php": "^7.2||^8.0",
  5742. "phpseclib/phpseclib": "^2.0|^3.0"
  5743. },
  5744. "conflict": {
  5745. "php": "7.4.0 - 7.4.1"
  5746. },
  5747. "replace": {
  5748. "videlalvaro/php-amqplib": "self.version"
  5749. },
  5750. "require-dev": {
  5751. "ext-curl": "*",
  5752. "nategood/httpful": "^0.2.20",
  5753. "phpunit/phpunit": "^7.5|^9.5",
  5754. "squizlabs/php_codesniffer": "^3.6"
  5755. },
  5756. "type": "library",
  5757. "extra": {
  5758. "branch-alias": {
  5759. "dev-master": "3.0-dev"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "psr-4": {
  5764. "PhpAmqpLib\\": "PhpAmqpLib/"
  5765. }
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "LGPL-2.1-or-later"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "Alvaro Videla",
  5774. "role": "Original Maintainer"
  5775. },
  5776. {
  5777. "name": "Raúl Araya",
  5778. "email": "nubeiro@gmail.com",
  5779. "role": "Maintainer"
  5780. },
  5781. {
  5782. "name": "Luke Bakken",
  5783. "email": "luke@bakken.io",
  5784. "role": "Maintainer"
  5785. },
  5786. {
  5787. "name": "Ramūnas Dronga",
  5788. "email": "github@ramuno.lt",
  5789. "role": "Maintainer"
  5790. }
  5791. ],
  5792. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5793. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5794. "keywords": [
  5795. "message",
  5796. "queue",
  5797. "rabbitmq"
  5798. ],
  5799. "support": {
  5800. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5801. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5802. },
  5803. "time": "2024-11-21T09:21:41+00:00"
  5804. },
  5805. {
  5806. "name": "php-di/phpdoc-reader",
  5807. "version": "2.2.1",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5811. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5816. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "php": ">=7.2.0"
  5821. },
  5822. "require-dev": {
  5823. "mnapoli/hard-mode": "~0.3.0",
  5824. "phpunit/phpunit": "^8.5|^9.0"
  5825. },
  5826. "type": "library",
  5827. "autoload": {
  5828. "psr-4": {
  5829. "PhpDocReader\\": "src/PhpDocReader"
  5830. }
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "MIT"
  5835. ],
  5836. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5837. "keywords": [
  5838. "phpdoc",
  5839. "reflection"
  5840. ],
  5841. "support": {
  5842. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5843. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5844. },
  5845. "time": "2020-10-12T12:39:22+00:00"
  5846. },
  5847. {
  5848. "name": "phper666/jwt-auth",
  5849. "version": "v4.0.11",
  5850. "source": {
  5851. "type": "git",
  5852. "url": "https://github.com/phper666/jwt-auth.git",
  5853. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5854. },
  5855. "dist": {
  5856. "type": "zip",
  5857. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5858. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5859. "shasum": ""
  5860. },
  5861. "require": {
  5862. "ext-swoole": ">=4.4",
  5863. "lcobucci/jwt": "4.1.5",
  5864. "nesbot/carbon": "^1.0 || ^2.0",
  5865. "php": ">=7.4"
  5866. },
  5867. "suggest": {
  5868. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5869. "hyperf/command": "required hyperf/command ~2.2.0",
  5870. "hyperf/config": "required hyperf/config ~2.2.0",
  5871. "hyperf/di": "required hyperf/di ~2.2.0"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "hyperf": {
  5876. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "files": [
  5881. "src/Functions.php"
  5882. ],
  5883. "psr-4": {
  5884. "Phper666\\JWTAuth\\": "src/"
  5885. }
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Li Yuzhao",
  5894. "email": "562405704@qq.com",
  5895. "homepage": "https://github.com/phper666/jwt-auth",
  5896. "role": "Developer"
  5897. }
  5898. ],
  5899. "description": "jwt-auth Component",
  5900. "keywords": [
  5901. "hyperf",
  5902. "php"
  5903. ],
  5904. "support": {
  5905. "issues": "https://github.com/phper666/jwt-auth/issues",
  5906. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5907. },
  5908. "time": "2024-02-02T13:24:54+00:00"
  5909. },
  5910. {
  5911. "name": "phpoption/phpoption",
  5912. "version": "1.9.3",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/schmittjoh/php-option.git",
  5916. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5921. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": "^7.2.5 || ^8.0"
  5926. },
  5927. "require-dev": {
  5928. "bamarni/composer-bin-plugin": "^1.8.2",
  5929. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5930. },
  5931. "type": "library",
  5932. "extra": {
  5933. "bamarni-bin": {
  5934. "bin-links": true,
  5935. "forward-command": false
  5936. },
  5937. "branch-alias": {
  5938. "dev-master": "1.9-dev"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "psr-4": {
  5943. "PhpOption\\": "src/PhpOption/"
  5944. }
  5945. },
  5946. "notification-url": "https://packagist.org/downloads/",
  5947. "license": [
  5948. "Apache-2.0"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "Johannes M. Schmitt",
  5953. "email": "schmittjoh@gmail.com",
  5954. "homepage": "https://github.com/schmittjoh"
  5955. },
  5956. {
  5957. "name": "Graham Campbell",
  5958. "email": "hello@gjcampbell.co.uk",
  5959. "homepage": "https://github.com/GrahamCampbell"
  5960. }
  5961. ],
  5962. "description": "Option Type for PHP",
  5963. "keywords": [
  5964. "language",
  5965. "option",
  5966. "php",
  5967. "type"
  5968. ],
  5969. "support": {
  5970. "issues": "https://github.com/schmittjoh/php-option/issues",
  5971. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5972. },
  5973. "funding": [
  5974. {
  5975. "url": "https://github.com/GrahamCampbell",
  5976. "type": "github"
  5977. },
  5978. {
  5979. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5980. "type": "tidelift"
  5981. }
  5982. ],
  5983. "time": "2024-07-20T21:41:07+00:00"
  5984. },
  5985. {
  5986. "name": "phpseclib/phpseclib",
  5987. "version": "3.0.43",
  5988. "source": {
  5989. "type": "git",
  5990. "url": "https://github.com/phpseclib/phpseclib.git",
  5991. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5992. },
  5993. "dist": {
  5994. "type": "zip",
  5995. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5996. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5997. "shasum": ""
  5998. },
  5999. "require": {
  6000. "paragonie/constant_time_encoding": "^1|^2|^3",
  6001. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6002. "php": ">=5.6.1"
  6003. },
  6004. "require-dev": {
  6005. "phpunit/phpunit": "*"
  6006. },
  6007. "suggest": {
  6008. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6009. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6010. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6011. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6012. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6013. },
  6014. "type": "library",
  6015. "autoload": {
  6016. "files": [
  6017. "phpseclib/bootstrap.php"
  6018. ],
  6019. "psr-4": {
  6020. "phpseclib3\\": "phpseclib/"
  6021. }
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "MIT"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Jim Wigginton",
  6030. "email": "terrafrost@php.net",
  6031. "role": "Lead Developer"
  6032. },
  6033. {
  6034. "name": "Patrick Monnerat",
  6035. "email": "pm@datasphere.ch",
  6036. "role": "Developer"
  6037. },
  6038. {
  6039. "name": "Andreas Fischer",
  6040. "email": "bantu@phpbb.com",
  6041. "role": "Developer"
  6042. },
  6043. {
  6044. "name": "Hans-Jürgen Petrich",
  6045. "email": "petrich@tronic-media.com",
  6046. "role": "Developer"
  6047. },
  6048. {
  6049. "name": "Graham Campbell",
  6050. "email": "graham@alt-three.com",
  6051. "role": "Developer"
  6052. }
  6053. ],
  6054. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6055. "homepage": "http://phpseclib.sourceforge.net",
  6056. "keywords": [
  6057. "BigInteger",
  6058. "aes",
  6059. "asn.1",
  6060. "asn1",
  6061. "blowfish",
  6062. "crypto",
  6063. "cryptography",
  6064. "encryption",
  6065. "rsa",
  6066. "security",
  6067. "sftp",
  6068. "signature",
  6069. "signing",
  6070. "ssh",
  6071. "twofish",
  6072. "x.509",
  6073. "x509"
  6074. ],
  6075. "support": {
  6076. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6077. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6078. },
  6079. "funding": [
  6080. {
  6081. "url": "https://github.com/terrafrost",
  6082. "type": "github"
  6083. },
  6084. {
  6085. "url": "https://www.patreon.com/phpseclib",
  6086. "type": "patreon"
  6087. },
  6088. {
  6089. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6090. "type": "tidelift"
  6091. }
  6092. ],
  6093. "time": "2024-12-14T21:12:59+00:00"
  6094. },
  6095. {
  6096. "name": "psr/cache",
  6097. "version": "3.0.0",
  6098. "source": {
  6099. "type": "git",
  6100. "url": "https://github.com/php-fig/cache.git",
  6101. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6102. },
  6103. "dist": {
  6104. "type": "zip",
  6105. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6106. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6107. "shasum": ""
  6108. },
  6109. "require": {
  6110. "php": ">=8.0.0"
  6111. },
  6112. "type": "library",
  6113. "extra": {
  6114. "branch-alias": {
  6115. "dev-master": "1.0.x-dev"
  6116. }
  6117. },
  6118. "autoload": {
  6119. "psr-4": {
  6120. "Psr\\Cache\\": "src/"
  6121. }
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "PHP-FIG",
  6130. "homepage": "https://www.php-fig.org/"
  6131. }
  6132. ],
  6133. "description": "Common interface for caching libraries",
  6134. "keywords": [
  6135. "cache",
  6136. "psr",
  6137. "psr-6"
  6138. ],
  6139. "support": {
  6140. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6141. },
  6142. "time": "2021-02-03T23:26:27+00:00"
  6143. },
  6144. {
  6145. "name": "psr/clock",
  6146. "version": "1.0.0",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/php-fig/clock.git",
  6150. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6155. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "php": "^7.0 || ^8.0"
  6160. },
  6161. "type": "library",
  6162. "autoload": {
  6163. "psr-4": {
  6164. "Psr\\Clock\\": "src/"
  6165. }
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "PHP-FIG",
  6174. "homepage": "https://www.php-fig.org/"
  6175. }
  6176. ],
  6177. "description": "Common interface for reading the clock.",
  6178. "homepage": "https://github.com/php-fig/clock",
  6179. "keywords": [
  6180. "clock",
  6181. "now",
  6182. "psr",
  6183. "psr-20",
  6184. "time"
  6185. ],
  6186. "support": {
  6187. "issues": "https://github.com/php-fig/clock/issues",
  6188. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6189. },
  6190. "time": "2022-11-25T14:36:26+00:00"
  6191. },
  6192. {
  6193. "name": "psr/container",
  6194. "version": "2.0.2",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/php-fig/container.git",
  6198. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6203. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "php": ">=7.4.0"
  6208. },
  6209. "type": "library",
  6210. "extra": {
  6211. "branch-alias": {
  6212. "dev-master": "2.0.x-dev"
  6213. }
  6214. },
  6215. "autoload": {
  6216. "psr-4": {
  6217. "Psr\\Container\\": "src/"
  6218. }
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "PHP-FIG",
  6227. "homepage": "https://www.php-fig.org/"
  6228. }
  6229. ],
  6230. "description": "Common Container Interface (PHP FIG PSR-11)",
  6231. "homepage": "https://github.com/php-fig/container",
  6232. "keywords": [
  6233. "PSR-11",
  6234. "container",
  6235. "container-interface",
  6236. "container-interop",
  6237. "psr"
  6238. ],
  6239. "support": {
  6240. "issues": "https://github.com/php-fig/container/issues",
  6241. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6242. },
  6243. "time": "2021-11-05T16:47:00+00:00"
  6244. },
  6245. {
  6246. "name": "psr/event-dispatcher",
  6247. "version": "1.0.0",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/php-fig/event-dispatcher.git",
  6251. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6256. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6257. "shasum": ""
  6258. },
  6259. "require": {
  6260. "php": ">=7.2.0"
  6261. },
  6262. "type": "library",
  6263. "extra": {
  6264. "branch-alias": {
  6265. "dev-master": "1.0.x-dev"
  6266. }
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "Psr\\EventDispatcher\\": "src/"
  6271. }
  6272. },
  6273. "notification-url": "https://packagist.org/downloads/",
  6274. "license": [
  6275. "MIT"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "PHP-FIG",
  6280. "homepage": "http://www.php-fig.org/"
  6281. }
  6282. ],
  6283. "description": "Standard interfaces for event handling.",
  6284. "keywords": [
  6285. "events",
  6286. "psr",
  6287. "psr-14"
  6288. ],
  6289. "support": {
  6290. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6291. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6292. },
  6293. "time": "2019-01-08T18:20:26+00:00"
  6294. },
  6295. {
  6296. "name": "psr/http-client",
  6297. "version": "1.0.3",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://github.com/php-fig/http-client.git",
  6301. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6306. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6307. "shasum": ""
  6308. },
  6309. "require": {
  6310. "php": "^7.0 || ^8.0",
  6311. "psr/http-message": "^1.0 || ^2.0"
  6312. },
  6313. "type": "library",
  6314. "extra": {
  6315. "branch-alias": {
  6316. "dev-master": "1.0.x-dev"
  6317. }
  6318. },
  6319. "autoload": {
  6320. "psr-4": {
  6321. "Psr\\Http\\Client\\": "src/"
  6322. }
  6323. },
  6324. "notification-url": "https://packagist.org/downloads/",
  6325. "license": [
  6326. "MIT"
  6327. ],
  6328. "authors": [
  6329. {
  6330. "name": "PHP-FIG",
  6331. "homepage": "https://www.php-fig.org/"
  6332. }
  6333. ],
  6334. "description": "Common interface for HTTP clients",
  6335. "homepage": "https://github.com/php-fig/http-client",
  6336. "keywords": [
  6337. "http",
  6338. "http-client",
  6339. "psr",
  6340. "psr-18"
  6341. ],
  6342. "support": {
  6343. "source": "https://github.com/php-fig/http-client"
  6344. },
  6345. "time": "2023-09-23T14:17:50+00:00"
  6346. },
  6347. {
  6348. "name": "psr/http-factory",
  6349. "version": "1.1.0",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/php-fig/http-factory.git",
  6353. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6358. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "php": ">=7.1",
  6363. "psr/http-message": "^1.0 || ^2.0"
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "branch-alias": {
  6368. "dev-master": "1.0.x-dev"
  6369. }
  6370. },
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Psr\\Http\\Message\\": "src/"
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "MIT"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "PHP-FIG",
  6383. "homepage": "https://www.php-fig.org/"
  6384. }
  6385. ],
  6386. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6387. "keywords": [
  6388. "factory",
  6389. "http",
  6390. "message",
  6391. "psr",
  6392. "psr-17",
  6393. "psr-7",
  6394. "request",
  6395. "response"
  6396. ],
  6397. "support": {
  6398. "source": "https://github.com/php-fig/http-factory"
  6399. },
  6400. "time": "2024-04-15T12:06:14+00:00"
  6401. },
  6402. {
  6403. "name": "psr/http-message",
  6404. "version": "2.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/php-fig/http-message.git",
  6408. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6413. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": "^7.2 || ^8.0"
  6418. },
  6419. "type": "library",
  6420. "extra": {
  6421. "branch-alias": {
  6422. "dev-master": "2.0.x-dev"
  6423. }
  6424. },
  6425. "autoload": {
  6426. "psr-4": {
  6427. "Psr\\Http\\Message\\": "src/"
  6428. }
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "license": [
  6432. "MIT"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "PHP-FIG",
  6437. "homepage": "https://www.php-fig.org/"
  6438. }
  6439. ],
  6440. "description": "Common interface for HTTP messages",
  6441. "homepage": "https://github.com/php-fig/http-message",
  6442. "keywords": [
  6443. "http",
  6444. "http-message",
  6445. "psr",
  6446. "psr-7",
  6447. "request",
  6448. "response"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6452. },
  6453. "time": "2023-04-04T09:54:51+00:00"
  6454. },
  6455. {
  6456. "name": "psr/http-server-handler",
  6457. "version": "1.0.2",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://github.com/php-fig/http-server-handler.git",
  6461. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6466. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6467. "shasum": ""
  6468. },
  6469. "require": {
  6470. "php": ">=7.0",
  6471. "psr/http-message": "^1.0 || ^2.0"
  6472. },
  6473. "type": "library",
  6474. "extra": {
  6475. "branch-alias": {
  6476. "dev-master": "1.0.x-dev"
  6477. }
  6478. },
  6479. "autoload": {
  6480. "psr-4": {
  6481. "Psr\\Http\\Server\\": "src/"
  6482. }
  6483. },
  6484. "notification-url": "https://packagist.org/downloads/",
  6485. "license": [
  6486. "MIT"
  6487. ],
  6488. "authors": [
  6489. {
  6490. "name": "PHP-FIG",
  6491. "homepage": "https://www.php-fig.org/"
  6492. }
  6493. ],
  6494. "description": "Common interface for HTTP server-side request handler",
  6495. "keywords": [
  6496. "handler",
  6497. "http",
  6498. "http-interop",
  6499. "psr",
  6500. "psr-15",
  6501. "psr-7",
  6502. "request",
  6503. "response",
  6504. "server"
  6505. ],
  6506. "support": {
  6507. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6508. },
  6509. "time": "2023-04-10T20:06:20+00:00"
  6510. },
  6511. {
  6512. "name": "psr/http-server-middleware",
  6513. "version": "1.0.2",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://github.com/php-fig/http-server-middleware.git",
  6517. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6522. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6523. "shasum": ""
  6524. },
  6525. "require": {
  6526. "php": ">=7.0",
  6527. "psr/http-message": "^1.0 || ^2.0",
  6528. "psr/http-server-handler": "^1.0"
  6529. },
  6530. "type": "library",
  6531. "extra": {
  6532. "branch-alias": {
  6533. "dev-master": "1.0.x-dev"
  6534. }
  6535. },
  6536. "autoload": {
  6537. "psr-4": {
  6538. "Psr\\Http\\Server\\": "src/"
  6539. }
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "PHP-FIG",
  6548. "homepage": "https://www.php-fig.org/"
  6549. }
  6550. ],
  6551. "description": "Common interface for HTTP server-side middleware",
  6552. "keywords": [
  6553. "http",
  6554. "http-interop",
  6555. "middleware",
  6556. "psr",
  6557. "psr-15",
  6558. "psr-7",
  6559. "request",
  6560. "response"
  6561. ],
  6562. "support": {
  6563. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6564. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6565. },
  6566. "time": "2023-04-11T06:14:47+00:00"
  6567. },
  6568. {
  6569. "name": "psr/log",
  6570. "version": "3.0.2",
  6571. "source": {
  6572. "type": "git",
  6573. "url": "https://github.com/php-fig/log.git",
  6574. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6575. },
  6576. "dist": {
  6577. "type": "zip",
  6578. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6579. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6580. "shasum": ""
  6581. },
  6582. "require": {
  6583. "php": ">=8.0.0"
  6584. },
  6585. "type": "library",
  6586. "extra": {
  6587. "branch-alias": {
  6588. "dev-master": "3.x-dev"
  6589. }
  6590. },
  6591. "autoload": {
  6592. "psr-4": {
  6593. "Psr\\Log\\": "src"
  6594. }
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "MIT"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "PHP-FIG",
  6603. "homepage": "https://www.php-fig.org/"
  6604. }
  6605. ],
  6606. "description": "Common interface for logging libraries",
  6607. "homepage": "https://github.com/php-fig/log",
  6608. "keywords": [
  6609. "log",
  6610. "psr",
  6611. "psr-3"
  6612. ],
  6613. "support": {
  6614. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6615. },
  6616. "time": "2024-09-11T13:17:53+00:00"
  6617. },
  6618. {
  6619. "name": "psr/simple-cache",
  6620. "version": "3.0.0",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/php-fig/simple-cache.git",
  6624. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6629. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=8.0.0"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-master": "3.0.x-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "psr-4": {
  6643. "Psr\\SimpleCache\\": "src/"
  6644. }
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "MIT"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "PHP-FIG",
  6653. "homepage": "https://www.php-fig.org/"
  6654. }
  6655. ],
  6656. "description": "Common interfaces for simple caching",
  6657. "keywords": [
  6658. "cache",
  6659. "caching",
  6660. "psr",
  6661. "psr-16",
  6662. "simple-cache"
  6663. ],
  6664. "support": {
  6665. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6666. },
  6667. "time": "2021-10-29T13:26:27+00:00"
  6668. },
  6669. {
  6670. "name": "ralouphie/getallheaders",
  6671. "version": "3.0.3",
  6672. "source": {
  6673. "type": "git",
  6674. "url": "https://github.com/ralouphie/getallheaders.git",
  6675. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6676. },
  6677. "dist": {
  6678. "type": "zip",
  6679. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6680. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6681. "shasum": ""
  6682. },
  6683. "require": {
  6684. "php": ">=5.6"
  6685. },
  6686. "require-dev": {
  6687. "php-coveralls/php-coveralls": "^2.1",
  6688. "phpunit/phpunit": "^5 || ^6.5"
  6689. },
  6690. "type": "library",
  6691. "autoload": {
  6692. "files": [
  6693. "src/getallheaders.php"
  6694. ]
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Ralph Khattar",
  6703. "email": "ralph.khattar@gmail.com"
  6704. }
  6705. ],
  6706. "description": "A polyfill for getallheaders.",
  6707. "support": {
  6708. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6709. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6710. },
  6711. "time": "2019-03-08T08:55:37+00:00"
  6712. },
  6713. {
  6714. "name": "stella-maris/clock",
  6715. "version": "0.1.7",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/stella-maris-solutions/clock.git",
  6719. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6724. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6725. "shasum": ""
  6726. },
  6727. "require": {
  6728. "php": "^7.0|^8.0",
  6729. "psr/clock": "^1.0"
  6730. },
  6731. "type": "library",
  6732. "autoload": {
  6733. "psr-4": {
  6734. "StellaMaris\\Clock\\": "src"
  6735. }
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Andreas Heigl",
  6744. "role": "Maintainer"
  6745. }
  6746. ],
  6747. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6748. "homepage": "https://gitlab.com/stella-maris/clock",
  6749. "keywords": [
  6750. "clock",
  6751. "datetime",
  6752. "point in time",
  6753. "psr20"
  6754. ],
  6755. "support": {
  6756. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6757. },
  6758. "time": "2022-11-25T16:15:06+00:00"
  6759. },
  6760. {
  6761. "name": "swow/psr7-plus",
  6762. "version": "v1.1.2",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/swow/psr7-plus.git",
  6766. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6771. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=8.0",
  6776. "psr/http-client": "^1.0",
  6777. "psr/http-factory": "^1.0",
  6778. "psr/http-message": "^1.1|^2.0"
  6779. },
  6780. "type": "library",
  6781. "autoload": {
  6782. "psr-4": {
  6783. "Swow\\Psr7\\Message\\": "src/Message/"
  6784. }
  6785. },
  6786. "notification-url": "https://packagist.org/downloads/",
  6787. "license": [
  6788. "Apache-2.0"
  6789. ],
  6790. "authors": [
  6791. {
  6792. "name": "twose",
  6793. "email": "twosee@php.net"
  6794. }
  6795. ],
  6796. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6797. "keywords": [
  6798. "http",
  6799. "psr17",
  6800. "psr7",
  6801. "swow",
  6802. "websocket"
  6803. ],
  6804. "support": {
  6805. "issues": "https://github.com/swow/swow",
  6806. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6807. },
  6808. "time": "2023-06-15T09:18:11+00:00"
  6809. },
  6810. {
  6811. "name": "symfony/console",
  6812. "version": "v6.4.15",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://github.com/symfony/console.git",
  6816. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6821. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6822. "shasum": ""
  6823. },
  6824. "require": {
  6825. "php": ">=8.1",
  6826. "symfony/deprecation-contracts": "^2.5|^3",
  6827. "symfony/polyfill-mbstring": "~1.0",
  6828. "symfony/service-contracts": "^2.5|^3",
  6829. "symfony/string": "^5.4|^6.0|^7.0"
  6830. },
  6831. "conflict": {
  6832. "symfony/dependency-injection": "<5.4",
  6833. "symfony/dotenv": "<5.4",
  6834. "symfony/event-dispatcher": "<5.4",
  6835. "symfony/lock": "<5.4",
  6836. "symfony/process": "<5.4"
  6837. },
  6838. "provide": {
  6839. "psr/log-implementation": "1.0|2.0|3.0"
  6840. },
  6841. "require-dev": {
  6842. "psr/log": "^1|^2|^3",
  6843. "symfony/config": "^5.4|^6.0|^7.0",
  6844. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6845. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6846. "symfony/http-foundation": "^6.4|^7.0",
  6847. "symfony/http-kernel": "^6.4|^7.0",
  6848. "symfony/lock": "^5.4|^6.0|^7.0",
  6849. "symfony/messenger": "^5.4|^6.0|^7.0",
  6850. "symfony/process": "^5.4|^6.0|^7.0",
  6851. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6852. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6853. },
  6854. "type": "library",
  6855. "autoload": {
  6856. "psr-4": {
  6857. "Symfony\\Component\\Console\\": ""
  6858. },
  6859. "exclude-from-classmap": [
  6860. "/Tests/"
  6861. ]
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Fabien Potencier",
  6870. "email": "fabien@symfony.com"
  6871. },
  6872. {
  6873. "name": "Symfony Community",
  6874. "homepage": "https://symfony.com/contributors"
  6875. }
  6876. ],
  6877. "description": "Eases the creation of beautiful and testable command line interfaces",
  6878. "homepage": "https://symfony.com",
  6879. "keywords": [
  6880. "cli",
  6881. "command-line",
  6882. "console",
  6883. "terminal"
  6884. ],
  6885. "support": {
  6886. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6887. },
  6888. "funding": [
  6889. {
  6890. "url": "https://symfony.com/sponsor",
  6891. "type": "custom"
  6892. },
  6893. {
  6894. "url": "https://github.com/fabpot",
  6895. "type": "github"
  6896. },
  6897. {
  6898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6899. "type": "tidelift"
  6900. }
  6901. ],
  6902. "time": "2024-11-06T14:19:14+00:00"
  6903. },
  6904. {
  6905. "name": "symfony/deprecation-contracts",
  6906. "version": "v3.5.1",
  6907. "source": {
  6908. "type": "git",
  6909. "url": "https://github.com/symfony/deprecation-contracts.git",
  6910. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6911. },
  6912. "dist": {
  6913. "type": "zip",
  6914. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6915. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6916. "shasum": ""
  6917. },
  6918. "require": {
  6919. "php": ">=8.1"
  6920. },
  6921. "type": "library",
  6922. "extra": {
  6923. "branch-alias": {
  6924. "dev-main": "3.5-dev"
  6925. },
  6926. "thanks": {
  6927. "name": "symfony/contracts",
  6928. "url": "https://github.com/symfony/contracts"
  6929. }
  6930. },
  6931. "autoload": {
  6932. "files": [
  6933. "function.php"
  6934. ]
  6935. },
  6936. "notification-url": "https://packagist.org/downloads/",
  6937. "license": [
  6938. "MIT"
  6939. ],
  6940. "authors": [
  6941. {
  6942. "name": "Nicolas Grekas",
  6943. "email": "p@tchwork.com"
  6944. },
  6945. {
  6946. "name": "Symfony Community",
  6947. "homepage": "https://symfony.com/contributors"
  6948. }
  6949. ],
  6950. "description": "A generic function and convention to trigger deprecation notices",
  6951. "homepage": "https://symfony.com",
  6952. "support": {
  6953. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6954. },
  6955. "funding": [
  6956. {
  6957. "url": "https://symfony.com/sponsor",
  6958. "type": "custom"
  6959. },
  6960. {
  6961. "url": "https://github.com/fabpot",
  6962. "type": "github"
  6963. },
  6964. {
  6965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6966. "type": "tidelift"
  6967. }
  6968. ],
  6969. "time": "2024-09-25T14:20:29+00:00"
  6970. },
  6971. {
  6972. "name": "symfony/finder",
  6973. "version": "v6.4.13",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://github.com/symfony/finder.git",
  6977. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6982. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6983. "shasum": ""
  6984. },
  6985. "require": {
  6986. "php": ">=8.1"
  6987. },
  6988. "require-dev": {
  6989. "symfony/filesystem": "^6.0|^7.0"
  6990. },
  6991. "type": "library",
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Component\\Finder\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "https://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "Finds files and directories via an intuitive fluent interface",
  7015. "homepage": "https://symfony.com",
  7016. "support": {
  7017. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2024-10-01T08:30:56+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/polyfill-ctype",
  7037. "version": "v1.31.0",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/polyfill-ctype.git",
  7041. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7046. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=7.2"
  7051. },
  7052. "provide": {
  7053. "ext-ctype": "*"
  7054. },
  7055. "suggest": {
  7056. "ext-ctype": "For best performance"
  7057. },
  7058. "type": "library",
  7059. "extra": {
  7060. "thanks": {
  7061. "url": "https://github.com/symfony/polyfill",
  7062. "name": "symfony/polyfill"
  7063. }
  7064. },
  7065. "autoload": {
  7066. "files": [
  7067. "bootstrap.php"
  7068. ],
  7069. "psr-4": {
  7070. "Symfony\\Polyfill\\Ctype\\": ""
  7071. }
  7072. },
  7073. "notification-url": "https://packagist.org/downloads/",
  7074. "license": [
  7075. "MIT"
  7076. ],
  7077. "authors": [
  7078. {
  7079. "name": "Gert de Pagter",
  7080. "email": "BackEndTea@gmail.com"
  7081. },
  7082. {
  7083. "name": "Symfony Community",
  7084. "homepage": "https://symfony.com/contributors"
  7085. }
  7086. ],
  7087. "description": "Symfony polyfill for ctype functions",
  7088. "homepage": "https://symfony.com",
  7089. "keywords": [
  7090. "compatibility",
  7091. "ctype",
  7092. "polyfill",
  7093. "portable"
  7094. ],
  7095. "support": {
  7096. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7097. },
  7098. "funding": [
  7099. {
  7100. "url": "https://symfony.com/sponsor",
  7101. "type": "custom"
  7102. },
  7103. {
  7104. "url": "https://github.com/fabpot",
  7105. "type": "github"
  7106. },
  7107. {
  7108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7109. "type": "tidelift"
  7110. }
  7111. ],
  7112. "time": "2024-09-09T11:45:10+00:00"
  7113. },
  7114. {
  7115. "name": "symfony/polyfill-intl-grapheme",
  7116. "version": "v1.31.0",
  7117. "source": {
  7118. "type": "git",
  7119. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7120. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7121. },
  7122. "dist": {
  7123. "type": "zip",
  7124. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7125. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7126. "shasum": ""
  7127. },
  7128. "require": {
  7129. "php": ">=7.2"
  7130. },
  7131. "suggest": {
  7132. "ext-intl": "For best performance"
  7133. },
  7134. "type": "library",
  7135. "extra": {
  7136. "thanks": {
  7137. "url": "https://github.com/symfony/polyfill",
  7138. "name": "symfony/polyfill"
  7139. }
  7140. },
  7141. "autoload": {
  7142. "files": [
  7143. "bootstrap.php"
  7144. ],
  7145. "psr-4": {
  7146. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7147. }
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Nicolas Grekas",
  7156. "email": "p@tchwork.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Symfony polyfill for intl's grapheme_* functions",
  7164. "homepage": "https://symfony.com",
  7165. "keywords": [
  7166. "compatibility",
  7167. "grapheme",
  7168. "intl",
  7169. "polyfill",
  7170. "portable",
  7171. "shim"
  7172. ],
  7173. "support": {
  7174. "source": "https://github.com/symfony/polyfill-intl-grapheme/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-idn",
  7194. "version": "v1.31.0",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7198. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7203. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7204. "shasum": ""
  7205. },
  7206. "require": {
  7207. "php": ">=7.2",
  7208. "symfony/polyfill-intl-normalizer": "^1.10"
  7209. },
  7210. "suggest": {
  7211. "ext-intl": "For best performance"
  7212. },
  7213. "type": "library",
  7214. "extra": {
  7215. "thanks": {
  7216. "url": "https://github.com/symfony/polyfill",
  7217. "name": "symfony/polyfill"
  7218. }
  7219. },
  7220. "autoload": {
  7221. "files": [
  7222. "bootstrap.php"
  7223. ],
  7224. "psr-4": {
  7225. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7226. }
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "MIT"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Laurent Bassin",
  7235. "email": "laurent@bassin.info"
  7236. },
  7237. {
  7238. "name": "Trevor Rowbotham",
  7239. "email": "trevor.rowbotham@pm.me"
  7240. },
  7241. {
  7242. "name": "Symfony Community",
  7243. "homepage": "https://symfony.com/contributors"
  7244. }
  7245. ],
  7246. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7247. "homepage": "https://symfony.com",
  7248. "keywords": [
  7249. "compatibility",
  7250. "idn",
  7251. "intl",
  7252. "polyfill",
  7253. "portable",
  7254. "shim"
  7255. ],
  7256. "support": {
  7257. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7258. },
  7259. "funding": [
  7260. {
  7261. "url": "https://symfony.com/sponsor",
  7262. "type": "custom"
  7263. },
  7264. {
  7265. "url": "https://github.com/fabpot",
  7266. "type": "github"
  7267. },
  7268. {
  7269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7270. "type": "tidelift"
  7271. }
  7272. ],
  7273. "time": "2024-09-09T11:45:10+00:00"
  7274. },
  7275. {
  7276. "name": "symfony/polyfill-intl-normalizer",
  7277. "version": "v1.31.0",
  7278. "source": {
  7279. "type": "git",
  7280. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7281. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7282. },
  7283. "dist": {
  7284. "type": "zip",
  7285. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7286. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7287. "shasum": ""
  7288. },
  7289. "require": {
  7290. "php": ">=7.2"
  7291. },
  7292. "suggest": {
  7293. "ext-intl": "For best performance"
  7294. },
  7295. "type": "library",
  7296. "extra": {
  7297. "thanks": {
  7298. "url": "https://github.com/symfony/polyfill",
  7299. "name": "symfony/polyfill"
  7300. }
  7301. },
  7302. "autoload": {
  7303. "files": [
  7304. "bootstrap.php"
  7305. ],
  7306. "psr-4": {
  7307. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7308. },
  7309. "classmap": [
  7310. "Resources/stubs"
  7311. ]
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "authors": [
  7318. {
  7319. "name": "Nicolas Grekas",
  7320. "email": "p@tchwork.com"
  7321. },
  7322. {
  7323. "name": "Symfony Community",
  7324. "homepage": "https://symfony.com/contributors"
  7325. }
  7326. ],
  7327. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7328. "homepage": "https://symfony.com",
  7329. "keywords": [
  7330. "compatibility",
  7331. "intl",
  7332. "normalizer",
  7333. "polyfill",
  7334. "portable",
  7335. "shim"
  7336. ],
  7337. "support": {
  7338. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7339. },
  7340. "funding": [
  7341. {
  7342. "url": "https://symfony.com/sponsor",
  7343. "type": "custom"
  7344. },
  7345. {
  7346. "url": "https://github.com/fabpot",
  7347. "type": "github"
  7348. },
  7349. {
  7350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7351. "type": "tidelift"
  7352. }
  7353. ],
  7354. "time": "2024-09-09T11:45:10+00:00"
  7355. },
  7356. {
  7357. "name": "symfony/polyfill-mbstring",
  7358. "version": "v1.31.0",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7362. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7367. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7368. "shasum": ""
  7369. },
  7370. "require": {
  7371. "php": ">=7.2"
  7372. },
  7373. "provide": {
  7374. "ext-mbstring": "*"
  7375. },
  7376. "suggest": {
  7377. "ext-mbstring": "For best performance"
  7378. },
  7379. "type": "library",
  7380. "extra": {
  7381. "thanks": {
  7382. "url": "https://github.com/symfony/polyfill",
  7383. "name": "symfony/polyfill"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "files": [
  7388. "bootstrap.php"
  7389. ],
  7390. "psr-4": {
  7391. "Symfony\\Polyfill\\Mbstring\\": ""
  7392. }
  7393. },
  7394. "notification-url": "https://packagist.org/downloads/",
  7395. "license": [
  7396. "MIT"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Nicolas Grekas",
  7401. "email": "p@tchwork.com"
  7402. },
  7403. {
  7404. "name": "Symfony Community",
  7405. "homepage": "https://symfony.com/contributors"
  7406. }
  7407. ],
  7408. "description": "Symfony polyfill for the Mbstring extension",
  7409. "homepage": "https://symfony.com",
  7410. "keywords": [
  7411. "compatibility",
  7412. "mbstring",
  7413. "polyfill",
  7414. "portable",
  7415. "shim"
  7416. ],
  7417. "support": {
  7418. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7419. },
  7420. "funding": [
  7421. {
  7422. "url": "https://symfony.com/sponsor",
  7423. "type": "custom"
  7424. },
  7425. {
  7426. "url": "https://github.com/fabpot",
  7427. "type": "github"
  7428. },
  7429. {
  7430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7431. "type": "tidelift"
  7432. }
  7433. ],
  7434. "time": "2024-09-09T11:45:10+00:00"
  7435. },
  7436. {
  7437. "name": "symfony/polyfill-php80",
  7438. "version": "v1.31.0",
  7439. "source": {
  7440. "type": "git",
  7441. "url": "https://github.com/symfony/polyfill-php80.git",
  7442. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7443. },
  7444. "dist": {
  7445. "type": "zip",
  7446. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7447. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7448. "shasum": ""
  7449. },
  7450. "require": {
  7451. "php": ">=7.2"
  7452. },
  7453. "type": "library",
  7454. "extra": {
  7455. "thanks": {
  7456. "url": "https://github.com/symfony/polyfill",
  7457. "name": "symfony/polyfill"
  7458. }
  7459. },
  7460. "autoload": {
  7461. "files": [
  7462. "bootstrap.php"
  7463. ],
  7464. "psr-4": {
  7465. "Symfony\\Polyfill\\Php80\\": ""
  7466. },
  7467. "classmap": [
  7468. "Resources/stubs"
  7469. ]
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Ion Bazan",
  7478. "email": "ion.bazan@gmail.com"
  7479. },
  7480. {
  7481. "name": "Nicolas Grekas",
  7482. "email": "p@tchwork.com"
  7483. },
  7484. {
  7485. "name": "Symfony Community",
  7486. "homepage": "https://symfony.com/contributors"
  7487. }
  7488. ],
  7489. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7490. "homepage": "https://symfony.com",
  7491. "keywords": [
  7492. "compatibility",
  7493. "polyfill",
  7494. "portable",
  7495. "shim"
  7496. ],
  7497. "support": {
  7498. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7499. },
  7500. "funding": [
  7501. {
  7502. "url": "https://symfony.com/sponsor",
  7503. "type": "custom"
  7504. },
  7505. {
  7506. "url": "https://github.com/fabpot",
  7507. "type": "github"
  7508. },
  7509. {
  7510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7511. "type": "tidelift"
  7512. }
  7513. ],
  7514. "time": "2024-09-09T11:45:10+00:00"
  7515. },
  7516. {
  7517. "name": "symfony/service-contracts",
  7518. "version": "v3.5.1",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/symfony/service-contracts.git",
  7522. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7527. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": ">=8.1",
  7532. "psr/container": "^1.1|^2.0",
  7533. "symfony/deprecation-contracts": "^2.5|^3"
  7534. },
  7535. "conflict": {
  7536. "ext-psr": "<1.1|>=2"
  7537. },
  7538. "type": "library",
  7539. "extra": {
  7540. "branch-alias": {
  7541. "dev-main": "3.5-dev"
  7542. },
  7543. "thanks": {
  7544. "name": "symfony/contracts",
  7545. "url": "https://github.com/symfony/contracts"
  7546. }
  7547. },
  7548. "autoload": {
  7549. "psr-4": {
  7550. "Symfony\\Contracts\\Service\\": ""
  7551. },
  7552. "exclude-from-classmap": [
  7553. "/Test/"
  7554. ]
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Nicolas Grekas",
  7563. "email": "p@tchwork.com"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Generic abstractions related to writing services",
  7571. "homepage": "https://symfony.com",
  7572. "keywords": [
  7573. "abstractions",
  7574. "contracts",
  7575. "decoupling",
  7576. "interfaces",
  7577. "interoperability",
  7578. "standards"
  7579. ],
  7580. "support": {
  7581. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7582. },
  7583. "funding": [
  7584. {
  7585. "url": "https://symfony.com/sponsor",
  7586. "type": "custom"
  7587. },
  7588. {
  7589. "url": "https://github.com/fabpot",
  7590. "type": "github"
  7591. },
  7592. {
  7593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7594. "type": "tidelift"
  7595. }
  7596. ],
  7597. "time": "2024-09-25T14:20:29+00:00"
  7598. },
  7599. {
  7600. "name": "symfony/string",
  7601. "version": "v6.4.15",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/symfony/string.git",
  7605. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7610. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "php": ">=8.1",
  7615. "symfony/polyfill-ctype": "~1.8",
  7616. "symfony/polyfill-intl-grapheme": "~1.0",
  7617. "symfony/polyfill-intl-normalizer": "~1.0",
  7618. "symfony/polyfill-mbstring": "~1.0"
  7619. },
  7620. "conflict": {
  7621. "symfony/translation-contracts": "<2.5"
  7622. },
  7623. "require-dev": {
  7624. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7625. "symfony/http-client": "^5.4|^6.0|^7.0",
  7626. "symfony/intl": "^6.2|^7.0",
  7627. "symfony/translation-contracts": "^2.5|^3.0",
  7628. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7629. },
  7630. "type": "library",
  7631. "autoload": {
  7632. "files": [
  7633. "Resources/functions.php"
  7634. ],
  7635. "psr-4": {
  7636. "Symfony\\Component\\String\\": ""
  7637. },
  7638. "exclude-from-classmap": [
  7639. "/Tests/"
  7640. ]
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "Nicolas Grekas",
  7649. "email": "p@tchwork.com"
  7650. },
  7651. {
  7652. "name": "Symfony Community",
  7653. "homepage": "https://symfony.com/contributors"
  7654. }
  7655. ],
  7656. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7657. "homepage": "https://symfony.com",
  7658. "keywords": [
  7659. "grapheme",
  7660. "i18n",
  7661. "string",
  7662. "unicode",
  7663. "utf-8",
  7664. "utf8"
  7665. ],
  7666. "support": {
  7667. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7668. },
  7669. "funding": [
  7670. {
  7671. "url": "https://symfony.com/sponsor",
  7672. "type": "custom"
  7673. },
  7674. {
  7675. "url": "https://github.com/fabpot",
  7676. "type": "github"
  7677. },
  7678. {
  7679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7680. "type": "tidelift"
  7681. }
  7682. ],
  7683. "time": "2024-11-13T13:31:12+00:00"
  7684. },
  7685. {
  7686. "name": "symfony/translation",
  7687. "version": "v6.4.13",
  7688. "source": {
  7689. "type": "git",
  7690. "url": "https://github.com/symfony/translation.git",
  7691. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7692. },
  7693. "dist": {
  7694. "type": "zip",
  7695. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7696. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7697. "shasum": ""
  7698. },
  7699. "require": {
  7700. "php": ">=8.1",
  7701. "symfony/deprecation-contracts": "^2.5|^3",
  7702. "symfony/polyfill-mbstring": "~1.0",
  7703. "symfony/translation-contracts": "^2.5|^3.0"
  7704. },
  7705. "conflict": {
  7706. "symfony/config": "<5.4",
  7707. "symfony/console": "<5.4",
  7708. "symfony/dependency-injection": "<5.4",
  7709. "symfony/http-client-contracts": "<2.5",
  7710. "symfony/http-kernel": "<5.4",
  7711. "symfony/service-contracts": "<2.5",
  7712. "symfony/twig-bundle": "<5.4",
  7713. "symfony/yaml": "<5.4"
  7714. },
  7715. "provide": {
  7716. "symfony/translation-implementation": "2.3|3.0"
  7717. },
  7718. "require-dev": {
  7719. "nikic/php-parser": "^4.18|^5.0",
  7720. "psr/log": "^1|^2|^3",
  7721. "symfony/config": "^5.4|^6.0|^7.0",
  7722. "symfony/console": "^5.4|^6.0|^7.0",
  7723. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7724. "symfony/finder": "^5.4|^6.0|^7.0",
  7725. "symfony/http-client-contracts": "^2.5|^3.0",
  7726. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7727. "symfony/intl": "^5.4|^6.0|^7.0",
  7728. "symfony/polyfill-intl-icu": "^1.21",
  7729. "symfony/routing": "^5.4|^6.0|^7.0",
  7730. "symfony/service-contracts": "^2.5|^3",
  7731. "symfony/yaml": "^5.4|^6.0|^7.0"
  7732. },
  7733. "type": "library",
  7734. "autoload": {
  7735. "files": [
  7736. "Resources/functions.php"
  7737. ],
  7738. "psr-4": {
  7739. "Symfony\\Component\\Translation\\": ""
  7740. },
  7741. "exclude-from-classmap": [
  7742. "/Tests/"
  7743. ]
  7744. },
  7745. "notification-url": "https://packagist.org/downloads/",
  7746. "license": [
  7747. "MIT"
  7748. ],
  7749. "authors": [
  7750. {
  7751. "name": "Fabien Potencier",
  7752. "email": "fabien@symfony.com"
  7753. },
  7754. {
  7755. "name": "Symfony Community",
  7756. "homepage": "https://symfony.com/contributors"
  7757. }
  7758. ],
  7759. "description": "Provides tools to internationalize your application",
  7760. "homepage": "https://symfony.com",
  7761. "support": {
  7762. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7763. },
  7764. "funding": [
  7765. {
  7766. "url": "https://symfony.com/sponsor",
  7767. "type": "custom"
  7768. },
  7769. {
  7770. "url": "https://github.com/fabpot",
  7771. "type": "github"
  7772. },
  7773. {
  7774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7775. "type": "tidelift"
  7776. }
  7777. ],
  7778. "time": "2024-09-27T18:14:25+00:00"
  7779. },
  7780. {
  7781. "name": "symfony/translation-contracts",
  7782. "version": "v3.5.1",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/symfony/translation-contracts.git",
  7786. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7791. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "php": ">=8.1"
  7796. },
  7797. "type": "library",
  7798. "extra": {
  7799. "branch-alias": {
  7800. "dev-main": "3.5-dev"
  7801. },
  7802. "thanks": {
  7803. "name": "symfony/contracts",
  7804. "url": "https://github.com/symfony/contracts"
  7805. }
  7806. },
  7807. "autoload": {
  7808. "psr-4": {
  7809. "Symfony\\Contracts\\Translation\\": ""
  7810. },
  7811. "exclude-from-classmap": [
  7812. "/Test/"
  7813. ]
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Nicolas Grekas",
  7822. "email": "p@tchwork.com"
  7823. },
  7824. {
  7825. "name": "Symfony Community",
  7826. "homepage": "https://symfony.com/contributors"
  7827. }
  7828. ],
  7829. "description": "Generic abstractions related to translation",
  7830. "homepage": "https://symfony.com",
  7831. "keywords": [
  7832. "abstractions",
  7833. "contracts",
  7834. "decoupling",
  7835. "interfaces",
  7836. "interoperability",
  7837. "standards"
  7838. ],
  7839. "support": {
  7840. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  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-25T14:20:29+00:00"
  7857. },
  7858. {
  7859. "name": "vlucas/phpdotenv",
  7860. "version": "v5.6.1",
  7861. "source": {
  7862. "type": "git",
  7863. "url": "https://github.com/vlucas/phpdotenv.git",
  7864. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7865. },
  7866. "dist": {
  7867. "type": "zip",
  7868. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7869. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7870. "shasum": ""
  7871. },
  7872. "require": {
  7873. "ext-pcre": "*",
  7874. "graham-campbell/result-type": "^1.1.3",
  7875. "php": "^7.2.5 || ^8.0",
  7876. "phpoption/phpoption": "^1.9.3",
  7877. "symfony/polyfill-ctype": "^1.24",
  7878. "symfony/polyfill-mbstring": "^1.24",
  7879. "symfony/polyfill-php80": "^1.24"
  7880. },
  7881. "require-dev": {
  7882. "bamarni/composer-bin-plugin": "^1.8.2",
  7883. "ext-filter": "*",
  7884. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7885. },
  7886. "suggest": {
  7887. "ext-filter": "Required to use the boolean validator."
  7888. },
  7889. "type": "library",
  7890. "extra": {
  7891. "bamarni-bin": {
  7892. "bin-links": true,
  7893. "forward-command": false
  7894. },
  7895. "branch-alias": {
  7896. "dev-master": "5.6-dev"
  7897. }
  7898. },
  7899. "autoload": {
  7900. "psr-4": {
  7901. "Dotenv\\": "src/"
  7902. }
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "BSD-3-Clause"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Graham Campbell",
  7911. "email": "hello@gjcampbell.co.uk",
  7912. "homepage": "https://github.com/GrahamCampbell"
  7913. },
  7914. {
  7915. "name": "Vance Lucas",
  7916. "email": "vance@vancelucas.com",
  7917. "homepage": "https://github.com/vlucas"
  7918. }
  7919. ],
  7920. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7921. "keywords": [
  7922. "dotenv",
  7923. "env",
  7924. "environment"
  7925. ],
  7926. "support": {
  7927. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7928. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7929. },
  7930. "funding": [
  7931. {
  7932. "url": "https://github.com/GrahamCampbell",
  7933. "type": "github"
  7934. },
  7935. {
  7936. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7937. "type": "tidelift"
  7938. }
  7939. ],
  7940. "time": "2024-07-20T21:52:34+00:00"
  7941. }
  7942. ],
  7943. "packages-dev": [
  7944. {
  7945. "name": "clue/ndjson-react",
  7946. "version": "v1.3.0",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/clue/reactphp-ndjson.git",
  7950. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7955. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "php": ">=5.3",
  7960. "react/stream": "^1.2"
  7961. },
  7962. "require-dev": {
  7963. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7964. "react/event-loop": "^1.2"
  7965. },
  7966. "type": "library",
  7967. "autoload": {
  7968. "psr-4": {
  7969. "Clue\\React\\NDJson\\": "src/"
  7970. }
  7971. },
  7972. "notification-url": "https://packagist.org/downloads/",
  7973. "license": [
  7974. "MIT"
  7975. ],
  7976. "authors": [
  7977. {
  7978. "name": "Christian Lück",
  7979. "email": "christian@clue.engineering"
  7980. }
  7981. ],
  7982. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7983. "homepage": "https://github.com/clue/reactphp-ndjson",
  7984. "keywords": [
  7985. "NDJSON",
  7986. "json",
  7987. "jsonlines",
  7988. "newline",
  7989. "reactphp",
  7990. "streaming"
  7991. ],
  7992. "support": {
  7993. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7994. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7995. },
  7996. "funding": [
  7997. {
  7998. "url": "https://clue.engineering/support",
  7999. "type": "custom"
  8000. },
  8001. {
  8002. "url": "https://github.com/clue",
  8003. "type": "github"
  8004. }
  8005. ],
  8006. "time": "2022-12-23T10:58:28+00:00"
  8007. },
  8008. {
  8009. "name": "composer/pcre",
  8010. "version": "3.3.2",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/composer/pcre.git",
  8014. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8019. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": "^7.4 || ^8.0"
  8024. },
  8025. "conflict": {
  8026. "phpstan/phpstan": "<1.11.10"
  8027. },
  8028. "require-dev": {
  8029. "phpstan/phpstan": "^1.12 || ^2",
  8030. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8031. "phpunit/phpunit": "^8 || ^9"
  8032. },
  8033. "type": "library",
  8034. "extra": {
  8035. "branch-alias": {
  8036. "dev-main": "3.x-dev"
  8037. },
  8038. "phpstan": {
  8039. "includes": [
  8040. "extension.neon"
  8041. ]
  8042. }
  8043. },
  8044. "autoload": {
  8045. "psr-4": {
  8046. "Composer\\Pcre\\": "src"
  8047. }
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Jordi Boggiano",
  8056. "email": "j.boggiano@seld.be",
  8057. "homepage": "http://seld.be"
  8058. }
  8059. ],
  8060. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8061. "keywords": [
  8062. "PCRE",
  8063. "preg",
  8064. "regex",
  8065. "regular expression"
  8066. ],
  8067. "support": {
  8068. "issues": "https://github.com/composer/pcre/issues",
  8069. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8070. },
  8071. "funding": [
  8072. {
  8073. "url": "https://packagist.com",
  8074. "type": "custom"
  8075. },
  8076. {
  8077. "url": "https://github.com/composer",
  8078. "type": "github"
  8079. },
  8080. {
  8081. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8082. "type": "tidelift"
  8083. }
  8084. ],
  8085. "time": "2024-11-12T16:29:46+00:00"
  8086. },
  8087. {
  8088. "name": "composer/semver",
  8089. "version": "3.4.3",
  8090. "source": {
  8091. "type": "git",
  8092. "url": "https://github.com/composer/semver.git",
  8093. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8094. },
  8095. "dist": {
  8096. "type": "zip",
  8097. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8098. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8099. "shasum": ""
  8100. },
  8101. "require": {
  8102. "php": "^5.3.2 || ^7.0 || ^8.0"
  8103. },
  8104. "require-dev": {
  8105. "phpstan/phpstan": "^1.11",
  8106. "symfony/phpunit-bridge": "^3 || ^7"
  8107. },
  8108. "type": "library",
  8109. "extra": {
  8110. "branch-alias": {
  8111. "dev-main": "3.x-dev"
  8112. }
  8113. },
  8114. "autoload": {
  8115. "psr-4": {
  8116. "Composer\\Semver\\": "src"
  8117. }
  8118. },
  8119. "notification-url": "https://packagist.org/downloads/",
  8120. "license": [
  8121. "MIT"
  8122. ],
  8123. "authors": [
  8124. {
  8125. "name": "Nils Adermann",
  8126. "email": "naderman@naderman.de",
  8127. "homepage": "http://www.naderman.de"
  8128. },
  8129. {
  8130. "name": "Jordi Boggiano",
  8131. "email": "j.boggiano@seld.be",
  8132. "homepage": "http://seld.be"
  8133. },
  8134. {
  8135. "name": "Rob Bast",
  8136. "email": "rob.bast@gmail.com",
  8137. "homepage": "http://robbast.nl"
  8138. }
  8139. ],
  8140. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8141. "keywords": [
  8142. "semantic",
  8143. "semver",
  8144. "validation",
  8145. "versioning"
  8146. ],
  8147. "support": {
  8148. "irc": "ircs://irc.libera.chat:6697/composer",
  8149. "issues": "https://github.com/composer/semver/issues",
  8150. "source": "https://github.com/composer/semver/tree/3.4.3"
  8151. },
  8152. "funding": [
  8153. {
  8154. "url": "https://packagist.com",
  8155. "type": "custom"
  8156. },
  8157. {
  8158. "url": "https://github.com/composer",
  8159. "type": "github"
  8160. },
  8161. {
  8162. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8163. "type": "tidelift"
  8164. }
  8165. ],
  8166. "time": "2024-09-19T14:15:21+00:00"
  8167. },
  8168. {
  8169. "name": "composer/xdebug-handler",
  8170. "version": "3.0.5",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/composer/xdebug-handler.git",
  8174. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8179. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "composer/pcre": "^1 || ^2 || ^3",
  8184. "php": "^7.2.5 || ^8.0",
  8185. "psr/log": "^1 || ^2 || ^3"
  8186. },
  8187. "require-dev": {
  8188. "phpstan/phpstan": "^1.0",
  8189. "phpstan/phpstan-strict-rules": "^1.1",
  8190. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8191. },
  8192. "type": "library",
  8193. "autoload": {
  8194. "psr-4": {
  8195. "Composer\\XdebugHandler\\": "src"
  8196. }
  8197. },
  8198. "notification-url": "https://packagist.org/downloads/",
  8199. "license": [
  8200. "MIT"
  8201. ],
  8202. "authors": [
  8203. {
  8204. "name": "John Stevenson",
  8205. "email": "john-stevenson@blueyonder.co.uk"
  8206. }
  8207. ],
  8208. "description": "Restarts a process without Xdebug.",
  8209. "keywords": [
  8210. "Xdebug",
  8211. "performance"
  8212. ],
  8213. "support": {
  8214. "irc": "ircs://irc.libera.chat:6697/composer",
  8215. "issues": "https://github.com/composer/xdebug-handler/issues",
  8216. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8217. },
  8218. "funding": [
  8219. {
  8220. "url": "https://packagist.com",
  8221. "type": "custom"
  8222. },
  8223. {
  8224. "url": "https://github.com/composer",
  8225. "type": "github"
  8226. },
  8227. {
  8228. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8229. "type": "tidelift"
  8230. }
  8231. ],
  8232. "time": "2024-05-06T16:37:16+00:00"
  8233. },
  8234. {
  8235. "name": "evenement/evenement",
  8236. "version": "v3.0.2",
  8237. "source": {
  8238. "type": "git",
  8239. "url": "https://github.com/igorw/evenement.git",
  8240. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8241. },
  8242. "dist": {
  8243. "type": "zip",
  8244. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8245. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8246. "shasum": ""
  8247. },
  8248. "require": {
  8249. "php": ">=7.0"
  8250. },
  8251. "require-dev": {
  8252. "phpunit/phpunit": "^9 || ^6"
  8253. },
  8254. "type": "library",
  8255. "autoload": {
  8256. "psr-4": {
  8257. "Evenement\\": "src/"
  8258. }
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "MIT"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Igor Wiedler",
  8267. "email": "igor@wiedler.ch"
  8268. }
  8269. ],
  8270. "description": "Événement is a very simple event dispatching library for PHP",
  8271. "keywords": [
  8272. "event-dispatcher",
  8273. "event-emitter"
  8274. ],
  8275. "support": {
  8276. "issues": "https://github.com/igorw/evenement/issues",
  8277. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8278. },
  8279. "time": "2023-08-08T05:53:35+00:00"
  8280. },
  8281. {
  8282. "name": "fidry/cpu-core-counter",
  8283. "version": "1.2.0",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8287. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8292. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8293. "shasum": ""
  8294. },
  8295. "require": {
  8296. "php": "^7.2 || ^8.0"
  8297. },
  8298. "require-dev": {
  8299. "fidry/makefile": "^0.2.0",
  8300. "fidry/php-cs-fixer-config": "^1.1.2",
  8301. "phpstan/extension-installer": "^1.2.0",
  8302. "phpstan/phpstan": "^1.9.2",
  8303. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8304. "phpstan/phpstan-phpunit": "^1.2.2",
  8305. "phpstan/phpstan-strict-rules": "^1.4.4",
  8306. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8307. "webmozarts/strict-phpunit": "^7.5"
  8308. },
  8309. "type": "library",
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Fidry\\CpuCoreCounter\\": "src/"
  8313. }
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "MIT"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "Théo FIDRY",
  8322. "email": "theo.fidry@gmail.com"
  8323. }
  8324. ],
  8325. "description": "Tiny utility to get the number of CPU cores.",
  8326. "keywords": [
  8327. "CPU",
  8328. "core"
  8329. ],
  8330. "support": {
  8331. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8332. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8333. },
  8334. "funding": [
  8335. {
  8336. "url": "https://github.com/theofidry",
  8337. "type": "github"
  8338. }
  8339. ],
  8340. "time": "2024-08-06T10:04:20+00:00"
  8341. },
  8342. {
  8343. "name": "friendsofphp/php-cs-fixer",
  8344. "version": "v3.65.0",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8348. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8353. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "clue/ndjson-react": "^1.0",
  8358. "composer/semver": "^3.4",
  8359. "composer/xdebug-handler": "^3.0.3",
  8360. "ext-filter": "*",
  8361. "ext-json": "*",
  8362. "ext-tokenizer": "*",
  8363. "fidry/cpu-core-counter": "^1.2",
  8364. "php": "^7.4 || ^8.0",
  8365. "react/child-process": "^0.6.5",
  8366. "react/event-loop": "^1.0",
  8367. "react/promise": "^2.0 || ^3.0",
  8368. "react/socket": "^1.0",
  8369. "react/stream": "^1.0",
  8370. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8371. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8372. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8373. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8374. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8375. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8376. "symfony/polyfill-mbstring": "^1.28",
  8377. "symfony/polyfill-php80": "^1.28",
  8378. "symfony/polyfill-php81": "^1.28",
  8379. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8380. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8381. },
  8382. "require-dev": {
  8383. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8384. "infection/infection": "^0.29.8",
  8385. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8386. "keradus/cli-executor": "^2.1",
  8387. "mikey179/vfsstream": "^1.6.12",
  8388. "php-coveralls/php-coveralls": "^2.7",
  8389. "php-cs-fixer/accessible-object": "^1.1",
  8390. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8391. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8392. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8393. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8394. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8395. },
  8396. "suggest": {
  8397. "ext-dom": "For handling output formats in XML",
  8398. "ext-mbstring": "For handling non-UTF8 characters."
  8399. },
  8400. "bin": [
  8401. "php-cs-fixer"
  8402. ],
  8403. "type": "application",
  8404. "autoload": {
  8405. "psr-4": {
  8406. "PhpCsFixer\\": "src/"
  8407. },
  8408. "exclude-from-classmap": [
  8409. "src/Fixer/Internal/*"
  8410. ]
  8411. },
  8412. "notification-url": "https://packagist.org/downloads/",
  8413. "license": [
  8414. "MIT"
  8415. ],
  8416. "authors": [
  8417. {
  8418. "name": "Fabien Potencier",
  8419. "email": "fabien@symfony.com"
  8420. },
  8421. {
  8422. "name": "Dariusz Rumiński",
  8423. "email": "dariusz.ruminski@gmail.com"
  8424. }
  8425. ],
  8426. "description": "A tool to automatically fix PHP code style",
  8427. "keywords": [
  8428. "Static code analysis",
  8429. "fixer",
  8430. "standards",
  8431. "static analysis"
  8432. ],
  8433. "support": {
  8434. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8435. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8436. },
  8437. "funding": [
  8438. {
  8439. "url": "https://github.com/keradus",
  8440. "type": "github"
  8441. }
  8442. ],
  8443. "time": "2024-11-25T00:39:24+00:00"
  8444. },
  8445. {
  8446. "name": "hamcrest/hamcrest-php",
  8447. "version": "v2.0.1",
  8448. "source": {
  8449. "type": "git",
  8450. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8451. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8452. },
  8453. "dist": {
  8454. "type": "zip",
  8455. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8456. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8457. "shasum": ""
  8458. },
  8459. "require": {
  8460. "php": "^5.3|^7.0|^8.0"
  8461. },
  8462. "replace": {
  8463. "cordoval/hamcrest-php": "*",
  8464. "davedevelopment/hamcrest-php": "*",
  8465. "kodova/hamcrest-php": "*"
  8466. },
  8467. "require-dev": {
  8468. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8469. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8470. },
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "2.1-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "classmap": [
  8479. "hamcrest"
  8480. ]
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "BSD-3-Clause"
  8485. ],
  8486. "description": "This is the PHP port of Hamcrest Matchers",
  8487. "keywords": [
  8488. "test"
  8489. ],
  8490. "support": {
  8491. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8492. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8493. },
  8494. "time": "2020-07-09T08:09:16+00:00"
  8495. },
  8496. {
  8497. "name": "hyperf/devtool",
  8498. "version": "v3.1.42",
  8499. "source": {
  8500. "type": "git",
  8501. "url": "https://github.com/hyperf/devtool.git",
  8502. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8503. },
  8504. "dist": {
  8505. "type": "zip",
  8506. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8507. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8508. "shasum": ""
  8509. },
  8510. "require": {
  8511. "hyperf/code-parser": "~3.1.0",
  8512. "hyperf/command": "~3.1.0",
  8513. "hyperf/contract": "~3.1.0",
  8514. "hyperf/di": "~3.1.0",
  8515. "hyperf/support": "~3.1.0",
  8516. "hyperf/utils": "~3.1.0",
  8517. "php": ">=8.1"
  8518. },
  8519. "type": "library",
  8520. "extra": {
  8521. "branch-alias": {
  8522. "dev-master": "3.1-dev"
  8523. },
  8524. "hyperf": {
  8525. "config": "Hyperf\\Devtool\\ConfigProvider"
  8526. }
  8527. },
  8528. "autoload": {
  8529. "psr-4": {
  8530. "Hyperf\\Devtool\\": "src/"
  8531. }
  8532. },
  8533. "notification-url": "https://packagist.org/downloads/",
  8534. "license": [
  8535. "MIT"
  8536. ],
  8537. "description": "A Devtool for Hyperf.",
  8538. "homepage": "https://hyperf.io",
  8539. "keywords": [
  8540. "dev",
  8541. "devtool",
  8542. "hyperf",
  8543. "php",
  8544. "swoole"
  8545. ],
  8546. "support": {
  8547. "docs": "https://hyperf.wiki",
  8548. "issues": "https://github.com/hyperf/hyperf/issues",
  8549. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8550. "source": "https://github.com/hyperf/hyperf"
  8551. },
  8552. "funding": [
  8553. {
  8554. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8555. "type": "custom"
  8556. },
  8557. {
  8558. "url": "https://opencollective.com/hyperf",
  8559. "type": "open_collective"
  8560. }
  8561. ],
  8562. "time": "2024-09-25T02:54:12+00:00"
  8563. },
  8564. {
  8565. "name": "hyperf/testing",
  8566. "version": "v3.1.48",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/hyperf/testing.git",
  8570. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8575. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "hyperf/codec": "~3.1.0",
  8580. "hyperf/collection": "~3.1.0",
  8581. "hyperf/contract": "~3.1.0",
  8582. "hyperf/coroutine": "~3.1.0",
  8583. "hyperf/http-message": "~3.1.0",
  8584. "hyperf/http-server": "~3.1.0",
  8585. "hyperf/support": "~3.1.0",
  8586. "hyperf/utils": "~3.1.0",
  8587. "php": ">=8.1",
  8588. "phpunit/phpunit": "^10.0",
  8589. "psr/container": "^1.0 || ^2.0",
  8590. "symfony/http-foundation": "^5.4 || ^6.0"
  8591. },
  8592. "suggest": {
  8593. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8594. },
  8595. "bin": [
  8596. "co-phpunit"
  8597. ],
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-master": "3.1-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "psr-4": {
  8606. "Hyperf\\Testing\\": "src/"
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "description": "Testing for hyperf",
  8614. "keywords": [
  8615. "dev",
  8616. "php",
  8617. "swoole",
  8618. "testing"
  8619. ],
  8620. "support": {
  8621. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://opencollective.com/hyperf",
  8630. "type": "open_collective"
  8631. }
  8632. ],
  8633. "time": "2024-12-12T02:12:29+00:00"
  8634. },
  8635. {
  8636. "name": "hyperf/watcher",
  8637. "version": "v3.1.43",
  8638. "source": {
  8639. "type": "git",
  8640. "url": "https://github.com/hyperf/watcher.git",
  8641. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8642. },
  8643. "dist": {
  8644. "type": "zip",
  8645. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8646. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8647. "shasum": ""
  8648. },
  8649. "require": {
  8650. "ext-posix": "*",
  8651. "hyperf/codec": "~3.1.0",
  8652. "hyperf/command": "~3.1.0",
  8653. "hyperf/di": "~3.1.0",
  8654. "hyperf/framework": "~3.1.0",
  8655. "hyperf/support": "~3.1.0",
  8656. "php": ">=8.1"
  8657. },
  8658. "type": "library",
  8659. "extra": {
  8660. "branch-alias": {
  8661. "dev-master": "3.1-dev"
  8662. },
  8663. "hyperf": {
  8664. "config": "Hyperf\\Watcher\\ConfigProvider"
  8665. }
  8666. },
  8667. "autoload": {
  8668. "files": [
  8669. "src/Functions.php"
  8670. ],
  8671. "psr-4": {
  8672. "Hyperf\\Watcher\\": "src/"
  8673. }
  8674. },
  8675. "notification-url": "https://packagist.org/downloads/",
  8676. "license": [
  8677. "MIT"
  8678. ],
  8679. "description": "Hot reload watcher for Hyperf",
  8680. "keywords": [
  8681. "dev",
  8682. "hyperf",
  8683. "php"
  8684. ],
  8685. "support": {
  8686. "issues": "https://github.com/hyperf/watcher/issues",
  8687. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8688. },
  8689. "funding": [
  8690. {
  8691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8692. "type": "custom"
  8693. },
  8694. {
  8695. "url": "https://opencollective.com/hyperf",
  8696. "type": "open_collective"
  8697. }
  8698. ],
  8699. "time": "2024-10-06T12:33:12+00:00"
  8700. },
  8701. {
  8702. "name": "mockery/mockery",
  8703. "version": "1.6.12",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/mockery/mockery.git",
  8707. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8712. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "hamcrest/hamcrest-php": "^2.0.1",
  8717. "lib-pcre": ">=7.0",
  8718. "php": ">=7.3"
  8719. },
  8720. "conflict": {
  8721. "phpunit/phpunit": "<8.0"
  8722. },
  8723. "require-dev": {
  8724. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8725. "symplify/easy-coding-standard": "^12.1.14"
  8726. },
  8727. "type": "library",
  8728. "autoload": {
  8729. "files": [
  8730. "library/helpers.php",
  8731. "library/Mockery.php"
  8732. ],
  8733. "psr-4": {
  8734. "Mockery\\": "library/Mockery"
  8735. }
  8736. },
  8737. "notification-url": "https://packagist.org/downloads/",
  8738. "license": [
  8739. "BSD-3-Clause"
  8740. ],
  8741. "authors": [
  8742. {
  8743. "name": "Pádraic Brady",
  8744. "email": "padraic.brady@gmail.com",
  8745. "homepage": "https://github.com/padraic",
  8746. "role": "Author"
  8747. },
  8748. {
  8749. "name": "Dave Marshall",
  8750. "email": "dave.marshall@atstsolutions.co.uk",
  8751. "homepage": "https://davedevelopment.co.uk",
  8752. "role": "Developer"
  8753. },
  8754. {
  8755. "name": "Nathanael Esayeas",
  8756. "email": "nathanael.esayeas@protonmail.com",
  8757. "homepage": "https://github.com/ghostwriter",
  8758. "role": "Lead Developer"
  8759. }
  8760. ],
  8761. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8762. "homepage": "https://github.com/mockery/mockery",
  8763. "keywords": [
  8764. "BDD",
  8765. "TDD",
  8766. "library",
  8767. "mock",
  8768. "mock objects",
  8769. "mockery",
  8770. "stub",
  8771. "test",
  8772. "test double",
  8773. "testing"
  8774. ],
  8775. "support": {
  8776. "docs": "https://docs.mockery.io/",
  8777. "issues": "https://github.com/mockery/mockery/issues",
  8778. "rss": "https://github.com/mockery/mockery/releases.atom",
  8779. "security": "https://github.com/mockery/mockery/security/advisories",
  8780. "source": "https://github.com/mockery/mockery"
  8781. },
  8782. "time": "2024-05-16T03:13:13+00:00"
  8783. },
  8784. {
  8785. "name": "myclabs/deep-copy",
  8786. "version": "1.12.1",
  8787. "source": {
  8788. "type": "git",
  8789. "url": "https://github.com/myclabs/DeepCopy.git",
  8790. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8791. },
  8792. "dist": {
  8793. "type": "zip",
  8794. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8795. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8796. "shasum": ""
  8797. },
  8798. "require": {
  8799. "php": "^7.1 || ^8.0"
  8800. },
  8801. "conflict": {
  8802. "doctrine/collections": "<1.6.8",
  8803. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8804. },
  8805. "require-dev": {
  8806. "doctrine/collections": "^1.6.8",
  8807. "doctrine/common": "^2.13.3 || ^3.2.2",
  8808. "phpspec/prophecy": "^1.10",
  8809. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8810. },
  8811. "type": "library",
  8812. "autoload": {
  8813. "files": [
  8814. "src/DeepCopy/deep_copy.php"
  8815. ],
  8816. "psr-4": {
  8817. "DeepCopy\\": "src/DeepCopy/"
  8818. }
  8819. },
  8820. "notification-url": "https://packagist.org/downloads/",
  8821. "license": [
  8822. "MIT"
  8823. ],
  8824. "description": "Create deep copies (clones) of your objects",
  8825. "keywords": [
  8826. "clone",
  8827. "copy",
  8828. "duplicate",
  8829. "object",
  8830. "object graph"
  8831. ],
  8832. "support": {
  8833. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8834. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8835. },
  8836. "funding": [
  8837. {
  8838. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8839. "type": "tidelift"
  8840. }
  8841. ],
  8842. "time": "2024-11-08T17:47:46+00:00"
  8843. },
  8844. {
  8845. "name": "phar-io/manifest",
  8846. "version": "2.0.4",
  8847. "source": {
  8848. "type": "git",
  8849. "url": "https://github.com/phar-io/manifest.git",
  8850. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8851. },
  8852. "dist": {
  8853. "type": "zip",
  8854. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8855. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8856. "shasum": ""
  8857. },
  8858. "require": {
  8859. "ext-dom": "*",
  8860. "ext-libxml": "*",
  8861. "ext-phar": "*",
  8862. "ext-xmlwriter": "*",
  8863. "phar-io/version": "^3.0.1",
  8864. "php": "^7.2 || ^8.0"
  8865. },
  8866. "type": "library",
  8867. "extra": {
  8868. "branch-alias": {
  8869. "dev-master": "2.0.x-dev"
  8870. }
  8871. },
  8872. "autoload": {
  8873. "classmap": [
  8874. "src/"
  8875. ]
  8876. },
  8877. "notification-url": "https://packagist.org/downloads/",
  8878. "license": [
  8879. "BSD-3-Clause"
  8880. ],
  8881. "authors": [
  8882. {
  8883. "name": "Arne Blankerts",
  8884. "email": "arne@blankerts.de",
  8885. "role": "Developer"
  8886. },
  8887. {
  8888. "name": "Sebastian Heuer",
  8889. "email": "sebastian@phpeople.de",
  8890. "role": "Developer"
  8891. },
  8892. {
  8893. "name": "Sebastian Bergmann",
  8894. "email": "sebastian@phpunit.de",
  8895. "role": "Developer"
  8896. }
  8897. ],
  8898. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8899. "support": {
  8900. "issues": "https://github.com/phar-io/manifest/issues",
  8901. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8902. },
  8903. "funding": [
  8904. {
  8905. "url": "https://github.com/theseer",
  8906. "type": "github"
  8907. }
  8908. ],
  8909. "time": "2024-03-03T12:33:53+00:00"
  8910. },
  8911. {
  8912. "name": "phar-io/version",
  8913. "version": "3.2.1",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/phar-io/version.git",
  8917. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8922. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "php": "^7.2 || ^8.0"
  8927. },
  8928. "type": "library",
  8929. "autoload": {
  8930. "classmap": [
  8931. "src/"
  8932. ]
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "BSD-3-Clause"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Arne Blankerts",
  8941. "email": "arne@blankerts.de",
  8942. "role": "Developer"
  8943. },
  8944. {
  8945. "name": "Sebastian Heuer",
  8946. "email": "sebastian@phpeople.de",
  8947. "role": "Developer"
  8948. },
  8949. {
  8950. "name": "Sebastian Bergmann",
  8951. "email": "sebastian@phpunit.de",
  8952. "role": "Developer"
  8953. }
  8954. ],
  8955. "description": "Library for handling version information and constraints",
  8956. "support": {
  8957. "issues": "https://github.com/phar-io/version/issues",
  8958. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8959. },
  8960. "time": "2022-02-21T01:04:05+00:00"
  8961. },
  8962. {
  8963. "name": "phpstan/phpstan",
  8964. "version": "1.12.13",
  8965. "source": {
  8966. "type": "git",
  8967. "url": "https://github.com/phpstan/phpstan.git",
  8968. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f"
  8969. },
  8970. "dist": {
  8971. "type": "zip",
  8972. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b469068840cfa031e1deaf2fa1886d00e20680f",
  8973. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f",
  8974. "shasum": ""
  8975. },
  8976. "require": {
  8977. "php": "^7.2|^8.0"
  8978. },
  8979. "conflict": {
  8980. "phpstan/phpstan-shim": "*"
  8981. },
  8982. "bin": [
  8983. "phpstan",
  8984. "phpstan.phar"
  8985. ],
  8986. "type": "library",
  8987. "autoload": {
  8988. "files": [
  8989. "bootstrap.php"
  8990. ]
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "MIT"
  8995. ],
  8996. "description": "PHPStan - PHP Static Analysis Tool",
  8997. "keywords": [
  8998. "dev",
  8999. "static analysis"
  9000. ],
  9001. "support": {
  9002. "docs": "https://phpstan.org/user-guide/getting-started",
  9003. "forum": "https://github.com/phpstan/phpstan/discussions",
  9004. "issues": "https://github.com/phpstan/phpstan/issues",
  9005. "security": "https://github.com/phpstan/phpstan/security/policy",
  9006. "source": "https://github.com/phpstan/phpstan-src"
  9007. },
  9008. "funding": [
  9009. {
  9010. "url": "https://github.com/ondrejmirtes",
  9011. "type": "github"
  9012. },
  9013. {
  9014. "url": "https://github.com/phpstan",
  9015. "type": "github"
  9016. }
  9017. ],
  9018. "time": "2024-12-17T17:00:20+00:00"
  9019. },
  9020. {
  9021. "name": "phpunit/php-code-coverage",
  9022. "version": "10.1.16",
  9023. "source": {
  9024. "type": "git",
  9025. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9026. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9027. },
  9028. "dist": {
  9029. "type": "zip",
  9030. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9031. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9032. "shasum": ""
  9033. },
  9034. "require": {
  9035. "ext-dom": "*",
  9036. "ext-libxml": "*",
  9037. "ext-xmlwriter": "*",
  9038. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9039. "php": ">=8.1",
  9040. "phpunit/php-file-iterator": "^4.1.0",
  9041. "phpunit/php-text-template": "^3.0.1",
  9042. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9043. "sebastian/complexity": "^3.2.0",
  9044. "sebastian/environment": "^6.1.0",
  9045. "sebastian/lines-of-code": "^2.0.2",
  9046. "sebastian/version": "^4.0.1",
  9047. "theseer/tokenizer": "^1.2.3"
  9048. },
  9049. "require-dev": {
  9050. "phpunit/phpunit": "^10.1"
  9051. },
  9052. "suggest": {
  9053. "ext-pcov": "PHP extension that provides line coverage",
  9054. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-main": "10.1.x-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "classmap": [
  9064. "src/"
  9065. ]
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Sebastian Bergmann",
  9074. "email": "sebastian@phpunit.de",
  9075. "role": "lead"
  9076. }
  9077. ],
  9078. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9079. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9080. "keywords": [
  9081. "coverage",
  9082. "testing",
  9083. "xunit"
  9084. ],
  9085. "support": {
  9086. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9087. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9088. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9089. },
  9090. "funding": [
  9091. {
  9092. "url": "https://github.com/sebastianbergmann",
  9093. "type": "github"
  9094. }
  9095. ],
  9096. "time": "2024-08-22T04:31:57+00:00"
  9097. },
  9098. {
  9099. "name": "phpunit/php-file-iterator",
  9100. "version": "4.1.0",
  9101. "source": {
  9102. "type": "git",
  9103. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9104. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9105. },
  9106. "dist": {
  9107. "type": "zip",
  9108. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9109. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9110. "shasum": ""
  9111. },
  9112. "require": {
  9113. "php": ">=8.1"
  9114. },
  9115. "require-dev": {
  9116. "phpunit/phpunit": "^10.0"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-main": "4.0-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9141. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9142. "keywords": [
  9143. "filesystem",
  9144. "iterator"
  9145. ],
  9146. "support": {
  9147. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9148. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9149. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9150. },
  9151. "funding": [
  9152. {
  9153. "url": "https://github.com/sebastianbergmann",
  9154. "type": "github"
  9155. }
  9156. ],
  9157. "time": "2023-08-31T06:24:48+00:00"
  9158. },
  9159. {
  9160. "name": "phpunit/php-invoker",
  9161. "version": "4.0.0",
  9162. "source": {
  9163. "type": "git",
  9164. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9165. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9166. },
  9167. "dist": {
  9168. "type": "zip",
  9169. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9170. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9171. "shasum": ""
  9172. },
  9173. "require": {
  9174. "php": ">=8.1"
  9175. },
  9176. "require-dev": {
  9177. "ext-pcntl": "*",
  9178. "phpunit/phpunit": "^10.0"
  9179. },
  9180. "suggest": {
  9181. "ext-pcntl": "*"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "branch-alias": {
  9186. "dev-main": "4.0-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "classmap": [
  9191. "src/"
  9192. ]
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "BSD-3-Clause"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Sebastian Bergmann",
  9201. "email": "sebastian@phpunit.de",
  9202. "role": "lead"
  9203. }
  9204. ],
  9205. "description": "Invoke callables with a timeout",
  9206. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9207. "keywords": [
  9208. "process"
  9209. ],
  9210. "support": {
  9211. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9212. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://github.com/sebastianbergmann",
  9217. "type": "github"
  9218. }
  9219. ],
  9220. "time": "2023-02-03T06:56:09+00:00"
  9221. },
  9222. {
  9223. "name": "phpunit/php-text-template",
  9224. "version": "3.0.1",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9228. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9233. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": ">=8.1"
  9238. },
  9239. "require-dev": {
  9240. "phpunit/phpunit": "^10.0"
  9241. },
  9242. "type": "library",
  9243. "extra": {
  9244. "branch-alias": {
  9245. "dev-main": "3.0-dev"
  9246. }
  9247. },
  9248. "autoload": {
  9249. "classmap": [
  9250. "src/"
  9251. ]
  9252. },
  9253. "notification-url": "https://packagist.org/downloads/",
  9254. "license": [
  9255. "BSD-3-Clause"
  9256. ],
  9257. "authors": [
  9258. {
  9259. "name": "Sebastian Bergmann",
  9260. "email": "sebastian@phpunit.de",
  9261. "role": "lead"
  9262. }
  9263. ],
  9264. "description": "Simple template engine.",
  9265. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9266. "keywords": [
  9267. "template"
  9268. ],
  9269. "support": {
  9270. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9271. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9272. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://github.com/sebastianbergmann",
  9277. "type": "github"
  9278. }
  9279. ],
  9280. "time": "2023-08-31T14:07:24+00:00"
  9281. },
  9282. {
  9283. "name": "phpunit/php-timer",
  9284. "version": "6.0.0",
  9285. "source": {
  9286. "type": "git",
  9287. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9288. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9289. },
  9290. "dist": {
  9291. "type": "zip",
  9292. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9293. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9294. "shasum": ""
  9295. },
  9296. "require": {
  9297. "php": ">=8.1"
  9298. },
  9299. "require-dev": {
  9300. "phpunit/phpunit": "^10.0"
  9301. },
  9302. "type": "library",
  9303. "extra": {
  9304. "branch-alias": {
  9305. "dev-main": "6.0-dev"
  9306. }
  9307. },
  9308. "autoload": {
  9309. "classmap": [
  9310. "src/"
  9311. ]
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "BSD-3-Clause"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Sebastian Bergmann",
  9320. "email": "sebastian@phpunit.de",
  9321. "role": "lead"
  9322. }
  9323. ],
  9324. "description": "Utility class for timing",
  9325. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9326. "keywords": [
  9327. "timer"
  9328. ],
  9329. "support": {
  9330. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9331. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9332. },
  9333. "funding": [
  9334. {
  9335. "url": "https://github.com/sebastianbergmann",
  9336. "type": "github"
  9337. }
  9338. ],
  9339. "time": "2023-02-03T06:57:52+00:00"
  9340. },
  9341. {
  9342. "name": "phpunit/phpunit",
  9343. "version": "10.5.39",
  9344. "source": {
  9345. "type": "git",
  9346. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9347. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9"
  9348. },
  9349. "dist": {
  9350. "type": "zip",
  9351. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4e89eff200b801db58f3d580ad7426431949eaa9",
  9352. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9",
  9353. "shasum": ""
  9354. },
  9355. "require": {
  9356. "ext-dom": "*",
  9357. "ext-json": "*",
  9358. "ext-libxml": "*",
  9359. "ext-mbstring": "*",
  9360. "ext-xml": "*",
  9361. "ext-xmlwriter": "*",
  9362. "myclabs/deep-copy": "^1.12.1",
  9363. "phar-io/manifest": "^2.0.4",
  9364. "phar-io/version": "^3.2.1",
  9365. "php": ">=8.1",
  9366. "phpunit/php-code-coverage": "^10.1.16",
  9367. "phpunit/php-file-iterator": "^4.1.0",
  9368. "phpunit/php-invoker": "^4.0.0",
  9369. "phpunit/php-text-template": "^3.0.1",
  9370. "phpunit/php-timer": "^6.0.0",
  9371. "sebastian/cli-parser": "^2.0.1",
  9372. "sebastian/code-unit": "^2.0.0",
  9373. "sebastian/comparator": "^5.0.3",
  9374. "sebastian/diff": "^5.1.1",
  9375. "sebastian/environment": "^6.1.0",
  9376. "sebastian/exporter": "^5.1.2",
  9377. "sebastian/global-state": "^6.0.2",
  9378. "sebastian/object-enumerator": "^5.0.0",
  9379. "sebastian/recursion-context": "^5.0.0",
  9380. "sebastian/type": "^4.0.0",
  9381. "sebastian/version": "^4.0.1"
  9382. },
  9383. "suggest": {
  9384. "ext-soap": "To be able to generate mocks based on WSDL files"
  9385. },
  9386. "bin": [
  9387. "phpunit"
  9388. ],
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-main": "10.5-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "files": [
  9397. "src/Framework/Assert/Functions.php"
  9398. ],
  9399. "classmap": [
  9400. "src/"
  9401. ]
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "BSD-3-Clause"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Sebastian Bergmann",
  9410. "email": "sebastian@phpunit.de",
  9411. "role": "lead"
  9412. }
  9413. ],
  9414. "description": "The PHP Unit Testing framework.",
  9415. "homepage": "https://phpunit.de/",
  9416. "keywords": [
  9417. "phpunit",
  9418. "testing",
  9419. "xunit"
  9420. ],
  9421. "support": {
  9422. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9423. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9424. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.39"
  9425. },
  9426. "funding": [
  9427. {
  9428. "url": "https://phpunit.de/sponsors.html",
  9429. "type": "custom"
  9430. },
  9431. {
  9432. "url": "https://github.com/sebastianbergmann",
  9433. "type": "github"
  9434. },
  9435. {
  9436. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9437. "type": "tidelift"
  9438. }
  9439. ],
  9440. "time": "2024-12-11T10:51:07+00:00"
  9441. },
  9442. {
  9443. "name": "react/cache",
  9444. "version": "v1.2.0",
  9445. "source": {
  9446. "type": "git",
  9447. "url": "https://github.com/reactphp/cache.git",
  9448. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9449. },
  9450. "dist": {
  9451. "type": "zip",
  9452. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9453. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9454. "shasum": ""
  9455. },
  9456. "require": {
  9457. "php": ">=5.3.0",
  9458. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9459. },
  9460. "require-dev": {
  9461. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9462. },
  9463. "type": "library",
  9464. "autoload": {
  9465. "psr-4": {
  9466. "React\\Cache\\": "src/"
  9467. }
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "MIT"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Christian Lück",
  9476. "email": "christian@clue.engineering",
  9477. "homepage": "https://clue.engineering/"
  9478. },
  9479. {
  9480. "name": "Cees-Jan Kiewiet",
  9481. "email": "reactphp@ceesjankiewiet.nl",
  9482. "homepage": "https://wyrihaximus.net/"
  9483. },
  9484. {
  9485. "name": "Jan Sorgalla",
  9486. "email": "jsorgalla@gmail.com",
  9487. "homepage": "https://sorgalla.com/"
  9488. },
  9489. {
  9490. "name": "Chris Boden",
  9491. "email": "cboden@gmail.com",
  9492. "homepage": "https://cboden.dev/"
  9493. }
  9494. ],
  9495. "description": "Async, Promise-based cache interface for ReactPHP",
  9496. "keywords": [
  9497. "cache",
  9498. "caching",
  9499. "promise",
  9500. "reactphp"
  9501. ],
  9502. "support": {
  9503. "issues": "https://github.com/reactphp/cache/issues",
  9504. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9505. },
  9506. "funding": [
  9507. {
  9508. "url": "https://opencollective.com/reactphp",
  9509. "type": "open_collective"
  9510. }
  9511. ],
  9512. "time": "2022-11-30T15:59:55+00:00"
  9513. },
  9514. {
  9515. "name": "react/child-process",
  9516. "version": "v0.6.5",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/reactphp/child-process.git",
  9520. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9525. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9530. "php": ">=5.3.0",
  9531. "react/event-loop": "^1.2",
  9532. "react/stream": "^1.2"
  9533. },
  9534. "require-dev": {
  9535. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9536. "react/socket": "^1.8",
  9537. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9538. },
  9539. "type": "library",
  9540. "autoload": {
  9541. "psr-4": {
  9542. "React\\ChildProcess\\": "src"
  9543. }
  9544. },
  9545. "notification-url": "https://packagist.org/downloads/",
  9546. "license": [
  9547. "MIT"
  9548. ],
  9549. "authors": [
  9550. {
  9551. "name": "Christian Lück",
  9552. "email": "christian@clue.engineering",
  9553. "homepage": "https://clue.engineering/"
  9554. },
  9555. {
  9556. "name": "Cees-Jan Kiewiet",
  9557. "email": "reactphp@ceesjankiewiet.nl",
  9558. "homepage": "https://wyrihaximus.net/"
  9559. },
  9560. {
  9561. "name": "Jan Sorgalla",
  9562. "email": "jsorgalla@gmail.com",
  9563. "homepage": "https://sorgalla.com/"
  9564. },
  9565. {
  9566. "name": "Chris Boden",
  9567. "email": "cboden@gmail.com",
  9568. "homepage": "https://cboden.dev/"
  9569. }
  9570. ],
  9571. "description": "Event-driven library for executing child processes with ReactPHP.",
  9572. "keywords": [
  9573. "event-driven",
  9574. "process",
  9575. "reactphp"
  9576. ],
  9577. "support": {
  9578. "issues": "https://github.com/reactphp/child-process/issues",
  9579. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9580. },
  9581. "funding": [
  9582. {
  9583. "url": "https://github.com/WyriHaximus",
  9584. "type": "github"
  9585. },
  9586. {
  9587. "url": "https://github.com/clue",
  9588. "type": "github"
  9589. }
  9590. ],
  9591. "time": "2022-09-16T13:41:56+00:00"
  9592. },
  9593. {
  9594. "name": "react/dns",
  9595. "version": "v1.13.0",
  9596. "source": {
  9597. "type": "git",
  9598. "url": "https://github.com/reactphp/dns.git",
  9599. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9600. },
  9601. "dist": {
  9602. "type": "zip",
  9603. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9604. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9605. "shasum": ""
  9606. },
  9607. "require": {
  9608. "php": ">=5.3.0",
  9609. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9610. "react/event-loop": "^1.2",
  9611. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9612. },
  9613. "require-dev": {
  9614. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9615. "react/async": "^4.3 || ^3 || ^2",
  9616. "react/promise-timer": "^1.11"
  9617. },
  9618. "type": "library",
  9619. "autoload": {
  9620. "psr-4": {
  9621. "React\\Dns\\": "src/"
  9622. }
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "MIT"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Christian Lück",
  9631. "email": "christian@clue.engineering",
  9632. "homepage": "https://clue.engineering/"
  9633. },
  9634. {
  9635. "name": "Cees-Jan Kiewiet",
  9636. "email": "reactphp@ceesjankiewiet.nl",
  9637. "homepage": "https://wyrihaximus.net/"
  9638. },
  9639. {
  9640. "name": "Jan Sorgalla",
  9641. "email": "jsorgalla@gmail.com",
  9642. "homepage": "https://sorgalla.com/"
  9643. },
  9644. {
  9645. "name": "Chris Boden",
  9646. "email": "cboden@gmail.com",
  9647. "homepage": "https://cboden.dev/"
  9648. }
  9649. ],
  9650. "description": "Async DNS resolver for ReactPHP",
  9651. "keywords": [
  9652. "async",
  9653. "dns",
  9654. "dns-resolver",
  9655. "reactphp"
  9656. ],
  9657. "support": {
  9658. "issues": "https://github.com/reactphp/dns/issues",
  9659. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9660. },
  9661. "funding": [
  9662. {
  9663. "url": "https://opencollective.com/reactphp",
  9664. "type": "open_collective"
  9665. }
  9666. ],
  9667. "time": "2024-06-13T14:18:03+00:00"
  9668. },
  9669. {
  9670. "name": "react/event-loop",
  9671. "version": "v1.5.0",
  9672. "source": {
  9673. "type": "git",
  9674. "url": "https://github.com/reactphp/event-loop.git",
  9675. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9676. },
  9677. "dist": {
  9678. "type": "zip",
  9679. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9680. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9681. "shasum": ""
  9682. },
  9683. "require": {
  9684. "php": ">=5.3.0"
  9685. },
  9686. "require-dev": {
  9687. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9688. },
  9689. "suggest": {
  9690. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9691. },
  9692. "type": "library",
  9693. "autoload": {
  9694. "psr-4": {
  9695. "React\\EventLoop\\": "src/"
  9696. }
  9697. },
  9698. "notification-url": "https://packagist.org/downloads/",
  9699. "license": [
  9700. "MIT"
  9701. ],
  9702. "authors": [
  9703. {
  9704. "name": "Christian Lück",
  9705. "email": "christian@clue.engineering",
  9706. "homepage": "https://clue.engineering/"
  9707. },
  9708. {
  9709. "name": "Cees-Jan Kiewiet",
  9710. "email": "reactphp@ceesjankiewiet.nl",
  9711. "homepage": "https://wyrihaximus.net/"
  9712. },
  9713. {
  9714. "name": "Jan Sorgalla",
  9715. "email": "jsorgalla@gmail.com",
  9716. "homepage": "https://sorgalla.com/"
  9717. },
  9718. {
  9719. "name": "Chris Boden",
  9720. "email": "cboden@gmail.com",
  9721. "homepage": "https://cboden.dev/"
  9722. }
  9723. ],
  9724. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9725. "keywords": [
  9726. "asynchronous",
  9727. "event-loop"
  9728. ],
  9729. "support": {
  9730. "issues": "https://github.com/reactphp/event-loop/issues",
  9731. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9732. },
  9733. "funding": [
  9734. {
  9735. "url": "https://opencollective.com/reactphp",
  9736. "type": "open_collective"
  9737. }
  9738. ],
  9739. "time": "2023-11-13T13:48:05+00:00"
  9740. },
  9741. {
  9742. "name": "react/promise",
  9743. "version": "v3.2.0",
  9744. "source": {
  9745. "type": "git",
  9746. "url": "https://github.com/reactphp/promise.git",
  9747. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9748. },
  9749. "dist": {
  9750. "type": "zip",
  9751. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9752. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9753. "shasum": ""
  9754. },
  9755. "require": {
  9756. "php": ">=7.1.0"
  9757. },
  9758. "require-dev": {
  9759. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9760. "phpunit/phpunit": "^9.6 || ^7.5"
  9761. },
  9762. "type": "library",
  9763. "autoload": {
  9764. "files": [
  9765. "src/functions_include.php"
  9766. ],
  9767. "psr-4": {
  9768. "React\\Promise\\": "src/"
  9769. }
  9770. },
  9771. "notification-url": "https://packagist.org/downloads/",
  9772. "license": [
  9773. "MIT"
  9774. ],
  9775. "authors": [
  9776. {
  9777. "name": "Jan Sorgalla",
  9778. "email": "jsorgalla@gmail.com",
  9779. "homepage": "https://sorgalla.com/"
  9780. },
  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": "Chris Boden",
  9793. "email": "cboden@gmail.com",
  9794. "homepage": "https://cboden.dev/"
  9795. }
  9796. ],
  9797. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9798. "keywords": [
  9799. "promise",
  9800. "promises"
  9801. ],
  9802. "support": {
  9803. "issues": "https://github.com/reactphp/promise/issues",
  9804. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9805. },
  9806. "funding": [
  9807. {
  9808. "url": "https://opencollective.com/reactphp",
  9809. "type": "open_collective"
  9810. }
  9811. ],
  9812. "time": "2024-05-24T10:39:05+00:00"
  9813. },
  9814. {
  9815. "name": "react/socket",
  9816. "version": "v1.16.0",
  9817. "source": {
  9818. "type": "git",
  9819. "url": "https://github.com/reactphp/socket.git",
  9820. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9821. },
  9822. "dist": {
  9823. "type": "zip",
  9824. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9825. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9826. "shasum": ""
  9827. },
  9828. "require": {
  9829. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9830. "php": ">=5.3.0",
  9831. "react/dns": "^1.13",
  9832. "react/event-loop": "^1.2",
  9833. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9834. "react/stream": "^1.4"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9838. "react/async": "^4.3 || ^3.3 || ^2",
  9839. "react/promise-stream": "^1.4",
  9840. "react/promise-timer": "^1.11"
  9841. },
  9842. "type": "library",
  9843. "autoload": {
  9844. "psr-4": {
  9845. "React\\Socket\\": "src/"
  9846. }
  9847. },
  9848. "notification-url": "https://packagist.org/downloads/",
  9849. "license": [
  9850. "MIT"
  9851. ],
  9852. "authors": [
  9853. {
  9854. "name": "Christian Lück",
  9855. "email": "christian@clue.engineering",
  9856. "homepage": "https://clue.engineering/"
  9857. },
  9858. {
  9859. "name": "Cees-Jan Kiewiet",
  9860. "email": "reactphp@ceesjankiewiet.nl",
  9861. "homepage": "https://wyrihaximus.net/"
  9862. },
  9863. {
  9864. "name": "Jan Sorgalla",
  9865. "email": "jsorgalla@gmail.com",
  9866. "homepage": "https://sorgalla.com/"
  9867. },
  9868. {
  9869. "name": "Chris Boden",
  9870. "email": "cboden@gmail.com",
  9871. "homepage": "https://cboden.dev/"
  9872. }
  9873. ],
  9874. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9875. "keywords": [
  9876. "Connection",
  9877. "Socket",
  9878. "async",
  9879. "reactphp",
  9880. "stream"
  9881. ],
  9882. "support": {
  9883. "issues": "https://github.com/reactphp/socket/issues",
  9884. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9885. },
  9886. "funding": [
  9887. {
  9888. "url": "https://opencollective.com/reactphp",
  9889. "type": "open_collective"
  9890. }
  9891. ],
  9892. "time": "2024-07-26T10:38:09+00:00"
  9893. },
  9894. {
  9895. "name": "react/stream",
  9896. "version": "v1.4.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/reactphp/stream.git",
  9900. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9905. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9910. "php": ">=5.3.8",
  9911. "react/event-loop": "^1.2"
  9912. },
  9913. "require-dev": {
  9914. "clue/stream-filter": "~1.2",
  9915. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9916. },
  9917. "type": "library",
  9918. "autoload": {
  9919. "psr-4": {
  9920. "React\\Stream\\": "src/"
  9921. }
  9922. },
  9923. "notification-url": "https://packagist.org/downloads/",
  9924. "license": [
  9925. "MIT"
  9926. ],
  9927. "authors": [
  9928. {
  9929. "name": "Christian Lück",
  9930. "email": "christian@clue.engineering",
  9931. "homepage": "https://clue.engineering/"
  9932. },
  9933. {
  9934. "name": "Cees-Jan Kiewiet",
  9935. "email": "reactphp@ceesjankiewiet.nl",
  9936. "homepage": "https://wyrihaximus.net/"
  9937. },
  9938. {
  9939. "name": "Jan Sorgalla",
  9940. "email": "jsorgalla@gmail.com",
  9941. "homepage": "https://sorgalla.com/"
  9942. },
  9943. {
  9944. "name": "Chris Boden",
  9945. "email": "cboden@gmail.com",
  9946. "homepage": "https://cboden.dev/"
  9947. }
  9948. ],
  9949. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9950. "keywords": [
  9951. "event-driven",
  9952. "io",
  9953. "non-blocking",
  9954. "pipe",
  9955. "reactphp",
  9956. "readable",
  9957. "stream",
  9958. "writable"
  9959. ],
  9960. "support": {
  9961. "issues": "https://github.com/reactphp/stream/issues",
  9962. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9963. },
  9964. "funding": [
  9965. {
  9966. "url": "https://opencollective.com/reactphp",
  9967. "type": "open_collective"
  9968. }
  9969. ],
  9970. "time": "2024-06-11T12:45:25+00:00"
  9971. },
  9972. {
  9973. "name": "sebastian/cli-parser",
  9974. "version": "2.0.1",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9978. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9983. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "php": ">=8.1"
  9988. },
  9989. "require-dev": {
  9990. "phpunit/phpunit": "^10.0"
  9991. },
  9992. "type": "library",
  9993. "extra": {
  9994. "branch-alias": {
  9995. "dev-main": "2.0-dev"
  9996. }
  9997. },
  9998. "autoload": {
  9999. "classmap": [
  10000. "src/"
  10001. ]
  10002. },
  10003. "notification-url": "https://packagist.org/downloads/",
  10004. "license": [
  10005. "BSD-3-Clause"
  10006. ],
  10007. "authors": [
  10008. {
  10009. "name": "Sebastian Bergmann",
  10010. "email": "sebastian@phpunit.de",
  10011. "role": "lead"
  10012. }
  10013. ],
  10014. "description": "Library for parsing CLI options",
  10015. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10016. "support": {
  10017. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10018. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10019. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10020. },
  10021. "funding": [
  10022. {
  10023. "url": "https://github.com/sebastianbergmann",
  10024. "type": "github"
  10025. }
  10026. ],
  10027. "time": "2024-03-02T07:12:49+00:00"
  10028. },
  10029. {
  10030. "name": "sebastian/code-unit",
  10031. "version": "2.0.0",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10035. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10040. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "php": ">=8.1"
  10045. },
  10046. "require-dev": {
  10047. "phpunit/phpunit": "^10.0"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "branch-alias": {
  10052. "dev-main": "2.0-dev"
  10053. }
  10054. },
  10055. "autoload": {
  10056. "classmap": [
  10057. "src/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "BSD-3-Clause"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Sebastian Bergmann",
  10067. "email": "sebastian@phpunit.de",
  10068. "role": "lead"
  10069. }
  10070. ],
  10071. "description": "Collection of value objects that represent the PHP code units",
  10072. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10073. "support": {
  10074. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10075. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10076. },
  10077. "funding": [
  10078. {
  10079. "url": "https://github.com/sebastianbergmann",
  10080. "type": "github"
  10081. }
  10082. ],
  10083. "time": "2023-02-03T06:58:43+00:00"
  10084. },
  10085. {
  10086. "name": "sebastian/code-unit-reverse-lookup",
  10087. "version": "3.0.0",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10091. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10096. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10097. "shasum": ""
  10098. },
  10099. "require": {
  10100. "php": ">=8.1"
  10101. },
  10102. "require-dev": {
  10103. "phpunit/phpunit": "^10.0"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-main": "3.0-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "classmap": [
  10113. "src/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "BSD-3-Clause"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Sebastian Bergmann",
  10123. "email": "sebastian@phpunit.de"
  10124. }
  10125. ],
  10126. "description": "Looks up which function or method a line of code belongs to",
  10127. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10128. "support": {
  10129. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10130. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10131. },
  10132. "funding": [
  10133. {
  10134. "url": "https://github.com/sebastianbergmann",
  10135. "type": "github"
  10136. }
  10137. ],
  10138. "time": "2023-02-03T06:59:15+00:00"
  10139. },
  10140. {
  10141. "name": "sebastian/comparator",
  10142. "version": "5.0.3",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/sebastianbergmann/comparator.git",
  10146. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10151. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "ext-dom": "*",
  10156. "ext-mbstring": "*",
  10157. "php": ">=8.1",
  10158. "sebastian/diff": "^5.0",
  10159. "sebastian/exporter": "^5.0"
  10160. },
  10161. "require-dev": {
  10162. "phpunit/phpunit": "^10.5"
  10163. },
  10164. "type": "library",
  10165. "extra": {
  10166. "branch-alias": {
  10167. "dev-main": "5.0-dev"
  10168. }
  10169. },
  10170. "autoload": {
  10171. "classmap": [
  10172. "src/"
  10173. ]
  10174. },
  10175. "notification-url": "https://packagist.org/downloads/",
  10176. "license": [
  10177. "BSD-3-Clause"
  10178. ],
  10179. "authors": [
  10180. {
  10181. "name": "Sebastian Bergmann",
  10182. "email": "sebastian@phpunit.de"
  10183. },
  10184. {
  10185. "name": "Jeff Welch",
  10186. "email": "whatthejeff@gmail.com"
  10187. },
  10188. {
  10189. "name": "Volker Dusch",
  10190. "email": "github@wallbash.com"
  10191. },
  10192. {
  10193. "name": "Bernhard Schussek",
  10194. "email": "bschussek@2bepublished.at"
  10195. }
  10196. ],
  10197. "description": "Provides the functionality to compare PHP values for equality",
  10198. "homepage": "https://github.com/sebastianbergmann/comparator",
  10199. "keywords": [
  10200. "comparator",
  10201. "compare",
  10202. "equality"
  10203. ],
  10204. "support": {
  10205. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10206. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10207. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10208. },
  10209. "funding": [
  10210. {
  10211. "url": "https://github.com/sebastianbergmann",
  10212. "type": "github"
  10213. }
  10214. ],
  10215. "time": "2024-10-18T14:56:07+00:00"
  10216. },
  10217. {
  10218. "name": "sebastian/complexity",
  10219. "version": "3.2.0",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/sebastianbergmann/complexity.git",
  10223. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10228. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "nikic/php-parser": "^4.18 || ^5.0",
  10233. "php": ">=8.1"
  10234. },
  10235. "require-dev": {
  10236. "phpunit/phpunit": "^10.0"
  10237. },
  10238. "type": "library",
  10239. "extra": {
  10240. "branch-alias": {
  10241. "dev-main": "3.2-dev"
  10242. }
  10243. },
  10244. "autoload": {
  10245. "classmap": [
  10246. "src/"
  10247. ]
  10248. },
  10249. "notification-url": "https://packagist.org/downloads/",
  10250. "license": [
  10251. "BSD-3-Clause"
  10252. ],
  10253. "authors": [
  10254. {
  10255. "name": "Sebastian Bergmann",
  10256. "email": "sebastian@phpunit.de",
  10257. "role": "lead"
  10258. }
  10259. ],
  10260. "description": "Library for calculating the complexity of PHP code units",
  10261. "homepage": "https://github.com/sebastianbergmann/complexity",
  10262. "support": {
  10263. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10264. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10265. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10266. },
  10267. "funding": [
  10268. {
  10269. "url": "https://github.com/sebastianbergmann",
  10270. "type": "github"
  10271. }
  10272. ],
  10273. "time": "2023-12-21T08:37:17+00:00"
  10274. },
  10275. {
  10276. "name": "sebastian/diff",
  10277. "version": "5.1.1",
  10278. "source": {
  10279. "type": "git",
  10280. "url": "https://github.com/sebastianbergmann/diff.git",
  10281. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10282. },
  10283. "dist": {
  10284. "type": "zip",
  10285. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10286. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10287. "shasum": ""
  10288. },
  10289. "require": {
  10290. "php": ">=8.1"
  10291. },
  10292. "require-dev": {
  10293. "phpunit/phpunit": "^10.0",
  10294. "symfony/process": "^6.4"
  10295. },
  10296. "type": "library",
  10297. "extra": {
  10298. "branch-alias": {
  10299. "dev-main": "5.1-dev"
  10300. }
  10301. },
  10302. "autoload": {
  10303. "classmap": [
  10304. "src/"
  10305. ]
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "BSD-3-Clause"
  10310. ],
  10311. "authors": [
  10312. {
  10313. "name": "Sebastian Bergmann",
  10314. "email": "sebastian@phpunit.de"
  10315. },
  10316. {
  10317. "name": "Kore Nordmann",
  10318. "email": "mail@kore-nordmann.de"
  10319. }
  10320. ],
  10321. "description": "Diff implementation",
  10322. "homepage": "https://github.com/sebastianbergmann/diff",
  10323. "keywords": [
  10324. "diff",
  10325. "udiff",
  10326. "unidiff",
  10327. "unified diff"
  10328. ],
  10329. "support": {
  10330. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10331. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10332. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10333. },
  10334. "funding": [
  10335. {
  10336. "url": "https://github.com/sebastianbergmann",
  10337. "type": "github"
  10338. }
  10339. ],
  10340. "time": "2024-03-02T07:15:17+00:00"
  10341. },
  10342. {
  10343. "name": "sebastian/environment",
  10344. "version": "6.1.0",
  10345. "source": {
  10346. "type": "git",
  10347. "url": "https://github.com/sebastianbergmann/environment.git",
  10348. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10349. },
  10350. "dist": {
  10351. "type": "zip",
  10352. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10353. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10354. "shasum": ""
  10355. },
  10356. "require": {
  10357. "php": ">=8.1"
  10358. },
  10359. "require-dev": {
  10360. "phpunit/phpunit": "^10.0"
  10361. },
  10362. "suggest": {
  10363. "ext-posix": "*"
  10364. },
  10365. "type": "library",
  10366. "extra": {
  10367. "branch-alias": {
  10368. "dev-main": "6.1-dev"
  10369. }
  10370. },
  10371. "autoload": {
  10372. "classmap": [
  10373. "src/"
  10374. ]
  10375. },
  10376. "notification-url": "https://packagist.org/downloads/",
  10377. "license": [
  10378. "BSD-3-Clause"
  10379. ],
  10380. "authors": [
  10381. {
  10382. "name": "Sebastian Bergmann",
  10383. "email": "sebastian@phpunit.de"
  10384. }
  10385. ],
  10386. "description": "Provides functionality to handle HHVM/PHP environments",
  10387. "homepage": "https://github.com/sebastianbergmann/environment",
  10388. "keywords": [
  10389. "Xdebug",
  10390. "environment",
  10391. "hhvm"
  10392. ],
  10393. "support": {
  10394. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10395. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10396. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10397. },
  10398. "funding": [
  10399. {
  10400. "url": "https://github.com/sebastianbergmann",
  10401. "type": "github"
  10402. }
  10403. ],
  10404. "time": "2024-03-23T08:47:14+00:00"
  10405. },
  10406. {
  10407. "name": "sebastian/exporter",
  10408. "version": "5.1.2",
  10409. "source": {
  10410. "type": "git",
  10411. "url": "https://github.com/sebastianbergmann/exporter.git",
  10412. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10413. },
  10414. "dist": {
  10415. "type": "zip",
  10416. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10417. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10418. "shasum": ""
  10419. },
  10420. "require": {
  10421. "ext-mbstring": "*",
  10422. "php": ">=8.1",
  10423. "sebastian/recursion-context": "^5.0"
  10424. },
  10425. "require-dev": {
  10426. "phpunit/phpunit": "^10.0"
  10427. },
  10428. "type": "library",
  10429. "extra": {
  10430. "branch-alias": {
  10431. "dev-main": "5.1-dev"
  10432. }
  10433. },
  10434. "autoload": {
  10435. "classmap": [
  10436. "src/"
  10437. ]
  10438. },
  10439. "notification-url": "https://packagist.org/downloads/",
  10440. "license": [
  10441. "BSD-3-Clause"
  10442. ],
  10443. "authors": [
  10444. {
  10445. "name": "Sebastian Bergmann",
  10446. "email": "sebastian@phpunit.de"
  10447. },
  10448. {
  10449. "name": "Jeff Welch",
  10450. "email": "whatthejeff@gmail.com"
  10451. },
  10452. {
  10453. "name": "Volker Dusch",
  10454. "email": "github@wallbash.com"
  10455. },
  10456. {
  10457. "name": "Adam Harvey",
  10458. "email": "aharvey@php.net"
  10459. },
  10460. {
  10461. "name": "Bernhard Schussek",
  10462. "email": "bschussek@gmail.com"
  10463. }
  10464. ],
  10465. "description": "Provides the functionality to export PHP variables for visualization",
  10466. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10467. "keywords": [
  10468. "export",
  10469. "exporter"
  10470. ],
  10471. "support": {
  10472. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10473. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10474. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10475. },
  10476. "funding": [
  10477. {
  10478. "url": "https://github.com/sebastianbergmann",
  10479. "type": "github"
  10480. }
  10481. ],
  10482. "time": "2024-03-02T07:17:12+00:00"
  10483. },
  10484. {
  10485. "name": "sebastian/global-state",
  10486. "version": "6.0.2",
  10487. "source": {
  10488. "type": "git",
  10489. "url": "https://github.com/sebastianbergmann/global-state.git",
  10490. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10491. },
  10492. "dist": {
  10493. "type": "zip",
  10494. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10495. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10496. "shasum": ""
  10497. },
  10498. "require": {
  10499. "php": ">=8.1",
  10500. "sebastian/object-reflector": "^3.0",
  10501. "sebastian/recursion-context": "^5.0"
  10502. },
  10503. "require-dev": {
  10504. "ext-dom": "*",
  10505. "phpunit/phpunit": "^10.0"
  10506. },
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-main": "6.0-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "classmap": [
  10515. "src/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "BSD-3-Clause"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Sebastian Bergmann",
  10525. "email": "sebastian@phpunit.de"
  10526. }
  10527. ],
  10528. "description": "Snapshotting of global state",
  10529. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10530. "keywords": [
  10531. "global state"
  10532. ],
  10533. "support": {
  10534. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10535. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10536. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10537. },
  10538. "funding": [
  10539. {
  10540. "url": "https://github.com/sebastianbergmann",
  10541. "type": "github"
  10542. }
  10543. ],
  10544. "time": "2024-03-02T07:19:19+00:00"
  10545. },
  10546. {
  10547. "name": "sebastian/lines-of-code",
  10548. "version": "2.0.2",
  10549. "source": {
  10550. "type": "git",
  10551. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10552. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10553. },
  10554. "dist": {
  10555. "type": "zip",
  10556. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10557. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10558. "shasum": ""
  10559. },
  10560. "require": {
  10561. "nikic/php-parser": "^4.18 || ^5.0",
  10562. "php": ">=8.1"
  10563. },
  10564. "require-dev": {
  10565. "phpunit/phpunit": "^10.0"
  10566. },
  10567. "type": "library",
  10568. "extra": {
  10569. "branch-alias": {
  10570. "dev-main": "2.0-dev"
  10571. }
  10572. },
  10573. "autoload": {
  10574. "classmap": [
  10575. "src/"
  10576. ]
  10577. },
  10578. "notification-url": "https://packagist.org/downloads/",
  10579. "license": [
  10580. "BSD-3-Clause"
  10581. ],
  10582. "authors": [
  10583. {
  10584. "name": "Sebastian Bergmann",
  10585. "email": "sebastian@phpunit.de",
  10586. "role": "lead"
  10587. }
  10588. ],
  10589. "description": "Library for counting the lines of code in PHP source code",
  10590. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10591. "support": {
  10592. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10593. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10594. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10595. },
  10596. "funding": [
  10597. {
  10598. "url": "https://github.com/sebastianbergmann",
  10599. "type": "github"
  10600. }
  10601. ],
  10602. "time": "2023-12-21T08:38:20+00:00"
  10603. },
  10604. {
  10605. "name": "sebastian/object-enumerator",
  10606. "version": "5.0.0",
  10607. "source": {
  10608. "type": "git",
  10609. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10610. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10611. },
  10612. "dist": {
  10613. "type": "zip",
  10614. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10615. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10616. "shasum": ""
  10617. },
  10618. "require": {
  10619. "php": ">=8.1",
  10620. "sebastian/object-reflector": "^3.0",
  10621. "sebastian/recursion-context": "^5.0"
  10622. },
  10623. "require-dev": {
  10624. "phpunit/phpunit": "^10.0"
  10625. },
  10626. "type": "library",
  10627. "extra": {
  10628. "branch-alias": {
  10629. "dev-main": "5.0-dev"
  10630. }
  10631. },
  10632. "autoload": {
  10633. "classmap": [
  10634. "src/"
  10635. ]
  10636. },
  10637. "notification-url": "https://packagist.org/downloads/",
  10638. "license": [
  10639. "BSD-3-Clause"
  10640. ],
  10641. "authors": [
  10642. {
  10643. "name": "Sebastian Bergmann",
  10644. "email": "sebastian@phpunit.de"
  10645. }
  10646. ],
  10647. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10648. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10649. "support": {
  10650. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10651. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://github.com/sebastianbergmann",
  10656. "type": "github"
  10657. }
  10658. ],
  10659. "time": "2023-02-03T07:08:32+00:00"
  10660. },
  10661. {
  10662. "name": "sebastian/object-reflector",
  10663. "version": "3.0.0",
  10664. "source": {
  10665. "type": "git",
  10666. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10667. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10668. },
  10669. "dist": {
  10670. "type": "zip",
  10671. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10672. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10673. "shasum": ""
  10674. },
  10675. "require": {
  10676. "php": ">=8.1"
  10677. },
  10678. "require-dev": {
  10679. "phpunit/phpunit": "^10.0"
  10680. },
  10681. "type": "library",
  10682. "extra": {
  10683. "branch-alias": {
  10684. "dev-main": "3.0-dev"
  10685. }
  10686. },
  10687. "autoload": {
  10688. "classmap": [
  10689. "src/"
  10690. ]
  10691. },
  10692. "notification-url": "https://packagist.org/downloads/",
  10693. "license": [
  10694. "BSD-3-Clause"
  10695. ],
  10696. "authors": [
  10697. {
  10698. "name": "Sebastian Bergmann",
  10699. "email": "sebastian@phpunit.de"
  10700. }
  10701. ],
  10702. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10703. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10704. "support": {
  10705. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10706. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10707. },
  10708. "funding": [
  10709. {
  10710. "url": "https://github.com/sebastianbergmann",
  10711. "type": "github"
  10712. }
  10713. ],
  10714. "time": "2023-02-03T07:06:18+00:00"
  10715. },
  10716. {
  10717. "name": "sebastian/recursion-context",
  10718. "version": "5.0.0",
  10719. "source": {
  10720. "type": "git",
  10721. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10722. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10723. },
  10724. "dist": {
  10725. "type": "zip",
  10726. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10727. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10728. "shasum": ""
  10729. },
  10730. "require": {
  10731. "php": ">=8.1"
  10732. },
  10733. "require-dev": {
  10734. "phpunit/phpunit": "^10.0"
  10735. },
  10736. "type": "library",
  10737. "extra": {
  10738. "branch-alias": {
  10739. "dev-main": "5.0-dev"
  10740. }
  10741. },
  10742. "autoload": {
  10743. "classmap": [
  10744. "src/"
  10745. ]
  10746. },
  10747. "notification-url": "https://packagist.org/downloads/",
  10748. "license": [
  10749. "BSD-3-Clause"
  10750. ],
  10751. "authors": [
  10752. {
  10753. "name": "Sebastian Bergmann",
  10754. "email": "sebastian@phpunit.de"
  10755. },
  10756. {
  10757. "name": "Jeff Welch",
  10758. "email": "whatthejeff@gmail.com"
  10759. },
  10760. {
  10761. "name": "Adam Harvey",
  10762. "email": "aharvey@php.net"
  10763. }
  10764. ],
  10765. "description": "Provides functionality to recursively process PHP variables",
  10766. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10767. "support": {
  10768. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10769. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://github.com/sebastianbergmann",
  10774. "type": "github"
  10775. }
  10776. ],
  10777. "time": "2023-02-03T07:05:40+00:00"
  10778. },
  10779. {
  10780. "name": "sebastian/type",
  10781. "version": "4.0.0",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/sebastianbergmann/type.git",
  10785. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10790. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10791. "shasum": ""
  10792. },
  10793. "require": {
  10794. "php": ">=8.1"
  10795. },
  10796. "require-dev": {
  10797. "phpunit/phpunit": "^10.0"
  10798. },
  10799. "type": "library",
  10800. "extra": {
  10801. "branch-alias": {
  10802. "dev-main": "4.0-dev"
  10803. }
  10804. },
  10805. "autoload": {
  10806. "classmap": [
  10807. "src/"
  10808. ]
  10809. },
  10810. "notification-url": "https://packagist.org/downloads/",
  10811. "license": [
  10812. "BSD-3-Clause"
  10813. ],
  10814. "authors": [
  10815. {
  10816. "name": "Sebastian Bergmann",
  10817. "email": "sebastian@phpunit.de",
  10818. "role": "lead"
  10819. }
  10820. ],
  10821. "description": "Collection of value objects that represent the types of the PHP type system",
  10822. "homepage": "https://github.com/sebastianbergmann/type",
  10823. "support": {
  10824. "issues": "https://github.com/sebastianbergmann/type/issues",
  10825. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10826. },
  10827. "funding": [
  10828. {
  10829. "url": "https://github.com/sebastianbergmann",
  10830. "type": "github"
  10831. }
  10832. ],
  10833. "time": "2023-02-03T07:10:45+00:00"
  10834. },
  10835. {
  10836. "name": "sebastian/version",
  10837. "version": "4.0.1",
  10838. "source": {
  10839. "type": "git",
  10840. "url": "https://github.com/sebastianbergmann/version.git",
  10841. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10842. },
  10843. "dist": {
  10844. "type": "zip",
  10845. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10846. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10847. "shasum": ""
  10848. },
  10849. "require": {
  10850. "php": ">=8.1"
  10851. },
  10852. "type": "library",
  10853. "extra": {
  10854. "branch-alias": {
  10855. "dev-main": "4.0-dev"
  10856. }
  10857. },
  10858. "autoload": {
  10859. "classmap": [
  10860. "src/"
  10861. ]
  10862. },
  10863. "notification-url": "https://packagist.org/downloads/",
  10864. "license": [
  10865. "BSD-3-Clause"
  10866. ],
  10867. "authors": [
  10868. {
  10869. "name": "Sebastian Bergmann",
  10870. "email": "sebastian@phpunit.de",
  10871. "role": "lead"
  10872. }
  10873. ],
  10874. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10875. "homepage": "https://github.com/sebastianbergmann/version",
  10876. "support": {
  10877. "issues": "https://github.com/sebastianbergmann/version/issues",
  10878. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10879. },
  10880. "funding": [
  10881. {
  10882. "url": "https://github.com/sebastianbergmann",
  10883. "type": "github"
  10884. }
  10885. ],
  10886. "time": "2023-02-07T11:34:05+00:00"
  10887. },
  10888. {
  10889. "name": "swoole/ide-helper",
  10890. "version": "5.1.6",
  10891. "source": {
  10892. "type": "git",
  10893. "url": "https://github.com/swoole/ide-helper.git",
  10894. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10895. },
  10896. "dist": {
  10897. "type": "zip",
  10898. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10899. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10900. "shasum": ""
  10901. },
  10902. "type": "library",
  10903. "notification-url": "https://packagist.org/downloads/",
  10904. "license": [
  10905. "Apache-2.0"
  10906. ],
  10907. "authors": [
  10908. {
  10909. "name": "Team Swoole",
  10910. "email": "team@swoole.com"
  10911. }
  10912. ],
  10913. "description": "IDE help files for Swoole.",
  10914. "support": {
  10915. "issues": "https://github.com/swoole/ide-helper/issues",
  10916. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10917. },
  10918. "time": "2024-11-29T07:21:36+00:00"
  10919. },
  10920. {
  10921. "name": "symfony/event-dispatcher",
  10922. "version": "v6.4.13",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/symfony/event-dispatcher.git",
  10926. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10931. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": ">=8.1",
  10936. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10937. },
  10938. "conflict": {
  10939. "symfony/dependency-injection": "<5.4",
  10940. "symfony/service-contracts": "<2.5"
  10941. },
  10942. "provide": {
  10943. "psr/event-dispatcher-implementation": "1.0",
  10944. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10945. },
  10946. "require-dev": {
  10947. "psr/log": "^1|^2|^3",
  10948. "symfony/config": "^5.4|^6.0|^7.0",
  10949. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10950. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10951. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10952. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10953. "symfony/service-contracts": "^2.5|^3",
  10954. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10955. },
  10956. "type": "library",
  10957. "autoload": {
  10958. "psr-4": {
  10959. "Symfony\\Component\\EventDispatcher\\": ""
  10960. },
  10961. "exclude-from-classmap": [
  10962. "/Tests/"
  10963. ]
  10964. },
  10965. "notification-url": "https://packagist.org/downloads/",
  10966. "license": [
  10967. "MIT"
  10968. ],
  10969. "authors": [
  10970. {
  10971. "name": "Fabien Potencier",
  10972. "email": "fabien@symfony.com"
  10973. },
  10974. {
  10975. "name": "Symfony Community",
  10976. "homepage": "https://symfony.com/contributors"
  10977. }
  10978. ],
  10979. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10980. "homepage": "https://symfony.com",
  10981. "support": {
  10982. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10983. },
  10984. "funding": [
  10985. {
  10986. "url": "https://symfony.com/sponsor",
  10987. "type": "custom"
  10988. },
  10989. {
  10990. "url": "https://github.com/fabpot",
  10991. "type": "github"
  10992. },
  10993. {
  10994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10995. "type": "tidelift"
  10996. }
  10997. ],
  10998. "time": "2024-09-25T14:18:03+00:00"
  10999. },
  11000. {
  11001. "name": "symfony/event-dispatcher-contracts",
  11002. "version": "v3.5.1",
  11003. "source": {
  11004. "type": "git",
  11005. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11006. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11007. },
  11008. "dist": {
  11009. "type": "zip",
  11010. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11011. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11012. "shasum": ""
  11013. },
  11014. "require": {
  11015. "php": ">=8.1",
  11016. "psr/event-dispatcher": "^1"
  11017. },
  11018. "type": "library",
  11019. "extra": {
  11020. "branch-alias": {
  11021. "dev-main": "3.5-dev"
  11022. },
  11023. "thanks": {
  11024. "name": "symfony/contracts",
  11025. "url": "https://github.com/symfony/contracts"
  11026. }
  11027. },
  11028. "autoload": {
  11029. "psr-4": {
  11030. "Symfony\\Contracts\\EventDispatcher\\": ""
  11031. }
  11032. },
  11033. "notification-url": "https://packagist.org/downloads/",
  11034. "license": [
  11035. "MIT"
  11036. ],
  11037. "authors": [
  11038. {
  11039. "name": "Nicolas Grekas",
  11040. "email": "p@tchwork.com"
  11041. },
  11042. {
  11043. "name": "Symfony Community",
  11044. "homepage": "https://symfony.com/contributors"
  11045. }
  11046. ],
  11047. "description": "Generic abstractions related to dispatching event",
  11048. "homepage": "https://symfony.com",
  11049. "keywords": [
  11050. "abstractions",
  11051. "contracts",
  11052. "decoupling",
  11053. "interfaces",
  11054. "interoperability",
  11055. "standards"
  11056. ],
  11057. "support": {
  11058. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11059. },
  11060. "funding": [
  11061. {
  11062. "url": "https://symfony.com/sponsor",
  11063. "type": "custom"
  11064. },
  11065. {
  11066. "url": "https://github.com/fabpot",
  11067. "type": "github"
  11068. },
  11069. {
  11070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11071. "type": "tidelift"
  11072. }
  11073. ],
  11074. "time": "2024-09-25T14:20:29+00:00"
  11075. },
  11076. {
  11077. "name": "symfony/filesystem",
  11078. "version": "v6.4.13",
  11079. "source": {
  11080. "type": "git",
  11081. "url": "https://github.com/symfony/filesystem.git",
  11082. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11083. },
  11084. "dist": {
  11085. "type": "zip",
  11086. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11087. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11088. "shasum": ""
  11089. },
  11090. "require": {
  11091. "php": ">=8.1",
  11092. "symfony/polyfill-ctype": "~1.8",
  11093. "symfony/polyfill-mbstring": "~1.8"
  11094. },
  11095. "require-dev": {
  11096. "symfony/process": "^5.4|^6.4|^7.0"
  11097. },
  11098. "type": "library",
  11099. "autoload": {
  11100. "psr-4": {
  11101. "Symfony\\Component\\Filesystem\\": ""
  11102. },
  11103. "exclude-from-classmap": [
  11104. "/Tests/"
  11105. ]
  11106. },
  11107. "notification-url": "https://packagist.org/downloads/",
  11108. "license": [
  11109. "MIT"
  11110. ],
  11111. "authors": [
  11112. {
  11113. "name": "Fabien Potencier",
  11114. "email": "fabien@symfony.com"
  11115. },
  11116. {
  11117. "name": "Symfony Community",
  11118. "homepage": "https://symfony.com/contributors"
  11119. }
  11120. ],
  11121. "description": "Provides basic utilities for the filesystem",
  11122. "homepage": "https://symfony.com",
  11123. "support": {
  11124. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11125. },
  11126. "funding": [
  11127. {
  11128. "url": "https://symfony.com/sponsor",
  11129. "type": "custom"
  11130. },
  11131. {
  11132. "url": "https://github.com/fabpot",
  11133. "type": "github"
  11134. },
  11135. {
  11136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11137. "type": "tidelift"
  11138. }
  11139. ],
  11140. "time": "2024-10-25T15:07:50+00:00"
  11141. },
  11142. {
  11143. "name": "symfony/http-foundation",
  11144. "version": "v6.4.16",
  11145. "source": {
  11146. "type": "git",
  11147. "url": "https://github.com/symfony/http-foundation.git",
  11148. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11149. },
  11150. "dist": {
  11151. "type": "zip",
  11152. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11153. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11154. "shasum": ""
  11155. },
  11156. "require": {
  11157. "php": ">=8.1",
  11158. "symfony/deprecation-contracts": "^2.5|^3",
  11159. "symfony/polyfill-mbstring": "~1.1",
  11160. "symfony/polyfill-php83": "^1.27"
  11161. },
  11162. "conflict": {
  11163. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11164. },
  11165. "require-dev": {
  11166. "doctrine/dbal": "^2.13.1|^3|^4",
  11167. "predis/predis": "^1.1|^2.0",
  11168. "symfony/cache": "^6.4.12|^7.1.5",
  11169. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11170. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11171. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11172. "symfony/mime": "^5.4|^6.0|^7.0",
  11173. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11174. },
  11175. "type": "library",
  11176. "autoload": {
  11177. "psr-4": {
  11178. "Symfony\\Component\\HttpFoundation\\": ""
  11179. },
  11180. "exclude-from-classmap": [
  11181. "/Tests/"
  11182. ]
  11183. },
  11184. "notification-url": "https://packagist.org/downloads/",
  11185. "license": [
  11186. "MIT"
  11187. ],
  11188. "authors": [
  11189. {
  11190. "name": "Fabien Potencier",
  11191. "email": "fabien@symfony.com"
  11192. },
  11193. {
  11194. "name": "Symfony Community",
  11195. "homepage": "https://symfony.com/contributors"
  11196. }
  11197. ],
  11198. "description": "Defines an object-oriented layer for the HTTP specification",
  11199. "homepage": "https://symfony.com",
  11200. "support": {
  11201. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11202. },
  11203. "funding": [
  11204. {
  11205. "url": "https://symfony.com/sponsor",
  11206. "type": "custom"
  11207. },
  11208. {
  11209. "url": "https://github.com/fabpot",
  11210. "type": "github"
  11211. },
  11212. {
  11213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11214. "type": "tidelift"
  11215. }
  11216. ],
  11217. "time": "2024-11-13T18:58:10+00:00"
  11218. },
  11219. {
  11220. "name": "symfony/options-resolver",
  11221. "version": "v6.4.16",
  11222. "source": {
  11223. "type": "git",
  11224. "url": "https://github.com/symfony/options-resolver.git",
  11225. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11226. },
  11227. "dist": {
  11228. "type": "zip",
  11229. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11230. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11231. "shasum": ""
  11232. },
  11233. "require": {
  11234. "php": ">=8.1",
  11235. "symfony/deprecation-contracts": "^2.5|^3"
  11236. },
  11237. "type": "library",
  11238. "autoload": {
  11239. "psr-4": {
  11240. "Symfony\\Component\\OptionsResolver\\": ""
  11241. },
  11242. "exclude-from-classmap": [
  11243. "/Tests/"
  11244. ]
  11245. },
  11246. "notification-url": "https://packagist.org/downloads/",
  11247. "license": [
  11248. "MIT"
  11249. ],
  11250. "authors": [
  11251. {
  11252. "name": "Fabien Potencier",
  11253. "email": "fabien@symfony.com"
  11254. },
  11255. {
  11256. "name": "Symfony Community",
  11257. "homepage": "https://symfony.com/contributors"
  11258. }
  11259. ],
  11260. "description": "Provides an improved replacement for the array_replace PHP function",
  11261. "homepage": "https://symfony.com",
  11262. "keywords": [
  11263. "config",
  11264. "configuration",
  11265. "options"
  11266. ],
  11267. "support": {
  11268. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11269. },
  11270. "funding": [
  11271. {
  11272. "url": "https://symfony.com/sponsor",
  11273. "type": "custom"
  11274. },
  11275. {
  11276. "url": "https://github.com/fabpot",
  11277. "type": "github"
  11278. },
  11279. {
  11280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11281. "type": "tidelift"
  11282. }
  11283. ],
  11284. "time": "2024-11-20T10:57:02+00:00"
  11285. },
  11286. {
  11287. "name": "symfony/polyfill-php81",
  11288. "version": "v1.31.0",
  11289. "source": {
  11290. "type": "git",
  11291. "url": "https://github.com/symfony/polyfill-php81.git",
  11292. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11293. },
  11294. "dist": {
  11295. "type": "zip",
  11296. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11297. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11298. "shasum": ""
  11299. },
  11300. "require": {
  11301. "php": ">=7.2"
  11302. },
  11303. "type": "library",
  11304. "extra": {
  11305. "thanks": {
  11306. "url": "https://github.com/symfony/polyfill",
  11307. "name": "symfony/polyfill"
  11308. }
  11309. },
  11310. "autoload": {
  11311. "files": [
  11312. "bootstrap.php"
  11313. ],
  11314. "psr-4": {
  11315. "Symfony\\Polyfill\\Php81\\": ""
  11316. },
  11317. "classmap": [
  11318. "Resources/stubs"
  11319. ]
  11320. },
  11321. "notification-url": "https://packagist.org/downloads/",
  11322. "license": [
  11323. "MIT"
  11324. ],
  11325. "authors": [
  11326. {
  11327. "name": "Nicolas Grekas",
  11328. "email": "p@tchwork.com"
  11329. },
  11330. {
  11331. "name": "Symfony Community",
  11332. "homepage": "https://symfony.com/contributors"
  11333. }
  11334. ],
  11335. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11336. "homepage": "https://symfony.com",
  11337. "keywords": [
  11338. "compatibility",
  11339. "polyfill",
  11340. "portable",
  11341. "shim"
  11342. ],
  11343. "support": {
  11344. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11345. },
  11346. "funding": [
  11347. {
  11348. "url": "https://symfony.com/sponsor",
  11349. "type": "custom"
  11350. },
  11351. {
  11352. "url": "https://github.com/fabpot",
  11353. "type": "github"
  11354. },
  11355. {
  11356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11357. "type": "tidelift"
  11358. }
  11359. ],
  11360. "time": "2024-09-09T11:45:10+00:00"
  11361. },
  11362. {
  11363. "name": "symfony/polyfill-php83",
  11364. "version": "v1.31.0",
  11365. "source": {
  11366. "type": "git",
  11367. "url": "https://github.com/symfony/polyfill-php83.git",
  11368. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11369. },
  11370. "dist": {
  11371. "type": "zip",
  11372. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11373. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11374. "shasum": ""
  11375. },
  11376. "require": {
  11377. "php": ">=7.2"
  11378. },
  11379. "type": "library",
  11380. "extra": {
  11381. "thanks": {
  11382. "url": "https://github.com/symfony/polyfill",
  11383. "name": "symfony/polyfill"
  11384. }
  11385. },
  11386. "autoload": {
  11387. "files": [
  11388. "bootstrap.php"
  11389. ],
  11390. "psr-4": {
  11391. "Symfony\\Polyfill\\Php83\\": ""
  11392. },
  11393. "classmap": [
  11394. "Resources/stubs"
  11395. ]
  11396. },
  11397. "notification-url": "https://packagist.org/downloads/",
  11398. "license": [
  11399. "MIT"
  11400. ],
  11401. "authors": [
  11402. {
  11403. "name": "Nicolas Grekas",
  11404. "email": "p@tchwork.com"
  11405. },
  11406. {
  11407. "name": "Symfony Community",
  11408. "homepage": "https://symfony.com/contributors"
  11409. }
  11410. ],
  11411. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11412. "homepage": "https://symfony.com",
  11413. "keywords": [
  11414. "compatibility",
  11415. "polyfill",
  11416. "portable",
  11417. "shim"
  11418. ],
  11419. "support": {
  11420. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11421. },
  11422. "funding": [
  11423. {
  11424. "url": "https://symfony.com/sponsor",
  11425. "type": "custom"
  11426. },
  11427. {
  11428. "url": "https://github.com/fabpot",
  11429. "type": "github"
  11430. },
  11431. {
  11432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11433. "type": "tidelift"
  11434. }
  11435. ],
  11436. "time": "2024-09-09T11:45:10+00:00"
  11437. },
  11438. {
  11439. "name": "symfony/process",
  11440. "version": "v6.4.15",
  11441. "source": {
  11442. "type": "git",
  11443. "url": "https://github.com/symfony/process.git",
  11444. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11445. },
  11446. "dist": {
  11447. "type": "zip",
  11448. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11449. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11450. "shasum": ""
  11451. },
  11452. "require": {
  11453. "php": ">=8.1"
  11454. },
  11455. "type": "library",
  11456. "autoload": {
  11457. "psr-4": {
  11458. "Symfony\\Component\\Process\\": ""
  11459. },
  11460. "exclude-from-classmap": [
  11461. "/Tests/"
  11462. ]
  11463. },
  11464. "notification-url": "https://packagist.org/downloads/",
  11465. "license": [
  11466. "MIT"
  11467. ],
  11468. "authors": [
  11469. {
  11470. "name": "Fabien Potencier",
  11471. "email": "fabien@symfony.com"
  11472. },
  11473. {
  11474. "name": "Symfony Community",
  11475. "homepage": "https://symfony.com/contributors"
  11476. }
  11477. ],
  11478. "description": "Executes commands in sub-processes",
  11479. "homepage": "https://symfony.com",
  11480. "support": {
  11481. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11482. },
  11483. "funding": [
  11484. {
  11485. "url": "https://symfony.com/sponsor",
  11486. "type": "custom"
  11487. },
  11488. {
  11489. "url": "https://github.com/fabpot",
  11490. "type": "github"
  11491. },
  11492. {
  11493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11494. "type": "tidelift"
  11495. }
  11496. ],
  11497. "time": "2024-11-06T14:19:14+00:00"
  11498. },
  11499. {
  11500. "name": "symfony/stopwatch",
  11501. "version": "v6.4.13",
  11502. "source": {
  11503. "type": "git",
  11504. "url": "https://github.com/symfony/stopwatch.git",
  11505. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11506. },
  11507. "dist": {
  11508. "type": "zip",
  11509. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11510. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11511. "shasum": ""
  11512. },
  11513. "require": {
  11514. "php": ">=8.1",
  11515. "symfony/service-contracts": "^2.5|^3"
  11516. },
  11517. "type": "library",
  11518. "autoload": {
  11519. "psr-4": {
  11520. "Symfony\\Component\\Stopwatch\\": ""
  11521. },
  11522. "exclude-from-classmap": [
  11523. "/Tests/"
  11524. ]
  11525. },
  11526. "notification-url": "https://packagist.org/downloads/",
  11527. "license": [
  11528. "MIT"
  11529. ],
  11530. "authors": [
  11531. {
  11532. "name": "Fabien Potencier",
  11533. "email": "fabien@symfony.com"
  11534. },
  11535. {
  11536. "name": "Symfony Community",
  11537. "homepage": "https://symfony.com/contributors"
  11538. }
  11539. ],
  11540. "description": "Provides a way to profile code",
  11541. "homepage": "https://symfony.com",
  11542. "support": {
  11543. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11544. },
  11545. "funding": [
  11546. {
  11547. "url": "https://symfony.com/sponsor",
  11548. "type": "custom"
  11549. },
  11550. {
  11551. "url": "https://github.com/fabpot",
  11552. "type": "github"
  11553. },
  11554. {
  11555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11556. "type": "tidelift"
  11557. }
  11558. ],
  11559. "time": "2024-09-25T14:18:03+00:00"
  11560. },
  11561. {
  11562. "name": "theseer/tokenizer",
  11563. "version": "1.2.3",
  11564. "source": {
  11565. "type": "git",
  11566. "url": "https://github.com/theseer/tokenizer.git",
  11567. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11568. },
  11569. "dist": {
  11570. "type": "zip",
  11571. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11572. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11573. "shasum": ""
  11574. },
  11575. "require": {
  11576. "ext-dom": "*",
  11577. "ext-tokenizer": "*",
  11578. "ext-xmlwriter": "*",
  11579. "php": "^7.2 || ^8.0"
  11580. },
  11581. "type": "library",
  11582. "autoload": {
  11583. "classmap": [
  11584. "src/"
  11585. ]
  11586. },
  11587. "notification-url": "https://packagist.org/downloads/",
  11588. "license": [
  11589. "BSD-3-Clause"
  11590. ],
  11591. "authors": [
  11592. {
  11593. "name": "Arne Blankerts",
  11594. "email": "arne@blankerts.de",
  11595. "role": "Developer"
  11596. }
  11597. ],
  11598. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11599. "support": {
  11600. "issues": "https://github.com/theseer/tokenizer/issues",
  11601. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11602. },
  11603. "funding": [
  11604. {
  11605. "url": "https://github.com/theseer",
  11606. "type": "github"
  11607. }
  11608. ],
  11609. "time": "2024-03-03T12:36:25+00:00"
  11610. },
  11611. {
  11612. "name": "zx/php-tools",
  11613. "version": "v0.0.1",
  11614. "source": {
  11615. "type": "git",
  11616. "url": "https://gitee.com/open-php/php-tools.git",
  11617. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11618. },
  11619. "require": {
  11620. "php": ">=7.0"
  11621. },
  11622. "type": "library",
  11623. "autoload": {
  11624. "psr-4": {
  11625. "ZX\\": "src/"
  11626. }
  11627. },
  11628. "notification-url": "https://packagist.org/downloads/",
  11629. "license": [
  11630. "mit"
  11631. ],
  11632. "authors": [
  11633. {
  11634. "name": "zx",
  11635. "email": "903464207@qq.com"
  11636. }
  11637. ],
  11638. "description": "php-tools",
  11639. "time": "2023-06-25T06:24:10+00:00"
  11640. }
  11641. ],
  11642. "aliases": [],
  11643. "minimum-stability": "dev",
  11644. "stability-flags": {},
  11645. "prefer-stable": true,
  11646. "prefer-lowest": false,
  11647. "platform": {
  11648. "php": ">=8.1"
  11649. },
  11650. "platform-dev": {},
  11651. "plugin-api-version": "2.6.0"
  11652. }