composer.lock 434 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243
  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": "1720e871d24f37be6d7a2842f61de2fc",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.336.6",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "0a99dab427f0a1c082775301141aeac3558691ad"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0a99dab427f0a1c082775301141aeac3558691ad",
  74. "reference": "0a99dab427f0a1c082775301141aeac3558691ad",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=7.2.5",
  87. "psr/http-message": "^1.0 || ^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^1.10.22",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "nette/neon": "^2.3",
  101. "paragonie/random_compat": ">= 2",
  102. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  103. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  104. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. },
  128. "exclude-from-classmap": [
  129. "src/data/"
  130. ]
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "Apache-2.0"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Amazon Web Services",
  139. "homepage": "http://aws.amazon.com"
  140. }
  141. ],
  142. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  143. "homepage": "http://aws.amazon.com/sdkforphp",
  144. "keywords": [
  145. "amazon",
  146. "aws",
  147. "cloud",
  148. "dynamodb",
  149. "ec2",
  150. "glacier",
  151. "s3",
  152. "sdk"
  153. ],
  154. "support": {
  155. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  156. "issues": "https://github.com/aws/aws-sdk-php/issues",
  157. "source": "https://github.com/aws/aws-sdk-php/tree/3.336.6"
  158. },
  159. "time": "2024-12-28T04:16:13+00:00"
  160. },
  161. {
  162. "name": "carbonphp/carbon-doctrine-types",
  163. "version": "3.2.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  167. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  172. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": "^8.1"
  177. },
  178. "conflict": {
  179. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  180. },
  181. "require-dev": {
  182. "doctrine/dbal": "^4.0.0",
  183. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  184. "phpunit/phpunit": "^10.3"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "psr-4": {
  189. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "KyleKatarn",
  199. "email": "kylekatarnls@gmail.com"
  200. }
  201. ],
  202. "description": "Types to use Carbon in Doctrine",
  203. "keywords": [
  204. "carbon",
  205. "date",
  206. "datetime",
  207. "doctrine",
  208. "time"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  212. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  213. },
  214. "funding": [
  215. {
  216. "url": "https://github.com/kylekatarnls",
  217. "type": "github"
  218. },
  219. {
  220. "url": "https://opencollective.com/Carbon",
  221. "type": "open_collective"
  222. },
  223. {
  224. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  225. "type": "tidelift"
  226. }
  227. ],
  228. "time": "2024-02-09T16:56:22+00:00"
  229. },
  230. {
  231. "name": "death_satan/hyperf-validate",
  232. "version": "v3.71",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  236. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  241. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "hyperf/config": "~3.0",
  246. "hyperf/db-connection": "~3.0",
  247. "hyperf/di": "~3.0",
  248. "hyperf/framework": "~3.0",
  249. "hyperf/validation": "~3.0",
  250. "php": ">=8.0"
  251. },
  252. "require-dev": {
  253. "friendsofphp/php-cs-fixer": "^3.0",
  254. "hyperf/testing": "~3.0",
  255. "mockery/mockery": "^1.0",
  256. "phpstan/phpstan": "^1.0",
  257. "swoole/ide-helper": "^4.5"
  258. },
  259. "suggest": {
  260. "swow/swow": "Required to create swow components."
  261. },
  262. "type": "library",
  263. "extra": {
  264. "hyperf": {
  265. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  266. }
  267. },
  268. "autoload": {
  269. "psr-4": {
  270. "DeathSatan\\Hyperf\\Validate\\": "src/"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "description": "Hyperf Validate",
  278. "keywords": [
  279. "hyperf",
  280. "php",
  281. "validate"
  282. ],
  283. "support": {
  284. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  285. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  286. },
  287. "time": "2023-04-03T17:22:13+00:00"
  288. },
  289. {
  290. "name": "doctrine/annotations",
  291. "version": "2.0.2",
  292. "source": {
  293. "type": "git",
  294. "url": "https://github.com/doctrine/annotations.git",
  295. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  296. },
  297. "dist": {
  298. "type": "zip",
  299. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  300. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  301. "shasum": ""
  302. },
  303. "require": {
  304. "doctrine/lexer": "^2 || ^3",
  305. "ext-tokenizer": "*",
  306. "php": "^7.2 || ^8.0",
  307. "psr/cache": "^1 || ^2 || ^3"
  308. },
  309. "require-dev": {
  310. "doctrine/cache": "^2.0",
  311. "doctrine/coding-standard": "^10",
  312. "phpstan/phpstan": "^1.10.28",
  313. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  314. "symfony/cache": "^5.4 || ^6.4 || ^7",
  315. "vimeo/psalm": "^4.30 || ^5.14"
  316. },
  317. "suggest": {
  318. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  319. },
  320. "type": "library",
  321. "autoload": {
  322. "psr-4": {
  323. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  324. }
  325. },
  326. "notification-url": "https://packagist.org/downloads/",
  327. "license": [
  328. "MIT"
  329. ],
  330. "authors": [
  331. {
  332. "name": "Guilherme Blanco",
  333. "email": "guilhermeblanco@gmail.com"
  334. },
  335. {
  336. "name": "Roman Borschel",
  337. "email": "roman@code-factory.org"
  338. },
  339. {
  340. "name": "Benjamin Eberlei",
  341. "email": "kontakt@beberlei.de"
  342. },
  343. {
  344. "name": "Jonathan Wage",
  345. "email": "jonwage@gmail.com"
  346. },
  347. {
  348. "name": "Johannes Schmitt",
  349. "email": "schmittjoh@gmail.com"
  350. }
  351. ],
  352. "description": "Docblock Annotations Parser",
  353. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  354. "keywords": [
  355. "annotations",
  356. "docblock",
  357. "parser"
  358. ],
  359. "support": {
  360. "issues": "https://github.com/doctrine/annotations/issues",
  361. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  362. },
  363. "time": "2024-09-05T10:17:24+00:00"
  364. },
  365. {
  366. "name": "doctrine/deprecations",
  367. "version": "1.1.4",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/doctrine/deprecations.git",
  371. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  376. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "php": "^7.1 || ^8.0"
  381. },
  382. "require-dev": {
  383. "doctrine/coding-standard": "^9 || ^12",
  384. "phpstan/phpstan": "1.4.10 || 2.0.3",
  385. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  386. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  387. "psr/log": "^1 || ^2 || ^3"
  388. },
  389. "suggest": {
  390. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "Doctrine\\Deprecations\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "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.",
  403. "homepage": "https://www.doctrine-project.org/",
  404. "support": {
  405. "issues": "https://github.com/doctrine/deprecations/issues",
  406. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  407. },
  408. "time": "2024-12-07T21:18:45+00:00"
  409. },
  410. {
  411. "name": "doctrine/inflector",
  412. "version": "2.0.10",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/doctrine/inflector.git",
  416. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  421. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": "^7.2 || ^8.0"
  426. },
  427. "require-dev": {
  428. "doctrine/coding-standard": "^11.0",
  429. "phpstan/phpstan": "^1.8",
  430. "phpstan/phpstan-phpunit": "^1.1",
  431. "phpstan/phpstan-strict-rules": "^1.3",
  432. "phpunit/phpunit": "^8.5 || ^9.5",
  433. "vimeo/psalm": "^4.25 || ^5.4"
  434. },
  435. "type": "library",
  436. "autoload": {
  437. "psr-4": {
  438. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  439. }
  440. },
  441. "notification-url": "https://packagist.org/downloads/",
  442. "license": [
  443. "MIT"
  444. ],
  445. "authors": [
  446. {
  447. "name": "Guilherme Blanco",
  448. "email": "guilhermeblanco@gmail.com"
  449. },
  450. {
  451. "name": "Roman Borschel",
  452. "email": "roman@code-factory.org"
  453. },
  454. {
  455. "name": "Benjamin Eberlei",
  456. "email": "kontakt@beberlei.de"
  457. },
  458. {
  459. "name": "Jonathan Wage",
  460. "email": "jonwage@gmail.com"
  461. },
  462. {
  463. "name": "Johannes Schmitt",
  464. "email": "schmittjoh@gmail.com"
  465. }
  466. ],
  467. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  468. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  469. "keywords": [
  470. "inflection",
  471. "inflector",
  472. "lowercase",
  473. "manipulation",
  474. "php",
  475. "plural",
  476. "singular",
  477. "strings",
  478. "uppercase",
  479. "words"
  480. ],
  481. "support": {
  482. "issues": "https://github.com/doctrine/inflector/issues",
  483. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  484. },
  485. "funding": [
  486. {
  487. "url": "https://www.doctrine-project.org/sponsorship.html",
  488. "type": "custom"
  489. },
  490. {
  491. "url": "https://www.patreon.com/phpdoctrine",
  492. "type": "patreon"
  493. },
  494. {
  495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  496. "type": "tidelift"
  497. }
  498. ],
  499. "time": "2024-02-18T20:23:39+00:00"
  500. },
  501. {
  502. "name": "doctrine/instantiator",
  503. "version": "1.5.0",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/doctrine/instantiator.git",
  507. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  512. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  513. "shasum": ""
  514. },
  515. "require": {
  516. "php": "^7.1 || ^8.0"
  517. },
  518. "require-dev": {
  519. "doctrine/coding-standard": "^9 || ^11",
  520. "ext-pdo": "*",
  521. "ext-phar": "*",
  522. "phpbench/phpbench": "^0.16 || ^1",
  523. "phpstan/phpstan": "^1.4",
  524. "phpstan/phpstan-phpunit": "^1",
  525. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  526. "vimeo/psalm": "^4.30 || ^5.4"
  527. },
  528. "type": "library",
  529. "autoload": {
  530. "psr-4": {
  531. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  532. }
  533. },
  534. "notification-url": "https://packagist.org/downloads/",
  535. "license": [
  536. "MIT"
  537. ],
  538. "authors": [
  539. {
  540. "name": "Marco Pivetta",
  541. "email": "ocramius@gmail.com",
  542. "homepage": "https://ocramius.github.io/"
  543. }
  544. ],
  545. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  546. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  547. "keywords": [
  548. "constructor",
  549. "instantiate"
  550. ],
  551. "support": {
  552. "issues": "https://github.com/doctrine/instantiator/issues",
  553. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  554. },
  555. "funding": [
  556. {
  557. "url": "https://www.doctrine-project.org/sponsorship.html",
  558. "type": "custom"
  559. },
  560. {
  561. "url": "https://www.patreon.com/phpdoctrine",
  562. "type": "patreon"
  563. },
  564. {
  565. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  566. "type": "tidelift"
  567. }
  568. ],
  569. "time": "2022-12-30T00:15:36+00:00"
  570. },
  571. {
  572. "name": "doctrine/lexer",
  573. "version": "2.1.1",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/doctrine/lexer.git",
  577. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  582. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "doctrine/deprecations": "^1.0",
  587. "php": "^7.1 || ^8.0"
  588. },
  589. "require-dev": {
  590. "doctrine/coding-standard": "^9 || ^12",
  591. "phpstan/phpstan": "^1.3",
  592. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  593. "psalm/plugin-phpunit": "^0.18.3",
  594. "vimeo/psalm": "^4.11 || ^5.21"
  595. },
  596. "type": "library",
  597. "autoload": {
  598. "psr-4": {
  599. "Doctrine\\Common\\Lexer\\": "src"
  600. }
  601. },
  602. "notification-url": "https://packagist.org/downloads/",
  603. "license": [
  604. "MIT"
  605. ],
  606. "authors": [
  607. {
  608. "name": "Guilherme Blanco",
  609. "email": "guilhermeblanco@gmail.com"
  610. },
  611. {
  612. "name": "Roman Borschel",
  613. "email": "roman@code-factory.org"
  614. },
  615. {
  616. "name": "Johannes Schmitt",
  617. "email": "schmittjoh@gmail.com"
  618. }
  619. ],
  620. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  621. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  622. "keywords": [
  623. "annotations",
  624. "docblock",
  625. "lexer",
  626. "parser",
  627. "php"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/doctrine/lexer/issues",
  631. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  632. },
  633. "funding": [
  634. {
  635. "url": "https://www.doctrine-project.org/sponsorship.html",
  636. "type": "custom"
  637. },
  638. {
  639. "url": "https://www.patreon.com/phpdoctrine",
  640. "type": "patreon"
  641. },
  642. {
  643. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  644. "type": "tidelift"
  645. }
  646. ],
  647. "time": "2024-02-05T11:35:39+00:00"
  648. },
  649. {
  650. "name": "easyswoole/spl",
  651. "version": "2.1.3",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/easy-swoole/spl.git",
  655. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  660. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "ext-dom": "*",
  665. "ext-json": "*",
  666. "ext-simplexml": "*",
  667. "php": ">=8.1.0"
  668. },
  669. "require-dev": {
  670. "easyswoole/phpunit": "^1.0",
  671. "easyswoole/swoole-ide-helper": "^1.0"
  672. },
  673. "type": "library",
  674. "autoload": {
  675. "psr-4": {
  676. "EasySwoole\\Spl\\": "src/",
  677. "EasySwoole\\Spl\\Test\\": "test/"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "Apache-2.0"
  683. ],
  684. "authors": [
  685. {
  686. "name": "YF",
  687. "email": "291323003@qq.com"
  688. }
  689. ],
  690. "description": "php stander lib",
  691. "homepage": "https://www.easyswoole.com/",
  692. "keywords": [
  693. "async",
  694. "easyswoole",
  695. "framework",
  696. "swoole"
  697. ],
  698. "support": {
  699. "issues": "https://github.com/easy-swoole/spl/issues",
  700. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  701. },
  702. "time": "2024-07-09T14:44:25+00:00"
  703. },
  704. {
  705. "name": "easyswoole/verifycode",
  706. "version": "3.1.2",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/easy-swoole/verify-code.git",
  710. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  715. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  716. "shasum": ""
  717. },
  718. "require": {
  719. "easyswoole/spl": "^2.0",
  720. "ext-gd": "*",
  721. "php": ">=8.1"
  722. },
  723. "type": "library",
  724. "autoload": {
  725. "psr-4": {
  726. "EasySwoole\\VerifyCode\\": "src"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "Apache-2.0"
  732. ],
  733. "authors": [
  734. {
  735. "name": "YF",
  736. "email": "291323003@qq.com"
  737. },
  738. {
  739. "name": "evalor",
  740. "email": "mipone@foxmail.com"
  741. }
  742. ],
  743. "support": {
  744. "issues": "https://github.com/easy-swoole/verify-code/issues",
  745. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  746. },
  747. "time": "2023-09-06T06:45:56+00:00"
  748. },
  749. {
  750. "name": "egulias/email-validator",
  751. "version": "3.2.6",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/egulias/EmailValidator.git",
  755. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  760. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "doctrine/lexer": "^1.2|^2",
  765. "php": ">=7.2",
  766. "symfony/polyfill-intl-idn": "^1.15"
  767. },
  768. "require-dev": {
  769. "phpunit/phpunit": "^8.5.8|^9.3.3",
  770. "vimeo/psalm": "^4"
  771. },
  772. "suggest": {
  773. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "branch-alias": {
  778. "dev-master": "3.0.x-dev"
  779. }
  780. },
  781. "autoload": {
  782. "psr-4": {
  783. "Egulias\\EmailValidator\\": "src"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Eduardo Gulias Davis"
  793. }
  794. ],
  795. "description": "A library for validating emails against several RFCs",
  796. "homepage": "https://github.com/egulias/EmailValidator",
  797. "keywords": [
  798. "email",
  799. "emailvalidation",
  800. "emailvalidator",
  801. "validation",
  802. "validator"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/egulias/EmailValidator/issues",
  806. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/egulias",
  811. "type": "github"
  812. }
  813. ],
  814. "time": "2023-06-01T07:04:22+00:00"
  815. },
  816. {
  817. "name": "fig/http-message-util",
  818. "version": "1.1.5",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/php-fig/http-message-util.git",
  822. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  827. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "php": "^5.3 || ^7.0 || ^8.0"
  832. },
  833. "suggest": {
  834. "psr/http-message": "The package containing the PSR-7 interfaces"
  835. },
  836. "type": "library",
  837. "extra": {
  838. "branch-alias": {
  839. "dev-master": "1.1.x-dev"
  840. }
  841. },
  842. "autoload": {
  843. "psr-4": {
  844. "Fig\\Http\\Message\\": "src/"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "PHP-FIG",
  854. "homepage": "https://www.php-fig.org/"
  855. }
  856. ],
  857. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  858. "keywords": [
  859. "http",
  860. "http-message",
  861. "psr",
  862. "psr-7",
  863. "request",
  864. "response"
  865. ],
  866. "support": {
  867. "issues": "https://github.com/php-fig/http-message-util/issues",
  868. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  869. },
  870. "time": "2020-11-24T22:02:12+00:00"
  871. },
  872. {
  873. "name": "friendsofhyperf/openai-client",
  874. "version": "v3.1.48",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/friendsofhyperf/openai-client.git",
  878. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/friendsofhyperf/openai-client/zipball/bf889a83edefb712381f53967c0ab71d7df5ff01",
  883. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "hyperf/config": "~3.1.0",
  888. "hyperf/di": "~3.1.0",
  889. "hyperf/guzzle": "~3.1.0",
  890. "openai-php/client": "^0.10.0",
  891. "php": ">=8.1"
  892. },
  893. "type": "library",
  894. "extra": {
  895. "hyperf": {
  896. "config": "FriendsOfHyperf\\OpenAi\\ConfigProvider"
  897. },
  898. "branch-alias": {
  899. "dev-main": "3.1-dev"
  900. }
  901. },
  902. "autoload": {
  903. "psr-4": {
  904. "FriendsOfHyperf\\OpenAi\\": "src/"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "huangdijia",
  914. "email": "huangdijia@gmail.com"
  915. }
  916. ],
  917. "description": "The openai client component for Hyperf.",
  918. "homepage": "https://github.com/friendsofhyperf/openai-client",
  919. "keywords": [
  920. "hyperf",
  921. "openai",
  922. "v3.1"
  923. ],
  924. "support": {
  925. "docs": "https://hyperf.fans",
  926. "issues": "https://github.com/friendsofhyperf/components/issues",
  927. "pull-request": "https://github.com/friendsofhyperf/components/pulls",
  928. "source": "https://github.com/friendsofhyperf/components"
  929. },
  930. "funding": [
  931. {
  932. "url": "https://hdj.me/sponsors/",
  933. "type": "custom"
  934. },
  935. {
  936. "url": "https://github.com/huangdijia",
  937. "type": "github"
  938. }
  939. ],
  940. "time": "2024-11-28T08:49:14+00:00"
  941. },
  942. {
  943. "name": "graham-campbell/result-type",
  944. "version": "v1.1.3",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  948. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  953. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": "^7.2.5 || ^8.0",
  958. "phpoption/phpoption": "^1.9.3"
  959. },
  960. "require-dev": {
  961. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  962. },
  963. "type": "library",
  964. "autoload": {
  965. "psr-4": {
  966. "GrahamCampbell\\ResultType\\": "src/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Graham Campbell",
  976. "email": "hello@gjcampbell.co.uk",
  977. "homepage": "https://github.com/GrahamCampbell"
  978. }
  979. ],
  980. "description": "An Implementation Of The Result Type",
  981. "keywords": [
  982. "Graham Campbell",
  983. "GrahamCampbell",
  984. "Result Type",
  985. "Result-Type",
  986. "result"
  987. ],
  988. "support": {
  989. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  990. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  991. },
  992. "funding": [
  993. {
  994. "url": "https://github.com/GrahamCampbell",
  995. "type": "github"
  996. },
  997. {
  998. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  999. "type": "tidelift"
  1000. }
  1001. ],
  1002. "time": "2024-07-20T21:45:45+00:00"
  1003. },
  1004. {
  1005. "name": "guzzlehttp/guzzle",
  1006. "version": "7.9.2",
  1007. "source": {
  1008. "type": "git",
  1009. "url": "https://github.com/guzzle/guzzle.git",
  1010. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1011. },
  1012. "dist": {
  1013. "type": "zip",
  1014. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1015. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1016. "shasum": ""
  1017. },
  1018. "require": {
  1019. "ext-json": "*",
  1020. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1021. "guzzlehttp/psr7": "^2.7.0",
  1022. "php": "^7.2.5 || ^8.0",
  1023. "psr/http-client": "^1.0",
  1024. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1025. },
  1026. "provide": {
  1027. "psr/http-client-implementation": "1.0"
  1028. },
  1029. "require-dev": {
  1030. "bamarni/composer-bin-plugin": "^1.8.2",
  1031. "ext-curl": "*",
  1032. "guzzle/client-integration-tests": "3.0.2",
  1033. "php-http/message-factory": "^1.1",
  1034. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1035. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1036. },
  1037. "suggest": {
  1038. "ext-curl": "Required for CURL handler support",
  1039. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1040. "psr/log": "Required for using the Log middleware"
  1041. },
  1042. "type": "library",
  1043. "extra": {
  1044. "bamarni-bin": {
  1045. "bin-links": true,
  1046. "forward-command": false
  1047. }
  1048. },
  1049. "autoload": {
  1050. "files": [
  1051. "src/functions_include.php"
  1052. ],
  1053. "psr-4": {
  1054. "GuzzleHttp\\": "src/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Graham Campbell",
  1064. "email": "hello@gjcampbell.co.uk",
  1065. "homepage": "https://github.com/GrahamCampbell"
  1066. },
  1067. {
  1068. "name": "Michael Dowling",
  1069. "email": "mtdowling@gmail.com",
  1070. "homepage": "https://github.com/mtdowling"
  1071. },
  1072. {
  1073. "name": "Jeremy Lindblom",
  1074. "email": "jeremeamia@gmail.com",
  1075. "homepage": "https://github.com/jeremeamia"
  1076. },
  1077. {
  1078. "name": "George Mponos",
  1079. "email": "gmponos@gmail.com",
  1080. "homepage": "https://github.com/gmponos"
  1081. },
  1082. {
  1083. "name": "Tobias Nyholm",
  1084. "email": "tobias.nyholm@gmail.com",
  1085. "homepage": "https://github.com/Nyholm"
  1086. },
  1087. {
  1088. "name": "Márk Sági-Kazár",
  1089. "email": "mark.sagikazar@gmail.com",
  1090. "homepage": "https://github.com/sagikazarmark"
  1091. },
  1092. {
  1093. "name": "Tobias Schultze",
  1094. "email": "webmaster@tubo-world.de",
  1095. "homepage": "https://github.com/Tobion"
  1096. }
  1097. ],
  1098. "description": "Guzzle is a PHP HTTP client library",
  1099. "keywords": [
  1100. "client",
  1101. "curl",
  1102. "framework",
  1103. "http",
  1104. "http client",
  1105. "psr-18",
  1106. "psr-7",
  1107. "rest",
  1108. "web service"
  1109. ],
  1110. "support": {
  1111. "issues": "https://github.com/guzzle/guzzle/issues",
  1112. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1113. },
  1114. "funding": [
  1115. {
  1116. "url": "https://github.com/GrahamCampbell",
  1117. "type": "github"
  1118. },
  1119. {
  1120. "url": "https://github.com/Nyholm",
  1121. "type": "github"
  1122. },
  1123. {
  1124. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1125. "type": "tidelift"
  1126. }
  1127. ],
  1128. "time": "2024-07-24T11:22:20+00:00"
  1129. },
  1130. {
  1131. "name": "guzzlehttp/promises",
  1132. "version": "2.0.4",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/guzzle/promises.git",
  1136. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1141. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "php": "^7.2.5 || ^8.0"
  1146. },
  1147. "require-dev": {
  1148. "bamarni/composer-bin-plugin": "^1.8.2",
  1149. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1150. },
  1151. "type": "library",
  1152. "extra": {
  1153. "bamarni-bin": {
  1154. "bin-links": true,
  1155. "forward-command": false
  1156. }
  1157. },
  1158. "autoload": {
  1159. "psr-4": {
  1160. "GuzzleHttp\\Promise\\": "src/"
  1161. }
  1162. },
  1163. "notification-url": "https://packagist.org/downloads/",
  1164. "license": [
  1165. "MIT"
  1166. ],
  1167. "authors": [
  1168. {
  1169. "name": "Graham Campbell",
  1170. "email": "hello@gjcampbell.co.uk",
  1171. "homepage": "https://github.com/GrahamCampbell"
  1172. },
  1173. {
  1174. "name": "Michael Dowling",
  1175. "email": "mtdowling@gmail.com",
  1176. "homepage": "https://github.com/mtdowling"
  1177. },
  1178. {
  1179. "name": "Tobias Nyholm",
  1180. "email": "tobias.nyholm@gmail.com",
  1181. "homepage": "https://github.com/Nyholm"
  1182. },
  1183. {
  1184. "name": "Tobias Schultze",
  1185. "email": "webmaster@tubo-world.de",
  1186. "homepage": "https://github.com/Tobion"
  1187. }
  1188. ],
  1189. "description": "Guzzle promises library",
  1190. "keywords": [
  1191. "promise"
  1192. ],
  1193. "support": {
  1194. "issues": "https://github.com/guzzle/promises/issues",
  1195. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1196. },
  1197. "funding": [
  1198. {
  1199. "url": "https://github.com/GrahamCampbell",
  1200. "type": "github"
  1201. },
  1202. {
  1203. "url": "https://github.com/Nyholm",
  1204. "type": "github"
  1205. },
  1206. {
  1207. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1208. "type": "tidelift"
  1209. }
  1210. ],
  1211. "time": "2024-10-17T10:06:22+00:00"
  1212. },
  1213. {
  1214. "name": "guzzlehttp/psr7",
  1215. "version": "2.7.0",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/guzzle/psr7.git",
  1219. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1224. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "php": "^7.2.5 || ^8.0",
  1229. "psr/http-factory": "^1.0",
  1230. "psr/http-message": "^1.1 || ^2.0",
  1231. "ralouphie/getallheaders": "^3.0"
  1232. },
  1233. "provide": {
  1234. "psr/http-factory-implementation": "1.0",
  1235. "psr/http-message-implementation": "1.0"
  1236. },
  1237. "require-dev": {
  1238. "bamarni/composer-bin-plugin": "^1.8.2",
  1239. "http-interop/http-factory-tests": "0.9.0",
  1240. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1241. },
  1242. "suggest": {
  1243. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "bamarni-bin": {
  1248. "bin-links": true,
  1249. "forward-command": false
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "GuzzleHttp\\Psr7\\": "src/"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Graham Campbell",
  1264. "email": "hello@gjcampbell.co.uk",
  1265. "homepage": "https://github.com/GrahamCampbell"
  1266. },
  1267. {
  1268. "name": "Michael Dowling",
  1269. "email": "mtdowling@gmail.com",
  1270. "homepage": "https://github.com/mtdowling"
  1271. },
  1272. {
  1273. "name": "George Mponos",
  1274. "email": "gmponos@gmail.com",
  1275. "homepage": "https://github.com/gmponos"
  1276. },
  1277. {
  1278. "name": "Tobias Nyholm",
  1279. "email": "tobias.nyholm@gmail.com",
  1280. "homepage": "https://github.com/Nyholm"
  1281. },
  1282. {
  1283. "name": "Márk Sági-Kazár",
  1284. "email": "mark.sagikazar@gmail.com",
  1285. "homepage": "https://github.com/sagikazarmark"
  1286. },
  1287. {
  1288. "name": "Tobias Schultze",
  1289. "email": "webmaster@tubo-world.de",
  1290. "homepage": "https://github.com/Tobion"
  1291. },
  1292. {
  1293. "name": "Márk Sági-Kazár",
  1294. "email": "mark.sagikazar@gmail.com",
  1295. "homepage": "https://sagikazarmark.hu"
  1296. }
  1297. ],
  1298. "description": "PSR-7 message implementation that also provides common utility methods",
  1299. "keywords": [
  1300. "http",
  1301. "message",
  1302. "psr-7",
  1303. "request",
  1304. "response",
  1305. "stream",
  1306. "uri",
  1307. "url"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/guzzle/psr7/issues",
  1311. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1312. },
  1313. "funding": [
  1314. {
  1315. "url": "https://github.com/GrahamCampbell",
  1316. "type": "github"
  1317. },
  1318. {
  1319. "url": "https://github.com/Nyholm",
  1320. "type": "github"
  1321. },
  1322. {
  1323. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1324. "type": "tidelift"
  1325. }
  1326. ],
  1327. "time": "2024-07-18T11:15:46+00:00"
  1328. },
  1329. {
  1330. "name": "hyperf/amqp",
  1331. "version": "v3.1.42",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/hyperf/amqp.git",
  1335. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1340. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "doctrine/instantiator": "^1.2.0",
  1345. "hyperf/codec": "~3.1.0",
  1346. "hyperf/contract": "~3.1.0",
  1347. "hyperf/coroutine": "~3.1.0",
  1348. "hyperf/pool": "~3.1.0",
  1349. "hyperf/process": "~3.1.0",
  1350. "hyperf/support": "~3.1.0",
  1351. "hyperf/utils": "~3.1.0",
  1352. "php": ">=8.1",
  1353. "php-amqplib/php-amqplib": "^3.5",
  1354. "psr/container": "^1.0 || ^2.0",
  1355. "psr/event-dispatcher": "^1.0",
  1356. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1357. },
  1358. "suggest": {
  1359. "hyperf/di": "Required to use annotations.",
  1360. "hyperf/event": "Declare queue and start consumers automatically."
  1361. },
  1362. "type": "library",
  1363. "extra": {
  1364. "branch-alias": {
  1365. "dev-master": "3.1-dev"
  1366. },
  1367. "hyperf": {
  1368. "config": "Hyperf\\Amqp\\ConfigProvider"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Hyperf\\Amqp\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "description": "A amqplib for hyperf.",
  1381. "homepage": "https://hyperf.io",
  1382. "keywords": [
  1383. "AMQP",
  1384. "hyperf",
  1385. "php"
  1386. ],
  1387. "support": {
  1388. "docs": "https://hyperf.wiki",
  1389. "issues": "https://github.com/hyperf/hyperf/issues",
  1390. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1391. "source": "https://github.com/hyperf/hyperf"
  1392. },
  1393. "funding": [
  1394. {
  1395. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1396. "type": "custom"
  1397. },
  1398. {
  1399. "url": "https://opencollective.com/hyperf",
  1400. "type": "open_collective"
  1401. }
  1402. ],
  1403. "time": "2024-09-25T02:54:12+00:00"
  1404. },
  1405. {
  1406. "name": "hyperf/async-queue",
  1407. "version": "v3.1.42",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/hyperf/async-queue.git",
  1411. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1416. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "hyperf/codec": "~3.1.0",
  1421. "hyperf/collection": "~3.1.0",
  1422. "hyperf/command": "~3.1.0",
  1423. "hyperf/contract": "~3.1.0",
  1424. "hyperf/support": "~3.1.0",
  1425. "hyperf/utils": "~3.1.0",
  1426. "php": ">=8.1",
  1427. "psr/container": "^1.0 || ^2.0",
  1428. "psr/event-dispatcher": "^1.0"
  1429. },
  1430. "suggest": {
  1431. "hyperf/di": "Required to use annotations.",
  1432. "hyperf/event": "Required to dispatch a event.",
  1433. "hyperf/logger": "Required to use QueueHandleListener.",
  1434. "hyperf/process": "Auto register the consumer process for server."
  1435. },
  1436. "type": "library",
  1437. "extra": {
  1438. "branch-alias": {
  1439. "dev-master": "3.1-dev"
  1440. },
  1441. "hyperf": {
  1442. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1443. }
  1444. },
  1445. "autoload": {
  1446. "files": [
  1447. "src/Functions.php"
  1448. ],
  1449. "psr-4": {
  1450. "Hyperf\\AsyncQueue\\": "src/"
  1451. }
  1452. },
  1453. "notification-url": "https://packagist.org/downloads/",
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "description": "A async queue component for hyperf.",
  1458. "homepage": "https://hyperf.io",
  1459. "keywords": [
  1460. "async-queue",
  1461. "hyperf",
  1462. "php"
  1463. ],
  1464. "support": {
  1465. "docs": "https://hyperf.wiki",
  1466. "issues": "https://github.com/hyperf/hyperf/issues",
  1467. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1468. "source": "https://github.com/hyperf/hyperf"
  1469. },
  1470. "funding": [
  1471. {
  1472. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1473. "type": "custom"
  1474. },
  1475. {
  1476. "url": "https://opencollective.com/hyperf",
  1477. "type": "open_collective"
  1478. }
  1479. ],
  1480. "time": "2024-09-25T02:54:12+00:00"
  1481. },
  1482. {
  1483. "name": "hyperf/cache",
  1484. "version": "v3.1.43",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/hyperf/cache.git",
  1488. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1493. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "hyperf/codec": "~3.1.0",
  1498. "hyperf/collection": "~3.1.0",
  1499. "hyperf/contract": "~3.1.0",
  1500. "hyperf/support": "~3.1.0",
  1501. "hyperf/utils": "~3.1.0",
  1502. "php": ">=8.1",
  1503. "psr/container": "^1.0 || ^2.0",
  1504. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1505. },
  1506. "suggest": {
  1507. "hyperf/di": "Use cache annotations.",
  1508. "hyperf/event": "Use listener to delete annotation cache."
  1509. },
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "3.1-dev"
  1514. },
  1515. "hyperf": {
  1516. "config": "Hyperf\\Cache\\ConfigProvider"
  1517. }
  1518. },
  1519. "autoload": {
  1520. "psr-4": {
  1521. "Hyperf\\Cache\\": "src/"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "description": "A cache component for hyperf.",
  1529. "homepage": "https://hyperf.io",
  1530. "keywords": [
  1531. "cache",
  1532. "hyperf",
  1533. "php"
  1534. ],
  1535. "support": {
  1536. "docs": "https://hyperf.wiki",
  1537. "issues": "https://github.com/hyperf/hyperf/issues",
  1538. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1539. "source": "https://github.com/hyperf/hyperf"
  1540. },
  1541. "funding": [
  1542. {
  1543. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1544. "type": "custom"
  1545. },
  1546. {
  1547. "url": "https://opencollective.com/hyperf",
  1548. "type": "open_collective"
  1549. }
  1550. ],
  1551. "time": "2024-10-09T10:22:39+00:00"
  1552. },
  1553. {
  1554. "name": "hyperf/code-parser",
  1555. "version": "v3.1.42",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/hyperf/code-parser.git",
  1559. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1564. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "hyperf/collection": "~3.1.0",
  1569. "hyperf/stringable": "~3.1.0",
  1570. "hyperf/support": "~3.1.0",
  1571. "php": ">=8.1"
  1572. },
  1573. "suggest": {
  1574. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1575. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1576. },
  1577. "type": "library",
  1578. "extra": {
  1579. "branch-alias": {
  1580. "dev-master": "3.1-dev"
  1581. }
  1582. },
  1583. "autoload": {
  1584. "psr-4": {
  1585. "Hyperf\\CodeParser\\": "src/"
  1586. }
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "description": "A code parser component for Hyperf.",
  1593. "homepage": "https://hyperf.io",
  1594. "keywords": [
  1595. "code-parser",
  1596. "hyperf",
  1597. "php",
  1598. "swoole"
  1599. ],
  1600. "support": {
  1601. "docs": "https://hyperf.wiki",
  1602. "issues": "https://github.com/hyperf/hyperf/issues",
  1603. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1604. "source": "https://github.com/hyperf/hyperf"
  1605. },
  1606. "funding": [
  1607. {
  1608. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1609. "type": "custom"
  1610. },
  1611. {
  1612. "url": "https://opencollective.com/hyperf",
  1613. "type": "open_collective"
  1614. }
  1615. ],
  1616. "time": "2024-09-25T02:54:12+00:00"
  1617. },
  1618. {
  1619. "name": "hyperf/codec",
  1620. "version": "v3.1.42",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/hyperf/codec.git",
  1624. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1629. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "ext-json": "*",
  1634. "ext-xml": "*",
  1635. "hyperf/contract": "~3.1.0",
  1636. "php": ">=8.1"
  1637. },
  1638. "suggest": {
  1639. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1640. },
  1641. "type": "library",
  1642. "extra": {
  1643. "branch-alias": {
  1644. "dev-master": "3.1-dev"
  1645. }
  1646. },
  1647. "autoload": {
  1648. "psr-4": {
  1649. "Hyperf\\Codec\\": "src/"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT"
  1655. ],
  1656. "description": "A codec component for Hyperf.",
  1657. "homepage": "https://hyperf.io",
  1658. "keywords": [
  1659. "codec",
  1660. "hyperf",
  1661. "php",
  1662. "swoole"
  1663. ],
  1664. "support": {
  1665. "docs": "https://hyperf.wiki",
  1666. "issues": "https://github.com/hyperf/hyperf/issues",
  1667. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1668. "source": "https://github.com/hyperf/hyperf"
  1669. },
  1670. "funding": [
  1671. {
  1672. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1673. "type": "custom"
  1674. },
  1675. {
  1676. "url": "https://opencollective.com/hyperf",
  1677. "type": "open_collective"
  1678. }
  1679. ],
  1680. "time": "2024-09-25T02:54:12+00:00"
  1681. },
  1682. {
  1683. "name": "hyperf/collection",
  1684. "version": "v3.1.47",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/hyperf/collection.git",
  1688. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1693. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1694. "shasum": ""
  1695. },
  1696. "require": {
  1697. "hyperf/conditionable": "~3.1.0",
  1698. "hyperf/contract": "~3.1.0",
  1699. "hyperf/macroable": "~3.1.0",
  1700. "hyperf/stringable": "~3.1.0",
  1701. "php": ">=8.1"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "3.1-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "files": [
  1711. "src/Functions.php"
  1712. ],
  1713. "psr-4": {
  1714. "Hyperf\\Collection\\": "src/"
  1715. }
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "description": "Hyperf Collection package which come from illuminate/collections",
  1722. "homepage": "https://hyperf.io",
  1723. "keywords": [
  1724. "collection",
  1725. "hyperf",
  1726. "php",
  1727. "swoole"
  1728. ],
  1729. "support": {
  1730. "docs": "https://hyperf.wiki",
  1731. "issues": "https://github.com/hyperf/hyperf/issues",
  1732. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1733. "source": "https://github.com/hyperf/hyperf"
  1734. },
  1735. "funding": [
  1736. {
  1737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1738. "type": "custom"
  1739. },
  1740. {
  1741. "url": "https://opencollective.com/hyperf",
  1742. "type": "open_collective"
  1743. }
  1744. ],
  1745. "time": "2024-11-28T01:51:55+00:00"
  1746. },
  1747. {
  1748. "name": "hyperf/command",
  1749. "version": "v3.1.42",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/hyperf/command.git",
  1753. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1758. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "hyperf/collection": "~3.1.0",
  1763. "hyperf/context": "~3.1.0",
  1764. "hyperf/contract": "~3.1.0",
  1765. "hyperf/coroutine": "~3.1.0",
  1766. "hyperf/di": "~3.1.0",
  1767. "hyperf/stringable": "~3.1.0",
  1768. "hyperf/support": "~3.1.0",
  1769. "hyperf/tappable": "~3.1.0",
  1770. "php": ">=8.1",
  1771. "psr/event-dispatcher": "^1.0",
  1772. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1773. },
  1774. "suggest": {
  1775. "hyperf/di": "Required to use annotations.",
  1776. "hyperf/event": "Required to use listeners."
  1777. },
  1778. "type": "library",
  1779. "extra": {
  1780. "branch-alias": {
  1781. "dev-master": "3.1-dev"
  1782. },
  1783. "hyperf": {
  1784. "config": "Hyperf\\Command\\ConfigProvider"
  1785. }
  1786. },
  1787. "autoload": {
  1788. "psr-4": {
  1789. "Hyperf\\Command\\": "src/"
  1790. }
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "MIT"
  1795. ],
  1796. "description": "Command for hyperf",
  1797. "keywords": [
  1798. "command",
  1799. "php",
  1800. "swoole"
  1801. ],
  1802. "support": {
  1803. "issues": "https://github.com/hyperf/command/issues",
  1804. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1805. },
  1806. "funding": [
  1807. {
  1808. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1809. "type": "custom"
  1810. },
  1811. {
  1812. "url": "https://opencollective.com/hyperf",
  1813. "type": "open_collective"
  1814. }
  1815. ],
  1816. "time": "2024-09-25T02:54:12+00:00"
  1817. },
  1818. {
  1819. "name": "hyperf/conditionable",
  1820. "version": "v3.1.42",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/hyperf/conditionable.git",
  1824. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1829. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": ">=8.1"
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "3.1-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "Hyperf\\Conditionable\\": "src/"
  1844. }
  1845. },
  1846. "notification-url": "https://packagist.org/downloads/",
  1847. "license": [
  1848. "MIT"
  1849. ],
  1850. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1851. "homepage": "https://hyperf.io",
  1852. "keywords": [
  1853. "conditionable",
  1854. "hyperf",
  1855. "php",
  1856. "swoole"
  1857. ],
  1858. "support": {
  1859. "docs": "https://hyperf.wiki",
  1860. "issues": "https://github.com/hyperf/hyperf/issues",
  1861. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1862. "source": "https://github.com/hyperf/hyperf"
  1863. },
  1864. "funding": [
  1865. {
  1866. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1867. "type": "custom"
  1868. },
  1869. {
  1870. "url": "https://opencollective.com/hyperf",
  1871. "type": "open_collective"
  1872. }
  1873. ],
  1874. "time": "2024-09-25T02:54:12+00:00"
  1875. },
  1876. {
  1877. "name": "hyperf/config",
  1878. "version": "v3.1.42",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/hyperf/config.git",
  1882. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1887. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "hyperf/collection": "~3.1.0",
  1892. "hyperf/contract": "~3.1.0",
  1893. "hyperf/support": "~3.1.0",
  1894. "php": ">=8.1",
  1895. "psr/container": "^1.0 || ^2.0",
  1896. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1897. },
  1898. "suggest": {
  1899. "hyperf/context": "Required to use config()",
  1900. "hyperf/di": "Allows using @Value annotation",
  1901. "hyperf/event": "Allows using @Value annotation",
  1902. "hyperf/framework": "Allows using @Value annotation",
  1903. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-master": "3.1-dev"
  1909. },
  1910. "hyperf": {
  1911. "config": "Hyperf\\Config\\ConfigProvider"
  1912. }
  1913. },
  1914. "autoload": {
  1915. "files": [
  1916. "./src/Functions.php"
  1917. ],
  1918. "psr-4": {
  1919. "Hyperf\\Config\\": "src/"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "description": "An independent component that provides configuration container.",
  1927. "homepage": "https://hyperf.io",
  1928. "keywords": [
  1929. "config",
  1930. "configuration",
  1931. "hyperf",
  1932. "php",
  1933. "swoole"
  1934. ],
  1935. "support": {
  1936. "docs": "https://hyperf.wiki",
  1937. "issues": "https://github.com/hyperf/hyperf/issues",
  1938. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1939. "source": "https://github.com/hyperf/hyperf"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1944. "type": "custom"
  1945. },
  1946. {
  1947. "url": "https://opencollective.com/hyperf",
  1948. "type": "open_collective"
  1949. }
  1950. ],
  1951. "time": "2024-09-25T02:54:12+00:00"
  1952. },
  1953. {
  1954. "name": "hyperf/config-center",
  1955. "version": "v3.1.42",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/hyperf/config-center.git",
  1959. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1964. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "hyperf/support": "~3.1.0",
  1969. "php": ">=8.1"
  1970. },
  1971. "suggest": {
  1972. "hyperf/process": "^2.1"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "3.1-dev"
  1978. },
  1979. "hyperf": {
  1980. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Hyperf\\ConfigCenter\\": "src/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "description": "The abstraction component of config center",
  1993. "homepage": "https://hyperf.io",
  1994. "keywords": [
  1995. "config-center",
  1996. "hyperf",
  1997. "php"
  1998. ],
  1999. "support": {
  2000. "docs": "https://hyperf.wiki",
  2001. "issues": "https://github.com/hyperf/hyperf/issues",
  2002. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2003. "source": "https://github.com/hyperf/hyperf"
  2004. },
  2005. "funding": [
  2006. {
  2007. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2008. "type": "custom"
  2009. },
  2010. {
  2011. "url": "https://opencollective.com/hyperf",
  2012. "type": "open_collective"
  2013. }
  2014. ],
  2015. "time": "2024-09-25T02:54:12+00:00"
  2016. },
  2017. {
  2018. "name": "hyperf/config-nacos",
  2019. "version": "v3.1.42",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/hyperf/config-nacos.git",
  2023. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  2028. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "hyperf/codec": "~3.1.0",
  2033. "hyperf/config-center": "~3.1.0",
  2034. "hyperf/contract": "~3.1.0",
  2035. "hyperf/guzzle": "~3.1.0",
  2036. "hyperf/nacos": "~3.1.0",
  2037. "hyperf/support": "~3.1.0",
  2038. "hyperf/utils": "~3.1.0",
  2039. "jetbrains/phpstorm-attributes": "^1.0",
  2040. "php": ">=8.1"
  2041. },
  2042. "suggest": {
  2043. "ext-json": "*",
  2044. "ext-simplexml": "*",
  2045. "ext-yaml": "*",
  2046. "hyperf/event": "Required to use listeners. (~2.2.0)",
  2047. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  2048. "hyperf/process": "Required to use processes. (~2.2.0)"
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "3.1-dev"
  2054. },
  2055. "hyperf": {
  2056. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Hyperf\\ConfigNacos\\": "src/"
  2062. }
  2063. },
  2064. "notification-url": "https://packagist.org/downloads/",
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "description": "A nacos adapter for config center component.",
  2069. "homepage": "https://hyperf.io",
  2070. "keywords": [
  2071. "hyperf",
  2072. "nacos",
  2073. "php",
  2074. "swoole"
  2075. ],
  2076. "support": {
  2077. "docs": "https://hyperf.wiki",
  2078. "issues": "https://github.com/hyperf/hyperf/issues",
  2079. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2080. "source": "https://github.com/hyperf/hyperf"
  2081. },
  2082. "funding": [
  2083. {
  2084. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2085. "type": "custom"
  2086. },
  2087. {
  2088. "url": "https://opencollective.com/hyperf",
  2089. "type": "open_collective"
  2090. }
  2091. ],
  2092. "time": "2024-09-25T02:54:12+00:00"
  2093. },
  2094. {
  2095. "name": "hyperf/constants",
  2096. "version": "v3.1.42",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/hyperf/constants.git",
  2100. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  2105. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "hyperf/di": "~3.1.0",
  2110. "hyperf/support": "~3.1.0",
  2111. "hyperf/utils": "~3.1.0",
  2112. "php": ">=8.1"
  2113. },
  2114. "suggest": {
  2115. "hyperf/translation": "Required to use translation."
  2116. },
  2117. "type": "library",
  2118. "extra": {
  2119. "branch-alias": {
  2120. "dev-master": "3.1-dev"
  2121. },
  2122. "hyperf": {
  2123. "config": "Hyperf\\Constants\\ConfigProvider"
  2124. }
  2125. },
  2126. "autoload": {
  2127. "psr-4": {
  2128. "Hyperf\\Constants\\": "src/"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "MIT"
  2134. ],
  2135. "description": "A constants component for hyperf.",
  2136. "homepage": "https://hyperf.io",
  2137. "keywords": [
  2138. "constants",
  2139. "hyperf",
  2140. "php"
  2141. ],
  2142. "support": {
  2143. "docs": "https://hyperf.wiki",
  2144. "issues": "https://github.com/hyperf/hyperf/issues",
  2145. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2146. "source": "https://github.com/hyperf/hyperf"
  2147. },
  2148. "funding": [
  2149. {
  2150. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2151. "type": "custom"
  2152. },
  2153. {
  2154. "url": "https://opencollective.com/hyperf",
  2155. "type": "open_collective"
  2156. }
  2157. ],
  2158. "time": "2024-09-25T02:54:12+00:00"
  2159. },
  2160. {
  2161. "name": "hyperf/consul",
  2162. "version": "v3.1.42",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/hyperf/consul.git",
  2166. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2171. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2176. "php": ">=8.1"
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "3.1-dev"
  2182. },
  2183. "hyperf": {
  2184. "config": "Hyperf\\Consul\\ConfigProvider"
  2185. }
  2186. },
  2187. "autoload": {
  2188. "psr-4": {
  2189. "Hyperf\\Consul\\": "src/"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "description": "A Consul Client for Hyperf.",
  2197. "homepage": "https://hyperf.io",
  2198. "keywords": [
  2199. "consul",
  2200. "consul-client",
  2201. "hyperf",
  2202. "php",
  2203. "swoole"
  2204. ],
  2205. "support": {
  2206. "docs": "https://hyperf.wiki",
  2207. "issues": "https://github.com/hyperf/hyperf/issues",
  2208. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2209. "source": "https://github.com/hyperf/hyperf"
  2210. },
  2211. "funding": [
  2212. {
  2213. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2214. "type": "custom"
  2215. },
  2216. {
  2217. "url": "https://opencollective.com/hyperf",
  2218. "type": "open_collective"
  2219. }
  2220. ],
  2221. "time": "2024-09-25T02:54:12+00:00"
  2222. },
  2223. {
  2224. "name": "hyperf/context",
  2225. "version": "v3.1.42",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://github.com/hyperf/context.git",
  2229. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2234. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2235. "shasum": ""
  2236. },
  2237. "require": {
  2238. "hyperf/engine": "^2.0",
  2239. "php": ">=8.1"
  2240. },
  2241. "suggest": {
  2242. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2243. },
  2244. "type": "library",
  2245. "extra": {
  2246. "branch-alias": {
  2247. "dev-master": "3.1-dev"
  2248. }
  2249. },
  2250. "autoload": {
  2251. "psr-4": {
  2252. "Hyperf\\Context\\": "src/"
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "MIT"
  2258. ],
  2259. "description": "A coroutine/application context library.",
  2260. "homepage": "https://hyperf.io",
  2261. "keywords": [
  2262. "Context",
  2263. "hyperf",
  2264. "php",
  2265. "swoole"
  2266. ],
  2267. "support": {
  2268. "docs": "https://hyperf.wiki",
  2269. "issues": "https://github.com/hyperf/hyperf/issues",
  2270. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2271. "source": "https://github.com/hyperf/hyperf"
  2272. },
  2273. "funding": [
  2274. {
  2275. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2276. "type": "custom"
  2277. },
  2278. {
  2279. "url": "https://opencollective.com/hyperf",
  2280. "type": "open_collective"
  2281. }
  2282. ],
  2283. "time": "2024-09-25T02:54:12+00:00"
  2284. },
  2285. {
  2286. "name": "hyperf/contract",
  2287. "version": "v3.1.42",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/hyperf/contract.git",
  2291. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2296. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "php": ">=8.1"
  2301. },
  2302. "type": "library",
  2303. "extra": {
  2304. "branch-alias": {
  2305. "dev-master": "3.1-dev"
  2306. }
  2307. },
  2308. "autoload": {
  2309. "psr-4": {
  2310. "Hyperf\\Contract\\": "src/"
  2311. }
  2312. },
  2313. "notification-url": "https://packagist.org/downloads/",
  2314. "license": [
  2315. "MIT"
  2316. ],
  2317. "description": "The contracts of Hyperf.",
  2318. "homepage": "https://hyperf.io",
  2319. "keywords": [
  2320. "hyperf",
  2321. "php",
  2322. "swoole"
  2323. ],
  2324. "support": {
  2325. "docs": "https://hyperf.wiki",
  2326. "issues": "https://github.com/hyperf/hyperf/issues",
  2327. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2328. "source": "https://github.com/hyperf/hyperf"
  2329. },
  2330. "funding": [
  2331. {
  2332. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2333. "type": "custom"
  2334. },
  2335. {
  2336. "url": "https://opencollective.com/hyperf",
  2337. "type": "open_collective"
  2338. }
  2339. ],
  2340. "time": "2024-09-25T02:54:12+00:00"
  2341. },
  2342. {
  2343. "name": "hyperf/coordinator",
  2344. "version": "v3.1.42",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/hyperf/coordinator.git",
  2348. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2353. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2354. "shasum": ""
  2355. },
  2356. "require": {
  2357. "hyperf/engine": "^2.0",
  2358. "php": ">=8.1"
  2359. },
  2360. "type": "library",
  2361. "extra": {
  2362. "branch-alias": {
  2363. "dev-master": "3.1-dev"
  2364. }
  2365. },
  2366. "autoload": {
  2367. "files": [
  2368. "src/Functions.php"
  2369. ],
  2370. "psr-4": {
  2371. "Hyperf\\Coordinator\\": "src/"
  2372. }
  2373. },
  2374. "notification-url": "https://packagist.org/downloads/",
  2375. "license": [
  2376. "MIT"
  2377. ],
  2378. "description": "Hyperf Coordinator",
  2379. "homepage": "https://hyperf.io",
  2380. "keywords": [
  2381. "Coordinator",
  2382. "hyperf",
  2383. "php",
  2384. "swoole"
  2385. ],
  2386. "support": {
  2387. "docs": "https://hyperf.wiki",
  2388. "issues": "https://github.com/hyperf/hyperf/issues",
  2389. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2390. "source": "https://github.com/hyperf/hyperf"
  2391. },
  2392. "funding": [
  2393. {
  2394. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2395. "type": "custom"
  2396. },
  2397. {
  2398. "url": "https://opencollective.com/hyperf",
  2399. "type": "open_collective"
  2400. }
  2401. ],
  2402. "time": "2024-09-25T02:54:12+00:00"
  2403. },
  2404. {
  2405. "name": "hyperf/coroutine",
  2406. "version": "v3.1.42",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://github.com/hyperf/coroutine.git",
  2410. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2415. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2416. "shasum": ""
  2417. },
  2418. "require": {
  2419. "hyperf/context": "~3.1.0",
  2420. "hyperf/contract": "~3.1.0",
  2421. "hyperf/engine": "^2.0",
  2422. "php": ">=8.1"
  2423. },
  2424. "type": "library",
  2425. "extra": {
  2426. "branch-alias": {
  2427. "dev-master": "3.1-dev"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "files": [
  2432. "src/Functions.php"
  2433. ],
  2434. "psr-4": {
  2435. "Hyperf\\Coroutine\\": "src/"
  2436. }
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "description": "Hyperf Coroutine",
  2443. "homepage": "https://hyperf.io",
  2444. "keywords": [
  2445. "coroutine",
  2446. "hyperf",
  2447. "php",
  2448. "swoole"
  2449. ],
  2450. "support": {
  2451. "docs": "https://hyperf.wiki",
  2452. "issues": "https://github.com/hyperf/hyperf/issues",
  2453. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2454. "source": "https://github.com/hyperf/hyperf"
  2455. },
  2456. "funding": [
  2457. {
  2458. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2459. "type": "custom"
  2460. },
  2461. {
  2462. "url": "https://opencollective.com/hyperf",
  2463. "type": "open_collective"
  2464. }
  2465. ],
  2466. "time": "2024-09-25T02:54:12+00:00"
  2467. },
  2468. {
  2469. "name": "hyperf/database",
  2470. "version": "v3.1.47",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/hyperf/database.git",
  2474. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/hyperf/database/zipball/a53d2616486e0a77923542bb5cc363e207e5003d",
  2479. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d",
  2480. "shasum": ""
  2481. },
  2482. "require": {
  2483. "hyperf/code-parser": "~3.1.0",
  2484. "hyperf/collection": "~3.1.23",
  2485. "hyperf/conditionable": "~3.1.0",
  2486. "hyperf/macroable": "~3.1.0",
  2487. "hyperf/support": "~3.1.0",
  2488. "hyperf/tappable": "~3.1.0",
  2489. "hyperf/utils": "~3.1.0",
  2490. "nesbot/carbon": "^2.0",
  2491. "php": ">=8.1",
  2492. "psr/container": "^1.0 || ^2.0",
  2493. "psr/event-dispatcher": "^1.0"
  2494. },
  2495. "suggest": {
  2496. "doctrine/dbal": "Required to rename columns (^3.0).",
  2497. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2498. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2499. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "3.1-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "psr-4": {
  2509. "Hyperf\\Database\\": "src/"
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "MIT"
  2515. ],
  2516. "description": "A flexible database library.",
  2517. "homepage": "https://hyperf.io",
  2518. "keywords": [
  2519. "database",
  2520. "hyperf",
  2521. "php"
  2522. ],
  2523. "support": {
  2524. "docs": "https://hyperf.wiki",
  2525. "issues": "https://github.com/hyperf/hyperf/issues",
  2526. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2527. "source": "https://github.com/hyperf/hyperf"
  2528. },
  2529. "funding": [
  2530. {
  2531. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2532. "type": "custom"
  2533. },
  2534. {
  2535. "url": "https://opencollective.com/hyperf",
  2536. "type": "open_collective"
  2537. }
  2538. ],
  2539. "time": "2024-11-28T01:51:55+00:00"
  2540. },
  2541. {
  2542. "name": "hyperf/db-connection",
  2543. "version": "v3.1.44",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/hyperf/db-connection.git",
  2547. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2552. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2553. "shasum": ""
  2554. },
  2555. "require": {
  2556. "hyperf/database": "~3.1.0",
  2557. "hyperf/di": "~3.1.0",
  2558. "hyperf/framework": "~3.1.0",
  2559. "hyperf/model-listener": "~3.1.0",
  2560. "hyperf/pool": "~3.1.0",
  2561. "hyperf/support": "~3.1.0",
  2562. "hyperf/utils": "~3.1.0",
  2563. "php": ">=8.1",
  2564. "psr/container": "^1.0 || ^2.0"
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-master": "3.1-dev"
  2570. },
  2571. "hyperf": {
  2572. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2573. }
  2574. },
  2575. "autoload": {
  2576. "psr-4": {
  2577. "Hyperf\\DbConnection\\": "src/"
  2578. }
  2579. },
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "MIT"
  2583. ],
  2584. "description": "A hyperf db connection handler for hyperf/database.",
  2585. "homepage": "https://hyperf.io",
  2586. "keywords": [
  2587. "Connection",
  2588. "database",
  2589. "hyperf",
  2590. "php"
  2591. ],
  2592. "support": {
  2593. "docs": "https://hyperf.wiki",
  2594. "issues": "https://github.com/hyperf/hyperf/issues",
  2595. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2596. "source": "https://github.com/hyperf/hyperf"
  2597. },
  2598. "funding": [
  2599. {
  2600. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2601. "type": "custom"
  2602. },
  2603. {
  2604. "url": "https://opencollective.com/hyperf",
  2605. "type": "open_collective"
  2606. }
  2607. ],
  2608. "time": "2024-10-11T08:58:16+00:00"
  2609. },
  2610. {
  2611. "name": "hyperf/di",
  2612. "version": "v3.1.42",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/hyperf/di.git",
  2616. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2621. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "doctrine/instantiator": "^1.0",
  2626. "hyperf/code-parser": "~3.1.0",
  2627. "hyperf/pipeline": "~3.1.0",
  2628. "hyperf/stdlib": "~3.1.0",
  2629. "hyperf/support": "~3.1.0",
  2630. "nikic/php-parser": "^4.1",
  2631. "php": ">=8.1",
  2632. "php-di/phpdoc-reader": "^2.2",
  2633. "psr/container": "^1.0 || ^2.0",
  2634. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2635. "vlucas/phpdotenv": "^5.0"
  2636. },
  2637. "suggest": {
  2638. "ext-pcntl": "Required to scan annotations.",
  2639. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "3.1-dev"
  2645. },
  2646. "hyperf": {
  2647. "config": "Hyperf\\Di\\ConfigProvider"
  2648. }
  2649. },
  2650. "autoload": {
  2651. "psr-4": {
  2652. "Hyperf\\Di\\": "src/"
  2653. }
  2654. },
  2655. "notification-url": "https://packagist.org/downloads/",
  2656. "license": [
  2657. "MIT"
  2658. ],
  2659. "description": "A DI for Hyperf.",
  2660. "homepage": "https://hyperf.io",
  2661. "keywords": [
  2662. "annotation",
  2663. "di",
  2664. "hyperf",
  2665. "php",
  2666. "swoole"
  2667. ],
  2668. "support": {
  2669. "docs": "https://hyperf.wiki",
  2670. "issues": "https://github.com/hyperf/hyperf/issues",
  2671. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2672. "source": "https://github.com/hyperf/hyperf"
  2673. },
  2674. "funding": [
  2675. {
  2676. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2677. "type": "custom"
  2678. },
  2679. {
  2680. "url": "https://opencollective.com/hyperf",
  2681. "type": "open_collective"
  2682. }
  2683. ],
  2684. "time": "2024-09-25T02:54:12+00:00"
  2685. },
  2686. {
  2687. "name": "hyperf/dispatcher",
  2688. "version": "v3.1.42",
  2689. "source": {
  2690. "type": "git",
  2691. "url": "https://github.com/hyperf/dispatcher.git",
  2692. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2693. },
  2694. "dist": {
  2695. "type": "zip",
  2696. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2697. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2698. "shasum": ""
  2699. },
  2700. "require": {
  2701. "hyperf/contract": "~3.1.0",
  2702. "php": ">=8.1",
  2703. "psr/container": "^1.0 || ^2.0",
  2704. "psr/http-message": "^1.0 || ^2.0",
  2705. "psr/http-server-middleware": "^1.0"
  2706. },
  2707. "type": "library",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-master": "3.1-dev"
  2711. },
  2712. "hyperf": {
  2713. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2714. }
  2715. },
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Hyperf\\Dispatcher\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "description": "A HTTP Server for Hyperf.",
  2726. "homepage": "https://hyperf.io",
  2727. "keywords": [
  2728. "dispatcher",
  2729. "filter",
  2730. "hyperf",
  2731. "middleware",
  2732. "php",
  2733. "swoole"
  2734. ],
  2735. "support": {
  2736. "docs": "https://hyperf.wiki",
  2737. "issues": "https://github.com/hyperf/hyperf/issues",
  2738. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2739. "source": "https://github.com/hyperf/hyperf"
  2740. },
  2741. "funding": [
  2742. {
  2743. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2744. "type": "custom"
  2745. },
  2746. {
  2747. "url": "https://opencollective.com/hyperf",
  2748. "type": "open_collective"
  2749. }
  2750. ],
  2751. "time": "2024-09-25T02:54:12+00:00"
  2752. },
  2753. {
  2754. "name": "hyperf/engine",
  2755. "version": "v2.12.0",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/hyperf/engine.git",
  2759. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/hyperf/engine/zipball/f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2764. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "hyperf/engine-contract": "~1.11.0",
  2769. "php": ">=8.0"
  2770. },
  2771. "conflict": {
  2772. "ext-swoole": "<5.0"
  2773. },
  2774. "require-dev": {
  2775. "friendsofphp/php-cs-fixer": "^3.0",
  2776. "hyperf/guzzle": "^3.0",
  2777. "hyperf/http-message": "^3.0",
  2778. "mockery/mockery": "^1.5",
  2779. "phpstan/phpstan": "^1.0",
  2780. "phpunit/phpunit": "^9.4",
  2781. "swoole/ide-helper": "5.*"
  2782. },
  2783. "suggest": {
  2784. "ext-sockets": "*",
  2785. "ext-swoole": ">=5.0",
  2786. "hyperf/http-message": "Required to use ResponseEmitter.",
  2787. "psr/http-message": "Required to use WebSocket Frame."
  2788. },
  2789. "type": "library",
  2790. "extra": {
  2791. "branch-alias": {
  2792. "dev-master": "2.12-dev"
  2793. },
  2794. "hyperf": {
  2795. "config": "Hyperf\\Engine\\ConfigProvider"
  2796. }
  2797. },
  2798. "autoload": {
  2799. "files": [
  2800. "src/Functions.php"
  2801. ],
  2802. "psr-4": {
  2803. "Hyperf\\Engine\\": "src/"
  2804. }
  2805. },
  2806. "notification-url": "https://packagist.org/downloads/",
  2807. "license": [
  2808. "MIT"
  2809. ],
  2810. "description": "Coroutine engine provided by swoole.",
  2811. "keywords": [
  2812. "engine",
  2813. "hyperf",
  2814. "php",
  2815. "swoole"
  2816. ],
  2817. "support": {
  2818. "issues": "https://github.com/hyperf/engine/issues",
  2819. "source": "https://github.com/hyperf/engine/tree/v2.12.0"
  2820. },
  2821. "funding": [
  2822. {
  2823. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2824. "type": "custom"
  2825. },
  2826. {
  2827. "url": "https://opencollective.com/hyperf",
  2828. "type": "open_collective"
  2829. }
  2830. ],
  2831. "time": "2024-11-19T04:32:29+00:00"
  2832. },
  2833. {
  2834. "name": "hyperf/engine-contract",
  2835. "version": "v1.11.0",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/hyperf/engine-contract.git",
  2839. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2844. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2845. "shasum": ""
  2846. },
  2847. "require": {
  2848. "php": ">=8.0"
  2849. },
  2850. "require-dev": {
  2851. "friendsofphp/php-cs-fixer": "^3.0",
  2852. "mockery/mockery": "^1.0",
  2853. "phpstan/phpstan": "^1.0",
  2854. "phpunit/phpunit": ">=7.0",
  2855. "psr/http-message": "^1.0",
  2856. "swoole/ide-helper": "^4.5"
  2857. },
  2858. "suggest": {
  2859. "psr/http-message": "Required to use WebSocket Frame."
  2860. },
  2861. "type": "library",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-master": "1.9-dev"
  2865. }
  2866. },
  2867. "autoload": {
  2868. "psr-4": {
  2869. "Hyperf\\Engine\\Contract\\": "src/"
  2870. }
  2871. },
  2872. "notification-url": "https://packagist.org/downloads/",
  2873. "license": [
  2874. "MIT"
  2875. ],
  2876. "description": "Contract for Coroutine Engine",
  2877. "keywords": [
  2878. "contract",
  2879. "coroutine",
  2880. "engine",
  2881. "hyperf",
  2882. "php"
  2883. ],
  2884. "support": {
  2885. "issues": "https://github.com/hyperf/engine-contract/issues",
  2886. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2887. },
  2888. "funding": [
  2889. {
  2890. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2891. "type": "custom"
  2892. },
  2893. {
  2894. "url": "https://opencollective.com/hyperf",
  2895. "type": "open_collective"
  2896. }
  2897. ],
  2898. "time": "2024-11-19T04:15:31+00:00"
  2899. },
  2900. {
  2901. "name": "hyperf/event",
  2902. "version": "v3.1.42",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/hyperf/event.git",
  2906. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2911. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "hyperf/contract": "~3.1.0",
  2916. "hyperf/stdlib": "~3.1.0",
  2917. "php": ">=8.1",
  2918. "psr/event-dispatcher": "^1.0"
  2919. },
  2920. "suggest": {
  2921. "hyperf/di": "Required to use annotatioins."
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.1-dev"
  2927. },
  2928. "hyperf": {
  2929. "config": "Hyperf\\Event\\ConfigProvider"
  2930. }
  2931. },
  2932. "autoload": {
  2933. "psr-4": {
  2934. "Hyperf\\Event\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "description": "an event manager that implements PSR-14.",
  2942. "homepage": "https://hyperf.io",
  2943. "keywords": [
  2944. "event",
  2945. "hyperf",
  2946. "php",
  2947. "swoole"
  2948. ],
  2949. "support": {
  2950. "docs": "https://hyperf.wiki",
  2951. "issues": "https://github.com/hyperf/hyperf/issues",
  2952. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2953. "source": "https://github.com/hyperf/hyperf"
  2954. },
  2955. "funding": [
  2956. {
  2957. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2958. "type": "custom"
  2959. },
  2960. {
  2961. "url": "https://opencollective.com/hyperf",
  2962. "type": "open_collective"
  2963. }
  2964. ],
  2965. "time": "2024-09-25T02:54:12+00:00"
  2966. },
  2967. {
  2968. "name": "hyperf/exception-handler",
  2969. "version": "v3.1.42",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/hyperf/exception-handler.git",
  2973. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2978. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "hyperf/context": "~3.1.0",
  2983. "hyperf/contract": "~3.1.0",
  2984. "hyperf/dispatcher": "~3.1.0",
  2985. "hyperf/http-message": "~3.1.0",
  2986. "hyperf/stdlib": "~3.1.0",
  2987. "hyperf/support": "~3.1.0",
  2988. "php": ">=8.1",
  2989. "psr/container": "^1.0 || ^2.0",
  2990. "psr/http-message": "^1.0 || ^2.0",
  2991. "swow/psr7-plus": "^1.0"
  2992. },
  2993. "suggest": {
  2994. "hyperf/di": "Required to use #[ExceptionHandler]",
  2995. "hyperf/event": "Required to use listeners",
  2996. "hyperf/framework": "Required to use listeners",
  2997. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2998. },
  2999. "type": "library",
  3000. "extra": {
  3001. "branch-alias": {
  3002. "dev-master": "3.1-dev"
  3003. },
  3004. "hyperf": {
  3005. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  3006. }
  3007. },
  3008. "autoload": {
  3009. "psr-4": {
  3010. "Hyperf\\ExceptionHandler\\": "src/"
  3011. }
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "description": "Exception handler for hyperf",
  3018. "homepage": "https://hyperf.io",
  3019. "keywords": [
  3020. "exception-handler",
  3021. "php",
  3022. "swoole"
  3023. ],
  3024. "support": {
  3025. "docs": "https://hyperf.wiki",
  3026. "issues": "https://github.com/hyperf/hyperf/issues",
  3027. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3028. "source": "https://github.com/hyperf/hyperf"
  3029. },
  3030. "funding": [
  3031. {
  3032. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3033. "type": "custom"
  3034. },
  3035. {
  3036. "url": "https://opencollective.com/hyperf",
  3037. "type": "open_collective"
  3038. }
  3039. ],
  3040. "time": "2024-09-25T02:54:12+00:00"
  3041. },
  3042. {
  3043. "name": "hyperf/framework",
  3044. "version": "v3.1.42",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/hyperf/framework.git",
  3048. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  3053. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  3054. "shasum": ""
  3055. },
  3056. "require": {
  3057. "fig/http-message-util": "^1.1.2",
  3058. "hyperf/contract": "~3.1.0",
  3059. "hyperf/coordinator": "~3.1.0",
  3060. "hyperf/coroutine": "~3.1.0",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "psr/event-dispatcher": "^1.0",
  3064. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3065. },
  3066. "suggest": {
  3067. "ext-swoole": "Required to use swoole engine.",
  3068. "hyperf/command": "Required to use Command annotation.",
  3069. "hyperf/di": "Required to use Command annotation.",
  3070. "hyperf/dispatcher": "Required to use BootApplication event.",
  3071. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "3.1-dev"
  3077. },
  3078. "hyperf": {
  3079. "config": "Hyperf\\Framework\\ConfigProvider"
  3080. }
  3081. },
  3082. "autoload": {
  3083. "psr-4": {
  3084. "Hyperf\\Framework\\": "src/"
  3085. }
  3086. },
  3087. "notification-url": "https://packagist.org/downloads/",
  3088. "license": [
  3089. "MIT"
  3090. ],
  3091. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  3092. "homepage": "https://hyperf.io",
  3093. "keywords": [
  3094. "Microservice",
  3095. "framework",
  3096. "hyperf",
  3097. "middleware",
  3098. "php",
  3099. "swoole"
  3100. ],
  3101. "support": {
  3102. "docs": "https://hyperf.wiki",
  3103. "issues": "https://github.com/hyperf/hyperf/issues",
  3104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3105. "source": "https://github.com/hyperf/hyperf"
  3106. },
  3107. "funding": [
  3108. {
  3109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3110. "type": "custom"
  3111. },
  3112. {
  3113. "url": "https://opencollective.com/hyperf",
  3114. "type": "open_collective"
  3115. }
  3116. ],
  3117. "time": "2024-09-25T02:54:12+00:00"
  3118. },
  3119. {
  3120. "name": "hyperf/guzzle",
  3121. "version": "v3.1.42",
  3122. "source": {
  3123. "type": "git",
  3124. "url": "https://github.com/hyperf/guzzle.git",
  3125. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  3126. },
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  3130. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  3131. "shasum": ""
  3132. },
  3133. "require": {
  3134. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  3135. "php": ">=8.1",
  3136. "psr/container": "^1.0 || ^2.0",
  3137. "psr/http-message": "^1.0 || ^2.0"
  3138. },
  3139. "suggest": {
  3140. "ext-curl": "Required for CURL handler support",
  3141. "hyperf/pool": "Required to use pool handler."
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "3.1-dev"
  3147. },
  3148. "hyperf": {
  3149. "config": "Hyperf\\Guzzle\\ConfigProvider"
  3150. }
  3151. },
  3152. "autoload": {
  3153. "psr-4": {
  3154. "Hyperf\\Guzzle\\": "src/"
  3155. }
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "MIT"
  3160. ],
  3161. "description": "Swoole coroutine handler for guzzle",
  3162. "keywords": [
  3163. "Guzzle",
  3164. "handler",
  3165. "php",
  3166. "swoole"
  3167. ],
  3168. "support": {
  3169. "issues": "https://github.com/hyperf/guzzle/issues",
  3170. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  3171. },
  3172. "funding": [
  3173. {
  3174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3175. "type": "custom"
  3176. },
  3177. {
  3178. "url": "https://opencollective.com/hyperf",
  3179. "type": "open_collective"
  3180. }
  3181. ],
  3182. "time": "2024-09-25T02:54:12+00:00"
  3183. },
  3184. {
  3185. "name": "hyperf/http-message",
  3186. "version": "v3.1.47",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/hyperf/http-message.git",
  3190. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/hyperf/http-message/zipball/53a7caa616ee7a196d2974348b1acbf75305bf7e",
  3195. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "hyperf/codec": "~3.1.0",
  3200. "hyperf/engine": "^2.11",
  3201. "hyperf/support": "~3.1.0",
  3202. "laminas/laminas-mime": "^2.7",
  3203. "php": ">=8.1",
  3204. "psr/http-message": "^1.0 || ^2.0",
  3205. "swow/psr7-plus": "^1.0"
  3206. },
  3207. "suggest": {
  3208. "psr/container": "Required to replace RequestParserInterface."
  3209. },
  3210. "type": "library",
  3211. "extra": {
  3212. "hyperf": {
  3213. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3214. },
  3215. "branch-alias": {
  3216. "dev-master": "3.1-dev"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "Hyperf\\HttpMessage\\": "src/"
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "MIT"
  3227. ],
  3228. "description": "microservice framework base on swoole",
  3229. "keywords": [
  3230. "http-message",
  3231. "hyperf",
  3232. "php",
  3233. "swoole"
  3234. ],
  3235. "support": {
  3236. "issues": "https://github.com/hyperf/http-message/issues",
  3237. "source": "https://github.com/hyperf/http-message/tree/v3.1.47"
  3238. },
  3239. "funding": [
  3240. {
  3241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3242. "type": "custom"
  3243. },
  3244. {
  3245. "url": "https://opencollective.com/hyperf",
  3246. "type": "open_collective"
  3247. }
  3248. ],
  3249. "time": "2024-11-28T02:09:19+00:00"
  3250. },
  3251. {
  3252. "name": "hyperf/http-server",
  3253. "version": "v3.1.42",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/hyperf/http-server.git",
  3257. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3262. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "hyperf/codec": "~3.1.0",
  3267. "hyperf/collection": "~3.1.0",
  3268. "hyperf/context": "~3.1.0",
  3269. "hyperf/contract": "~3.1.0",
  3270. "hyperf/coroutine": "~3.1.0",
  3271. "hyperf/dispatcher": "~3.1.0",
  3272. "hyperf/event": "~3.1.0",
  3273. "hyperf/exception-handler": "~3.1.0",
  3274. "hyperf/http-message": "~3.1.0",
  3275. "hyperf/macroable": "~3.1.0",
  3276. "hyperf/serializer": "~3.1.0",
  3277. "hyperf/server": "~3.1.0",
  3278. "hyperf/stdlib": "~3.1.0",
  3279. "hyperf/support": "~3.1.0",
  3280. "nikic/fast-route": "^1.3",
  3281. "php": ">=8.1",
  3282. "psr/container": "^1.0 || ^2.0",
  3283. "swow/psr7-plus": "^1.0"
  3284. },
  3285. "suggest": {
  3286. "hyperf/di": "Required to use annotations."
  3287. },
  3288. "type": "library",
  3289. "extra": {
  3290. "branch-alias": {
  3291. "dev-master": "3.1-dev"
  3292. },
  3293. "hyperf": {
  3294. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Hyperf\\HttpServer\\": "src/"
  3300. }
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "MIT"
  3305. ],
  3306. "description": "A HTTP Server for Hyperf.",
  3307. "homepage": "https://hyperf.io",
  3308. "keywords": [
  3309. "http",
  3310. "http-server",
  3311. "hyperf",
  3312. "php",
  3313. "swoole"
  3314. ],
  3315. "support": {
  3316. "docs": "https://hyperf.wiki",
  3317. "issues": "https://github.com/hyperf/hyperf/issues",
  3318. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3319. "source": "https://github.com/hyperf/hyperf"
  3320. },
  3321. "funding": [
  3322. {
  3323. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3324. "type": "custom"
  3325. },
  3326. {
  3327. "url": "https://opencollective.com/hyperf",
  3328. "type": "open_collective"
  3329. }
  3330. ],
  3331. "time": "2024-09-25T02:54:12+00:00"
  3332. },
  3333. {
  3334. "name": "hyperf/json-rpc",
  3335. "version": "v3.1.47",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/hyperf/json-rpc.git",
  3339. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3344. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "hyperf/codec": "~3.1.0",
  3349. "hyperf/context": "~3.1.0",
  3350. "hyperf/contract": "~3.1.0",
  3351. "hyperf/engine": "^2.0",
  3352. "hyperf/http-message": "~3.1.0",
  3353. "hyperf/load-balancer": "~3.1.0",
  3354. "hyperf/rpc": "~3.1.0",
  3355. "hyperf/serializer": "~3.1.0",
  3356. "hyperf/support": "~3.1.0",
  3357. "hyperf/utils": "~3.1.0",
  3358. "php": ">=8.1",
  3359. "psr/container": "^1.0 || ^2.0",
  3360. "swow/psr7-plus": "^1.0"
  3361. },
  3362. "suggest": {
  3363. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3364. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3365. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3366. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3367. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3368. },
  3369. "type": "library",
  3370. "extra": {
  3371. "hyperf": {
  3372. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3373. },
  3374. "branch-alias": {
  3375. "dev-master": "3.1-dev"
  3376. }
  3377. },
  3378. "autoload": {
  3379. "psr-4": {
  3380. "Hyperf\\JsonRpc\\": "src/"
  3381. }
  3382. },
  3383. "notification-url": "https://packagist.org/downloads/",
  3384. "license": [
  3385. "MIT"
  3386. ],
  3387. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3388. "homepage": "https://hyperf.io",
  3389. "keywords": [
  3390. "hyperf",
  3391. "json-rpc",
  3392. "php",
  3393. "swoole"
  3394. ],
  3395. "support": {
  3396. "docs": "https://hyperf.wiki",
  3397. "issues": "https://github.com/hyperf/hyperf/issues",
  3398. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3399. "source": "https://github.com/hyperf/hyperf"
  3400. },
  3401. "funding": [
  3402. {
  3403. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3404. "type": "custom"
  3405. },
  3406. {
  3407. "url": "https://opencollective.com/hyperf",
  3408. "type": "open_collective"
  3409. }
  3410. ],
  3411. "time": "2024-11-28T01:51:55+00:00"
  3412. },
  3413. {
  3414. "name": "hyperf/load-balancer",
  3415. "version": "v3.1.42",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/hyperf/load-balancer.git",
  3419. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3424. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3425. "shasum": ""
  3426. },
  3427. "require": {
  3428. "hyperf/coordinator": "~3.1.0",
  3429. "hyperf/coroutine": "~3.1.0",
  3430. "markrogoyski/math-php": "^2.0",
  3431. "php": ">=8.1",
  3432. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3433. },
  3434. "type": "library",
  3435. "extra": {
  3436. "branch-alias": {
  3437. "dev-master": "3.1-dev"
  3438. },
  3439. "hyperf": {
  3440. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3441. }
  3442. },
  3443. "autoload": {
  3444. "psr-4": {
  3445. "Hyperf\\LoadBalancer\\": "src/"
  3446. }
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "description": "A load balancer library for Hyperf.",
  3453. "homepage": "https://hyperf.io",
  3454. "keywords": [
  3455. "hyperf",
  3456. "load-balancer",
  3457. "php",
  3458. "swoole"
  3459. ],
  3460. "support": {
  3461. "docs": "https://hyperf.wiki",
  3462. "issues": "https://github.com/hyperf/hyperf/issues",
  3463. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3464. "source": "https://github.com/hyperf/hyperf"
  3465. },
  3466. "funding": [
  3467. {
  3468. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3469. "type": "custom"
  3470. },
  3471. {
  3472. "url": "https://opencollective.com/hyperf",
  3473. "type": "open_collective"
  3474. }
  3475. ],
  3476. "time": "2024-09-25T02:54:12+00:00"
  3477. },
  3478. {
  3479. "name": "hyperf/logger",
  3480. "version": "v3.1.42",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/hyperf/logger.git",
  3484. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3489. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3490. "shasum": ""
  3491. },
  3492. "require": {
  3493. "hyperf/contract": "~3.1.0",
  3494. "hyperf/support": "~3.1.0",
  3495. "hyperf/utils": "~3.1.0",
  3496. "monolog/monolog": "^2.7 || ^3.1",
  3497. "php": ">=8.1",
  3498. "psr/container": "^1.0 || ^2.0",
  3499. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3500. },
  3501. "type": "library",
  3502. "extra": {
  3503. "branch-alias": {
  3504. "dev-master": "3.1-dev"
  3505. },
  3506. "hyperf": {
  3507. "config": "Hyperf\\Logger\\ConfigProvider"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Hyperf\\Logger\\": "src/"
  3513. }
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "description": "A logger component for hyperf.",
  3520. "homepage": "https://hyperf.io",
  3521. "keywords": [
  3522. "hyperf",
  3523. "logger",
  3524. "php"
  3525. ],
  3526. "support": {
  3527. "docs": "https://hyperf.wiki",
  3528. "issues": "https://github.com/hyperf/hyperf/issues",
  3529. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3530. "source": "https://github.com/hyperf/hyperf"
  3531. },
  3532. "funding": [
  3533. {
  3534. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3535. "type": "custom"
  3536. },
  3537. {
  3538. "url": "https://opencollective.com/hyperf",
  3539. "type": "open_collective"
  3540. }
  3541. ],
  3542. "time": "2024-09-25T02:54:12+00:00"
  3543. },
  3544. {
  3545. "name": "hyperf/macroable",
  3546. "version": "v3.1.42",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/hyperf/macroable.git",
  3550. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3555. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": ">=8.1"
  3560. },
  3561. "type": "library",
  3562. "extra": {
  3563. "branch-alias": {
  3564. "dev-master": "3.1-dev"
  3565. }
  3566. },
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Hyperf\\Macroable\\": "src/"
  3570. }
  3571. },
  3572. "notification-url": "https://packagist.org/downloads/",
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3577. "homepage": "https://hyperf.io",
  3578. "keywords": [
  3579. "hyperf",
  3580. "macroable",
  3581. "php",
  3582. "swoole"
  3583. ],
  3584. "support": {
  3585. "docs": "https://hyperf.wiki",
  3586. "issues": "https://github.com/hyperf/hyperf/issues",
  3587. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3588. "source": "https://github.com/hyperf/hyperf"
  3589. },
  3590. "funding": [
  3591. {
  3592. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3593. "type": "custom"
  3594. },
  3595. {
  3596. "url": "https://opencollective.com/hyperf",
  3597. "type": "open_collective"
  3598. }
  3599. ],
  3600. "time": "2024-09-25T02:54:12+00:00"
  3601. },
  3602. {
  3603. "name": "hyperf/memory",
  3604. "version": "v3.1.42",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://github.com/hyperf/memory.git",
  3608. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3613. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3614. "shasum": ""
  3615. },
  3616. "require": {
  3617. "php": ">=8.1"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "3.1-dev"
  3623. },
  3624. "hyperf": {
  3625. "config": "Hyperf\\Memory\\ConfigProvider"
  3626. }
  3627. },
  3628. "autoload": {
  3629. "psr-4": {
  3630. "Hyperf\\Memory\\": "src/"
  3631. }
  3632. },
  3633. "notification-url": "https://packagist.org/downloads/",
  3634. "license": [
  3635. "MIT"
  3636. ],
  3637. "description": "An independent component that use to operate and manage memory.",
  3638. "homepage": "https://hyperf.io",
  3639. "keywords": [
  3640. "hyperf",
  3641. "memory",
  3642. "php",
  3643. "swoole"
  3644. ],
  3645. "support": {
  3646. "docs": "https://hyperf.wiki",
  3647. "issues": "https://github.com/hyperf/hyperf/issues",
  3648. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3649. "source": "https://github.com/hyperf/hyperf"
  3650. },
  3651. "funding": [
  3652. {
  3653. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3654. "type": "custom"
  3655. },
  3656. {
  3657. "url": "https://opencollective.com/hyperf",
  3658. "type": "open_collective"
  3659. }
  3660. ],
  3661. "time": "2024-09-25T02:54:12+00:00"
  3662. },
  3663. {
  3664. "name": "hyperf/model-listener",
  3665. "version": "v3.1.42",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/hyperf/model-listener.git",
  3669. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3674. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "hyperf/contract": "~3.1.0",
  3679. "hyperf/database": "~3.1.0",
  3680. "hyperf/di": "~3.1.0",
  3681. "hyperf/event": "~3.1.0",
  3682. "hyperf/support": "~3.1.0",
  3683. "hyperf/utils": "~3.1.0",
  3684. "php": ">=8.1",
  3685. "psr/container": "^1.0 || ^2.0"
  3686. },
  3687. "type": "library",
  3688. "extra": {
  3689. "branch-alias": {
  3690. "dev-master": "3.1-dev"
  3691. },
  3692. "hyperf": {
  3693. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3694. }
  3695. },
  3696. "autoload": {
  3697. "psr-4": {
  3698. "Hyperf\\ModelListener\\": "src/"
  3699. }
  3700. },
  3701. "notification-url": "https://packagist.org/downloads/",
  3702. "license": [
  3703. "MIT"
  3704. ],
  3705. "description": "A model listener for Hyperf.",
  3706. "homepage": "https://hyperf.io",
  3707. "keywords": [
  3708. "hyperf",
  3709. "model-listener",
  3710. "php",
  3711. "swoole"
  3712. ],
  3713. "support": {
  3714. "docs": "https://hyperf.wiki",
  3715. "issues": "https://github.com/hyperf/hyperf/issues",
  3716. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3717. "source": "https://github.com/hyperf/hyperf"
  3718. },
  3719. "funding": [
  3720. {
  3721. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3722. "type": "custom"
  3723. },
  3724. {
  3725. "url": "https://opencollective.com/hyperf",
  3726. "type": "open_collective"
  3727. }
  3728. ],
  3729. "time": "2024-09-25T02:54:12+00:00"
  3730. },
  3731. {
  3732. "name": "hyperf/nacos",
  3733. "version": "v3.1.42",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/hyperf/nacos.git",
  3737. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3742. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3743. "shasum": ""
  3744. },
  3745. "require": {
  3746. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3747. "hyperf/codec": "~3.1.0",
  3748. "hyperf/contract": "~3.1.0",
  3749. "hyperf/support": "~3.1.0",
  3750. "hyperf/utils": "~3.1.0",
  3751. "jetbrains/phpstorm-attributes": "^1.0",
  3752. "php": ">=8.1"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "3.1-dev"
  3758. },
  3759. "hyperf": {
  3760. "config": "Hyperf\\Nacos\\ConfigProvider"
  3761. }
  3762. },
  3763. "autoload": {
  3764. "psr-4": {
  3765. "Hyperf\\Nacos\\": "src/"
  3766. }
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "description": "Nacos SDK",
  3773. "keywords": [
  3774. "hyperf",
  3775. "nacos",
  3776. "php"
  3777. ],
  3778. "support": {
  3779. "issues": "https://github.com/hyperf/nacos/issues",
  3780. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3781. },
  3782. "funding": [
  3783. {
  3784. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://opencollective.com/hyperf",
  3789. "type": "open_collective"
  3790. }
  3791. ],
  3792. "time": "2024-09-25T02:54:12+00:00"
  3793. },
  3794. {
  3795. "name": "hyperf/pipeline",
  3796. "version": "v3.1.42",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/hyperf/pipeline.git",
  3800. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3805. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=8.1",
  3810. "psr/container": "^1.0 || ^2.0"
  3811. },
  3812. "type": "library",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-master": "3.1-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "psr-4": {
  3820. "Hyperf\\Pipeline\\": "src/"
  3821. }
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3828. "homepage": "https://hyperf.io",
  3829. "keywords": [
  3830. "hyperf",
  3831. "php",
  3832. "pipeline",
  3833. "swoole"
  3834. ],
  3835. "support": {
  3836. "docs": "https://hyperf.wiki",
  3837. "issues": "https://github.com/hyperf/hyperf/issues",
  3838. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3839. "source": "https://github.com/hyperf/hyperf"
  3840. },
  3841. "funding": [
  3842. {
  3843. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3844. "type": "custom"
  3845. },
  3846. {
  3847. "url": "https://opencollective.com/hyperf",
  3848. "type": "open_collective"
  3849. }
  3850. ],
  3851. "time": "2024-09-25T02:54:12+00:00"
  3852. },
  3853. {
  3854. "name": "hyperf/pool",
  3855. "version": "v3.1.42",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/hyperf/pool.git",
  3859. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3864. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3865. "shasum": ""
  3866. },
  3867. "require": {
  3868. "hyperf/contract": "~3.1.0",
  3869. "hyperf/support": "~3.1.0",
  3870. "hyperf/utils": "~3.1.0",
  3871. "php": ">=8.1",
  3872. "psr/container": "^1.0 || ^2.0"
  3873. },
  3874. "suggest": {
  3875. "psr/event-dispatcher": "Required to use events."
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "3.1-dev"
  3881. },
  3882. "hyperf": {
  3883. "config": "Hyperf\\Pool\\ConfigProvider"
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Hyperf\\Pool\\": "src/"
  3889. }
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "description": "An independent universal connection pool component.",
  3896. "homepage": "https://hyperf.io",
  3897. "keywords": [
  3898. "connection-pool",
  3899. "hyperf",
  3900. "php",
  3901. "swoole"
  3902. ],
  3903. "support": {
  3904. "docs": "https://hyperf.wiki",
  3905. "issues": "https://github.com/hyperf/hyperf/issues",
  3906. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3907. "source": "https://github.com/hyperf/hyperf"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3912. "type": "custom"
  3913. },
  3914. {
  3915. "url": "https://opencollective.com/hyperf",
  3916. "type": "open_collective"
  3917. }
  3918. ],
  3919. "time": "2024-09-25T02:54:12+00:00"
  3920. },
  3921. {
  3922. "name": "hyperf/process",
  3923. "version": "v3.1.42",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/hyperf/process.git",
  3927. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3932. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3933. "shasum": ""
  3934. },
  3935. "require": {
  3936. "hyperf/contract": "~3.1.0",
  3937. "hyperf/support": "~3.1.0",
  3938. "hyperf/utils": "~3.1.0",
  3939. "php": ">=8.1",
  3940. "psr/container": "^1.0 || ^2.0",
  3941. "psr/event-dispatcher": "^1.0"
  3942. },
  3943. "suggest": {
  3944. "hyperf/di": "Required to use annotations.",
  3945. "hyperf/event": "Required to dump the message before and after process.",
  3946. "hyperf/framework": "Required to use BootProcessListener."
  3947. },
  3948. "type": "library",
  3949. "extra": {
  3950. "hyperf": {
  3951. "config": "Hyperf\\Process\\ConfigProvider"
  3952. },
  3953. "branch-alias": {
  3954. "dev-master": "3.1-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Hyperf\\Process\\": "src/"
  3960. }
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "MIT"
  3965. ],
  3966. "description": "A process component for hyperf.",
  3967. "homepage": "https://hyperf.io",
  3968. "keywords": [
  3969. "hyperf",
  3970. "php",
  3971. "process"
  3972. ],
  3973. "support": {
  3974. "docs": "https://hyperf.wiki",
  3975. "issues": "https://github.com/hyperf/hyperf/issues",
  3976. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3977. "source": "https://github.com/hyperf/hyperf"
  3978. },
  3979. "funding": [
  3980. {
  3981. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3982. "type": "custom"
  3983. },
  3984. {
  3985. "url": "https://opencollective.com/hyperf",
  3986. "type": "open_collective"
  3987. }
  3988. ],
  3989. "time": "2024-09-25T02:54:12+00:00"
  3990. },
  3991. {
  3992. "name": "hyperf/redis",
  3993. "version": "v3.1.42",
  3994. "source": {
  3995. "type": "git",
  3996. "url": "https://github.com/hyperf/redis.git",
  3997. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3998. },
  3999. "dist": {
  4000. "type": "zip",
  4001. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  4002. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  4003. "shasum": ""
  4004. },
  4005. "require": {
  4006. "ext-redis": "^5.0 || ^6.0",
  4007. "hyperf/contract": "~3.1.0",
  4008. "hyperf/pool": "~3.1.0",
  4009. "hyperf/support": "~3.1.0",
  4010. "hyperf/tappable": "~3.1.0",
  4011. "hyperf/utils": "~3.1.0",
  4012. "php": ">=8.1",
  4013. "psr/container": "^1.0 || ^2.0"
  4014. },
  4015. "suggest": {
  4016. "ext-redis": "Required to use sentinel mode (>=5.2).",
  4017. "hyperf/di": "Create the RedisPool via dependency injection."
  4018. },
  4019. "type": "library",
  4020. "extra": {
  4021. "branch-alias": {
  4022. "dev-master": "3.1-dev"
  4023. },
  4024. "hyperf": {
  4025. "config": "Hyperf\\Redis\\ConfigProvider"
  4026. }
  4027. },
  4028. "autoload": {
  4029. "psr-4": {
  4030. "Hyperf\\Redis\\": "src/"
  4031. }
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "description": "A redis component for hyperf.",
  4038. "homepage": "https://hyperf.io",
  4039. "keywords": [
  4040. "hyperf",
  4041. "php",
  4042. "pool",
  4043. "redis"
  4044. ],
  4045. "support": {
  4046. "docs": "https://hyperf.wiki",
  4047. "issues": "https://github.com/hyperf/hyperf/issues",
  4048. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4049. "source": "https://github.com/hyperf/hyperf"
  4050. },
  4051. "funding": [
  4052. {
  4053. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4054. "type": "custom"
  4055. },
  4056. {
  4057. "url": "https://opencollective.com/hyperf",
  4058. "type": "open_collective"
  4059. }
  4060. ],
  4061. "time": "2024-09-25T02:54:12+00:00"
  4062. },
  4063. {
  4064. "name": "hyperf/rpc",
  4065. "version": "v3.1.42",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/hyperf/rpc.git",
  4069. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4074. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "hyperf/codec": "~3.1.0",
  4079. "hyperf/contract": "~3.1.0",
  4080. "hyperf/support": "~3.1.0",
  4081. "jetbrains/phpstorm-attributes": "^1.0",
  4082. "php": ">=8.1"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "3.1-dev"
  4088. },
  4089. "hyperf": []
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Hyperf\\Rpc\\": "src/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "description": "A rpc basic library for Hyperf.",
  4101. "homepage": "https://hyperf.io",
  4102. "keywords": [
  4103. "hyperf",
  4104. "php",
  4105. "rpc",
  4106. "swoole"
  4107. ],
  4108. "support": {
  4109. "docs": "https://hyperf.wiki",
  4110. "issues": "https://github.com/hyperf/hyperf/issues",
  4111. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4112. "source": "https://github.com/hyperf/hyperf"
  4113. },
  4114. "funding": [
  4115. {
  4116. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4117. "type": "custom"
  4118. },
  4119. {
  4120. "url": "https://opencollective.com/hyperf",
  4121. "type": "open_collective"
  4122. }
  4123. ],
  4124. "time": "2024-09-25T02:54:12+00:00"
  4125. },
  4126. {
  4127. "name": "hyperf/rpc-client",
  4128. "version": "v3.1.42",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://github.com/hyperf/rpc-client.git",
  4132. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4137. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4138. "shasum": ""
  4139. },
  4140. "require": {
  4141. "hyperf/code-parser": "~3.1.0",
  4142. "hyperf/load-balancer": "~3.1.0",
  4143. "hyperf/rpc": "~3.1.0",
  4144. "hyperf/support": "~3.1.0",
  4145. "hyperf/utils": "~3.1.0",
  4146. "jetbrains/phpstorm-attributes": "^1.0",
  4147. "php": ">=8.1",
  4148. "psr/container": "^1.0 || ^2.0"
  4149. },
  4150. "suggest": {
  4151. "hyperf/di": "For better container experience.",
  4152. "hyperf/pool": "Required to use connection pool.",
  4153. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4154. },
  4155. "type": "library",
  4156. "extra": {
  4157. "branch-alias": {
  4158. "dev-master": "3.1-dev"
  4159. },
  4160. "hyperf": {
  4161. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Hyperf\\RpcClient\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "description": "An abstract rpc server component for Hyperf.",
  4174. "homepage": "https://hyperf.io",
  4175. "keywords": [
  4176. "hyperf",
  4177. "json-rpc",
  4178. "php",
  4179. "rpc",
  4180. "rpc-client",
  4181. "swoole"
  4182. ],
  4183. "support": {
  4184. "docs": "https://hyperf.wiki",
  4185. "issues": "https://github.com/hyperf/hyperf/issues",
  4186. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4187. "source": "https://github.com/hyperf/hyperf"
  4188. },
  4189. "funding": [
  4190. {
  4191. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4192. "type": "custom"
  4193. },
  4194. {
  4195. "url": "https://opencollective.com/hyperf",
  4196. "type": "open_collective"
  4197. }
  4198. ],
  4199. "time": "2024-09-25T02:54:12+00:00"
  4200. },
  4201. {
  4202. "name": "hyperf/rpc-server",
  4203. "version": "v3.1.42",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/hyperf/rpc-server.git",
  4207. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4212. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4213. "shasum": ""
  4214. },
  4215. "require": {
  4216. "hyperf/http-server": "~3.1.0",
  4217. "hyperf/rpc": "~3.1.0",
  4218. "php": ">=8.1"
  4219. },
  4220. "suggest": {
  4221. "hyperf/di": "Required to use annotations."
  4222. },
  4223. "type": "library",
  4224. "extra": {
  4225. "branch-alias": {
  4226. "dev-master": "3.1-dev"
  4227. },
  4228. "hyperf": {
  4229. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4230. }
  4231. },
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Hyperf\\RpcServer\\": "src/"
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "description": "An abstract rpc server component for Hyperf.",
  4242. "homepage": "https://hyperf.io",
  4243. "keywords": [
  4244. "hyperf",
  4245. "php",
  4246. "rpc",
  4247. "rpc-server",
  4248. "swoole"
  4249. ],
  4250. "support": {
  4251. "docs": "https://hyperf.wiki",
  4252. "issues": "https://github.com/hyperf/hyperf/issues",
  4253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4254. "source": "https://github.com/hyperf/hyperf"
  4255. },
  4256. "funding": [
  4257. {
  4258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4259. "type": "custom"
  4260. },
  4261. {
  4262. "url": "https://opencollective.com/hyperf",
  4263. "type": "open_collective"
  4264. }
  4265. ],
  4266. "time": "2024-09-25T02:54:12+00:00"
  4267. },
  4268. {
  4269. "name": "hyperf/serializer",
  4270. "version": "v3.1.42",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/hyperf/serializer.git",
  4274. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4279. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "hyperf/contract": "~3.1.0",
  4284. "php": ">=8.1"
  4285. },
  4286. "suggest": {
  4287. "hyperf/di": "Required to use ExceptionNormalizer",
  4288. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4289. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4290. },
  4291. "type": "library",
  4292. "extra": {
  4293. "branch-alias": {
  4294. "dev-master": "3.1-dev"
  4295. },
  4296. "hyperf": {
  4297. "config": "Hyperf\\Serializer\\ConfigProvider"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "psr-4": {
  4302. "Hyperf\\Serializer\\": "src/"
  4303. }
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "MIT"
  4308. ],
  4309. "description": "A serializer component for Hyperf.",
  4310. "homepage": "https://hyperf.io",
  4311. "keywords": [
  4312. "hyperf",
  4313. "php",
  4314. "swoole",
  4315. "tappable"
  4316. ],
  4317. "support": {
  4318. "docs": "https://hyperf.wiki",
  4319. "issues": "https://github.com/hyperf/hyperf/issues",
  4320. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4321. "source": "https://github.com/hyperf/hyperf"
  4322. },
  4323. "funding": [
  4324. {
  4325. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4326. "type": "custom"
  4327. },
  4328. {
  4329. "url": "https://opencollective.com/hyperf",
  4330. "type": "open_collective"
  4331. }
  4332. ],
  4333. "time": "2024-09-25T02:54:12+00:00"
  4334. },
  4335. {
  4336. "name": "hyperf/server",
  4337. "version": "v3.1.42",
  4338. "source": {
  4339. "type": "git",
  4340. "url": "https://github.com/hyperf/server.git",
  4341. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4342. },
  4343. "dist": {
  4344. "type": "zip",
  4345. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4346. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4347. "shasum": ""
  4348. },
  4349. "require": {
  4350. "hyperf/contract": "~3.1.0",
  4351. "hyperf/coordinator": "~3.1.0",
  4352. "hyperf/engine": "^2.8",
  4353. "hyperf/support": "~3.1.0",
  4354. "hyperf/tappable": "~3.1.0",
  4355. "php": ">=8.1",
  4356. "psr/container": "^1.0 || ^2.0",
  4357. "psr/event-dispatcher": "^1.0",
  4358. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4359. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4360. },
  4361. "suggest": {
  4362. "hyperf/event": "Dump the info after server start.",
  4363. "hyperf/framework": "Dump the info after server start."
  4364. },
  4365. "type": "library",
  4366. "extra": {
  4367. "branch-alias": {
  4368. "dev-master": "3.1-dev"
  4369. },
  4370. "hyperf": {
  4371. "config": "Hyperf\\Server\\ConfigProvider"
  4372. }
  4373. },
  4374. "autoload": {
  4375. "psr-4": {
  4376. "Hyperf\\Server\\": "src/"
  4377. }
  4378. },
  4379. "notification-url": "https://packagist.org/downloads/",
  4380. "license": [
  4381. "MIT"
  4382. ],
  4383. "description": "A base server library for Hyperf.",
  4384. "homepage": "https://hyperf.io",
  4385. "keywords": [
  4386. "hyperf",
  4387. "php",
  4388. "server",
  4389. "swoole"
  4390. ],
  4391. "support": {
  4392. "docs": "https://hyperf.wiki",
  4393. "issues": "https://github.com/hyperf/hyperf/issues",
  4394. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4395. "source": "https://github.com/hyperf/hyperf"
  4396. },
  4397. "funding": [
  4398. {
  4399. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4400. "type": "custom"
  4401. },
  4402. {
  4403. "url": "https://opencollective.com/hyperf",
  4404. "type": "open_collective"
  4405. }
  4406. ],
  4407. "time": "2024-09-25T02:54:12+00:00"
  4408. },
  4409. {
  4410. "name": "hyperf/service-governance",
  4411. "version": "v3.1.42",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/hyperf/service-governance.git",
  4415. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4420. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "hyperf/contract": "~3.1.0",
  4425. "hyperf/support": "~3.1.0",
  4426. "jetbrains/phpstorm-attributes": "^1.0",
  4427. "php": ">=8.1"
  4428. },
  4429. "suggest": {
  4430. "hyperf/event": "Required to use RegisterServiceListener.",
  4431. "hyperf/framework": "Required to use RegisterServiceListener.",
  4432. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4433. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4434. },
  4435. "type": "library",
  4436. "extra": {
  4437. "branch-alias": {
  4438. "dev-master": "3.1-dev"
  4439. },
  4440. "hyperf": {
  4441. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4442. }
  4443. },
  4444. "autoload": {
  4445. "psr-4": {
  4446. "Hyperf\\ServiceGovernance\\": "src/"
  4447. }
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "MIT"
  4452. ],
  4453. "description": "A service governance component for Hyperf.",
  4454. "homepage": "https://hyperf.io",
  4455. "keywords": [
  4456. "hyperf",
  4457. "php",
  4458. "service-governance",
  4459. "swoole"
  4460. ],
  4461. "support": {
  4462. "docs": "https://hyperf.wiki",
  4463. "issues": "https://github.com/hyperf/hyperf/issues",
  4464. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4465. "source": "https://github.com/hyperf/hyperf"
  4466. },
  4467. "funding": [
  4468. {
  4469. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4470. "type": "custom"
  4471. },
  4472. {
  4473. "url": "https://opencollective.com/hyperf",
  4474. "type": "open_collective"
  4475. }
  4476. ],
  4477. "time": "2024-09-25T02:54:12+00:00"
  4478. },
  4479. {
  4480. "name": "hyperf/service-governance-consul",
  4481. "version": "v3.1.42",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/hyperf/service-governance-consul.git",
  4485. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4490. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "hyperf/consul": "~3.1.0",
  4495. "hyperf/contract": "~3.1.0",
  4496. "hyperf/service-governance": "~3.1.0",
  4497. "hyperf/support": "~3.1.0",
  4498. "hyperf/utils": "~3.1.0",
  4499. "php": ">=8.1"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "3.1-dev"
  4505. },
  4506. "hyperf": {
  4507. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "psr-4": {
  4512. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "description": "A consul adapter for service governance.",
  4520. "homepage": "https://hyperf.io",
  4521. "keywords": [
  4522. "consul-adapter",
  4523. "hyperf",
  4524. "php",
  4525. "service-governance",
  4526. "swoole"
  4527. ],
  4528. "support": {
  4529. "docs": "https://hyperf.wiki",
  4530. "issues": "https://github.com/hyperf/hyperf/issues",
  4531. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4532. "source": "https://github.com/hyperf/hyperf"
  4533. },
  4534. "funding": [
  4535. {
  4536. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4537. "type": "custom"
  4538. },
  4539. {
  4540. "url": "https://opencollective.com/hyperf",
  4541. "type": "open_collective"
  4542. }
  4543. ],
  4544. "time": "2024-09-25T02:54:12+00:00"
  4545. },
  4546. {
  4547. "name": "hyperf/service-governance-nacos",
  4548. "version": "v3.1.42",
  4549. "source": {
  4550. "type": "git",
  4551. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4552. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4553. },
  4554. "dist": {
  4555. "type": "zip",
  4556. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4557. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4558. "shasum": ""
  4559. },
  4560. "require": {
  4561. "hyperf/codec": "~3.1.0",
  4562. "hyperf/contract": "~3.1.0",
  4563. "hyperf/nacos": "~3.1.0",
  4564. "hyperf/service-governance": "~3.1.0",
  4565. "hyperf/support": "~3.1.0",
  4566. "hyperf/utils": "~3.1.0",
  4567. "php": ">=8.1"
  4568. },
  4569. "type": "library",
  4570. "extra": {
  4571. "branch-alias": {
  4572. "dev-master": "3.1-dev"
  4573. },
  4574. "hyperf": {
  4575. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "psr-4": {
  4580. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4581. }
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "description": "A nacos adapter for service governance.",
  4588. "homepage": "https://hyperf.io",
  4589. "keywords": [
  4590. "hyperf",
  4591. "nacos-adapter",
  4592. "php",
  4593. "service-governance",
  4594. "swoole"
  4595. ],
  4596. "support": {
  4597. "docs": "https://hyperf.wiki",
  4598. "issues": "https://github.com/hyperf/hyperf/issues",
  4599. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4600. "source": "https://github.com/hyperf/hyperf"
  4601. },
  4602. "funding": [
  4603. {
  4604. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4605. "type": "custom"
  4606. },
  4607. {
  4608. "url": "https://opencollective.com/hyperf",
  4609. "type": "open_collective"
  4610. }
  4611. ],
  4612. "time": "2024-09-25T02:54:12+00:00"
  4613. },
  4614. {
  4615. "name": "hyperf/snowflake",
  4616. "version": "v3.1.42",
  4617. "source": {
  4618. "type": "git",
  4619. "url": "https://github.com/hyperf/snowflake.git",
  4620. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4621. },
  4622. "dist": {
  4623. "type": "zip",
  4624. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4625. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4626. "shasum": ""
  4627. },
  4628. "require": {
  4629. "hyperf/contract": "~3.1.0",
  4630. "php": ">=8.1"
  4631. },
  4632. "suggest": {
  4633. "hyperf/config": "Required to read snowflake config.",
  4634. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4635. "psr/container": "Required to use MetaGeneratorFactory."
  4636. },
  4637. "type": "library",
  4638. "extra": {
  4639. "branch-alias": {
  4640. "dev-master": "3.1-dev"
  4641. },
  4642. "hyperf": {
  4643. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4644. }
  4645. },
  4646. "autoload": {
  4647. "psr-4": {
  4648. "Hyperf\\Snowflake\\": "src/"
  4649. }
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "description": "A snowflake library",
  4656. "homepage": "https://hyperf.io",
  4657. "keywords": [
  4658. "php",
  4659. "snowflake"
  4660. ],
  4661. "support": {
  4662. "docs": "https://hyperf.wiki",
  4663. "issues": "https://github.com/hyperf/hyperf/issues",
  4664. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4665. "source": "https://github.com/hyperf/hyperf"
  4666. },
  4667. "funding": [
  4668. {
  4669. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4670. "type": "custom"
  4671. },
  4672. {
  4673. "url": "https://opencollective.com/hyperf",
  4674. "type": "open_collective"
  4675. }
  4676. ],
  4677. "time": "2024-09-25T02:54:12+00:00"
  4678. },
  4679. {
  4680. "name": "hyperf/stdlib",
  4681. "version": "v3.1.42",
  4682. "source": {
  4683. "type": "git",
  4684. "url": "https://github.com/hyperf/stdlib.git",
  4685. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4686. },
  4687. "dist": {
  4688. "type": "zip",
  4689. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4690. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4691. "shasum": ""
  4692. },
  4693. "require": {
  4694. "php": ">=8.1"
  4695. },
  4696. "type": "library",
  4697. "extra": {
  4698. "branch-alias": {
  4699. "dev-master": "3.1-dev"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "psr-4": {
  4704. "Hyperf\\Stdlib\\": "src/"
  4705. }
  4706. },
  4707. "notification-url": "https://packagist.org/downloads/",
  4708. "license": [
  4709. "MIT"
  4710. ],
  4711. "description": "A stdlib component for Hyperf.",
  4712. "homepage": "https://hyperf.io",
  4713. "keywords": [
  4714. "hyperf",
  4715. "php",
  4716. "stdlib",
  4717. "swoole"
  4718. ],
  4719. "support": {
  4720. "docs": "https://hyperf.wiki",
  4721. "issues": "https://github.com/hyperf/hyperf/issues",
  4722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4723. "source": "https://github.com/hyperf/hyperf"
  4724. },
  4725. "funding": [
  4726. {
  4727. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4728. "type": "custom"
  4729. },
  4730. {
  4731. "url": "https://opencollective.com/hyperf",
  4732. "type": "open_collective"
  4733. }
  4734. ],
  4735. "time": "2024-09-25T02:54:12+00:00"
  4736. },
  4737. {
  4738. "name": "hyperf/stringable",
  4739. "version": "v3.1.43",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/hyperf/stringable.git",
  4743. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4748. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4749. "shasum": ""
  4750. },
  4751. "require": {
  4752. "ext-mbstring": "*",
  4753. "hyperf/collection": "~3.1.0",
  4754. "hyperf/conditionable": "~3.1.0",
  4755. "hyperf/macroable": "~3.1.0",
  4756. "hyperf/tappable": "~3.1.0",
  4757. "php": ">=8.1"
  4758. },
  4759. "suggest": {
  4760. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4761. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4762. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "branch-alias": {
  4767. "dev-master": "3.1-dev"
  4768. }
  4769. },
  4770. "autoload": {
  4771. "files": [
  4772. "src/Functions.php"
  4773. ],
  4774. "psr-4": {
  4775. "Hyperf\\Stringable\\": "src/"
  4776. }
  4777. },
  4778. "notification-url": "https://packagist.org/downloads/",
  4779. "license": [
  4780. "MIT"
  4781. ],
  4782. "description": "Hyperf Stringable package which come from illuminate/support",
  4783. "homepage": "https://hyperf.io",
  4784. "keywords": [
  4785. "hyperf",
  4786. "php",
  4787. "stringable",
  4788. "swoole"
  4789. ],
  4790. "support": {
  4791. "docs": "https://hyperf.wiki",
  4792. "issues": "https://github.com/hyperf/hyperf/issues",
  4793. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4794. "source": "https://github.com/hyperf/hyperf"
  4795. },
  4796. "funding": [
  4797. {
  4798. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4799. "type": "custom"
  4800. },
  4801. {
  4802. "url": "https://opencollective.com/hyperf",
  4803. "type": "open_collective"
  4804. }
  4805. ],
  4806. "time": "2024-10-09T02:28:40+00:00"
  4807. },
  4808. {
  4809. "name": "hyperf/support",
  4810. "version": "v3.1.47",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://github.com/hyperf/support.git",
  4814. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4819. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4820. "shasum": ""
  4821. },
  4822. "require": {
  4823. "hyperf/collection": "~3.1.0",
  4824. "hyperf/context": "~3.1.0",
  4825. "hyperf/contract": "~3.1.0",
  4826. "hyperf/coroutine": "~3.1.0",
  4827. "hyperf/macroable": "~3.1.0",
  4828. "hyperf/stringable": "~3.1.0",
  4829. "php": ">=8.1"
  4830. },
  4831. "suggest": {
  4832. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "branch-alias": {
  4837. "dev-master": "3.1-dev"
  4838. }
  4839. },
  4840. "autoload": {
  4841. "files": [
  4842. "src/Functions.php"
  4843. ],
  4844. "psr-4": {
  4845. "Hyperf\\Support\\": "src/"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "description": "A support component for Hyperf.",
  4853. "homepage": "https://hyperf.io",
  4854. "keywords": [
  4855. "hyperf",
  4856. "php",
  4857. "support",
  4858. "swoole"
  4859. ],
  4860. "support": {
  4861. "docs": "https://hyperf.wiki",
  4862. "issues": "https://github.com/hyperf/hyperf/issues",
  4863. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4864. "source": "https://github.com/hyperf/hyperf"
  4865. },
  4866. "funding": [
  4867. {
  4868. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4869. "type": "custom"
  4870. },
  4871. {
  4872. "url": "https://opencollective.com/hyperf",
  4873. "type": "open_collective"
  4874. }
  4875. ],
  4876. "time": "2024-11-28T01:51:55+00:00"
  4877. },
  4878. {
  4879. "name": "hyperf/tappable",
  4880. "version": "v3.1.42",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/hyperf/tappable.git",
  4884. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4889. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4890. "shasum": ""
  4891. },
  4892. "require": {
  4893. "php": ">=8.1"
  4894. },
  4895. "type": "library",
  4896. "extra": {
  4897. "branch-alias": {
  4898. "dev-master": "3.1-dev"
  4899. }
  4900. },
  4901. "autoload": {
  4902. "files": [
  4903. "src/Functions.php"
  4904. ],
  4905. "psr-4": {
  4906. "Hyperf\\Tappable\\": "src/"
  4907. }
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "MIT"
  4912. ],
  4913. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4914. "homepage": "https://hyperf.io",
  4915. "keywords": [
  4916. "hyperf",
  4917. "php",
  4918. "swoole",
  4919. "tappable"
  4920. ],
  4921. "support": {
  4922. "docs": "https://hyperf.wiki",
  4923. "issues": "https://github.com/hyperf/hyperf/issues",
  4924. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4925. "source": "https://github.com/hyperf/hyperf"
  4926. },
  4927. "funding": [
  4928. {
  4929. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4930. "type": "custom"
  4931. },
  4932. {
  4933. "url": "https://opencollective.com/hyperf",
  4934. "type": "open_collective"
  4935. }
  4936. ],
  4937. "time": "2024-09-25T02:54:12+00:00"
  4938. },
  4939. {
  4940. "name": "hyperf/translation",
  4941. "version": "v3.1.42",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://github.com/hyperf/translation.git",
  4945. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4950. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4951. "shasum": ""
  4952. },
  4953. "require": {
  4954. "hyperf/contract": "~3.1.0",
  4955. "hyperf/macroable": "~3.1.0",
  4956. "hyperf/support": "~3.1.0",
  4957. "hyperf/utils": "~3.1.0",
  4958. "php": ">=8.1",
  4959. "psr/container": "^1.0 || ^2.0"
  4960. },
  4961. "type": "library",
  4962. "extra": {
  4963. "branch-alias": {
  4964. "dev-master": "3.1-dev"
  4965. },
  4966. "hyperf": {
  4967. "config": "Hyperf\\Translation\\ConfigProvider"
  4968. }
  4969. },
  4970. "autoload": {
  4971. "files": [
  4972. "src/Functions.php"
  4973. ],
  4974. "psr-4": {
  4975. "Hyperf\\Translation\\": "src/"
  4976. }
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "description": "An independent translation component, forked by illuminate/translation.",
  4983. "keywords": [
  4984. "hyperf",
  4985. "translation"
  4986. ],
  4987. "support": {
  4988. "issues": "https://github.com/hyperf/translation/issues",
  4989. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4990. },
  4991. "funding": [
  4992. {
  4993. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4994. "type": "custom"
  4995. },
  4996. {
  4997. "url": "https://opencollective.com/hyperf",
  4998. "type": "open_collective"
  4999. }
  5000. ],
  5001. "time": "2024-09-25T02:54:12+00:00"
  5002. },
  5003. {
  5004. "name": "hyperf/utils",
  5005. "version": "v3.1.42",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/hyperf/utils.git",
  5009. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5014. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5015. "shasum": ""
  5016. },
  5017. "require": {
  5018. "doctrine/inflector": "^2.0",
  5019. "hyperf/code-parser": "~3.1.0",
  5020. "hyperf/codec": "~3.1.0",
  5021. "hyperf/collection": "~3.1.0",
  5022. "hyperf/context": "~3.1.0",
  5023. "hyperf/contract": "~3.1.0",
  5024. "hyperf/coordinator": "~3.1.0",
  5025. "hyperf/coroutine": "~3.1.0",
  5026. "hyperf/engine": "^2.0",
  5027. "hyperf/macroable": "~3.1.0",
  5028. "hyperf/serializer": "~3.1.0",
  5029. "hyperf/stringable": "~3.1.0",
  5030. "hyperf/support": "~3.1.0",
  5031. "php": ">=8.1"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "branch-alias": {
  5036. "dev-master": "3.1-dev"
  5037. }
  5038. },
  5039. "notification-url": "https://packagist.org/downloads/",
  5040. "license": [
  5041. "MIT"
  5042. ],
  5043. "description": "A tools package that could help developer solved the problem quickly.",
  5044. "homepage": "https://hyperf.io",
  5045. "keywords": [
  5046. "hyperf",
  5047. "php",
  5048. "swoole",
  5049. "utils"
  5050. ],
  5051. "support": {
  5052. "docs": "https://hyperf.wiki",
  5053. "issues": "https://github.com/hyperf/hyperf/issues",
  5054. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5055. "source": "https://github.com/hyperf/hyperf"
  5056. },
  5057. "funding": [
  5058. {
  5059. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5060. "type": "custom"
  5061. },
  5062. {
  5063. "url": "https://opencollective.com/hyperf",
  5064. "type": "open_collective"
  5065. }
  5066. ],
  5067. "time": "2024-09-25T02:54:12+00:00"
  5068. },
  5069. {
  5070. "name": "hyperf/validation",
  5071. "version": "v3.1.47",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://github.com/hyperf/validation.git",
  5075. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  5080. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  5081. "shasum": ""
  5082. },
  5083. "require": {
  5084. "egulias/email-validator": "^3.0",
  5085. "hyperf/collection": "~3.1.0",
  5086. "hyperf/conditionable": "~3.1.0",
  5087. "hyperf/contract": "~3.1.0",
  5088. "hyperf/di": "~3.1.0",
  5089. "hyperf/framework": "~3.1.0",
  5090. "hyperf/macroable": "~3.1.0",
  5091. "hyperf/stringable": "~3.1.0",
  5092. "hyperf/support": "~3.1.0",
  5093. "hyperf/tappable": "~3.1.0",
  5094. "hyperf/translation": "~3.1.0",
  5095. "hyperf/utils": "~3.1.0",
  5096. "nesbot/carbon": "^2.21",
  5097. "php": ">=8.1",
  5098. "psr/container": "^1.0 || ^2.0",
  5099. "psr/event-dispatcher": "^1.0",
  5100. "psr/http-message": "^1.0 || ^2.0"
  5101. },
  5102. "suggest": {
  5103. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5104. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5105. },
  5106. "type": "library",
  5107. "extra": {
  5108. "hyperf": {
  5109. "config": "Hyperf\\Validation\\ConfigProvider"
  5110. },
  5111. "branch-alias": {
  5112. "dev-master": "3.1-dev"
  5113. }
  5114. },
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Hyperf\\Validation\\": "src/"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "description": "hyperf validation",
  5125. "keywords": [
  5126. "hyperf",
  5127. "validation"
  5128. ],
  5129. "support": {
  5130. "issues": "https://github.com/hyperf/validation/issues",
  5131. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  5132. },
  5133. "funding": [
  5134. {
  5135. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5136. "type": "custom"
  5137. },
  5138. {
  5139. "url": "https://opencollective.com/hyperf",
  5140. "type": "open_collective"
  5141. }
  5142. ],
  5143. "time": "2024-11-28T01:51:55+00:00"
  5144. },
  5145. {
  5146. "name": "hyperf/websocket-server",
  5147. "version": "v3.1.42",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/hyperf/websocket-server.git",
  5151. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  5156. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "hyperf/collection": "~3.1.0",
  5161. "hyperf/contract": "~3.1.0",
  5162. "hyperf/exception-handler": "~3.1.0",
  5163. "hyperf/http-server": "~3.1.0",
  5164. "hyperf/support": "~3.1.0",
  5165. "hyperf/utils": "~3.1.0",
  5166. "php": ">=8.1",
  5167. "psr/container": "^1.0 || ^2.0",
  5168. "psr/event-dispatcher": "^1.0"
  5169. },
  5170. "type": "library",
  5171. "extra": {
  5172. "branch-alias": {
  5173. "dev-master": "3.1-dev"
  5174. },
  5175. "hyperf": {
  5176. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5177. }
  5178. },
  5179. "autoload": {
  5180. "psr-4": {
  5181. "Hyperf\\WebSocketServer\\": "src/"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "MIT"
  5187. ],
  5188. "description": "A websocket server library for Hyperf.",
  5189. "homepage": "https://hyperf.io",
  5190. "keywords": [
  5191. "hyperf",
  5192. "php",
  5193. "swoole",
  5194. "websocket"
  5195. ],
  5196. "support": {
  5197. "docs": "https://hyperf.wiki",
  5198. "issues": "https://github.com/hyperf/hyperf/issues",
  5199. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5200. "source": "https://github.com/hyperf/hyperf"
  5201. },
  5202. "funding": [
  5203. {
  5204. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5205. "type": "custom"
  5206. },
  5207. {
  5208. "url": "https://opencollective.com/hyperf",
  5209. "type": "open_collective"
  5210. }
  5211. ],
  5212. "time": "2024-09-25T02:54:12+00:00"
  5213. },
  5214. {
  5215. "name": "jetbrains/phpstorm-attributes",
  5216. "version": "1.2",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5220. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5225. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5226. "shasum": ""
  5227. },
  5228. "type": "library",
  5229. "autoload": {
  5230. "psr-4": {
  5231. "JetBrains\\PhpStorm\\": "src/"
  5232. }
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "Apache-2.0"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "JetBrains",
  5241. "homepage": "https://www.jetbrains.com"
  5242. }
  5243. ],
  5244. "description": "PhpStorm specific attributes",
  5245. "keywords": [
  5246. "attributes",
  5247. "jetbrains",
  5248. "phpstorm"
  5249. ],
  5250. "support": {
  5251. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5252. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5253. },
  5254. "time": "2024-10-11T10:46:19+00:00"
  5255. },
  5256. {
  5257. "name": "laminas/laminas-mime",
  5258. "version": "2.12.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://github.com/laminas/laminas-mime.git",
  5262. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5267. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5268. "shasum": ""
  5269. },
  5270. "require": {
  5271. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5272. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5273. },
  5274. "conflict": {
  5275. "zendframework/zend-mime": "*"
  5276. },
  5277. "require-dev": {
  5278. "laminas/laminas-coding-standard": "~2.4.0",
  5279. "laminas/laminas-mail": "^2.19.0",
  5280. "phpunit/phpunit": "~9.5.25"
  5281. },
  5282. "suggest": {
  5283. "laminas/laminas-mail": "Laminas\\Mail component"
  5284. },
  5285. "type": "library",
  5286. "autoload": {
  5287. "psr-4": {
  5288. "Laminas\\Mime\\": "src/"
  5289. }
  5290. },
  5291. "notification-url": "https://packagist.org/downloads/",
  5292. "license": [
  5293. "BSD-3-Clause"
  5294. ],
  5295. "description": "Create and parse MIME messages and parts",
  5296. "homepage": "https://laminas.dev",
  5297. "keywords": [
  5298. "laminas",
  5299. "mime"
  5300. ],
  5301. "support": {
  5302. "chat": "https://laminas.dev/chat",
  5303. "docs": "https://docs.laminas.dev/laminas-mime/",
  5304. "forum": "https://discourse.laminas.dev",
  5305. "issues": "https://github.com/laminas/laminas-mime/issues",
  5306. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5307. "source": "https://github.com/laminas/laminas-mime"
  5308. },
  5309. "funding": [
  5310. {
  5311. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5312. "type": "community_bridge"
  5313. }
  5314. ],
  5315. "abandoned": "symfony/mime",
  5316. "time": "2023-11-02T16:47:19+00:00"
  5317. },
  5318. {
  5319. "name": "laminas/laminas-stdlib",
  5320. "version": "3.20.0",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://github.com/laminas/laminas-stdlib.git",
  5324. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5329. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5330. "shasum": ""
  5331. },
  5332. "require": {
  5333. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5334. },
  5335. "conflict": {
  5336. "zendframework/zend-stdlib": "*"
  5337. },
  5338. "require-dev": {
  5339. "laminas/laminas-coding-standard": "^3.0",
  5340. "phpbench/phpbench": "^1.3.1",
  5341. "phpunit/phpunit": "^10.5.38",
  5342. "psalm/plugin-phpunit": "^0.19.0",
  5343. "vimeo/psalm": "^5.26.1"
  5344. },
  5345. "type": "library",
  5346. "autoload": {
  5347. "psr-4": {
  5348. "Laminas\\Stdlib\\": "src/"
  5349. }
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "BSD-3-Clause"
  5354. ],
  5355. "description": "SPL extensions, array utilities, error handlers, and more",
  5356. "homepage": "https://laminas.dev",
  5357. "keywords": [
  5358. "laminas",
  5359. "stdlib"
  5360. ],
  5361. "support": {
  5362. "chat": "https://laminas.dev/chat",
  5363. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5364. "forum": "https://discourse.laminas.dev",
  5365. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5366. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5367. "source": "https://github.com/laminas/laminas-stdlib"
  5368. },
  5369. "funding": [
  5370. {
  5371. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5372. "type": "community_bridge"
  5373. }
  5374. ],
  5375. "time": "2024-10-29T13:46:07+00:00"
  5376. },
  5377. {
  5378. "name": "lcobucci/clock",
  5379. "version": "2.3.0",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/lcobucci/clock.git",
  5383. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5388. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "php": "~8.1.0 || ~8.2.0",
  5393. "stella-maris/clock": "^0.1.7"
  5394. },
  5395. "provide": {
  5396. "psr/clock-implementation": "1.0"
  5397. },
  5398. "require-dev": {
  5399. "infection/infection": "^0.26",
  5400. "lcobucci/coding-standard": "^9.0",
  5401. "phpstan/extension-installer": "^1.2",
  5402. "phpstan/phpstan": "^1.9.4",
  5403. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5404. "phpstan/phpstan-phpunit": "^1.3.2",
  5405. "phpstan/phpstan-strict-rules": "^1.4.4",
  5406. "phpunit/phpunit": "^9.5.27"
  5407. },
  5408. "type": "library",
  5409. "autoload": {
  5410. "psr-4": {
  5411. "Lcobucci\\Clock\\": "src"
  5412. }
  5413. },
  5414. "notification-url": "https://packagist.org/downloads/",
  5415. "license": [
  5416. "MIT"
  5417. ],
  5418. "authors": [
  5419. {
  5420. "name": "Luís Cobucci",
  5421. "email": "lcobucci@gmail.com"
  5422. }
  5423. ],
  5424. "description": "Yet another clock abstraction",
  5425. "support": {
  5426. "issues": "https://github.com/lcobucci/clock/issues",
  5427. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5428. },
  5429. "funding": [
  5430. {
  5431. "url": "https://github.com/lcobucci",
  5432. "type": "github"
  5433. },
  5434. {
  5435. "url": "https://www.patreon.com/lcobucci",
  5436. "type": "patreon"
  5437. }
  5438. ],
  5439. "time": "2022-12-19T14:38:11+00:00"
  5440. },
  5441. {
  5442. "name": "lcobucci/jwt",
  5443. "version": "4.1.5",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://github.com/lcobucci/jwt.git",
  5447. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5452. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5453. "shasum": ""
  5454. },
  5455. "require": {
  5456. "ext-hash": "*",
  5457. "ext-json": "*",
  5458. "ext-mbstring": "*",
  5459. "ext-openssl": "*",
  5460. "ext-sodium": "*",
  5461. "lcobucci/clock": "^2.0",
  5462. "php": "^7.4 || ^8.0"
  5463. },
  5464. "require-dev": {
  5465. "infection/infection": "^0.21",
  5466. "lcobucci/coding-standard": "^6.0",
  5467. "mikey179/vfsstream": "^1.6.7",
  5468. "phpbench/phpbench": "^1.0",
  5469. "phpstan/extension-installer": "^1.0",
  5470. "phpstan/phpstan": "^0.12",
  5471. "phpstan/phpstan-deprecation-rules": "^0.12",
  5472. "phpstan/phpstan-phpunit": "^0.12",
  5473. "phpstan/phpstan-strict-rules": "^0.12",
  5474. "phpunit/php-invoker": "^3.1",
  5475. "phpunit/phpunit": "^9.5"
  5476. },
  5477. "type": "library",
  5478. "autoload": {
  5479. "psr-4": {
  5480. "Lcobucci\\JWT\\": "src"
  5481. }
  5482. },
  5483. "notification-url": "https://packagist.org/downloads/",
  5484. "license": [
  5485. "BSD-3-Clause"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Luís Cobucci",
  5490. "email": "lcobucci@gmail.com",
  5491. "role": "Developer"
  5492. }
  5493. ],
  5494. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5495. "keywords": [
  5496. "JWS",
  5497. "jwt"
  5498. ],
  5499. "support": {
  5500. "issues": "https://github.com/lcobucci/jwt/issues",
  5501. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5502. },
  5503. "funding": [
  5504. {
  5505. "url": "https://github.com/lcobucci",
  5506. "type": "github"
  5507. },
  5508. {
  5509. "url": "https://www.patreon.com/lcobucci",
  5510. "type": "patreon"
  5511. }
  5512. ],
  5513. "time": "2021-09-28T19:34:56+00:00"
  5514. },
  5515. {
  5516. "name": "markrogoyski/math-php",
  5517. "version": "v2.10.0",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/markrogoyski/math-php.git",
  5521. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5526. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "ext-json": "*",
  5531. "php": ">=7.2.0"
  5532. },
  5533. "require-dev": {
  5534. "php-coveralls/php-coveralls": "^2.0",
  5535. "php-parallel-lint/php-parallel-lint": "^1.2",
  5536. "phploc/phploc": "*",
  5537. "phpmd/phpmd": "^2.6",
  5538. "phpstan/phpstan": "^1.10",
  5539. "phpunit/phpunit": "^8.5",
  5540. "squizlabs/php_codesniffer": "3.*"
  5541. },
  5542. "type": "library",
  5543. "autoload": {
  5544. "psr-4": {
  5545. "MathPHP\\": "src/"
  5546. }
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "MIT"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Mark Rogoyski",
  5555. "email": "mark@rogoyski.com",
  5556. "homepage": "https://github.com/markrogoyski",
  5557. "role": "Lead developer"
  5558. },
  5559. {
  5560. "name": "Kevin Nowaczyk",
  5561. "homepage": "https://github.com/Beakerboy",
  5562. "role": "Developer"
  5563. },
  5564. {
  5565. "name": "MathPHP Community of Contributors",
  5566. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5567. }
  5568. ],
  5569. "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",
  5570. "homepage": "https://github.com/markrogoyski/math-php/",
  5571. "keywords": [
  5572. "algebra",
  5573. "combinatorics",
  5574. "distributions",
  5575. "linear algebra",
  5576. "math",
  5577. "mathematics",
  5578. "matrix",
  5579. "numerical analysis",
  5580. "probability",
  5581. "regressions",
  5582. "statistics"
  5583. ],
  5584. "support": {
  5585. "issues": "https://github.com/markrogoyski/math-php/issues",
  5586. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5587. },
  5588. "time": "2024-04-17T00:09:51+00:00"
  5589. },
  5590. {
  5591. "name": "monolog/monolog",
  5592. "version": "3.8.1",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/Seldaek/monolog.git",
  5596. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5601. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5602. "shasum": ""
  5603. },
  5604. "require": {
  5605. "php": ">=8.1",
  5606. "psr/log": "^2.0 || ^3.0"
  5607. },
  5608. "provide": {
  5609. "psr/log-implementation": "3.0.0"
  5610. },
  5611. "require-dev": {
  5612. "aws/aws-sdk-php": "^3.0",
  5613. "doctrine/couchdb": "~1.0@dev",
  5614. "elasticsearch/elasticsearch": "^7 || ^8",
  5615. "ext-json": "*",
  5616. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5617. "guzzlehttp/guzzle": "^7.4.5",
  5618. "guzzlehttp/psr7": "^2.2",
  5619. "mongodb/mongodb": "^1.8",
  5620. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5621. "php-console/php-console": "^3.1.8",
  5622. "phpstan/phpstan": "^2",
  5623. "phpstan/phpstan-deprecation-rules": "^2",
  5624. "phpstan/phpstan-strict-rules": "^2",
  5625. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5626. "predis/predis": "^1.1 || ^2",
  5627. "rollbar/rollbar": "^4.0",
  5628. "ruflin/elastica": "^7 || ^8",
  5629. "symfony/mailer": "^5.4 || ^6",
  5630. "symfony/mime": "^5.4 || ^6"
  5631. },
  5632. "suggest": {
  5633. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5634. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5635. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5636. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5637. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5638. "ext-mbstring": "Allow to work properly with unicode symbols",
  5639. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5640. "ext-openssl": "Required to send log messages using SSL",
  5641. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5642. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5643. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5644. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5645. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5646. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-main": "3.x-dev"
  5652. }
  5653. },
  5654. "autoload": {
  5655. "psr-4": {
  5656. "Monolog\\": "src/Monolog"
  5657. }
  5658. },
  5659. "notification-url": "https://packagist.org/downloads/",
  5660. "license": [
  5661. "MIT"
  5662. ],
  5663. "authors": [
  5664. {
  5665. "name": "Jordi Boggiano",
  5666. "email": "j.boggiano@seld.be",
  5667. "homepage": "https://seld.be"
  5668. }
  5669. ],
  5670. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5671. "homepage": "https://github.com/Seldaek/monolog",
  5672. "keywords": [
  5673. "log",
  5674. "logging",
  5675. "psr-3"
  5676. ],
  5677. "support": {
  5678. "issues": "https://github.com/Seldaek/monolog/issues",
  5679. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5680. },
  5681. "funding": [
  5682. {
  5683. "url": "https://github.com/Seldaek",
  5684. "type": "github"
  5685. },
  5686. {
  5687. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5688. "type": "tidelift"
  5689. }
  5690. ],
  5691. "time": "2024-12-05T17:15:07+00:00"
  5692. },
  5693. {
  5694. "name": "mtdowling/jmespath.php",
  5695. "version": "2.8.0",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/jmespath/jmespath.php.git",
  5699. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  5704. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "php": "^7.2.5 || ^8.0",
  5709. "symfony/polyfill-mbstring": "^1.17"
  5710. },
  5711. "require-dev": {
  5712. "composer/xdebug-handler": "^3.0.3",
  5713. "phpunit/phpunit": "^8.5.33"
  5714. },
  5715. "bin": [
  5716. "bin/jp.php"
  5717. ],
  5718. "type": "library",
  5719. "extra": {
  5720. "branch-alias": {
  5721. "dev-master": "2.8-dev"
  5722. }
  5723. },
  5724. "autoload": {
  5725. "files": [
  5726. "src/JmesPath.php"
  5727. ],
  5728. "psr-4": {
  5729. "JmesPath\\": "src/"
  5730. }
  5731. },
  5732. "notification-url": "https://packagist.org/downloads/",
  5733. "license": [
  5734. "MIT"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "Graham Campbell",
  5739. "email": "hello@gjcampbell.co.uk",
  5740. "homepage": "https://github.com/GrahamCampbell"
  5741. },
  5742. {
  5743. "name": "Michael Dowling",
  5744. "email": "mtdowling@gmail.com",
  5745. "homepage": "https://github.com/mtdowling"
  5746. }
  5747. ],
  5748. "description": "Declaratively specify how to extract elements from a JSON document",
  5749. "keywords": [
  5750. "json",
  5751. "jsonpath"
  5752. ],
  5753. "support": {
  5754. "issues": "https://github.com/jmespath/jmespath.php/issues",
  5755. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  5756. },
  5757. "time": "2024-09-04T18:46:31+00:00"
  5758. },
  5759. {
  5760. "name": "nesbot/carbon",
  5761. "version": "2.72.5",
  5762. "source": {
  5763. "type": "git",
  5764. "url": "https://github.com/briannesbitt/Carbon.git",
  5765. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5766. },
  5767. "dist": {
  5768. "type": "zip",
  5769. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5770. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5771. "shasum": ""
  5772. },
  5773. "require": {
  5774. "carbonphp/carbon-doctrine-types": "*",
  5775. "ext-json": "*",
  5776. "php": "^7.1.8 || ^8.0",
  5777. "psr/clock": "^1.0",
  5778. "symfony/polyfill-mbstring": "^1.0",
  5779. "symfony/polyfill-php80": "^1.16",
  5780. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5781. },
  5782. "provide": {
  5783. "psr/clock-implementation": "1.0"
  5784. },
  5785. "require-dev": {
  5786. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5787. "doctrine/orm": "^2.7 || ^3.0",
  5788. "friendsofphp/php-cs-fixer": "^3.0",
  5789. "kylekatarnls/multi-tester": "^2.0",
  5790. "ondrejmirtes/better-reflection": "*",
  5791. "phpmd/phpmd": "^2.9",
  5792. "phpstan/extension-installer": "^1.0",
  5793. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5794. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5795. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5796. "squizlabs/php_codesniffer": "^3.4"
  5797. },
  5798. "bin": [
  5799. "bin/carbon"
  5800. ],
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-master": "3.x-dev",
  5805. "dev-2.x": "2.x-dev"
  5806. },
  5807. "laravel": {
  5808. "providers": [
  5809. "Carbon\\Laravel\\ServiceProvider"
  5810. ]
  5811. },
  5812. "phpstan": {
  5813. "includes": [
  5814. "extension.neon"
  5815. ]
  5816. }
  5817. },
  5818. "autoload": {
  5819. "psr-4": {
  5820. "Carbon\\": "src/Carbon/"
  5821. }
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "MIT"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "Brian Nesbitt",
  5830. "email": "brian@nesbot.com",
  5831. "homepage": "https://markido.com"
  5832. },
  5833. {
  5834. "name": "kylekatarnls",
  5835. "homepage": "https://github.com/kylekatarnls"
  5836. }
  5837. ],
  5838. "description": "An API extension for DateTime that supports 281 different languages.",
  5839. "homepage": "https://carbon.nesbot.com",
  5840. "keywords": [
  5841. "date",
  5842. "datetime",
  5843. "time"
  5844. ],
  5845. "support": {
  5846. "docs": "https://carbon.nesbot.com/docs",
  5847. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5848. "source": "https://github.com/briannesbitt/Carbon"
  5849. },
  5850. "funding": [
  5851. {
  5852. "url": "https://github.com/sponsors/kylekatarnls",
  5853. "type": "github"
  5854. },
  5855. {
  5856. "url": "https://opencollective.com/Carbon#sponsor",
  5857. "type": "opencollective"
  5858. },
  5859. {
  5860. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5861. "type": "tidelift"
  5862. }
  5863. ],
  5864. "time": "2024-06-03T19:18:41+00:00"
  5865. },
  5866. {
  5867. "name": "nikic/fast-route",
  5868. "version": "v1.3.0",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/nikic/FastRoute.git",
  5872. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5877. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5878. "shasum": ""
  5879. },
  5880. "require": {
  5881. "php": ">=5.4.0"
  5882. },
  5883. "require-dev": {
  5884. "phpunit/phpunit": "^4.8.35|~5.7"
  5885. },
  5886. "type": "library",
  5887. "autoload": {
  5888. "files": [
  5889. "src/functions.php"
  5890. ],
  5891. "psr-4": {
  5892. "FastRoute\\": "src/"
  5893. }
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "BSD-3-Clause"
  5898. ],
  5899. "authors": [
  5900. {
  5901. "name": "Nikita Popov",
  5902. "email": "nikic@php.net"
  5903. }
  5904. ],
  5905. "description": "Fast request router for PHP",
  5906. "keywords": [
  5907. "router",
  5908. "routing"
  5909. ],
  5910. "support": {
  5911. "issues": "https://github.com/nikic/FastRoute/issues",
  5912. "source": "https://github.com/nikic/FastRoute/tree/master"
  5913. },
  5914. "time": "2018-02-13T20:26:39+00:00"
  5915. },
  5916. {
  5917. "name": "nikic/php-parser",
  5918. "version": "v4.19.4",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/nikic/PHP-Parser.git",
  5922. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5927. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5928. "shasum": ""
  5929. },
  5930. "require": {
  5931. "ext-tokenizer": "*",
  5932. "php": ">=7.1"
  5933. },
  5934. "require-dev": {
  5935. "ircmaxell/php-yacc": "^0.0.7",
  5936. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5937. },
  5938. "bin": [
  5939. "bin/php-parse"
  5940. ],
  5941. "type": "library",
  5942. "extra": {
  5943. "branch-alias": {
  5944. "dev-master": "4.9-dev"
  5945. }
  5946. },
  5947. "autoload": {
  5948. "psr-4": {
  5949. "PhpParser\\": "lib/PhpParser"
  5950. }
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "BSD-3-Clause"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Nikita Popov"
  5959. }
  5960. ],
  5961. "description": "A PHP parser written in PHP",
  5962. "keywords": [
  5963. "parser",
  5964. "php"
  5965. ],
  5966. "support": {
  5967. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5968. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5969. },
  5970. "time": "2024-09-29T15:01:53+00:00"
  5971. },
  5972. {
  5973. "name": "openai-php/client",
  5974. "version": "v0.10.3",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://github.com/openai-php/client.git",
  5978. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  5979. },
  5980. "dist": {
  5981. "type": "zip",
  5982. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5983. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5984. "shasum": ""
  5985. },
  5986. "require": {
  5987. "php": "^8.1.0",
  5988. "php-http/discovery": "^1.20.0",
  5989. "php-http/multipart-stream-builder": "^1.4.2",
  5990. "psr/http-client": "^1.0.3",
  5991. "psr/http-client-implementation": "^1.0.1",
  5992. "psr/http-factory-implementation": "*",
  5993. "psr/http-message": "^1.1.0|^2.0.0"
  5994. },
  5995. "require-dev": {
  5996. "guzzlehttp/guzzle": "^7.9.2",
  5997. "guzzlehttp/psr7": "^2.7.0",
  5998. "laravel/pint": "^1.18.1",
  5999. "mockery/mockery": "^1.6.12",
  6000. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6001. "pestphp/pest": "^2.36.0|^3.5.0",
  6002. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6003. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6004. "phpstan/phpstan": "^1.12.7",
  6005. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6006. },
  6007. "type": "library",
  6008. "autoload": {
  6009. "files": [
  6010. "src/OpenAI.php"
  6011. ],
  6012. "psr-4": {
  6013. "OpenAI\\": "src/"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Nuno Maduro",
  6023. "email": "enunomaduro@gmail.com"
  6024. },
  6025. {
  6026. "name": "Sandro Gehri"
  6027. }
  6028. ],
  6029. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6030. "keywords": [
  6031. "GPT-3",
  6032. "api",
  6033. "client",
  6034. "codex",
  6035. "dall-e",
  6036. "language",
  6037. "natural",
  6038. "openai",
  6039. "php",
  6040. "processing",
  6041. "sdk"
  6042. ],
  6043. "support": {
  6044. "issues": "https://github.com/openai-php/client/issues",
  6045. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/gehrisandro",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://github.com/nunomaduro",
  6058. "type": "github"
  6059. }
  6060. ],
  6061. "time": "2024-11-12T20:51:16+00:00"
  6062. },
  6063. {
  6064. "name": "paragonie/constant_time_encoding",
  6065. "version": "v3.0.0",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6069. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6074. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "php": "^8"
  6079. },
  6080. "require-dev": {
  6081. "phpunit/phpunit": "^9",
  6082. "vimeo/psalm": "^4|^5"
  6083. },
  6084. "type": "library",
  6085. "autoload": {
  6086. "psr-4": {
  6087. "ParagonIE\\ConstantTime\\": "src/"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Paragon Initiative Enterprises",
  6097. "email": "security@paragonie.com",
  6098. "homepage": "https://paragonie.com",
  6099. "role": "Maintainer"
  6100. },
  6101. {
  6102. "name": "Steve 'Sc00bz' Thomas",
  6103. "email": "steve@tobtu.com",
  6104. "homepage": "https://www.tobtu.com",
  6105. "role": "Original Developer"
  6106. }
  6107. ],
  6108. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6109. "keywords": [
  6110. "base16",
  6111. "base32",
  6112. "base32_decode",
  6113. "base32_encode",
  6114. "base64",
  6115. "base64_decode",
  6116. "base64_encode",
  6117. "bin2hex",
  6118. "encoding",
  6119. "hex",
  6120. "hex2bin",
  6121. "rfc4648"
  6122. ],
  6123. "support": {
  6124. "email": "info@paragonie.com",
  6125. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6126. "source": "https://github.com/paragonie/constant_time_encoding"
  6127. },
  6128. "time": "2024-05-08T12:36:18+00:00"
  6129. },
  6130. {
  6131. "name": "paragonie/random_compat",
  6132. "version": "v9.99.100",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/paragonie/random_compat.git",
  6136. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6141. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6142. "shasum": ""
  6143. },
  6144. "require": {
  6145. "php": ">= 7"
  6146. },
  6147. "require-dev": {
  6148. "phpunit/phpunit": "4.*|5.*",
  6149. "vimeo/psalm": "^1"
  6150. },
  6151. "suggest": {
  6152. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6153. },
  6154. "type": "library",
  6155. "notification-url": "https://packagist.org/downloads/",
  6156. "license": [
  6157. "MIT"
  6158. ],
  6159. "authors": [
  6160. {
  6161. "name": "Paragon Initiative Enterprises",
  6162. "email": "security@paragonie.com",
  6163. "homepage": "https://paragonie.com"
  6164. }
  6165. ],
  6166. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6167. "keywords": [
  6168. "csprng",
  6169. "polyfill",
  6170. "pseudorandom",
  6171. "random"
  6172. ],
  6173. "support": {
  6174. "email": "info@paragonie.com",
  6175. "issues": "https://github.com/paragonie/random_compat/issues",
  6176. "source": "https://github.com/paragonie/random_compat"
  6177. },
  6178. "time": "2020-10-15T08:29:30+00:00"
  6179. },
  6180. {
  6181. "name": "php-amqplib/php-amqplib",
  6182. "version": "v3.7.2",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6186. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6191. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "ext-mbstring": "*",
  6196. "ext-sockets": "*",
  6197. "php": "^7.2||^8.0",
  6198. "phpseclib/phpseclib": "^2.0|^3.0"
  6199. },
  6200. "conflict": {
  6201. "php": "7.4.0 - 7.4.1"
  6202. },
  6203. "replace": {
  6204. "videlalvaro/php-amqplib": "self.version"
  6205. },
  6206. "require-dev": {
  6207. "ext-curl": "*",
  6208. "nategood/httpful": "^0.2.20",
  6209. "phpunit/phpunit": "^7.5|^9.5",
  6210. "squizlabs/php_codesniffer": "^3.6"
  6211. },
  6212. "type": "library",
  6213. "extra": {
  6214. "branch-alias": {
  6215. "dev-master": "3.0-dev"
  6216. }
  6217. },
  6218. "autoload": {
  6219. "psr-4": {
  6220. "PhpAmqpLib\\": "PhpAmqpLib/"
  6221. }
  6222. },
  6223. "notification-url": "https://packagist.org/downloads/",
  6224. "license": [
  6225. "LGPL-2.1-or-later"
  6226. ],
  6227. "authors": [
  6228. {
  6229. "name": "Alvaro Videla",
  6230. "role": "Original Maintainer"
  6231. },
  6232. {
  6233. "name": "Raúl Araya",
  6234. "email": "nubeiro@gmail.com",
  6235. "role": "Maintainer"
  6236. },
  6237. {
  6238. "name": "Luke Bakken",
  6239. "email": "luke@bakken.io",
  6240. "role": "Maintainer"
  6241. },
  6242. {
  6243. "name": "Ramūnas Dronga",
  6244. "email": "github@ramuno.lt",
  6245. "role": "Maintainer"
  6246. }
  6247. ],
  6248. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6249. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6250. "keywords": [
  6251. "message",
  6252. "queue",
  6253. "rabbitmq"
  6254. ],
  6255. "support": {
  6256. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6257. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  6258. },
  6259. "time": "2024-11-21T09:21:41+00:00"
  6260. },
  6261. {
  6262. "name": "php-di/phpdoc-reader",
  6263. "version": "2.2.1",
  6264. "source": {
  6265. "type": "git",
  6266. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6267. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6268. },
  6269. "dist": {
  6270. "type": "zip",
  6271. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6272. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6273. "shasum": ""
  6274. },
  6275. "require": {
  6276. "php": ">=7.2.0"
  6277. },
  6278. "require-dev": {
  6279. "mnapoli/hard-mode": "~0.3.0",
  6280. "phpunit/phpunit": "^8.5|^9.0"
  6281. },
  6282. "type": "library",
  6283. "autoload": {
  6284. "psr-4": {
  6285. "PhpDocReader\\": "src/PhpDocReader"
  6286. }
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6293. "keywords": [
  6294. "phpdoc",
  6295. "reflection"
  6296. ],
  6297. "support": {
  6298. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6299. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6300. },
  6301. "time": "2020-10-12T12:39:22+00:00"
  6302. },
  6303. {
  6304. "name": "php-http/discovery",
  6305. "version": "1.20.0",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/php-http/discovery.git",
  6309. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6314. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "composer-plugin-api": "^1.0|^2.0",
  6319. "php": "^7.1 || ^8.0"
  6320. },
  6321. "conflict": {
  6322. "nyholm/psr7": "<1.0",
  6323. "zendframework/zend-diactoros": "*"
  6324. },
  6325. "provide": {
  6326. "php-http/async-client-implementation": "*",
  6327. "php-http/client-implementation": "*",
  6328. "psr/http-client-implementation": "*",
  6329. "psr/http-factory-implementation": "*",
  6330. "psr/http-message-implementation": "*"
  6331. },
  6332. "require-dev": {
  6333. "composer/composer": "^1.0.2|^2.0",
  6334. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6335. "php-http/httplug": "^1.0 || ^2.0",
  6336. "php-http/message-factory": "^1.0",
  6337. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6338. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6339. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6340. },
  6341. "type": "composer-plugin",
  6342. "extra": {
  6343. "class": "Http\\Discovery\\Composer\\Plugin",
  6344. "plugin-optional": true
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Http\\Discovery\\": "src/"
  6349. },
  6350. "exclude-from-classmap": [
  6351. "src/Composer/Plugin.php"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Márk Sági-Kazár",
  6361. "email": "mark.sagikazar@gmail.com"
  6362. }
  6363. ],
  6364. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6365. "homepage": "http://php-http.org",
  6366. "keywords": [
  6367. "adapter",
  6368. "client",
  6369. "discovery",
  6370. "factory",
  6371. "http",
  6372. "message",
  6373. "psr17",
  6374. "psr7"
  6375. ],
  6376. "support": {
  6377. "issues": "https://github.com/php-http/discovery/issues",
  6378. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6379. },
  6380. "time": "2024-10-02T11:20:13+00:00"
  6381. },
  6382. {
  6383. "name": "php-http/multipart-stream-builder",
  6384. "version": "1.4.2",
  6385. "source": {
  6386. "type": "git",
  6387. "url": "https://github.com/php-http/multipart-stream-builder.git",
  6388. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  6389. },
  6390. "dist": {
  6391. "type": "zip",
  6392. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  6393. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  6394. "shasum": ""
  6395. },
  6396. "require": {
  6397. "php": "^7.1 || ^8.0",
  6398. "php-http/discovery": "^1.15",
  6399. "psr/http-factory-implementation": "^1.0"
  6400. },
  6401. "require-dev": {
  6402. "nyholm/psr7": "^1.0",
  6403. "php-http/message": "^1.5",
  6404. "php-http/message-factory": "^1.0.2",
  6405. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  6406. },
  6407. "type": "library",
  6408. "autoload": {
  6409. "psr-4": {
  6410. "Http\\Message\\MultipartStream\\": "src/"
  6411. }
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "MIT"
  6416. ],
  6417. "authors": [
  6418. {
  6419. "name": "Tobias Nyholm",
  6420. "email": "tobias.nyholm@gmail.com"
  6421. }
  6422. ],
  6423. "description": "A builder class that help you create a multipart stream",
  6424. "homepage": "http://php-http.org",
  6425. "keywords": [
  6426. "factory",
  6427. "http",
  6428. "message",
  6429. "multipart stream",
  6430. "stream"
  6431. ],
  6432. "support": {
  6433. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  6434. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  6435. },
  6436. "time": "2024-09-04T13:22:54+00:00"
  6437. },
  6438. {
  6439. "name": "phper666/jwt-auth",
  6440. "version": "v4.0.11",
  6441. "source": {
  6442. "type": "git",
  6443. "url": "https://github.com/phper666/jwt-auth.git",
  6444. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  6445. },
  6446. "dist": {
  6447. "type": "zip",
  6448. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6449. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6450. "shasum": ""
  6451. },
  6452. "require": {
  6453. "ext-swoole": ">=4.4",
  6454. "lcobucci/jwt": "4.1.5",
  6455. "nesbot/carbon": "^1.0 || ^2.0",
  6456. "php": ">=7.4"
  6457. },
  6458. "suggest": {
  6459. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6460. "hyperf/command": "required hyperf/command ~2.2.0",
  6461. "hyperf/config": "required hyperf/config ~2.2.0",
  6462. "hyperf/di": "required hyperf/di ~2.2.0"
  6463. },
  6464. "type": "library",
  6465. "extra": {
  6466. "hyperf": {
  6467. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6468. }
  6469. },
  6470. "autoload": {
  6471. "files": [
  6472. "src/Functions.php"
  6473. ],
  6474. "psr-4": {
  6475. "Phper666\\JWTAuth\\": "src/"
  6476. }
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Li Yuzhao",
  6485. "email": "562405704@qq.com",
  6486. "homepage": "https://github.com/phper666/jwt-auth",
  6487. "role": "Developer"
  6488. }
  6489. ],
  6490. "description": "jwt-auth Component",
  6491. "keywords": [
  6492. "hyperf",
  6493. "php"
  6494. ],
  6495. "support": {
  6496. "issues": "https://github.com/phper666/jwt-auth/issues",
  6497. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6498. },
  6499. "time": "2024-02-02T13:24:54+00:00"
  6500. },
  6501. {
  6502. "name": "phpoption/phpoption",
  6503. "version": "1.9.3",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/schmittjoh/php-option.git",
  6507. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6512. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "php": "^7.2.5 || ^8.0"
  6517. },
  6518. "require-dev": {
  6519. "bamarni/composer-bin-plugin": "^1.8.2",
  6520. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6521. },
  6522. "type": "library",
  6523. "extra": {
  6524. "bamarni-bin": {
  6525. "bin-links": true,
  6526. "forward-command": false
  6527. },
  6528. "branch-alias": {
  6529. "dev-master": "1.9-dev"
  6530. }
  6531. },
  6532. "autoload": {
  6533. "psr-4": {
  6534. "PhpOption\\": "src/PhpOption/"
  6535. }
  6536. },
  6537. "notification-url": "https://packagist.org/downloads/",
  6538. "license": [
  6539. "Apache-2.0"
  6540. ],
  6541. "authors": [
  6542. {
  6543. "name": "Johannes M. Schmitt",
  6544. "email": "schmittjoh@gmail.com",
  6545. "homepage": "https://github.com/schmittjoh"
  6546. },
  6547. {
  6548. "name": "Graham Campbell",
  6549. "email": "hello@gjcampbell.co.uk",
  6550. "homepage": "https://github.com/GrahamCampbell"
  6551. }
  6552. ],
  6553. "description": "Option Type for PHP",
  6554. "keywords": [
  6555. "language",
  6556. "option",
  6557. "php",
  6558. "type"
  6559. ],
  6560. "support": {
  6561. "issues": "https://github.com/schmittjoh/php-option/issues",
  6562. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://github.com/GrahamCampbell",
  6567. "type": "github"
  6568. },
  6569. {
  6570. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6571. "type": "tidelift"
  6572. }
  6573. ],
  6574. "time": "2024-07-20T21:41:07+00:00"
  6575. },
  6576. {
  6577. "name": "phpseclib/phpseclib",
  6578. "version": "3.0.42",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/phpseclib/phpseclib.git",
  6582. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6587. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "paragonie/constant_time_encoding": "^1|^2|^3",
  6592. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6593. "php": ">=5.6.1"
  6594. },
  6595. "require-dev": {
  6596. "phpunit/phpunit": "*"
  6597. },
  6598. "suggest": {
  6599. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6600. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6601. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6602. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6603. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "files": [
  6608. "phpseclib/bootstrap.php"
  6609. ],
  6610. "psr-4": {
  6611. "phpseclib3\\": "phpseclib/"
  6612. }
  6613. },
  6614. "notification-url": "https://packagist.org/downloads/",
  6615. "license": [
  6616. "MIT"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Jim Wigginton",
  6621. "email": "terrafrost@php.net",
  6622. "role": "Lead Developer"
  6623. },
  6624. {
  6625. "name": "Patrick Monnerat",
  6626. "email": "pm@datasphere.ch",
  6627. "role": "Developer"
  6628. },
  6629. {
  6630. "name": "Andreas Fischer",
  6631. "email": "bantu@phpbb.com",
  6632. "role": "Developer"
  6633. },
  6634. {
  6635. "name": "Hans-Jürgen Petrich",
  6636. "email": "petrich@tronic-media.com",
  6637. "role": "Developer"
  6638. },
  6639. {
  6640. "name": "Graham Campbell",
  6641. "email": "graham@alt-three.com",
  6642. "role": "Developer"
  6643. }
  6644. ],
  6645. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6646. "homepage": "http://phpseclib.sourceforge.net",
  6647. "keywords": [
  6648. "BigInteger",
  6649. "aes",
  6650. "asn.1",
  6651. "asn1",
  6652. "blowfish",
  6653. "crypto",
  6654. "cryptography",
  6655. "encryption",
  6656. "rsa",
  6657. "security",
  6658. "sftp",
  6659. "signature",
  6660. "signing",
  6661. "ssh",
  6662. "twofish",
  6663. "x.509",
  6664. "x509"
  6665. ],
  6666. "support": {
  6667. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6668. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6669. },
  6670. "funding": [
  6671. {
  6672. "url": "https://github.com/terrafrost",
  6673. "type": "github"
  6674. },
  6675. {
  6676. "url": "https://www.patreon.com/phpseclib",
  6677. "type": "patreon"
  6678. },
  6679. {
  6680. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6681. "type": "tidelift"
  6682. }
  6683. ],
  6684. "time": "2024-09-16T03:06:04+00:00"
  6685. },
  6686. {
  6687. "name": "psr/cache",
  6688. "version": "3.0.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/php-fig/cache.git",
  6692. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6697. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=8.0.0"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-master": "1.0.x-dev"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Psr\\Cache\\": "src/"
  6712. }
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "PHP-FIG",
  6721. "homepage": "https://www.php-fig.org/"
  6722. }
  6723. ],
  6724. "description": "Common interface for caching libraries",
  6725. "keywords": [
  6726. "cache",
  6727. "psr",
  6728. "psr-6"
  6729. ],
  6730. "support": {
  6731. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6732. },
  6733. "time": "2021-02-03T23:26:27+00:00"
  6734. },
  6735. {
  6736. "name": "psr/clock",
  6737. "version": "1.0.0",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/php-fig/clock.git",
  6741. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6746. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "php": "^7.0 || ^8.0"
  6751. },
  6752. "type": "library",
  6753. "autoload": {
  6754. "psr-4": {
  6755. "Psr\\Clock\\": "src/"
  6756. }
  6757. },
  6758. "notification-url": "https://packagist.org/downloads/",
  6759. "license": [
  6760. "MIT"
  6761. ],
  6762. "authors": [
  6763. {
  6764. "name": "PHP-FIG",
  6765. "homepage": "https://www.php-fig.org/"
  6766. }
  6767. ],
  6768. "description": "Common interface for reading the clock.",
  6769. "homepage": "https://github.com/php-fig/clock",
  6770. "keywords": [
  6771. "clock",
  6772. "now",
  6773. "psr",
  6774. "psr-20",
  6775. "time"
  6776. ],
  6777. "support": {
  6778. "issues": "https://github.com/php-fig/clock/issues",
  6779. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6780. },
  6781. "time": "2022-11-25T14:36:26+00:00"
  6782. },
  6783. {
  6784. "name": "psr/container",
  6785. "version": "2.0.2",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/php-fig/container.git",
  6789. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6794. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "php": ">=7.4.0"
  6799. },
  6800. "type": "library",
  6801. "extra": {
  6802. "branch-alias": {
  6803. "dev-master": "2.0.x-dev"
  6804. }
  6805. },
  6806. "autoload": {
  6807. "psr-4": {
  6808. "Psr\\Container\\": "src/"
  6809. }
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "PHP-FIG",
  6818. "homepage": "https://www.php-fig.org/"
  6819. }
  6820. ],
  6821. "description": "Common Container Interface (PHP FIG PSR-11)",
  6822. "homepage": "https://github.com/php-fig/container",
  6823. "keywords": [
  6824. "PSR-11",
  6825. "container",
  6826. "container-interface",
  6827. "container-interop",
  6828. "psr"
  6829. ],
  6830. "support": {
  6831. "issues": "https://github.com/php-fig/container/issues",
  6832. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6833. },
  6834. "time": "2021-11-05T16:47:00+00:00"
  6835. },
  6836. {
  6837. "name": "psr/event-dispatcher",
  6838. "version": "1.0.0",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/php-fig/event-dispatcher.git",
  6842. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6847. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "php": ">=7.2.0"
  6852. },
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-master": "1.0.x-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Psr\\EventDispatcher\\": "src/"
  6862. }
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "MIT"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "PHP-FIG",
  6871. "homepage": "http://www.php-fig.org/"
  6872. }
  6873. ],
  6874. "description": "Standard interfaces for event handling.",
  6875. "keywords": [
  6876. "events",
  6877. "psr",
  6878. "psr-14"
  6879. ],
  6880. "support": {
  6881. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6882. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6883. },
  6884. "time": "2019-01-08T18:20:26+00:00"
  6885. },
  6886. {
  6887. "name": "psr/http-client",
  6888. "version": "1.0.3",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/php-fig/http-client.git",
  6892. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6897. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6898. "shasum": ""
  6899. },
  6900. "require": {
  6901. "php": "^7.0 || ^8.0",
  6902. "psr/http-message": "^1.0 || ^2.0"
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-master": "1.0.x-dev"
  6908. }
  6909. },
  6910. "autoload": {
  6911. "psr-4": {
  6912. "Psr\\Http\\Client\\": "src/"
  6913. }
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "MIT"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "PHP-FIG",
  6922. "homepage": "https://www.php-fig.org/"
  6923. }
  6924. ],
  6925. "description": "Common interface for HTTP clients",
  6926. "homepage": "https://github.com/php-fig/http-client",
  6927. "keywords": [
  6928. "http",
  6929. "http-client",
  6930. "psr",
  6931. "psr-18"
  6932. ],
  6933. "support": {
  6934. "source": "https://github.com/php-fig/http-client"
  6935. },
  6936. "time": "2023-09-23T14:17:50+00:00"
  6937. },
  6938. {
  6939. "name": "psr/http-factory",
  6940. "version": "1.1.0",
  6941. "source": {
  6942. "type": "git",
  6943. "url": "https://github.com/php-fig/http-factory.git",
  6944. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6945. },
  6946. "dist": {
  6947. "type": "zip",
  6948. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6949. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6950. "shasum": ""
  6951. },
  6952. "require": {
  6953. "php": ">=7.1",
  6954. "psr/http-message": "^1.0 || ^2.0"
  6955. },
  6956. "type": "library",
  6957. "extra": {
  6958. "branch-alias": {
  6959. "dev-master": "1.0.x-dev"
  6960. }
  6961. },
  6962. "autoload": {
  6963. "psr-4": {
  6964. "Psr\\Http\\Message\\": "src/"
  6965. }
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "PHP-FIG",
  6974. "homepage": "https://www.php-fig.org/"
  6975. }
  6976. ],
  6977. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6978. "keywords": [
  6979. "factory",
  6980. "http",
  6981. "message",
  6982. "psr",
  6983. "psr-17",
  6984. "psr-7",
  6985. "request",
  6986. "response"
  6987. ],
  6988. "support": {
  6989. "source": "https://github.com/php-fig/http-factory"
  6990. },
  6991. "time": "2024-04-15T12:06:14+00:00"
  6992. },
  6993. {
  6994. "name": "psr/http-message",
  6995. "version": "2.0",
  6996. "source": {
  6997. "type": "git",
  6998. "url": "https://github.com/php-fig/http-message.git",
  6999. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7000. },
  7001. "dist": {
  7002. "type": "zip",
  7003. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7004. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7005. "shasum": ""
  7006. },
  7007. "require": {
  7008. "php": "^7.2 || ^8.0"
  7009. },
  7010. "type": "library",
  7011. "extra": {
  7012. "branch-alias": {
  7013. "dev-master": "2.0.x-dev"
  7014. }
  7015. },
  7016. "autoload": {
  7017. "psr-4": {
  7018. "Psr\\Http\\Message\\": "src/"
  7019. }
  7020. },
  7021. "notification-url": "https://packagist.org/downloads/",
  7022. "license": [
  7023. "MIT"
  7024. ],
  7025. "authors": [
  7026. {
  7027. "name": "PHP-FIG",
  7028. "homepage": "https://www.php-fig.org/"
  7029. }
  7030. ],
  7031. "description": "Common interface for HTTP messages",
  7032. "homepage": "https://github.com/php-fig/http-message",
  7033. "keywords": [
  7034. "http",
  7035. "http-message",
  7036. "psr",
  7037. "psr-7",
  7038. "request",
  7039. "response"
  7040. ],
  7041. "support": {
  7042. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7043. },
  7044. "time": "2023-04-04T09:54:51+00:00"
  7045. },
  7046. {
  7047. "name": "psr/http-server-handler",
  7048. "version": "1.0.2",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/php-fig/http-server-handler.git",
  7052. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  7057. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": ">=7.0",
  7062. "psr/http-message": "^1.0 || ^2.0"
  7063. },
  7064. "type": "library",
  7065. "extra": {
  7066. "branch-alias": {
  7067. "dev-master": "1.0.x-dev"
  7068. }
  7069. },
  7070. "autoload": {
  7071. "psr-4": {
  7072. "Psr\\Http\\Server\\": "src/"
  7073. }
  7074. },
  7075. "notification-url": "https://packagist.org/downloads/",
  7076. "license": [
  7077. "MIT"
  7078. ],
  7079. "authors": [
  7080. {
  7081. "name": "PHP-FIG",
  7082. "homepage": "https://www.php-fig.org/"
  7083. }
  7084. ],
  7085. "description": "Common interface for HTTP server-side request handler",
  7086. "keywords": [
  7087. "handler",
  7088. "http",
  7089. "http-interop",
  7090. "psr",
  7091. "psr-15",
  7092. "psr-7",
  7093. "request",
  7094. "response",
  7095. "server"
  7096. ],
  7097. "support": {
  7098. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  7099. },
  7100. "time": "2023-04-10T20:06:20+00:00"
  7101. },
  7102. {
  7103. "name": "psr/http-server-middleware",
  7104. "version": "1.0.2",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/php-fig/http-server-middleware.git",
  7108. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7113. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": ">=7.0",
  7118. "psr/http-message": "^1.0 || ^2.0",
  7119. "psr/http-server-handler": "^1.0"
  7120. },
  7121. "type": "library",
  7122. "extra": {
  7123. "branch-alias": {
  7124. "dev-master": "1.0.x-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "psr-4": {
  7129. "Psr\\Http\\Server\\": "src/"
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "PHP-FIG",
  7139. "homepage": "https://www.php-fig.org/"
  7140. }
  7141. ],
  7142. "description": "Common interface for HTTP server-side middleware",
  7143. "keywords": [
  7144. "http",
  7145. "http-interop",
  7146. "middleware",
  7147. "psr",
  7148. "psr-15",
  7149. "psr-7",
  7150. "request",
  7151. "response"
  7152. ],
  7153. "support": {
  7154. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7155. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7156. },
  7157. "time": "2023-04-11T06:14:47+00:00"
  7158. },
  7159. {
  7160. "name": "psr/log",
  7161. "version": "3.0.2",
  7162. "source": {
  7163. "type": "git",
  7164. "url": "https://github.com/php-fig/log.git",
  7165. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7166. },
  7167. "dist": {
  7168. "type": "zip",
  7169. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7170. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7171. "shasum": ""
  7172. },
  7173. "require": {
  7174. "php": ">=8.0.0"
  7175. },
  7176. "type": "library",
  7177. "extra": {
  7178. "branch-alias": {
  7179. "dev-master": "3.x-dev"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Psr\\Log\\": "src"
  7185. }
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "PHP-FIG",
  7194. "homepage": "https://www.php-fig.org/"
  7195. }
  7196. ],
  7197. "description": "Common interface for logging libraries",
  7198. "homepage": "https://github.com/php-fig/log",
  7199. "keywords": [
  7200. "log",
  7201. "psr",
  7202. "psr-3"
  7203. ],
  7204. "support": {
  7205. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7206. },
  7207. "time": "2024-09-11T13:17:53+00:00"
  7208. },
  7209. {
  7210. "name": "psr/simple-cache",
  7211. "version": "3.0.0",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/php-fig/simple-cache.git",
  7215. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7220. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "php": ">=8.0.0"
  7225. },
  7226. "type": "library",
  7227. "extra": {
  7228. "branch-alias": {
  7229. "dev-master": "3.0.x-dev"
  7230. }
  7231. },
  7232. "autoload": {
  7233. "psr-4": {
  7234. "Psr\\SimpleCache\\": "src/"
  7235. }
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "MIT"
  7240. ],
  7241. "authors": [
  7242. {
  7243. "name": "PHP-FIG",
  7244. "homepage": "https://www.php-fig.org/"
  7245. }
  7246. ],
  7247. "description": "Common interfaces for simple caching",
  7248. "keywords": [
  7249. "cache",
  7250. "caching",
  7251. "psr",
  7252. "psr-16",
  7253. "simple-cache"
  7254. ],
  7255. "support": {
  7256. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7257. },
  7258. "time": "2021-10-29T13:26:27+00:00"
  7259. },
  7260. {
  7261. "name": "ralouphie/getallheaders",
  7262. "version": "3.0.3",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/ralouphie/getallheaders.git",
  7266. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7271. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=5.6"
  7276. },
  7277. "require-dev": {
  7278. "php-coveralls/php-coveralls": "^2.1",
  7279. "phpunit/phpunit": "^5 || ^6.5"
  7280. },
  7281. "type": "library",
  7282. "autoload": {
  7283. "files": [
  7284. "src/getallheaders.php"
  7285. ]
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "Ralph Khattar",
  7294. "email": "ralph.khattar@gmail.com"
  7295. }
  7296. ],
  7297. "description": "A polyfill for getallheaders.",
  7298. "support": {
  7299. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7300. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7301. },
  7302. "time": "2019-03-08T08:55:37+00:00"
  7303. },
  7304. {
  7305. "name": "stella-maris/clock",
  7306. "version": "0.1.7",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/stella-maris-solutions/clock.git",
  7310. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7315. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": "^7.0|^8.0",
  7320. "psr/clock": "^1.0"
  7321. },
  7322. "type": "library",
  7323. "autoload": {
  7324. "psr-4": {
  7325. "StellaMaris\\Clock\\": "src"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "Andreas Heigl",
  7335. "role": "Maintainer"
  7336. }
  7337. ],
  7338. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  7339. "homepage": "https://gitlab.com/stella-maris/clock",
  7340. "keywords": [
  7341. "clock",
  7342. "datetime",
  7343. "point in time",
  7344. "psr20"
  7345. ],
  7346. "support": {
  7347. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  7348. },
  7349. "time": "2022-11-25T16:15:06+00:00"
  7350. },
  7351. {
  7352. "name": "swow/psr7-plus",
  7353. "version": "v1.1.2",
  7354. "source": {
  7355. "type": "git",
  7356. "url": "https://github.com/swow/psr7-plus.git",
  7357. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  7358. },
  7359. "dist": {
  7360. "type": "zip",
  7361. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  7362. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  7363. "shasum": ""
  7364. },
  7365. "require": {
  7366. "php": ">=8.0",
  7367. "psr/http-client": "^1.0",
  7368. "psr/http-factory": "^1.0",
  7369. "psr/http-message": "^1.1|^2.0"
  7370. },
  7371. "type": "library",
  7372. "autoload": {
  7373. "psr-4": {
  7374. "Swow\\Psr7\\Message\\": "src/Message/"
  7375. }
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "Apache-2.0"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "twose",
  7384. "email": "twosee@php.net"
  7385. }
  7386. ],
  7387. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  7388. "keywords": [
  7389. "http",
  7390. "psr17",
  7391. "psr7",
  7392. "swow",
  7393. "websocket"
  7394. ],
  7395. "support": {
  7396. "issues": "https://github.com/swow/swow",
  7397. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  7398. },
  7399. "time": "2023-06-15T09:18:11+00:00"
  7400. },
  7401. {
  7402. "name": "symfony/console",
  7403. "version": "v6.4.15",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/symfony/console.git",
  7407. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  7412. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": ">=8.1",
  7417. "symfony/deprecation-contracts": "^2.5|^3",
  7418. "symfony/polyfill-mbstring": "~1.0",
  7419. "symfony/service-contracts": "^2.5|^3",
  7420. "symfony/string": "^5.4|^6.0|^7.0"
  7421. },
  7422. "conflict": {
  7423. "symfony/dependency-injection": "<5.4",
  7424. "symfony/dotenv": "<5.4",
  7425. "symfony/event-dispatcher": "<5.4",
  7426. "symfony/lock": "<5.4",
  7427. "symfony/process": "<5.4"
  7428. },
  7429. "provide": {
  7430. "psr/log-implementation": "1.0|2.0|3.0"
  7431. },
  7432. "require-dev": {
  7433. "psr/log": "^1|^2|^3",
  7434. "symfony/config": "^5.4|^6.0|^7.0",
  7435. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7436. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7437. "symfony/http-foundation": "^6.4|^7.0",
  7438. "symfony/http-kernel": "^6.4|^7.0",
  7439. "symfony/lock": "^5.4|^6.0|^7.0",
  7440. "symfony/messenger": "^5.4|^6.0|^7.0",
  7441. "symfony/process": "^5.4|^6.0|^7.0",
  7442. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7443. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7444. },
  7445. "type": "library",
  7446. "autoload": {
  7447. "psr-4": {
  7448. "Symfony\\Component\\Console\\": ""
  7449. },
  7450. "exclude-from-classmap": [
  7451. "/Tests/"
  7452. ]
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Fabien Potencier",
  7461. "email": "fabien@symfony.com"
  7462. },
  7463. {
  7464. "name": "Symfony Community",
  7465. "homepage": "https://symfony.com/contributors"
  7466. }
  7467. ],
  7468. "description": "Eases the creation of beautiful and testable command line interfaces",
  7469. "homepage": "https://symfony.com",
  7470. "keywords": [
  7471. "cli",
  7472. "command-line",
  7473. "console",
  7474. "terminal"
  7475. ],
  7476. "support": {
  7477. "source": "https://github.com/symfony/console/tree/v6.4.15"
  7478. },
  7479. "funding": [
  7480. {
  7481. "url": "https://symfony.com/sponsor",
  7482. "type": "custom"
  7483. },
  7484. {
  7485. "url": "https://github.com/fabpot",
  7486. "type": "github"
  7487. },
  7488. {
  7489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7490. "type": "tidelift"
  7491. }
  7492. ],
  7493. "time": "2024-11-06T14:19:14+00:00"
  7494. },
  7495. {
  7496. "name": "symfony/deprecation-contracts",
  7497. "version": "v3.5.1",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/symfony/deprecation-contracts.git",
  7501. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7506. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7507. "shasum": ""
  7508. },
  7509. "require": {
  7510. "php": ">=8.1"
  7511. },
  7512. "type": "library",
  7513. "extra": {
  7514. "branch-alias": {
  7515. "dev-main": "3.5-dev"
  7516. },
  7517. "thanks": {
  7518. "name": "symfony/contracts",
  7519. "url": "https://github.com/symfony/contracts"
  7520. }
  7521. },
  7522. "autoload": {
  7523. "files": [
  7524. "function.php"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Nicolas Grekas",
  7534. "email": "p@tchwork.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "A generic function and convention to trigger deprecation notices",
  7542. "homepage": "https://symfony.com",
  7543. "support": {
  7544. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7545. },
  7546. "funding": [
  7547. {
  7548. "url": "https://symfony.com/sponsor",
  7549. "type": "custom"
  7550. },
  7551. {
  7552. "url": "https://github.com/fabpot",
  7553. "type": "github"
  7554. },
  7555. {
  7556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7557. "type": "tidelift"
  7558. }
  7559. ],
  7560. "time": "2024-09-25T14:20:29+00:00"
  7561. },
  7562. {
  7563. "name": "symfony/finder",
  7564. "version": "v6.4.13",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/symfony/finder.git",
  7568. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7573. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "php": ">=8.1"
  7578. },
  7579. "require-dev": {
  7580. "symfony/filesystem": "^6.0|^7.0"
  7581. },
  7582. "type": "library",
  7583. "autoload": {
  7584. "psr-4": {
  7585. "Symfony\\Component\\Finder\\": ""
  7586. },
  7587. "exclude-from-classmap": [
  7588. "/Tests/"
  7589. ]
  7590. },
  7591. "notification-url": "https://packagist.org/downloads/",
  7592. "license": [
  7593. "MIT"
  7594. ],
  7595. "authors": [
  7596. {
  7597. "name": "Fabien Potencier",
  7598. "email": "fabien@symfony.com"
  7599. },
  7600. {
  7601. "name": "Symfony Community",
  7602. "homepage": "https://symfony.com/contributors"
  7603. }
  7604. ],
  7605. "description": "Finds files and directories via an intuitive fluent interface",
  7606. "homepage": "https://symfony.com",
  7607. "support": {
  7608. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7609. },
  7610. "funding": [
  7611. {
  7612. "url": "https://symfony.com/sponsor",
  7613. "type": "custom"
  7614. },
  7615. {
  7616. "url": "https://github.com/fabpot",
  7617. "type": "github"
  7618. },
  7619. {
  7620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7621. "type": "tidelift"
  7622. }
  7623. ],
  7624. "time": "2024-10-01T08:30:56+00:00"
  7625. },
  7626. {
  7627. "name": "symfony/polyfill-ctype",
  7628. "version": "v1.31.0",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/symfony/polyfill-ctype.git",
  7632. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7637. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7638. "shasum": ""
  7639. },
  7640. "require": {
  7641. "php": ">=7.2"
  7642. },
  7643. "provide": {
  7644. "ext-ctype": "*"
  7645. },
  7646. "suggest": {
  7647. "ext-ctype": "For best performance"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "thanks": {
  7652. "url": "https://github.com/symfony/polyfill",
  7653. "name": "symfony/polyfill"
  7654. }
  7655. },
  7656. "autoload": {
  7657. "files": [
  7658. "bootstrap.php"
  7659. ],
  7660. "psr-4": {
  7661. "Symfony\\Polyfill\\Ctype\\": ""
  7662. }
  7663. },
  7664. "notification-url": "https://packagist.org/downloads/",
  7665. "license": [
  7666. "MIT"
  7667. ],
  7668. "authors": [
  7669. {
  7670. "name": "Gert de Pagter",
  7671. "email": "BackEndTea@gmail.com"
  7672. },
  7673. {
  7674. "name": "Symfony Community",
  7675. "homepage": "https://symfony.com/contributors"
  7676. }
  7677. ],
  7678. "description": "Symfony polyfill for ctype functions",
  7679. "homepage": "https://symfony.com",
  7680. "keywords": [
  7681. "compatibility",
  7682. "ctype",
  7683. "polyfill",
  7684. "portable"
  7685. ],
  7686. "support": {
  7687. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7688. },
  7689. "funding": [
  7690. {
  7691. "url": "https://symfony.com/sponsor",
  7692. "type": "custom"
  7693. },
  7694. {
  7695. "url": "https://github.com/fabpot",
  7696. "type": "github"
  7697. },
  7698. {
  7699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7700. "type": "tidelift"
  7701. }
  7702. ],
  7703. "time": "2024-09-09T11:45:10+00:00"
  7704. },
  7705. {
  7706. "name": "symfony/polyfill-intl-grapheme",
  7707. "version": "v1.31.0",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7711. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7716. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "php": ">=7.2"
  7721. },
  7722. "suggest": {
  7723. "ext-intl": "For best performance"
  7724. },
  7725. "type": "library",
  7726. "extra": {
  7727. "thanks": {
  7728. "url": "https://github.com/symfony/polyfill",
  7729. "name": "symfony/polyfill"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "files": [
  7734. "bootstrap.php"
  7735. ],
  7736. "psr-4": {
  7737. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7738. }
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "Nicolas Grekas",
  7747. "email": "p@tchwork.com"
  7748. },
  7749. {
  7750. "name": "Symfony Community",
  7751. "homepage": "https://symfony.com/contributors"
  7752. }
  7753. ],
  7754. "description": "Symfony polyfill for intl's grapheme_* functions",
  7755. "homepage": "https://symfony.com",
  7756. "keywords": [
  7757. "compatibility",
  7758. "grapheme",
  7759. "intl",
  7760. "polyfill",
  7761. "portable",
  7762. "shim"
  7763. ],
  7764. "support": {
  7765. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2024-09-09T11:45:10+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/polyfill-intl-idn",
  7785. "version": "v1.31.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7789. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7794. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=7.2",
  7799. "symfony/polyfill-intl-normalizer": "^1.10"
  7800. },
  7801. "suggest": {
  7802. "ext-intl": "For best performance"
  7803. },
  7804. "type": "library",
  7805. "extra": {
  7806. "thanks": {
  7807. "url": "https://github.com/symfony/polyfill",
  7808. "name": "symfony/polyfill"
  7809. }
  7810. },
  7811. "autoload": {
  7812. "files": [
  7813. "bootstrap.php"
  7814. ],
  7815. "psr-4": {
  7816. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7817. }
  7818. },
  7819. "notification-url": "https://packagist.org/downloads/",
  7820. "license": [
  7821. "MIT"
  7822. ],
  7823. "authors": [
  7824. {
  7825. "name": "Laurent Bassin",
  7826. "email": "laurent@bassin.info"
  7827. },
  7828. {
  7829. "name": "Trevor Rowbotham",
  7830. "email": "trevor.rowbotham@pm.me"
  7831. },
  7832. {
  7833. "name": "Symfony Community",
  7834. "homepage": "https://symfony.com/contributors"
  7835. }
  7836. ],
  7837. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7838. "homepage": "https://symfony.com",
  7839. "keywords": [
  7840. "compatibility",
  7841. "idn",
  7842. "intl",
  7843. "polyfill",
  7844. "portable",
  7845. "shim"
  7846. ],
  7847. "support": {
  7848. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7849. },
  7850. "funding": [
  7851. {
  7852. "url": "https://symfony.com/sponsor",
  7853. "type": "custom"
  7854. },
  7855. {
  7856. "url": "https://github.com/fabpot",
  7857. "type": "github"
  7858. },
  7859. {
  7860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7861. "type": "tidelift"
  7862. }
  7863. ],
  7864. "time": "2024-09-09T11:45:10+00:00"
  7865. },
  7866. {
  7867. "name": "symfony/polyfill-intl-normalizer",
  7868. "version": "v1.31.0",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7872. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7877. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": ">=7.2"
  7882. },
  7883. "suggest": {
  7884. "ext-intl": "For best performance"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "thanks": {
  7889. "url": "https://github.com/symfony/polyfill",
  7890. "name": "symfony/polyfill"
  7891. }
  7892. },
  7893. "autoload": {
  7894. "files": [
  7895. "bootstrap.php"
  7896. ],
  7897. "psr-4": {
  7898. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7899. },
  7900. "classmap": [
  7901. "Resources/stubs"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Nicolas Grekas",
  7911. "email": "p@tchwork.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7919. "homepage": "https://symfony.com",
  7920. "keywords": [
  7921. "compatibility",
  7922. "intl",
  7923. "normalizer",
  7924. "polyfill",
  7925. "portable",
  7926. "shim"
  7927. ],
  7928. "support": {
  7929. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7930. },
  7931. "funding": [
  7932. {
  7933. "url": "https://symfony.com/sponsor",
  7934. "type": "custom"
  7935. },
  7936. {
  7937. "url": "https://github.com/fabpot",
  7938. "type": "github"
  7939. },
  7940. {
  7941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7942. "type": "tidelift"
  7943. }
  7944. ],
  7945. "time": "2024-09-09T11:45:10+00:00"
  7946. },
  7947. {
  7948. "name": "symfony/polyfill-mbstring",
  7949. "version": "v1.31.0",
  7950. "source": {
  7951. "type": "git",
  7952. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7953. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7954. },
  7955. "dist": {
  7956. "type": "zip",
  7957. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7958. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7959. "shasum": ""
  7960. },
  7961. "require": {
  7962. "php": ">=7.2"
  7963. },
  7964. "provide": {
  7965. "ext-mbstring": "*"
  7966. },
  7967. "suggest": {
  7968. "ext-mbstring": "For best performance"
  7969. },
  7970. "type": "library",
  7971. "extra": {
  7972. "thanks": {
  7973. "url": "https://github.com/symfony/polyfill",
  7974. "name": "symfony/polyfill"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "files": [
  7979. "bootstrap.php"
  7980. ],
  7981. "psr-4": {
  7982. "Symfony\\Polyfill\\Mbstring\\": ""
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Nicolas Grekas",
  7992. "email": "p@tchwork.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Symfony polyfill for the Mbstring extension",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "compatibility",
  8003. "mbstring",
  8004. "polyfill",
  8005. "portable",
  8006. "shim"
  8007. ],
  8008. "support": {
  8009. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8010. },
  8011. "funding": [
  8012. {
  8013. "url": "https://symfony.com/sponsor",
  8014. "type": "custom"
  8015. },
  8016. {
  8017. "url": "https://github.com/fabpot",
  8018. "type": "github"
  8019. },
  8020. {
  8021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8022. "type": "tidelift"
  8023. }
  8024. ],
  8025. "time": "2024-09-09T11:45:10+00:00"
  8026. },
  8027. {
  8028. "name": "symfony/polyfill-php80",
  8029. "version": "v1.31.0",
  8030. "source": {
  8031. "type": "git",
  8032. "url": "https://github.com/symfony/polyfill-php80.git",
  8033. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8034. },
  8035. "dist": {
  8036. "type": "zip",
  8037. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8038. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8039. "shasum": ""
  8040. },
  8041. "require": {
  8042. "php": ">=7.2"
  8043. },
  8044. "type": "library",
  8045. "extra": {
  8046. "thanks": {
  8047. "url": "https://github.com/symfony/polyfill",
  8048. "name": "symfony/polyfill"
  8049. }
  8050. },
  8051. "autoload": {
  8052. "files": [
  8053. "bootstrap.php"
  8054. ],
  8055. "psr-4": {
  8056. "Symfony\\Polyfill\\Php80\\": ""
  8057. },
  8058. "classmap": [
  8059. "Resources/stubs"
  8060. ]
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "MIT"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Ion Bazan",
  8069. "email": "ion.bazan@gmail.com"
  8070. },
  8071. {
  8072. "name": "Nicolas Grekas",
  8073. "email": "p@tchwork.com"
  8074. },
  8075. {
  8076. "name": "Symfony Community",
  8077. "homepage": "https://symfony.com/contributors"
  8078. }
  8079. ],
  8080. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8081. "homepage": "https://symfony.com",
  8082. "keywords": [
  8083. "compatibility",
  8084. "polyfill",
  8085. "portable",
  8086. "shim"
  8087. ],
  8088. "support": {
  8089. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8090. },
  8091. "funding": [
  8092. {
  8093. "url": "https://symfony.com/sponsor",
  8094. "type": "custom"
  8095. },
  8096. {
  8097. "url": "https://github.com/fabpot",
  8098. "type": "github"
  8099. },
  8100. {
  8101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8102. "type": "tidelift"
  8103. }
  8104. ],
  8105. "time": "2024-09-09T11:45:10+00:00"
  8106. },
  8107. {
  8108. "name": "symfony/service-contracts",
  8109. "version": "v3.5.1",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/symfony/service-contracts.git",
  8113. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8118. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8119. "shasum": ""
  8120. },
  8121. "require": {
  8122. "php": ">=8.1",
  8123. "psr/container": "^1.1|^2.0",
  8124. "symfony/deprecation-contracts": "^2.5|^3"
  8125. },
  8126. "conflict": {
  8127. "ext-psr": "<1.1|>=2"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-main": "3.5-dev"
  8133. },
  8134. "thanks": {
  8135. "name": "symfony/contracts",
  8136. "url": "https://github.com/symfony/contracts"
  8137. }
  8138. },
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Symfony\\Contracts\\Service\\": ""
  8142. },
  8143. "exclude-from-classmap": [
  8144. "/Test/"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Nicolas Grekas",
  8154. "email": "p@tchwork.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Generic abstractions related to writing services",
  8162. "homepage": "https://symfony.com",
  8163. "keywords": [
  8164. "abstractions",
  8165. "contracts",
  8166. "decoupling",
  8167. "interfaces",
  8168. "interoperability",
  8169. "standards"
  8170. ],
  8171. "support": {
  8172. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8173. },
  8174. "funding": [
  8175. {
  8176. "url": "https://symfony.com/sponsor",
  8177. "type": "custom"
  8178. },
  8179. {
  8180. "url": "https://github.com/fabpot",
  8181. "type": "github"
  8182. },
  8183. {
  8184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8185. "type": "tidelift"
  8186. }
  8187. ],
  8188. "time": "2024-09-25T14:20:29+00:00"
  8189. },
  8190. {
  8191. "name": "symfony/string",
  8192. "version": "v6.4.15",
  8193. "source": {
  8194. "type": "git",
  8195. "url": "https://github.com/symfony/string.git",
  8196. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  8197. },
  8198. "dist": {
  8199. "type": "zip",
  8200. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8201. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8202. "shasum": ""
  8203. },
  8204. "require": {
  8205. "php": ">=8.1",
  8206. "symfony/polyfill-ctype": "~1.8",
  8207. "symfony/polyfill-intl-grapheme": "~1.0",
  8208. "symfony/polyfill-intl-normalizer": "~1.0",
  8209. "symfony/polyfill-mbstring": "~1.0"
  8210. },
  8211. "conflict": {
  8212. "symfony/translation-contracts": "<2.5"
  8213. },
  8214. "require-dev": {
  8215. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8216. "symfony/http-client": "^5.4|^6.0|^7.0",
  8217. "symfony/intl": "^6.2|^7.0",
  8218. "symfony/translation-contracts": "^2.5|^3.0",
  8219. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8220. },
  8221. "type": "library",
  8222. "autoload": {
  8223. "files": [
  8224. "Resources/functions.php"
  8225. ],
  8226. "psr-4": {
  8227. "Symfony\\Component\\String\\": ""
  8228. },
  8229. "exclude-from-classmap": [
  8230. "/Tests/"
  8231. ]
  8232. },
  8233. "notification-url": "https://packagist.org/downloads/",
  8234. "license": [
  8235. "MIT"
  8236. ],
  8237. "authors": [
  8238. {
  8239. "name": "Nicolas Grekas",
  8240. "email": "p@tchwork.com"
  8241. },
  8242. {
  8243. "name": "Symfony Community",
  8244. "homepage": "https://symfony.com/contributors"
  8245. }
  8246. ],
  8247. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8248. "homepage": "https://symfony.com",
  8249. "keywords": [
  8250. "grapheme",
  8251. "i18n",
  8252. "string",
  8253. "unicode",
  8254. "utf-8",
  8255. "utf8"
  8256. ],
  8257. "support": {
  8258. "source": "https://github.com/symfony/string/tree/v6.4.15"
  8259. },
  8260. "funding": [
  8261. {
  8262. "url": "https://symfony.com/sponsor",
  8263. "type": "custom"
  8264. },
  8265. {
  8266. "url": "https://github.com/fabpot",
  8267. "type": "github"
  8268. },
  8269. {
  8270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8271. "type": "tidelift"
  8272. }
  8273. ],
  8274. "time": "2024-11-13T13:31:12+00:00"
  8275. },
  8276. {
  8277. "name": "symfony/translation",
  8278. "version": "v6.4.13",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/symfony/translation.git",
  8282. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8287. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "php": ">=8.1",
  8292. "symfony/deprecation-contracts": "^2.5|^3",
  8293. "symfony/polyfill-mbstring": "~1.0",
  8294. "symfony/translation-contracts": "^2.5|^3.0"
  8295. },
  8296. "conflict": {
  8297. "symfony/config": "<5.4",
  8298. "symfony/console": "<5.4",
  8299. "symfony/dependency-injection": "<5.4",
  8300. "symfony/http-client-contracts": "<2.5",
  8301. "symfony/http-kernel": "<5.4",
  8302. "symfony/service-contracts": "<2.5",
  8303. "symfony/twig-bundle": "<5.4",
  8304. "symfony/yaml": "<5.4"
  8305. },
  8306. "provide": {
  8307. "symfony/translation-implementation": "2.3|3.0"
  8308. },
  8309. "require-dev": {
  8310. "nikic/php-parser": "^4.18|^5.0",
  8311. "psr/log": "^1|^2|^3",
  8312. "symfony/config": "^5.4|^6.0|^7.0",
  8313. "symfony/console": "^5.4|^6.0|^7.0",
  8314. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8315. "symfony/finder": "^5.4|^6.0|^7.0",
  8316. "symfony/http-client-contracts": "^2.5|^3.0",
  8317. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8318. "symfony/intl": "^5.4|^6.0|^7.0",
  8319. "symfony/polyfill-intl-icu": "^1.21",
  8320. "symfony/routing": "^5.4|^6.0|^7.0",
  8321. "symfony/service-contracts": "^2.5|^3",
  8322. "symfony/yaml": "^5.4|^6.0|^7.0"
  8323. },
  8324. "type": "library",
  8325. "autoload": {
  8326. "files": [
  8327. "Resources/functions.php"
  8328. ],
  8329. "psr-4": {
  8330. "Symfony\\Component\\Translation\\": ""
  8331. },
  8332. "exclude-from-classmap": [
  8333. "/Tests/"
  8334. ]
  8335. },
  8336. "notification-url": "https://packagist.org/downloads/",
  8337. "license": [
  8338. "MIT"
  8339. ],
  8340. "authors": [
  8341. {
  8342. "name": "Fabien Potencier",
  8343. "email": "fabien@symfony.com"
  8344. },
  8345. {
  8346. "name": "Symfony Community",
  8347. "homepage": "https://symfony.com/contributors"
  8348. }
  8349. ],
  8350. "description": "Provides tools to internationalize your application",
  8351. "homepage": "https://symfony.com",
  8352. "support": {
  8353. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  8354. },
  8355. "funding": [
  8356. {
  8357. "url": "https://symfony.com/sponsor",
  8358. "type": "custom"
  8359. },
  8360. {
  8361. "url": "https://github.com/fabpot",
  8362. "type": "github"
  8363. },
  8364. {
  8365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8366. "type": "tidelift"
  8367. }
  8368. ],
  8369. "time": "2024-09-27T18:14:25+00:00"
  8370. },
  8371. {
  8372. "name": "symfony/translation-contracts",
  8373. "version": "v3.5.1",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/symfony/translation-contracts.git",
  8377. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8382. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8383. "shasum": ""
  8384. },
  8385. "require": {
  8386. "php": ">=8.1"
  8387. },
  8388. "type": "library",
  8389. "extra": {
  8390. "branch-alias": {
  8391. "dev-main": "3.5-dev"
  8392. },
  8393. "thanks": {
  8394. "name": "symfony/contracts",
  8395. "url": "https://github.com/symfony/contracts"
  8396. }
  8397. },
  8398. "autoload": {
  8399. "psr-4": {
  8400. "Symfony\\Contracts\\Translation\\": ""
  8401. },
  8402. "exclude-from-classmap": [
  8403. "/Test/"
  8404. ]
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "MIT"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Nicolas Grekas",
  8413. "email": "p@tchwork.com"
  8414. },
  8415. {
  8416. "name": "Symfony Community",
  8417. "homepage": "https://symfony.com/contributors"
  8418. }
  8419. ],
  8420. "description": "Generic abstractions related to translation",
  8421. "homepage": "https://symfony.com",
  8422. "keywords": [
  8423. "abstractions",
  8424. "contracts",
  8425. "decoupling",
  8426. "interfaces",
  8427. "interoperability",
  8428. "standards"
  8429. ],
  8430. "support": {
  8431. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://symfony.com/sponsor",
  8436. "type": "custom"
  8437. },
  8438. {
  8439. "url": "https://github.com/fabpot",
  8440. "type": "github"
  8441. },
  8442. {
  8443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8444. "type": "tidelift"
  8445. }
  8446. ],
  8447. "time": "2024-09-25T14:20:29+00:00"
  8448. },
  8449. {
  8450. "name": "vlucas/phpdotenv",
  8451. "version": "v5.6.1",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/vlucas/phpdotenv.git",
  8455. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8460. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "ext-pcre": "*",
  8465. "graham-campbell/result-type": "^1.1.3",
  8466. "php": "^7.2.5 || ^8.0",
  8467. "phpoption/phpoption": "^1.9.3",
  8468. "symfony/polyfill-ctype": "^1.24",
  8469. "symfony/polyfill-mbstring": "^1.24",
  8470. "symfony/polyfill-php80": "^1.24"
  8471. },
  8472. "require-dev": {
  8473. "bamarni/composer-bin-plugin": "^1.8.2",
  8474. "ext-filter": "*",
  8475. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8476. },
  8477. "suggest": {
  8478. "ext-filter": "Required to use the boolean validator."
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "bamarni-bin": {
  8483. "bin-links": true,
  8484. "forward-command": false
  8485. },
  8486. "branch-alias": {
  8487. "dev-master": "5.6-dev"
  8488. }
  8489. },
  8490. "autoload": {
  8491. "psr-4": {
  8492. "Dotenv\\": "src/"
  8493. }
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "BSD-3-Clause"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Graham Campbell",
  8502. "email": "hello@gjcampbell.co.uk",
  8503. "homepage": "https://github.com/GrahamCampbell"
  8504. },
  8505. {
  8506. "name": "Vance Lucas",
  8507. "email": "vance@vancelucas.com",
  8508. "homepage": "https://github.com/vlucas"
  8509. }
  8510. ],
  8511. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8512. "keywords": [
  8513. "dotenv",
  8514. "env",
  8515. "environment"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8519. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8520. },
  8521. "funding": [
  8522. {
  8523. "url": "https://github.com/GrahamCampbell",
  8524. "type": "github"
  8525. },
  8526. {
  8527. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8528. "type": "tidelift"
  8529. }
  8530. ],
  8531. "time": "2024-07-20T21:52:34+00:00"
  8532. }
  8533. ],
  8534. "packages-dev": [
  8535. {
  8536. "name": "clue/ndjson-react",
  8537. "version": "v1.3.0",
  8538. "source": {
  8539. "type": "git",
  8540. "url": "https://github.com/clue/reactphp-ndjson.git",
  8541. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8542. },
  8543. "dist": {
  8544. "type": "zip",
  8545. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8546. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8547. "shasum": ""
  8548. },
  8549. "require": {
  8550. "php": ">=5.3",
  8551. "react/stream": "^1.2"
  8552. },
  8553. "require-dev": {
  8554. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8555. "react/event-loop": "^1.2"
  8556. },
  8557. "type": "library",
  8558. "autoload": {
  8559. "psr-4": {
  8560. "Clue\\React\\NDJson\\": "src/"
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Christian Lück",
  8570. "email": "christian@clue.engineering"
  8571. }
  8572. ],
  8573. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8574. "homepage": "https://github.com/clue/reactphp-ndjson",
  8575. "keywords": [
  8576. "NDJSON",
  8577. "json",
  8578. "jsonlines",
  8579. "newline",
  8580. "reactphp",
  8581. "streaming"
  8582. ],
  8583. "support": {
  8584. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8585. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8586. },
  8587. "funding": [
  8588. {
  8589. "url": "https://clue.engineering/support",
  8590. "type": "custom"
  8591. },
  8592. {
  8593. "url": "https://github.com/clue",
  8594. "type": "github"
  8595. }
  8596. ],
  8597. "time": "2022-12-23T10:58:28+00:00"
  8598. },
  8599. {
  8600. "name": "composer/pcre",
  8601. "version": "3.3.2",
  8602. "source": {
  8603. "type": "git",
  8604. "url": "https://github.com/composer/pcre.git",
  8605. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8606. },
  8607. "dist": {
  8608. "type": "zip",
  8609. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8610. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8611. "shasum": ""
  8612. },
  8613. "require": {
  8614. "php": "^7.4 || ^8.0"
  8615. },
  8616. "conflict": {
  8617. "phpstan/phpstan": "<1.11.10"
  8618. },
  8619. "require-dev": {
  8620. "phpstan/phpstan": "^1.12 || ^2",
  8621. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8622. "phpunit/phpunit": "^8 || ^9"
  8623. },
  8624. "type": "library",
  8625. "extra": {
  8626. "branch-alias": {
  8627. "dev-main": "3.x-dev"
  8628. },
  8629. "phpstan": {
  8630. "includes": [
  8631. "extension.neon"
  8632. ]
  8633. }
  8634. },
  8635. "autoload": {
  8636. "psr-4": {
  8637. "Composer\\Pcre\\": "src"
  8638. }
  8639. },
  8640. "notification-url": "https://packagist.org/downloads/",
  8641. "license": [
  8642. "MIT"
  8643. ],
  8644. "authors": [
  8645. {
  8646. "name": "Jordi Boggiano",
  8647. "email": "j.boggiano@seld.be",
  8648. "homepage": "http://seld.be"
  8649. }
  8650. ],
  8651. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8652. "keywords": [
  8653. "PCRE",
  8654. "preg",
  8655. "regex",
  8656. "regular expression"
  8657. ],
  8658. "support": {
  8659. "issues": "https://github.com/composer/pcre/issues",
  8660. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://packagist.com",
  8665. "type": "custom"
  8666. },
  8667. {
  8668. "url": "https://github.com/composer",
  8669. "type": "github"
  8670. },
  8671. {
  8672. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8673. "type": "tidelift"
  8674. }
  8675. ],
  8676. "time": "2024-11-12T16:29:46+00:00"
  8677. },
  8678. {
  8679. "name": "composer/semver",
  8680. "version": "3.4.3",
  8681. "source": {
  8682. "type": "git",
  8683. "url": "https://github.com/composer/semver.git",
  8684. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8685. },
  8686. "dist": {
  8687. "type": "zip",
  8688. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8689. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8690. "shasum": ""
  8691. },
  8692. "require": {
  8693. "php": "^5.3.2 || ^7.0 || ^8.0"
  8694. },
  8695. "require-dev": {
  8696. "phpstan/phpstan": "^1.11",
  8697. "symfony/phpunit-bridge": "^3 || ^7"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-main": "3.x-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "psr-4": {
  8707. "Composer\\Semver\\": "src"
  8708. }
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "MIT"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Nils Adermann",
  8717. "email": "naderman@naderman.de",
  8718. "homepage": "http://www.naderman.de"
  8719. },
  8720. {
  8721. "name": "Jordi Boggiano",
  8722. "email": "j.boggiano@seld.be",
  8723. "homepage": "http://seld.be"
  8724. },
  8725. {
  8726. "name": "Rob Bast",
  8727. "email": "rob.bast@gmail.com",
  8728. "homepage": "http://robbast.nl"
  8729. }
  8730. ],
  8731. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8732. "keywords": [
  8733. "semantic",
  8734. "semver",
  8735. "validation",
  8736. "versioning"
  8737. ],
  8738. "support": {
  8739. "irc": "ircs://irc.libera.chat:6697/composer",
  8740. "issues": "https://github.com/composer/semver/issues",
  8741. "source": "https://github.com/composer/semver/tree/3.4.3"
  8742. },
  8743. "funding": [
  8744. {
  8745. "url": "https://packagist.com",
  8746. "type": "custom"
  8747. },
  8748. {
  8749. "url": "https://github.com/composer",
  8750. "type": "github"
  8751. },
  8752. {
  8753. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8754. "type": "tidelift"
  8755. }
  8756. ],
  8757. "time": "2024-09-19T14:15:21+00:00"
  8758. },
  8759. {
  8760. "name": "composer/xdebug-handler",
  8761. "version": "3.0.5",
  8762. "source": {
  8763. "type": "git",
  8764. "url": "https://github.com/composer/xdebug-handler.git",
  8765. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8766. },
  8767. "dist": {
  8768. "type": "zip",
  8769. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8770. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8771. "shasum": ""
  8772. },
  8773. "require": {
  8774. "composer/pcre": "^1 || ^2 || ^3",
  8775. "php": "^7.2.5 || ^8.0",
  8776. "psr/log": "^1 || ^2 || ^3"
  8777. },
  8778. "require-dev": {
  8779. "phpstan/phpstan": "^1.0",
  8780. "phpstan/phpstan-strict-rules": "^1.1",
  8781. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8782. },
  8783. "type": "library",
  8784. "autoload": {
  8785. "psr-4": {
  8786. "Composer\\XdebugHandler\\": "src"
  8787. }
  8788. },
  8789. "notification-url": "https://packagist.org/downloads/",
  8790. "license": [
  8791. "MIT"
  8792. ],
  8793. "authors": [
  8794. {
  8795. "name": "John Stevenson",
  8796. "email": "john-stevenson@blueyonder.co.uk"
  8797. }
  8798. ],
  8799. "description": "Restarts a process without Xdebug.",
  8800. "keywords": [
  8801. "Xdebug",
  8802. "performance"
  8803. ],
  8804. "support": {
  8805. "irc": "ircs://irc.libera.chat:6697/composer",
  8806. "issues": "https://github.com/composer/xdebug-handler/issues",
  8807. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8808. },
  8809. "funding": [
  8810. {
  8811. "url": "https://packagist.com",
  8812. "type": "custom"
  8813. },
  8814. {
  8815. "url": "https://github.com/composer",
  8816. "type": "github"
  8817. },
  8818. {
  8819. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8820. "type": "tidelift"
  8821. }
  8822. ],
  8823. "time": "2024-05-06T16:37:16+00:00"
  8824. },
  8825. {
  8826. "name": "evenement/evenement",
  8827. "version": "v3.0.2",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/igorw/evenement.git",
  8831. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8836. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=7.0"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^9 || ^6"
  8844. },
  8845. "type": "library",
  8846. "autoload": {
  8847. "psr-4": {
  8848. "Evenement\\": "src/"
  8849. }
  8850. },
  8851. "notification-url": "https://packagist.org/downloads/",
  8852. "license": [
  8853. "MIT"
  8854. ],
  8855. "authors": [
  8856. {
  8857. "name": "Igor Wiedler",
  8858. "email": "igor@wiedler.ch"
  8859. }
  8860. ],
  8861. "description": "Événement is a very simple event dispatching library for PHP",
  8862. "keywords": [
  8863. "event-dispatcher",
  8864. "event-emitter"
  8865. ],
  8866. "support": {
  8867. "issues": "https://github.com/igorw/evenement/issues",
  8868. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8869. },
  8870. "time": "2023-08-08T05:53:35+00:00"
  8871. },
  8872. {
  8873. "name": "fidry/cpu-core-counter",
  8874. "version": "1.2.0",
  8875. "source": {
  8876. "type": "git",
  8877. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8878. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8879. },
  8880. "dist": {
  8881. "type": "zip",
  8882. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8883. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8884. "shasum": ""
  8885. },
  8886. "require": {
  8887. "php": "^7.2 || ^8.0"
  8888. },
  8889. "require-dev": {
  8890. "fidry/makefile": "^0.2.0",
  8891. "fidry/php-cs-fixer-config": "^1.1.2",
  8892. "phpstan/extension-installer": "^1.2.0",
  8893. "phpstan/phpstan": "^1.9.2",
  8894. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8895. "phpstan/phpstan-phpunit": "^1.2.2",
  8896. "phpstan/phpstan-strict-rules": "^1.4.4",
  8897. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8898. "webmozarts/strict-phpunit": "^7.5"
  8899. },
  8900. "type": "library",
  8901. "autoload": {
  8902. "psr-4": {
  8903. "Fidry\\CpuCoreCounter\\": "src/"
  8904. }
  8905. },
  8906. "notification-url": "https://packagist.org/downloads/",
  8907. "license": [
  8908. "MIT"
  8909. ],
  8910. "authors": [
  8911. {
  8912. "name": "Théo FIDRY",
  8913. "email": "theo.fidry@gmail.com"
  8914. }
  8915. ],
  8916. "description": "Tiny utility to get the number of CPU cores.",
  8917. "keywords": [
  8918. "CPU",
  8919. "core"
  8920. ],
  8921. "support": {
  8922. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8923. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8924. },
  8925. "funding": [
  8926. {
  8927. "url": "https://github.com/theofidry",
  8928. "type": "github"
  8929. }
  8930. ],
  8931. "time": "2024-08-06T10:04:20+00:00"
  8932. },
  8933. {
  8934. "name": "friendsofphp/php-cs-fixer",
  8935. "version": "v3.65.0",
  8936. "source": {
  8937. "type": "git",
  8938. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8939. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8940. },
  8941. "dist": {
  8942. "type": "zip",
  8943. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8944. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8945. "shasum": ""
  8946. },
  8947. "require": {
  8948. "clue/ndjson-react": "^1.0",
  8949. "composer/semver": "^3.4",
  8950. "composer/xdebug-handler": "^3.0.3",
  8951. "ext-filter": "*",
  8952. "ext-json": "*",
  8953. "ext-tokenizer": "*",
  8954. "fidry/cpu-core-counter": "^1.2",
  8955. "php": "^7.4 || ^8.0",
  8956. "react/child-process": "^0.6.5",
  8957. "react/event-loop": "^1.0",
  8958. "react/promise": "^2.0 || ^3.0",
  8959. "react/socket": "^1.0",
  8960. "react/stream": "^1.0",
  8961. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8962. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8963. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8964. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8965. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8966. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8967. "symfony/polyfill-mbstring": "^1.28",
  8968. "symfony/polyfill-php80": "^1.28",
  8969. "symfony/polyfill-php81": "^1.28",
  8970. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8971. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8972. },
  8973. "require-dev": {
  8974. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8975. "infection/infection": "^0.29.8",
  8976. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8977. "keradus/cli-executor": "^2.1",
  8978. "mikey179/vfsstream": "^1.6.12",
  8979. "php-coveralls/php-coveralls": "^2.7",
  8980. "php-cs-fixer/accessible-object": "^1.1",
  8981. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8982. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8983. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8984. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8985. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8986. },
  8987. "suggest": {
  8988. "ext-dom": "For handling output formats in XML",
  8989. "ext-mbstring": "For handling non-UTF8 characters."
  8990. },
  8991. "bin": [
  8992. "php-cs-fixer"
  8993. ],
  8994. "type": "application",
  8995. "autoload": {
  8996. "psr-4": {
  8997. "PhpCsFixer\\": "src/"
  8998. },
  8999. "exclude-from-classmap": [
  9000. "src/Fixer/Internal/*"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "MIT"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Fabien Potencier",
  9010. "email": "fabien@symfony.com"
  9011. },
  9012. {
  9013. "name": "Dariusz Rumiński",
  9014. "email": "dariusz.ruminski@gmail.com"
  9015. }
  9016. ],
  9017. "description": "A tool to automatically fix PHP code style",
  9018. "keywords": [
  9019. "Static code analysis",
  9020. "fixer",
  9021. "standards",
  9022. "static analysis"
  9023. ],
  9024. "support": {
  9025. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  9026. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  9027. },
  9028. "funding": [
  9029. {
  9030. "url": "https://github.com/keradus",
  9031. "type": "github"
  9032. }
  9033. ],
  9034. "time": "2024-11-25T00:39:24+00:00"
  9035. },
  9036. {
  9037. "name": "hamcrest/hamcrest-php",
  9038. "version": "v2.0.1",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9042. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9047. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "php": "^5.3|^7.0|^8.0"
  9052. },
  9053. "replace": {
  9054. "cordoval/hamcrest-php": "*",
  9055. "davedevelopment/hamcrest-php": "*",
  9056. "kodova/hamcrest-php": "*"
  9057. },
  9058. "require-dev": {
  9059. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9060. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9061. },
  9062. "type": "library",
  9063. "extra": {
  9064. "branch-alias": {
  9065. "dev-master": "2.1-dev"
  9066. }
  9067. },
  9068. "autoload": {
  9069. "classmap": [
  9070. "hamcrest"
  9071. ]
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "BSD-3-Clause"
  9076. ],
  9077. "description": "This is the PHP port of Hamcrest Matchers",
  9078. "keywords": [
  9079. "test"
  9080. ],
  9081. "support": {
  9082. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9083. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9084. },
  9085. "time": "2020-07-09T08:09:16+00:00"
  9086. },
  9087. {
  9088. "name": "hyperf/devtool",
  9089. "version": "v3.1.42",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/hyperf/devtool.git",
  9093. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  9098. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "hyperf/code-parser": "~3.1.0",
  9103. "hyperf/command": "~3.1.0",
  9104. "hyperf/contract": "~3.1.0",
  9105. "hyperf/di": "~3.1.0",
  9106. "hyperf/support": "~3.1.0",
  9107. "hyperf/utils": "~3.1.0",
  9108. "php": ">=8.1"
  9109. },
  9110. "type": "library",
  9111. "extra": {
  9112. "branch-alias": {
  9113. "dev-master": "3.1-dev"
  9114. },
  9115. "hyperf": {
  9116. "config": "Hyperf\\Devtool\\ConfigProvider"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "psr-4": {
  9121. "Hyperf\\Devtool\\": "src/"
  9122. }
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "MIT"
  9127. ],
  9128. "description": "A Devtool for Hyperf.",
  9129. "homepage": "https://hyperf.io",
  9130. "keywords": [
  9131. "dev",
  9132. "devtool",
  9133. "hyperf",
  9134. "php",
  9135. "swoole"
  9136. ],
  9137. "support": {
  9138. "docs": "https://hyperf.wiki",
  9139. "issues": "https://github.com/hyperf/hyperf/issues",
  9140. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  9141. "source": "https://github.com/hyperf/hyperf"
  9142. },
  9143. "funding": [
  9144. {
  9145. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9146. "type": "custom"
  9147. },
  9148. {
  9149. "url": "https://opencollective.com/hyperf",
  9150. "type": "open_collective"
  9151. }
  9152. ],
  9153. "time": "2024-09-25T02:54:12+00:00"
  9154. },
  9155. {
  9156. "name": "hyperf/testing",
  9157. "version": "v3.1.46",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/hyperf/testing.git",
  9161. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/hyperf/testing/zipball/d703d287817c577acfee0cec108dc2f4217ac9fa",
  9166. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "hyperf/codec": "~3.1.0",
  9171. "hyperf/collection": "~3.1.0",
  9172. "hyperf/contract": "~3.1.0",
  9173. "hyperf/coroutine": "~3.1.0",
  9174. "hyperf/http-message": "~3.1.0",
  9175. "hyperf/http-server": "~3.1.0",
  9176. "hyperf/support": "~3.1.0",
  9177. "hyperf/utils": "~3.1.0",
  9178. "php": ">=8.1",
  9179. "phpunit/phpunit": "^10.0",
  9180. "psr/container": "^1.0 || ^2.0",
  9181. "symfony/http-foundation": "^5.4 || ^6.0"
  9182. },
  9183. "suggest": {
  9184. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9185. },
  9186. "bin": [
  9187. "co-phpunit"
  9188. ],
  9189. "type": "library",
  9190. "extra": {
  9191. "branch-alias": {
  9192. "dev-master": "3.1-dev"
  9193. }
  9194. },
  9195. "autoload": {
  9196. "psr-4": {
  9197. "Hyperf\\Testing\\": "src/"
  9198. }
  9199. },
  9200. "notification-url": "https://packagist.org/downloads/",
  9201. "license": [
  9202. "MIT"
  9203. ],
  9204. "description": "Testing for hyperf",
  9205. "keywords": [
  9206. "dev",
  9207. "php",
  9208. "swoole",
  9209. "testing"
  9210. ],
  9211. "support": {
  9212. "source": "https://github.com/hyperf/testing/tree/v3.1.46"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9217. "type": "custom"
  9218. },
  9219. {
  9220. "url": "https://opencollective.com/hyperf",
  9221. "type": "open_collective"
  9222. }
  9223. ],
  9224. "time": "2024-11-20T07:42:54+00:00"
  9225. },
  9226. {
  9227. "name": "hyperf/watcher",
  9228. "version": "v3.1.43",
  9229. "source": {
  9230. "type": "git",
  9231. "url": "https://github.com/hyperf/watcher.git",
  9232. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  9233. },
  9234. "dist": {
  9235. "type": "zip",
  9236. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9237. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9238. "shasum": ""
  9239. },
  9240. "require": {
  9241. "ext-posix": "*",
  9242. "hyperf/codec": "~3.1.0",
  9243. "hyperf/command": "~3.1.0",
  9244. "hyperf/di": "~3.1.0",
  9245. "hyperf/framework": "~3.1.0",
  9246. "hyperf/support": "~3.1.0",
  9247. "php": ">=8.1"
  9248. },
  9249. "type": "library",
  9250. "extra": {
  9251. "branch-alias": {
  9252. "dev-master": "3.1-dev"
  9253. },
  9254. "hyperf": {
  9255. "config": "Hyperf\\Watcher\\ConfigProvider"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "files": [
  9260. "src/Functions.php"
  9261. ],
  9262. "psr-4": {
  9263. "Hyperf\\Watcher\\": "src/"
  9264. }
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "MIT"
  9269. ],
  9270. "description": "Hot reload watcher for Hyperf",
  9271. "keywords": [
  9272. "dev",
  9273. "hyperf",
  9274. "php"
  9275. ],
  9276. "support": {
  9277. "issues": "https://github.com/hyperf/watcher/issues",
  9278. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  9279. },
  9280. "funding": [
  9281. {
  9282. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9283. "type": "custom"
  9284. },
  9285. {
  9286. "url": "https://opencollective.com/hyperf",
  9287. "type": "open_collective"
  9288. }
  9289. ],
  9290. "time": "2024-10-06T12:33:12+00:00"
  9291. },
  9292. {
  9293. "name": "mockery/mockery",
  9294. "version": "1.6.12",
  9295. "source": {
  9296. "type": "git",
  9297. "url": "https://github.com/mockery/mockery.git",
  9298. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9299. },
  9300. "dist": {
  9301. "type": "zip",
  9302. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9303. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9304. "shasum": ""
  9305. },
  9306. "require": {
  9307. "hamcrest/hamcrest-php": "^2.0.1",
  9308. "lib-pcre": ">=7.0",
  9309. "php": ">=7.3"
  9310. },
  9311. "conflict": {
  9312. "phpunit/phpunit": "<8.0"
  9313. },
  9314. "require-dev": {
  9315. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9316. "symplify/easy-coding-standard": "^12.1.14"
  9317. },
  9318. "type": "library",
  9319. "autoload": {
  9320. "files": [
  9321. "library/helpers.php",
  9322. "library/Mockery.php"
  9323. ],
  9324. "psr-4": {
  9325. "Mockery\\": "library/Mockery"
  9326. }
  9327. },
  9328. "notification-url": "https://packagist.org/downloads/",
  9329. "license": [
  9330. "BSD-3-Clause"
  9331. ],
  9332. "authors": [
  9333. {
  9334. "name": "Pádraic Brady",
  9335. "email": "padraic.brady@gmail.com",
  9336. "homepage": "https://github.com/padraic",
  9337. "role": "Author"
  9338. },
  9339. {
  9340. "name": "Dave Marshall",
  9341. "email": "dave.marshall@atstsolutions.co.uk",
  9342. "homepage": "https://davedevelopment.co.uk",
  9343. "role": "Developer"
  9344. },
  9345. {
  9346. "name": "Nathanael Esayeas",
  9347. "email": "nathanael.esayeas@protonmail.com",
  9348. "homepage": "https://github.com/ghostwriter",
  9349. "role": "Lead Developer"
  9350. }
  9351. ],
  9352. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9353. "homepage": "https://github.com/mockery/mockery",
  9354. "keywords": [
  9355. "BDD",
  9356. "TDD",
  9357. "library",
  9358. "mock",
  9359. "mock objects",
  9360. "mockery",
  9361. "stub",
  9362. "test",
  9363. "test double",
  9364. "testing"
  9365. ],
  9366. "support": {
  9367. "docs": "https://docs.mockery.io/",
  9368. "issues": "https://github.com/mockery/mockery/issues",
  9369. "rss": "https://github.com/mockery/mockery/releases.atom",
  9370. "security": "https://github.com/mockery/mockery/security/advisories",
  9371. "source": "https://github.com/mockery/mockery"
  9372. },
  9373. "time": "2024-05-16T03:13:13+00:00"
  9374. },
  9375. {
  9376. "name": "myclabs/deep-copy",
  9377. "version": "1.12.1",
  9378. "source": {
  9379. "type": "git",
  9380. "url": "https://github.com/myclabs/DeepCopy.git",
  9381. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9382. },
  9383. "dist": {
  9384. "type": "zip",
  9385. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9386. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9387. "shasum": ""
  9388. },
  9389. "require": {
  9390. "php": "^7.1 || ^8.0"
  9391. },
  9392. "conflict": {
  9393. "doctrine/collections": "<1.6.8",
  9394. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9395. },
  9396. "require-dev": {
  9397. "doctrine/collections": "^1.6.8",
  9398. "doctrine/common": "^2.13.3 || ^3.2.2",
  9399. "phpspec/prophecy": "^1.10",
  9400. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9401. },
  9402. "type": "library",
  9403. "autoload": {
  9404. "files": [
  9405. "src/DeepCopy/deep_copy.php"
  9406. ],
  9407. "psr-4": {
  9408. "DeepCopy\\": "src/DeepCopy/"
  9409. }
  9410. },
  9411. "notification-url": "https://packagist.org/downloads/",
  9412. "license": [
  9413. "MIT"
  9414. ],
  9415. "description": "Create deep copies (clones) of your objects",
  9416. "keywords": [
  9417. "clone",
  9418. "copy",
  9419. "duplicate",
  9420. "object",
  9421. "object graph"
  9422. ],
  9423. "support": {
  9424. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9425. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9426. },
  9427. "funding": [
  9428. {
  9429. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9430. "type": "tidelift"
  9431. }
  9432. ],
  9433. "time": "2024-11-08T17:47:46+00:00"
  9434. },
  9435. {
  9436. "name": "phar-io/manifest",
  9437. "version": "2.0.4",
  9438. "source": {
  9439. "type": "git",
  9440. "url": "https://github.com/phar-io/manifest.git",
  9441. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9442. },
  9443. "dist": {
  9444. "type": "zip",
  9445. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9446. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9447. "shasum": ""
  9448. },
  9449. "require": {
  9450. "ext-dom": "*",
  9451. "ext-libxml": "*",
  9452. "ext-phar": "*",
  9453. "ext-xmlwriter": "*",
  9454. "phar-io/version": "^3.0.1",
  9455. "php": "^7.2 || ^8.0"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-master": "2.0.x-dev"
  9461. }
  9462. },
  9463. "autoload": {
  9464. "classmap": [
  9465. "src/"
  9466. ]
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "BSD-3-Clause"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Arne Blankerts",
  9475. "email": "arne@blankerts.de",
  9476. "role": "Developer"
  9477. },
  9478. {
  9479. "name": "Sebastian Heuer",
  9480. "email": "sebastian@phpeople.de",
  9481. "role": "Developer"
  9482. },
  9483. {
  9484. "name": "Sebastian Bergmann",
  9485. "email": "sebastian@phpunit.de",
  9486. "role": "Developer"
  9487. }
  9488. ],
  9489. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9490. "support": {
  9491. "issues": "https://github.com/phar-io/manifest/issues",
  9492. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9493. },
  9494. "funding": [
  9495. {
  9496. "url": "https://github.com/theseer",
  9497. "type": "github"
  9498. }
  9499. ],
  9500. "time": "2024-03-03T12:33:53+00:00"
  9501. },
  9502. {
  9503. "name": "phar-io/version",
  9504. "version": "3.2.1",
  9505. "source": {
  9506. "type": "git",
  9507. "url": "https://github.com/phar-io/version.git",
  9508. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9509. },
  9510. "dist": {
  9511. "type": "zip",
  9512. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9513. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9514. "shasum": ""
  9515. },
  9516. "require": {
  9517. "php": "^7.2 || ^8.0"
  9518. },
  9519. "type": "library",
  9520. "autoload": {
  9521. "classmap": [
  9522. "src/"
  9523. ]
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "BSD-3-Clause"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Arne Blankerts",
  9532. "email": "arne@blankerts.de",
  9533. "role": "Developer"
  9534. },
  9535. {
  9536. "name": "Sebastian Heuer",
  9537. "email": "sebastian@phpeople.de",
  9538. "role": "Developer"
  9539. },
  9540. {
  9541. "name": "Sebastian Bergmann",
  9542. "email": "sebastian@phpunit.de",
  9543. "role": "Developer"
  9544. }
  9545. ],
  9546. "description": "Library for handling version information and constraints",
  9547. "support": {
  9548. "issues": "https://github.com/phar-io/version/issues",
  9549. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9550. },
  9551. "time": "2022-02-21T01:04:05+00:00"
  9552. },
  9553. {
  9554. "name": "phpstan/phpstan",
  9555. "version": "1.12.12",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/phpstan/phpstan.git",
  9559. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9564. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9565. "shasum": ""
  9566. },
  9567. "require": {
  9568. "php": "^7.2|^8.0"
  9569. },
  9570. "conflict": {
  9571. "phpstan/phpstan-shim": "*"
  9572. },
  9573. "bin": [
  9574. "phpstan",
  9575. "phpstan.phar"
  9576. ],
  9577. "type": "library",
  9578. "autoload": {
  9579. "files": [
  9580. "bootstrap.php"
  9581. ]
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "MIT"
  9586. ],
  9587. "description": "PHPStan - PHP Static Analysis Tool",
  9588. "keywords": [
  9589. "dev",
  9590. "static analysis"
  9591. ],
  9592. "support": {
  9593. "docs": "https://phpstan.org/user-guide/getting-started",
  9594. "forum": "https://github.com/phpstan/phpstan/discussions",
  9595. "issues": "https://github.com/phpstan/phpstan/issues",
  9596. "security": "https://github.com/phpstan/phpstan/security/policy",
  9597. "source": "https://github.com/phpstan/phpstan-src"
  9598. },
  9599. "funding": [
  9600. {
  9601. "url": "https://github.com/ondrejmirtes",
  9602. "type": "github"
  9603. },
  9604. {
  9605. "url": "https://github.com/phpstan",
  9606. "type": "github"
  9607. }
  9608. ],
  9609. "time": "2024-11-28T22:13:23+00:00"
  9610. },
  9611. {
  9612. "name": "phpunit/php-code-coverage",
  9613. "version": "10.1.16",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9617. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9622. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "ext-dom": "*",
  9627. "ext-libxml": "*",
  9628. "ext-xmlwriter": "*",
  9629. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9630. "php": ">=8.1",
  9631. "phpunit/php-file-iterator": "^4.1.0",
  9632. "phpunit/php-text-template": "^3.0.1",
  9633. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9634. "sebastian/complexity": "^3.2.0",
  9635. "sebastian/environment": "^6.1.0",
  9636. "sebastian/lines-of-code": "^2.0.2",
  9637. "sebastian/version": "^4.0.1",
  9638. "theseer/tokenizer": "^1.2.3"
  9639. },
  9640. "require-dev": {
  9641. "phpunit/phpunit": "^10.1"
  9642. },
  9643. "suggest": {
  9644. "ext-pcov": "PHP extension that provides line coverage",
  9645. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9646. },
  9647. "type": "library",
  9648. "extra": {
  9649. "branch-alias": {
  9650. "dev-main": "10.1.x-dev"
  9651. }
  9652. },
  9653. "autoload": {
  9654. "classmap": [
  9655. "src/"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "BSD-3-Clause"
  9661. ],
  9662. "authors": [
  9663. {
  9664. "name": "Sebastian Bergmann",
  9665. "email": "sebastian@phpunit.de",
  9666. "role": "lead"
  9667. }
  9668. ],
  9669. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9670. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9671. "keywords": [
  9672. "coverage",
  9673. "testing",
  9674. "xunit"
  9675. ],
  9676. "support": {
  9677. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9678. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9679. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2024-08-22T04:31:57+00:00"
  9688. },
  9689. {
  9690. "name": "phpunit/php-file-iterator",
  9691. "version": "4.1.0",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9695. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9700. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "php": ">=8.1"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/phpunit": "^10.0"
  9708. },
  9709. "type": "library",
  9710. "extra": {
  9711. "branch-alias": {
  9712. "dev-main": "4.0-dev"
  9713. }
  9714. },
  9715. "autoload": {
  9716. "classmap": [
  9717. "src/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "BSD-3-Clause"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Sebastian Bergmann",
  9727. "email": "sebastian@phpunit.de",
  9728. "role": "lead"
  9729. }
  9730. ],
  9731. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9732. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9733. "keywords": [
  9734. "filesystem",
  9735. "iterator"
  9736. ],
  9737. "support": {
  9738. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9739. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9740. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9741. },
  9742. "funding": [
  9743. {
  9744. "url": "https://github.com/sebastianbergmann",
  9745. "type": "github"
  9746. }
  9747. ],
  9748. "time": "2023-08-31T06:24:48+00:00"
  9749. },
  9750. {
  9751. "name": "phpunit/php-invoker",
  9752. "version": "4.0.0",
  9753. "source": {
  9754. "type": "git",
  9755. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9756. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9757. },
  9758. "dist": {
  9759. "type": "zip",
  9760. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9761. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9762. "shasum": ""
  9763. },
  9764. "require": {
  9765. "php": ">=8.1"
  9766. },
  9767. "require-dev": {
  9768. "ext-pcntl": "*",
  9769. "phpunit/phpunit": "^10.0"
  9770. },
  9771. "suggest": {
  9772. "ext-pcntl": "*"
  9773. },
  9774. "type": "library",
  9775. "extra": {
  9776. "branch-alias": {
  9777. "dev-main": "4.0-dev"
  9778. }
  9779. },
  9780. "autoload": {
  9781. "classmap": [
  9782. "src/"
  9783. ]
  9784. },
  9785. "notification-url": "https://packagist.org/downloads/",
  9786. "license": [
  9787. "BSD-3-Clause"
  9788. ],
  9789. "authors": [
  9790. {
  9791. "name": "Sebastian Bergmann",
  9792. "email": "sebastian@phpunit.de",
  9793. "role": "lead"
  9794. }
  9795. ],
  9796. "description": "Invoke callables with a timeout",
  9797. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9798. "keywords": [
  9799. "process"
  9800. ],
  9801. "support": {
  9802. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9803. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://github.com/sebastianbergmann",
  9808. "type": "github"
  9809. }
  9810. ],
  9811. "time": "2023-02-03T06:56:09+00:00"
  9812. },
  9813. {
  9814. "name": "phpunit/php-text-template",
  9815. "version": "3.0.1",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9819. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9824. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": ">=8.1"
  9829. },
  9830. "require-dev": {
  9831. "phpunit/phpunit": "^10.0"
  9832. },
  9833. "type": "library",
  9834. "extra": {
  9835. "branch-alias": {
  9836. "dev-main": "3.0-dev"
  9837. }
  9838. },
  9839. "autoload": {
  9840. "classmap": [
  9841. "src/"
  9842. ]
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "BSD-3-Clause"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Sebastian Bergmann",
  9851. "email": "sebastian@phpunit.de",
  9852. "role": "lead"
  9853. }
  9854. ],
  9855. "description": "Simple template engine.",
  9856. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9857. "keywords": [
  9858. "template"
  9859. ],
  9860. "support": {
  9861. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9862. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9863. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://github.com/sebastianbergmann",
  9868. "type": "github"
  9869. }
  9870. ],
  9871. "time": "2023-08-31T14:07:24+00:00"
  9872. },
  9873. {
  9874. "name": "phpunit/php-timer",
  9875. "version": "6.0.0",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9879. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9884. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9885. "shasum": ""
  9886. },
  9887. "require": {
  9888. "php": ">=8.1"
  9889. },
  9890. "require-dev": {
  9891. "phpunit/phpunit": "^10.0"
  9892. },
  9893. "type": "library",
  9894. "extra": {
  9895. "branch-alias": {
  9896. "dev-main": "6.0-dev"
  9897. }
  9898. },
  9899. "autoload": {
  9900. "classmap": [
  9901. "src/"
  9902. ]
  9903. },
  9904. "notification-url": "https://packagist.org/downloads/",
  9905. "license": [
  9906. "BSD-3-Clause"
  9907. ],
  9908. "authors": [
  9909. {
  9910. "name": "Sebastian Bergmann",
  9911. "email": "sebastian@phpunit.de",
  9912. "role": "lead"
  9913. }
  9914. ],
  9915. "description": "Utility class for timing",
  9916. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9917. "keywords": [
  9918. "timer"
  9919. ],
  9920. "support": {
  9921. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9922. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9923. },
  9924. "funding": [
  9925. {
  9926. "url": "https://github.com/sebastianbergmann",
  9927. "type": "github"
  9928. }
  9929. ],
  9930. "time": "2023-02-03T06:57:52+00:00"
  9931. },
  9932. {
  9933. "name": "phpunit/phpunit",
  9934. "version": "10.5.38",
  9935. "source": {
  9936. "type": "git",
  9937. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9938. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9939. },
  9940. "dist": {
  9941. "type": "zip",
  9942. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9943. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9944. "shasum": ""
  9945. },
  9946. "require": {
  9947. "ext-dom": "*",
  9948. "ext-json": "*",
  9949. "ext-libxml": "*",
  9950. "ext-mbstring": "*",
  9951. "ext-xml": "*",
  9952. "ext-xmlwriter": "*",
  9953. "myclabs/deep-copy": "^1.12.0",
  9954. "phar-io/manifest": "^2.0.4",
  9955. "phar-io/version": "^3.2.1",
  9956. "php": ">=8.1",
  9957. "phpunit/php-code-coverage": "^10.1.16",
  9958. "phpunit/php-file-iterator": "^4.1.0",
  9959. "phpunit/php-invoker": "^4.0.0",
  9960. "phpunit/php-text-template": "^3.0.1",
  9961. "phpunit/php-timer": "^6.0.0",
  9962. "sebastian/cli-parser": "^2.0.1",
  9963. "sebastian/code-unit": "^2.0.0",
  9964. "sebastian/comparator": "^5.0.3",
  9965. "sebastian/diff": "^5.1.1",
  9966. "sebastian/environment": "^6.1.0",
  9967. "sebastian/exporter": "^5.1.2",
  9968. "sebastian/global-state": "^6.0.2",
  9969. "sebastian/object-enumerator": "^5.0.0",
  9970. "sebastian/recursion-context": "^5.0.0",
  9971. "sebastian/type": "^4.0.0",
  9972. "sebastian/version": "^4.0.1"
  9973. },
  9974. "suggest": {
  9975. "ext-soap": "To be able to generate mocks based on WSDL files"
  9976. },
  9977. "bin": [
  9978. "phpunit"
  9979. ],
  9980. "type": "library",
  9981. "extra": {
  9982. "branch-alias": {
  9983. "dev-main": "10.5-dev"
  9984. }
  9985. },
  9986. "autoload": {
  9987. "files": [
  9988. "src/Framework/Assert/Functions.php"
  9989. ],
  9990. "classmap": [
  9991. "src/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "BSD-3-Clause"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Sebastian Bergmann",
  10001. "email": "sebastian@phpunit.de",
  10002. "role": "lead"
  10003. }
  10004. ],
  10005. "description": "The PHP Unit Testing framework.",
  10006. "homepage": "https://phpunit.de/",
  10007. "keywords": [
  10008. "phpunit",
  10009. "testing",
  10010. "xunit"
  10011. ],
  10012. "support": {
  10013. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10014. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10015. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  10016. },
  10017. "funding": [
  10018. {
  10019. "url": "https://phpunit.de/sponsors.html",
  10020. "type": "custom"
  10021. },
  10022. {
  10023. "url": "https://github.com/sebastianbergmann",
  10024. "type": "github"
  10025. },
  10026. {
  10027. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10028. "type": "tidelift"
  10029. }
  10030. ],
  10031. "time": "2024-10-28T13:06:21+00:00"
  10032. },
  10033. {
  10034. "name": "react/cache",
  10035. "version": "v1.2.0",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/reactphp/cache.git",
  10039. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  10044. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  10045. "shasum": ""
  10046. },
  10047. "require": {
  10048. "php": ">=5.3.0",
  10049. "react/promise": "^3.0 || ^2.0 || ^1.1"
  10050. },
  10051. "require-dev": {
  10052. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  10053. },
  10054. "type": "library",
  10055. "autoload": {
  10056. "psr-4": {
  10057. "React\\Cache\\": "src/"
  10058. }
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "MIT"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Christian Lück",
  10067. "email": "christian@clue.engineering",
  10068. "homepage": "https://clue.engineering/"
  10069. },
  10070. {
  10071. "name": "Cees-Jan Kiewiet",
  10072. "email": "reactphp@ceesjankiewiet.nl",
  10073. "homepage": "https://wyrihaximus.net/"
  10074. },
  10075. {
  10076. "name": "Jan Sorgalla",
  10077. "email": "jsorgalla@gmail.com",
  10078. "homepage": "https://sorgalla.com/"
  10079. },
  10080. {
  10081. "name": "Chris Boden",
  10082. "email": "cboden@gmail.com",
  10083. "homepage": "https://cboden.dev/"
  10084. }
  10085. ],
  10086. "description": "Async, Promise-based cache interface for ReactPHP",
  10087. "keywords": [
  10088. "cache",
  10089. "caching",
  10090. "promise",
  10091. "reactphp"
  10092. ],
  10093. "support": {
  10094. "issues": "https://github.com/reactphp/cache/issues",
  10095. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  10096. },
  10097. "funding": [
  10098. {
  10099. "url": "https://opencollective.com/reactphp",
  10100. "type": "open_collective"
  10101. }
  10102. ],
  10103. "time": "2022-11-30T15:59:55+00:00"
  10104. },
  10105. {
  10106. "name": "react/child-process",
  10107. "version": "v0.6.5",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/reactphp/child-process.git",
  10111. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  10116. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10121. "php": ">=5.3.0",
  10122. "react/event-loop": "^1.2",
  10123. "react/stream": "^1.2"
  10124. },
  10125. "require-dev": {
  10126. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  10127. "react/socket": "^1.8",
  10128. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  10129. },
  10130. "type": "library",
  10131. "autoload": {
  10132. "psr-4": {
  10133. "React\\ChildProcess\\": "src"
  10134. }
  10135. },
  10136. "notification-url": "https://packagist.org/downloads/",
  10137. "license": [
  10138. "MIT"
  10139. ],
  10140. "authors": [
  10141. {
  10142. "name": "Christian Lück",
  10143. "email": "christian@clue.engineering",
  10144. "homepage": "https://clue.engineering/"
  10145. },
  10146. {
  10147. "name": "Cees-Jan Kiewiet",
  10148. "email": "reactphp@ceesjankiewiet.nl",
  10149. "homepage": "https://wyrihaximus.net/"
  10150. },
  10151. {
  10152. "name": "Jan Sorgalla",
  10153. "email": "jsorgalla@gmail.com",
  10154. "homepage": "https://sorgalla.com/"
  10155. },
  10156. {
  10157. "name": "Chris Boden",
  10158. "email": "cboden@gmail.com",
  10159. "homepage": "https://cboden.dev/"
  10160. }
  10161. ],
  10162. "description": "Event-driven library for executing child processes with ReactPHP.",
  10163. "keywords": [
  10164. "event-driven",
  10165. "process",
  10166. "reactphp"
  10167. ],
  10168. "support": {
  10169. "issues": "https://github.com/reactphp/child-process/issues",
  10170. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  10171. },
  10172. "funding": [
  10173. {
  10174. "url": "https://github.com/WyriHaximus",
  10175. "type": "github"
  10176. },
  10177. {
  10178. "url": "https://github.com/clue",
  10179. "type": "github"
  10180. }
  10181. ],
  10182. "time": "2022-09-16T13:41:56+00:00"
  10183. },
  10184. {
  10185. "name": "react/dns",
  10186. "version": "v1.13.0",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/reactphp/dns.git",
  10190. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10195. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10196. "shasum": ""
  10197. },
  10198. "require": {
  10199. "php": ">=5.3.0",
  10200. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10201. "react/event-loop": "^1.2",
  10202. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  10203. },
  10204. "require-dev": {
  10205. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10206. "react/async": "^4.3 || ^3 || ^2",
  10207. "react/promise-timer": "^1.11"
  10208. },
  10209. "type": "library",
  10210. "autoload": {
  10211. "psr-4": {
  10212. "React\\Dns\\": "src/"
  10213. }
  10214. },
  10215. "notification-url": "https://packagist.org/downloads/",
  10216. "license": [
  10217. "MIT"
  10218. ],
  10219. "authors": [
  10220. {
  10221. "name": "Christian Lück",
  10222. "email": "christian@clue.engineering",
  10223. "homepage": "https://clue.engineering/"
  10224. },
  10225. {
  10226. "name": "Cees-Jan Kiewiet",
  10227. "email": "reactphp@ceesjankiewiet.nl",
  10228. "homepage": "https://wyrihaximus.net/"
  10229. },
  10230. {
  10231. "name": "Jan Sorgalla",
  10232. "email": "jsorgalla@gmail.com",
  10233. "homepage": "https://sorgalla.com/"
  10234. },
  10235. {
  10236. "name": "Chris Boden",
  10237. "email": "cboden@gmail.com",
  10238. "homepage": "https://cboden.dev/"
  10239. }
  10240. ],
  10241. "description": "Async DNS resolver for ReactPHP",
  10242. "keywords": [
  10243. "async",
  10244. "dns",
  10245. "dns-resolver",
  10246. "reactphp"
  10247. ],
  10248. "support": {
  10249. "issues": "https://github.com/reactphp/dns/issues",
  10250. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://opencollective.com/reactphp",
  10255. "type": "open_collective"
  10256. }
  10257. ],
  10258. "time": "2024-06-13T14:18:03+00:00"
  10259. },
  10260. {
  10261. "name": "react/event-loop",
  10262. "version": "v1.5.0",
  10263. "source": {
  10264. "type": "git",
  10265. "url": "https://github.com/reactphp/event-loop.git",
  10266. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10267. },
  10268. "dist": {
  10269. "type": "zip",
  10270. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10271. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10272. "shasum": ""
  10273. },
  10274. "require": {
  10275. "php": ">=5.3.0"
  10276. },
  10277. "require-dev": {
  10278. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10279. },
  10280. "suggest": {
  10281. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10282. },
  10283. "type": "library",
  10284. "autoload": {
  10285. "psr-4": {
  10286. "React\\EventLoop\\": "src/"
  10287. }
  10288. },
  10289. "notification-url": "https://packagist.org/downloads/",
  10290. "license": [
  10291. "MIT"
  10292. ],
  10293. "authors": [
  10294. {
  10295. "name": "Christian Lück",
  10296. "email": "christian@clue.engineering",
  10297. "homepage": "https://clue.engineering/"
  10298. },
  10299. {
  10300. "name": "Cees-Jan Kiewiet",
  10301. "email": "reactphp@ceesjankiewiet.nl",
  10302. "homepage": "https://wyrihaximus.net/"
  10303. },
  10304. {
  10305. "name": "Jan Sorgalla",
  10306. "email": "jsorgalla@gmail.com",
  10307. "homepage": "https://sorgalla.com/"
  10308. },
  10309. {
  10310. "name": "Chris Boden",
  10311. "email": "cboden@gmail.com",
  10312. "homepage": "https://cboden.dev/"
  10313. }
  10314. ],
  10315. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10316. "keywords": [
  10317. "asynchronous",
  10318. "event-loop"
  10319. ],
  10320. "support": {
  10321. "issues": "https://github.com/reactphp/event-loop/issues",
  10322. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10323. },
  10324. "funding": [
  10325. {
  10326. "url": "https://opencollective.com/reactphp",
  10327. "type": "open_collective"
  10328. }
  10329. ],
  10330. "time": "2023-11-13T13:48:05+00:00"
  10331. },
  10332. {
  10333. "name": "react/promise",
  10334. "version": "v3.2.0",
  10335. "source": {
  10336. "type": "git",
  10337. "url": "https://github.com/reactphp/promise.git",
  10338. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  10339. },
  10340. "dist": {
  10341. "type": "zip",
  10342. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  10343. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  10344. "shasum": ""
  10345. },
  10346. "require": {
  10347. "php": ">=7.1.0"
  10348. },
  10349. "require-dev": {
  10350. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10351. "phpunit/phpunit": "^9.6 || ^7.5"
  10352. },
  10353. "type": "library",
  10354. "autoload": {
  10355. "files": [
  10356. "src/functions_include.php"
  10357. ],
  10358. "psr-4": {
  10359. "React\\Promise\\": "src/"
  10360. }
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "MIT"
  10365. ],
  10366. "authors": [
  10367. {
  10368. "name": "Jan Sorgalla",
  10369. "email": "jsorgalla@gmail.com",
  10370. "homepage": "https://sorgalla.com/"
  10371. },
  10372. {
  10373. "name": "Christian Lück",
  10374. "email": "christian@clue.engineering",
  10375. "homepage": "https://clue.engineering/"
  10376. },
  10377. {
  10378. "name": "Cees-Jan Kiewiet",
  10379. "email": "reactphp@ceesjankiewiet.nl",
  10380. "homepage": "https://wyrihaximus.net/"
  10381. },
  10382. {
  10383. "name": "Chris Boden",
  10384. "email": "cboden@gmail.com",
  10385. "homepage": "https://cboden.dev/"
  10386. }
  10387. ],
  10388. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10389. "keywords": [
  10390. "promise",
  10391. "promises"
  10392. ],
  10393. "support": {
  10394. "issues": "https://github.com/reactphp/promise/issues",
  10395. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  10396. },
  10397. "funding": [
  10398. {
  10399. "url": "https://opencollective.com/reactphp",
  10400. "type": "open_collective"
  10401. }
  10402. ],
  10403. "time": "2024-05-24T10:39:05+00:00"
  10404. },
  10405. {
  10406. "name": "react/socket",
  10407. "version": "v1.16.0",
  10408. "source": {
  10409. "type": "git",
  10410. "url": "https://github.com/reactphp/socket.git",
  10411. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  10412. },
  10413. "dist": {
  10414. "type": "zip",
  10415. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10416. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10417. "shasum": ""
  10418. },
  10419. "require": {
  10420. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10421. "php": ">=5.3.0",
  10422. "react/dns": "^1.13",
  10423. "react/event-loop": "^1.2",
  10424. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  10425. "react/stream": "^1.4"
  10426. },
  10427. "require-dev": {
  10428. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10429. "react/async": "^4.3 || ^3.3 || ^2",
  10430. "react/promise-stream": "^1.4",
  10431. "react/promise-timer": "^1.11"
  10432. },
  10433. "type": "library",
  10434. "autoload": {
  10435. "psr-4": {
  10436. "React\\Socket\\": "src/"
  10437. }
  10438. },
  10439. "notification-url": "https://packagist.org/downloads/",
  10440. "license": [
  10441. "MIT"
  10442. ],
  10443. "authors": [
  10444. {
  10445. "name": "Christian Lück",
  10446. "email": "christian@clue.engineering",
  10447. "homepage": "https://clue.engineering/"
  10448. },
  10449. {
  10450. "name": "Cees-Jan Kiewiet",
  10451. "email": "reactphp@ceesjankiewiet.nl",
  10452. "homepage": "https://wyrihaximus.net/"
  10453. },
  10454. {
  10455. "name": "Jan Sorgalla",
  10456. "email": "jsorgalla@gmail.com",
  10457. "homepage": "https://sorgalla.com/"
  10458. },
  10459. {
  10460. "name": "Chris Boden",
  10461. "email": "cboden@gmail.com",
  10462. "homepage": "https://cboden.dev/"
  10463. }
  10464. ],
  10465. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10466. "keywords": [
  10467. "Connection",
  10468. "Socket",
  10469. "async",
  10470. "reactphp",
  10471. "stream"
  10472. ],
  10473. "support": {
  10474. "issues": "https://github.com/reactphp/socket/issues",
  10475. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://opencollective.com/reactphp",
  10480. "type": "open_collective"
  10481. }
  10482. ],
  10483. "time": "2024-07-26T10:38:09+00:00"
  10484. },
  10485. {
  10486. "name": "react/stream",
  10487. "version": "v1.4.0",
  10488. "source": {
  10489. "type": "git",
  10490. "url": "https://github.com/reactphp/stream.git",
  10491. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10492. },
  10493. "dist": {
  10494. "type": "zip",
  10495. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10496. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10497. "shasum": ""
  10498. },
  10499. "require": {
  10500. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10501. "php": ">=5.3.8",
  10502. "react/event-loop": "^1.2"
  10503. },
  10504. "require-dev": {
  10505. "clue/stream-filter": "~1.2",
  10506. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10507. },
  10508. "type": "library",
  10509. "autoload": {
  10510. "psr-4": {
  10511. "React\\Stream\\": "src/"
  10512. }
  10513. },
  10514. "notification-url": "https://packagist.org/downloads/",
  10515. "license": [
  10516. "MIT"
  10517. ],
  10518. "authors": [
  10519. {
  10520. "name": "Christian Lück",
  10521. "email": "christian@clue.engineering",
  10522. "homepage": "https://clue.engineering/"
  10523. },
  10524. {
  10525. "name": "Cees-Jan Kiewiet",
  10526. "email": "reactphp@ceesjankiewiet.nl",
  10527. "homepage": "https://wyrihaximus.net/"
  10528. },
  10529. {
  10530. "name": "Jan Sorgalla",
  10531. "email": "jsorgalla@gmail.com",
  10532. "homepage": "https://sorgalla.com/"
  10533. },
  10534. {
  10535. "name": "Chris Boden",
  10536. "email": "cboden@gmail.com",
  10537. "homepage": "https://cboden.dev/"
  10538. }
  10539. ],
  10540. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10541. "keywords": [
  10542. "event-driven",
  10543. "io",
  10544. "non-blocking",
  10545. "pipe",
  10546. "reactphp",
  10547. "readable",
  10548. "stream",
  10549. "writable"
  10550. ],
  10551. "support": {
  10552. "issues": "https://github.com/reactphp/stream/issues",
  10553. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10554. },
  10555. "funding": [
  10556. {
  10557. "url": "https://opencollective.com/reactphp",
  10558. "type": "open_collective"
  10559. }
  10560. ],
  10561. "time": "2024-06-11T12:45:25+00:00"
  10562. },
  10563. {
  10564. "name": "sebastian/cli-parser",
  10565. "version": "2.0.1",
  10566. "source": {
  10567. "type": "git",
  10568. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10569. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10570. },
  10571. "dist": {
  10572. "type": "zip",
  10573. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10574. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10575. "shasum": ""
  10576. },
  10577. "require": {
  10578. "php": ">=8.1"
  10579. },
  10580. "require-dev": {
  10581. "phpunit/phpunit": "^10.0"
  10582. },
  10583. "type": "library",
  10584. "extra": {
  10585. "branch-alias": {
  10586. "dev-main": "2.0-dev"
  10587. }
  10588. },
  10589. "autoload": {
  10590. "classmap": [
  10591. "src/"
  10592. ]
  10593. },
  10594. "notification-url": "https://packagist.org/downloads/",
  10595. "license": [
  10596. "BSD-3-Clause"
  10597. ],
  10598. "authors": [
  10599. {
  10600. "name": "Sebastian Bergmann",
  10601. "email": "sebastian@phpunit.de",
  10602. "role": "lead"
  10603. }
  10604. ],
  10605. "description": "Library for parsing CLI options",
  10606. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10607. "support": {
  10608. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10609. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10610. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10611. },
  10612. "funding": [
  10613. {
  10614. "url": "https://github.com/sebastianbergmann",
  10615. "type": "github"
  10616. }
  10617. ],
  10618. "time": "2024-03-02T07:12:49+00:00"
  10619. },
  10620. {
  10621. "name": "sebastian/code-unit",
  10622. "version": "2.0.0",
  10623. "source": {
  10624. "type": "git",
  10625. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10626. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10627. },
  10628. "dist": {
  10629. "type": "zip",
  10630. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10631. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10632. "shasum": ""
  10633. },
  10634. "require": {
  10635. "php": ">=8.1"
  10636. },
  10637. "require-dev": {
  10638. "phpunit/phpunit": "^10.0"
  10639. },
  10640. "type": "library",
  10641. "extra": {
  10642. "branch-alias": {
  10643. "dev-main": "2.0-dev"
  10644. }
  10645. },
  10646. "autoload": {
  10647. "classmap": [
  10648. "src/"
  10649. ]
  10650. },
  10651. "notification-url": "https://packagist.org/downloads/",
  10652. "license": [
  10653. "BSD-3-Clause"
  10654. ],
  10655. "authors": [
  10656. {
  10657. "name": "Sebastian Bergmann",
  10658. "email": "sebastian@phpunit.de",
  10659. "role": "lead"
  10660. }
  10661. ],
  10662. "description": "Collection of value objects that represent the PHP code units",
  10663. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10664. "support": {
  10665. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10666. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10667. },
  10668. "funding": [
  10669. {
  10670. "url": "https://github.com/sebastianbergmann",
  10671. "type": "github"
  10672. }
  10673. ],
  10674. "time": "2023-02-03T06:58:43+00:00"
  10675. },
  10676. {
  10677. "name": "sebastian/code-unit-reverse-lookup",
  10678. "version": "3.0.0",
  10679. "source": {
  10680. "type": "git",
  10681. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10682. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10683. },
  10684. "dist": {
  10685. "type": "zip",
  10686. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10687. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10688. "shasum": ""
  10689. },
  10690. "require": {
  10691. "php": ">=8.1"
  10692. },
  10693. "require-dev": {
  10694. "phpunit/phpunit": "^10.0"
  10695. },
  10696. "type": "library",
  10697. "extra": {
  10698. "branch-alias": {
  10699. "dev-main": "3.0-dev"
  10700. }
  10701. },
  10702. "autoload": {
  10703. "classmap": [
  10704. "src/"
  10705. ]
  10706. },
  10707. "notification-url": "https://packagist.org/downloads/",
  10708. "license": [
  10709. "BSD-3-Clause"
  10710. ],
  10711. "authors": [
  10712. {
  10713. "name": "Sebastian Bergmann",
  10714. "email": "sebastian@phpunit.de"
  10715. }
  10716. ],
  10717. "description": "Looks up which function or method a line of code belongs to",
  10718. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10719. "support": {
  10720. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10721. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10722. },
  10723. "funding": [
  10724. {
  10725. "url": "https://github.com/sebastianbergmann",
  10726. "type": "github"
  10727. }
  10728. ],
  10729. "time": "2023-02-03T06:59:15+00:00"
  10730. },
  10731. {
  10732. "name": "sebastian/comparator",
  10733. "version": "5.0.3",
  10734. "source": {
  10735. "type": "git",
  10736. "url": "https://github.com/sebastianbergmann/comparator.git",
  10737. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10738. },
  10739. "dist": {
  10740. "type": "zip",
  10741. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10742. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10743. "shasum": ""
  10744. },
  10745. "require": {
  10746. "ext-dom": "*",
  10747. "ext-mbstring": "*",
  10748. "php": ">=8.1",
  10749. "sebastian/diff": "^5.0",
  10750. "sebastian/exporter": "^5.0"
  10751. },
  10752. "require-dev": {
  10753. "phpunit/phpunit": "^10.5"
  10754. },
  10755. "type": "library",
  10756. "extra": {
  10757. "branch-alias": {
  10758. "dev-main": "5.0-dev"
  10759. }
  10760. },
  10761. "autoload": {
  10762. "classmap": [
  10763. "src/"
  10764. ]
  10765. },
  10766. "notification-url": "https://packagist.org/downloads/",
  10767. "license": [
  10768. "BSD-3-Clause"
  10769. ],
  10770. "authors": [
  10771. {
  10772. "name": "Sebastian Bergmann",
  10773. "email": "sebastian@phpunit.de"
  10774. },
  10775. {
  10776. "name": "Jeff Welch",
  10777. "email": "whatthejeff@gmail.com"
  10778. },
  10779. {
  10780. "name": "Volker Dusch",
  10781. "email": "github@wallbash.com"
  10782. },
  10783. {
  10784. "name": "Bernhard Schussek",
  10785. "email": "bschussek@2bepublished.at"
  10786. }
  10787. ],
  10788. "description": "Provides the functionality to compare PHP values for equality",
  10789. "homepage": "https://github.com/sebastianbergmann/comparator",
  10790. "keywords": [
  10791. "comparator",
  10792. "compare",
  10793. "equality"
  10794. ],
  10795. "support": {
  10796. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10797. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10798. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10799. },
  10800. "funding": [
  10801. {
  10802. "url": "https://github.com/sebastianbergmann",
  10803. "type": "github"
  10804. }
  10805. ],
  10806. "time": "2024-10-18T14:56:07+00:00"
  10807. },
  10808. {
  10809. "name": "sebastian/complexity",
  10810. "version": "3.2.0",
  10811. "source": {
  10812. "type": "git",
  10813. "url": "https://github.com/sebastianbergmann/complexity.git",
  10814. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10815. },
  10816. "dist": {
  10817. "type": "zip",
  10818. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10819. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10820. "shasum": ""
  10821. },
  10822. "require": {
  10823. "nikic/php-parser": "^4.18 || ^5.0",
  10824. "php": ">=8.1"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^10.0"
  10828. },
  10829. "type": "library",
  10830. "extra": {
  10831. "branch-alias": {
  10832. "dev-main": "3.2-dev"
  10833. }
  10834. },
  10835. "autoload": {
  10836. "classmap": [
  10837. "src/"
  10838. ]
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "BSD-3-Clause"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Sebastian Bergmann",
  10847. "email": "sebastian@phpunit.de",
  10848. "role": "lead"
  10849. }
  10850. ],
  10851. "description": "Library for calculating the complexity of PHP code units",
  10852. "homepage": "https://github.com/sebastianbergmann/complexity",
  10853. "support": {
  10854. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10855. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10856. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10857. },
  10858. "funding": [
  10859. {
  10860. "url": "https://github.com/sebastianbergmann",
  10861. "type": "github"
  10862. }
  10863. ],
  10864. "time": "2023-12-21T08:37:17+00:00"
  10865. },
  10866. {
  10867. "name": "sebastian/diff",
  10868. "version": "5.1.1",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/sebastianbergmann/diff.git",
  10872. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10877. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10878. "shasum": ""
  10879. },
  10880. "require": {
  10881. "php": ">=8.1"
  10882. },
  10883. "require-dev": {
  10884. "phpunit/phpunit": "^10.0",
  10885. "symfony/process": "^6.4"
  10886. },
  10887. "type": "library",
  10888. "extra": {
  10889. "branch-alias": {
  10890. "dev-main": "5.1-dev"
  10891. }
  10892. },
  10893. "autoload": {
  10894. "classmap": [
  10895. "src/"
  10896. ]
  10897. },
  10898. "notification-url": "https://packagist.org/downloads/",
  10899. "license": [
  10900. "BSD-3-Clause"
  10901. ],
  10902. "authors": [
  10903. {
  10904. "name": "Sebastian Bergmann",
  10905. "email": "sebastian@phpunit.de"
  10906. },
  10907. {
  10908. "name": "Kore Nordmann",
  10909. "email": "mail@kore-nordmann.de"
  10910. }
  10911. ],
  10912. "description": "Diff implementation",
  10913. "homepage": "https://github.com/sebastianbergmann/diff",
  10914. "keywords": [
  10915. "diff",
  10916. "udiff",
  10917. "unidiff",
  10918. "unified diff"
  10919. ],
  10920. "support": {
  10921. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10922. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10923. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10924. },
  10925. "funding": [
  10926. {
  10927. "url": "https://github.com/sebastianbergmann",
  10928. "type": "github"
  10929. }
  10930. ],
  10931. "time": "2024-03-02T07:15:17+00:00"
  10932. },
  10933. {
  10934. "name": "sebastian/environment",
  10935. "version": "6.1.0",
  10936. "source": {
  10937. "type": "git",
  10938. "url": "https://github.com/sebastianbergmann/environment.git",
  10939. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10940. },
  10941. "dist": {
  10942. "type": "zip",
  10943. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10944. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10945. "shasum": ""
  10946. },
  10947. "require": {
  10948. "php": ">=8.1"
  10949. },
  10950. "require-dev": {
  10951. "phpunit/phpunit": "^10.0"
  10952. },
  10953. "suggest": {
  10954. "ext-posix": "*"
  10955. },
  10956. "type": "library",
  10957. "extra": {
  10958. "branch-alias": {
  10959. "dev-main": "6.1-dev"
  10960. }
  10961. },
  10962. "autoload": {
  10963. "classmap": [
  10964. "src/"
  10965. ]
  10966. },
  10967. "notification-url": "https://packagist.org/downloads/",
  10968. "license": [
  10969. "BSD-3-Clause"
  10970. ],
  10971. "authors": [
  10972. {
  10973. "name": "Sebastian Bergmann",
  10974. "email": "sebastian@phpunit.de"
  10975. }
  10976. ],
  10977. "description": "Provides functionality to handle HHVM/PHP environments",
  10978. "homepage": "https://github.com/sebastianbergmann/environment",
  10979. "keywords": [
  10980. "Xdebug",
  10981. "environment",
  10982. "hhvm"
  10983. ],
  10984. "support": {
  10985. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10986. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10987. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10988. },
  10989. "funding": [
  10990. {
  10991. "url": "https://github.com/sebastianbergmann",
  10992. "type": "github"
  10993. }
  10994. ],
  10995. "time": "2024-03-23T08:47:14+00:00"
  10996. },
  10997. {
  10998. "name": "sebastian/exporter",
  10999. "version": "5.1.2",
  11000. "source": {
  11001. "type": "git",
  11002. "url": "https://github.com/sebastianbergmann/exporter.git",
  11003. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11004. },
  11005. "dist": {
  11006. "type": "zip",
  11007. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11008. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11009. "shasum": ""
  11010. },
  11011. "require": {
  11012. "ext-mbstring": "*",
  11013. "php": ">=8.1",
  11014. "sebastian/recursion-context": "^5.0"
  11015. },
  11016. "require-dev": {
  11017. "phpunit/phpunit": "^10.0"
  11018. },
  11019. "type": "library",
  11020. "extra": {
  11021. "branch-alias": {
  11022. "dev-main": "5.1-dev"
  11023. }
  11024. },
  11025. "autoload": {
  11026. "classmap": [
  11027. "src/"
  11028. ]
  11029. },
  11030. "notification-url": "https://packagist.org/downloads/",
  11031. "license": [
  11032. "BSD-3-Clause"
  11033. ],
  11034. "authors": [
  11035. {
  11036. "name": "Sebastian Bergmann",
  11037. "email": "sebastian@phpunit.de"
  11038. },
  11039. {
  11040. "name": "Jeff Welch",
  11041. "email": "whatthejeff@gmail.com"
  11042. },
  11043. {
  11044. "name": "Volker Dusch",
  11045. "email": "github@wallbash.com"
  11046. },
  11047. {
  11048. "name": "Adam Harvey",
  11049. "email": "aharvey@php.net"
  11050. },
  11051. {
  11052. "name": "Bernhard Schussek",
  11053. "email": "bschussek@gmail.com"
  11054. }
  11055. ],
  11056. "description": "Provides the functionality to export PHP variables for visualization",
  11057. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11058. "keywords": [
  11059. "export",
  11060. "exporter"
  11061. ],
  11062. "support": {
  11063. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11064. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11065. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11066. },
  11067. "funding": [
  11068. {
  11069. "url": "https://github.com/sebastianbergmann",
  11070. "type": "github"
  11071. }
  11072. ],
  11073. "time": "2024-03-02T07:17:12+00:00"
  11074. },
  11075. {
  11076. "name": "sebastian/global-state",
  11077. "version": "6.0.2",
  11078. "source": {
  11079. "type": "git",
  11080. "url": "https://github.com/sebastianbergmann/global-state.git",
  11081. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11082. },
  11083. "dist": {
  11084. "type": "zip",
  11085. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11086. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11087. "shasum": ""
  11088. },
  11089. "require": {
  11090. "php": ">=8.1",
  11091. "sebastian/object-reflector": "^3.0",
  11092. "sebastian/recursion-context": "^5.0"
  11093. },
  11094. "require-dev": {
  11095. "ext-dom": "*",
  11096. "phpunit/phpunit": "^10.0"
  11097. },
  11098. "type": "library",
  11099. "extra": {
  11100. "branch-alias": {
  11101. "dev-main": "6.0-dev"
  11102. }
  11103. },
  11104. "autoload": {
  11105. "classmap": [
  11106. "src/"
  11107. ]
  11108. },
  11109. "notification-url": "https://packagist.org/downloads/",
  11110. "license": [
  11111. "BSD-3-Clause"
  11112. ],
  11113. "authors": [
  11114. {
  11115. "name": "Sebastian Bergmann",
  11116. "email": "sebastian@phpunit.de"
  11117. }
  11118. ],
  11119. "description": "Snapshotting of global state",
  11120. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11121. "keywords": [
  11122. "global state"
  11123. ],
  11124. "support": {
  11125. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11126. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11127. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11128. },
  11129. "funding": [
  11130. {
  11131. "url": "https://github.com/sebastianbergmann",
  11132. "type": "github"
  11133. }
  11134. ],
  11135. "time": "2024-03-02T07:19:19+00:00"
  11136. },
  11137. {
  11138. "name": "sebastian/lines-of-code",
  11139. "version": "2.0.2",
  11140. "source": {
  11141. "type": "git",
  11142. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11143. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11144. },
  11145. "dist": {
  11146. "type": "zip",
  11147. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11148. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11149. "shasum": ""
  11150. },
  11151. "require": {
  11152. "nikic/php-parser": "^4.18 || ^5.0",
  11153. "php": ">=8.1"
  11154. },
  11155. "require-dev": {
  11156. "phpunit/phpunit": "^10.0"
  11157. },
  11158. "type": "library",
  11159. "extra": {
  11160. "branch-alias": {
  11161. "dev-main": "2.0-dev"
  11162. }
  11163. },
  11164. "autoload": {
  11165. "classmap": [
  11166. "src/"
  11167. ]
  11168. },
  11169. "notification-url": "https://packagist.org/downloads/",
  11170. "license": [
  11171. "BSD-3-Clause"
  11172. ],
  11173. "authors": [
  11174. {
  11175. "name": "Sebastian Bergmann",
  11176. "email": "sebastian@phpunit.de",
  11177. "role": "lead"
  11178. }
  11179. ],
  11180. "description": "Library for counting the lines of code in PHP source code",
  11181. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11182. "support": {
  11183. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11184. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11185. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11186. },
  11187. "funding": [
  11188. {
  11189. "url": "https://github.com/sebastianbergmann",
  11190. "type": "github"
  11191. }
  11192. ],
  11193. "time": "2023-12-21T08:38:20+00:00"
  11194. },
  11195. {
  11196. "name": "sebastian/object-enumerator",
  11197. "version": "5.0.0",
  11198. "source": {
  11199. "type": "git",
  11200. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11201. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11202. },
  11203. "dist": {
  11204. "type": "zip",
  11205. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11206. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11207. "shasum": ""
  11208. },
  11209. "require": {
  11210. "php": ">=8.1",
  11211. "sebastian/object-reflector": "^3.0",
  11212. "sebastian/recursion-context": "^5.0"
  11213. },
  11214. "require-dev": {
  11215. "phpunit/phpunit": "^10.0"
  11216. },
  11217. "type": "library",
  11218. "extra": {
  11219. "branch-alias": {
  11220. "dev-main": "5.0-dev"
  11221. }
  11222. },
  11223. "autoload": {
  11224. "classmap": [
  11225. "src/"
  11226. ]
  11227. },
  11228. "notification-url": "https://packagist.org/downloads/",
  11229. "license": [
  11230. "BSD-3-Clause"
  11231. ],
  11232. "authors": [
  11233. {
  11234. "name": "Sebastian Bergmann",
  11235. "email": "sebastian@phpunit.de"
  11236. }
  11237. ],
  11238. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11239. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11240. "support": {
  11241. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11242. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11243. },
  11244. "funding": [
  11245. {
  11246. "url": "https://github.com/sebastianbergmann",
  11247. "type": "github"
  11248. }
  11249. ],
  11250. "time": "2023-02-03T07:08:32+00:00"
  11251. },
  11252. {
  11253. "name": "sebastian/object-reflector",
  11254. "version": "3.0.0",
  11255. "source": {
  11256. "type": "git",
  11257. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11258. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11259. },
  11260. "dist": {
  11261. "type": "zip",
  11262. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11263. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11264. "shasum": ""
  11265. },
  11266. "require": {
  11267. "php": ">=8.1"
  11268. },
  11269. "require-dev": {
  11270. "phpunit/phpunit": "^10.0"
  11271. },
  11272. "type": "library",
  11273. "extra": {
  11274. "branch-alias": {
  11275. "dev-main": "3.0-dev"
  11276. }
  11277. },
  11278. "autoload": {
  11279. "classmap": [
  11280. "src/"
  11281. ]
  11282. },
  11283. "notification-url": "https://packagist.org/downloads/",
  11284. "license": [
  11285. "BSD-3-Clause"
  11286. ],
  11287. "authors": [
  11288. {
  11289. "name": "Sebastian Bergmann",
  11290. "email": "sebastian@phpunit.de"
  11291. }
  11292. ],
  11293. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11294. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11295. "support": {
  11296. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11297. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11298. },
  11299. "funding": [
  11300. {
  11301. "url": "https://github.com/sebastianbergmann",
  11302. "type": "github"
  11303. }
  11304. ],
  11305. "time": "2023-02-03T07:06:18+00:00"
  11306. },
  11307. {
  11308. "name": "sebastian/recursion-context",
  11309. "version": "5.0.0",
  11310. "source": {
  11311. "type": "git",
  11312. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11313. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11314. },
  11315. "dist": {
  11316. "type": "zip",
  11317. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11318. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11319. "shasum": ""
  11320. },
  11321. "require": {
  11322. "php": ">=8.1"
  11323. },
  11324. "require-dev": {
  11325. "phpunit/phpunit": "^10.0"
  11326. },
  11327. "type": "library",
  11328. "extra": {
  11329. "branch-alias": {
  11330. "dev-main": "5.0-dev"
  11331. }
  11332. },
  11333. "autoload": {
  11334. "classmap": [
  11335. "src/"
  11336. ]
  11337. },
  11338. "notification-url": "https://packagist.org/downloads/",
  11339. "license": [
  11340. "BSD-3-Clause"
  11341. ],
  11342. "authors": [
  11343. {
  11344. "name": "Sebastian Bergmann",
  11345. "email": "sebastian@phpunit.de"
  11346. },
  11347. {
  11348. "name": "Jeff Welch",
  11349. "email": "whatthejeff@gmail.com"
  11350. },
  11351. {
  11352. "name": "Adam Harvey",
  11353. "email": "aharvey@php.net"
  11354. }
  11355. ],
  11356. "description": "Provides functionality to recursively process PHP variables",
  11357. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11358. "support": {
  11359. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11360. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11361. },
  11362. "funding": [
  11363. {
  11364. "url": "https://github.com/sebastianbergmann",
  11365. "type": "github"
  11366. }
  11367. ],
  11368. "time": "2023-02-03T07:05:40+00:00"
  11369. },
  11370. {
  11371. "name": "sebastian/type",
  11372. "version": "4.0.0",
  11373. "source": {
  11374. "type": "git",
  11375. "url": "https://github.com/sebastianbergmann/type.git",
  11376. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11377. },
  11378. "dist": {
  11379. "type": "zip",
  11380. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11381. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11382. "shasum": ""
  11383. },
  11384. "require": {
  11385. "php": ">=8.1"
  11386. },
  11387. "require-dev": {
  11388. "phpunit/phpunit": "^10.0"
  11389. },
  11390. "type": "library",
  11391. "extra": {
  11392. "branch-alias": {
  11393. "dev-main": "4.0-dev"
  11394. }
  11395. },
  11396. "autoload": {
  11397. "classmap": [
  11398. "src/"
  11399. ]
  11400. },
  11401. "notification-url": "https://packagist.org/downloads/",
  11402. "license": [
  11403. "BSD-3-Clause"
  11404. ],
  11405. "authors": [
  11406. {
  11407. "name": "Sebastian Bergmann",
  11408. "email": "sebastian@phpunit.de",
  11409. "role": "lead"
  11410. }
  11411. ],
  11412. "description": "Collection of value objects that represent the types of the PHP type system",
  11413. "homepage": "https://github.com/sebastianbergmann/type",
  11414. "support": {
  11415. "issues": "https://github.com/sebastianbergmann/type/issues",
  11416. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11417. },
  11418. "funding": [
  11419. {
  11420. "url": "https://github.com/sebastianbergmann",
  11421. "type": "github"
  11422. }
  11423. ],
  11424. "time": "2023-02-03T07:10:45+00:00"
  11425. },
  11426. {
  11427. "name": "sebastian/version",
  11428. "version": "4.0.1",
  11429. "source": {
  11430. "type": "git",
  11431. "url": "https://github.com/sebastianbergmann/version.git",
  11432. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11433. },
  11434. "dist": {
  11435. "type": "zip",
  11436. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11437. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11438. "shasum": ""
  11439. },
  11440. "require": {
  11441. "php": ">=8.1"
  11442. },
  11443. "type": "library",
  11444. "extra": {
  11445. "branch-alias": {
  11446. "dev-main": "4.0-dev"
  11447. }
  11448. },
  11449. "autoload": {
  11450. "classmap": [
  11451. "src/"
  11452. ]
  11453. },
  11454. "notification-url": "https://packagist.org/downloads/",
  11455. "license": [
  11456. "BSD-3-Clause"
  11457. ],
  11458. "authors": [
  11459. {
  11460. "name": "Sebastian Bergmann",
  11461. "email": "sebastian@phpunit.de",
  11462. "role": "lead"
  11463. }
  11464. ],
  11465. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11466. "homepage": "https://github.com/sebastianbergmann/version",
  11467. "support": {
  11468. "issues": "https://github.com/sebastianbergmann/version/issues",
  11469. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11470. },
  11471. "funding": [
  11472. {
  11473. "url": "https://github.com/sebastianbergmann",
  11474. "type": "github"
  11475. }
  11476. ],
  11477. "time": "2023-02-07T11:34:05+00:00"
  11478. },
  11479. {
  11480. "name": "swoole/ide-helper",
  11481. "version": "5.1.6",
  11482. "source": {
  11483. "type": "git",
  11484. "url": "https://github.com/swoole/ide-helper.git",
  11485. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  11486. },
  11487. "dist": {
  11488. "type": "zip",
  11489. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11490. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11491. "shasum": ""
  11492. },
  11493. "type": "library",
  11494. "notification-url": "https://packagist.org/downloads/",
  11495. "license": [
  11496. "Apache-2.0"
  11497. ],
  11498. "authors": [
  11499. {
  11500. "name": "Team Swoole",
  11501. "email": "team@swoole.com"
  11502. }
  11503. ],
  11504. "description": "IDE help files for Swoole.",
  11505. "support": {
  11506. "issues": "https://github.com/swoole/ide-helper/issues",
  11507. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  11508. },
  11509. "time": "2024-11-29T07:21:36+00:00"
  11510. },
  11511. {
  11512. "name": "symfony/event-dispatcher",
  11513. "version": "v6.4.13",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/symfony/event-dispatcher.git",
  11517. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11522. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": ">=8.1",
  11527. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11528. },
  11529. "conflict": {
  11530. "symfony/dependency-injection": "<5.4",
  11531. "symfony/service-contracts": "<2.5"
  11532. },
  11533. "provide": {
  11534. "psr/event-dispatcher-implementation": "1.0",
  11535. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11536. },
  11537. "require-dev": {
  11538. "psr/log": "^1|^2|^3",
  11539. "symfony/config": "^5.4|^6.0|^7.0",
  11540. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11541. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11542. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11543. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11544. "symfony/service-contracts": "^2.5|^3",
  11545. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11546. },
  11547. "type": "library",
  11548. "autoload": {
  11549. "psr-4": {
  11550. "Symfony\\Component\\EventDispatcher\\": ""
  11551. },
  11552. "exclude-from-classmap": [
  11553. "/Tests/"
  11554. ]
  11555. },
  11556. "notification-url": "https://packagist.org/downloads/",
  11557. "license": [
  11558. "MIT"
  11559. ],
  11560. "authors": [
  11561. {
  11562. "name": "Fabien Potencier",
  11563. "email": "fabien@symfony.com"
  11564. },
  11565. {
  11566. "name": "Symfony Community",
  11567. "homepage": "https://symfony.com/contributors"
  11568. }
  11569. ],
  11570. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11571. "homepage": "https://symfony.com",
  11572. "support": {
  11573. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11574. },
  11575. "funding": [
  11576. {
  11577. "url": "https://symfony.com/sponsor",
  11578. "type": "custom"
  11579. },
  11580. {
  11581. "url": "https://github.com/fabpot",
  11582. "type": "github"
  11583. },
  11584. {
  11585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11586. "type": "tidelift"
  11587. }
  11588. ],
  11589. "time": "2024-09-25T14:18:03+00:00"
  11590. },
  11591. {
  11592. "name": "symfony/event-dispatcher-contracts",
  11593. "version": "v3.5.1",
  11594. "source": {
  11595. "type": "git",
  11596. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11597. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11598. },
  11599. "dist": {
  11600. "type": "zip",
  11601. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11602. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11603. "shasum": ""
  11604. },
  11605. "require": {
  11606. "php": ">=8.1",
  11607. "psr/event-dispatcher": "^1"
  11608. },
  11609. "type": "library",
  11610. "extra": {
  11611. "branch-alias": {
  11612. "dev-main": "3.5-dev"
  11613. },
  11614. "thanks": {
  11615. "name": "symfony/contracts",
  11616. "url": "https://github.com/symfony/contracts"
  11617. }
  11618. },
  11619. "autoload": {
  11620. "psr-4": {
  11621. "Symfony\\Contracts\\EventDispatcher\\": ""
  11622. }
  11623. },
  11624. "notification-url": "https://packagist.org/downloads/",
  11625. "license": [
  11626. "MIT"
  11627. ],
  11628. "authors": [
  11629. {
  11630. "name": "Nicolas Grekas",
  11631. "email": "p@tchwork.com"
  11632. },
  11633. {
  11634. "name": "Symfony Community",
  11635. "homepage": "https://symfony.com/contributors"
  11636. }
  11637. ],
  11638. "description": "Generic abstractions related to dispatching event",
  11639. "homepage": "https://symfony.com",
  11640. "keywords": [
  11641. "abstractions",
  11642. "contracts",
  11643. "decoupling",
  11644. "interfaces",
  11645. "interoperability",
  11646. "standards"
  11647. ],
  11648. "support": {
  11649. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11650. },
  11651. "funding": [
  11652. {
  11653. "url": "https://symfony.com/sponsor",
  11654. "type": "custom"
  11655. },
  11656. {
  11657. "url": "https://github.com/fabpot",
  11658. "type": "github"
  11659. },
  11660. {
  11661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11662. "type": "tidelift"
  11663. }
  11664. ],
  11665. "time": "2024-09-25T14:20:29+00:00"
  11666. },
  11667. {
  11668. "name": "symfony/filesystem",
  11669. "version": "v6.4.13",
  11670. "source": {
  11671. "type": "git",
  11672. "url": "https://github.com/symfony/filesystem.git",
  11673. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11674. },
  11675. "dist": {
  11676. "type": "zip",
  11677. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11678. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11679. "shasum": ""
  11680. },
  11681. "require": {
  11682. "php": ">=8.1",
  11683. "symfony/polyfill-ctype": "~1.8",
  11684. "symfony/polyfill-mbstring": "~1.8"
  11685. },
  11686. "require-dev": {
  11687. "symfony/process": "^5.4|^6.4|^7.0"
  11688. },
  11689. "type": "library",
  11690. "autoload": {
  11691. "psr-4": {
  11692. "Symfony\\Component\\Filesystem\\": ""
  11693. },
  11694. "exclude-from-classmap": [
  11695. "/Tests/"
  11696. ]
  11697. },
  11698. "notification-url": "https://packagist.org/downloads/",
  11699. "license": [
  11700. "MIT"
  11701. ],
  11702. "authors": [
  11703. {
  11704. "name": "Fabien Potencier",
  11705. "email": "fabien@symfony.com"
  11706. },
  11707. {
  11708. "name": "Symfony Community",
  11709. "homepage": "https://symfony.com/contributors"
  11710. }
  11711. ],
  11712. "description": "Provides basic utilities for the filesystem",
  11713. "homepage": "https://symfony.com",
  11714. "support": {
  11715. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11716. },
  11717. "funding": [
  11718. {
  11719. "url": "https://symfony.com/sponsor",
  11720. "type": "custom"
  11721. },
  11722. {
  11723. "url": "https://github.com/fabpot",
  11724. "type": "github"
  11725. },
  11726. {
  11727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11728. "type": "tidelift"
  11729. }
  11730. ],
  11731. "time": "2024-10-25T15:07:50+00:00"
  11732. },
  11733. {
  11734. "name": "symfony/http-foundation",
  11735. "version": "v6.4.16",
  11736. "source": {
  11737. "type": "git",
  11738. "url": "https://github.com/symfony/http-foundation.git",
  11739. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11740. },
  11741. "dist": {
  11742. "type": "zip",
  11743. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11744. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11745. "shasum": ""
  11746. },
  11747. "require": {
  11748. "php": ">=8.1",
  11749. "symfony/deprecation-contracts": "^2.5|^3",
  11750. "symfony/polyfill-mbstring": "~1.1",
  11751. "symfony/polyfill-php83": "^1.27"
  11752. },
  11753. "conflict": {
  11754. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11755. },
  11756. "require-dev": {
  11757. "doctrine/dbal": "^2.13.1|^3|^4",
  11758. "predis/predis": "^1.1|^2.0",
  11759. "symfony/cache": "^6.4.12|^7.1.5",
  11760. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11761. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11762. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11763. "symfony/mime": "^5.4|^6.0|^7.0",
  11764. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11765. },
  11766. "type": "library",
  11767. "autoload": {
  11768. "psr-4": {
  11769. "Symfony\\Component\\HttpFoundation\\": ""
  11770. },
  11771. "exclude-from-classmap": [
  11772. "/Tests/"
  11773. ]
  11774. },
  11775. "notification-url": "https://packagist.org/downloads/",
  11776. "license": [
  11777. "MIT"
  11778. ],
  11779. "authors": [
  11780. {
  11781. "name": "Fabien Potencier",
  11782. "email": "fabien@symfony.com"
  11783. },
  11784. {
  11785. "name": "Symfony Community",
  11786. "homepage": "https://symfony.com/contributors"
  11787. }
  11788. ],
  11789. "description": "Defines an object-oriented layer for the HTTP specification",
  11790. "homepage": "https://symfony.com",
  11791. "support": {
  11792. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11793. },
  11794. "funding": [
  11795. {
  11796. "url": "https://symfony.com/sponsor",
  11797. "type": "custom"
  11798. },
  11799. {
  11800. "url": "https://github.com/fabpot",
  11801. "type": "github"
  11802. },
  11803. {
  11804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11805. "type": "tidelift"
  11806. }
  11807. ],
  11808. "time": "2024-11-13T18:58:10+00:00"
  11809. },
  11810. {
  11811. "name": "symfony/options-resolver",
  11812. "version": "v6.4.16",
  11813. "source": {
  11814. "type": "git",
  11815. "url": "https://github.com/symfony/options-resolver.git",
  11816. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11817. },
  11818. "dist": {
  11819. "type": "zip",
  11820. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11821. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11822. "shasum": ""
  11823. },
  11824. "require": {
  11825. "php": ">=8.1",
  11826. "symfony/deprecation-contracts": "^2.5|^3"
  11827. },
  11828. "type": "library",
  11829. "autoload": {
  11830. "psr-4": {
  11831. "Symfony\\Component\\OptionsResolver\\": ""
  11832. },
  11833. "exclude-from-classmap": [
  11834. "/Tests/"
  11835. ]
  11836. },
  11837. "notification-url": "https://packagist.org/downloads/",
  11838. "license": [
  11839. "MIT"
  11840. ],
  11841. "authors": [
  11842. {
  11843. "name": "Fabien Potencier",
  11844. "email": "fabien@symfony.com"
  11845. },
  11846. {
  11847. "name": "Symfony Community",
  11848. "homepage": "https://symfony.com/contributors"
  11849. }
  11850. ],
  11851. "description": "Provides an improved replacement for the array_replace PHP function",
  11852. "homepage": "https://symfony.com",
  11853. "keywords": [
  11854. "config",
  11855. "configuration",
  11856. "options"
  11857. ],
  11858. "support": {
  11859. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11860. },
  11861. "funding": [
  11862. {
  11863. "url": "https://symfony.com/sponsor",
  11864. "type": "custom"
  11865. },
  11866. {
  11867. "url": "https://github.com/fabpot",
  11868. "type": "github"
  11869. },
  11870. {
  11871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11872. "type": "tidelift"
  11873. }
  11874. ],
  11875. "time": "2024-11-20T10:57:02+00:00"
  11876. },
  11877. {
  11878. "name": "symfony/polyfill-php81",
  11879. "version": "v1.31.0",
  11880. "source": {
  11881. "type": "git",
  11882. "url": "https://github.com/symfony/polyfill-php81.git",
  11883. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11884. },
  11885. "dist": {
  11886. "type": "zip",
  11887. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11888. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11889. "shasum": ""
  11890. },
  11891. "require": {
  11892. "php": ">=7.2"
  11893. },
  11894. "type": "library",
  11895. "extra": {
  11896. "thanks": {
  11897. "url": "https://github.com/symfony/polyfill",
  11898. "name": "symfony/polyfill"
  11899. }
  11900. },
  11901. "autoload": {
  11902. "files": [
  11903. "bootstrap.php"
  11904. ],
  11905. "psr-4": {
  11906. "Symfony\\Polyfill\\Php81\\": ""
  11907. },
  11908. "classmap": [
  11909. "Resources/stubs"
  11910. ]
  11911. },
  11912. "notification-url": "https://packagist.org/downloads/",
  11913. "license": [
  11914. "MIT"
  11915. ],
  11916. "authors": [
  11917. {
  11918. "name": "Nicolas Grekas",
  11919. "email": "p@tchwork.com"
  11920. },
  11921. {
  11922. "name": "Symfony Community",
  11923. "homepage": "https://symfony.com/contributors"
  11924. }
  11925. ],
  11926. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11927. "homepage": "https://symfony.com",
  11928. "keywords": [
  11929. "compatibility",
  11930. "polyfill",
  11931. "portable",
  11932. "shim"
  11933. ],
  11934. "support": {
  11935. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11936. },
  11937. "funding": [
  11938. {
  11939. "url": "https://symfony.com/sponsor",
  11940. "type": "custom"
  11941. },
  11942. {
  11943. "url": "https://github.com/fabpot",
  11944. "type": "github"
  11945. },
  11946. {
  11947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11948. "type": "tidelift"
  11949. }
  11950. ],
  11951. "time": "2024-09-09T11:45:10+00:00"
  11952. },
  11953. {
  11954. "name": "symfony/polyfill-php83",
  11955. "version": "v1.31.0",
  11956. "source": {
  11957. "type": "git",
  11958. "url": "https://github.com/symfony/polyfill-php83.git",
  11959. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11960. },
  11961. "dist": {
  11962. "type": "zip",
  11963. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11964. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11965. "shasum": ""
  11966. },
  11967. "require": {
  11968. "php": ">=7.2"
  11969. },
  11970. "type": "library",
  11971. "extra": {
  11972. "thanks": {
  11973. "url": "https://github.com/symfony/polyfill",
  11974. "name": "symfony/polyfill"
  11975. }
  11976. },
  11977. "autoload": {
  11978. "files": [
  11979. "bootstrap.php"
  11980. ],
  11981. "psr-4": {
  11982. "Symfony\\Polyfill\\Php83\\": ""
  11983. },
  11984. "classmap": [
  11985. "Resources/stubs"
  11986. ]
  11987. },
  11988. "notification-url": "https://packagist.org/downloads/",
  11989. "license": [
  11990. "MIT"
  11991. ],
  11992. "authors": [
  11993. {
  11994. "name": "Nicolas Grekas",
  11995. "email": "p@tchwork.com"
  11996. },
  11997. {
  11998. "name": "Symfony Community",
  11999. "homepage": "https://symfony.com/contributors"
  12000. }
  12001. ],
  12002. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12003. "homepage": "https://symfony.com",
  12004. "keywords": [
  12005. "compatibility",
  12006. "polyfill",
  12007. "portable",
  12008. "shim"
  12009. ],
  12010. "support": {
  12011. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12012. },
  12013. "funding": [
  12014. {
  12015. "url": "https://symfony.com/sponsor",
  12016. "type": "custom"
  12017. },
  12018. {
  12019. "url": "https://github.com/fabpot",
  12020. "type": "github"
  12021. },
  12022. {
  12023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12024. "type": "tidelift"
  12025. }
  12026. ],
  12027. "time": "2024-09-09T11:45:10+00:00"
  12028. },
  12029. {
  12030. "name": "symfony/process",
  12031. "version": "v6.4.15",
  12032. "source": {
  12033. "type": "git",
  12034. "url": "https://github.com/symfony/process.git",
  12035. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  12036. },
  12037. "dist": {
  12038. "type": "zip",
  12039. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  12040. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  12041. "shasum": ""
  12042. },
  12043. "require": {
  12044. "php": ">=8.1"
  12045. },
  12046. "type": "library",
  12047. "autoload": {
  12048. "psr-4": {
  12049. "Symfony\\Component\\Process\\": ""
  12050. },
  12051. "exclude-from-classmap": [
  12052. "/Tests/"
  12053. ]
  12054. },
  12055. "notification-url": "https://packagist.org/downloads/",
  12056. "license": [
  12057. "MIT"
  12058. ],
  12059. "authors": [
  12060. {
  12061. "name": "Fabien Potencier",
  12062. "email": "fabien@symfony.com"
  12063. },
  12064. {
  12065. "name": "Symfony Community",
  12066. "homepage": "https://symfony.com/contributors"
  12067. }
  12068. ],
  12069. "description": "Executes commands in sub-processes",
  12070. "homepage": "https://symfony.com",
  12071. "support": {
  12072. "source": "https://github.com/symfony/process/tree/v6.4.15"
  12073. },
  12074. "funding": [
  12075. {
  12076. "url": "https://symfony.com/sponsor",
  12077. "type": "custom"
  12078. },
  12079. {
  12080. "url": "https://github.com/fabpot",
  12081. "type": "github"
  12082. },
  12083. {
  12084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12085. "type": "tidelift"
  12086. }
  12087. ],
  12088. "time": "2024-11-06T14:19:14+00:00"
  12089. },
  12090. {
  12091. "name": "symfony/stopwatch",
  12092. "version": "v6.4.13",
  12093. "source": {
  12094. "type": "git",
  12095. "url": "https://github.com/symfony/stopwatch.git",
  12096. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  12097. },
  12098. "dist": {
  12099. "type": "zip",
  12100. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  12101. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  12102. "shasum": ""
  12103. },
  12104. "require": {
  12105. "php": ">=8.1",
  12106. "symfony/service-contracts": "^2.5|^3"
  12107. },
  12108. "type": "library",
  12109. "autoload": {
  12110. "psr-4": {
  12111. "Symfony\\Component\\Stopwatch\\": ""
  12112. },
  12113. "exclude-from-classmap": [
  12114. "/Tests/"
  12115. ]
  12116. },
  12117. "notification-url": "https://packagist.org/downloads/",
  12118. "license": [
  12119. "MIT"
  12120. ],
  12121. "authors": [
  12122. {
  12123. "name": "Fabien Potencier",
  12124. "email": "fabien@symfony.com"
  12125. },
  12126. {
  12127. "name": "Symfony Community",
  12128. "homepage": "https://symfony.com/contributors"
  12129. }
  12130. ],
  12131. "description": "Provides a way to profile code",
  12132. "homepage": "https://symfony.com",
  12133. "support": {
  12134. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  12135. },
  12136. "funding": [
  12137. {
  12138. "url": "https://symfony.com/sponsor",
  12139. "type": "custom"
  12140. },
  12141. {
  12142. "url": "https://github.com/fabpot",
  12143. "type": "github"
  12144. },
  12145. {
  12146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12147. "type": "tidelift"
  12148. }
  12149. ],
  12150. "time": "2024-09-25T14:18:03+00:00"
  12151. },
  12152. {
  12153. "name": "theseer/tokenizer",
  12154. "version": "1.2.3",
  12155. "source": {
  12156. "type": "git",
  12157. "url": "https://github.com/theseer/tokenizer.git",
  12158. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12159. },
  12160. "dist": {
  12161. "type": "zip",
  12162. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12163. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12164. "shasum": ""
  12165. },
  12166. "require": {
  12167. "ext-dom": "*",
  12168. "ext-tokenizer": "*",
  12169. "ext-xmlwriter": "*",
  12170. "php": "^7.2 || ^8.0"
  12171. },
  12172. "type": "library",
  12173. "autoload": {
  12174. "classmap": [
  12175. "src/"
  12176. ]
  12177. },
  12178. "notification-url": "https://packagist.org/downloads/",
  12179. "license": [
  12180. "BSD-3-Clause"
  12181. ],
  12182. "authors": [
  12183. {
  12184. "name": "Arne Blankerts",
  12185. "email": "arne@blankerts.de",
  12186. "role": "Developer"
  12187. }
  12188. ],
  12189. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12190. "support": {
  12191. "issues": "https://github.com/theseer/tokenizer/issues",
  12192. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12193. },
  12194. "funding": [
  12195. {
  12196. "url": "https://github.com/theseer",
  12197. "type": "github"
  12198. }
  12199. ],
  12200. "time": "2024-03-03T12:36:25+00:00"
  12201. },
  12202. {
  12203. "name": "zx/php-tools",
  12204. "version": "v0.0.1",
  12205. "source": {
  12206. "type": "git",
  12207. "url": "https://gitee.com/open-php/php-tools.git",
  12208. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  12209. },
  12210. "require": {
  12211. "php": ">=7.0"
  12212. },
  12213. "type": "library",
  12214. "autoload": {
  12215. "psr-4": {
  12216. "ZX\\": "src/"
  12217. }
  12218. },
  12219. "notification-url": "https://packagist.org/downloads/",
  12220. "license": [
  12221. "mit"
  12222. ],
  12223. "authors": [
  12224. {
  12225. "name": "zx",
  12226. "email": "903464207@qq.com"
  12227. }
  12228. ],
  12229. "description": "php-tools",
  12230. "time": "2023-06-25T06:24:10+00:00"
  12231. }
  12232. ],
  12233. "aliases": [],
  12234. "minimum-stability": "dev",
  12235. "stability-flags": [],
  12236. "prefer-stable": true,
  12237. "prefer-lowest": false,
  12238. "platform": {
  12239. "php": ">=8.1"
  12240. },
  12241. "platform-dev": [],
  12242. "plugin-api-version": "2.6.0"
  12243. }