composer.lock 418 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796
  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": "ec8b13cb76745a44071ba9a5223679f4",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "easyswoole/spl",
  501. "version": "2.1.3",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  510. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  551. },
  552. "time": "2024-07-09T14:44:25+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.3",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  733. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.3"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2024-07-20T21:45:45+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.9.2",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  795. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  801. "guzzlehttp/psr7": "^2.7.0",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "guzzle/client-integration-tests": "3.0.2",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2024-07-24T11:22:20+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.4",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  921. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-10-17T10:06:22+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.7.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1004. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-07-18T11:15:46+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.42",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1120. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-09-25T02:54:12+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/async-queue",
  1187. "version": "v3.1.42",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/async-queue.git",
  1191. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1196. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/command": "~3.1.0",
  1203. "hyperf/contract": "~3.1.0",
  1204. "hyperf/support": "~3.1.0",
  1205. "hyperf/utils": "~3.1.0",
  1206. "php": ">=8.1",
  1207. "psr/container": "^1.0 || ^2.0",
  1208. "psr/event-dispatcher": "^1.0"
  1209. },
  1210. "suggest": {
  1211. "hyperf/di": "Required to use annotations.",
  1212. "hyperf/event": "Required to dispatch a event.",
  1213. "hyperf/logger": "Required to use QueueHandleListener.",
  1214. "hyperf/process": "Auto register the consumer process for server."
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "3.1-dev"
  1220. },
  1221. "hyperf": {
  1222. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "files": [
  1227. "src/Functions.php"
  1228. ],
  1229. "psr-4": {
  1230. "Hyperf\\AsyncQueue\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "description": "A async queue component for hyperf.",
  1238. "homepage": "https://hyperf.io",
  1239. "keywords": [
  1240. "async-queue",
  1241. "hyperf",
  1242. "php"
  1243. ],
  1244. "support": {
  1245. "docs": "https://hyperf.wiki",
  1246. "issues": "https://github.com/hyperf/hyperf/issues",
  1247. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1248. "source": "https://github.com/hyperf/hyperf"
  1249. },
  1250. "funding": [
  1251. {
  1252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1253. "type": "custom"
  1254. },
  1255. {
  1256. "url": "https://opencollective.com/hyperf",
  1257. "type": "open_collective"
  1258. }
  1259. ],
  1260. "time": "2024-09-25T02:54:12+00:00"
  1261. },
  1262. {
  1263. "name": "hyperf/cache",
  1264. "version": "v3.1.43",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/hyperf/cache.git",
  1268. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1273. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "hyperf/codec": "~3.1.0",
  1278. "hyperf/collection": "~3.1.0",
  1279. "hyperf/contract": "~3.1.0",
  1280. "hyperf/support": "~3.1.0",
  1281. "hyperf/utils": "~3.1.0",
  1282. "php": ">=8.1",
  1283. "psr/container": "^1.0 || ^2.0",
  1284. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1285. },
  1286. "suggest": {
  1287. "hyperf/di": "Use cache annotations.",
  1288. "hyperf/event": "Use listener to delete annotation cache."
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "3.1-dev"
  1294. },
  1295. "hyperf": {
  1296. "config": "Hyperf\\Cache\\ConfigProvider"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Hyperf\\Cache\\": "src/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "description": "A cache component for hyperf.",
  1309. "homepage": "https://hyperf.io",
  1310. "keywords": [
  1311. "cache",
  1312. "hyperf",
  1313. "php"
  1314. ],
  1315. "support": {
  1316. "docs": "https://hyperf.wiki",
  1317. "issues": "https://github.com/hyperf/hyperf/issues",
  1318. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1319. "source": "https://github.com/hyperf/hyperf"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1324. "type": "custom"
  1325. },
  1326. {
  1327. "url": "https://opencollective.com/hyperf",
  1328. "type": "open_collective"
  1329. }
  1330. ],
  1331. "time": "2024-10-09T10:22:39+00:00"
  1332. },
  1333. {
  1334. "name": "hyperf/code-parser",
  1335. "version": "v3.1.42",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/hyperf/code-parser.git",
  1339. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1344. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "hyperf/collection": "~3.1.0",
  1349. "hyperf/stringable": "~3.1.0",
  1350. "hyperf/support": "~3.1.0",
  1351. "php": ">=8.1"
  1352. },
  1353. "suggest": {
  1354. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1355. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-master": "3.1-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Hyperf\\CodeParser\\": "src/"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "description": "A code parser component for Hyperf.",
  1373. "homepage": "https://hyperf.io",
  1374. "keywords": [
  1375. "code-parser",
  1376. "hyperf",
  1377. "php",
  1378. "swoole"
  1379. ],
  1380. "support": {
  1381. "docs": "https://hyperf.wiki",
  1382. "issues": "https://github.com/hyperf/hyperf/issues",
  1383. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1384. "source": "https://github.com/hyperf/hyperf"
  1385. },
  1386. "funding": [
  1387. {
  1388. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1389. "type": "custom"
  1390. },
  1391. {
  1392. "url": "https://opencollective.com/hyperf",
  1393. "type": "open_collective"
  1394. }
  1395. ],
  1396. "time": "2024-09-25T02:54:12+00:00"
  1397. },
  1398. {
  1399. "name": "hyperf/codec",
  1400. "version": "v3.1.42",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/hyperf/codec.git",
  1404. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1409. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "ext-json": "*",
  1414. "ext-xml": "*",
  1415. "hyperf/contract": "~3.1.0",
  1416. "php": ">=8.1"
  1417. },
  1418. "suggest": {
  1419. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1420. },
  1421. "type": "library",
  1422. "extra": {
  1423. "branch-alias": {
  1424. "dev-master": "3.1-dev"
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Hyperf\\Codec\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "description": "A codec component for Hyperf.",
  1437. "homepage": "https://hyperf.io",
  1438. "keywords": [
  1439. "codec",
  1440. "hyperf",
  1441. "php",
  1442. "swoole"
  1443. ],
  1444. "support": {
  1445. "docs": "https://hyperf.wiki",
  1446. "issues": "https://github.com/hyperf/hyperf/issues",
  1447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1448. "source": "https://github.com/hyperf/hyperf"
  1449. },
  1450. "funding": [
  1451. {
  1452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1453. "type": "custom"
  1454. },
  1455. {
  1456. "url": "https://opencollective.com/hyperf",
  1457. "type": "open_collective"
  1458. }
  1459. ],
  1460. "time": "2024-09-25T02:54:12+00:00"
  1461. },
  1462. {
  1463. "name": "hyperf/collection",
  1464. "version": "v3.1.44",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/hyperf/collection.git",
  1468. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1473. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "hyperf/conditionable": "~3.1.0",
  1478. "hyperf/contract": "~3.1.0",
  1479. "hyperf/macroable": "~3.1.0",
  1480. "hyperf/stringable": "~3.1.0",
  1481. "php": ">=8.1"
  1482. },
  1483. "type": "library",
  1484. "extra": {
  1485. "branch-alias": {
  1486. "dev-master": "3.1-dev"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/Functions.php"
  1492. ],
  1493. "psr-4": {
  1494. "Hyperf\\Collection\\": "src/"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Hyperf Collection package which come from illuminate/collections",
  1502. "homepage": "https://hyperf.io",
  1503. "keywords": [
  1504. "collection",
  1505. "hyperf",
  1506. "php",
  1507. "swoole"
  1508. ],
  1509. "support": {
  1510. "docs": "https://hyperf.wiki",
  1511. "issues": "https://github.com/hyperf/hyperf/issues",
  1512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1513. "source": "https://github.com/hyperf/hyperf"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://opencollective.com/hyperf",
  1522. "type": "open_collective"
  1523. }
  1524. ],
  1525. "time": "2024-10-23T10:12:23+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/command",
  1529. "version": "v3.1.42",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/command.git",
  1533. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1538. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "hyperf/collection": "~3.1.0",
  1543. "hyperf/context": "~3.1.0",
  1544. "hyperf/contract": "~3.1.0",
  1545. "hyperf/coroutine": "~3.1.0",
  1546. "hyperf/di": "~3.1.0",
  1547. "hyperf/stringable": "~3.1.0",
  1548. "hyperf/support": "~3.1.0",
  1549. "hyperf/tappable": "~3.1.0",
  1550. "php": ">=8.1",
  1551. "psr/event-dispatcher": "^1.0",
  1552. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1553. },
  1554. "suggest": {
  1555. "hyperf/di": "Required to use annotations.",
  1556. "hyperf/event": "Required to use listeners."
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "branch-alias": {
  1561. "dev-master": "3.1-dev"
  1562. },
  1563. "hyperf": {
  1564. "config": "Hyperf\\Command\\ConfigProvider"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Hyperf\\Command\\": "src/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "description": "Command for hyperf",
  1577. "keywords": [
  1578. "command",
  1579. "php",
  1580. "swoole"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/hyperf/command/issues",
  1584. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1589. "type": "custom"
  1590. },
  1591. {
  1592. "url": "https://opencollective.com/hyperf",
  1593. "type": "open_collective"
  1594. }
  1595. ],
  1596. "time": "2024-09-25T02:54:12+00:00"
  1597. },
  1598. {
  1599. "name": "hyperf/conditionable",
  1600. "version": "v3.1.42",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/hyperf/conditionable.git",
  1604. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1609. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=8.1"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "3.1-dev"
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Hyperf\\Conditionable\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1631. "homepage": "https://hyperf.io",
  1632. "keywords": [
  1633. "conditionable",
  1634. "hyperf",
  1635. "php",
  1636. "swoole"
  1637. ],
  1638. "support": {
  1639. "docs": "https://hyperf.wiki",
  1640. "issues": "https://github.com/hyperf/hyperf/issues",
  1641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1642. "source": "https://github.com/hyperf/hyperf"
  1643. },
  1644. "funding": [
  1645. {
  1646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1647. "type": "custom"
  1648. },
  1649. {
  1650. "url": "https://opencollective.com/hyperf",
  1651. "type": "open_collective"
  1652. }
  1653. ],
  1654. "time": "2024-09-25T02:54:12+00:00"
  1655. },
  1656. {
  1657. "name": "hyperf/config",
  1658. "version": "v3.1.42",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/hyperf/config.git",
  1662. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1667. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "hyperf/collection": "~3.1.0",
  1672. "hyperf/contract": "~3.1.0",
  1673. "hyperf/support": "~3.1.0",
  1674. "php": ">=8.1",
  1675. "psr/container": "^1.0 || ^2.0",
  1676. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1677. },
  1678. "suggest": {
  1679. "hyperf/context": "Required to use config()",
  1680. "hyperf/di": "Allows using @Value annotation",
  1681. "hyperf/event": "Allows using @Value annotation",
  1682. "hyperf/framework": "Allows using @Value annotation",
  1683. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "3.1-dev"
  1689. },
  1690. "hyperf": {
  1691. "config": "Hyperf\\Config\\ConfigProvider"
  1692. }
  1693. },
  1694. "autoload": {
  1695. "files": [
  1696. "./src/Functions.php"
  1697. ],
  1698. "psr-4": {
  1699. "Hyperf\\Config\\": "src/"
  1700. }
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "MIT"
  1705. ],
  1706. "description": "An independent component that provides configuration container.",
  1707. "homepage": "https://hyperf.io",
  1708. "keywords": [
  1709. "config",
  1710. "configuration",
  1711. "hyperf",
  1712. "php",
  1713. "swoole"
  1714. ],
  1715. "support": {
  1716. "docs": "https://hyperf.wiki",
  1717. "issues": "https://github.com/hyperf/hyperf/issues",
  1718. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1719. "source": "https://github.com/hyperf/hyperf"
  1720. },
  1721. "funding": [
  1722. {
  1723. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1724. "type": "custom"
  1725. },
  1726. {
  1727. "url": "https://opencollective.com/hyperf",
  1728. "type": "open_collective"
  1729. }
  1730. ],
  1731. "time": "2024-09-25T02:54:12+00:00"
  1732. },
  1733. {
  1734. "name": "hyperf/config-center",
  1735. "version": "v3.1.42",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hyperf/config-center.git",
  1739. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1744. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "hyperf/support": "~3.1.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "hyperf/process": "^2.1"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "3.1-dev"
  1758. },
  1759. "hyperf": {
  1760. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Hyperf\\ConfigCenter\\": "src/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "description": "The abstraction component of config center",
  1773. "homepage": "https://hyperf.io",
  1774. "keywords": [
  1775. "config-center",
  1776. "hyperf",
  1777. "php"
  1778. ],
  1779. "support": {
  1780. "docs": "https://hyperf.wiki",
  1781. "issues": "https://github.com/hyperf/hyperf/issues",
  1782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1783. "source": "https://github.com/hyperf/hyperf"
  1784. },
  1785. "funding": [
  1786. {
  1787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1788. "type": "custom"
  1789. },
  1790. {
  1791. "url": "https://opencollective.com/hyperf",
  1792. "type": "open_collective"
  1793. }
  1794. ],
  1795. "time": "2024-09-25T02:54:12+00:00"
  1796. },
  1797. {
  1798. "name": "hyperf/config-nacos",
  1799. "version": "v3.1.42",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/hyperf/config-nacos.git",
  1803. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1808. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "hyperf/codec": "~3.1.0",
  1813. "hyperf/config-center": "~3.1.0",
  1814. "hyperf/contract": "~3.1.0",
  1815. "hyperf/guzzle": "~3.1.0",
  1816. "hyperf/nacos": "~3.1.0",
  1817. "hyperf/support": "~3.1.0",
  1818. "hyperf/utils": "~3.1.0",
  1819. "jetbrains/phpstorm-attributes": "^1.0",
  1820. "php": ">=8.1"
  1821. },
  1822. "suggest": {
  1823. "ext-json": "*",
  1824. "ext-simplexml": "*",
  1825. "ext-yaml": "*",
  1826. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1827. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1828. "hyperf/process": "Required to use processes. (~2.2.0)"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "3.1-dev"
  1834. },
  1835. "hyperf": {
  1836. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "psr-4": {
  1841. "Hyperf\\ConfigNacos\\": "src/"
  1842. }
  1843. },
  1844. "notification-url": "https://packagist.org/downloads/",
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "description": "A nacos adapter for config center component.",
  1849. "homepage": "https://hyperf.io",
  1850. "keywords": [
  1851. "hyperf",
  1852. "nacos",
  1853. "php",
  1854. "swoole"
  1855. ],
  1856. "support": {
  1857. "docs": "https://hyperf.wiki",
  1858. "issues": "https://github.com/hyperf/hyperf/issues",
  1859. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1860. "source": "https://github.com/hyperf/hyperf"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1865. "type": "custom"
  1866. },
  1867. {
  1868. "url": "https://opencollective.com/hyperf",
  1869. "type": "open_collective"
  1870. }
  1871. ],
  1872. "time": "2024-09-25T02:54:12+00:00"
  1873. },
  1874. {
  1875. "name": "hyperf/constants",
  1876. "version": "v3.1.42",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/hyperf/constants.git",
  1880. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1885. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "hyperf/di": "~3.1.0",
  1890. "hyperf/support": "~3.1.0",
  1891. "hyperf/utils": "~3.1.0",
  1892. "php": ">=8.1"
  1893. },
  1894. "suggest": {
  1895. "hyperf/translation": "Required to use translation."
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "3.1-dev"
  1901. },
  1902. "hyperf": {
  1903. "config": "Hyperf\\Constants\\ConfigProvider"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Hyperf\\Constants\\": "src/"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "description": "A constants component for hyperf.",
  1916. "homepage": "https://hyperf.io",
  1917. "keywords": [
  1918. "constants",
  1919. "hyperf",
  1920. "php"
  1921. ],
  1922. "support": {
  1923. "docs": "https://hyperf.wiki",
  1924. "issues": "https://github.com/hyperf/hyperf/issues",
  1925. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1926. "source": "https://github.com/hyperf/hyperf"
  1927. },
  1928. "funding": [
  1929. {
  1930. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1931. "type": "custom"
  1932. },
  1933. {
  1934. "url": "https://opencollective.com/hyperf",
  1935. "type": "open_collective"
  1936. }
  1937. ],
  1938. "time": "2024-09-25T02:54:12+00:00"
  1939. },
  1940. {
  1941. "name": "hyperf/consul",
  1942. "version": "v3.1.42",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/hyperf/consul.git",
  1946. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1951. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1956. "php": ">=8.1"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "3.1-dev"
  1962. },
  1963. "hyperf": {
  1964. "config": "Hyperf\\Consul\\ConfigProvider"
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Hyperf\\Consul\\": "src/"
  1970. }
  1971. },
  1972. "notification-url": "https://packagist.org/downloads/",
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "description": "A Consul Client for Hyperf.",
  1977. "homepage": "https://hyperf.io",
  1978. "keywords": [
  1979. "consul",
  1980. "consul-client",
  1981. "hyperf",
  1982. "php",
  1983. "swoole"
  1984. ],
  1985. "support": {
  1986. "docs": "https://hyperf.wiki",
  1987. "issues": "https://github.com/hyperf/hyperf/issues",
  1988. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1989. "source": "https://github.com/hyperf/hyperf"
  1990. },
  1991. "funding": [
  1992. {
  1993. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://opencollective.com/hyperf",
  1998. "type": "open_collective"
  1999. }
  2000. ],
  2001. "time": "2024-09-25T02:54:12+00:00"
  2002. },
  2003. {
  2004. "name": "hyperf/context",
  2005. "version": "v3.1.42",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/hyperf/context.git",
  2009. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2014. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "hyperf/engine": "^2.0",
  2019. "php": ">=8.1"
  2020. },
  2021. "suggest": {
  2022. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "3.1-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Hyperf\\Context\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "description": "A coroutine/application context library.",
  2040. "homepage": "https://hyperf.io",
  2041. "keywords": [
  2042. "Context",
  2043. "hyperf",
  2044. "php",
  2045. "swoole"
  2046. ],
  2047. "support": {
  2048. "docs": "https://hyperf.wiki",
  2049. "issues": "https://github.com/hyperf/hyperf/issues",
  2050. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2051. "source": "https://github.com/hyperf/hyperf"
  2052. },
  2053. "funding": [
  2054. {
  2055. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2056. "type": "custom"
  2057. },
  2058. {
  2059. "url": "https://opencollective.com/hyperf",
  2060. "type": "open_collective"
  2061. }
  2062. ],
  2063. "time": "2024-09-25T02:54:12+00:00"
  2064. },
  2065. {
  2066. "name": "hyperf/contract",
  2067. "version": "v3.1.42",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/hyperf/contract.git",
  2071. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2076. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2077. "shasum": ""
  2078. },
  2079. "require": {
  2080. "php": ">=8.1"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "3.1-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "Hyperf\\Contract\\": "src/"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "description": "The contracts of Hyperf.",
  2098. "homepage": "https://hyperf.io",
  2099. "keywords": [
  2100. "hyperf",
  2101. "php",
  2102. "swoole"
  2103. ],
  2104. "support": {
  2105. "docs": "https://hyperf.wiki",
  2106. "issues": "https://github.com/hyperf/hyperf/issues",
  2107. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2108. "source": "https://github.com/hyperf/hyperf"
  2109. },
  2110. "funding": [
  2111. {
  2112. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2113. "type": "custom"
  2114. },
  2115. {
  2116. "url": "https://opencollective.com/hyperf",
  2117. "type": "open_collective"
  2118. }
  2119. ],
  2120. "time": "2024-09-25T02:54:12+00:00"
  2121. },
  2122. {
  2123. "name": "hyperf/coordinator",
  2124. "version": "v3.1.42",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/hyperf/coordinator.git",
  2128. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2133. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "hyperf/engine": "^2.0",
  2138. "php": ">=8.1"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "3.1-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "files": [
  2148. "src/Functions.php"
  2149. ],
  2150. "psr-4": {
  2151. "Hyperf\\Coordinator\\": "src/"
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "description": "Hyperf Coordinator",
  2159. "homepage": "https://hyperf.io",
  2160. "keywords": [
  2161. "Coordinator",
  2162. "hyperf",
  2163. "php",
  2164. "swoole"
  2165. ],
  2166. "support": {
  2167. "docs": "https://hyperf.wiki",
  2168. "issues": "https://github.com/hyperf/hyperf/issues",
  2169. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2170. "source": "https://github.com/hyperf/hyperf"
  2171. },
  2172. "funding": [
  2173. {
  2174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2175. "type": "custom"
  2176. },
  2177. {
  2178. "url": "https://opencollective.com/hyperf",
  2179. "type": "open_collective"
  2180. }
  2181. ],
  2182. "time": "2024-09-25T02:54:12+00:00"
  2183. },
  2184. {
  2185. "name": "hyperf/coroutine",
  2186. "version": "v3.1.42",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/hyperf/coroutine.git",
  2190. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2195. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "hyperf/context": "~3.1.0",
  2200. "hyperf/contract": "~3.1.0",
  2201. "hyperf/engine": "^2.0",
  2202. "php": ">=8.1"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "3.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "files": [
  2212. "src/Functions.php"
  2213. ],
  2214. "psr-4": {
  2215. "Hyperf\\Coroutine\\": "src/"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "description": "Hyperf Coroutine",
  2223. "homepage": "https://hyperf.io",
  2224. "keywords": [
  2225. "coroutine",
  2226. "hyperf",
  2227. "php",
  2228. "swoole"
  2229. ],
  2230. "support": {
  2231. "docs": "https://hyperf.wiki",
  2232. "issues": "https://github.com/hyperf/hyperf/issues",
  2233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2234. "source": "https://github.com/hyperf/hyperf"
  2235. },
  2236. "funding": [
  2237. {
  2238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2239. "type": "custom"
  2240. },
  2241. {
  2242. "url": "https://opencollective.com/hyperf",
  2243. "type": "open_collective"
  2244. }
  2245. ],
  2246. "time": "2024-09-25T02:54:12+00:00"
  2247. },
  2248. {
  2249. "name": "hyperf/database",
  2250. "version": "v3.1.44",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/hyperf/database.git",
  2254. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2259. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "hyperf/code-parser": "~3.1.0",
  2264. "hyperf/collection": "~3.1.23",
  2265. "hyperf/conditionable": "~3.1.0",
  2266. "hyperf/macroable": "~3.1.0",
  2267. "hyperf/support": "~3.1.0",
  2268. "hyperf/tappable": "~3.1.0",
  2269. "hyperf/utils": "~3.1.0",
  2270. "nesbot/carbon": "^2.0",
  2271. "php": ">=8.1",
  2272. "psr/container": "^1.0 || ^2.0",
  2273. "psr/event-dispatcher": "^1.0"
  2274. },
  2275. "suggest": {
  2276. "doctrine/dbal": "Required to rename columns (^3.0).",
  2277. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2278. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2279. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2280. },
  2281. "type": "library",
  2282. "extra": {
  2283. "branch-alias": {
  2284. "dev-master": "3.1-dev"
  2285. }
  2286. },
  2287. "autoload": {
  2288. "psr-4": {
  2289. "Hyperf\\Database\\": "src/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "description": "A flexible database library.",
  2297. "homepage": "https://hyperf.io",
  2298. "keywords": [
  2299. "database",
  2300. "hyperf",
  2301. "php"
  2302. ],
  2303. "support": {
  2304. "docs": "https://hyperf.wiki",
  2305. "issues": "https://github.com/hyperf/hyperf/issues",
  2306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2307. "source": "https://github.com/hyperf/hyperf"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://opencollective.com/hyperf",
  2316. "type": "open_collective"
  2317. }
  2318. ],
  2319. "time": "2024-10-11T10:25:57+00:00"
  2320. },
  2321. {
  2322. "name": "hyperf/db-connection",
  2323. "version": "v3.1.44",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/hyperf/db-connection.git",
  2327. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2332. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "hyperf/database": "~3.1.0",
  2337. "hyperf/di": "~3.1.0",
  2338. "hyperf/framework": "~3.1.0",
  2339. "hyperf/model-listener": "~3.1.0",
  2340. "hyperf/pool": "~3.1.0",
  2341. "hyperf/support": "~3.1.0",
  2342. "hyperf/utils": "~3.1.0",
  2343. "php": ">=8.1",
  2344. "psr/container": "^1.0 || ^2.0"
  2345. },
  2346. "type": "library",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-master": "3.1-dev"
  2350. },
  2351. "hyperf": {
  2352. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\DbConnection\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A hyperf db connection handler for hyperf/database.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "Connection",
  2368. "database",
  2369. "hyperf",
  2370. "php"
  2371. ],
  2372. "support": {
  2373. "docs": "https://hyperf.wiki",
  2374. "issues": "https://github.com/hyperf/hyperf/issues",
  2375. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2376. "source": "https://github.com/hyperf/hyperf"
  2377. },
  2378. "funding": [
  2379. {
  2380. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2381. "type": "custom"
  2382. },
  2383. {
  2384. "url": "https://opencollective.com/hyperf",
  2385. "type": "open_collective"
  2386. }
  2387. ],
  2388. "time": "2024-10-11T08:58:16+00:00"
  2389. },
  2390. {
  2391. "name": "hyperf/di",
  2392. "version": "v3.1.42",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/hyperf/di.git",
  2396. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2401. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2402. "shasum": ""
  2403. },
  2404. "require": {
  2405. "doctrine/instantiator": "^1.0",
  2406. "hyperf/code-parser": "~3.1.0",
  2407. "hyperf/pipeline": "~3.1.0",
  2408. "hyperf/stdlib": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "nikic/php-parser": "^4.1",
  2411. "php": ">=8.1",
  2412. "php-di/phpdoc-reader": "^2.2",
  2413. "psr/container": "^1.0 || ^2.0",
  2414. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2415. "vlucas/phpdotenv": "^5.0"
  2416. },
  2417. "suggest": {
  2418. "ext-pcntl": "Required to scan annotations.",
  2419. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "3.1-dev"
  2425. },
  2426. "hyperf": {
  2427. "config": "Hyperf\\Di\\ConfigProvider"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Hyperf\\Di\\": "src/"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "description": "A DI for Hyperf.",
  2440. "homepage": "https://hyperf.io",
  2441. "keywords": [
  2442. "annotation",
  2443. "di",
  2444. "hyperf",
  2445. "php",
  2446. "swoole"
  2447. ],
  2448. "support": {
  2449. "docs": "https://hyperf.wiki",
  2450. "issues": "https://github.com/hyperf/hyperf/issues",
  2451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2452. "source": "https://github.com/hyperf/hyperf"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://opencollective.com/hyperf",
  2461. "type": "open_collective"
  2462. }
  2463. ],
  2464. "time": "2024-09-25T02:54:12+00:00"
  2465. },
  2466. {
  2467. "name": "hyperf/dispatcher",
  2468. "version": "v3.1.42",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/hyperf/dispatcher.git",
  2472. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2477. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "hyperf/contract": "~3.1.0",
  2482. "php": ">=8.1",
  2483. "psr/container": "^1.0 || ^2.0",
  2484. "psr/http-message": "^1.0 || ^2.0",
  2485. "psr/http-server-middleware": "^1.0"
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "branch-alias": {
  2490. "dev-master": "3.1-dev"
  2491. },
  2492. "hyperf": {
  2493. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "Hyperf\\Dispatcher\\": "src/"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "description": "A HTTP Server for Hyperf.",
  2506. "homepage": "https://hyperf.io",
  2507. "keywords": [
  2508. "dispatcher",
  2509. "filter",
  2510. "hyperf",
  2511. "middleware",
  2512. "php",
  2513. "swoole"
  2514. ],
  2515. "support": {
  2516. "docs": "https://hyperf.wiki",
  2517. "issues": "https://github.com/hyperf/hyperf/issues",
  2518. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2519. "source": "https://github.com/hyperf/hyperf"
  2520. },
  2521. "funding": [
  2522. {
  2523. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2524. "type": "custom"
  2525. },
  2526. {
  2527. "url": "https://opencollective.com/hyperf",
  2528. "type": "open_collective"
  2529. }
  2530. ],
  2531. "time": "2024-09-25T02:54:12+00:00"
  2532. },
  2533. {
  2534. "name": "hyperf/engine",
  2535. "version": "v2.11.0",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/hyperf/engine.git",
  2539. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2544. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "hyperf/engine-contract": "~1.10.0",
  2549. "php": ">=8.0"
  2550. },
  2551. "conflict": {
  2552. "ext-swoole": "<5.0"
  2553. },
  2554. "require-dev": {
  2555. "friendsofphp/php-cs-fixer": "^3.0",
  2556. "hyperf/guzzle": "^3.0",
  2557. "hyperf/http-message": "^3.0",
  2558. "mockery/mockery": "^1.5",
  2559. "phpstan/phpstan": "^1.0",
  2560. "phpunit/phpunit": "^9.4",
  2561. "swoole/ide-helper": "5.*"
  2562. },
  2563. "suggest": {
  2564. "ext-sockets": "*",
  2565. "ext-swoole": ">=5.0",
  2566. "hyperf/http-message": "Required to use ResponseEmitter.",
  2567. "psr/http-message": "Required to use WebSocket Frame."
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "2.11-dev"
  2573. },
  2574. "hyperf": {
  2575. "config": "Hyperf\\Engine\\ConfigProvider"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "files": [
  2580. "src/Functions.php"
  2581. ],
  2582. "psr-4": {
  2583. "Hyperf\\Engine\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "description": "Coroutine engine provided by swoole.",
  2591. "keywords": [
  2592. "engine",
  2593. "hyperf",
  2594. "php",
  2595. "swoole"
  2596. ],
  2597. "support": {
  2598. "issues": "https://github.com/hyperf/engine/issues",
  2599. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2600. },
  2601. "funding": [
  2602. {
  2603. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2604. "type": "custom"
  2605. },
  2606. {
  2607. "url": "https://opencollective.com/hyperf",
  2608. "type": "open_collective"
  2609. }
  2610. ],
  2611. "time": "2024-04-17T13:36:28+00:00"
  2612. },
  2613. {
  2614. "name": "hyperf/engine-contract",
  2615. "version": "v1.10.1",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/hyperf/engine-contract.git",
  2619. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2624. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=8.0"
  2629. },
  2630. "require-dev": {
  2631. "friendsofphp/php-cs-fixer": "^3.0",
  2632. "mockery/mockery": "^1.0",
  2633. "phpstan/phpstan": "^1.0",
  2634. "phpunit/phpunit": ">=7.0",
  2635. "psr/http-message": "^1.0",
  2636. "swoole/ide-helper": "^4.5"
  2637. },
  2638. "suggest": {
  2639. "psr/http-message": "Required to use WebSocket Frame."
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "1.9-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Hyperf\\Engine\\Contract\\": "src/"
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "MIT"
  2655. ],
  2656. "description": "Contract for Coroutine Engine",
  2657. "keywords": [
  2658. "contract",
  2659. "coroutine",
  2660. "engine",
  2661. "hyperf",
  2662. "php"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/hyperf/engine-contract/issues",
  2666. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://opencollective.com/hyperf",
  2675. "type": "open_collective"
  2676. }
  2677. ],
  2678. "time": "2024-04-17T13:34:51+00:00"
  2679. },
  2680. {
  2681. "name": "hyperf/event",
  2682. "version": "v3.1.42",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/hyperf/event.git",
  2686. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2691. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "hyperf/contract": "~3.1.0",
  2696. "hyperf/stdlib": "~3.1.0",
  2697. "php": ">=8.1",
  2698. "psr/event-dispatcher": "^1.0"
  2699. },
  2700. "suggest": {
  2701. "hyperf/di": "Required to use annotatioins."
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-master": "3.1-dev"
  2707. },
  2708. "hyperf": {
  2709. "config": "Hyperf\\Event\\ConfigProvider"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "psr-4": {
  2714. "Hyperf\\Event\\": "src/"
  2715. }
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "description": "an event manager that implements PSR-14.",
  2722. "homepage": "https://hyperf.io",
  2723. "keywords": [
  2724. "event",
  2725. "hyperf",
  2726. "php",
  2727. "swoole"
  2728. ],
  2729. "support": {
  2730. "docs": "https://hyperf.wiki",
  2731. "issues": "https://github.com/hyperf/hyperf/issues",
  2732. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2733. "source": "https://github.com/hyperf/hyperf"
  2734. },
  2735. "funding": [
  2736. {
  2737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2738. "type": "custom"
  2739. },
  2740. {
  2741. "url": "https://opencollective.com/hyperf",
  2742. "type": "open_collective"
  2743. }
  2744. ],
  2745. "time": "2024-09-25T02:54:12+00:00"
  2746. },
  2747. {
  2748. "name": "hyperf/exception-handler",
  2749. "version": "v3.1.42",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/hyperf/exception-handler.git",
  2753. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2758. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "hyperf/context": "~3.1.0",
  2763. "hyperf/contract": "~3.1.0",
  2764. "hyperf/dispatcher": "~3.1.0",
  2765. "hyperf/http-message": "~3.1.0",
  2766. "hyperf/stdlib": "~3.1.0",
  2767. "hyperf/support": "~3.1.0",
  2768. "php": ">=8.1",
  2769. "psr/container": "^1.0 || ^2.0",
  2770. "psr/http-message": "^1.0 || ^2.0",
  2771. "swow/psr7-plus": "^1.0"
  2772. },
  2773. "suggest": {
  2774. "hyperf/di": "Required to use #[ExceptionHandler]",
  2775. "hyperf/event": "Required to use listeners",
  2776. "hyperf/framework": "Required to use listeners",
  2777. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "3.1-dev"
  2783. },
  2784. "hyperf": {
  2785. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Hyperf\\ExceptionHandler\\": "src/"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "description": "Exception handler for hyperf",
  2798. "homepage": "https://hyperf.io",
  2799. "keywords": [
  2800. "exception-handler",
  2801. "php",
  2802. "swoole"
  2803. ],
  2804. "support": {
  2805. "docs": "https://hyperf.wiki",
  2806. "issues": "https://github.com/hyperf/hyperf/issues",
  2807. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2808. "source": "https://github.com/hyperf/hyperf"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2813. "type": "custom"
  2814. },
  2815. {
  2816. "url": "https://opencollective.com/hyperf",
  2817. "type": "open_collective"
  2818. }
  2819. ],
  2820. "time": "2024-09-25T02:54:12+00:00"
  2821. },
  2822. {
  2823. "name": "hyperf/framework",
  2824. "version": "v3.1.42",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/hyperf/framework.git",
  2828. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2833. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "fig/http-message-util": "^1.1.2",
  2838. "hyperf/contract": "~3.1.0",
  2839. "hyperf/coordinator": "~3.1.0",
  2840. "hyperf/coroutine": "~3.1.0",
  2841. "php": ">=8.1",
  2842. "psr/container": "^1.0 || ^2.0",
  2843. "psr/event-dispatcher": "^1.0",
  2844. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2845. },
  2846. "suggest": {
  2847. "ext-swoole": "Required to use swoole engine.",
  2848. "hyperf/command": "Required to use Command annotation.",
  2849. "hyperf/di": "Required to use Command annotation.",
  2850. "hyperf/dispatcher": "Required to use BootApplication event.",
  2851. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "3.1-dev"
  2857. },
  2858. "hyperf": {
  2859. "config": "Hyperf\\Framework\\ConfigProvider"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Hyperf\\Framework\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2872. "homepage": "https://hyperf.io",
  2873. "keywords": [
  2874. "Microservice",
  2875. "framework",
  2876. "hyperf",
  2877. "middleware",
  2878. "php",
  2879. "swoole"
  2880. ],
  2881. "support": {
  2882. "docs": "https://hyperf.wiki",
  2883. "issues": "https://github.com/hyperf/hyperf/issues",
  2884. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2885. "source": "https://github.com/hyperf/hyperf"
  2886. },
  2887. "funding": [
  2888. {
  2889. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2890. "type": "custom"
  2891. },
  2892. {
  2893. "url": "https://opencollective.com/hyperf",
  2894. "type": "open_collective"
  2895. }
  2896. ],
  2897. "time": "2024-09-25T02:54:12+00:00"
  2898. },
  2899. {
  2900. "name": "hyperf/guzzle",
  2901. "version": "v3.1.42",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/hyperf/guzzle.git",
  2905. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2910. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2915. "php": ">=8.1",
  2916. "psr/container": "^1.0 || ^2.0",
  2917. "psr/http-message": "^1.0 || ^2.0"
  2918. },
  2919. "suggest": {
  2920. "ext-curl": "Required for CURL handler support",
  2921. "hyperf/pool": "Required to use pool handler."
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.1-dev"
  2927. },
  2928. "hyperf": {
  2929. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2930. }
  2931. },
  2932. "autoload": {
  2933. "psr-4": {
  2934. "Hyperf\\Guzzle\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "description": "Swoole coroutine handler for guzzle",
  2942. "keywords": [
  2943. "Guzzle",
  2944. "handler",
  2945. "php",
  2946. "swoole"
  2947. ],
  2948. "support": {
  2949. "issues": "https://github.com/hyperf/guzzle/issues",
  2950. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2951. },
  2952. "funding": [
  2953. {
  2954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2955. "type": "custom"
  2956. },
  2957. {
  2958. "url": "https://opencollective.com/hyperf",
  2959. "type": "open_collective"
  2960. }
  2961. ],
  2962. "time": "2024-09-25T02:54:12+00:00"
  2963. },
  2964. {
  2965. "name": "hyperf/http-message",
  2966. "version": "v3.1.42",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/hyperf/http-message.git",
  2970. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2975. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "hyperf/codec": "~3.1.0",
  2980. "hyperf/engine": "^2.11",
  2981. "hyperf/support": "~3.1.0",
  2982. "laminas/laminas-mime": "^2.7",
  2983. "php": ">=8.1",
  2984. "psr/http-message": "^1.0 || ^2.0",
  2985. "swow/psr7-plus": "^1.0"
  2986. },
  2987. "suggest": {
  2988. "psr/container": "Required to replace RequestParserInterface."
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "3.1-dev"
  2994. },
  2995. "hyperf": {
  2996. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Hyperf\\HttpMessage\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "description": "microservice framework base on swoole",
  3009. "keywords": [
  3010. "http-message",
  3011. "hyperf",
  3012. "php",
  3013. "swoole"
  3014. ],
  3015. "support": {
  3016. "issues": "https://github.com/hyperf/http-message/issues",
  3017. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://opencollective.com/hyperf",
  3026. "type": "open_collective"
  3027. }
  3028. ],
  3029. "time": "2024-09-25T02:54:12+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/http-server",
  3033. "version": "v3.1.42",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/http-server.git",
  3037. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3042. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "hyperf/codec": "~3.1.0",
  3047. "hyperf/collection": "~3.1.0",
  3048. "hyperf/context": "~3.1.0",
  3049. "hyperf/contract": "~3.1.0",
  3050. "hyperf/coroutine": "~3.1.0",
  3051. "hyperf/dispatcher": "~3.1.0",
  3052. "hyperf/event": "~3.1.0",
  3053. "hyperf/exception-handler": "~3.1.0",
  3054. "hyperf/http-message": "~3.1.0",
  3055. "hyperf/macroable": "~3.1.0",
  3056. "hyperf/serializer": "~3.1.0",
  3057. "hyperf/server": "~3.1.0",
  3058. "hyperf/stdlib": "~3.1.0",
  3059. "hyperf/support": "~3.1.0",
  3060. "nikic/fast-route": "^1.3",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "swow/psr7-plus": "^1.0"
  3064. },
  3065. "suggest": {
  3066. "hyperf/di": "Required to use annotations."
  3067. },
  3068. "type": "library",
  3069. "extra": {
  3070. "branch-alias": {
  3071. "dev-master": "3.1-dev"
  3072. },
  3073. "hyperf": {
  3074. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3075. }
  3076. },
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Hyperf\\HttpServer\\": "src/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "description": "A HTTP Server for Hyperf.",
  3087. "homepage": "https://hyperf.io",
  3088. "keywords": [
  3089. "http",
  3090. "http-server",
  3091. "hyperf",
  3092. "php",
  3093. "swoole"
  3094. ],
  3095. "support": {
  3096. "docs": "https://hyperf.wiki",
  3097. "issues": "https://github.com/hyperf/hyperf/issues",
  3098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3099. "source": "https://github.com/hyperf/hyperf"
  3100. },
  3101. "funding": [
  3102. {
  3103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3104. "type": "custom"
  3105. },
  3106. {
  3107. "url": "https://opencollective.com/hyperf",
  3108. "type": "open_collective"
  3109. }
  3110. ],
  3111. "time": "2024-09-25T02:54:12+00:00"
  3112. },
  3113. {
  3114. "name": "hyperf/json-rpc",
  3115. "version": "v3.1.42",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/hyperf/json-rpc.git",
  3119. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3124. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "hyperf/codec": "~3.1.0",
  3129. "hyperf/context": "~3.1.0",
  3130. "hyperf/contract": "~3.1.0",
  3131. "hyperf/engine": "^2.0",
  3132. "hyperf/http-message": "~3.1.0",
  3133. "hyperf/load-balancer": "~3.1.0",
  3134. "hyperf/rpc": "~3.1.0",
  3135. "hyperf/serializer": "~3.1.0",
  3136. "hyperf/support": "~3.1.0",
  3137. "hyperf/utils": "~3.1.0",
  3138. "php": ">=8.1",
  3139. "psr/container": "^1.0 || ^2.0",
  3140. "swow/psr7-plus": "^1.0"
  3141. },
  3142. "suggest": {
  3143. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3144. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3145. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3146. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3147. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "3.1-dev"
  3153. },
  3154. "hyperf": {
  3155. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3156. }
  3157. },
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Hyperf\\JsonRpc\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3168. "homepage": "https://hyperf.io",
  3169. "keywords": [
  3170. "hyperf",
  3171. "json-rpc",
  3172. "php",
  3173. "swoole"
  3174. ],
  3175. "support": {
  3176. "docs": "https://hyperf.wiki",
  3177. "issues": "https://github.com/hyperf/hyperf/issues",
  3178. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3179. "source": "https://github.com/hyperf/hyperf"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3184. "type": "custom"
  3185. },
  3186. {
  3187. "url": "https://opencollective.com/hyperf",
  3188. "type": "open_collective"
  3189. }
  3190. ],
  3191. "time": "2024-09-25T02:54:12+00:00"
  3192. },
  3193. {
  3194. "name": "hyperf/load-balancer",
  3195. "version": "v3.1.42",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/hyperf/load-balancer.git",
  3199. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3204. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "hyperf/coordinator": "~3.1.0",
  3209. "hyperf/coroutine": "~3.1.0",
  3210. "markrogoyski/math-php": "^2.0",
  3211. "php": ">=8.1",
  3212. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "3.1-dev"
  3218. },
  3219. "hyperf": {
  3220. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Hyperf\\LoadBalancer\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "description": "A load balancer library for Hyperf.",
  3233. "homepage": "https://hyperf.io",
  3234. "keywords": [
  3235. "hyperf",
  3236. "load-balancer",
  3237. "php",
  3238. "swoole"
  3239. ],
  3240. "support": {
  3241. "docs": "https://hyperf.wiki",
  3242. "issues": "https://github.com/hyperf/hyperf/issues",
  3243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3244. "source": "https://github.com/hyperf/hyperf"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://opencollective.com/hyperf",
  3253. "type": "open_collective"
  3254. }
  3255. ],
  3256. "time": "2024-09-25T02:54:12+00:00"
  3257. },
  3258. {
  3259. "name": "hyperf/logger",
  3260. "version": "v3.1.42",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/hyperf/logger.git",
  3264. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3269. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "hyperf/contract": "~3.1.0",
  3274. "hyperf/support": "~3.1.0",
  3275. "hyperf/utils": "~3.1.0",
  3276. "monolog/monolog": "^2.7 || ^3.1",
  3277. "php": ">=8.1",
  3278. "psr/container": "^1.0 || ^2.0",
  3279. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "3.1-dev"
  3285. },
  3286. "hyperf": {
  3287. "config": "Hyperf\\Logger\\ConfigProvider"
  3288. }
  3289. },
  3290. "autoload": {
  3291. "psr-4": {
  3292. "Hyperf\\Logger\\": "src/"
  3293. }
  3294. },
  3295. "notification-url": "https://packagist.org/downloads/",
  3296. "license": [
  3297. "MIT"
  3298. ],
  3299. "description": "A logger component for hyperf.",
  3300. "homepage": "https://hyperf.io",
  3301. "keywords": [
  3302. "hyperf",
  3303. "logger",
  3304. "php"
  3305. ],
  3306. "support": {
  3307. "docs": "https://hyperf.wiki",
  3308. "issues": "https://github.com/hyperf/hyperf/issues",
  3309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3310. "source": "https://github.com/hyperf/hyperf"
  3311. },
  3312. "funding": [
  3313. {
  3314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3315. "type": "custom"
  3316. },
  3317. {
  3318. "url": "https://opencollective.com/hyperf",
  3319. "type": "open_collective"
  3320. }
  3321. ],
  3322. "time": "2024-09-25T02:54:12+00:00"
  3323. },
  3324. {
  3325. "name": "hyperf/macroable",
  3326. "version": "v3.1.42",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/hyperf/macroable.git",
  3330. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3335. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3336. "shasum": ""
  3337. },
  3338. "require": {
  3339. "php": ">=8.1"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "branch-alias": {
  3344. "dev-master": "3.1-dev"
  3345. }
  3346. },
  3347. "autoload": {
  3348. "psr-4": {
  3349. "Hyperf\\Macroable\\": "src/"
  3350. }
  3351. },
  3352. "notification-url": "https://packagist.org/downloads/",
  3353. "license": [
  3354. "MIT"
  3355. ],
  3356. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3357. "homepage": "https://hyperf.io",
  3358. "keywords": [
  3359. "hyperf",
  3360. "macroable",
  3361. "php",
  3362. "swoole"
  3363. ],
  3364. "support": {
  3365. "docs": "https://hyperf.wiki",
  3366. "issues": "https://github.com/hyperf/hyperf/issues",
  3367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3368. "source": "https://github.com/hyperf/hyperf"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3373. "type": "custom"
  3374. },
  3375. {
  3376. "url": "https://opencollective.com/hyperf",
  3377. "type": "open_collective"
  3378. }
  3379. ],
  3380. "time": "2024-09-25T02:54:12+00:00"
  3381. },
  3382. {
  3383. "name": "hyperf/memory",
  3384. "version": "v3.1.42",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/hyperf/memory.git",
  3388. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3393. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3394. "shasum": ""
  3395. },
  3396. "require": {
  3397. "php": ">=8.1"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "3.1-dev"
  3403. },
  3404. "hyperf": {
  3405. "config": "Hyperf\\Memory\\ConfigProvider"
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Hyperf\\Memory\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "description": "An independent component that use to operate and manage memory.",
  3418. "homepage": "https://hyperf.io",
  3419. "keywords": [
  3420. "hyperf",
  3421. "memory",
  3422. "php",
  3423. "swoole"
  3424. ],
  3425. "support": {
  3426. "docs": "https://hyperf.wiki",
  3427. "issues": "https://github.com/hyperf/hyperf/issues",
  3428. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3429. "source": "https://github.com/hyperf/hyperf"
  3430. },
  3431. "funding": [
  3432. {
  3433. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3434. "type": "custom"
  3435. },
  3436. {
  3437. "url": "https://opencollective.com/hyperf",
  3438. "type": "open_collective"
  3439. }
  3440. ],
  3441. "time": "2024-09-25T02:54:12+00:00"
  3442. },
  3443. {
  3444. "name": "hyperf/model-listener",
  3445. "version": "v3.1.42",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/hyperf/model-listener.git",
  3449. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3454. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "hyperf/contract": "~3.1.0",
  3459. "hyperf/database": "~3.1.0",
  3460. "hyperf/di": "~3.1.0",
  3461. "hyperf/event": "~3.1.0",
  3462. "hyperf/support": "~3.1.0",
  3463. "hyperf/utils": "~3.1.0",
  3464. "php": ">=8.1",
  3465. "psr/container": "^1.0 || ^2.0"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "branch-alias": {
  3470. "dev-master": "3.1-dev"
  3471. },
  3472. "hyperf": {
  3473. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Hyperf\\ModelListener\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "description": "A model listener for Hyperf.",
  3486. "homepage": "https://hyperf.io",
  3487. "keywords": [
  3488. "hyperf",
  3489. "model-listener",
  3490. "php",
  3491. "swoole"
  3492. ],
  3493. "support": {
  3494. "docs": "https://hyperf.wiki",
  3495. "issues": "https://github.com/hyperf/hyperf/issues",
  3496. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3497. "source": "https://github.com/hyperf/hyperf"
  3498. },
  3499. "funding": [
  3500. {
  3501. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3502. "type": "custom"
  3503. },
  3504. {
  3505. "url": "https://opencollective.com/hyperf",
  3506. "type": "open_collective"
  3507. }
  3508. ],
  3509. "time": "2024-09-25T02:54:12+00:00"
  3510. },
  3511. {
  3512. "name": "hyperf/nacos",
  3513. "version": "v3.1.42",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/hyperf/nacos.git",
  3517. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3522. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3527. "hyperf/codec": "~3.1.0",
  3528. "hyperf/contract": "~3.1.0",
  3529. "hyperf/support": "~3.1.0",
  3530. "hyperf/utils": "~3.1.0",
  3531. "jetbrains/phpstorm-attributes": "^1.0",
  3532. "php": ">=8.1"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.1-dev"
  3538. },
  3539. "hyperf": {
  3540. "config": "Hyperf\\Nacos\\ConfigProvider"
  3541. }
  3542. },
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Hyperf\\Nacos\\": "src/"
  3546. }
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "description": "Nacos SDK",
  3553. "keywords": [
  3554. "hyperf",
  3555. "nacos",
  3556. "php"
  3557. ],
  3558. "support": {
  3559. "issues": "https://github.com/hyperf/nacos/issues",
  3560. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3561. },
  3562. "funding": [
  3563. {
  3564. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3565. "type": "custom"
  3566. },
  3567. {
  3568. "url": "https://opencollective.com/hyperf",
  3569. "type": "open_collective"
  3570. }
  3571. ],
  3572. "time": "2024-09-25T02:54:12+00:00"
  3573. },
  3574. {
  3575. "name": "hyperf/paginator",
  3576. "version": "v3.1.42",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/hyperf/paginator.git",
  3580. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3585. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "hyperf/contract": "~3.1.0",
  3590. "hyperf/support": "~3.1.0",
  3591. "hyperf/utils": "~3.1.0",
  3592. "php": ">=8.1"
  3593. },
  3594. "suggest": {
  3595. "hyperf/event": "Reqiured to use PageResolverListener.",
  3596. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3597. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "branch-alias": {
  3602. "dev-master": "3.1-dev"
  3603. },
  3604. "hyperf": {
  3605. "config": "Hyperf\\Paginator\\ConfigProvider"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Hyperf\\Paginator\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "description": "A paginator component for hyperf.",
  3618. "homepage": "https://hyperf.io",
  3619. "keywords": [
  3620. "hyperf",
  3621. "paginator",
  3622. "php"
  3623. ],
  3624. "support": {
  3625. "docs": "https://hyperf.wiki",
  3626. "issues": "https://github.com/hyperf/hyperf/issues",
  3627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3628. "source": "https://github.com/hyperf/hyperf"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://opencollective.com/hyperf",
  3637. "type": "open_collective"
  3638. }
  3639. ],
  3640. "time": "2024-09-25T02:54:12+00:00"
  3641. },
  3642. {
  3643. "name": "hyperf/pipeline",
  3644. "version": "v3.1.42",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/hyperf/pipeline.git",
  3648. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3653. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "php": ">=8.1",
  3658. "psr/container": "^1.0 || ^2.0"
  3659. },
  3660. "type": "library",
  3661. "extra": {
  3662. "branch-alias": {
  3663. "dev-master": "3.1-dev"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Hyperf\\Pipeline\\": "src/"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3676. "homepage": "https://hyperf.io",
  3677. "keywords": [
  3678. "hyperf",
  3679. "php",
  3680. "pipeline",
  3681. "swoole"
  3682. ],
  3683. "support": {
  3684. "docs": "https://hyperf.wiki",
  3685. "issues": "https://github.com/hyperf/hyperf/issues",
  3686. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3687. "source": "https://github.com/hyperf/hyperf"
  3688. },
  3689. "funding": [
  3690. {
  3691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3692. "type": "custom"
  3693. },
  3694. {
  3695. "url": "https://opencollective.com/hyperf",
  3696. "type": "open_collective"
  3697. }
  3698. ],
  3699. "time": "2024-09-25T02:54:12+00:00"
  3700. },
  3701. {
  3702. "name": "hyperf/pool",
  3703. "version": "v3.1.42",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/hyperf/pool.git",
  3707. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3712. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "hyperf/contract": "~3.1.0",
  3717. "hyperf/support": "~3.1.0",
  3718. "hyperf/utils": "~3.1.0",
  3719. "php": ">=8.1",
  3720. "psr/container": "^1.0 || ^2.0"
  3721. },
  3722. "suggest": {
  3723. "psr/event-dispatcher": "Required to use events."
  3724. },
  3725. "type": "library",
  3726. "extra": {
  3727. "branch-alias": {
  3728. "dev-master": "3.1-dev"
  3729. },
  3730. "hyperf": {
  3731. "config": "Hyperf\\Pool\\ConfigProvider"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-4": {
  3736. "Hyperf\\Pool\\": "src/"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "description": "An independent universal connection pool component.",
  3744. "homepage": "https://hyperf.io",
  3745. "keywords": [
  3746. "connection-pool",
  3747. "hyperf",
  3748. "php",
  3749. "swoole"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-09-25T02:54:12+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/process",
  3771. "version": "v3.1.42",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/process.git",
  3775. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3780. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "hyperf/contract": "~3.1.0",
  3785. "hyperf/support": "~3.1.0",
  3786. "hyperf/utils": "~3.1.0",
  3787. "php": ">=8.1",
  3788. "psr/container": "^1.0 || ^2.0",
  3789. "psr/event-dispatcher": "^1.0"
  3790. },
  3791. "suggest": {
  3792. "hyperf/di": "Required to use annotations.",
  3793. "hyperf/event": "Required to dump the message before and after process.",
  3794. "hyperf/framework": "Required to use BootProcessListener."
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-master": "3.1-dev"
  3800. },
  3801. "hyperf": {
  3802. "config": "Hyperf\\Process\\ConfigProvider"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Hyperf\\Process\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "description": "A process component for hyperf.",
  3815. "homepage": "https://hyperf.io",
  3816. "keywords": [
  3817. "hyperf",
  3818. "php",
  3819. "process"
  3820. ],
  3821. "support": {
  3822. "docs": "https://hyperf.wiki",
  3823. "issues": "https://github.com/hyperf/hyperf/issues",
  3824. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3825. "source": "https://github.com/hyperf/hyperf"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3830. "type": "custom"
  3831. },
  3832. {
  3833. "url": "https://opencollective.com/hyperf",
  3834. "type": "open_collective"
  3835. }
  3836. ],
  3837. "time": "2024-09-25T02:54:12+00:00"
  3838. },
  3839. {
  3840. "name": "hyperf/redis",
  3841. "version": "v3.1.42",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/hyperf/redis.git",
  3845. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3850. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3851. "shasum": ""
  3852. },
  3853. "require": {
  3854. "ext-redis": "^5.0 || ^6.0",
  3855. "hyperf/contract": "~3.1.0",
  3856. "hyperf/pool": "~3.1.0",
  3857. "hyperf/support": "~3.1.0",
  3858. "hyperf/tappable": "~3.1.0",
  3859. "hyperf/utils": "~3.1.0",
  3860. "php": ">=8.1",
  3861. "psr/container": "^1.0 || ^2.0"
  3862. },
  3863. "suggest": {
  3864. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3865. "hyperf/di": "Create the RedisPool via dependency injection."
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-master": "3.1-dev"
  3871. },
  3872. "hyperf": {
  3873. "config": "Hyperf\\Redis\\ConfigProvider"
  3874. }
  3875. },
  3876. "autoload": {
  3877. "psr-4": {
  3878. "Hyperf\\Redis\\": "src/"
  3879. }
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "description": "A redis component for hyperf.",
  3886. "homepage": "https://hyperf.io",
  3887. "keywords": [
  3888. "hyperf",
  3889. "php",
  3890. "pool",
  3891. "redis"
  3892. ],
  3893. "support": {
  3894. "docs": "https://hyperf.wiki",
  3895. "issues": "https://github.com/hyperf/hyperf/issues",
  3896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3897. "source": "https://github.com/hyperf/hyperf"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://opencollective.com/hyperf",
  3906. "type": "open_collective"
  3907. }
  3908. ],
  3909. "time": "2024-09-25T02:54:12+00:00"
  3910. },
  3911. {
  3912. "name": "hyperf/rpc",
  3913. "version": "v3.1.42",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/hyperf/rpc.git",
  3917. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3922. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "hyperf/codec": "~3.1.0",
  3927. "hyperf/contract": "~3.1.0",
  3928. "hyperf/support": "~3.1.0",
  3929. "jetbrains/phpstorm-attributes": "^1.0",
  3930. "php": ">=8.1"
  3931. },
  3932. "type": "library",
  3933. "extra": {
  3934. "branch-alias": {
  3935. "dev-master": "3.1-dev"
  3936. },
  3937. "hyperf": []
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Hyperf\\Rpc\\": "src/"
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "description": "A rpc basic library for Hyperf.",
  3949. "homepage": "https://hyperf.io",
  3950. "keywords": [
  3951. "hyperf",
  3952. "php",
  3953. "rpc",
  3954. "swoole"
  3955. ],
  3956. "support": {
  3957. "docs": "https://hyperf.wiki",
  3958. "issues": "https://github.com/hyperf/hyperf/issues",
  3959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3960. "source": "https://github.com/hyperf/hyperf"
  3961. },
  3962. "funding": [
  3963. {
  3964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3965. "type": "custom"
  3966. },
  3967. {
  3968. "url": "https://opencollective.com/hyperf",
  3969. "type": "open_collective"
  3970. }
  3971. ],
  3972. "time": "2024-09-25T02:54:12+00:00"
  3973. },
  3974. {
  3975. "name": "hyperf/rpc-client",
  3976. "version": "v3.1.42",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/hyperf/rpc-client.git",
  3980. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3985. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "hyperf/code-parser": "~3.1.0",
  3990. "hyperf/load-balancer": "~3.1.0",
  3991. "hyperf/rpc": "~3.1.0",
  3992. "hyperf/support": "~3.1.0",
  3993. "hyperf/utils": "~3.1.0",
  3994. "jetbrains/phpstorm-attributes": "^1.0",
  3995. "php": ">=8.1",
  3996. "psr/container": "^1.0 || ^2.0"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "For better container experience.",
  4000. "hyperf/pool": "Required to use connection pool.",
  4001. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4002. },
  4003. "type": "library",
  4004. "extra": {
  4005. "branch-alias": {
  4006. "dev-master": "3.1-dev"
  4007. },
  4008. "hyperf": {
  4009. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "Hyperf\\RpcClient\\": "src/"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "description": "An abstract rpc server component for Hyperf.",
  4022. "homepage": "https://hyperf.io",
  4023. "keywords": [
  4024. "hyperf",
  4025. "json-rpc",
  4026. "php",
  4027. "rpc",
  4028. "rpc-client",
  4029. "swoole"
  4030. ],
  4031. "support": {
  4032. "docs": "https://hyperf.wiki",
  4033. "issues": "https://github.com/hyperf/hyperf/issues",
  4034. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4035. "source": "https://github.com/hyperf/hyperf"
  4036. },
  4037. "funding": [
  4038. {
  4039. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4040. "type": "custom"
  4041. },
  4042. {
  4043. "url": "https://opencollective.com/hyperf",
  4044. "type": "open_collective"
  4045. }
  4046. ],
  4047. "time": "2024-09-25T02:54:12+00:00"
  4048. },
  4049. {
  4050. "name": "hyperf/rpc-server",
  4051. "version": "v3.1.42",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/hyperf/rpc-server.git",
  4055. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4060. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "hyperf/http-server": "~3.1.0",
  4065. "hyperf/rpc": "~3.1.0",
  4066. "php": ">=8.1"
  4067. },
  4068. "suggest": {
  4069. "hyperf/di": "Required to use annotations."
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "3.1-dev"
  4075. },
  4076. "hyperf": {
  4077. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Hyperf\\RpcServer\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "An abstract rpc server component for Hyperf.",
  4090. "homepage": "https://hyperf.io",
  4091. "keywords": [
  4092. "hyperf",
  4093. "php",
  4094. "rpc",
  4095. "rpc-server",
  4096. "swoole"
  4097. ],
  4098. "support": {
  4099. "docs": "https://hyperf.wiki",
  4100. "issues": "https://github.com/hyperf/hyperf/issues",
  4101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4102. "source": "https://github.com/hyperf/hyperf"
  4103. },
  4104. "funding": [
  4105. {
  4106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4107. "type": "custom"
  4108. },
  4109. {
  4110. "url": "https://opencollective.com/hyperf",
  4111. "type": "open_collective"
  4112. }
  4113. ],
  4114. "time": "2024-09-25T02:54:12+00:00"
  4115. },
  4116. {
  4117. "name": "hyperf/serializer",
  4118. "version": "v3.1.42",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/hyperf/serializer.git",
  4122. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4127. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "hyperf/contract": "~3.1.0",
  4132. "php": ">=8.1"
  4133. },
  4134. "suggest": {
  4135. "hyperf/di": "Required to use ExceptionNormalizer",
  4136. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4137. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-master": "3.1-dev"
  4143. },
  4144. "hyperf": {
  4145. "config": "Hyperf\\Serializer\\ConfigProvider"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Hyperf\\Serializer\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "description": "A serializer component for Hyperf.",
  4158. "homepage": "https://hyperf.io",
  4159. "keywords": [
  4160. "hyperf",
  4161. "php",
  4162. "swoole",
  4163. "tappable"
  4164. ],
  4165. "support": {
  4166. "docs": "https://hyperf.wiki",
  4167. "issues": "https://github.com/hyperf/hyperf/issues",
  4168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4169. "source": "https://github.com/hyperf/hyperf"
  4170. },
  4171. "funding": [
  4172. {
  4173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4174. "type": "custom"
  4175. },
  4176. {
  4177. "url": "https://opencollective.com/hyperf",
  4178. "type": "open_collective"
  4179. }
  4180. ],
  4181. "time": "2024-09-25T02:54:12+00:00"
  4182. },
  4183. {
  4184. "name": "hyperf/server",
  4185. "version": "v3.1.42",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/hyperf/server.git",
  4189. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4194. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "hyperf/contract": "~3.1.0",
  4199. "hyperf/coordinator": "~3.1.0",
  4200. "hyperf/engine": "^2.8",
  4201. "hyperf/support": "~3.1.0",
  4202. "hyperf/tappable": "~3.1.0",
  4203. "php": ">=8.1",
  4204. "psr/container": "^1.0 || ^2.0",
  4205. "psr/event-dispatcher": "^1.0",
  4206. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4207. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4208. },
  4209. "suggest": {
  4210. "hyperf/event": "Dump the info after server start.",
  4211. "hyperf/framework": "Dump the info after server start."
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "branch-alias": {
  4216. "dev-master": "3.1-dev"
  4217. },
  4218. "hyperf": {
  4219. "config": "Hyperf\\Server\\ConfigProvider"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Hyperf\\Server\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "description": "A base server library for Hyperf.",
  4232. "homepage": "https://hyperf.io",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php",
  4236. "server",
  4237. "swoole"
  4238. ],
  4239. "support": {
  4240. "docs": "https://hyperf.wiki",
  4241. "issues": "https://github.com/hyperf/hyperf/issues",
  4242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4243. "source": "https://github.com/hyperf/hyperf"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://opencollective.com/hyperf",
  4252. "type": "open_collective"
  4253. }
  4254. ],
  4255. "time": "2024-09-25T02:54:12+00:00"
  4256. },
  4257. {
  4258. "name": "hyperf/service-governance",
  4259. "version": "v3.1.42",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/hyperf/service-governance.git",
  4263. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4268. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "hyperf/contract": "~3.1.0",
  4273. "hyperf/support": "~3.1.0",
  4274. "jetbrains/phpstorm-attributes": "^1.0",
  4275. "php": ">=8.1"
  4276. },
  4277. "suggest": {
  4278. "hyperf/event": "Required to use RegisterServiceListener.",
  4279. "hyperf/framework": "Required to use RegisterServiceListener.",
  4280. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4281. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4282. },
  4283. "type": "library",
  4284. "extra": {
  4285. "branch-alias": {
  4286. "dev-master": "3.1-dev"
  4287. },
  4288. "hyperf": {
  4289. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4290. }
  4291. },
  4292. "autoload": {
  4293. "psr-4": {
  4294. "Hyperf\\ServiceGovernance\\": "src/"
  4295. }
  4296. },
  4297. "notification-url": "https://packagist.org/downloads/",
  4298. "license": [
  4299. "MIT"
  4300. ],
  4301. "description": "A service governance component for Hyperf.",
  4302. "homepage": "https://hyperf.io",
  4303. "keywords": [
  4304. "hyperf",
  4305. "php",
  4306. "service-governance",
  4307. "swoole"
  4308. ],
  4309. "support": {
  4310. "docs": "https://hyperf.wiki",
  4311. "issues": "https://github.com/hyperf/hyperf/issues",
  4312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4313. "source": "https://github.com/hyperf/hyperf"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://opencollective.com/hyperf",
  4322. "type": "open_collective"
  4323. }
  4324. ],
  4325. "time": "2024-09-25T02:54:12+00:00"
  4326. },
  4327. {
  4328. "name": "hyperf/service-governance-consul",
  4329. "version": "v3.1.42",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/hyperf/service-governance-consul.git",
  4333. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4338. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "hyperf/consul": "~3.1.0",
  4343. "hyperf/contract": "~3.1.0",
  4344. "hyperf/service-governance": "~3.1.0",
  4345. "hyperf/support": "~3.1.0",
  4346. "hyperf/utils": "~3.1.0",
  4347. "php": ">=8.1"
  4348. },
  4349. "type": "library",
  4350. "extra": {
  4351. "branch-alias": {
  4352. "dev-master": "3.1-dev"
  4353. },
  4354. "hyperf": {
  4355. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4356. }
  4357. },
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4361. }
  4362. },
  4363. "notification-url": "https://packagist.org/downloads/",
  4364. "license": [
  4365. "MIT"
  4366. ],
  4367. "description": "A consul adapter for service governance.",
  4368. "homepage": "https://hyperf.io",
  4369. "keywords": [
  4370. "consul-adapter",
  4371. "hyperf",
  4372. "php",
  4373. "service-governance",
  4374. "swoole"
  4375. ],
  4376. "support": {
  4377. "docs": "https://hyperf.wiki",
  4378. "issues": "https://github.com/hyperf/hyperf/issues",
  4379. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4380. "source": "https://github.com/hyperf/hyperf"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4385. "type": "custom"
  4386. },
  4387. {
  4388. "url": "https://opencollective.com/hyperf",
  4389. "type": "open_collective"
  4390. }
  4391. ],
  4392. "time": "2024-09-25T02:54:12+00:00"
  4393. },
  4394. {
  4395. "name": "hyperf/service-governance-nacos",
  4396. "version": "v3.1.42",
  4397. "source": {
  4398. "type": "git",
  4399. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4400. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4401. },
  4402. "dist": {
  4403. "type": "zip",
  4404. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4405. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4406. "shasum": ""
  4407. },
  4408. "require": {
  4409. "hyperf/codec": "~3.1.0",
  4410. "hyperf/contract": "~3.1.0",
  4411. "hyperf/nacos": "~3.1.0",
  4412. "hyperf/service-governance": "~3.1.0",
  4413. "hyperf/support": "~3.1.0",
  4414. "hyperf/utils": "~3.1.0",
  4415. "php": ">=8.1"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. },
  4422. "hyperf": {
  4423. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A nacos adapter for service governance.",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "hyperf",
  4439. "nacos-adapter",
  4440. "php",
  4441. "service-governance",
  4442. "swoole"
  4443. ],
  4444. "support": {
  4445. "docs": "https://hyperf.wiki",
  4446. "issues": "https://github.com/hyperf/hyperf/issues",
  4447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4448. "source": "https://github.com/hyperf/hyperf"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://opencollective.com/hyperf",
  4457. "type": "open_collective"
  4458. }
  4459. ],
  4460. "time": "2024-09-25T02:54:12+00:00"
  4461. },
  4462. {
  4463. "name": "hyperf/snowflake",
  4464. "version": "v3.1.42",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/hyperf/snowflake.git",
  4468. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4473. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "hyperf/contract": "~3.1.0",
  4478. "php": ">=8.1"
  4479. },
  4480. "suggest": {
  4481. "hyperf/config": "Required to read snowflake config.",
  4482. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4483. "psr/container": "Required to use MetaGeneratorFactory."
  4484. },
  4485. "type": "library",
  4486. "extra": {
  4487. "branch-alias": {
  4488. "dev-master": "3.1-dev"
  4489. },
  4490. "hyperf": {
  4491. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "psr-4": {
  4496. "Hyperf\\Snowflake\\": "src/"
  4497. }
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "description": "A snowflake library",
  4504. "homepage": "https://hyperf.io",
  4505. "keywords": [
  4506. "php",
  4507. "snowflake"
  4508. ],
  4509. "support": {
  4510. "docs": "https://hyperf.wiki",
  4511. "issues": "https://github.com/hyperf/hyperf/issues",
  4512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4513. "source": "https://github.com/hyperf/hyperf"
  4514. },
  4515. "funding": [
  4516. {
  4517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4518. "type": "custom"
  4519. },
  4520. {
  4521. "url": "https://opencollective.com/hyperf",
  4522. "type": "open_collective"
  4523. }
  4524. ],
  4525. "time": "2024-09-25T02:54:12+00:00"
  4526. },
  4527. {
  4528. "name": "hyperf/stdlib",
  4529. "version": "v3.1.42",
  4530. "source": {
  4531. "type": "git",
  4532. "url": "https://github.com/hyperf/stdlib.git",
  4533. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4534. },
  4535. "dist": {
  4536. "type": "zip",
  4537. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4538. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4539. "shasum": ""
  4540. },
  4541. "require": {
  4542. "php": ">=8.1"
  4543. },
  4544. "type": "library",
  4545. "extra": {
  4546. "branch-alias": {
  4547. "dev-master": "3.1-dev"
  4548. }
  4549. },
  4550. "autoload": {
  4551. "psr-4": {
  4552. "Hyperf\\Stdlib\\": "src/"
  4553. }
  4554. },
  4555. "notification-url": "https://packagist.org/downloads/",
  4556. "license": [
  4557. "MIT"
  4558. ],
  4559. "description": "A stdlib component for Hyperf.",
  4560. "homepage": "https://hyperf.io",
  4561. "keywords": [
  4562. "hyperf",
  4563. "php",
  4564. "stdlib",
  4565. "swoole"
  4566. ],
  4567. "support": {
  4568. "docs": "https://hyperf.wiki",
  4569. "issues": "https://github.com/hyperf/hyperf/issues",
  4570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4571. "source": "https://github.com/hyperf/hyperf"
  4572. },
  4573. "funding": [
  4574. {
  4575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4576. "type": "custom"
  4577. },
  4578. {
  4579. "url": "https://opencollective.com/hyperf",
  4580. "type": "open_collective"
  4581. }
  4582. ],
  4583. "time": "2024-09-25T02:54:12+00:00"
  4584. },
  4585. {
  4586. "name": "hyperf/stringable",
  4587. "version": "v3.1.43",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/hyperf/stringable.git",
  4591. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4596. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "ext-mbstring": "*",
  4601. "hyperf/collection": "~3.1.0",
  4602. "hyperf/conditionable": "~3.1.0",
  4603. "hyperf/macroable": "~3.1.0",
  4604. "hyperf/tappable": "~3.1.0",
  4605. "php": ">=8.1"
  4606. },
  4607. "suggest": {
  4608. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4609. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4610. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "files": [
  4620. "src/Functions.php"
  4621. ],
  4622. "psr-4": {
  4623. "Hyperf\\Stringable\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "description": "Hyperf Stringable package which come from illuminate/support",
  4631. "homepage": "https://hyperf.io",
  4632. "keywords": [
  4633. "hyperf",
  4634. "php",
  4635. "stringable",
  4636. "swoole"
  4637. ],
  4638. "support": {
  4639. "docs": "https://hyperf.wiki",
  4640. "issues": "https://github.com/hyperf/hyperf/issues",
  4641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4642. "source": "https://github.com/hyperf/hyperf"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4647. "type": "custom"
  4648. },
  4649. {
  4650. "url": "https://opencollective.com/hyperf",
  4651. "type": "open_collective"
  4652. }
  4653. ],
  4654. "time": "2024-10-09T02:28:40+00:00"
  4655. },
  4656. {
  4657. "name": "hyperf/support",
  4658. "version": "v3.1.42",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/hyperf/support.git",
  4662. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4667. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "hyperf/collection": "~3.1.0",
  4672. "hyperf/context": "~3.1.0",
  4673. "hyperf/contract": "~3.1.0",
  4674. "hyperf/coroutine": "~3.1.0",
  4675. "hyperf/macroable": "~3.1.0",
  4676. "hyperf/stringable": "~3.1.0",
  4677. "php": ">=8.1"
  4678. },
  4679. "suggest": {
  4680. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4681. },
  4682. "type": "library",
  4683. "extra": {
  4684. "branch-alias": {
  4685. "dev-master": "3.1-dev"
  4686. }
  4687. },
  4688. "autoload": {
  4689. "files": [
  4690. "src/Functions.php"
  4691. ],
  4692. "psr-4": {
  4693. "Hyperf\\Support\\": "src/"
  4694. }
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "MIT"
  4699. ],
  4700. "description": "A support component for Hyperf.",
  4701. "homepage": "https://hyperf.io",
  4702. "keywords": [
  4703. "hyperf",
  4704. "php",
  4705. "support",
  4706. "swoole"
  4707. ],
  4708. "support": {
  4709. "docs": "https://hyperf.wiki",
  4710. "issues": "https://github.com/hyperf/hyperf/issues",
  4711. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4712. "source": "https://github.com/hyperf/hyperf"
  4713. },
  4714. "funding": [
  4715. {
  4716. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4717. "type": "custom"
  4718. },
  4719. {
  4720. "url": "https://opencollective.com/hyperf",
  4721. "type": "open_collective"
  4722. }
  4723. ],
  4724. "time": "2024-09-25T02:54:12+00:00"
  4725. },
  4726. {
  4727. "name": "hyperf/tappable",
  4728. "version": "v3.1.42",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/hyperf/tappable.git",
  4732. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4737. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": ">=8.1"
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-master": "3.1-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "files": [
  4751. "src/Functions.php"
  4752. ],
  4753. "psr-4": {
  4754. "Hyperf\\Tappable\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4762. "homepage": "https://hyperf.io",
  4763. "keywords": [
  4764. "hyperf",
  4765. "php",
  4766. "swoole",
  4767. "tappable"
  4768. ],
  4769. "support": {
  4770. "docs": "https://hyperf.wiki",
  4771. "issues": "https://github.com/hyperf/hyperf/issues",
  4772. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4773. "source": "https://github.com/hyperf/hyperf"
  4774. },
  4775. "funding": [
  4776. {
  4777. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4778. "type": "custom"
  4779. },
  4780. {
  4781. "url": "https://opencollective.com/hyperf",
  4782. "type": "open_collective"
  4783. }
  4784. ],
  4785. "time": "2024-09-25T02:54:12+00:00"
  4786. },
  4787. {
  4788. "name": "hyperf/translation",
  4789. "version": "v3.1.42",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/hyperf/translation.git",
  4793. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4798. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4799. "shasum": ""
  4800. },
  4801. "require": {
  4802. "hyperf/contract": "~3.1.0",
  4803. "hyperf/macroable": "~3.1.0",
  4804. "hyperf/support": "~3.1.0",
  4805. "hyperf/utils": "~3.1.0",
  4806. "php": ">=8.1",
  4807. "psr/container": "^1.0 || ^2.0"
  4808. },
  4809. "type": "library",
  4810. "extra": {
  4811. "branch-alias": {
  4812. "dev-master": "3.1-dev"
  4813. },
  4814. "hyperf": {
  4815. "config": "Hyperf\\Translation\\ConfigProvider"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "files": [
  4820. "src/Functions.php"
  4821. ],
  4822. "psr-4": {
  4823. "Hyperf\\Translation\\": "src/"
  4824. }
  4825. },
  4826. "notification-url": "https://packagist.org/downloads/",
  4827. "license": [
  4828. "MIT"
  4829. ],
  4830. "description": "An independent translation component, forked by illuminate/translation.",
  4831. "keywords": [
  4832. "hyperf",
  4833. "translation"
  4834. ],
  4835. "support": {
  4836. "issues": "https://github.com/hyperf/translation/issues",
  4837. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4838. },
  4839. "funding": [
  4840. {
  4841. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4842. "type": "custom"
  4843. },
  4844. {
  4845. "url": "https://opencollective.com/hyperf",
  4846. "type": "open_collective"
  4847. }
  4848. ],
  4849. "time": "2024-09-25T02:54:12+00:00"
  4850. },
  4851. {
  4852. "name": "hyperf/utils",
  4853. "version": "v3.1.42",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/hyperf/utils.git",
  4857. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4862. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4863. "shasum": ""
  4864. },
  4865. "require": {
  4866. "doctrine/inflector": "^2.0",
  4867. "hyperf/code-parser": "~3.1.0",
  4868. "hyperf/codec": "~3.1.0",
  4869. "hyperf/collection": "~3.1.0",
  4870. "hyperf/context": "~3.1.0",
  4871. "hyperf/contract": "~3.1.0",
  4872. "hyperf/coordinator": "~3.1.0",
  4873. "hyperf/coroutine": "~3.1.0",
  4874. "hyperf/engine": "^2.0",
  4875. "hyperf/macroable": "~3.1.0",
  4876. "hyperf/serializer": "~3.1.0",
  4877. "hyperf/stringable": "~3.1.0",
  4878. "hyperf/support": "~3.1.0",
  4879. "php": ">=8.1"
  4880. },
  4881. "type": "library",
  4882. "extra": {
  4883. "branch-alias": {
  4884. "dev-master": "3.1-dev"
  4885. }
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "MIT"
  4890. ],
  4891. "description": "A tools package that could help developer solved the problem quickly.",
  4892. "homepage": "https://hyperf.io",
  4893. "keywords": [
  4894. "hyperf",
  4895. "php",
  4896. "swoole",
  4897. "utils"
  4898. ],
  4899. "support": {
  4900. "docs": "https://hyperf.wiki",
  4901. "issues": "https://github.com/hyperf/hyperf/issues",
  4902. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4903. "source": "https://github.com/hyperf/hyperf"
  4904. },
  4905. "funding": [
  4906. {
  4907. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4908. "type": "custom"
  4909. },
  4910. {
  4911. "url": "https://opencollective.com/hyperf",
  4912. "type": "open_collective"
  4913. }
  4914. ],
  4915. "time": "2024-09-25T02:54:12+00:00"
  4916. },
  4917. {
  4918. "name": "hyperf/validation",
  4919. "version": "v3.1.42",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/hyperf/validation.git",
  4923. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4928. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4929. "shasum": ""
  4930. },
  4931. "require": {
  4932. "egulias/email-validator": "^3.0",
  4933. "hyperf/collection": "~3.1.0",
  4934. "hyperf/conditionable": "~3.1.0",
  4935. "hyperf/contract": "~3.1.0",
  4936. "hyperf/di": "~3.1.0",
  4937. "hyperf/framework": "~3.1.0",
  4938. "hyperf/macroable": "~3.1.0",
  4939. "hyperf/stringable": "~3.1.0",
  4940. "hyperf/support": "~3.1.0",
  4941. "hyperf/tappable": "~3.1.0",
  4942. "hyperf/translation": "~3.1.0",
  4943. "hyperf/utils": "~3.1.0",
  4944. "nesbot/carbon": "^2.21",
  4945. "php": ">=8.1",
  4946. "psr/container": "^1.0 || ^2.0",
  4947. "psr/event-dispatcher": "^1.0",
  4948. "psr/http-message": "^1.0 || ^2.0"
  4949. },
  4950. "suggest": {
  4951. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4952. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "3.1-dev"
  4958. },
  4959. "hyperf": {
  4960. "config": "Hyperf\\Validation\\ConfigProvider"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Hyperf\\Validation\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "description": "hyperf validation",
  4973. "keywords": [
  4974. "hyperf",
  4975. "validation"
  4976. ],
  4977. "support": {
  4978. "issues": "https://github.com/hyperf/validation/issues",
  4979. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4980. },
  4981. "funding": [
  4982. {
  4983. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4984. "type": "custom"
  4985. },
  4986. {
  4987. "url": "https://opencollective.com/hyperf",
  4988. "type": "open_collective"
  4989. }
  4990. ],
  4991. "time": "2024-09-25T02:54:12+00:00"
  4992. },
  4993. {
  4994. "name": "hyperf/websocket-server",
  4995. "version": "v3.1.42",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/hyperf/websocket-server.git",
  4999. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  5004. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  5005. "shasum": ""
  5006. },
  5007. "require": {
  5008. "hyperf/collection": "~3.1.0",
  5009. "hyperf/contract": "~3.1.0",
  5010. "hyperf/exception-handler": "~3.1.0",
  5011. "hyperf/http-server": "~3.1.0",
  5012. "hyperf/support": "~3.1.0",
  5013. "hyperf/utils": "~3.1.0",
  5014. "php": ">=8.1",
  5015. "psr/container": "^1.0 || ^2.0",
  5016. "psr/event-dispatcher": "^1.0"
  5017. },
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "3.1-dev"
  5022. },
  5023. "hyperf": {
  5024. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Hyperf\\WebSocketServer\\": "src/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "description": "A websocket server library for Hyperf.",
  5037. "homepage": "https://hyperf.io",
  5038. "keywords": [
  5039. "hyperf",
  5040. "php",
  5041. "swoole",
  5042. "websocket"
  5043. ],
  5044. "support": {
  5045. "docs": "https://hyperf.wiki",
  5046. "issues": "https://github.com/hyperf/hyperf/issues",
  5047. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5048. "source": "https://github.com/hyperf/hyperf"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://opencollective.com/hyperf",
  5057. "type": "open_collective"
  5058. }
  5059. ],
  5060. "time": "2024-09-25T02:54:12+00:00"
  5061. },
  5062. {
  5063. "name": "jetbrains/phpstorm-attributes",
  5064. "version": "1.1",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5068. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  5073. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  5074. "shasum": ""
  5075. },
  5076. "type": "library",
  5077. "autoload": {
  5078. "psr-4": {
  5079. "JetBrains\\PhpStorm\\": "src/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "Apache-2.0"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "JetBrains",
  5089. "homepage": "https://www.jetbrains.com"
  5090. }
  5091. ],
  5092. "description": "PhpStorm specific attributes",
  5093. "keywords": [
  5094. "attributes",
  5095. "jetbrains",
  5096. "phpstorm"
  5097. ],
  5098. "support": {
  5099. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5100. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  5101. },
  5102. "time": "2023-09-01T08:50:25+00:00"
  5103. },
  5104. {
  5105. "name": "laminas/laminas-mime",
  5106. "version": "2.12.0",
  5107. "source": {
  5108. "type": "git",
  5109. "url": "https://github.com/laminas/laminas-mime.git",
  5110. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5111. },
  5112. "dist": {
  5113. "type": "zip",
  5114. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5115. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5116. "shasum": ""
  5117. },
  5118. "require": {
  5119. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5120. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5121. },
  5122. "conflict": {
  5123. "zendframework/zend-mime": "*"
  5124. },
  5125. "require-dev": {
  5126. "laminas/laminas-coding-standard": "~2.4.0",
  5127. "laminas/laminas-mail": "^2.19.0",
  5128. "phpunit/phpunit": "~9.5.25"
  5129. },
  5130. "suggest": {
  5131. "laminas/laminas-mail": "Laminas\\Mail component"
  5132. },
  5133. "type": "library",
  5134. "autoload": {
  5135. "psr-4": {
  5136. "Laminas\\Mime\\": "src/"
  5137. }
  5138. },
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "BSD-3-Clause"
  5142. ],
  5143. "description": "Create and parse MIME messages and parts",
  5144. "homepage": "https://laminas.dev",
  5145. "keywords": [
  5146. "laminas",
  5147. "mime"
  5148. ],
  5149. "support": {
  5150. "chat": "https://laminas.dev/chat",
  5151. "docs": "https://docs.laminas.dev/laminas-mime/",
  5152. "forum": "https://discourse.laminas.dev",
  5153. "issues": "https://github.com/laminas/laminas-mime/issues",
  5154. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5155. "source": "https://github.com/laminas/laminas-mime"
  5156. },
  5157. "funding": [
  5158. {
  5159. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5160. "type": "community_bridge"
  5161. }
  5162. ],
  5163. "time": "2023-11-02T16:47:19+00:00"
  5164. },
  5165. {
  5166. "name": "laminas/laminas-stdlib",
  5167. "version": "3.20.0",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/laminas/laminas-stdlib.git",
  5171. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5176. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5181. },
  5182. "conflict": {
  5183. "zendframework/zend-stdlib": "*"
  5184. },
  5185. "require-dev": {
  5186. "laminas/laminas-coding-standard": "^3.0",
  5187. "phpbench/phpbench": "^1.3.1",
  5188. "phpunit/phpunit": "^10.5.38",
  5189. "psalm/plugin-phpunit": "^0.19.0",
  5190. "vimeo/psalm": "^5.26.1"
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Laminas\\Stdlib\\": "src/"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "BSD-3-Clause"
  5201. ],
  5202. "description": "SPL extensions, array utilities, error handlers, and more",
  5203. "homepage": "https://laminas.dev",
  5204. "keywords": [
  5205. "laminas",
  5206. "stdlib"
  5207. ],
  5208. "support": {
  5209. "chat": "https://laminas.dev/chat",
  5210. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5211. "forum": "https://discourse.laminas.dev",
  5212. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5213. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5214. "source": "https://github.com/laminas/laminas-stdlib"
  5215. },
  5216. "funding": [
  5217. {
  5218. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5219. "type": "community_bridge"
  5220. }
  5221. ],
  5222. "time": "2024-10-29T13:46:07+00:00"
  5223. },
  5224. {
  5225. "name": "lcobucci/clock",
  5226. "version": "2.3.0",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/lcobucci/clock.git",
  5230. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5235. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "php": "~8.1.0 || ~8.2.0",
  5240. "stella-maris/clock": "^0.1.7"
  5241. },
  5242. "provide": {
  5243. "psr/clock-implementation": "1.0"
  5244. },
  5245. "require-dev": {
  5246. "infection/infection": "^0.26",
  5247. "lcobucci/coding-standard": "^9.0",
  5248. "phpstan/extension-installer": "^1.2",
  5249. "phpstan/phpstan": "^1.9.4",
  5250. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5251. "phpstan/phpstan-phpunit": "^1.3.2",
  5252. "phpstan/phpstan-strict-rules": "^1.4.4",
  5253. "phpunit/phpunit": "^9.5.27"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Lcobucci\\Clock\\": "src"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Luís Cobucci",
  5268. "email": "lcobucci@gmail.com"
  5269. }
  5270. ],
  5271. "description": "Yet another clock abstraction",
  5272. "support": {
  5273. "issues": "https://github.com/lcobucci/clock/issues",
  5274. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://github.com/lcobucci",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://www.patreon.com/lcobucci",
  5283. "type": "patreon"
  5284. }
  5285. ],
  5286. "time": "2022-12-19T14:38:11+00:00"
  5287. },
  5288. {
  5289. "name": "lcobucci/jwt",
  5290. "version": "4.1.5",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/lcobucci/jwt.git",
  5294. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5299. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "ext-hash": "*",
  5304. "ext-json": "*",
  5305. "ext-mbstring": "*",
  5306. "ext-openssl": "*",
  5307. "ext-sodium": "*",
  5308. "lcobucci/clock": "^2.0",
  5309. "php": "^7.4 || ^8.0"
  5310. },
  5311. "require-dev": {
  5312. "infection/infection": "^0.21",
  5313. "lcobucci/coding-standard": "^6.0",
  5314. "mikey179/vfsstream": "^1.6.7",
  5315. "phpbench/phpbench": "^1.0",
  5316. "phpstan/extension-installer": "^1.0",
  5317. "phpstan/phpstan": "^0.12",
  5318. "phpstan/phpstan-deprecation-rules": "^0.12",
  5319. "phpstan/phpstan-phpunit": "^0.12",
  5320. "phpstan/phpstan-strict-rules": "^0.12",
  5321. "phpunit/php-invoker": "^3.1",
  5322. "phpunit/phpunit": "^9.5"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Lcobucci\\JWT\\": "src"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "BSD-3-Clause"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Luís Cobucci",
  5337. "email": "lcobucci@gmail.com",
  5338. "role": "Developer"
  5339. }
  5340. ],
  5341. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5342. "keywords": [
  5343. "JWS",
  5344. "jwt"
  5345. ],
  5346. "support": {
  5347. "issues": "https://github.com/lcobucci/jwt/issues",
  5348. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://github.com/lcobucci",
  5353. "type": "github"
  5354. },
  5355. {
  5356. "url": "https://www.patreon.com/lcobucci",
  5357. "type": "patreon"
  5358. }
  5359. ],
  5360. "time": "2021-09-28T19:34:56+00:00"
  5361. },
  5362. {
  5363. "name": "markrogoyski/math-php",
  5364. "version": "v2.10.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://github.com/markrogoyski/math-php.git",
  5368. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5373. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5374. "shasum": ""
  5375. },
  5376. "require": {
  5377. "ext-json": "*",
  5378. "php": ">=7.2.0"
  5379. },
  5380. "require-dev": {
  5381. "php-coveralls/php-coveralls": "^2.0",
  5382. "php-parallel-lint/php-parallel-lint": "^1.2",
  5383. "phploc/phploc": "*",
  5384. "phpmd/phpmd": "^2.6",
  5385. "phpstan/phpstan": "^1.10",
  5386. "phpunit/phpunit": "^8.5",
  5387. "squizlabs/php_codesniffer": "3.*"
  5388. },
  5389. "type": "library",
  5390. "autoload": {
  5391. "psr-4": {
  5392. "MathPHP\\": "src/"
  5393. }
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Mark Rogoyski",
  5402. "email": "mark@rogoyski.com",
  5403. "homepage": "https://github.com/markrogoyski",
  5404. "role": "Lead developer"
  5405. },
  5406. {
  5407. "name": "Kevin Nowaczyk",
  5408. "homepage": "https://github.com/Beakerboy",
  5409. "role": "Developer"
  5410. },
  5411. {
  5412. "name": "MathPHP Community of Contributors",
  5413. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5414. }
  5415. ],
  5416. "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",
  5417. "homepage": "https://github.com/markrogoyski/math-php/",
  5418. "keywords": [
  5419. "algebra",
  5420. "combinatorics",
  5421. "distributions",
  5422. "linear algebra",
  5423. "math",
  5424. "mathematics",
  5425. "matrix",
  5426. "numerical analysis",
  5427. "probability",
  5428. "regressions",
  5429. "statistics"
  5430. ],
  5431. "support": {
  5432. "issues": "https://github.com/markrogoyski/math-php/issues",
  5433. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5434. },
  5435. "time": "2024-04-17T00:09:51+00:00"
  5436. },
  5437. {
  5438. "name": "monolog/monolog",
  5439. "version": "3.7.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/Seldaek/monolog.git",
  5443. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5448. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5449. "shasum": ""
  5450. },
  5451. "require": {
  5452. "php": ">=8.1",
  5453. "psr/log": "^2.0 || ^3.0"
  5454. },
  5455. "provide": {
  5456. "psr/log-implementation": "3.0.0"
  5457. },
  5458. "require-dev": {
  5459. "aws/aws-sdk-php": "^3.0",
  5460. "doctrine/couchdb": "~1.0@dev",
  5461. "elasticsearch/elasticsearch": "^7 || ^8",
  5462. "ext-json": "*",
  5463. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5464. "guzzlehttp/guzzle": "^7.4.5",
  5465. "guzzlehttp/psr7": "^2.2",
  5466. "mongodb/mongodb": "^1.8",
  5467. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5468. "phpstan/phpstan": "^1.9",
  5469. "phpstan/phpstan-deprecation-rules": "^1.0",
  5470. "phpstan/phpstan-strict-rules": "^1.4",
  5471. "phpunit/phpunit": "^10.5.17",
  5472. "predis/predis": "^1.1 || ^2",
  5473. "ruflin/elastica": "^7",
  5474. "symfony/mailer": "^5.4 || ^6",
  5475. "symfony/mime": "^5.4 || ^6"
  5476. },
  5477. "suggest": {
  5478. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5479. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5480. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5481. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5482. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5483. "ext-mbstring": "Allow to work properly with unicode symbols",
  5484. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5485. "ext-openssl": "Required to send log messages using SSL",
  5486. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5487. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5488. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5489. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5490. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5491. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5492. },
  5493. "type": "library",
  5494. "extra": {
  5495. "branch-alias": {
  5496. "dev-main": "3.x-dev"
  5497. }
  5498. },
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Monolog\\": "src/Monolog"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Jordi Boggiano",
  5511. "email": "j.boggiano@seld.be",
  5512. "homepage": "https://seld.be"
  5513. }
  5514. ],
  5515. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5516. "homepage": "https://github.com/Seldaek/monolog",
  5517. "keywords": [
  5518. "log",
  5519. "logging",
  5520. "psr-3"
  5521. ],
  5522. "support": {
  5523. "issues": "https://github.com/Seldaek/monolog/issues",
  5524. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://github.com/Seldaek",
  5529. "type": "github"
  5530. },
  5531. {
  5532. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5533. "type": "tidelift"
  5534. }
  5535. ],
  5536. "time": "2024-06-28T09:40:51+00:00"
  5537. },
  5538. {
  5539. "name": "nesbot/carbon",
  5540. "version": "2.72.5",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/briannesbitt/Carbon.git",
  5544. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5549. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5550. "shasum": ""
  5551. },
  5552. "require": {
  5553. "carbonphp/carbon-doctrine-types": "*",
  5554. "ext-json": "*",
  5555. "php": "^7.1.8 || ^8.0",
  5556. "psr/clock": "^1.0",
  5557. "symfony/polyfill-mbstring": "^1.0",
  5558. "symfony/polyfill-php80": "^1.16",
  5559. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5560. },
  5561. "provide": {
  5562. "psr/clock-implementation": "1.0"
  5563. },
  5564. "require-dev": {
  5565. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5566. "doctrine/orm": "^2.7 || ^3.0",
  5567. "friendsofphp/php-cs-fixer": "^3.0",
  5568. "kylekatarnls/multi-tester": "^2.0",
  5569. "ondrejmirtes/better-reflection": "*",
  5570. "phpmd/phpmd": "^2.9",
  5571. "phpstan/extension-installer": "^1.0",
  5572. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5573. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5574. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5575. "squizlabs/php_codesniffer": "^3.4"
  5576. },
  5577. "bin": [
  5578. "bin/carbon"
  5579. ],
  5580. "type": "library",
  5581. "extra": {
  5582. "branch-alias": {
  5583. "dev-master": "3.x-dev",
  5584. "dev-2.x": "2.x-dev"
  5585. },
  5586. "laravel": {
  5587. "providers": [
  5588. "Carbon\\Laravel\\ServiceProvider"
  5589. ]
  5590. },
  5591. "phpstan": {
  5592. "includes": [
  5593. "extension.neon"
  5594. ]
  5595. }
  5596. },
  5597. "autoload": {
  5598. "psr-4": {
  5599. "Carbon\\": "src/Carbon/"
  5600. }
  5601. },
  5602. "notification-url": "https://packagist.org/downloads/",
  5603. "license": [
  5604. "MIT"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "Brian Nesbitt",
  5609. "email": "brian@nesbot.com",
  5610. "homepage": "https://markido.com"
  5611. },
  5612. {
  5613. "name": "kylekatarnls",
  5614. "homepage": "https://github.com/kylekatarnls"
  5615. }
  5616. ],
  5617. "description": "An API extension for DateTime that supports 281 different languages.",
  5618. "homepage": "https://carbon.nesbot.com",
  5619. "keywords": [
  5620. "date",
  5621. "datetime",
  5622. "time"
  5623. ],
  5624. "support": {
  5625. "docs": "https://carbon.nesbot.com/docs",
  5626. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5627. "source": "https://github.com/briannesbitt/Carbon"
  5628. },
  5629. "funding": [
  5630. {
  5631. "url": "https://github.com/sponsors/kylekatarnls",
  5632. "type": "github"
  5633. },
  5634. {
  5635. "url": "https://opencollective.com/Carbon#sponsor",
  5636. "type": "opencollective"
  5637. },
  5638. {
  5639. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5640. "type": "tidelift"
  5641. }
  5642. ],
  5643. "time": "2024-06-03T19:18:41+00:00"
  5644. },
  5645. {
  5646. "name": "nikic/fast-route",
  5647. "version": "v1.3.0",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/nikic/FastRoute.git",
  5651. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5656. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5657. "shasum": ""
  5658. },
  5659. "require": {
  5660. "php": ">=5.4.0"
  5661. },
  5662. "require-dev": {
  5663. "phpunit/phpunit": "^4.8.35|~5.7"
  5664. },
  5665. "type": "library",
  5666. "autoload": {
  5667. "files": [
  5668. "src/functions.php"
  5669. ],
  5670. "psr-4": {
  5671. "FastRoute\\": "src/"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "BSD-3-Clause"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Nikita Popov",
  5681. "email": "nikic@php.net"
  5682. }
  5683. ],
  5684. "description": "Fast request router for PHP",
  5685. "keywords": [
  5686. "router",
  5687. "routing"
  5688. ],
  5689. "support": {
  5690. "issues": "https://github.com/nikic/FastRoute/issues",
  5691. "source": "https://github.com/nikic/FastRoute/tree/master"
  5692. },
  5693. "time": "2018-02-13T20:26:39+00:00"
  5694. },
  5695. {
  5696. "name": "nikic/php-parser",
  5697. "version": "v4.19.4",
  5698. "source": {
  5699. "type": "git",
  5700. "url": "https://github.com/nikic/PHP-Parser.git",
  5701. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5702. },
  5703. "dist": {
  5704. "type": "zip",
  5705. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5706. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5707. "shasum": ""
  5708. },
  5709. "require": {
  5710. "ext-tokenizer": "*",
  5711. "php": ">=7.1"
  5712. },
  5713. "require-dev": {
  5714. "ircmaxell/php-yacc": "^0.0.7",
  5715. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5716. },
  5717. "bin": [
  5718. "bin/php-parse"
  5719. ],
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "4.9-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "PhpParser\\": "lib/PhpParser"
  5729. }
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "BSD-3-Clause"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Nikita Popov"
  5738. }
  5739. ],
  5740. "description": "A PHP parser written in PHP",
  5741. "keywords": [
  5742. "parser",
  5743. "php"
  5744. ],
  5745. "support": {
  5746. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5747. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5748. },
  5749. "time": "2024-09-29T15:01:53+00:00"
  5750. },
  5751. {
  5752. "name": "paragonie/constant_time_encoding",
  5753. "version": "v3.0.0",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5757. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5762. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": "^8"
  5767. },
  5768. "require-dev": {
  5769. "phpunit/phpunit": "^9",
  5770. "vimeo/psalm": "^4|^5"
  5771. },
  5772. "type": "library",
  5773. "autoload": {
  5774. "psr-4": {
  5775. "ParagonIE\\ConstantTime\\": "src/"
  5776. }
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "MIT"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "Paragon Initiative Enterprises",
  5785. "email": "security@paragonie.com",
  5786. "homepage": "https://paragonie.com",
  5787. "role": "Maintainer"
  5788. },
  5789. {
  5790. "name": "Steve 'Sc00bz' Thomas",
  5791. "email": "steve@tobtu.com",
  5792. "homepage": "https://www.tobtu.com",
  5793. "role": "Original Developer"
  5794. }
  5795. ],
  5796. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5797. "keywords": [
  5798. "base16",
  5799. "base32",
  5800. "base32_decode",
  5801. "base32_encode",
  5802. "base64",
  5803. "base64_decode",
  5804. "base64_encode",
  5805. "bin2hex",
  5806. "encoding",
  5807. "hex",
  5808. "hex2bin",
  5809. "rfc4648"
  5810. ],
  5811. "support": {
  5812. "email": "info@paragonie.com",
  5813. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5814. "source": "https://github.com/paragonie/constant_time_encoding"
  5815. },
  5816. "time": "2024-05-08T12:36:18+00:00"
  5817. },
  5818. {
  5819. "name": "paragonie/random_compat",
  5820. "version": "v9.99.100",
  5821. "source": {
  5822. "type": "git",
  5823. "url": "https://github.com/paragonie/random_compat.git",
  5824. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5825. },
  5826. "dist": {
  5827. "type": "zip",
  5828. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5829. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5830. "shasum": ""
  5831. },
  5832. "require": {
  5833. "php": ">= 7"
  5834. },
  5835. "require-dev": {
  5836. "phpunit/phpunit": "4.*|5.*",
  5837. "vimeo/psalm": "^1"
  5838. },
  5839. "suggest": {
  5840. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5841. },
  5842. "type": "library",
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "MIT"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Paragon Initiative Enterprises",
  5850. "email": "security@paragonie.com",
  5851. "homepage": "https://paragonie.com"
  5852. }
  5853. ],
  5854. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5855. "keywords": [
  5856. "csprng",
  5857. "polyfill",
  5858. "pseudorandom",
  5859. "random"
  5860. ],
  5861. "support": {
  5862. "email": "info@paragonie.com",
  5863. "issues": "https://github.com/paragonie/random_compat/issues",
  5864. "source": "https://github.com/paragonie/random_compat"
  5865. },
  5866. "time": "2020-10-15T08:29:30+00:00"
  5867. },
  5868. {
  5869. "name": "php-amqplib/php-amqplib",
  5870. "version": "v3.7.1",
  5871. "source": {
  5872. "type": "git",
  5873. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5874. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5875. },
  5876. "dist": {
  5877. "type": "zip",
  5878. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5879. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5880. "shasum": ""
  5881. },
  5882. "require": {
  5883. "ext-mbstring": "*",
  5884. "ext-sockets": "*",
  5885. "php": "^7.2||^8.0",
  5886. "phpseclib/phpseclib": "^2.0|^3.0"
  5887. },
  5888. "conflict": {
  5889. "php": "7.4.0 - 7.4.1"
  5890. },
  5891. "replace": {
  5892. "videlalvaro/php-amqplib": "self.version"
  5893. },
  5894. "require-dev": {
  5895. "ext-curl": "*",
  5896. "nategood/httpful": "^0.2.20",
  5897. "phpunit/phpunit": "^7.5|^9.5",
  5898. "squizlabs/php_codesniffer": "^3.6"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "3.0-dev"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "psr-4": {
  5908. "PhpAmqpLib\\": "PhpAmqpLib/"
  5909. }
  5910. },
  5911. "notification-url": "https://packagist.org/downloads/",
  5912. "license": [
  5913. "LGPL-2.1-or-later"
  5914. ],
  5915. "authors": [
  5916. {
  5917. "name": "Alvaro Videla",
  5918. "role": "Original Maintainer"
  5919. },
  5920. {
  5921. "name": "Raúl Araya",
  5922. "email": "nubeiro@gmail.com",
  5923. "role": "Maintainer"
  5924. },
  5925. {
  5926. "name": "Luke Bakken",
  5927. "email": "luke@bakken.io",
  5928. "role": "Maintainer"
  5929. },
  5930. {
  5931. "name": "Ramūnas Dronga",
  5932. "email": "github@ramuno.lt",
  5933. "role": "Maintainer"
  5934. }
  5935. ],
  5936. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5937. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5938. "keywords": [
  5939. "message",
  5940. "queue",
  5941. "rabbitmq"
  5942. ],
  5943. "support": {
  5944. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5945. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5946. },
  5947. "time": "2024-09-03T19:18:03+00:00"
  5948. },
  5949. {
  5950. "name": "php-di/phpdoc-reader",
  5951. "version": "2.2.1",
  5952. "source": {
  5953. "type": "git",
  5954. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5955. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5956. },
  5957. "dist": {
  5958. "type": "zip",
  5959. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5960. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5961. "shasum": ""
  5962. },
  5963. "require": {
  5964. "php": ">=7.2.0"
  5965. },
  5966. "require-dev": {
  5967. "mnapoli/hard-mode": "~0.3.0",
  5968. "phpunit/phpunit": "^8.5|^9.0"
  5969. },
  5970. "type": "library",
  5971. "autoload": {
  5972. "psr-4": {
  5973. "PhpDocReader\\": "src/PhpDocReader"
  5974. }
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "MIT"
  5979. ],
  5980. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5981. "keywords": [
  5982. "phpdoc",
  5983. "reflection"
  5984. ],
  5985. "support": {
  5986. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5987. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5988. },
  5989. "time": "2020-10-12T12:39:22+00:00"
  5990. },
  5991. {
  5992. "name": "phper666/jwt-auth",
  5993. "version": "v4.0.11",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/phper666/jwt-auth.git",
  5997. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6002. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "ext-swoole": ">=4.4",
  6007. "lcobucci/jwt": "4.1.5",
  6008. "nesbot/carbon": "^1.0 || ^2.0",
  6009. "php": ">=7.4"
  6010. },
  6011. "suggest": {
  6012. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6013. "hyperf/command": "required hyperf/command ~2.2.0",
  6014. "hyperf/config": "required hyperf/config ~2.2.0",
  6015. "hyperf/di": "required hyperf/di ~2.2.0"
  6016. },
  6017. "type": "library",
  6018. "extra": {
  6019. "hyperf": {
  6020. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "files": [
  6025. "src/Functions.php"
  6026. ],
  6027. "psr-4": {
  6028. "Phper666\\JWTAuth\\": "src/"
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Li Yuzhao",
  6038. "email": "562405704@qq.com",
  6039. "homepage": "https://github.com/phper666/jwt-auth",
  6040. "role": "Developer"
  6041. }
  6042. ],
  6043. "description": "jwt-auth Component",
  6044. "keywords": [
  6045. "hyperf",
  6046. "php"
  6047. ],
  6048. "support": {
  6049. "issues": "https://github.com/phper666/jwt-auth/issues",
  6050. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6051. },
  6052. "time": "2024-02-02T13:24:54+00:00"
  6053. },
  6054. {
  6055. "name": "phpoption/phpoption",
  6056. "version": "1.9.3",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/schmittjoh/php-option.git",
  6060. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6065. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "php": "^7.2.5 || ^8.0"
  6070. },
  6071. "require-dev": {
  6072. "bamarni/composer-bin-plugin": "^1.8.2",
  6073. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6074. },
  6075. "type": "library",
  6076. "extra": {
  6077. "bamarni-bin": {
  6078. "bin-links": true,
  6079. "forward-command": false
  6080. },
  6081. "branch-alias": {
  6082. "dev-master": "1.9-dev"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "psr-4": {
  6087. "PhpOption\\": "src/PhpOption/"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "Apache-2.0"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Johannes M. Schmitt",
  6097. "email": "schmittjoh@gmail.com",
  6098. "homepage": "https://github.com/schmittjoh"
  6099. },
  6100. {
  6101. "name": "Graham Campbell",
  6102. "email": "hello@gjcampbell.co.uk",
  6103. "homepage": "https://github.com/GrahamCampbell"
  6104. }
  6105. ],
  6106. "description": "Option Type for PHP",
  6107. "keywords": [
  6108. "language",
  6109. "option",
  6110. "php",
  6111. "type"
  6112. ],
  6113. "support": {
  6114. "issues": "https://github.com/schmittjoh/php-option/issues",
  6115. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6116. },
  6117. "funding": [
  6118. {
  6119. "url": "https://github.com/GrahamCampbell",
  6120. "type": "github"
  6121. },
  6122. {
  6123. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6124. "type": "tidelift"
  6125. }
  6126. ],
  6127. "time": "2024-07-20T21:41:07+00:00"
  6128. },
  6129. {
  6130. "name": "phpseclib/phpseclib",
  6131. "version": "3.0.42",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/phpseclib/phpseclib.git",
  6135. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6140. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "paragonie/constant_time_encoding": "^1|^2|^3",
  6145. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6146. "php": ">=5.6.1"
  6147. },
  6148. "require-dev": {
  6149. "phpunit/phpunit": "*"
  6150. },
  6151. "suggest": {
  6152. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6153. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6154. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6155. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6156. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6157. },
  6158. "type": "library",
  6159. "autoload": {
  6160. "files": [
  6161. "phpseclib/bootstrap.php"
  6162. ],
  6163. "psr-4": {
  6164. "phpseclib3\\": "phpseclib/"
  6165. }
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Jim Wigginton",
  6174. "email": "terrafrost@php.net",
  6175. "role": "Lead Developer"
  6176. },
  6177. {
  6178. "name": "Patrick Monnerat",
  6179. "email": "pm@datasphere.ch",
  6180. "role": "Developer"
  6181. },
  6182. {
  6183. "name": "Andreas Fischer",
  6184. "email": "bantu@phpbb.com",
  6185. "role": "Developer"
  6186. },
  6187. {
  6188. "name": "Hans-Jürgen Petrich",
  6189. "email": "petrich@tronic-media.com",
  6190. "role": "Developer"
  6191. },
  6192. {
  6193. "name": "Graham Campbell",
  6194. "email": "graham@alt-three.com",
  6195. "role": "Developer"
  6196. }
  6197. ],
  6198. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6199. "homepage": "http://phpseclib.sourceforge.net",
  6200. "keywords": [
  6201. "BigInteger",
  6202. "aes",
  6203. "asn.1",
  6204. "asn1",
  6205. "blowfish",
  6206. "crypto",
  6207. "cryptography",
  6208. "encryption",
  6209. "rsa",
  6210. "security",
  6211. "sftp",
  6212. "signature",
  6213. "signing",
  6214. "ssh",
  6215. "twofish",
  6216. "x.509",
  6217. "x509"
  6218. ],
  6219. "support": {
  6220. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6221. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6222. },
  6223. "funding": [
  6224. {
  6225. "url": "https://github.com/terrafrost",
  6226. "type": "github"
  6227. },
  6228. {
  6229. "url": "https://www.patreon.com/phpseclib",
  6230. "type": "patreon"
  6231. },
  6232. {
  6233. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6234. "type": "tidelift"
  6235. }
  6236. ],
  6237. "time": "2024-09-16T03:06:04+00:00"
  6238. },
  6239. {
  6240. "name": "psr/cache",
  6241. "version": "3.0.0",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/php-fig/cache.git",
  6245. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6250. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6251. "shasum": ""
  6252. },
  6253. "require": {
  6254. "php": ">=8.0.0"
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "branch-alias": {
  6259. "dev-master": "1.0.x-dev"
  6260. }
  6261. },
  6262. "autoload": {
  6263. "psr-4": {
  6264. "Psr\\Cache\\": "src/"
  6265. }
  6266. },
  6267. "notification-url": "https://packagist.org/downloads/",
  6268. "license": [
  6269. "MIT"
  6270. ],
  6271. "authors": [
  6272. {
  6273. "name": "PHP-FIG",
  6274. "homepage": "https://www.php-fig.org/"
  6275. }
  6276. ],
  6277. "description": "Common interface for caching libraries",
  6278. "keywords": [
  6279. "cache",
  6280. "psr",
  6281. "psr-6"
  6282. ],
  6283. "support": {
  6284. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6285. },
  6286. "time": "2021-02-03T23:26:27+00:00"
  6287. },
  6288. {
  6289. "name": "psr/clock",
  6290. "version": "1.0.0",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/php-fig/clock.git",
  6294. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6299. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "php": "^7.0 || ^8.0"
  6304. },
  6305. "type": "library",
  6306. "autoload": {
  6307. "psr-4": {
  6308. "Psr\\Clock\\": "src/"
  6309. }
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "PHP-FIG",
  6318. "homepage": "https://www.php-fig.org/"
  6319. }
  6320. ],
  6321. "description": "Common interface for reading the clock.",
  6322. "homepage": "https://github.com/php-fig/clock",
  6323. "keywords": [
  6324. "clock",
  6325. "now",
  6326. "psr",
  6327. "psr-20",
  6328. "time"
  6329. ],
  6330. "support": {
  6331. "issues": "https://github.com/php-fig/clock/issues",
  6332. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6333. },
  6334. "time": "2022-11-25T14:36:26+00:00"
  6335. },
  6336. {
  6337. "name": "psr/container",
  6338. "version": "2.0.2",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/php-fig/container.git",
  6342. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6347. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6348. "shasum": ""
  6349. },
  6350. "require": {
  6351. "php": ">=7.4.0"
  6352. },
  6353. "type": "library",
  6354. "extra": {
  6355. "branch-alias": {
  6356. "dev-master": "2.0.x-dev"
  6357. }
  6358. },
  6359. "autoload": {
  6360. "psr-4": {
  6361. "Psr\\Container\\": "src/"
  6362. }
  6363. },
  6364. "notification-url": "https://packagist.org/downloads/",
  6365. "license": [
  6366. "MIT"
  6367. ],
  6368. "authors": [
  6369. {
  6370. "name": "PHP-FIG",
  6371. "homepage": "https://www.php-fig.org/"
  6372. }
  6373. ],
  6374. "description": "Common Container Interface (PHP FIG PSR-11)",
  6375. "homepage": "https://github.com/php-fig/container",
  6376. "keywords": [
  6377. "PSR-11",
  6378. "container",
  6379. "container-interface",
  6380. "container-interop",
  6381. "psr"
  6382. ],
  6383. "support": {
  6384. "issues": "https://github.com/php-fig/container/issues",
  6385. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6386. },
  6387. "time": "2021-11-05T16:47:00+00:00"
  6388. },
  6389. {
  6390. "name": "psr/event-dispatcher",
  6391. "version": "1.0.0",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/php-fig/event-dispatcher.git",
  6395. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6400. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": ">=7.2.0"
  6405. },
  6406. "type": "library",
  6407. "extra": {
  6408. "branch-alias": {
  6409. "dev-master": "1.0.x-dev"
  6410. }
  6411. },
  6412. "autoload": {
  6413. "psr-4": {
  6414. "Psr\\EventDispatcher\\": "src/"
  6415. }
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "PHP-FIG",
  6424. "homepage": "http://www.php-fig.org/"
  6425. }
  6426. ],
  6427. "description": "Standard interfaces for event handling.",
  6428. "keywords": [
  6429. "events",
  6430. "psr",
  6431. "psr-14"
  6432. ],
  6433. "support": {
  6434. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6435. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6436. },
  6437. "time": "2019-01-08T18:20:26+00:00"
  6438. },
  6439. {
  6440. "name": "psr/http-client",
  6441. "version": "1.0.3",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/php-fig/http-client.git",
  6445. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6450. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": "^7.0 || ^8.0",
  6455. "psr/http-message": "^1.0 || ^2.0"
  6456. },
  6457. "type": "library",
  6458. "extra": {
  6459. "branch-alias": {
  6460. "dev-master": "1.0.x-dev"
  6461. }
  6462. },
  6463. "autoload": {
  6464. "psr-4": {
  6465. "Psr\\Http\\Client\\": "src/"
  6466. }
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "PHP-FIG",
  6475. "homepage": "https://www.php-fig.org/"
  6476. }
  6477. ],
  6478. "description": "Common interface for HTTP clients",
  6479. "homepage": "https://github.com/php-fig/http-client",
  6480. "keywords": [
  6481. "http",
  6482. "http-client",
  6483. "psr",
  6484. "psr-18"
  6485. ],
  6486. "support": {
  6487. "source": "https://github.com/php-fig/http-client"
  6488. },
  6489. "time": "2023-09-23T14:17:50+00:00"
  6490. },
  6491. {
  6492. "name": "psr/http-factory",
  6493. "version": "1.1.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/php-fig/http-factory.git",
  6497. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6502. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "php": ">=7.1",
  6507. "psr/http-message": "^1.0 || ^2.0"
  6508. },
  6509. "type": "library",
  6510. "extra": {
  6511. "branch-alias": {
  6512. "dev-master": "1.0.x-dev"
  6513. }
  6514. },
  6515. "autoload": {
  6516. "psr-4": {
  6517. "Psr\\Http\\Message\\": "src/"
  6518. }
  6519. },
  6520. "notification-url": "https://packagist.org/downloads/",
  6521. "license": [
  6522. "MIT"
  6523. ],
  6524. "authors": [
  6525. {
  6526. "name": "PHP-FIG",
  6527. "homepage": "https://www.php-fig.org/"
  6528. }
  6529. ],
  6530. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6531. "keywords": [
  6532. "factory",
  6533. "http",
  6534. "message",
  6535. "psr",
  6536. "psr-17",
  6537. "psr-7",
  6538. "request",
  6539. "response"
  6540. ],
  6541. "support": {
  6542. "source": "https://github.com/php-fig/http-factory"
  6543. },
  6544. "time": "2024-04-15T12:06:14+00:00"
  6545. },
  6546. {
  6547. "name": "psr/http-message",
  6548. "version": "2.0",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/php-fig/http-message.git",
  6552. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6557. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "php": "^7.2 || ^8.0"
  6562. },
  6563. "type": "library",
  6564. "extra": {
  6565. "branch-alias": {
  6566. "dev-master": "2.0.x-dev"
  6567. }
  6568. },
  6569. "autoload": {
  6570. "psr-4": {
  6571. "Psr\\Http\\Message\\": "src/"
  6572. }
  6573. },
  6574. "notification-url": "https://packagist.org/downloads/",
  6575. "license": [
  6576. "MIT"
  6577. ],
  6578. "authors": [
  6579. {
  6580. "name": "PHP-FIG",
  6581. "homepage": "https://www.php-fig.org/"
  6582. }
  6583. ],
  6584. "description": "Common interface for HTTP messages",
  6585. "homepage": "https://github.com/php-fig/http-message",
  6586. "keywords": [
  6587. "http",
  6588. "http-message",
  6589. "psr",
  6590. "psr-7",
  6591. "request",
  6592. "response"
  6593. ],
  6594. "support": {
  6595. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6596. },
  6597. "time": "2023-04-04T09:54:51+00:00"
  6598. },
  6599. {
  6600. "name": "psr/http-server-handler",
  6601. "version": "1.0.2",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/php-fig/http-server-handler.git",
  6605. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6610. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "php": ">=7.0",
  6615. "psr/http-message": "^1.0 || ^2.0"
  6616. },
  6617. "type": "library",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-master": "1.0.x-dev"
  6621. }
  6622. },
  6623. "autoload": {
  6624. "psr-4": {
  6625. "Psr\\Http\\Server\\": "src/"
  6626. }
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "PHP-FIG",
  6635. "homepage": "https://www.php-fig.org/"
  6636. }
  6637. ],
  6638. "description": "Common interface for HTTP server-side request handler",
  6639. "keywords": [
  6640. "handler",
  6641. "http",
  6642. "http-interop",
  6643. "psr",
  6644. "psr-15",
  6645. "psr-7",
  6646. "request",
  6647. "response",
  6648. "server"
  6649. ],
  6650. "support": {
  6651. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6652. },
  6653. "time": "2023-04-10T20:06:20+00:00"
  6654. },
  6655. {
  6656. "name": "psr/http-server-middleware",
  6657. "version": "1.0.2",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/php-fig/http-server-middleware.git",
  6661. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6666. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": ">=7.0",
  6671. "psr/http-message": "^1.0 || ^2.0",
  6672. "psr/http-server-handler": "^1.0"
  6673. },
  6674. "type": "library",
  6675. "extra": {
  6676. "branch-alias": {
  6677. "dev-master": "1.0.x-dev"
  6678. }
  6679. },
  6680. "autoload": {
  6681. "psr-4": {
  6682. "Psr\\Http\\Server\\": "src/"
  6683. }
  6684. },
  6685. "notification-url": "https://packagist.org/downloads/",
  6686. "license": [
  6687. "MIT"
  6688. ],
  6689. "authors": [
  6690. {
  6691. "name": "PHP-FIG",
  6692. "homepage": "https://www.php-fig.org/"
  6693. }
  6694. ],
  6695. "description": "Common interface for HTTP server-side middleware",
  6696. "keywords": [
  6697. "http",
  6698. "http-interop",
  6699. "middleware",
  6700. "psr",
  6701. "psr-15",
  6702. "psr-7",
  6703. "request",
  6704. "response"
  6705. ],
  6706. "support": {
  6707. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6708. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6709. },
  6710. "time": "2023-04-11T06:14:47+00:00"
  6711. },
  6712. {
  6713. "name": "psr/log",
  6714. "version": "3.0.2",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/php-fig/log.git",
  6718. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6723. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": ">=8.0.0"
  6728. },
  6729. "type": "library",
  6730. "extra": {
  6731. "branch-alias": {
  6732. "dev-master": "3.x-dev"
  6733. }
  6734. },
  6735. "autoload": {
  6736. "psr-4": {
  6737. "Psr\\Log\\": "src"
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "PHP-FIG",
  6747. "homepage": "https://www.php-fig.org/"
  6748. }
  6749. ],
  6750. "description": "Common interface for logging libraries",
  6751. "homepage": "https://github.com/php-fig/log",
  6752. "keywords": [
  6753. "log",
  6754. "psr",
  6755. "psr-3"
  6756. ],
  6757. "support": {
  6758. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6759. },
  6760. "time": "2024-09-11T13:17:53+00:00"
  6761. },
  6762. {
  6763. "name": "psr/simple-cache",
  6764. "version": "3.0.0",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/php-fig/simple-cache.git",
  6768. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6773. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=8.0.0"
  6778. },
  6779. "type": "library",
  6780. "extra": {
  6781. "branch-alias": {
  6782. "dev-master": "3.0.x-dev"
  6783. }
  6784. },
  6785. "autoload": {
  6786. "psr-4": {
  6787. "Psr\\SimpleCache\\": "src/"
  6788. }
  6789. },
  6790. "notification-url": "https://packagist.org/downloads/",
  6791. "license": [
  6792. "MIT"
  6793. ],
  6794. "authors": [
  6795. {
  6796. "name": "PHP-FIG",
  6797. "homepage": "https://www.php-fig.org/"
  6798. }
  6799. ],
  6800. "description": "Common interfaces for simple caching",
  6801. "keywords": [
  6802. "cache",
  6803. "caching",
  6804. "psr",
  6805. "psr-16",
  6806. "simple-cache"
  6807. ],
  6808. "support": {
  6809. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6810. },
  6811. "time": "2021-10-29T13:26:27+00:00"
  6812. },
  6813. {
  6814. "name": "ralouphie/getallheaders",
  6815. "version": "3.0.3",
  6816. "source": {
  6817. "type": "git",
  6818. "url": "https://github.com/ralouphie/getallheaders.git",
  6819. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6820. },
  6821. "dist": {
  6822. "type": "zip",
  6823. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6824. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6825. "shasum": ""
  6826. },
  6827. "require": {
  6828. "php": ">=5.6"
  6829. },
  6830. "require-dev": {
  6831. "php-coveralls/php-coveralls": "^2.1",
  6832. "phpunit/phpunit": "^5 || ^6.5"
  6833. },
  6834. "type": "library",
  6835. "autoload": {
  6836. "files": [
  6837. "src/getallheaders.php"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Ralph Khattar",
  6847. "email": "ralph.khattar@gmail.com"
  6848. }
  6849. ],
  6850. "description": "A polyfill for getallheaders.",
  6851. "support": {
  6852. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6853. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6854. },
  6855. "time": "2019-03-08T08:55:37+00:00"
  6856. },
  6857. {
  6858. "name": "stella-maris/clock",
  6859. "version": "0.1.7",
  6860. "source": {
  6861. "type": "git",
  6862. "url": "https://github.com/stella-maris-solutions/clock.git",
  6863. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6864. },
  6865. "dist": {
  6866. "type": "zip",
  6867. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6868. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6869. "shasum": ""
  6870. },
  6871. "require": {
  6872. "php": "^7.0|^8.0",
  6873. "psr/clock": "^1.0"
  6874. },
  6875. "type": "library",
  6876. "autoload": {
  6877. "psr-4": {
  6878. "StellaMaris\\Clock\\": "src"
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Andreas Heigl",
  6888. "role": "Maintainer"
  6889. }
  6890. ],
  6891. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6892. "homepage": "https://gitlab.com/stella-maris/clock",
  6893. "keywords": [
  6894. "clock",
  6895. "datetime",
  6896. "point in time",
  6897. "psr20"
  6898. ],
  6899. "support": {
  6900. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6901. },
  6902. "time": "2022-11-25T16:15:06+00:00"
  6903. },
  6904. {
  6905. "name": "swow/psr7-plus",
  6906. "version": "v1.1.2",
  6907. "source": {
  6908. "type": "git",
  6909. "url": "https://github.com/swow/psr7-plus.git",
  6910. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6911. },
  6912. "dist": {
  6913. "type": "zip",
  6914. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6915. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6916. "shasum": ""
  6917. },
  6918. "require": {
  6919. "php": ">=8.0",
  6920. "psr/http-client": "^1.0",
  6921. "psr/http-factory": "^1.0",
  6922. "psr/http-message": "^1.1|^2.0"
  6923. },
  6924. "type": "library",
  6925. "autoload": {
  6926. "psr-4": {
  6927. "Swow\\Psr7\\Message\\": "src/Message/"
  6928. }
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "Apache-2.0"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "twose",
  6937. "email": "twosee@php.net"
  6938. }
  6939. ],
  6940. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6941. "keywords": [
  6942. "http",
  6943. "psr17",
  6944. "psr7",
  6945. "swow",
  6946. "websocket"
  6947. ],
  6948. "support": {
  6949. "issues": "https://github.com/swow/swow",
  6950. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6951. },
  6952. "time": "2023-06-15T09:18:11+00:00"
  6953. },
  6954. {
  6955. "name": "symfony/console",
  6956. "version": "v6.4.14",
  6957. "source": {
  6958. "type": "git",
  6959. "url": "https://github.com/symfony/console.git",
  6960. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  6961. },
  6962. "dist": {
  6963. "type": "zip",
  6964. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6965. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6966. "shasum": ""
  6967. },
  6968. "require": {
  6969. "php": ">=8.1",
  6970. "symfony/deprecation-contracts": "^2.5|^3",
  6971. "symfony/polyfill-mbstring": "~1.0",
  6972. "symfony/service-contracts": "^2.5|^3",
  6973. "symfony/string": "^5.4|^6.0|^7.0"
  6974. },
  6975. "conflict": {
  6976. "symfony/dependency-injection": "<5.4",
  6977. "symfony/dotenv": "<5.4",
  6978. "symfony/event-dispatcher": "<5.4",
  6979. "symfony/lock": "<5.4",
  6980. "symfony/process": "<5.4"
  6981. },
  6982. "provide": {
  6983. "psr/log-implementation": "1.0|2.0|3.0"
  6984. },
  6985. "require-dev": {
  6986. "psr/log": "^1|^2|^3",
  6987. "symfony/config": "^5.4|^6.0|^7.0",
  6988. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6989. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6990. "symfony/http-foundation": "^6.4|^7.0",
  6991. "symfony/http-kernel": "^6.4|^7.0",
  6992. "symfony/lock": "^5.4|^6.0|^7.0",
  6993. "symfony/messenger": "^5.4|^6.0|^7.0",
  6994. "symfony/process": "^5.4|^6.0|^7.0",
  6995. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6996. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6997. },
  6998. "type": "library",
  6999. "autoload": {
  7000. "psr-4": {
  7001. "Symfony\\Component\\Console\\": ""
  7002. },
  7003. "exclude-from-classmap": [
  7004. "/Tests/"
  7005. ]
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Fabien Potencier",
  7014. "email": "fabien@symfony.com"
  7015. },
  7016. {
  7017. "name": "Symfony Community",
  7018. "homepage": "https://symfony.com/contributors"
  7019. }
  7020. ],
  7021. "description": "Eases the creation of beautiful and testable command line interfaces",
  7022. "homepage": "https://symfony.com",
  7023. "keywords": [
  7024. "cli",
  7025. "command-line",
  7026. "console",
  7027. "terminal"
  7028. ],
  7029. "support": {
  7030. "source": "https://github.com/symfony/console/tree/v6.4.14"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2024-11-05T15:34:40+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/deprecation-contracts",
  7050. "version": "v3.5.0",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/deprecation-contracts.git",
  7054. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7059. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": ">=8.1"
  7064. },
  7065. "type": "library",
  7066. "extra": {
  7067. "branch-alias": {
  7068. "dev-main": "3.5-dev"
  7069. },
  7070. "thanks": {
  7071. "name": "symfony/contracts",
  7072. "url": "https://github.com/symfony/contracts"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "files": [
  7077. "function.php"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Nicolas Grekas",
  7087. "email": "p@tchwork.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "A generic function and convention to trigger deprecation notices",
  7095. "homepage": "https://symfony.com",
  7096. "support": {
  7097. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7098. },
  7099. "funding": [
  7100. {
  7101. "url": "https://symfony.com/sponsor",
  7102. "type": "custom"
  7103. },
  7104. {
  7105. "url": "https://github.com/fabpot",
  7106. "type": "github"
  7107. },
  7108. {
  7109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7110. "type": "tidelift"
  7111. }
  7112. ],
  7113. "time": "2024-04-18T09:32:20+00:00"
  7114. },
  7115. {
  7116. "name": "symfony/finder",
  7117. "version": "v6.4.13",
  7118. "source": {
  7119. "type": "git",
  7120. "url": "https://github.com/symfony/finder.git",
  7121. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7122. },
  7123. "dist": {
  7124. "type": "zip",
  7125. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7126. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7127. "shasum": ""
  7128. },
  7129. "require": {
  7130. "php": ">=8.1"
  7131. },
  7132. "require-dev": {
  7133. "symfony/filesystem": "^6.0|^7.0"
  7134. },
  7135. "type": "library",
  7136. "autoload": {
  7137. "psr-4": {
  7138. "Symfony\\Component\\Finder\\": ""
  7139. },
  7140. "exclude-from-classmap": [
  7141. "/Tests/"
  7142. ]
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Fabien Potencier",
  7151. "email": "fabien@symfony.com"
  7152. },
  7153. {
  7154. "name": "Symfony Community",
  7155. "homepage": "https://symfony.com/contributors"
  7156. }
  7157. ],
  7158. "description": "Finds files and directories via an intuitive fluent interface",
  7159. "homepage": "https://symfony.com",
  7160. "support": {
  7161. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7162. },
  7163. "funding": [
  7164. {
  7165. "url": "https://symfony.com/sponsor",
  7166. "type": "custom"
  7167. },
  7168. {
  7169. "url": "https://github.com/fabpot",
  7170. "type": "github"
  7171. },
  7172. {
  7173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7174. "type": "tidelift"
  7175. }
  7176. ],
  7177. "time": "2024-10-01T08:30:56+00:00"
  7178. },
  7179. {
  7180. "name": "symfony/polyfill-ctype",
  7181. "version": "v1.31.0",
  7182. "source": {
  7183. "type": "git",
  7184. "url": "https://github.com/symfony/polyfill-ctype.git",
  7185. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7186. },
  7187. "dist": {
  7188. "type": "zip",
  7189. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7190. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7191. "shasum": ""
  7192. },
  7193. "require": {
  7194. "php": ">=7.2"
  7195. },
  7196. "provide": {
  7197. "ext-ctype": "*"
  7198. },
  7199. "suggest": {
  7200. "ext-ctype": "For best performance"
  7201. },
  7202. "type": "library",
  7203. "extra": {
  7204. "thanks": {
  7205. "name": "symfony/polyfill",
  7206. "url": "https://github.com/symfony/polyfill"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "files": [
  7211. "bootstrap.php"
  7212. ],
  7213. "psr-4": {
  7214. "Symfony\\Polyfill\\Ctype\\": ""
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Gert de Pagter",
  7224. "email": "BackEndTea@gmail.com"
  7225. },
  7226. {
  7227. "name": "Symfony Community",
  7228. "homepage": "https://symfony.com/contributors"
  7229. }
  7230. ],
  7231. "description": "Symfony polyfill for ctype functions",
  7232. "homepage": "https://symfony.com",
  7233. "keywords": [
  7234. "compatibility",
  7235. "ctype",
  7236. "polyfill",
  7237. "portable"
  7238. ],
  7239. "support": {
  7240. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7241. },
  7242. "funding": [
  7243. {
  7244. "url": "https://symfony.com/sponsor",
  7245. "type": "custom"
  7246. },
  7247. {
  7248. "url": "https://github.com/fabpot",
  7249. "type": "github"
  7250. },
  7251. {
  7252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7253. "type": "tidelift"
  7254. }
  7255. ],
  7256. "time": "2024-09-09T11:45:10+00:00"
  7257. },
  7258. {
  7259. "name": "symfony/polyfill-intl-grapheme",
  7260. "version": "v1.31.0",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7264. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7269. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "php": ">=7.2"
  7274. },
  7275. "suggest": {
  7276. "ext-intl": "For best performance"
  7277. },
  7278. "type": "library",
  7279. "extra": {
  7280. "thanks": {
  7281. "name": "symfony/polyfill",
  7282. "url": "https://github.com/symfony/polyfill"
  7283. }
  7284. },
  7285. "autoload": {
  7286. "files": [
  7287. "bootstrap.php"
  7288. ],
  7289. "psr-4": {
  7290. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7291. }
  7292. },
  7293. "notification-url": "https://packagist.org/downloads/",
  7294. "license": [
  7295. "MIT"
  7296. ],
  7297. "authors": [
  7298. {
  7299. "name": "Nicolas Grekas",
  7300. "email": "p@tchwork.com"
  7301. },
  7302. {
  7303. "name": "Symfony Community",
  7304. "homepage": "https://symfony.com/contributors"
  7305. }
  7306. ],
  7307. "description": "Symfony polyfill for intl's grapheme_* functions",
  7308. "homepage": "https://symfony.com",
  7309. "keywords": [
  7310. "compatibility",
  7311. "grapheme",
  7312. "intl",
  7313. "polyfill",
  7314. "portable",
  7315. "shim"
  7316. ],
  7317. "support": {
  7318. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7319. },
  7320. "funding": [
  7321. {
  7322. "url": "https://symfony.com/sponsor",
  7323. "type": "custom"
  7324. },
  7325. {
  7326. "url": "https://github.com/fabpot",
  7327. "type": "github"
  7328. },
  7329. {
  7330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7331. "type": "tidelift"
  7332. }
  7333. ],
  7334. "time": "2024-09-09T11:45:10+00:00"
  7335. },
  7336. {
  7337. "name": "symfony/polyfill-intl-idn",
  7338. "version": "v1.31.0",
  7339. "source": {
  7340. "type": "git",
  7341. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7342. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7343. },
  7344. "dist": {
  7345. "type": "zip",
  7346. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7347. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7348. "shasum": ""
  7349. },
  7350. "require": {
  7351. "php": ">=7.2",
  7352. "symfony/polyfill-intl-normalizer": "^1.10"
  7353. },
  7354. "suggest": {
  7355. "ext-intl": "For best performance"
  7356. },
  7357. "type": "library",
  7358. "extra": {
  7359. "thanks": {
  7360. "name": "symfony/polyfill",
  7361. "url": "https://github.com/symfony/polyfill"
  7362. }
  7363. },
  7364. "autoload": {
  7365. "files": [
  7366. "bootstrap.php"
  7367. ],
  7368. "psr-4": {
  7369. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7370. }
  7371. },
  7372. "notification-url": "https://packagist.org/downloads/",
  7373. "license": [
  7374. "MIT"
  7375. ],
  7376. "authors": [
  7377. {
  7378. "name": "Laurent Bassin",
  7379. "email": "laurent@bassin.info"
  7380. },
  7381. {
  7382. "name": "Trevor Rowbotham",
  7383. "email": "trevor.rowbotham@pm.me"
  7384. },
  7385. {
  7386. "name": "Symfony Community",
  7387. "homepage": "https://symfony.com/contributors"
  7388. }
  7389. ],
  7390. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7391. "homepage": "https://symfony.com",
  7392. "keywords": [
  7393. "compatibility",
  7394. "idn",
  7395. "intl",
  7396. "polyfill",
  7397. "portable",
  7398. "shim"
  7399. ],
  7400. "support": {
  7401. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7402. },
  7403. "funding": [
  7404. {
  7405. "url": "https://symfony.com/sponsor",
  7406. "type": "custom"
  7407. },
  7408. {
  7409. "url": "https://github.com/fabpot",
  7410. "type": "github"
  7411. },
  7412. {
  7413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7414. "type": "tidelift"
  7415. }
  7416. ],
  7417. "time": "2024-09-09T11:45:10+00:00"
  7418. },
  7419. {
  7420. "name": "symfony/polyfill-intl-normalizer",
  7421. "version": "v1.31.0",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7425. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7430. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7431. "shasum": ""
  7432. },
  7433. "require": {
  7434. "php": ">=7.2"
  7435. },
  7436. "suggest": {
  7437. "ext-intl": "For best performance"
  7438. },
  7439. "type": "library",
  7440. "extra": {
  7441. "thanks": {
  7442. "name": "symfony/polyfill",
  7443. "url": "https://github.com/symfony/polyfill"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "files": [
  7448. "bootstrap.php"
  7449. ],
  7450. "psr-4": {
  7451. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7452. },
  7453. "classmap": [
  7454. "Resources/stubs"
  7455. ]
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "license": [
  7459. "MIT"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Nicolas Grekas",
  7464. "email": "p@tchwork.com"
  7465. },
  7466. {
  7467. "name": "Symfony Community",
  7468. "homepage": "https://symfony.com/contributors"
  7469. }
  7470. ],
  7471. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7472. "homepage": "https://symfony.com",
  7473. "keywords": [
  7474. "compatibility",
  7475. "intl",
  7476. "normalizer",
  7477. "polyfill",
  7478. "portable",
  7479. "shim"
  7480. ],
  7481. "support": {
  7482. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7483. },
  7484. "funding": [
  7485. {
  7486. "url": "https://symfony.com/sponsor",
  7487. "type": "custom"
  7488. },
  7489. {
  7490. "url": "https://github.com/fabpot",
  7491. "type": "github"
  7492. },
  7493. {
  7494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7495. "type": "tidelift"
  7496. }
  7497. ],
  7498. "time": "2024-09-09T11:45:10+00:00"
  7499. },
  7500. {
  7501. "name": "symfony/polyfill-mbstring",
  7502. "version": "v1.31.0",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7506. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7511. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "php": ">=7.2"
  7516. },
  7517. "provide": {
  7518. "ext-mbstring": "*"
  7519. },
  7520. "suggest": {
  7521. "ext-mbstring": "For best performance"
  7522. },
  7523. "type": "library",
  7524. "extra": {
  7525. "thanks": {
  7526. "name": "symfony/polyfill",
  7527. "url": "https://github.com/symfony/polyfill"
  7528. }
  7529. },
  7530. "autoload": {
  7531. "files": [
  7532. "bootstrap.php"
  7533. ],
  7534. "psr-4": {
  7535. "Symfony\\Polyfill\\Mbstring\\": ""
  7536. }
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "MIT"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Nicolas Grekas",
  7545. "email": "p@tchwork.com"
  7546. },
  7547. {
  7548. "name": "Symfony Community",
  7549. "homepage": "https://symfony.com/contributors"
  7550. }
  7551. ],
  7552. "description": "Symfony polyfill for the Mbstring extension",
  7553. "homepage": "https://symfony.com",
  7554. "keywords": [
  7555. "compatibility",
  7556. "mbstring",
  7557. "polyfill",
  7558. "portable",
  7559. "shim"
  7560. ],
  7561. "support": {
  7562. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7563. },
  7564. "funding": [
  7565. {
  7566. "url": "https://symfony.com/sponsor",
  7567. "type": "custom"
  7568. },
  7569. {
  7570. "url": "https://github.com/fabpot",
  7571. "type": "github"
  7572. },
  7573. {
  7574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7575. "type": "tidelift"
  7576. }
  7577. ],
  7578. "time": "2024-09-09T11:45:10+00:00"
  7579. },
  7580. {
  7581. "name": "symfony/polyfill-php80",
  7582. "version": "v1.31.0",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://github.com/symfony/polyfill-php80.git",
  7586. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7591. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7592. "shasum": ""
  7593. },
  7594. "require": {
  7595. "php": ">=7.2"
  7596. },
  7597. "type": "library",
  7598. "extra": {
  7599. "thanks": {
  7600. "name": "symfony/polyfill",
  7601. "url": "https://github.com/symfony/polyfill"
  7602. }
  7603. },
  7604. "autoload": {
  7605. "files": [
  7606. "bootstrap.php"
  7607. ],
  7608. "psr-4": {
  7609. "Symfony\\Polyfill\\Php80\\": ""
  7610. },
  7611. "classmap": [
  7612. "Resources/stubs"
  7613. ]
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "MIT"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Ion Bazan",
  7622. "email": "ion.bazan@gmail.com"
  7623. },
  7624. {
  7625. "name": "Nicolas Grekas",
  7626. "email": "p@tchwork.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7634. "homepage": "https://symfony.com",
  7635. "keywords": [
  7636. "compatibility",
  7637. "polyfill",
  7638. "portable",
  7639. "shim"
  7640. ],
  7641. "support": {
  7642. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://symfony.com/sponsor",
  7647. "type": "custom"
  7648. },
  7649. {
  7650. "url": "https://github.com/fabpot",
  7651. "type": "github"
  7652. },
  7653. {
  7654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7655. "type": "tidelift"
  7656. }
  7657. ],
  7658. "time": "2024-09-09T11:45:10+00:00"
  7659. },
  7660. {
  7661. "name": "symfony/service-contracts",
  7662. "version": "v3.5.0",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/symfony/service-contracts.git",
  7666. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7671. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=8.1",
  7676. "psr/container": "^1.1|^2.0",
  7677. "symfony/deprecation-contracts": "^2.5|^3"
  7678. },
  7679. "conflict": {
  7680. "ext-psr": "<1.1|>=2"
  7681. },
  7682. "type": "library",
  7683. "extra": {
  7684. "branch-alias": {
  7685. "dev-main": "3.5-dev"
  7686. },
  7687. "thanks": {
  7688. "name": "symfony/contracts",
  7689. "url": "https://github.com/symfony/contracts"
  7690. }
  7691. },
  7692. "autoload": {
  7693. "psr-4": {
  7694. "Symfony\\Contracts\\Service\\": ""
  7695. },
  7696. "exclude-from-classmap": [
  7697. "/Test/"
  7698. ]
  7699. },
  7700. "notification-url": "https://packagist.org/downloads/",
  7701. "license": [
  7702. "MIT"
  7703. ],
  7704. "authors": [
  7705. {
  7706. "name": "Nicolas Grekas",
  7707. "email": "p@tchwork.com"
  7708. },
  7709. {
  7710. "name": "Symfony Community",
  7711. "homepage": "https://symfony.com/contributors"
  7712. }
  7713. ],
  7714. "description": "Generic abstractions related to writing services",
  7715. "homepage": "https://symfony.com",
  7716. "keywords": [
  7717. "abstractions",
  7718. "contracts",
  7719. "decoupling",
  7720. "interfaces",
  7721. "interoperability",
  7722. "standards"
  7723. ],
  7724. "support": {
  7725. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7726. },
  7727. "funding": [
  7728. {
  7729. "url": "https://symfony.com/sponsor",
  7730. "type": "custom"
  7731. },
  7732. {
  7733. "url": "https://github.com/fabpot",
  7734. "type": "github"
  7735. },
  7736. {
  7737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7738. "type": "tidelift"
  7739. }
  7740. ],
  7741. "time": "2024-04-18T09:32:20+00:00"
  7742. },
  7743. {
  7744. "name": "symfony/string",
  7745. "version": "v6.4.13",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/symfony/string.git",
  7749. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7754. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7755. "shasum": ""
  7756. },
  7757. "require": {
  7758. "php": ">=8.1",
  7759. "symfony/polyfill-ctype": "~1.8",
  7760. "symfony/polyfill-intl-grapheme": "~1.0",
  7761. "symfony/polyfill-intl-normalizer": "~1.0",
  7762. "symfony/polyfill-mbstring": "~1.0"
  7763. },
  7764. "conflict": {
  7765. "symfony/translation-contracts": "<2.5"
  7766. },
  7767. "require-dev": {
  7768. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7769. "symfony/http-client": "^5.4|^6.0|^7.0",
  7770. "symfony/intl": "^6.2|^7.0",
  7771. "symfony/translation-contracts": "^2.5|^3.0",
  7772. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7773. },
  7774. "type": "library",
  7775. "autoload": {
  7776. "files": [
  7777. "Resources/functions.php"
  7778. ],
  7779. "psr-4": {
  7780. "Symfony\\Component\\String\\": ""
  7781. },
  7782. "exclude-from-classmap": [
  7783. "/Tests/"
  7784. ]
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Nicolas Grekas",
  7793. "email": "p@tchwork.com"
  7794. },
  7795. {
  7796. "name": "Symfony Community",
  7797. "homepage": "https://symfony.com/contributors"
  7798. }
  7799. ],
  7800. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7801. "homepage": "https://symfony.com",
  7802. "keywords": [
  7803. "grapheme",
  7804. "i18n",
  7805. "string",
  7806. "unicode",
  7807. "utf-8",
  7808. "utf8"
  7809. ],
  7810. "support": {
  7811. "source": "https://github.com/symfony/string/tree/v6.4.13"
  7812. },
  7813. "funding": [
  7814. {
  7815. "url": "https://symfony.com/sponsor",
  7816. "type": "custom"
  7817. },
  7818. {
  7819. "url": "https://github.com/fabpot",
  7820. "type": "github"
  7821. },
  7822. {
  7823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7824. "type": "tidelift"
  7825. }
  7826. ],
  7827. "time": "2024-09-25T14:18:03+00:00"
  7828. },
  7829. {
  7830. "name": "symfony/translation",
  7831. "version": "v6.4.13",
  7832. "source": {
  7833. "type": "git",
  7834. "url": "https://github.com/symfony/translation.git",
  7835. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7836. },
  7837. "dist": {
  7838. "type": "zip",
  7839. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7840. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7841. "shasum": ""
  7842. },
  7843. "require": {
  7844. "php": ">=8.1",
  7845. "symfony/deprecation-contracts": "^2.5|^3",
  7846. "symfony/polyfill-mbstring": "~1.0",
  7847. "symfony/translation-contracts": "^2.5|^3.0"
  7848. },
  7849. "conflict": {
  7850. "symfony/config": "<5.4",
  7851. "symfony/console": "<5.4",
  7852. "symfony/dependency-injection": "<5.4",
  7853. "symfony/http-client-contracts": "<2.5",
  7854. "symfony/http-kernel": "<5.4",
  7855. "symfony/service-contracts": "<2.5",
  7856. "symfony/twig-bundle": "<5.4",
  7857. "symfony/yaml": "<5.4"
  7858. },
  7859. "provide": {
  7860. "symfony/translation-implementation": "2.3|3.0"
  7861. },
  7862. "require-dev": {
  7863. "nikic/php-parser": "^4.18|^5.0",
  7864. "psr/log": "^1|^2|^3",
  7865. "symfony/config": "^5.4|^6.0|^7.0",
  7866. "symfony/console": "^5.4|^6.0|^7.0",
  7867. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7868. "symfony/finder": "^5.4|^6.0|^7.0",
  7869. "symfony/http-client-contracts": "^2.5|^3.0",
  7870. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7871. "symfony/intl": "^5.4|^6.0|^7.0",
  7872. "symfony/polyfill-intl-icu": "^1.21",
  7873. "symfony/routing": "^5.4|^6.0|^7.0",
  7874. "symfony/service-contracts": "^2.5|^3",
  7875. "symfony/yaml": "^5.4|^6.0|^7.0"
  7876. },
  7877. "type": "library",
  7878. "autoload": {
  7879. "files": [
  7880. "Resources/functions.php"
  7881. ],
  7882. "psr-4": {
  7883. "Symfony\\Component\\Translation\\": ""
  7884. },
  7885. "exclude-from-classmap": [
  7886. "/Tests/"
  7887. ]
  7888. },
  7889. "notification-url": "https://packagist.org/downloads/",
  7890. "license": [
  7891. "MIT"
  7892. ],
  7893. "authors": [
  7894. {
  7895. "name": "Fabien Potencier",
  7896. "email": "fabien@symfony.com"
  7897. },
  7898. {
  7899. "name": "Symfony Community",
  7900. "homepage": "https://symfony.com/contributors"
  7901. }
  7902. ],
  7903. "description": "Provides tools to internationalize your application",
  7904. "homepage": "https://symfony.com",
  7905. "support": {
  7906. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7907. },
  7908. "funding": [
  7909. {
  7910. "url": "https://symfony.com/sponsor",
  7911. "type": "custom"
  7912. },
  7913. {
  7914. "url": "https://github.com/fabpot",
  7915. "type": "github"
  7916. },
  7917. {
  7918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7919. "type": "tidelift"
  7920. }
  7921. ],
  7922. "time": "2024-09-27T18:14:25+00:00"
  7923. },
  7924. {
  7925. "name": "symfony/translation-contracts",
  7926. "version": "v3.5.0",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/symfony/translation-contracts.git",
  7930. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7935. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7936. "shasum": ""
  7937. },
  7938. "require": {
  7939. "php": ">=8.1"
  7940. },
  7941. "type": "library",
  7942. "extra": {
  7943. "branch-alias": {
  7944. "dev-main": "3.5-dev"
  7945. },
  7946. "thanks": {
  7947. "name": "symfony/contracts",
  7948. "url": "https://github.com/symfony/contracts"
  7949. }
  7950. },
  7951. "autoload": {
  7952. "psr-4": {
  7953. "Symfony\\Contracts\\Translation\\": ""
  7954. },
  7955. "exclude-from-classmap": [
  7956. "/Test/"
  7957. ]
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Nicolas Grekas",
  7966. "email": "p@tchwork.com"
  7967. },
  7968. {
  7969. "name": "Symfony Community",
  7970. "homepage": "https://symfony.com/contributors"
  7971. }
  7972. ],
  7973. "description": "Generic abstractions related to translation",
  7974. "homepage": "https://symfony.com",
  7975. "keywords": [
  7976. "abstractions",
  7977. "contracts",
  7978. "decoupling",
  7979. "interfaces",
  7980. "interoperability",
  7981. "standards"
  7982. ],
  7983. "support": {
  7984. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7985. },
  7986. "funding": [
  7987. {
  7988. "url": "https://symfony.com/sponsor",
  7989. "type": "custom"
  7990. },
  7991. {
  7992. "url": "https://github.com/fabpot",
  7993. "type": "github"
  7994. },
  7995. {
  7996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7997. "type": "tidelift"
  7998. }
  7999. ],
  8000. "time": "2024-04-18T09:32:20+00:00"
  8001. },
  8002. {
  8003. "name": "vlucas/phpdotenv",
  8004. "version": "v5.6.1",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/vlucas/phpdotenv.git",
  8008. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8013. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8014. "shasum": ""
  8015. },
  8016. "require": {
  8017. "ext-pcre": "*",
  8018. "graham-campbell/result-type": "^1.1.3",
  8019. "php": "^7.2.5 || ^8.0",
  8020. "phpoption/phpoption": "^1.9.3",
  8021. "symfony/polyfill-ctype": "^1.24",
  8022. "symfony/polyfill-mbstring": "^1.24",
  8023. "symfony/polyfill-php80": "^1.24"
  8024. },
  8025. "require-dev": {
  8026. "bamarni/composer-bin-plugin": "^1.8.2",
  8027. "ext-filter": "*",
  8028. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8029. },
  8030. "suggest": {
  8031. "ext-filter": "Required to use the boolean validator."
  8032. },
  8033. "type": "library",
  8034. "extra": {
  8035. "bamarni-bin": {
  8036. "bin-links": true,
  8037. "forward-command": false
  8038. },
  8039. "branch-alias": {
  8040. "dev-master": "5.6-dev"
  8041. }
  8042. },
  8043. "autoload": {
  8044. "psr-4": {
  8045. "Dotenv\\": "src/"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "BSD-3-Clause"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Graham Campbell",
  8055. "email": "hello@gjcampbell.co.uk",
  8056. "homepage": "https://github.com/GrahamCampbell"
  8057. },
  8058. {
  8059. "name": "Vance Lucas",
  8060. "email": "vance@vancelucas.com",
  8061. "homepage": "https://github.com/vlucas"
  8062. }
  8063. ],
  8064. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8065. "keywords": [
  8066. "dotenv",
  8067. "env",
  8068. "environment"
  8069. ],
  8070. "support": {
  8071. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8072. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://github.com/GrahamCampbell",
  8077. "type": "github"
  8078. },
  8079. {
  8080. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8081. "type": "tidelift"
  8082. }
  8083. ],
  8084. "time": "2024-07-20T21:52:34+00:00"
  8085. }
  8086. ],
  8087. "packages-dev": [
  8088. {
  8089. "name": "clue/ndjson-react",
  8090. "version": "v1.3.0",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/clue/reactphp-ndjson.git",
  8094. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8099. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8100. "shasum": ""
  8101. },
  8102. "require": {
  8103. "php": ">=5.3",
  8104. "react/stream": "^1.2"
  8105. },
  8106. "require-dev": {
  8107. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8108. "react/event-loop": "^1.2"
  8109. },
  8110. "type": "library",
  8111. "autoload": {
  8112. "psr-4": {
  8113. "Clue\\React\\NDJson\\": "src/"
  8114. }
  8115. },
  8116. "notification-url": "https://packagist.org/downloads/",
  8117. "license": [
  8118. "MIT"
  8119. ],
  8120. "authors": [
  8121. {
  8122. "name": "Christian Lück",
  8123. "email": "christian@clue.engineering"
  8124. }
  8125. ],
  8126. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8127. "homepage": "https://github.com/clue/reactphp-ndjson",
  8128. "keywords": [
  8129. "NDJSON",
  8130. "json",
  8131. "jsonlines",
  8132. "newline",
  8133. "reactphp",
  8134. "streaming"
  8135. ],
  8136. "support": {
  8137. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8138. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8139. },
  8140. "funding": [
  8141. {
  8142. "url": "https://clue.engineering/support",
  8143. "type": "custom"
  8144. },
  8145. {
  8146. "url": "https://github.com/clue",
  8147. "type": "github"
  8148. }
  8149. ],
  8150. "time": "2022-12-23T10:58:28+00:00"
  8151. },
  8152. {
  8153. "name": "composer/pcre",
  8154. "version": "3.3.1",
  8155. "source": {
  8156. "type": "git",
  8157. "url": "https://github.com/composer/pcre.git",
  8158. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  8159. },
  8160. "dist": {
  8161. "type": "zip",
  8162. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8163. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8164. "shasum": ""
  8165. },
  8166. "require": {
  8167. "php": "^7.4 || ^8.0"
  8168. },
  8169. "conflict": {
  8170. "phpstan/phpstan": "<1.11.10"
  8171. },
  8172. "require-dev": {
  8173. "phpstan/phpstan": "^1.11.10",
  8174. "phpstan/phpstan-strict-rules": "^1.1",
  8175. "phpunit/phpunit": "^8 || ^9"
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-main": "3.x-dev"
  8181. },
  8182. "phpstan": {
  8183. "includes": [
  8184. "extension.neon"
  8185. ]
  8186. }
  8187. },
  8188. "autoload": {
  8189. "psr-4": {
  8190. "Composer\\Pcre\\": "src"
  8191. }
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "MIT"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Jordi Boggiano",
  8200. "email": "j.boggiano@seld.be",
  8201. "homepage": "http://seld.be"
  8202. }
  8203. ],
  8204. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8205. "keywords": [
  8206. "PCRE",
  8207. "preg",
  8208. "regex",
  8209. "regular expression"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/composer/pcre/issues",
  8213. "source": "https://github.com/composer/pcre/tree/3.3.1"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://packagist.com",
  8218. "type": "custom"
  8219. },
  8220. {
  8221. "url": "https://github.com/composer",
  8222. "type": "github"
  8223. },
  8224. {
  8225. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8226. "type": "tidelift"
  8227. }
  8228. ],
  8229. "time": "2024-08-27T18:44:43+00:00"
  8230. },
  8231. {
  8232. "name": "composer/semver",
  8233. "version": "3.4.3",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/composer/semver.git",
  8237. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8242. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8243. "shasum": ""
  8244. },
  8245. "require": {
  8246. "php": "^5.3.2 || ^7.0 || ^8.0"
  8247. },
  8248. "require-dev": {
  8249. "phpstan/phpstan": "^1.11",
  8250. "symfony/phpunit-bridge": "^3 || ^7"
  8251. },
  8252. "type": "library",
  8253. "extra": {
  8254. "branch-alias": {
  8255. "dev-main": "3.x-dev"
  8256. }
  8257. },
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Composer\\Semver\\": "src"
  8261. }
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "authors": [
  8268. {
  8269. "name": "Nils Adermann",
  8270. "email": "naderman@naderman.de",
  8271. "homepage": "http://www.naderman.de"
  8272. },
  8273. {
  8274. "name": "Jordi Boggiano",
  8275. "email": "j.boggiano@seld.be",
  8276. "homepage": "http://seld.be"
  8277. },
  8278. {
  8279. "name": "Rob Bast",
  8280. "email": "rob.bast@gmail.com",
  8281. "homepage": "http://robbast.nl"
  8282. }
  8283. ],
  8284. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8285. "keywords": [
  8286. "semantic",
  8287. "semver",
  8288. "validation",
  8289. "versioning"
  8290. ],
  8291. "support": {
  8292. "irc": "ircs://irc.libera.chat:6697/composer",
  8293. "issues": "https://github.com/composer/semver/issues",
  8294. "source": "https://github.com/composer/semver/tree/3.4.3"
  8295. },
  8296. "funding": [
  8297. {
  8298. "url": "https://packagist.com",
  8299. "type": "custom"
  8300. },
  8301. {
  8302. "url": "https://github.com/composer",
  8303. "type": "github"
  8304. },
  8305. {
  8306. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8307. "type": "tidelift"
  8308. }
  8309. ],
  8310. "time": "2024-09-19T14:15:21+00:00"
  8311. },
  8312. {
  8313. "name": "composer/xdebug-handler",
  8314. "version": "3.0.5",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/composer/xdebug-handler.git",
  8318. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8323. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "composer/pcre": "^1 || ^2 || ^3",
  8328. "php": "^7.2.5 || ^8.0",
  8329. "psr/log": "^1 || ^2 || ^3"
  8330. },
  8331. "require-dev": {
  8332. "phpstan/phpstan": "^1.0",
  8333. "phpstan/phpstan-strict-rules": "^1.1",
  8334. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8335. },
  8336. "type": "library",
  8337. "autoload": {
  8338. "psr-4": {
  8339. "Composer\\XdebugHandler\\": "src"
  8340. }
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "John Stevenson",
  8349. "email": "john-stevenson@blueyonder.co.uk"
  8350. }
  8351. ],
  8352. "description": "Restarts a process without Xdebug.",
  8353. "keywords": [
  8354. "Xdebug",
  8355. "performance"
  8356. ],
  8357. "support": {
  8358. "irc": "ircs://irc.libera.chat:6697/composer",
  8359. "issues": "https://github.com/composer/xdebug-handler/issues",
  8360. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://packagist.com",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/composer",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2024-05-06T16:37:16+00:00"
  8377. },
  8378. {
  8379. "name": "evenement/evenement",
  8380. "version": "v3.0.2",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/igorw/evenement.git",
  8384. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8389. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=7.0"
  8394. },
  8395. "require-dev": {
  8396. "phpunit/phpunit": "^9 || ^6"
  8397. },
  8398. "type": "library",
  8399. "autoload": {
  8400. "psr-4": {
  8401. "Evenement\\": "src/"
  8402. }
  8403. },
  8404. "notification-url": "https://packagist.org/downloads/",
  8405. "license": [
  8406. "MIT"
  8407. ],
  8408. "authors": [
  8409. {
  8410. "name": "Igor Wiedler",
  8411. "email": "igor@wiedler.ch"
  8412. }
  8413. ],
  8414. "description": "Événement is a very simple event dispatching library for PHP",
  8415. "keywords": [
  8416. "event-dispatcher",
  8417. "event-emitter"
  8418. ],
  8419. "support": {
  8420. "issues": "https://github.com/igorw/evenement/issues",
  8421. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8422. },
  8423. "time": "2023-08-08T05:53:35+00:00"
  8424. },
  8425. {
  8426. "name": "fidry/cpu-core-counter",
  8427. "version": "1.2.0",
  8428. "source": {
  8429. "type": "git",
  8430. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8431. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8432. },
  8433. "dist": {
  8434. "type": "zip",
  8435. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8436. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8437. "shasum": ""
  8438. },
  8439. "require": {
  8440. "php": "^7.2 || ^8.0"
  8441. },
  8442. "require-dev": {
  8443. "fidry/makefile": "^0.2.0",
  8444. "fidry/php-cs-fixer-config": "^1.1.2",
  8445. "phpstan/extension-installer": "^1.2.0",
  8446. "phpstan/phpstan": "^1.9.2",
  8447. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8448. "phpstan/phpstan-phpunit": "^1.2.2",
  8449. "phpstan/phpstan-strict-rules": "^1.4.4",
  8450. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8451. "webmozarts/strict-phpunit": "^7.5"
  8452. },
  8453. "type": "library",
  8454. "autoload": {
  8455. "psr-4": {
  8456. "Fidry\\CpuCoreCounter\\": "src/"
  8457. }
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "MIT"
  8462. ],
  8463. "authors": [
  8464. {
  8465. "name": "Théo FIDRY",
  8466. "email": "theo.fidry@gmail.com"
  8467. }
  8468. ],
  8469. "description": "Tiny utility to get the number of CPU cores.",
  8470. "keywords": [
  8471. "CPU",
  8472. "core"
  8473. ],
  8474. "support": {
  8475. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8476. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8477. },
  8478. "funding": [
  8479. {
  8480. "url": "https://github.com/theofidry",
  8481. "type": "github"
  8482. }
  8483. ],
  8484. "time": "2024-08-06T10:04:20+00:00"
  8485. },
  8486. {
  8487. "name": "friendsofphp/php-cs-fixer",
  8488. "version": "v3.64.0",
  8489. "source": {
  8490. "type": "git",
  8491. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8492. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8493. },
  8494. "dist": {
  8495. "type": "zip",
  8496. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8497. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8498. "shasum": ""
  8499. },
  8500. "require": {
  8501. "clue/ndjson-react": "^1.0",
  8502. "composer/semver": "^3.4",
  8503. "composer/xdebug-handler": "^3.0.3",
  8504. "ext-filter": "*",
  8505. "ext-json": "*",
  8506. "ext-tokenizer": "*",
  8507. "fidry/cpu-core-counter": "^1.0",
  8508. "php": "^7.4 || ^8.0",
  8509. "react/child-process": "^0.6.5",
  8510. "react/event-loop": "^1.0",
  8511. "react/promise": "^2.0 || ^3.0",
  8512. "react/socket": "^1.0",
  8513. "react/stream": "^1.0",
  8514. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8515. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8516. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8517. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8518. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8519. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8520. "symfony/polyfill-mbstring": "^1.28",
  8521. "symfony/polyfill-php80": "^1.28",
  8522. "symfony/polyfill-php81": "^1.28",
  8523. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8524. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8525. },
  8526. "require-dev": {
  8527. "facile-it/paraunit": "^1.3 || ^2.3",
  8528. "infection/infection": "^0.29.5",
  8529. "justinrainbow/json-schema": "^5.2",
  8530. "keradus/cli-executor": "^2.1",
  8531. "mikey179/vfsstream": "^1.6.11",
  8532. "php-coveralls/php-coveralls": "^2.7",
  8533. "php-cs-fixer/accessible-object": "^1.1",
  8534. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8535. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8536. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8537. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8538. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8539. },
  8540. "suggest": {
  8541. "ext-dom": "For handling output formats in XML",
  8542. "ext-mbstring": "For handling non-UTF8 characters."
  8543. },
  8544. "bin": [
  8545. "php-cs-fixer"
  8546. ],
  8547. "type": "application",
  8548. "autoload": {
  8549. "psr-4": {
  8550. "PhpCsFixer\\": "src/"
  8551. },
  8552. "exclude-from-classmap": [
  8553. "src/Fixer/Internal/*"
  8554. ]
  8555. },
  8556. "notification-url": "https://packagist.org/downloads/",
  8557. "license": [
  8558. "MIT"
  8559. ],
  8560. "authors": [
  8561. {
  8562. "name": "Fabien Potencier",
  8563. "email": "fabien@symfony.com"
  8564. },
  8565. {
  8566. "name": "Dariusz Rumiński",
  8567. "email": "dariusz.ruminski@gmail.com"
  8568. }
  8569. ],
  8570. "description": "A tool to automatically fix PHP code style",
  8571. "keywords": [
  8572. "Static code analysis",
  8573. "fixer",
  8574. "standards",
  8575. "static analysis"
  8576. ],
  8577. "support": {
  8578. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8579. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8580. },
  8581. "funding": [
  8582. {
  8583. "url": "https://github.com/keradus",
  8584. "type": "github"
  8585. }
  8586. ],
  8587. "time": "2024-08-30T23:09:38+00:00"
  8588. },
  8589. {
  8590. "name": "hamcrest/hamcrest-php",
  8591. "version": "v2.0.1",
  8592. "source": {
  8593. "type": "git",
  8594. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8595. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8596. },
  8597. "dist": {
  8598. "type": "zip",
  8599. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8600. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8601. "shasum": ""
  8602. },
  8603. "require": {
  8604. "php": "^5.3|^7.0|^8.0"
  8605. },
  8606. "replace": {
  8607. "cordoval/hamcrest-php": "*",
  8608. "davedevelopment/hamcrest-php": "*",
  8609. "kodova/hamcrest-php": "*"
  8610. },
  8611. "require-dev": {
  8612. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8613. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8614. },
  8615. "type": "library",
  8616. "extra": {
  8617. "branch-alias": {
  8618. "dev-master": "2.1-dev"
  8619. }
  8620. },
  8621. "autoload": {
  8622. "classmap": [
  8623. "hamcrest"
  8624. ]
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "BSD-3-Clause"
  8629. ],
  8630. "description": "This is the PHP port of Hamcrest Matchers",
  8631. "keywords": [
  8632. "test"
  8633. ],
  8634. "support": {
  8635. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8636. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8637. },
  8638. "time": "2020-07-09T08:09:16+00:00"
  8639. },
  8640. {
  8641. "name": "hyperf/devtool",
  8642. "version": "v3.1.42",
  8643. "source": {
  8644. "type": "git",
  8645. "url": "https://github.com/hyperf/devtool.git",
  8646. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8647. },
  8648. "dist": {
  8649. "type": "zip",
  8650. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8651. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8652. "shasum": ""
  8653. },
  8654. "require": {
  8655. "hyperf/code-parser": "~3.1.0",
  8656. "hyperf/command": "~3.1.0",
  8657. "hyperf/contract": "~3.1.0",
  8658. "hyperf/di": "~3.1.0",
  8659. "hyperf/support": "~3.1.0",
  8660. "hyperf/utils": "~3.1.0",
  8661. "php": ">=8.1"
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-master": "3.1-dev"
  8667. },
  8668. "hyperf": {
  8669. "config": "Hyperf\\Devtool\\ConfigProvider"
  8670. }
  8671. },
  8672. "autoload": {
  8673. "psr-4": {
  8674. "Hyperf\\Devtool\\": "src/"
  8675. }
  8676. },
  8677. "notification-url": "https://packagist.org/downloads/",
  8678. "license": [
  8679. "MIT"
  8680. ],
  8681. "description": "A Devtool for Hyperf.",
  8682. "homepage": "https://hyperf.io",
  8683. "keywords": [
  8684. "dev",
  8685. "devtool",
  8686. "hyperf",
  8687. "php",
  8688. "swoole"
  8689. ],
  8690. "support": {
  8691. "docs": "https://hyperf.wiki",
  8692. "issues": "https://github.com/hyperf/hyperf/issues",
  8693. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8694. "source": "https://github.com/hyperf/hyperf"
  8695. },
  8696. "funding": [
  8697. {
  8698. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8699. "type": "custom"
  8700. },
  8701. {
  8702. "url": "https://opencollective.com/hyperf",
  8703. "type": "open_collective"
  8704. }
  8705. ],
  8706. "time": "2024-09-25T02:54:12+00:00"
  8707. },
  8708. {
  8709. "name": "hyperf/testing",
  8710. "version": "v3.1.44",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/hyperf/testing.git",
  8714. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8719. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8720. "shasum": ""
  8721. },
  8722. "require": {
  8723. "hyperf/codec": "~3.1.0",
  8724. "hyperf/collection": "~3.1.0",
  8725. "hyperf/contract": "~3.1.0",
  8726. "hyperf/coroutine": "~3.1.0",
  8727. "hyperf/http-message": "~3.1.0",
  8728. "hyperf/http-server": "~3.1.0",
  8729. "hyperf/support": "~3.1.0",
  8730. "hyperf/utils": "~3.1.0",
  8731. "php": ">=8.1",
  8732. "phpunit/phpunit": "^10.0",
  8733. "psr/container": "^1.0 || ^2.0",
  8734. "symfony/http-foundation": "^5.4 || ^6.0"
  8735. },
  8736. "suggest": {
  8737. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8738. },
  8739. "bin": [
  8740. "co-phpunit"
  8741. ],
  8742. "type": "library",
  8743. "extra": {
  8744. "branch-alias": {
  8745. "dev-master": "3.1-dev"
  8746. }
  8747. },
  8748. "autoload": {
  8749. "psr-4": {
  8750. "Hyperf\\Testing\\": "src/"
  8751. }
  8752. },
  8753. "notification-url": "https://packagist.org/downloads/",
  8754. "license": [
  8755. "MIT"
  8756. ],
  8757. "description": "Testing for hyperf",
  8758. "keywords": [
  8759. "dev",
  8760. "php",
  8761. "swoole",
  8762. "testing"
  8763. ],
  8764. "support": {
  8765. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8766. },
  8767. "funding": [
  8768. {
  8769. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8770. "type": "custom"
  8771. },
  8772. {
  8773. "url": "https://opencollective.com/hyperf",
  8774. "type": "open_collective"
  8775. }
  8776. ],
  8777. "time": "2024-10-23T10:24:12+00:00"
  8778. },
  8779. {
  8780. "name": "hyperf/watcher",
  8781. "version": "v3.1.43",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/hyperf/watcher.git",
  8785. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8790. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8791. "shasum": ""
  8792. },
  8793. "require": {
  8794. "ext-posix": "*",
  8795. "hyperf/codec": "~3.1.0",
  8796. "hyperf/command": "~3.1.0",
  8797. "hyperf/di": "~3.1.0",
  8798. "hyperf/framework": "~3.1.0",
  8799. "hyperf/support": "~3.1.0",
  8800. "php": ">=8.1"
  8801. },
  8802. "type": "library",
  8803. "extra": {
  8804. "branch-alias": {
  8805. "dev-master": "3.1-dev"
  8806. },
  8807. "hyperf": {
  8808. "config": "Hyperf\\Watcher\\ConfigProvider"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "files": [
  8813. "src/Functions.php"
  8814. ],
  8815. "psr-4": {
  8816. "Hyperf\\Watcher\\": "src/"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "description": "Hot reload watcher for Hyperf",
  8824. "keywords": [
  8825. "dev",
  8826. "hyperf",
  8827. "php"
  8828. ],
  8829. "support": {
  8830. "issues": "https://github.com/hyperf/watcher/issues",
  8831. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8832. },
  8833. "funding": [
  8834. {
  8835. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8836. "type": "custom"
  8837. },
  8838. {
  8839. "url": "https://opencollective.com/hyperf",
  8840. "type": "open_collective"
  8841. }
  8842. ],
  8843. "time": "2024-10-06T12:33:12+00:00"
  8844. },
  8845. {
  8846. "name": "mockery/mockery",
  8847. "version": "1.6.12",
  8848. "source": {
  8849. "type": "git",
  8850. "url": "https://github.com/mockery/mockery.git",
  8851. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8852. },
  8853. "dist": {
  8854. "type": "zip",
  8855. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8856. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8857. "shasum": ""
  8858. },
  8859. "require": {
  8860. "hamcrest/hamcrest-php": "^2.0.1",
  8861. "lib-pcre": ">=7.0",
  8862. "php": ">=7.3"
  8863. },
  8864. "conflict": {
  8865. "phpunit/phpunit": "<8.0"
  8866. },
  8867. "require-dev": {
  8868. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8869. "symplify/easy-coding-standard": "^12.1.14"
  8870. },
  8871. "type": "library",
  8872. "autoload": {
  8873. "files": [
  8874. "library/helpers.php",
  8875. "library/Mockery.php"
  8876. ],
  8877. "psr-4": {
  8878. "Mockery\\": "library/Mockery"
  8879. }
  8880. },
  8881. "notification-url": "https://packagist.org/downloads/",
  8882. "license": [
  8883. "BSD-3-Clause"
  8884. ],
  8885. "authors": [
  8886. {
  8887. "name": "Pádraic Brady",
  8888. "email": "padraic.brady@gmail.com",
  8889. "homepage": "https://github.com/padraic",
  8890. "role": "Author"
  8891. },
  8892. {
  8893. "name": "Dave Marshall",
  8894. "email": "dave.marshall@atstsolutions.co.uk",
  8895. "homepage": "https://davedevelopment.co.uk",
  8896. "role": "Developer"
  8897. },
  8898. {
  8899. "name": "Nathanael Esayeas",
  8900. "email": "nathanael.esayeas@protonmail.com",
  8901. "homepage": "https://github.com/ghostwriter",
  8902. "role": "Lead Developer"
  8903. }
  8904. ],
  8905. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8906. "homepage": "https://github.com/mockery/mockery",
  8907. "keywords": [
  8908. "BDD",
  8909. "TDD",
  8910. "library",
  8911. "mock",
  8912. "mock objects",
  8913. "mockery",
  8914. "stub",
  8915. "test",
  8916. "test double",
  8917. "testing"
  8918. ],
  8919. "support": {
  8920. "docs": "https://docs.mockery.io/",
  8921. "issues": "https://github.com/mockery/mockery/issues",
  8922. "rss": "https://github.com/mockery/mockery/releases.atom",
  8923. "security": "https://github.com/mockery/mockery/security/advisories",
  8924. "source": "https://github.com/mockery/mockery"
  8925. },
  8926. "time": "2024-05-16T03:13:13+00:00"
  8927. },
  8928. {
  8929. "name": "myclabs/deep-copy",
  8930. "version": "1.12.1",
  8931. "source": {
  8932. "type": "git",
  8933. "url": "https://github.com/myclabs/DeepCopy.git",
  8934. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8935. },
  8936. "dist": {
  8937. "type": "zip",
  8938. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8939. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8940. "shasum": ""
  8941. },
  8942. "require": {
  8943. "php": "^7.1 || ^8.0"
  8944. },
  8945. "conflict": {
  8946. "doctrine/collections": "<1.6.8",
  8947. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8948. },
  8949. "require-dev": {
  8950. "doctrine/collections": "^1.6.8",
  8951. "doctrine/common": "^2.13.3 || ^3.2.2",
  8952. "phpspec/prophecy": "^1.10",
  8953. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8954. },
  8955. "type": "library",
  8956. "autoload": {
  8957. "files": [
  8958. "src/DeepCopy/deep_copy.php"
  8959. ],
  8960. "psr-4": {
  8961. "DeepCopy\\": "src/DeepCopy/"
  8962. }
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "MIT"
  8967. ],
  8968. "description": "Create deep copies (clones) of your objects",
  8969. "keywords": [
  8970. "clone",
  8971. "copy",
  8972. "duplicate",
  8973. "object",
  8974. "object graph"
  8975. ],
  8976. "support": {
  8977. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8978. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8983. "type": "tidelift"
  8984. }
  8985. ],
  8986. "time": "2024-11-08T17:47:46+00:00"
  8987. },
  8988. {
  8989. "name": "phar-io/manifest",
  8990. "version": "2.0.4",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/phar-io/manifest.git",
  8994. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8999. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "ext-dom": "*",
  9004. "ext-libxml": "*",
  9005. "ext-phar": "*",
  9006. "ext-xmlwriter": "*",
  9007. "phar-io/version": "^3.0.1",
  9008. "php": "^7.2 || ^8.0"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "branch-alias": {
  9013. "dev-master": "2.0.x-dev"
  9014. }
  9015. },
  9016. "autoload": {
  9017. "classmap": [
  9018. "src/"
  9019. ]
  9020. },
  9021. "notification-url": "https://packagist.org/downloads/",
  9022. "license": [
  9023. "BSD-3-Clause"
  9024. ],
  9025. "authors": [
  9026. {
  9027. "name": "Arne Blankerts",
  9028. "email": "arne@blankerts.de",
  9029. "role": "Developer"
  9030. },
  9031. {
  9032. "name": "Sebastian Heuer",
  9033. "email": "sebastian@phpeople.de",
  9034. "role": "Developer"
  9035. },
  9036. {
  9037. "name": "Sebastian Bergmann",
  9038. "email": "sebastian@phpunit.de",
  9039. "role": "Developer"
  9040. }
  9041. ],
  9042. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9043. "support": {
  9044. "issues": "https://github.com/phar-io/manifest/issues",
  9045. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9046. },
  9047. "funding": [
  9048. {
  9049. "url": "https://github.com/theseer",
  9050. "type": "github"
  9051. }
  9052. ],
  9053. "time": "2024-03-03T12:33:53+00:00"
  9054. },
  9055. {
  9056. "name": "phar-io/version",
  9057. "version": "3.2.1",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/phar-io/version.git",
  9061. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9066. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9067. "shasum": ""
  9068. },
  9069. "require": {
  9070. "php": "^7.2 || ^8.0"
  9071. },
  9072. "type": "library",
  9073. "autoload": {
  9074. "classmap": [
  9075. "src/"
  9076. ]
  9077. },
  9078. "notification-url": "https://packagist.org/downloads/",
  9079. "license": [
  9080. "BSD-3-Clause"
  9081. ],
  9082. "authors": [
  9083. {
  9084. "name": "Arne Blankerts",
  9085. "email": "arne@blankerts.de",
  9086. "role": "Developer"
  9087. },
  9088. {
  9089. "name": "Sebastian Heuer",
  9090. "email": "sebastian@phpeople.de",
  9091. "role": "Developer"
  9092. },
  9093. {
  9094. "name": "Sebastian Bergmann",
  9095. "email": "sebastian@phpunit.de",
  9096. "role": "Developer"
  9097. }
  9098. ],
  9099. "description": "Library for handling version information and constraints",
  9100. "support": {
  9101. "issues": "https://github.com/phar-io/version/issues",
  9102. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9103. },
  9104. "time": "2022-02-21T01:04:05+00:00"
  9105. },
  9106. {
  9107. "name": "phpstan/phpstan",
  9108. "version": "1.12.9",
  9109. "source": {
  9110. "type": "git",
  9111. "url": "https://github.com/phpstan/phpstan.git",
  9112. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  9113. },
  9114. "dist": {
  9115. "type": "zip",
  9116. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  9117. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  9118. "shasum": ""
  9119. },
  9120. "require": {
  9121. "php": "^7.2|^8.0"
  9122. },
  9123. "conflict": {
  9124. "phpstan/phpstan-shim": "*"
  9125. },
  9126. "bin": [
  9127. "phpstan",
  9128. "phpstan.phar"
  9129. ],
  9130. "type": "library",
  9131. "autoload": {
  9132. "files": [
  9133. "bootstrap.php"
  9134. ]
  9135. },
  9136. "notification-url": "https://packagist.org/downloads/",
  9137. "license": [
  9138. "MIT"
  9139. ],
  9140. "description": "PHPStan - PHP Static Analysis Tool",
  9141. "keywords": [
  9142. "dev",
  9143. "static analysis"
  9144. ],
  9145. "support": {
  9146. "docs": "https://phpstan.org/user-guide/getting-started",
  9147. "forum": "https://github.com/phpstan/phpstan/discussions",
  9148. "issues": "https://github.com/phpstan/phpstan/issues",
  9149. "security": "https://github.com/phpstan/phpstan/security/policy",
  9150. "source": "https://github.com/phpstan/phpstan-src"
  9151. },
  9152. "funding": [
  9153. {
  9154. "url": "https://github.com/ondrejmirtes",
  9155. "type": "github"
  9156. },
  9157. {
  9158. "url": "https://github.com/phpstan",
  9159. "type": "github"
  9160. }
  9161. ],
  9162. "time": "2024-11-10T17:10:04+00:00"
  9163. },
  9164. {
  9165. "name": "phpunit/php-code-coverage",
  9166. "version": "10.1.16",
  9167. "source": {
  9168. "type": "git",
  9169. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9170. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9171. },
  9172. "dist": {
  9173. "type": "zip",
  9174. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9175. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9176. "shasum": ""
  9177. },
  9178. "require": {
  9179. "ext-dom": "*",
  9180. "ext-libxml": "*",
  9181. "ext-xmlwriter": "*",
  9182. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9183. "php": ">=8.1",
  9184. "phpunit/php-file-iterator": "^4.1.0",
  9185. "phpunit/php-text-template": "^3.0.1",
  9186. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9187. "sebastian/complexity": "^3.2.0",
  9188. "sebastian/environment": "^6.1.0",
  9189. "sebastian/lines-of-code": "^2.0.2",
  9190. "sebastian/version": "^4.0.1",
  9191. "theseer/tokenizer": "^1.2.3"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^10.1"
  9195. },
  9196. "suggest": {
  9197. "ext-pcov": "PHP extension that provides line coverage",
  9198. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9199. },
  9200. "type": "library",
  9201. "extra": {
  9202. "branch-alias": {
  9203. "dev-main": "10.1.x-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "classmap": [
  9208. "src/"
  9209. ]
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Sebastian Bergmann",
  9218. "email": "sebastian@phpunit.de",
  9219. "role": "lead"
  9220. }
  9221. ],
  9222. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9223. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9224. "keywords": [
  9225. "coverage",
  9226. "testing",
  9227. "xunit"
  9228. ],
  9229. "support": {
  9230. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9231. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9232. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9233. },
  9234. "funding": [
  9235. {
  9236. "url": "https://github.com/sebastianbergmann",
  9237. "type": "github"
  9238. }
  9239. ],
  9240. "time": "2024-08-22T04:31:57+00:00"
  9241. },
  9242. {
  9243. "name": "phpunit/php-file-iterator",
  9244. "version": "4.1.0",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9248. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9253. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9254. "shasum": ""
  9255. },
  9256. "require": {
  9257. "php": ">=8.1"
  9258. },
  9259. "require-dev": {
  9260. "phpunit/phpunit": "^10.0"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-main": "4.0-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "classmap": [
  9270. "src/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Sebastian Bergmann",
  9280. "email": "sebastian@phpunit.de",
  9281. "role": "lead"
  9282. }
  9283. ],
  9284. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9285. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9286. "keywords": [
  9287. "filesystem",
  9288. "iterator"
  9289. ],
  9290. "support": {
  9291. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9292. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9293. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9294. },
  9295. "funding": [
  9296. {
  9297. "url": "https://github.com/sebastianbergmann",
  9298. "type": "github"
  9299. }
  9300. ],
  9301. "time": "2023-08-31T06:24:48+00:00"
  9302. },
  9303. {
  9304. "name": "phpunit/php-invoker",
  9305. "version": "4.0.0",
  9306. "source": {
  9307. "type": "git",
  9308. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9309. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9310. },
  9311. "dist": {
  9312. "type": "zip",
  9313. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9314. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9315. "shasum": ""
  9316. },
  9317. "require": {
  9318. "php": ">=8.1"
  9319. },
  9320. "require-dev": {
  9321. "ext-pcntl": "*",
  9322. "phpunit/phpunit": "^10.0"
  9323. },
  9324. "suggest": {
  9325. "ext-pcntl": "*"
  9326. },
  9327. "type": "library",
  9328. "extra": {
  9329. "branch-alias": {
  9330. "dev-main": "4.0-dev"
  9331. }
  9332. },
  9333. "autoload": {
  9334. "classmap": [
  9335. "src/"
  9336. ]
  9337. },
  9338. "notification-url": "https://packagist.org/downloads/",
  9339. "license": [
  9340. "BSD-3-Clause"
  9341. ],
  9342. "authors": [
  9343. {
  9344. "name": "Sebastian Bergmann",
  9345. "email": "sebastian@phpunit.de",
  9346. "role": "lead"
  9347. }
  9348. ],
  9349. "description": "Invoke callables with a timeout",
  9350. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9351. "keywords": [
  9352. "process"
  9353. ],
  9354. "support": {
  9355. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9356. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9357. },
  9358. "funding": [
  9359. {
  9360. "url": "https://github.com/sebastianbergmann",
  9361. "type": "github"
  9362. }
  9363. ],
  9364. "time": "2023-02-03T06:56:09+00:00"
  9365. },
  9366. {
  9367. "name": "phpunit/php-text-template",
  9368. "version": "3.0.1",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9372. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9377. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "php": ">=8.1"
  9382. },
  9383. "require-dev": {
  9384. "phpunit/phpunit": "^10.0"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-main": "3.0-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de",
  9405. "role": "lead"
  9406. }
  9407. ],
  9408. "description": "Simple template engine.",
  9409. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9410. "keywords": [
  9411. "template"
  9412. ],
  9413. "support": {
  9414. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9415. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9416. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9417. },
  9418. "funding": [
  9419. {
  9420. "url": "https://github.com/sebastianbergmann",
  9421. "type": "github"
  9422. }
  9423. ],
  9424. "time": "2023-08-31T14:07:24+00:00"
  9425. },
  9426. {
  9427. "name": "phpunit/php-timer",
  9428. "version": "6.0.0",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9432. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9437. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9438. "shasum": ""
  9439. },
  9440. "require": {
  9441. "php": ">=8.1"
  9442. },
  9443. "require-dev": {
  9444. "phpunit/phpunit": "^10.0"
  9445. },
  9446. "type": "library",
  9447. "extra": {
  9448. "branch-alias": {
  9449. "dev-main": "6.0-dev"
  9450. }
  9451. },
  9452. "autoload": {
  9453. "classmap": [
  9454. "src/"
  9455. ]
  9456. },
  9457. "notification-url": "https://packagist.org/downloads/",
  9458. "license": [
  9459. "BSD-3-Clause"
  9460. ],
  9461. "authors": [
  9462. {
  9463. "name": "Sebastian Bergmann",
  9464. "email": "sebastian@phpunit.de",
  9465. "role": "lead"
  9466. }
  9467. ],
  9468. "description": "Utility class for timing",
  9469. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9470. "keywords": [
  9471. "timer"
  9472. ],
  9473. "support": {
  9474. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9475. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9476. },
  9477. "funding": [
  9478. {
  9479. "url": "https://github.com/sebastianbergmann",
  9480. "type": "github"
  9481. }
  9482. ],
  9483. "time": "2023-02-03T06:57:52+00:00"
  9484. },
  9485. {
  9486. "name": "phpunit/phpunit",
  9487. "version": "10.5.38",
  9488. "source": {
  9489. "type": "git",
  9490. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9491. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9492. },
  9493. "dist": {
  9494. "type": "zip",
  9495. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9496. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9497. "shasum": ""
  9498. },
  9499. "require": {
  9500. "ext-dom": "*",
  9501. "ext-json": "*",
  9502. "ext-libxml": "*",
  9503. "ext-mbstring": "*",
  9504. "ext-xml": "*",
  9505. "ext-xmlwriter": "*",
  9506. "myclabs/deep-copy": "^1.12.0",
  9507. "phar-io/manifest": "^2.0.4",
  9508. "phar-io/version": "^3.2.1",
  9509. "php": ">=8.1",
  9510. "phpunit/php-code-coverage": "^10.1.16",
  9511. "phpunit/php-file-iterator": "^4.1.0",
  9512. "phpunit/php-invoker": "^4.0.0",
  9513. "phpunit/php-text-template": "^3.0.1",
  9514. "phpunit/php-timer": "^6.0.0",
  9515. "sebastian/cli-parser": "^2.0.1",
  9516. "sebastian/code-unit": "^2.0.0",
  9517. "sebastian/comparator": "^5.0.3",
  9518. "sebastian/diff": "^5.1.1",
  9519. "sebastian/environment": "^6.1.0",
  9520. "sebastian/exporter": "^5.1.2",
  9521. "sebastian/global-state": "^6.0.2",
  9522. "sebastian/object-enumerator": "^5.0.0",
  9523. "sebastian/recursion-context": "^5.0.0",
  9524. "sebastian/type": "^4.0.0",
  9525. "sebastian/version": "^4.0.1"
  9526. },
  9527. "suggest": {
  9528. "ext-soap": "To be able to generate mocks based on WSDL files"
  9529. },
  9530. "bin": [
  9531. "phpunit"
  9532. ],
  9533. "type": "library",
  9534. "extra": {
  9535. "branch-alias": {
  9536. "dev-main": "10.5-dev"
  9537. }
  9538. },
  9539. "autoload": {
  9540. "files": [
  9541. "src/Framework/Assert/Functions.php"
  9542. ],
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de",
  9555. "role": "lead"
  9556. }
  9557. ],
  9558. "description": "The PHP Unit Testing framework.",
  9559. "homepage": "https://phpunit.de/",
  9560. "keywords": [
  9561. "phpunit",
  9562. "testing",
  9563. "xunit"
  9564. ],
  9565. "support": {
  9566. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9567. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9568. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://phpunit.de/sponsors.html",
  9573. "type": "custom"
  9574. },
  9575. {
  9576. "url": "https://github.com/sebastianbergmann",
  9577. "type": "github"
  9578. },
  9579. {
  9580. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9581. "type": "tidelift"
  9582. }
  9583. ],
  9584. "time": "2024-10-28T13:06:21+00:00"
  9585. },
  9586. {
  9587. "name": "react/cache",
  9588. "version": "v1.2.0",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/reactphp/cache.git",
  9592. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9597. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=5.3.0",
  9602. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9603. },
  9604. "require-dev": {
  9605. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9606. },
  9607. "type": "library",
  9608. "autoload": {
  9609. "psr-4": {
  9610. "React\\Cache\\": "src/"
  9611. }
  9612. },
  9613. "notification-url": "https://packagist.org/downloads/",
  9614. "license": [
  9615. "MIT"
  9616. ],
  9617. "authors": [
  9618. {
  9619. "name": "Christian Lück",
  9620. "email": "christian@clue.engineering",
  9621. "homepage": "https://clue.engineering/"
  9622. },
  9623. {
  9624. "name": "Cees-Jan Kiewiet",
  9625. "email": "reactphp@ceesjankiewiet.nl",
  9626. "homepage": "https://wyrihaximus.net/"
  9627. },
  9628. {
  9629. "name": "Jan Sorgalla",
  9630. "email": "jsorgalla@gmail.com",
  9631. "homepage": "https://sorgalla.com/"
  9632. },
  9633. {
  9634. "name": "Chris Boden",
  9635. "email": "cboden@gmail.com",
  9636. "homepage": "https://cboden.dev/"
  9637. }
  9638. ],
  9639. "description": "Async, Promise-based cache interface for ReactPHP",
  9640. "keywords": [
  9641. "cache",
  9642. "caching",
  9643. "promise",
  9644. "reactphp"
  9645. ],
  9646. "support": {
  9647. "issues": "https://github.com/reactphp/cache/issues",
  9648. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9649. },
  9650. "funding": [
  9651. {
  9652. "url": "https://opencollective.com/reactphp",
  9653. "type": "open_collective"
  9654. }
  9655. ],
  9656. "time": "2022-11-30T15:59:55+00:00"
  9657. },
  9658. {
  9659. "name": "react/child-process",
  9660. "version": "v0.6.5",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/reactphp/child-process.git",
  9664. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9669. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9670. "shasum": ""
  9671. },
  9672. "require": {
  9673. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9674. "php": ">=5.3.0",
  9675. "react/event-loop": "^1.2",
  9676. "react/stream": "^1.2"
  9677. },
  9678. "require-dev": {
  9679. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9680. "react/socket": "^1.8",
  9681. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9682. },
  9683. "type": "library",
  9684. "autoload": {
  9685. "psr-4": {
  9686. "React\\ChildProcess\\": "src"
  9687. }
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "MIT"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Christian Lück",
  9696. "email": "christian@clue.engineering",
  9697. "homepage": "https://clue.engineering/"
  9698. },
  9699. {
  9700. "name": "Cees-Jan Kiewiet",
  9701. "email": "reactphp@ceesjankiewiet.nl",
  9702. "homepage": "https://wyrihaximus.net/"
  9703. },
  9704. {
  9705. "name": "Jan Sorgalla",
  9706. "email": "jsorgalla@gmail.com",
  9707. "homepage": "https://sorgalla.com/"
  9708. },
  9709. {
  9710. "name": "Chris Boden",
  9711. "email": "cboden@gmail.com",
  9712. "homepage": "https://cboden.dev/"
  9713. }
  9714. ],
  9715. "description": "Event-driven library for executing child processes with ReactPHP.",
  9716. "keywords": [
  9717. "event-driven",
  9718. "process",
  9719. "reactphp"
  9720. ],
  9721. "support": {
  9722. "issues": "https://github.com/reactphp/child-process/issues",
  9723. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9724. },
  9725. "funding": [
  9726. {
  9727. "url": "https://github.com/WyriHaximus",
  9728. "type": "github"
  9729. },
  9730. {
  9731. "url": "https://github.com/clue",
  9732. "type": "github"
  9733. }
  9734. ],
  9735. "time": "2022-09-16T13:41:56+00:00"
  9736. },
  9737. {
  9738. "name": "react/dns",
  9739. "version": "v1.13.0",
  9740. "source": {
  9741. "type": "git",
  9742. "url": "https://github.com/reactphp/dns.git",
  9743. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9744. },
  9745. "dist": {
  9746. "type": "zip",
  9747. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9748. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9749. "shasum": ""
  9750. },
  9751. "require": {
  9752. "php": ">=5.3.0",
  9753. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9754. "react/event-loop": "^1.2",
  9755. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9756. },
  9757. "require-dev": {
  9758. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9759. "react/async": "^4.3 || ^3 || ^2",
  9760. "react/promise-timer": "^1.11"
  9761. },
  9762. "type": "library",
  9763. "autoload": {
  9764. "psr-4": {
  9765. "React\\Dns\\": "src/"
  9766. }
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "MIT"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "Christian Lück",
  9775. "email": "christian@clue.engineering",
  9776. "homepage": "https://clue.engineering/"
  9777. },
  9778. {
  9779. "name": "Cees-Jan Kiewiet",
  9780. "email": "reactphp@ceesjankiewiet.nl",
  9781. "homepage": "https://wyrihaximus.net/"
  9782. },
  9783. {
  9784. "name": "Jan Sorgalla",
  9785. "email": "jsorgalla@gmail.com",
  9786. "homepage": "https://sorgalla.com/"
  9787. },
  9788. {
  9789. "name": "Chris Boden",
  9790. "email": "cboden@gmail.com",
  9791. "homepage": "https://cboden.dev/"
  9792. }
  9793. ],
  9794. "description": "Async DNS resolver for ReactPHP",
  9795. "keywords": [
  9796. "async",
  9797. "dns",
  9798. "dns-resolver",
  9799. "reactphp"
  9800. ],
  9801. "support": {
  9802. "issues": "https://github.com/reactphp/dns/issues",
  9803. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://opencollective.com/reactphp",
  9808. "type": "open_collective"
  9809. }
  9810. ],
  9811. "time": "2024-06-13T14:18:03+00:00"
  9812. },
  9813. {
  9814. "name": "react/event-loop",
  9815. "version": "v1.5.0",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/reactphp/event-loop.git",
  9819. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9824. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": ">=5.3.0"
  9829. },
  9830. "require-dev": {
  9831. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9832. },
  9833. "suggest": {
  9834. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9835. },
  9836. "type": "library",
  9837. "autoload": {
  9838. "psr-4": {
  9839. "React\\EventLoop\\": "src/"
  9840. }
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "MIT"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Christian Lück",
  9849. "email": "christian@clue.engineering",
  9850. "homepage": "https://clue.engineering/"
  9851. },
  9852. {
  9853. "name": "Cees-Jan Kiewiet",
  9854. "email": "reactphp@ceesjankiewiet.nl",
  9855. "homepage": "https://wyrihaximus.net/"
  9856. },
  9857. {
  9858. "name": "Jan Sorgalla",
  9859. "email": "jsorgalla@gmail.com",
  9860. "homepage": "https://sorgalla.com/"
  9861. },
  9862. {
  9863. "name": "Chris Boden",
  9864. "email": "cboden@gmail.com",
  9865. "homepage": "https://cboden.dev/"
  9866. }
  9867. ],
  9868. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9869. "keywords": [
  9870. "asynchronous",
  9871. "event-loop"
  9872. ],
  9873. "support": {
  9874. "issues": "https://github.com/reactphp/event-loop/issues",
  9875. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9876. },
  9877. "funding": [
  9878. {
  9879. "url": "https://opencollective.com/reactphp",
  9880. "type": "open_collective"
  9881. }
  9882. ],
  9883. "time": "2023-11-13T13:48:05+00:00"
  9884. },
  9885. {
  9886. "name": "react/promise",
  9887. "version": "v3.2.0",
  9888. "source": {
  9889. "type": "git",
  9890. "url": "https://github.com/reactphp/promise.git",
  9891. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9892. },
  9893. "dist": {
  9894. "type": "zip",
  9895. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9896. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9897. "shasum": ""
  9898. },
  9899. "require": {
  9900. "php": ">=7.1.0"
  9901. },
  9902. "require-dev": {
  9903. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9904. "phpunit/phpunit": "^9.6 || ^7.5"
  9905. },
  9906. "type": "library",
  9907. "autoload": {
  9908. "files": [
  9909. "src/functions_include.php"
  9910. ],
  9911. "psr-4": {
  9912. "React\\Promise\\": "src/"
  9913. }
  9914. },
  9915. "notification-url": "https://packagist.org/downloads/",
  9916. "license": [
  9917. "MIT"
  9918. ],
  9919. "authors": [
  9920. {
  9921. "name": "Jan Sorgalla",
  9922. "email": "jsorgalla@gmail.com",
  9923. "homepage": "https://sorgalla.com/"
  9924. },
  9925. {
  9926. "name": "Christian Lück",
  9927. "email": "christian@clue.engineering",
  9928. "homepage": "https://clue.engineering/"
  9929. },
  9930. {
  9931. "name": "Cees-Jan Kiewiet",
  9932. "email": "reactphp@ceesjankiewiet.nl",
  9933. "homepage": "https://wyrihaximus.net/"
  9934. },
  9935. {
  9936. "name": "Chris Boden",
  9937. "email": "cboden@gmail.com",
  9938. "homepage": "https://cboden.dev/"
  9939. }
  9940. ],
  9941. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9942. "keywords": [
  9943. "promise",
  9944. "promises"
  9945. ],
  9946. "support": {
  9947. "issues": "https://github.com/reactphp/promise/issues",
  9948. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9949. },
  9950. "funding": [
  9951. {
  9952. "url": "https://opencollective.com/reactphp",
  9953. "type": "open_collective"
  9954. }
  9955. ],
  9956. "time": "2024-05-24T10:39:05+00:00"
  9957. },
  9958. {
  9959. "name": "react/socket",
  9960. "version": "v1.16.0",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/reactphp/socket.git",
  9964. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9969. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9974. "php": ">=5.3.0",
  9975. "react/dns": "^1.13",
  9976. "react/event-loop": "^1.2",
  9977. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9978. "react/stream": "^1.4"
  9979. },
  9980. "require-dev": {
  9981. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9982. "react/async": "^4.3 || ^3.3 || ^2",
  9983. "react/promise-stream": "^1.4",
  9984. "react/promise-timer": "^1.11"
  9985. },
  9986. "type": "library",
  9987. "autoload": {
  9988. "psr-4": {
  9989. "React\\Socket\\": "src/"
  9990. }
  9991. },
  9992. "notification-url": "https://packagist.org/downloads/",
  9993. "license": [
  9994. "MIT"
  9995. ],
  9996. "authors": [
  9997. {
  9998. "name": "Christian Lück",
  9999. "email": "christian@clue.engineering",
  10000. "homepage": "https://clue.engineering/"
  10001. },
  10002. {
  10003. "name": "Cees-Jan Kiewiet",
  10004. "email": "reactphp@ceesjankiewiet.nl",
  10005. "homepage": "https://wyrihaximus.net/"
  10006. },
  10007. {
  10008. "name": "Jan Sorgalla",
  10009. "email": "jsorgalla@gmail.com",
  10010. "homepage": "https://sorgalla.com/"
  10011. },
  10012. {
  10013. "name": "Chris Boden",
  10014. "email": "cboden@gmail.com",
  10015. "homepage": "https://cboden.dev/"
  10016. }
  10017. ],
  10018. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10019. "keywords": [
  10020. "Connection",
  10021. "Socket",
  10022. "async",
  10023. "reactphp",
  10024. "stream"
  10025. ],
  10026. "support": {
  10027. "issues": "https://github.com/reactphp/socket/issues",
  10028. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10029. },
  10030. "funding": [
  10031. {
  10032. "url": "https://opencollective.com/reactphp",
  10033. "type": "open_collective"
  10034. }
  10035. ],
  10036. "time": "2024-07-26T10:38:09+00:00"
  10037. },
  10038. {
  10039. "name": "react/stream",
  10040. "version": "v1.4.0",
  10041. "source": {
  10042. "type": "git",
  10043. "url": "https://github.com/reactphp/stream.git",
  10044. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10045. },
  10046. "dist": {
  10047. "type": "zip",
  10048. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10049. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10050. "shasum": ""
  10051. },
  10052. "require": {
  10053. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10054. "php": ">=5.3.8",
  10055. "react/event-loop": "^1.2"
  10056. },
  10057. "require-dev": {
  10058. "clue/stream-filter": "~1.2",
  10059. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10060. },
  10061. "type": "library",
  10062. "autoload": {
  10063. "psr-4": {
  10064. "React\\Stream\\": "src/"
  10065. }
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "MIT"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Christian Lück",
  10074. "email": "christian@clue.engineering",
  10075. "homepage": "https://clue.engineering/"
  10076. },
  10077. {
  10078. "name": "Cees-Jan Kiewiet",
  10079. "email": "reactphp@ceesjankiewiet.nl",
  10080. "homepage": "https://wyrihaximus.net/"
  10081. },
  10082. {
  10083. "name": "Jan Sorgalla",
  10084. "email": "jsorgalla@gmail.com",
  10085. "homepage": "https://sorgalla.com/"
  10086. },
  10087. {
  10088. "name": "Chris Boden",
  10089. "email": "cboden@gmail.com",
  10090. "homepage": "https://cboden.dev/"
  10091. }
  10092. ],
  10093. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10094. "keywords": [
  10095. "event-driven",
  10096. "io",
  10097. "non-blocking",
  10098. "pipe",
  10099. "reactphp",
  10100. "readable",
  10101. "stream",
  10102. "writable"
  10103. ],
  10104. "support": {
  10105. "issues": "https://github.com/reactphp/stream/issues",
  10106. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10107. },
  10108. "funding": [
  10109. {
  10110. "url": "https://opencollective.com/reactphp",
  10111. "type": "open_collective"
  10112. }
  10113. ],
  10114. "time": "2024-06-11T12:45:25+00:00"
  10115. },
  10116. {
  10117. "name": "sebastian/cli-parser",
  10118. "version": "2.0.1",
  10119. "source": {
  10120. "type": "git",
  10121. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10122. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10123. },
  10124. "dist": {
  10125. "type": "zip",
  10126. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10127. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10128. "shasum": ""
  10129. },
  10130. "require": {
  10131. "php": ">=8.1"
  10132. },
  10133. "require-dev": {
  10134. "phpunit/phpunit": "^10.0"
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "branch-alias": {
  10139. "dev-main": "2.0-dev"
  10140. }
  10141. },
  10142. "autoload": {
  10143. "classmap": [
  10144. "src/"
  10145. ]
  10146. },
  10147. "notification-url": "https://packagist.org/downloads/",
  10148. "license": [
  10149. "BSD-3-Clause"
  10150. ],
  10151. "authors": [
  10152. {
  10153. "name": "Sebastian Bergmann",
  10154. "email": "sebastian@phpunit.de",
  10155. "role": "lead"
  10156. }
  10157. ],
  10158. "description": "Library for parsing CLI options",
  10159. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10160. "support": {
  10161. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10162. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10163. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10164. },
  10165. "funding": [
  10166. {
  10167. "url": "https://github.com/sebastianbergmann",
  10168. "type": "github"
  10169. }
  10170. ],
  10171. "time": "2024-03-02T07:12:49+00:00"
  10172. },
  10173. {
  10174. "name": "sebastian/code-unit",
  10175. "version": "2.0.0",
  10176. "source": {
  10177. "type": "git",
  10178. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10179. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10180. },
  10181. "dist": {
  10182. "type": "zip",
  10183. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10184. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10185. "shasum": ""
  10186. },
  10187. "require": {
  10188. "php": ">=8.1"
  10189. },
  10190. "require-dev": {
  10191. "phpunit/phpunit": "^10.0"
  10192. },
  10193. "type": "library",
  10194. "extra": {
  10195. "branch-alias": {
  10196. "dev-main": "2.0-dev"
  10197. }
  10198. },
  10199. "autoload": {
  10200. "classmap": [
  10201. "src/"
  10202. ]
  10203. },
  10204. "notification-url": "https://packagist.org/downloads/",
  10205. "license": [
  10206. "BSD-3-Clause"
  10207. ],
  10208. "authors": [
  10209. {
  10210. "name": "Sebastian Bergmann",
  10211. "email": "sebastian@phpunit.de",
  10212. "role": "lead"
  10213. }
  10214. ],
  10215. "description": "Collection of value objects that represent the PHP code units",
  10216. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10217. "support": {
  10218. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10219. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10220. },
  10221. "funding": [
  10222. {
  10223. "url": "https://github.com/sebastianbergmann",
  10224. "type": "github"
  10225. }
  10226. ],
  10227. "time": "2023-02-03T06:58:43+00:00"
  10228. },
  10229. {
  10230. "name": "sebastian/code-unit-reverse-lookup",
  10231. "version": "3.0.0",
  10232. "source": {
  10233. "type": "git",
  10234. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10235. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10236. },
  10237. "dist": {
  10238. "type": "zip",
  10239. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10240. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10241. "shasum": ""
  10242. },
  10243. "require": {
  10244. "php": ">=8.1"
  10245. },
  10246. "require-dev": {
  10247. "phpunit/phpunit": "^10.0"
  10248. },
  10249. "type": "library",
  10250. "extra": {
  10251. "branch-alias": {
  10252. "dev-main": "3.0-dev"
  10253. }
  10254. },
  10255. "autoload": {
  10256. "classmap": [
  10257. "src/"
  10258. ]
  10259. },
  10260. "notification-url": "https://packagist.org/downloads/",
  10261. "license": [
  10262. "BSD-3-Clause"
  10263. ],
  10264. "authors": [
  10265. {
  10266. "name": "Sebastian Bergmann",
  10267. "email": "sebastian@phpunit.de"
  10268. }
  10269. ],
  10270. "description": "Looks up which function or method a line of code belongs to",
  10271. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10272. "support": {
  10273. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10274. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10275. },
  10276. "funding": [
  10277. {
  10278. "url": "https://github.com/sebastianbergmann",
  10279. "type": "github"
  10280. }
  10281. ],
  10282. "time": "2023-02-03T06:59:15+00:00"
  10283. },
  10284. {
  10285. "name": "sebastian/comparator",
  10286. "version": "5.0.3",
  10287. "source": {
  10288. "type": "git",
  10289. "url": "https://github.com/sebastianbergmann/comparator.git",
  10290. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10291. },
  10292. "dist": {
  10293. "type": "zip",
  10294. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10295. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10296. "shasum": ""
  10297. },
  10298. "require": {
  10299. "ext-dom": "*",
  10300. "ext-mbstring": "*",
  10301. "php": ">=8.1",
  10302. "sebastian/diff": "^5.0",
  10303. "sebastian/exporter": "^5.0"
  10304. },
  10305. "require-dev": {
  10306. "phpunit/phpunit": "^10.5"
  10307. },
  10308. "type": "library",
  10309. "extra": {
  10310. "branch-alias": {
  10311. "dev-main": "5.0-dev"
  10312. }
  10313. },
  10314. "autoload": {
  10315. "classmap": [
  10316. "src/"
  10317. ]
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "BSD-3-Clause"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "Sebastian Bergmann",
  10326. "email": "sebastian@phpunit.de"
  10327. },
  10328. {
  10329. "name": "Jeff Welch",
  10330. "email": "whatthejeff@gmail.com"
  10331. },
  10332. {
  10333. "name": "Volker Dusch",
  10334. "email": "github@wallbash.com"
  10335. },
  10336. {
  10337. "name": "Bernhard Schussek",
  10338. "email": "bschussek@2bepublished.at"
  10339. }
  10340. ],
  10341. "description": "Provides the functionality to compare PHP values for equality",
  10342. "homepage": "https://github.com/sebastianbergmann/comparator",
  10343. "keywords": [
  10344. "comparator",
  10345. "compare",
  10346. "equality"
  10347. ],
  10348. "support": {
  10349. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10350. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10351. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10352. },
  10353. "funding": [
  10354. {
  10355. "url": "https://github.com/sebastianbergmann",
  10356. "type": "github"
  10357. }
  10358. ],
  10359. "time": "2024-10-18T14:56:07+00:00"
  10360. },
  10361. {
  10362. "name": "sebastian/complexity",
  10363. "version": "3.2.0",
  10364. "source": {
  10365. "type": "git",
  10366. "url": "https://github.com/sebastianbergmann/complexity.git",
  10367. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10368. },
  10369. "dist": {
  10370. "type": "zip",
  10371. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10372. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10373. "shasum": ""
  10374. },
  10375. "require": {
  10376. "nikic/php-parser": "^4.18 || ^5.0",
  10377. "php": ">=8.1"
  10378. },
  10379. "require-dev": {
  10380. "phpunit/phpunit": "^10.0"
  10381. },
  10382. "type": "library",
  10383. "extra": {
  10384. "branch-alias": {
  10385. "dev-main": "3.2-dev"
  10386. }
  10387. },
  10388. "autoload": {
  10389. "classmap": [
  10390. "src/"
  10391. ]
  10392. },
  10393. "notification-url": "https://packagist.org/downloads/",
  10394. "license": [
  10395. "BSD-3-Clause"
  10396. ],
  10397. "authors": [
  10398. {
  10399. "name": "Sebastian Bergmann",
  10400. "email": "sebastian@phpunit.de",
  10401. "role": "lead"
  10402. }
  10403. ],
  10404. "description": "Library for calculating the complexity of PHP code units",
  10405. "homepage": "https://github.com/sebastianbergmann/complexity",
  10406. "support": {
  10407. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10408. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10409. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10410. },
  10411. "funding": [
  10412. {
  10413. "url": "https://github.com/sebastianbergmann",
  10414. "type": "github"
  10415. }
  10416. ],
  10417. "time": "2023-12-21T08:37:17+00:00"
  10418. },
  10419. {
  10420. "name": "sebastian/diff",
  10421. "version": "5.1.1",
  10422. "source": {
  10423. "type": "git",
  10424. "url": "https://github.com/sebastianbergmann/diff.git",
  10425. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10426. },
  10427. "dist": {
  10428. "type": "zip",
  10429. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10430. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10431. "shasum": ""
  10432. },
  10433. "require": {
  10434. "php": ">=8.1"
  10435. },
  10436. "require-dev": {
  10437. "phpunit/phpunit": "^10.0",
  10438. "symfony/process": "^6.4"
  10439. },
  10440. "type": "library",
  10441. "extra": {
  10442. "branch-alias": {
  10443. "dev-main": "5.1-dev"
  10444. }
  10445. },
  10446. "autoload": {
  10447. "classmap": [
  10448. "src/"
  10449. ]
  10450. },
  10451. "notification-url": "https://packagist.org/downloads/",
  10452. "license": [
  10453. "BSD-3-Clause"
  10454. ],
  10455. "authors": [
  10456. {
  10457. "name": "Sebastian Bergmann",
  10458. "email": "sebastian@phpunit.de"
  10459. },
  10460. {
  10461. "name": "Kore Nordmann",
  10462. "email": "mail@kore-nordmann.de"
  10463. }
  10464. ],
  10465. "description": "Diff implementation",
  10466. "homepage": "https://github.com/sebastianbergmann/diff",
  10467. "keywords": [
  10468. "diff",
  10469. "udiff",
  10470. "unidiff",
  10471. "unified diff"
  10472. ],
  10473. "support": {
  10474. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10475. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10476. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10477. },
  10478. "funding": [
  10479. {
  10480. "url": "https://github.com/sebastianbergmann",
  10481. "type": "github"
  10482. }
  10483. ],
  10484. "time": "2024-03-02T07:15:17+00:00"
  10485. },
  10486. {
  10487. "name": "sebastian/environment",
  10488. "version": "6.1.0",
  10489. "source": {
  10490. "type": "git",
  10491. "url": "https://github.com/sebastianbergmann/environment.git",
  10492. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10493. },
  10494. "dist": {
  10495. "type": "zip",
  10496. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10497. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10498. "shasum": ""
  10499. },
  10500. "require": {
  10501. "php": ">=8.1"
  10502. },
  10503. "require-dev": {
  10504. "phpunit/phpunit": "^10.0"
  10505. },
  10506. "suggest": {
  10507. "ext-posix": "*"
  10508. },
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-main": "6.1-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "classmap": [
  10517. "src/"
  10518. ]
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "BSD-3-Clause"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "Sebastian Bergmann",
  10527. "email": "sebastian@phpunit.de"
  10528. }
  10529. ],
  10530. "description": "Provides functionality to handle HHVM/PHP environments",
  10531. "homepage": "https://github.com/sebastianbergmann/environment",
  10532. "keywords": [
  10533. "Xdebug",
  10534. "environment",
  10535. "hhvm"
  10536. ],
  10537. "support": {
  10538. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10539. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10540. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10541. },
  10542. "funding": [
  10543. {
  10544. "url": "https://github.com/sebastianbergmann",
  10545. "type": "github"
  10546. }
  10547. ],
  10548. "time": "2024-03-23T08:47:14+00:00"
  10549. },
  10550. {
  10551. "name": "sebastian/exporter",
  10552. "version": "5.1.2",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/sebastianbergmann/exporter.git",
  10556. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10561. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "ext-mbstring": "*",
  10566. "php": ">=8.1",
  10567. "sebastian/recursion-context": "^5.0"
  10568. },
  10569. "require-dev": {
  10570. "phpunit/phpunit": "^10.0"
  10571. },
  10572. "type": "library",
  10573. "extra": {
  10574. "branch-alias": {
  10575. "dev-main": "5.1-dev"
  10576. }
  10577. },
  10578. "autoload": {
  10579. "classmap": [
  10580. "src/"
  10581. ]
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "BSD-3-Clause"
  10586. ],
  10587. "authors": [
  10588. {
  10589. "name": "Sebastian Bergmann",
  10590. "email": "sebastian@phpunit.de"
  10591. },
  10592. {
  10593. "name": "Jeff Welch",
  10594. "email": "whatthejeff@gmail.com"
  10595. },
  10596. {
  10597. "name": "Volker Dusch",
  10598. "email": "github@wallbash.com"
  10599. },
  10600. {
  10601. "name": "Adam Harvey",
  10602. "email": "aharvey@php.net"
  10603. },
  10604. {
  10605. "name": "Bernhard Schussek",
  10606. "email": "bschussek@gmail.com"
  10607. }
  10608. ],
  10609. "description": "Provides the functionality to export PHP variables for visualization",
  10610. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10611. "keywords": [
  10612. "export",
  10613. "exporter"
  10614. ],
  10615. "support": {
  10616. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10617. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10618. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10619. },
  10620. "funding": [
  10621. {
  10622. "url": "https://github.com/sebastianbergmann",
  10623. "type": "github"
  10624. }
  10625. ],
  10626. "time": "2024-03-02T07:17:12+00:00"
  10627. },
  10628. {
  10629. "name": "sebastian/global-state",
  10630. "version": "6.0.2",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/sebastianbergmann/global-state.git",
  10634. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10639. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10640. "shasum": ""
  10641. },
  10642. "require": {
  10643. "php": ">=8.1",
  10644. "sebastian/object-reflector": "^3.0",
  10645. "sebastian/recursion-context": "^5.0"
  10646. },
  10647. "require-dev": {
  10648. "ext-dom": "*",
  10649. "phpunit/phpunit": "^10.0"
  10650. },
  10651. "type": "library",
  10652. "extra": {
  10653. "branch-alias": {
  10654. "dev-main": "6.0-dev"
  10655. }
  10656. },
  10657. "autoload": {
  10658. "classmap": [
  10659. "src/"
  10660. ]
  10661. },
  10662. "notification-url": "https://packagist.org/downloads/",
  10663. "license": [
  10664. "BSD-3-Clause"
  10665. ],
  10666. "authors": [
  10667. {
  10668. "name": "Sebastian Bergmann",
  10669. "email": "sebastian@phpunit.de"
  10670. }
  10671. ],
  10672. "description": "Snapshotting of global state",
  10673. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10674. "keywords": [
  10675. "global state"
  10676. ],
  10677. "support": {
  10678. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10679. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10680. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10681. },
  10682. "funding": [
  10683. {
  10684. "url": "https://github.com/sebastianbergmann",
  10685. "type": "github"
  10686. }
  10687. ],
  10688. "time": "2024-03-02T07:19:19+00:00"
  10689. },
  10690. {
  10691. "name": "sebastian/lines-of-code",
  10692. "version": "2.0.2",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10696. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10701. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "nikic/php-parser": "^4.18 || ^5.0",
  10706. "php": ">=8.1"
  10707. },
  10708. "require-dev": {
  10709. "phpunit/phpunit": "^10.0"
  10710. },
  10711. "type": "library",
  10712. "extra": {
  10713. "branch-alias": {
  10714. "dev-main": "2.0-dev"
  10715. }
  10716. },
  10717. "autoload": {
  10718. "classmap": [
  10719. "src/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "BSD-3-Clause"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Sebastian Bergmann",
  10729. "email": "sebastian@phpunit.de",
  10730. "role": "lead"
  10731. }
  10732. ],
  10733. "description": "Library for counting the lines of code in PHP source code",
  10734. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10735. "support": {
  10736. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10737. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10738. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10739. },
  10740. "funding": [
  10741. {
  10742. "url": "https://github.com/sebastianbergmann",
  10743. "type": "github"
  10744. }
  10745. ],
  10746. "time": "2023-12-21T08:38:20+00:00"
  10747. },
  10748. {
  10749. "name": "sebastian/object-enumerator",
  10750. "version": "5.0.0",
  10751. "source": {
  10752. "type": "git",
  10753. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10754. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10755. },
  10756. "dist": {
  10757. "type": "zip",
  10758. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10759. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10760. "shasum": ""
  10761. },
  10762. "require": {
  10763. "php": ">=8.1",
  10764. "sebastian/object-reflector": "^3.0",
  10765. "sebastian/recursion-context": "^5.0"
  10766. },
  10767. "require-dev": {
  10768. "phpunit/phpunit": "^10.0"
  10769. },
  10770. "type": "library",
  10771. "extra": {
  10772. "branch-alias": {
  10773. "dev-main": "5.0-dev"
  10774. }
  10775. },
  10776. "autoload": {
  10777. "classmap": [
  10778. "src/"
  10779. ]
  10780. },
  10781. "notification-url": "https://packagist.org/downloads/",
  10782. "license": [
  10783. "BSD-3-Clause"
  10784. ],
  10785. "authors": [
  10786. {
  10787. "name": "Sebastian Bergmann",
  10788. "email": "sebastian@phpunit.de"
  10789. }
  10790. ],
  10791. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10792. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10793. "support": {
  10794. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10795. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10796. },
  10797. "funding": [
  10798. {
  10799. "url": "https://github.com/sebastianbergmann",
  10800. "type": "github"
  10801. }
  10802. ],
  10803. "time": "2023-02-03T07:08:32+00:00"
  10804. },
  10805. {
  10806. "name": "sebastian/object-reflector",
  10807. "version": "3.0.0",
  10808. "source": {
  10809. "type": "git",
  10810. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10811. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10812. },
  10813. "dist": {
  10814. "type": "zip",
  10815. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10816. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10817. "shasum": ""
  10818. },
  10819. "require": {
  10820. "php": ">=8.1"
  10821. },
  10822. "require-dev": {
  10823. "phpunit/phpunit": "^10.0"
  10824. },
  10825. "type": "library",
  10826. "extra": {
  10827. "branch-alias": {
  10828. "dev-main": "3.0-dev"
  10829. }
  10830. },
  10831. "autoload": {
  10832. "classmap": [
  10833. "src/"
  10834. ]
  10835. },
  10836. "notification-url": "https://packagist.org/downloads/",
  10837. "license": [
  10838. "BSD-3-Clause"
  10839. ],
  10840. "authors": [
  10841. {
  10842. "name": "Sebastian Bergmann",
  10843. "email": "sebastian@phpunit.de"
  10844. }
  10845. ],
  10846. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10847. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10848. "support": {
  10849. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10850. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10851. },
  10852. "funding": [
  10853. {
  10854. "url": "https://github.com/sebastianbergmann",
  10855. "type": "github"
  10856. }
  10857. ],
  10858. "time": "2023-02-03T07:06:18+00:00"
  10859. },
  10860. {
  10861. "name": "sebastian/recursion-context",
  10862. "version": "5.0.0",
  10863. "source": {
  10864. "type": "git",
  10865. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10866. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10867. },
  10868. "dist": {
  10869. "type": "zip",
  10870. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10871. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10872. "shasum": ""
  10873. },
  10874. "require": {
  10875. "php": ">=8.1"
  10876. },
  10877. "require-dev": {
  10878. "phpunit/phpunit": "^10.0"
  10879. },
  10880. "type": "library",
  10881. "extra": {
  10882. "branch-alias": {
  10883. "dev-main": "5.0-dev"
  10884. }
  10885. },
  10886. "autoload": {
  10887. "classmap": [
  10888. "src/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "BSD-3-Clause"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Sebastian Bergmann",
  10898. "email": "sebastian@phpunit.de"
  10899. },
  10900. {
  10901. "name": "Jeff Welch",
  10902. "email": "whatthejeff@gmail.com"
  10903. },
  10904. {
  10905. "name": "Adam Harvey",
  10906. "email": "aharvey@php.net"
  10907. }
  10908. ],
  10909. "description": "Provides functionality to recursively process PHP variables",
  10910. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10911. "support": {
  10912. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10913. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10914. },
  10915. "funding": [
  10916. {
  10917. "url": "https://github.com/sebastianbergmann",
  10918. "type": "github"
  10919. }
  10920. ],
  10921. "time": "2023-02-03T07:05:40+00:00"
  10922. },
  10923. {
  10924. "name": "sebastian/type",
  10925. "version": "4.0.0",
  10926. "source": {
  10927. "type": "git",
  10928. "url": "https://github.com/sebastianbergmann/type.git",
  10929. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10930. },
  10931. "dist": {
  10932. "type": "zip",
  10933. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10934. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10935. "shasum": ""
  10936. },
  10937. "require": {
  10938. "php": ">=8.1"
  10939. },
  10940. "require-dev": {
  10941. "phpunit/phpunit": "^10.0"
  10942. },
  10943. "type": "library",
  10944. "extra": {
  10945. "branch-alias": {
  10946. "dev-main": "4.0-dev"
  10947. }
  10948. },
  10949. "autoload": {
  10950. "classmap": [
  10951. "src/"
  10952. ]
  10953. },
  10954. "notification-url": "https://packagist.org/downloads/",
  10955. "license": [
  10956. "BSD-3-Clause"
  10957. ],
  10958. "authors": [
  10959. {
  10960. "name": "Sebastian Bergmann",
  10961. "email": "sebastian@phpunit.de",
  10962. "role": "lead"
  10963. }
  10964. ],
  10965. "description": "Collection of value objects that represent the types of the PHP type system",
  10966. "homepage": "https://github.com/sebastianbergmann/type",
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/type/issues",
  10969. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://github.com/sebastianbergmann",
  10974. "type": "github"
  10975. }
  10976. ],
  10977. "time": "2023-02-03T07:10:45+00:00"
  10978. },
  10979. {
  10980. "name": "sebastian/version",
  10981. "version": "4.0.1",
  10982. "source": {
  10983. "type": "git",
  10984. "url": "https://github.com/sebastianbergmann/version.git",
  10985. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10986. },
  10987. "dist": {
  10988. "type": "zip",
  10989. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10990. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10991. "shasum": ""
  10992. },
  10993. "require": {
  10994. "php": ">=8.1"
  10995. },
  10996. "type": "library",
  10997. "extra": {
  10998. "branch-alias": {
  10999. "dev-main": "4.0-dev"
  11000. }
  11001. },
  11002. "autoload": {
  11003. "classmap": [
  11004. "src/"
  11005. ]
  11006. },
  11007. "notification-url": "https://packagist.org/downloads/",
  11008. "license": [
  11009. "BSD-3-Clause"
  11010. ],
  11011. "authors": [
  11012. {
  11013. "name": "Sebastian Bergmann",
  11014. "email": "sebastian@phpunit.de",
  11015. "role": "lead"
  11016. }
  11017. ],
  11018. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11019. "homepage": "https://github.com/sebastianbergmann/version",
  11020. "support": {
  11021. "issues": "https://github.com/sebastianbergmann/version/issues",
  11022. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11023. },
  11024. "funding": [
  11025. {
  11026. "url": "https://github.com/sebastianbergmann",
  11027. "type": "github"
  11028. }
  11029. ],
  11030. "time": "2023-02-07T11:34:05+00:00"
  11031. },
  11032. {
  11033. "name": "swoole/ide-helper",
  11034. "version": "5.1.5",
  11035. "source": {
  11036. "type": "git",
  11037. "url": "https://github.com/swoole/ide-helper.git",
  11038. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  11039. },
  11040. "dist": {
  11041. "type": "zip",
  11042. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  11043. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  11044. "shasum": ""
  11045. },
  11046. "type": "library",
  11047. "notification-url": "https://packagist.org/downloads/",
  11048. "license": [
  11049. "Apache-2.0"
  11050. ],
  11051. "authors": [
  11052. {
  11053. "name": "Team Swoole",
  11054. "email": "team@swoole.com"
  11055. }
  11056. ],
  11057. "description": "IDE help files for Swoole.",
  11058. "support": {
  11059. "issues": "https://github.com/swoole/ide-helper/issues",
  11060. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  11061. },
  11062. "time": "2024-11-05T07:35:30+00:00"
  11063. },
  11064. {
  11065. "name": "symfony/event-dispatcher",
  11066. "version": "v6.4.13",
  11067. "source": {
  11068. "type": "git",
  11069. "url": "https://github.com/symfony/event-dispatcher.git",
  11070. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11071. },
  11072. "dist": {
  11073. "type": "zip",
  11074. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11075. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11076. "shasum": ""
  11077. },
  11078. "require": {
  11079. "php": ">=8.1",
  11080. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11081. },
  11082. "conflict": {
  11083. "symfony/dependency-injection": "<5.4",
  11084. "symfony/service-contracts": "<2.5"
  11085. },
  11086. "provide": {
  11087. "psr/event-dispatcher-implementation": "1.0",
  11088. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11089. },
  11090. "require-dev": {
  11091. "psr/log": "^1|^2|^3",
  11092. "symfony/config": "^5.4|^6.0|^7.0",
  11093. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11094. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11095. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11096. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11097. "symfony/service-contracts": "^2.5|^3",
  11098. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11099. },
  11100. "type": "library",
  11101. "autoload": {
  11102. "psr-4": {
  11103. "Symfony\\Component\\EventDispatcher\\": ""
  11104. },
  11105. "exclude-from-classmap": [
  11106. "/Tests/"
  11107. ]
  11108. },
  11109. "notification-url": "https://packagist.org/downloads/",
  11110. "license": [
  11111. "MIT"
  11112. ],
  11113. "authors": [
  11114. {
  11115. "name": "Fabien Potencier",
  11116. "email": "fabien@symfony.com"
  11117. },
  11118. {
  11119. "name": "Symfony Community",
  11120. "homepage": "https://symfony.com/contributors"
  11121. }
  11122. ],
  11123. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11124. "homepage": "https://symfony.com",
  11125. "support": {
  11126. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11127. },
  11128. "funding": [
  11129. {
  11130. "url": "https://symfony.com/sponsor",
  11131. "type": "custom"
  11132. },
  11133. {
  11134. "url": "https://github.com/fabpot",
  11135. "type": "github"
  11136. },
  11137. {
  11138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11139. "type": "tidelift"
  11140. }
  11141. ],
  11142. "time": "2024-09-25T14:18:03+00:00"
  11143. },
  11144. {
  11145. "name": "symfony/event-dispatcher-contracts",
  11146. "version": "v3.5.0",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11150. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11155. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "php": ">=8.1",
  11160. "psr/event-dispatcher": "^1"
  11161. },
  11162. "type": "library",
  11163. "extra": {
  11164. "branch-alias": {
  11165. "dev-main": "3.5-dev"
  11166. },
  11167. "thanks": {
  11168. "name": "symfony/contracts",
  11169. "url": "https://github.com/symfony/contracts"
  11170. }
  11171. },
  11172. "autoload": {
  11173. "psr-4": {
  11174. "Symfony\\Contracts\\EventDispatcher\\": ""
  11175. }
  11176. },
  11177. "notification-url": "https://packagist.org/downloads/",
  11178. "license": [
  11179. "MIT"
  11180. ],
  11181. "authors": [
  11182. {
  11183. "name": "Nicolas Grekas",
  11184. "email": "p@tchwork.com"
  11185. },
  11186. {
  11187. "name": "Symfony Community",
  11188. "homepage": "https://symfony.com/contributors"
  11189. }
  11190. ],
  11191. "description": "Generic abstractions related to dispatching event",
  11192. "homepage": "https://symfony.com",
  11193. "keywords": [
  11194. "abstractions",
  11195. "contracts",
  11196. "decoupling",
  11197. "interfaces",
  11198. "interoperability",
  11199. "standards"
  11200. ],
  11201. "support": {
  11202. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11203. },
  11204. "funding": [
  11205. {
  11206. "url": "https://symfony.com/sponsor",
  11207. "type": "custom"
  11208. },
  11209. {
  11210. "url": "https://github.com/fabpot",
  11211. "type": "github"
  11212. },
  11213. {
  11214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11215. "type": "tidelift"
  11216. }
  11217. ],
  11218. "time": "2024-04-18T09:32:20+00:00"
  11219. },
  11220. {
  11221. "name": "symfony/filesystem",
  11222. "version": "v6.4.13",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/symfony/filesystem.git",
  11226. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11231. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11232. "shasum": ""
  11233. },
  11234. "require": {
  11235. "php": ">=8.1",
  11236. "symfony/polyfill-ctype": "~1.8",
  11237. "symfony/polyfill-mbstring": "~1.8"
  11238. },
  11239. "require-dev": {
  11240. "symfony/process": "^5.4|^6.4|^7.0"
  11241. },
  11242. "type": "library",
  11243. "autoload": {
  11244. "psr-4": {
  11245. "Symfony\\Component\\Filesystem\\": ""
  11246. },
  11247. "exclude-from-classmap": [
  11248. "/Tests/"
  11249. ]
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "MIT"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Fabien Potencier",
  11258. "email": "fabien@symfony.com"
  11259. },
  11260. {
  11261. "name": "Symfony Community",
  11262. "homepage": "https://symfony.com/contributors"
  11263. }
  11264. ],
  11265. "description": "Provides basic utilities for the filesystem",
  11266. "homepage": "https://symfony.com",
  11267. "support": {
  11268. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  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-10-25T15:07:50+00:00"
  11285. },
  11286. {
  11287. "name": "symfony/http-foundation",
  11288. "version": "v6.4.14",
  11289. "source": {
  11290. "type": "git",
  11291. "url": "https://github.com/symfony/http-foundation.git",
  11292. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  11293. },
  11294. "dist": {
  11295. "type": "zip",
  11296. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  11297. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  11298. "shasum": ""
  11299. },
  11300. "require": {
  11301. "php": ">=8.1",
  11302. "symfony/deprecation-contracts": "^2.5|^3",
  11303. "symfony/polyfill-mbstring": "~1.1",
  11304. "symfony/polyfill-php83": "^1.27"
  11305. },
  11306. "conflict": {
  11307. "symfony/cache": "<6.3"
  11308. },
  11309. "require-dev": {
  11310. "doctrine/dbal": "^2.13.1|^3|^4",
  11311. "predis/predis": "^1.1|^2.0",
  11312. "symfony/cache": "^6.3|^7.0",
  11313. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11314. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11315. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11316. "symfony/mime": "^5.4|^6.0|^7.0",
  11317. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11318. },
  11319. "type": "library",
  11320. "autoload": {
  11321. "psr-4": {
  11322. "Symfony\\Component\\HttpFoundation\\": ""
  11323. },
  11324. "exclude-from-classmap": [
  11325. "/Tests/"
  11326. ]
  11327. },
  11328. "notification-url": "https://packagist.org/downloads/",
  11329. "license": [
  11330. "MIT"
  11331. ],
  11332. "authors": [
  11333. {
  11334. "name": "Fabien Potencier",
  11335. "email": "fabien@symfony.com"
  11336. },
  11337. {
  11338. "name": "Symfony Community",
  11339. "homepage": "https://symfony.com/contributors"
  11340. }
  11341. ],
  11342. "description": "Defines an object-oriented layer for the HTTP specification",
  11343. "homepage": "https://symfony.com",
  11344. "support": {
  11345. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  11346. },
  11347. "funding": [
  11348. {
  11349. "url": "https://symfony.com/sponsor",
  11350. "type": "custom"
  11351. },
  11352. {
  11353. "url": "https://github.com/fabpot",
  11354. "type": "github"
  11355. },
  11356. {
  11357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11358. "type": "tidelift"
  11359. }
  11360. ],
  11361. "time": "2024-11-05T16:39:55+00:00"
  11362. },
  11363. {
  11364. "name": "symfony/options-resolver",
  11365. "version": "v6.4.13",
  11366. "source": {
  11367. "type": "git",
  11368. "url": "https://github.com/symfony/options-resolver.git",
  11369. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11370. },
  11371. "dist": {
  11372. "type": "zip",
  11373. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11374. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11375. "shasum": ""
  11376. },
  11377. "require": {
  11378. "php": ">=8.1",
  11379. "symfony/deprecation-contracts": "^2.5|^3"
  11380. },
  11381. "type": "library",
  11382. "autoload": {
  11383. "psr-4": {
  11384. "Symfony\\Component\\OptionsResolver\\": ""
  11385. },
  11386. "exclude-from-classmap": [
  11387. "/Tests/"
  11388. ]
  11389. },
  11390. "notification-url": "https://packagist.org/downloads/",
  11391. "license": [
  11392. "MIT"
  11393. ],
  11394. "authors": [
  11395. {
  11396. "name": "Fabien Potencier",
  11397. "email": "fabien@symfony.com"
  11398. },
  11399. {
  11400. "name": "Symfony Community",
  11401. "homepage": "https://symfony.com/contributors"
  11402. }
  11403. ],
  11404. "description": "Provides an improved replacement for the array_replace PHP function",
  11405. "homepage": "https://symfony.com",
  11406. "keywords": [
  11407. "config",
  11408. "configuration",
  11409. "options"
  11410. ],
  11411. "support": {
  11412. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11413. },
  11414. "funding": [
  11415. {
  11416. "url": "https://symfony.com/sponsor",
  11417. "type": "custom"
  11418. },
  11419. {
  11420. "url": "https://github.com/fabpot",
  11421. "type": "github"
  11422. },
  11423. {
  11424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11425. "type": "tidelift"
  11426. }
  11427. ],
  11428. "time": "2024-09-25T14:18:03+00:00"
  11429. },
  11430. {
  11431. "name": "symfony/polyfill-php81",
  11432. "version": "v1.31.0",
  11433. "source": {
  11434. "type": "git",
  11435. "url": "https://github.com/symfony/polyfill-php81.git",
  11436. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11437. },
  11438. "dist": {
  11439. "type": "zip",
  11440. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11441. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11442. "shasum": ""
  11443. },
  11444. "require": {
  11445. "php": ">=7.2"
  11446. },
  11447. "type": "library",
  11448. "extra": {
  11449. "thanks": {
  11450. "name": "symfony/polyfill",
  11451. "url": "https://github.com/symfony/polyfill"
  11452. }
  11453. },
  11454. "autoload": {
  11455. "files": [
  11456. "bootstrap.php"
  11457. ],
  11458. "psr-4": {
  11459. "Symfony\\Polyfill\\Php81\\": ""
  11460. },
  11461. "classmap": [
  11462. "Resources/stubs"
  11463. ]
  11464. },
  11465. "notification-url": "https://packagist.org/downloads/",
  11466. "license": [
  11467. "MIT"
  11468. ],
  11469. "authors": [
  11470. {
  11471. "name": "Nicolas Grekas",
  11472. "email": "p@tchwork.com"
  11473. },
  11474. {
  11475. "name": "Symfony Community",
  11476. "homepage": "https://symfony.com/contributors"
  11477. }
  11478. ],
  11479. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11480. "homepage": "https://symfony.com",
  11481. "keywords": [
  11482. "compatibility",
  11483. "polyfill",
  11484. "portable",
  11485. "shim"
  11486. ],
  11487. "support": {
  11488. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11489. },
  11490. "funding": [
  11491. {
  11492. "url": "https://symfony.com/sponsor",
  11493. "type": "custom"
  11494. },
  11495. {
  11496. "url": "https://github.com/fabpot",
  11497. "type": "github"
  11498. },
  11499. {
  11500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11501. "type": "tidelift"
  11502. }
  11503. ],
  11504. "time": "2024-09-09T11:45:10+00:00"
  11505. },
  11506. {
  11507. "name": "symfony/polyfill-php83",
  11508. "version": "v1.31.0",
  11509. "source": {
  11510. "type": "git",
  11511. "url": "https://github.com/symfony/polyfill-php83.git",
  11512. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11513. },
  11514. "dist": {
  11515. "type": "zip",
  11516. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11517. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11518. "shasum": ""
  11519. },
  11520. "require": {
  11521. "php": ">=7.2"
  11522. },
  11523. "type": "library",
  11524. "extra": {
  11525. "thanks": {
  11526. "name": "symfony/polyfill",
  11527. "url": "https://github.com/symfony/polyfill"
  11528. }
  11529. },
  11530. "autoload": {
  11531. "files": [
  11532. "bootstrap.php"
  11533. ],
  11534. "psr-4": {
  11535. "Symfony\\Polyfill\\Php83\\": ""
  11536. },
  11537. "classmap": [
  11538. "Resources/stubs"
  11539. ]
  11540. },
  11541. "notification-url": "https://packagist.org/downloads/",
  11542. "license": [
  11543. "MIT"
  11544. ],
  11545. "authors": [
  11546. {
  11547. "name": "Nicolas Grekas",
  11548. "email": "p@tchwork.com"
  11549. },
  11550. {
  11551. "name": "Symfony Community",
  11552. "homepage": "https://symfony.com/contributors"
  11553. }
  11554. ],
  11555. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11556. "homepage": "https://symfony.com",
  11557. "keywords": [
  11558. "compatibility",
  11559. "polyfill",
  11560. "portable",
  11561. "shim"
  11562. ],
  11563. "support": {
  11564. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11565. },
  11566. "funding": [
  11567. {
  11568. "url": "https://symfony.com/sponsor",
  11569. "type": "custom"
  11570. },
  11571. {
  11572. "url": "https://github.com/fabpot",
  11573. "type": "github"
  11574. },
  11575. {
  11576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11577. "type": "tidelift"
  11578. }
  11579. ],
  11580. "time": "2024-09-09T11:45:10+00:00"
  11581. },
  11582. {
  11583. "name": "symfony/process",
  11584. "version": "v6.4.14",
  11585. "source": {
  11586. "type": "git",
  11587. "url": "https://github.com/symfony/process.git",
  11588. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  11589. },
  11590. "dist": {
  11591. "type": "zip",
  11592. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  11593. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  11594. "shasum": ""
  11595. },
  11596. "require": {
  11597. "php": ">=8.1"
  11598. },
  11599. "type": "library",
  11600. "autoload": {
  11601. "psr-4": {
  11602. "Symfony\\Component\\Process\\": ""
  11603. },
  11604. "exclude-from-classmap": [
  11605. "/Tests/"
  11606. ]
  11607. },
  11608. "notification-url": "https://packagist.org/downloads/",
  11609. "license": [
  11610. "MIT"
  11611. ],
  11612. "authors": [
  11613. {
  11614. "name": "Fabien Potencier",
  11615. "email": "fabien@symfony.com"
  11616. },
  11617. {
  11618. "name": "Symfony Community",
  11619. "homepage": "https://symfony.com/contributors"
  11620. }
  11621. ],
  11622. "description": "Executes commands in sub-processes",
  11623. "homepage": "https://symfony.com",
  11624. "support": {
  11625. "source": "https://github.com/symfony/process/tree/v6.4.14"
  11626. },
  11627. "funding": [
  11628. {
  11629. "url": "https://symfony.com/sponsor",
  11630. "type": "custom"
  11631. },
  11632. {
  11633. "url": "https://github.com/fabpot",
  11634. "type": "github"
  11635. },
  11636. {
  11637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11638. "type": "tidelift"
  11639. }
  11640. ],
  11641. "time": "2024-11-06T09:25:01+00:00"
  11642. },
  11643. {
  11644. "name": "symfony/stopwatch",
  11645. "version": "v6.4.13",
  11646. "source": {
  11647. "type": "git",
  11648. "url": "https://github.com/symfony/stopwatch.git",
  11649. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11650. },
  11651. "dist": {
  11652. "type": "zip",
  11653. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11654. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11655. "shasum": ""
  11656. },
  11657. "require": {
  11658. "php": ">=8.1",
  11659. "symfony/service-contracts": "^2.5|^3"
  11660. },
  11661. "type": "library",
  11662. "autoload": {
  11663. "psr-4": {
  11664. "Symfony\\Component\\Stopwatch\\": ""
  11665. },
  11666. "exclude-from-classmap": [
  11667. "/Tests/"
  11668. ]
  11669. },
  11670. "notification-url": "https://packagist.org/downloads/",
  11671. "license": [
  11672. "MIT"
  11673. ],
  11674. "authors": [
  11675. {
  11676. "name": "Fabien Potencier",
  11677. "email": "fabien@symfony.com"
  11678. },
  11679. {
  11680. "name": "Symfony Community",
  11681. "homepage": "https://symfony.com/contributors"
  11682. }
  11683. ],
  11684. "description": "Provides a way to profile code",
  11685. "homepage": "https://symfony.com",
  11686. "support": {
  11687. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11688. },
  11689. "funding": [
  11690. {
  11691. "url": "https://symfony.com/sponsor",
  11692. "type": "custom"
  11693. },
  11694. {
  11695. "url": "https://github.com/fabpot",
  11696. "type": "github"
  11697. },
  11698. {
  11699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11700. "type": "tidelift"
  11701. }
  11702. ],
  11703. "time": "2024-09-25T14:18:03+00:00"
  11704. },
  11705. {
  11706. "name": "theseer/tokenizer",
  11707. "version": "1.2.3",
  11708. "source": {
  11709. "type": "git",
  11710. "url": "https://github.com/theseer/tokenizer.git",
  11711. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11712. },
  11713. "dist": {
  11714. "type": "zip",
  11715. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11716. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11717. "shasum": ""
  11718. },
  11719. "require": {
  11720. "ext-dom": "*",
  11721. "ext-tokenizer": "*",
  11722. "ext-xmlwriter": "*",
  11723. "php": "^7.2 || ^8.0"
  11724. },
  11725. "type": "library",
  11726. "autoload": {
  11727. "classmap": [
  11728. "src/"
  11729. ]
  11730. },
  11731. "notification-url": "https://packagist.org/downloads/",
  11732. "license": [
  11733. "BSD-3-Clause"
  11734. ],
  11735. "authors": [
  11736. {
  11737. "name": "Arne Blankerts",
  11738. "email": "arne@blankerts.de",
  11739. "role": "Developer"
  11740. }
  11741. ],
  11742. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11743. "support": {
  11744. "issues": "https://github.com/theseer/tokenizer/issues",
  11745. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11746. },
  11747. "funding": [
  11748. {
  11749. "url": "https://github.com/theseer",
  11750. "type": "github"
  11751. }
  11752. ],
  11753. "time": "2024-03-03T12:36:25+00:00"
  11754. },
  11755. {
  11756. "name": "zx/php-tools",
  11757. "version": "v0.0.1",
  11758. "source": {
  11759. "type": "git",
  11760. "url": "https://gitee.com/open-php/php-tools.git",
  11761. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11762. },
  11763. "require": {
  11764. "php": ">=7.0"
  11765. },
  11766. "type": "library",
  11767. "autoload": {
  11768. "psr-4": {
  11769. "ZX\\": "src/"
  11770. }
  11771. },
  11772. "notification-url": "https://packagist.org/downloads/",
  11773. "license": [
  11774. "mit"
  11775. ],
  11776. "authors": [
  11777. {
  11778. "name": "zx",
  11779. "email": "903464207@qq.com"
  11780. }
  11781. ],
  11782. "description": "php-tools",
  11783. "time": "2023-06-25T06:24:10+00:00"
  11784. }
  11785. ],
  11786. "aliases": [],
  11787. "minimum-stability": "dev",
  11788. "stability-flags": [],
  11789. "prefer-stable": true,
  11790. "prefer-lowest": false,
  11791. "platform": {
  11792. "php": ">=8.1"
  11793. },
  11794. "platform-dev": [],
  11795. "plugin-api-version": "2.6.0"
  11796. }