composer.lock 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067
  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": "b7984053c0d71da3fbd9f105d1c32a48",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.1",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  148. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.8.0",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6",
  163. "vimeo/psalm": "^4.10"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  210. },
  211. "time": "2023-02-02T22:02:53+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "egulias/email-validator",
  501. "version": "3.2.6",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/egulias/EmailValidator.git",
  505. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  510. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "doctrine/lexer": "^1.2|^2",
  515. "php": ">=7.2",
  516. "symfony/polyfill-intl-idn": "^1.15"
  517. },
  518. "require-dev": {
  519. "phpunit/phpunit": "^8.5.8|^9.3.3",
  520. "vimeo/psalm": "^4"
  521. },
  522. "suggest": {
  523. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  524. },
  525. "type": "library",
  526. "extra": {
  527. "branch-alias": {
  528. "dev-master": "3.0.x-dev"
  529. }
  530. },
  531. "autoload": {
  532. "psr-4": {
  533. "Egulias\\EmailValidator\\": "src"
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Eduardo Gulias Davis"
  543. }
  544. ],
  545. "description": "A library for validating emails against several RFCs",
  546. "homepage": "https://github.com/egulias/EmailValidator",
  547. "keywords": [
  548. "email",
  549. "emailvalidation",
  550. "emailvalidator",
  551. "validation",
  552. "validator"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/egulias/EmailValidator/issues",
  556. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  557. },
  558. "funding": [
  559. {
  560. "url": "https://github.com/egulias",
  561. "type": "github"
  562. }
  563. ],
  564. "time": "2023-06-01T07:04:22+00:00"
  565. },
  566. {
  567. "name": "fig/http-message-util",
  568. "version": "1.1.5",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/php-fig/http-message-util.git",
  572. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  577. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": "^5.3 || ^7.0 || ^8.0"
  582. },
  583. "suggest": {
  584. "psr/http-message": "The package containing the PSR-7 interfaces"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-master": "1.1.x-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "Fig\\Http\\Message\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "PHP-FIG",
  604. "homepage": "https://www.php-fig.org/"
  605. }
  606. ],
  607. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  608. "keywords": [
  609. "http",
  610. "http-message",
  611. "psr",
  612. "psr-7",
  613. "request",
  614. "response"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/php-fig/http-message-util/issues",
  618. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  619. },
  620. "time": "2020-11-24T22:02:12+00:00"
  621. },
  622. {
  623. "name": "graham-campbell/result-type",
  624. "version": "v1.1.2",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  628. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  633. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "php": "^7.2.5 || ^8.0",
  638. "phpoption/phpoption": "^1.9.2"
  639. },
  640. "require-dev": {
  641. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  642. },
  643. "type": "library",
  644. "autoload": {
  645. "psr-4": {
  646. "GrahamCampbell\\ResultType\\": "src/"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Graham Campbell",
  656. "email": "hello@gjcampbell.co.uk",
  657. "homepage": "https://github.com/GrahamCampbell"
  658. }
  659. ],
  660. "description": "An Implementation Of The Result Type",
  661. "keywords": [
  662. "Graham Campbell",
  663. "GrahamCampbell",
  664. "Result Type",
  665. "Result-Type",
  666. "result"
  667. ],
  668. "support": {
  669. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  670. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  671. },
  672. "funding": [
  673. {
  674. "url": "https://github.com/GrahamCampbell",
  675. "type": "github"
  676. },
  677. {
  678. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  679. "type": "tidelift"
  680. }
  681. ],
  682. "time": "2023-11-12T22:16:48+00:00"
  683. },
  684. {
  685. "name": "guzzlehttp/guzzle",
  686. "version": "7.8.1",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/guzzle/guzzle.git",
  690. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  695. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "ext-json": "*",
  700. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  701. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  702. "php": "^7.2.5 || ^8.0",
  703. "psr/http-client": "^1.0",
  704. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  705. },
  706. "provide": {
  707. "psr/http-client-implementation": "1.0"
  708. },
  709. "require-dev": {
  710. "bamarni/composer-bin-plugin": "^1.8.2",
  711. "ext-curl": "*",
  712. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  713. "php-http/message-factory": "^1.1",
  714. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  715. "psr/log": "^1.1 || ^2.0 || ^3.0"
  716. },
  717. "suggest": {
  718. "ext-curl": "Required for CURL handler support",
  719. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  720. "psr/log": "Required for using the Log middleware"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "bamarni-bin": {
  725. "bin-links": true,
  726. "forward-command": false
  727. }
  728. },
  729. "autoload": {
  730. "files": [
  731. "src/functions_include.php"
  732. ],
  733. "psr-4": {
  734. "GuzzleHttp\\": "src/"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Graham Campbell",
  744. "email": "hello@gjcampbell.co.uk",
  745. "homepage": "https://github.com/GrahamCampbell"
  746. },
  747. {
  748. "name": "Michael Dowling",
  749. "email": "mtdowling@gmail.com",
  750. "homepage": "https://github.com/mtdowling"
  751. },
  752. {
  753. "name": "Jeremy Lindblom",
  754. "email": "jeremeamia@gmail.com",
  755. "homepage": "https://github.com/jeremeamia"
  756. },
  757. {
  758. "name": "George Mponos",
  759. "email": "gmponos@gmail.com",
  760. "homepage": "https://github.com/gmponos"
  761. },
  762. {
  763. "name": "Tobias Nyholm",
  764. "email": "tobias.nyholm@gmail.com",
  765. "homepage": "https://github.com/Nyholm"
  766. },
  767. {
  768. "name": "Márk Sági-Kazár",
  769. "email": "mark.sagikazar@gmail.com",
  770. "homepage": "https://github.com/sagikazarmark"
  771. },
  772. {
  773. "name": "Tobias Schultze",
  774. "email": "webmaster@tubo-world.de",
  775. "homepage": "https://github.com/Tobion"
  776. }
  777. ],
  778. "description": "Guzzle is a PHP HTTP client library",
  779. "keywords": [
  780. "client",
  781. "curl",
  782. "framework",
  783. "http",
  784. "http client",
  785. "psr-18",
  786. "psr-7",
  787. "rest",
  788. "web service"
  789. ],
  790. "support": {
  791. "issues": "https://github.com/guzzle/guzzle/issues",
  792. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  793. },
  794. "funding": [
  795. {
  796. "url": "https://github.com/GrahamCampbell",
  797. "type": "github"
  798. },
  799. {
  800. "url": "https://github.com/Nyholm",
  801. "type": "github"
  802. },
  803. {
  804. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  805. "type": "tidelift"
  806. }
  807. ],
  808. "time": "2023-12-03T20:35:24+00:00"
  809. },
  810. {
  811. "name": "guzzlehttp/promises",
  812. "version": "2.0.2",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/guzzle/promises.git",
  816. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  821. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "php": "^7.2.5 || ^8.0"
  826. },
  827. "require-dev": {
  828. "bamarni/composer-bin-plugin": "^1.8.2",
  829. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  830. },
  831. "type": "library",
  832. "extra": {
  833. "bamarni-bin": {
  834. "bin-links": true,
  835. "forward-command": false
  836. }
  837. },
  838. "autoload": {
  839. "psr-4": {
  840. "GuzzleHttp\\Promise\\": "src/"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "MIT"
  846. ],
  847. "authors": [
  848. {
  849. "name": "Graham Campbell",
  850. "email": "hello@gjcampbell.co.uk",
  851. "homepage": "https://github.com/GrahamCampbell"
  852. },
  853. {
  854. "name": "Michael Dowling",
  855. "email": "mtdowling@gmail.com",
  856. "homepage": "https://github.com/mtdowling"
  857. },
  858. {
  859. "name": "Tobias Nyholm",
  860. "email": "tobias.nyholm@gmail.com",
  861. "homepage": "https://github.com/Nyholm"
  862. },
  863. {
  864. "name": "Tobias Schultze",
  865. "email": "webmaster@tubo-world.de",
  866. "homepage": "https://github.com/Tobion"
  867. }
  868. ],
  869. "description": "Guzzle promises library",
  870. "keywords": [
  871. "promise"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/guzzle/promises/issues",
  875. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  876. },
  877. "funding": [
  878. {
  879. "url": "https://github.com/GrahamCampbell",
  880. "type": "github"
  881. },
  882. {
  883. "url": "https://github.com/Nyholm",
  884. "type": "github"
  885. },
  886. {
  887. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  888. "type": "tidelift"
  889. }
  890. ],
  891. "time": "2023-12-03T20:19:20+00:00"
  892. },
  893. {
  894. "name": "guzzlehttp/psr7",
  895. "version": "2.6.2",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/guzzle/psr7.git",
  899. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  904. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": "^7.2.5 || ^8.0",
  909. "psr/http-factory": "^1.0",
  910. "psr/http-message": "^1.1 || ^2.0",
  911. "ralouphie/getallheaders": "^3.0"
  912. },
  913. "provide": {
  914. "psr/http-factory-implementation": "1.0",
  915. "psr/http-message-implementation": "1.0"
  916. },
  917. "require-dev": {
  918. "bamarni/composer-bin-plugin": "^1.8.2",
  919. "http-interop/http-factory-tests": "^0.9",
  920. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  921. },
  922. "suggest": {
  923. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  924. },
  925. "type": "library",
  926. "extra": {
  927. "bamarni-bin": {
  928. "bin-links": true,
  929. "forward-command": false
  930. }
  931. },
  932. "autoload": {
  933. "psr-4": {
  934. "GuzzleHttp\\Psr7\\": "src/"
  935. }
  936. },
  937. "notification-url": "https://packagist.org/downloads/",
  938. "license": [
  939. "MIT"
  940. ],
  941. "authors": [
  942. {
  943. "name": "Graham Campbell",
  944. "email": "hello@gjcampbell.co.uk",
  945. "homepage": "https://github.com/GrahamCampbell"
  946. },
  947. {
  948. "name": "Michael Dowling",
  949. "email": "mtdowling@gmail.com",
  950. "homepage": "https://github.com/mtdowling"
  951. },
  952. {
  953. "name": "George Mponos",
  954. "email": "gmponos@gmail.com",
  955. "homepage": "https://github.com/gmponos"
  956. },
  957. {
  958. "name": "Tobias Nyholm",
  959. "email": "tobias.nyholm@gmail.com",
  960. "homepage": "https://github.com/Nyholm"
  961. },
  962. {
  963. "name": "Márk Sági-Kazár",
  964. "email": "mark.sagikazar@gmail.com",
  965. "homepage": "https://github.com/sagikazarmark"
  966. },
  967. {
  968. "name": "Tobias Schultze",
  969. "email": "webmaster@tubo-world.de",
  970. "homepage": "https://github.com/Tobion"
  971. },
  972. {
  973. "name": "Márk Sági-Kazár",
  974. "email": "mark.sagikazar@gmail.com",
  975. "homepage": "https://sagikazarmark.hu"
  976. }
  977. ],
  978. "description": "PSR-7 message implementation that also provides common utility methods",
  979. "keywords": [
  980. "http",
  981. "message",
  982. "psr-7",
  983. "request",
  984. "response",
  985. "stream",
  986. "uri",
  987. "url"
  988. ],
  989. "support": {
  990. "issues": "https://github.com/guzzle/psr7/issues",
  991. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  992. },
  993. "funding": [
  994. {
  995. "url": "https://github.com/GrahamCampbell",
  996. "type": "github"
  997. },
  998. {
  999. "url": "https://github.com/Nyholm",
  1000. "type": "github"
  1001. },
  1002. {
  1003. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1004. "type": "tidelift"
  1005. }
  1006. ],
  1007. "time": "2023-12-03T20:05:35+00:00"
  1008. },
  1009. {
  1010. "name": "hyperf/cache",
  1011. "version": "v3.1.23",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/hyperf/cache.git",
  1015. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  1020. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  1021. "shasum": ""
  1022. },
  1023. "require": {
  1024. "hyperf/codec": "~3.1.0",
  1025. "hyperf/collection": "~3.1.0",
  1026. "hyperf/contract": "~3.1.0",
  1027. "hyperf/support": "~3.1.0",
  1028. "hyperf/utils": "~3.1.0",
  1029. "php": ">=8.1",
  1030. "psr/container": "^1.0|^2.0",
  1031. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1032. },
  1033. "suggest": {
  1034. "hyperf/di": "Use cache annotations.",
  1035. "hyperf/event": "Use listener to delete annotation cache."
  1036. },
  1037. "type": "library",
  1038. "extra": {
  1039. "branch-alias": {
  1040. "dev-master": "3.1-dev"
  1041. },
  1042. "hyperf": {
  1043. "config": "Hyperf\\Cache\\ConfigProvider"
  1044. }
  1045. },
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Hyperf\\Cache\\": "src/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "description": "A cache component for hyperf.",
  1056. "homepage": "https://hyperf.io",
  1057. "keywords": [
  1058. "cache",
  1059. "hyperf",
  1060. "php"
  1061. ],
  1062. "support": {
  1063. "docs": "https://hyperf.wiki",
  1064. "issues": "https://github.com/hyperf/hyperf/issues",
  1065. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1066. "source": "https://github.com/hyperf/hyperf"
  1067. },
  1068. "funding": [
  1069. {
  1070. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1071. "type": "custom"
  1072. },
  1073. {
  1074. "url": "https://opencollective.com/hyperf",
  1075. "type": "open_collective"
  1076. }
  1077. ],
  1078. "time": "2024-05-23T03:43:58+00:00"
  1079. },
  1080. {
  1081. "name": "hyperf/code-parser",
  1082. "version": "v3.1.15",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/hyperf/code-parser.git",
  1086. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1091. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "hyperf/collection": "~3.1.0",
  1096. "hyperf/stringable": "~3.1.0",
  1097. "hyperf/support": "~3.1.0",
  1098. "php": ">=8.1"
  1099. },
  1100. "suggest": {
  1101. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1102. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1103. },
  1104. "type": "library",
  1105. "extra": {
  1106. "branch-alias": {
  1107. "dev-master": "3.1-dev"
  1108. }
  1109. },
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Hyperf\\CodeParser\\": "src/"
  1113. }
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "MIT"
  1118. ],
  1119. "description": "A code parser component for Hyperf.",
  1120. "homepage": "https://hyperf.io",
  1121. "keywords": [
  1122. "code-parser",
  1123. "hyperf",
  1124. "php",
  1125. "swoole"
  1126. ],
  1127. "support": {
  1128. "docs": "https://hyperf.wiki",
  1129. "issues": "https://github.com/hyperf/hyperf/issues",
  1130. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1131. "source": "https://github.com/hyperf/hyperf"
  1132. },
  1133. "funding": [
  1134. {
  1135. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1136. "type": "custom"
  1137. },
  1138. {
  1139. "url": "https://opencollective.com/hyperf",
  1140. "type": "open_collective"
  1141. }
  1142. ],
  1143. "time": "2024-03-23T11:28:51+00:00"
  1144. },
  1145. {
  1146. "name": "hyperf/codec",
  1147. "version": "v3.1.15",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/hyperf/codec.git",
  1151. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1156. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "ext-json": "*",
  1161. "ext-xml": "*",
  1162. "hyperf/contract": "~3.1.0",
  1163. "php": ">=8.1"
  1164. },
  1165. "suggest": {
  1166. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1167. },
  1168. "type": "library",
  1169. "extra": {
  1170. "branch-alias": {
  1171. "dev-master": "3.1-dev"
  1172. }
  1173. },
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Hyperf\\Codec\\": "src/"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "description": "A codec component for Hyperf.",
  1184. "homepage": "https://hyperf.io",
  1185. "keywords": [
  1186. "codec",
  1187. "hyperf",
  1188. "php",
  1189. "swoole"
  1190. ],
  1191. "support": {
  1192. "docs": "https://hyperf.wiki",
  1193. "issues": "https://github.com/hyperf/hyperf/issues",
  1194. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1195. "source": "https://github.com/hyperf/hyperf"
  1196. },
  1197. "funding": [
  1198. {
  1199. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1200. "type": "custom"
  1201. },
  1202. {
  1203. "url": "https://opencollective.com/hyperf",
  1204. "type": "open_collective"
  1205. }
  1206. ],
  1207. "time": "2024-03-23T11:28:51+00:00"
  1208. },
  1209. {
  1210. "name": "hyperf/collection",
  1211. "version": "v3.1.25",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/hyperf/collection.git",
  1215. "reference": "b071263a75910cb972de4686b326a9274a2464c2"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/hyperf/collection/zipball/b071263a75910cb972de4686b326a9274a2464c2",
  1220. "reference": "b071263a75910cb972de4686b326a9274a2464c2",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "hyperf/conditionable": "~3.1.0",
  1225. "hyperf/contract": "~3.1.0",
  1226. "hyperf/macroable": "~3.1.0",
  1227. "hyperf/stringable": "~3.1.0",
  1228. "php": ">=8.1"
  1229. },
  1230. "type": "library",
  1231. "extra": {
  1232. "branch-alias": {
  1233. "dev-master": "3.1-dev"
  1234. }
  1235. },
  1236. "autoload": {
  1237. "files": [
  1238. "src/Functions.php"
  1239. ],
  1240. "psr-4": {
  1241. "Hyperf\\Collection\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "description": "Hyperf Collection package which come from illuminate/collections",
  1249. "homepage": "https://hyperf.io",
  1250. "keywords": [
  1251. "collection",
  1252. "hyperf",
  1253. "php",
  1254. "swoole"
  1255. ],
  1256. "support": {
  1257. "docs": "https://hyperf.wiki",
  1258. "issues": "https://github.com/hyperf/hyperf/issues",
  1259. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1260. "source": "https://github.com/hyperf/hyperf"
  1261. },
  1262. "funding": [
  1263. {
  1264. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1265. "type": "custom"
  1266. },
  1267. {
  1268. "url": "https://opencollective.com/hyperf",
  1269. "type": "open_collective"
  1270. }
  1271. ],
  1272. "time": "2024-06-05T07:45:03+00:00"
  1273. },
  1274. {
  1275. "name": "hyperf/command",
  1276. "version": "v3.1.24",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/hyperf/command.git",
  1280. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1285. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "hyperf/collection": "~3.1.0",
  1290. "hyperf/context": "~3.1.0",
  1291. "hyperf/contract": "~3.1.0",
  1292. "hyperf/coroutine": "~3.1.0",
  1293. "hyperf/di": "~3.1.0",
  1294. "hyperf/stringable": "~3.1.0",
  1295. "hyperf/support": "~3.1.0",
  1296. "hyperf/tappable": "~3.1.0",
  1297. "php": ">=8.1",
  1298. "psr/event-dispatcher": "^1.0",
  1299. "symfony/console": "^5.0|^6.0|^7.0"
  1300. },
  1301. "suggest": {
  1302. "hyperf/di": "Required to use annotations.",
  1303. "hyperf/event": "Required to use listeners."
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "3.1-dev"
  1309. },
  1310. "hyperf": {
  1311. "config": "Hyperf\\Command\\ConfigProvider"
  1312. }
  1313. },
  1314. "autoload": {
  1315. "psr-4": {
  1316. "Hyperf\\Command\\": "src/"
  1317. }
  1318. },
  1319. "notification-url": "https://packagist.org/downloads/",
  1320. "license": [
  1321. "MIT"
  1322. ],
  1323. "description": "Command for hyperf",
  1324. "keywords": [
  1325. "command",
  1326. "php",
  1327. "swoole"
  1328. ],
  1329. "support": {
  1330. "issues": "https://github.com/hyperf/command/issues",
  1331. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1332. },
  1333. "funding": [
  1334. {
  1335. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1336. "type": "custom"
  1337. },
  1338. {
  1339. "url": "https://opencollective.com/hyperf",
  1340. "type": "open_collective"
  1341. }
  1342. ],
  1343. "time": "2024-05-27T12:37:07+00:00"
  1344. },
  1345. {
  1346. "name": "hyperf/conditionable",
  1347. "version": "v3.1.15",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/hyperf/conditionable.git",
  1351. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1356. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1357. "shasum": ""
  1358. },
  1359. "require": {
  1360. "php": ">=8.1"
  1361. },
  1362. "type": "library",
  1363. "extra": {
  1364. "branch-alias": {
  1365. "dev-master": "3.1-dev"
  1366. }
  1367. },
  1368. "autoload": {
  1369. "psr-4": {
  1370. "Hyperf\\Conditionable\\": "src/"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1378. "homepage": "https://hyperf.io",
  1379. "keywords": [
  1380. "conditionable",
  1381. "hyperf",
  1382. "php",
  1383. "swoole"
  1384. ],
  1385. "support": {
  1386. "docs": "https://hyperf.wiki",
  1387. "issues": "https://github.com/hyperf/hyperf/issues",
  1388. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1389. "source": "https://github.com/hyperf/hyperf"
  1390. },
  1391. "funding": [
  1392. {
  1393. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1394. "type": "custom"
  1395. },
  1396. {
  1397. "url": "https://opencollective.com/hyperf",
  1398. "type": "open_collective"
  1399. }
  1400. ],
  1401. "time": "2024-03-23T11:28:51+00:00"
  1402. },
  1403. {
  1404. "name": "hyperf/config",
  1405. "version": "v3.1.15",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/hyperf/config.git",
  1409. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1414. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1415. "shasum": ""
  1416. },
  1417. "require": {
  1418. "hyperf/collection": "~3.1.0",
  1419. "hyperf/contract": "~3.1.0",
  1420. "hyperf/support": "~3.1.0",
  1421. "php": ">=8.1",
  1422. "psr/container": "^1.0|^2.0",
  1423. "symfony/finder": "^5.0|^6.0|^7.0"
  1424. },
  1425. "suggest": {
  1426. "hyperf/context": "Required to use config()",
  1427. "hyperf/di": "Allows using @Value annotation",
  1428. "hyperf/event": "Allows using @Value annotation",
  1429. "hyperf/framework": "Allows using @Value annotation",
  1430. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "branch-alias": {
  1435. "dev-master": "3.1-dev"
  1436. },
  1437. "hyperf": {
  1438. "config": "Hyperf\\Config\\ConfigProvider"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "files": [
  1443. "./src/Functions.php"
  1444. ],
  1445. "psr-4": {
  1446. "Hyperf\\Config\\": "src/"
  1447. }
  1448. },
  1449. "notification-url": "https://packagist.org/downloads/",
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "description": "An independent component that provides configuration container.",
  1454. "homepage": "https://hyperf.io",
  1455. "keywords": [
  1456. "config",
  1457. "configuration",
  1458. "hyperf",
  1459. "php",
  1460. "swoole"
  1461. ],
  1462. "support": {
  1463. "docs": "https://hyperf.wiki",
  1464. "issues": "https://github.com/hyperf/hyperf/issues",
  1465. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1466. "source": "https://github.com/hyperf/hyperf"
  1467. },
  1468. "funding": [
  1469. {
  1470. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1471. "type": "custom"
  1472. },
  1473. {
  1474. "url": "https://opencollective.com/hyperf",
  1475. "type": "open_collective"
  1476. }
  1477. ],
  1478. "time": "2024-03-23T11:28:51+00:00"
  1479. },
  1480. {
  1481. "name": "hyperf/config-center",
  1482. "version": "v3.1.15",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/hyperf/config-center.git",
  1486. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1491. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "hyperf/support": "~3.1.0",
  1496. "php": ">=8.1"
  1497. },
  1498. "suggest": {
  1499. "hyperf/process": "^2.1"
  1500. },
  1501. "type": "library",
  1502. "extra": {
  1503. "branch-alias": {
  1504. "dev-master": "3.1-dev"
  1505. },
  1506. "hyperf": {
  1507. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "psr-4": {
  1512. "Hyperf\\ConfigCenter\\": "src/"
  1513. }
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "MIT"
  1518. ],
  1519. "description": "The abstraction component of config center",
  1520. "homepage": "https://hyperf.io",
  1521. "keywords": [
  1522. "config-center",
  1523. "hyperf",
  1524. "php"
  1525. ],
  1526. "support": {
  1527. "docs": "https://hyperf.wiki",
  1528. "issues": "https://github.com/hyperf/hyperf/issues",
  1529. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1530. "source": "https://github.com/hyperf/hyperf"
  1531. },
  1532. "funding": [
  1533. {
  1534. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1535. "type": "custom"
  1536. },
  1537. {
  1538. "url": "https://opencollective.com/hyperf",
  1539. "type": "open_collective"
  1540. }
  1541. ],
  1542. "time": "2024-03-23T11:28:51+00:00"
  1543. },
  1544. {
  1545. "name": "hyperf/config-nacos",
  1546. "version": "v3.1.15",
  1547. "source": {
  1548. "type": "git",
  1549. "url": "https://github.com/hyperf/config-nacos.git",
  1550. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1551. },
  1552. "dist": {
  1553. "type": "zip",
  1554. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1555. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1556. "shasum": ""
  1557. },
  1558. "require": {
  1559. "hyperf/codec": "~3.1.0",
  1560. "hyperf/config-center": "~3.1.0",
  1561. "hyperf/contract": "~3.1.0",
  1562. "hyperf/guzzle": "~3.1.0",
  1563. "hyperf/nacos": "~3.1.0",
  1564. "hyperf/support": "~3.1.0",
  1565. "hyperf/utils": "~3.1.0",
  1566. "jetbrains/phpstorm-attributes": "^1.0",
  1567. "php": ">=8.1"
  1568. },
  1569. "suggest": {
  1570. "ext-json": "*",
  1571. "ext-simplexml": "*",
  1572. "ext-yaml": "*",
  1573. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1574. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1575. "hyperf/process": "Required to use processes. (~2.2.0)"
  1576. },
  1577. "type": "library",
  1578. "extra": {
  1579. "branch-alias": {
  1580. "dev-master": "3.1-dev"
  1581. },
  1582. "hyperf": {
  1583. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-4": {
  1588. "Hyperf\\ConfigNacos\\": "src/"
  1589. }
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "MIT"
  1594. ],
  1595. "description": "A nacos adapter for config center component.",
  1596. "homepage": "https://hyperf.io",
  1597. "keywords": [
  1598. "hyperf",
  1599. "nacos",
  1600. "php",
  1601. "swoole"
  1602. ],
  1603. "support": {
  1604. "docs": "https://hyperf.wiki",
  1605. "issues": "https://github.com/hyperf/hyperf/issues",
  1606. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1607. "source": "https://github.com/hyperf/hyperf"
  1608. },
  1609. "funding": [
  1610. {
  1611. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1612. "type": "custom"
  1613. },
  1614. {
  1615. "url": "https://opencollective.com/hyperf",
  1616. "type": "open_collective"
  1617. }
  1618. ],
  1619. "time": "2024-03-23T11:28:51+00:00"
  1620. },
  1621. {
  1622. "name": "hyperf/constants",
  1623. "version": "v3.1.25",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/hyperf/constants.git",
  1627. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/hyperf/constants/zipball/6749edf0391025e1664b3baf1253f1c4e94c928a",
  1632. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a",
  1633. "shasum": ""
  1634. },
  1635. "require": {
  1636. "hyperf/di": "~3.1.0",
  1637. "hyperf/support": "~3.1.0",
  1638. "hyperf/utils": "~3.1.0",
  1639. "php": ">=8.1"
  1640. },
  1641. "suggest": {
  1642. "hyperf/translation": "Required to use translation."
  1643. },
  1644. "type": "library",
  1645. "extra": {
  1646. "branch-alias": {
  1647. "dev-master": "3.1-dev"
  1648. },
  1649. "hyperf": {
  1650. "config": "Hyperf\\Constants\\ConfigProvider"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "psr-4": {
  1655. "Hyperf\\Constants\\": "src/"
  1656. }
  1657. },
  1658. "notification-url": "https://packagist.org/downloads/",
  1659. "license": [
  1660. "MIT"
  1661. ],
  1662. "description": "A constants component for hyperf.",
  1663. "homepage": "https://hyperf.io",
  1664. "keywords": [
  1665. "constants",
  1666. "hyperf",
  1667. "php"
  1668. ],
  1669. "support": {
  1670. "docs": "https://hyperf.wiki",
  1671. "issues": "https://github.com/hyperf/hyperf/issues",
  1672. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1673. "source": "https://github.com/hyperf/hyperf"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://opencollective.com/hyperf",
  1682. "type": "open_collective"
  1683. }
  1684. ],
  1685. "time": "2024-05-30T11:07:42+00:00"
  1686. },
  1687. {
  1688. "name": "hyperf/consul",
  1689. "version": "v3.1.22",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/hyperf/consul.git",
  1693. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1698. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "guzzlehttp/guzzle": "^6.3|^7.0",
  1703. "php": ">=8.1"
  1704. },
  1705. "require-dev": {
  1706. "hyperf/guzzle": "~3.1.0"
  1707. },
  1708. "type": "library",
  1709. "extra": {
  1710. "branch-alias": {
  1711. "dev-master": "3.1-dev"
  1712. },
  1713. "hyperf": {
  1714. "config": "Hyperf\\Consul\\ConfigProvider"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Hyperf\\Consul\\": "src/"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "description": "A Consul Client for Hyperf.",
  1727. "homepage": "https://hyperf.io",
  1728. "keywords": [
  1729. "consul",
  1730. "consul-client",
  1731. "hyperf",
  1732. "php",
  1733. "swoole"
  1734. ],
  1735. "support": {
  1736. "docs": "https://hyperf.wiki",
  1737. "issues": "https://github.com/hyperf/hyperf/issues",
  1738. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1739. "source": "https://github.com/hyperf/hyperf"
  1740. },
  1741. "funding": [
  1742. {
  1743. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1744. "type": "custom"
  1745. },
  1746. {
  1747. "url": "https://opencollective.com/hyperf",
  1748. "type": "open_collective"
  1749. }
  1750. ],
  1751. "time": "2024-05-15T06:42:24+00:00"
  1752. },
  1753. {
  1754. "name": "hyperf/context",
  1755. "version": "v3.1.15",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/hyperf/context.git",
  1759. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1764. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "hyperf/engine": "^2.0",
  1769. "php": ">=8.1"
  1770. },
  1771. "suggest": {
  1772. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1773. },
  1774. "type": "library",
  1775. "extra": {
  1776. "branch-alias": {
  1777. "dev-master": "3.1-dev"
  1778. }
  1779. },
  1780. "autoload": {
  1781. "psr-4": {
  1782. "Hyperf\\Context\\": "src/"
  1783. }
  1784. },
  1785. "notification-url": "https://packagist.org/downloads/",
  1786. "license": [
  1787. "MIT"
  1788. ],
  1789. "description": "A coroutine/application context library.",
  1790. "homepage": "https://hyperf.io",
  1791. "keywords": [
  1792. "Context",
  1793. "hyperf",
  1794. "php",
  1795. "swoole"
  1796. ],
  1797. "support": {
  1798. "docs": "https://hyperf.wiki",
  1799. "issues": "https://github.com/hyperf/hyperf/issues",
  1800. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1801. "source": "https://github.com/hyperf/hyperf"
  1802. },
  1803. "funding": [
  1804. {
  1805. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1806. "type": "custom"
  1807. },
  1808. {
  1809. "url": "https://opencollective.com/hyperf",
  1810. "type": "open_collective"
  1811. }
  1812. ],
  1813. "time": "2024-03-23T11:28:51+00:00"
  1814. },
  1815. {
  1816. "name": "hyperf/contract",
  1817. "version": "v3.1.15",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/hyperf/contract.git",
  1821. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1826. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "php": ">=8.1"
  1831. },
  1832. "type": "library",
  1833. "extra": {
  1834. "branch-alias": {
  1835. "dev-master": "3.1-dev"
  1836. }
  1837. },
  1838. "autoload": {
  1839. "psr-4": {
  1840. "Hyperf\\Contract\\": "src/"
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "description": "The contracts of Hyperf.",
  1848. "homepage": "https://hyperf.io",
  1849. "keywords": [
  1850. "hyperf",
  1851. "php",
  1852. "swoole"
  1853. ],
  1854. "support": {
  1855. "docs": "https://hyperf.wiki",
  1856. "issues": "https://github.com/hyperf/hyperf/issues",
  1857. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1858. "source": "https://github.com/hyperf/hyperf"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1863. "type": "custom"
  1864. },
  1865. {
  1866. "url": "https://opencollective.com/hyperf",
  1867. "type": "open_collective"
  1868. }
  1869. ],
  1870. "time": "2024-03-23T11:28:51+00:00"
  1871. },
  1872. {
  1873. "name": "hyperf/coordinator",
  1874. "version": "v3.1.21",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/hyperf/coordinator.git",
  1878. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1883. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1884. "shasum": ""
  1885. },
  1886. "require": {
  1887. "hyperf/engine": "^2.0",
  1888. "php": ">=8.1"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-master": "3.1-dev"
  1894. }
  1895. },
  1896. "autoload": {
  1897. "files": [
  1898. "src/Functions.php"
  1899. ],
  1900. "psr-4": {
  1901. "Hyperf\\Coordinator\\": "src/"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "description": "Hyperf Coordinator",
  1909. "homepage": "https://hyperf.io",
  1910. "keywords": [
  1911. "Coordinator",
  1912. "hyperf",
  1913. "php",
  1914. "swoole"
  1915. ],
  1916. "support": {
  1917. "docs": "https://hyperf.wiki",
  1918. "issues": "https://github.com/hyperf/hyperf/issues",
  1919. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1920. "source": "https://github.com/hyperf/hyperf"
  1921. },
  1922. "funding": [
  1923. {
  1924. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1925. "type": "custom"
  1926. },
  1927. {
  1928. "url": "https://opencollective.com/hyperf",
  1929. "type": "open_collective"
  1930. }
  1931. ],
  1932. "time": "2024-05-09T02:35:08+00:00"
  1933. },
  1934. {
  1935. "name": "hyperf/coroutine",
  1936. "version": "v3.1.15",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/hyperf/coroutine.git",
  1940. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1945. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "hyperf/context": "~3.1.0",
  1950. "hyperf/contract": "~3.1.0",
  1951. "hyperf/engine": "^2.0",
  1952. "php": ">=8.1"
  1953. },
  1954. "type": "library",
  1955. "extra": {
  1956. "branch-alias": {
  1957. "dev-master": "3.1-dev"
  1958. }
  1959. },
  1960. "autoload": {
  1961. "files": [
  1962. "src/Functions.php"
  1963. ],
  1964. "psr-4": {
  1965. "Hyperf\\Coroutine\\": "src/"
  1966. }
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "MIT"
  1971. ],
  1972. "description": "Hyperf Coroutine",
  1973. "homepage": "https://hyperf.io",
  1974. "keywords": [
  1975. "coroutine",
  1976. "hyperf",
  1977. "php",
  1978. "swoole"
  1979. ],
  1980. "support": {
  1981. "docs": "https://hyperf.wiki",
  1982. "issues": "https://github.com/hyperf/hyperf/issues",
  1983. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1984. "source": "https://github.com/hyperf/hyperf"
  1985. },
  1986. "funding": [
  1987. {
  1988. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1989. "type": "custom"
  1990. },
  1991. {
  1992. "url": "https://opencollective.com/hyperf",
  1993. "type": "open_collective"
  1994. }
  1995. ],
  1996. "time": "2024-03-23T11:28:51+00:00"
  1997. },
  1998. {
  1999. "name": "hyperf/database",
  2000. "version": "v3.1.25",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/hyperf/database.git",
  2004. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/hyperf/database/zipball/3e69ba93d8c66c431bed94e8dab479964d471802",
  2009. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802",
  2010. "shasum": ""
  2011. },
  2012. "require": {
  2013. "hyperf/code-parser": "~3.1.0",
  2014. "hyperf/collection": "~3.1.0",
  2015. "hyperf/macroable": "~3.1.0",
  2016. "hyperf/support": "~3.1.0",
  2017. "hyperf/tappable": "~3.1.0",
  2018. "hyperf/utils": "~3.1.0",
  2019. "nesbot/carbon": "^2.0",
  2020. "php": ">=8.1",
  2021. "psr/container": "^1.0|^2.0",
  2022. "psr/event-dispatcher": "^1.0"
  2023. },
  2024. "suggest": {
  2025. "doctrine/dbal": "Required to rename columns (^3.0).",
  2026. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2027. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2028. },
  2029. "type": "library",
  2030. "extra": {
  2031. "branch-alias": {
  2032. "dev-master": "3.1-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Hyperf\\Database\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "description": "A flexible database library.",
  2045. "homepage": "https://hyperf.io",
  2046. "keywords": [
  2047. "database",
  2048. "hyperf",
  2049. "php"
  2050. ],
  2051. "support": {
  2052. "docs": "https://hyperf.wiki",
  2053. "issues": "https://github.com/hyperf/hyperf/issues",
  2054. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2055. "source": "https://github.com/hyperf/hyperf"
  2056. },
  2057. "funding": [
  2058. {
  2059. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2060. "type": "custom"
  2061. },
  2062. {
  2063. "url": "https://opencollective.com/hyperf",
  2064. "type": "open_collective"
  2065. }
  2066. ],
  2067. "time": "2024-06-03T07:00:15+00:00"
  2068. },
  2069. {
  2070. "name": "hyperf/db-connection",
  2071. "version": "v3.1.15",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/hyperf/db-connection.git",
  2075. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2080. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2081. "shasum": ""
  2082. },
  2083. "require": {
  2084. "hyperf/database": "~3.1.0",
  2085. "hyperf/di": "~3.1.0",
  2086. "hyperf/framework": "~3.1.0",
  2087. "hyperf/model-listener": "~3.1.0",
  2088. "hyperf/pool": "~3.1.0",
  2089. "hyperf/support": "~3.1.0",
  2090. "hyperf/utils": "~3.1.0",
  2091. "php": ">=8.1",
  2092. "psr/container": "^1.0|^2.0"
  2093. },
  2094. "type": "library",
  2095. "extra": {
  2096. "branch-alias": {
  2097. "dev-master": "3.1-dev"
  2098. },
  2099. "hyperf": {
  2100. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2101. }
  2102. },
  2103. "autoload": {
  2104. "psr-4": {
  2105. "Hyperf\\DbConnection\\": "src/"
  2106. }
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "description": "A hyperf db connection handler for hyperf/database.",
  2113. "homepage": "https://hyperf.io",
  2114. "keywords": [
  2115. "Connection",
  2116. "database",
  2117. "hyperf",
  2118. "php"
  2119. ],
  2120. "support": {
  2121. "docs": "https://hyperf.wiki",
  2122. "issues": "https://github.com/hyperf/hyperf/issues",
  2123. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2124. "source": "https://github.com/hyperf/hyperf"
  2125. },
  2126. "funding": [
  2127. {
  2128. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2129. "type": "custom"
  2130. },
  2131. {
  2132. "url": "https://opencollective.com/hyperf",
  2133. "type": "open_collective"
  2134. }
  2135. ],
  2136. "time": "2024-03-23T11:28:51+00:00"
  2137. },
  2138. {
  2139. "name": "hyperf/di",
  2140. "version": "v3.1.25",
  2141. "source": {
  2142. "type": "git",
  2143. "url": "https://github.com/hyperf/di.git",
  2144. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75"
  2145. },
  2146. "dist": {
  2147. "type": "zip",
  2148. "url": "https://api.github.com/repos/hyperf/di/zipball/4815738288b50096d3b908c0d4f0f7d97a741d75",
  2149. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75",
  2150. "shasum": ""
  2151. },
  2152. "require": {
  2153. "doctrine/instantiator": "^1.0",
  2154. "hyperf/code-parser": "~3.1.0",
  2155. "hyperf/pipeline": "~3.1.0",
  2156. "hyperf/stdlib": "~3.1.0",
  2157. "hyperf/support": "~3.1.0",
  2158. "nikic/php-parser": "^4.1",
  2159. "php": ">=8.1",
  2160. "php-di/phpdoc-reader": "^2.2",
  2161. "psr/container": "^1.0|^2.0",
  2162. "symfony/finder": "^5.0|^6.0|^7.0",
  2163. "vlucas/phpdotenv": "^5.0"
  2164. },
  2165. "suggest": {
  2166. "ext-pcntl": "Required to scan annotations.",
  2167. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2168. },
  2169. "type": "library",
  2170. "extra": {
  2171. "branch-alias": {
  2172. "dev-master": "3.1-dev"
  2173. },
  2174. "hyperf": {
  2175. "config": "Hyperf\\Di\\ConfigProvider"
  2176. }
  2177. },
  2178. "autoload": {
  2179. "psr-4": {
  2180. "Hyperf\\Di\\": "src/"
  2181. }
  2182. },
  2183. "notification-url": "https://packagist.org/downloads/",
  2184. "license": [
  2185. "MIT"
  2186. ],
  2187. "description": "A DI for Hyperf.",
  2188. "homepage": "https://hyperf.io",
  2189. "keywords": [
  2190. "annotation",
  2191. "di",
  2192. "hyperf",
  2193. "php",
  2194. "swoole"
  2195. ],
  2196. "support": {
  2197. "docs": "https://hyperf.wiki",
  2198. "issues": "https://github.com/hyperf/hyperf/issues",
  2199. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2200. "source": "https://github.com/hyperf/hyperf"
  2201. },
  2202. "funding": [
  2203. {
  2204. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2205. "type": "custom"
  2206. },
  2207. {
  2208. "url": "https://opencollective.com/hyperf",
  2209. "type": "open_collective"
  2210. }
  2211. ],
  2212. "time": "2024-06-03T06:37:01+00:00"
  2213. },
  2214. {
  2215. "name": "hyperf/dispatcher",
  2216. "version": "v3.1.15",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/hyperf/dispatcher.git",
  2220. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2225. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "hyperf/contract": "~3.1.0",
  2230. "php": ">=8.1",
  2231. "psr/container": "^1.0|^2.0",
  2232. "psr/http-message": "^1.0|^2.0",
  2233. "psr/http-server-middleware": "^1.0"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-master": "3.1-dev"
  2239. },
  2240. "hyperf": {
  2241. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2242. }
  2243. },
  2244. "autoload": {
  2245. "psr-4": {
  2246. "Hyperf\\Dispatcher\\": "src/"
  2247. }
  2248. },
  2249. "notification-url": "https://packagist.org/downloads/",
  2250. "license": [
  2251. "MIT"
  2252. ],
  2253. "description": "A HTTP Server for Hyperf.",
  2254. "homepage": "https://hyperf.io",
  2255. "keywords": [
  2256. "dispatcher",
  2257. "filter",
  2258. "hyperf",
  2259. "middleware",
  2260. "php",
  2261. "swoole"
  2262. ],
  2263. "support": {
  2264. "docs": "https://hyperf.wiki",
  2265. "issues": "https://github.com/hyperf/hyperf/issues",
  2266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2267. "source": "https://github.com/hyperf/hyperf"
  2268. },
  2269. "funding": [
  2270. {
  2271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2272. "type": "custom"
  2273. },
  2274. {
  2275. "url": "https://opencollective.com/hyperf",
  2276. "type": "open_collective"
  2277. }
  2278. ],
  2279. "time": "2024-03-23T11:28:51+00:00"
  2280. },
  2281. {
  2282. "name": "hyperf/engine",
  2283. "version": "v2.11.0",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://github.com/hyperf/engine.git",
  2287. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2292. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2293. "shasum": ""
  2294. },
  2295. "require": {
  2296. "hyperf/engine-contract": "~1.10.0",
  2297. "php": ">=8.0"
  2298. },
  2299. "conflict": {
  2300. "ext-swoole": "<5.0"
  2301. },
  2302. "require-dev": {
  2303. "friendsofphp/php-cs-fixer": "^3.0",
  2304. "hyperf/guzzle": "^3.0",
  2305. "hyperf/http-message": "^3.0",
  2306. "mockery/mockery": "^1.5",
  2307. "phpstan/phpstan": "^1.0",
  2308. "phpunit/phpunit": "^9.4",
  2309. "swoole/ide-helper": "5.*"
  2310. },
  2311. "suggest": {
  2312. "ext-sockets": "*",
  2313. "ext-swoole": ">=5.0",
  2314. "hyperf/http-message": "Required to use ResponseEmitter.",
  2315. "psr/http-message": "Required to use WebSocket Frame."
  2316. },
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "2.11-dev"
  2321. },
  2322. "hyperf": {
  2323. "config": "Hyperf\\Engine\\ConfigProvider"
  2324. }
  2325. },
  2326. "autoload": {
  2327. "files": [
  2328. "src/Functions.php"
  2329. ],
  2330. "psr-4": {
  2331. "Hyperf\\Engine\\": "src/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "description": "Coroutine engine provided by swoole.",
  2339. "keywords": [
  2340. "engine",
  2341. "hyperf",
  2342. "php",
  2343. "swoole"
  2344. ],
  2345. "support": {
  2346. "issues": "https://github.com/hyperf/engine/issues",
  2347. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2348. },
  2349. "funding": [
  2350. {
  2351. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2352. "type": "custom"
  2353. },
  2354. {
  2355. "url": "https://opencollective.com/hyperf",
  2356. "type": "open_collective"
  2357. }
  2358. ],
  2359. "time": "2024-04-17T13:36:28+00:00"
  2360. },
  2361. {
  2362. "name": "hyperf/engine-contract",
  2363. "version": "v1.10.1",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/hyperf/engine-contract.git",
  2367. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2372. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "php": ">=8.0"
  2377. },
  2378. "require-dev": {
  2379. "friendsofphp/php-cs-fixer": "^3.0",
  2380. "mockery/mockery": "^1.0",
  2381. "phpstan/phpstan": "^1.0",
  2382. "phpunit/phpunit": ">=7.0",
  2383. "psr/http-message": "^1.0",
  2384. "swoole/ide-helper": "^4.5"
  2385. },
  2386. "suggest": {
  2387. "psr/http-message": "Required to use WebSocket Frame."
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "branch-alias": {
  2392. "dev-master": "1.9-dev"
  2393. }
  2394. },
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Hyperf\\Engine\\Contract\\": "src/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "description": "Contract for Coroutine Engine",
  2405. "keywords": [
  2406. "contract",
  2407. "coroutine",
  2408. "engine",
  2409. "hyperf",
  2410. "php"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/hyperf/engine-contract/issues",
  2414. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2419. "type": "custom"
  2420. },
  2421. {
  2422. "url": "https://opencollective.com/hyperf",
  2423. "type": "open_collective"
  2424. }
  2425. ],
  2426. "time": "2024-04-17T13:34:51+00:00"
  2427. },
  2428. {
  2429. "name": "hyperf/event",
  2430. "version": "v3.1.15",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/hyperf/event.git",
  2434. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2439. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "hyperf/contract": "~3.1.0",
  2444. "hyperf/stdlib": "~3.1.0",
  2445. "php": ">=8.1",
  2446. "psr/event-dispatcher": "^1.0"
  2447. },
  2448. "suggest": {
  2449. "hyperf/di": "Required to use annotatioins."
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-master": "3.1-dev"
  2455. },
  2456. "hyperf": {
  2457. "config": "Hyperf\\Event\\ConfigProvider"
  2458. }
  2459. },
  2460. "autoload": {
  2461. "psr-4": {
  2462. "Hyperf\\Event\\": "src/"
  2463. }
  2464. },
  2465. "notification-url": "https://packagist.org/downloads/",
  2466. "license": [
  2467. "MIT"
  2468. ],
  2469. "description": "an event manager that implements PSR-14.",
  2470. "homepage": "https://hyperf.io",
  2471. "keywords": [
  2472. "event",
  2473. "hyperf",
  2474. "php",
  2475. "swoole"
  2476. ],
  2477. "support": {
  2478. "docs": "https://hyperf.wiki",
  2479. "issues": "https://github.com/hyperf/hyperf/issues",
  2480. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2481. "source": "https://github.com/hyperf/hyperf"
  2482. },
  2483. "funding": [
  2484. {
  2485. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2486. "type": "custom"
  2487. },
  2488. {
  2489. "url": "https://opencollective.com/hyperf",
  2490. "type": "open_collective"
  2491. }
  2492. ],
  2493. "time": "2024-03-23T11:28:51+00:00"
  2494. },
  2495. {
  2496. "name": "hyperf/exception-handler",
  2497. "version": "v3.1.22",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/hyperf/exception-handler.git",
  2501. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2506. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "hyperf/context": "~3.1.0",
  2511. "hyperf/contract": "~3.1.0",
  2512. "hyperf/dispatcher": "~3.1.0",
  2513. "hyperf/http-message": "~3.1.0",
  2514. "hyperf/stdlib": "~3.1.0",
  2515. "hyperf/support": "~3.1.0",
  2516. "php": ">=8.1",
  2517. "psr/container": "^1.0|^2.0",
  2518. "psr/http-message": "^1.0|^2.0",
  2519. "swow/psr7-plus": "^1.0"
  2520. },
  2521. "suggest": {
  2522. "hyperf/di": "Required to use #[ExceptionHandler]",
  2523. "hyperf/event": "Required to use listeners",
  2524. "hyperf/framework": "Required to use listeners",
  2525. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2526. },
  2527. "type": "library",
  2528. "extra": {
  2529. "branch-alias": {
  2530. "dev-master": "3.1-dev"
  2531. },
  2532. "hyperf": {
  2533. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2534. }
  2535. },
  2536. "autoload": {
  2537. "psr-4": {
  2538. "Hyperf\\ExceptionHandler\\": "src/"
  2539. }
  2540. },
  2541. "notification-url": "https://packagist.org/downloads/",
  2542. "license": [
  2543. "MIT"
  2544. ],
  2545. "description": "Exception handler for hyperf",
  2546. "homepage": "https://hyperf.io",
  2547. "keywords": [
  2548. "exception-handler",
  2549. "php",
  2550. "swoole"
  2551. ],
  2552. "support": {
  2553. "docs": "https://hyperf.wiki",
  2554. "issues": "https://github.com/hyperf/hyperf/issues",
  2555. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2556. "source": "https://github.com/hyperf/hyperf"
  2557. },
  2558. "funding": [
  2559. {
  2560. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2561. "type": "custom"
  2562. },
  2563. {
  2564. "url": "https://opencollective.com/hyperf",
  2565. "type": "open_collective"
  2566. }
  2567. ],
  2568. "time": "2024-05-15T07:12:41+00:00"
  2569. },
  2570. {
  2571. "name": "hyperf/framework",
  2572. "version": "v3.1.23",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/hyperf/framework.git",
  2576. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2581. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "fig/http-message-util": "^1.1.2",
  2586. "hyperf/contract": "~3.1.0",
  2587. "hyperf/coordinator": "~3.1.0",
  2588. "hyperf/coroutine": "~3.1.0",
  2589. "php": ">=8.1",
  2590. "psr/container": "^1.0|^2.0",
  2591. "psr/event-dispatcher": "^1.0",
  2592. "psr/log": "^1.0|^2.0|^3.0"
  2593. },
  2594. "suggest": {
  2595. "ext-swoole": "Required to use swoole engine.",
  2596. "hyperf/command": "Required to use Command annotation.",
  2597. "hyperf/di": "Required to use Command annotation.",
  2598. "hyperf/dispatcher": "Required to use BootApplication event.",
  2599. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2600. },
  2601. "type": "library",
  2602. "extra": {
  2603. "branch-alias": {
  2604. "dev-master": "3.1-dev"
  2605. },
  2606. "hyperf": {
  2607. "config": "Hyperf\\Framework\\ConfigProvider"
  2608. }
  2609. },
  2610. "autoload": {
  2611. "psr-4": {
  2612. "Hyperf\\Framework\\": "src/"
  2613. }
  2614. },
  2615. "notification-url": "https://packagist.org/downloads/",
  2616. "license": [
  2617. "MIT"
  2618. ],
  2619. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2620. "homepage": "https://hyperf.io",
  2621. "keywords": [
  2622. "Microservice",
  2623. "framework",
  2624. "hyperf",
  2625. "middleware",
  2626. "php",
  2627. "swoole"
  2628. ],
  2629. "support": {
  2630. "docs": "https://hyperf.wiki",
  2631. "issues": "https://github.com/hyperf/hyperf/issues",
  2632. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2633. "source": "https://github.com/hyperf/hyperf"
  2634. },
  2635. "funding": [
  2636. {
  2637. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2638. "type": "custom"
  2639. },
  2640. {
  2641. "url": "https://opencollective.com/hyperf",
  2642. "type": "open_collective"
  2643. }
  2644. ],
  2645. "time": "2024-05-21T05:43:48+00:00"
  2646. },
  2647. {
  2648. "name": "hyperf/guzzle",
  2649. "version": "v3.1.15",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/hyperf/guzzle.git",
  2653. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2658. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "guzzlehttp/guzzle": "^6.3|^7.0",
  2663. "php": ">=8.1",
  2664. "psr/container": "^1.0|^2.0",
  2665. "psr/http-message": "^1.0|^2.0"
  2666. },
  2667. "suggest": {
  2668. "ext-curl": "Required for CURL handler support",
  2669. "hyperf/pool": "Required to use pool handler."
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-master": "3.1-dev"
  2675. },
  2676. "hyperf": {
  2677. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2678. }
  2679. },
  2680. "autoload": {
  2681. "psr-4": {
  2682. "Hyperf\\Guzzle\\": "src/"
  2683. }
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "description": "Swoole coroutine handler for guzzle",
  2690. "keywords": [
  2691. "Guzzle",
  2692. "handler",
  2693. "php",
  2694. "swoole"
  2695. ],
  2696. "support": {
  2697. "issues": "https://github.com/hyperf/guzzle/issues",
  2698. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2699. },
  2700. "funding": [
  2701. {
  2702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2703. "type": "custom"
  2704. },
  2705. {
  2706. "url": "https://opencollective.com/hyperf",
  2707. "type": "open_collective"
  2708. }
  2709. ],
  2710. "time": "2024-03-23T11:28:51+00:00"
  2711. },
  2712. {
  2713. "name": "hyperf/http-message",
  2714. "version": "v3.1.25",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/hyperf/http-message.git",
  2718. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/hyperf/http-message/zipball/6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2723. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "hyperf/codec": "~3.1.0",
  2728. "hyperf/engine": "^2.11",
  2729. "hyperf/support": "~3.1.0",
  2730. "laminas/laminas-mime": "^2.7",
  2731. "php": ">=8.1",
  2732. "psr/http-message": "^1.0|^2.0",
  2733. "swow/psr7-plus": "^1.0"
  2734. },
  2735. "suggest": {
  2736. "psr/container": "Required to replace RequestParserInterface."
  2737. },
  2738. "type": "library",
  2739. "extra": {
  2740. "branch-alias": {
  2741. "dev-master": "3.1-dev"
  2742. },
  2743. "hyperf": {
  2744. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2745. }
  2746. },
  2747. "autoload": {
  2748. "psr-4": {
  2749. "Hyperf\\HttpMessage\\": "src/"
  2750. }
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "description": "microservice framework base on swoole",
  2757. "keywords": [
  2758. "http-message",
  2759. "hyperf",
  2760. "php",
  2761. "swoole"
  2762. ],
  2763. "support": {
  2764. "issues": "https://github.com/hyperf/http-message/issues",
  2765. "source": "https://github.com/hyperf/http-message/tree/v3.1.25"
  2766. },
  2767. "funding": [
  2768. {
  2769. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2770. "type": "custom"
  2771. },
  2772. {
  2773. "url": "https://opencollective.com/hyperf",
  2774. "type": "open_collective"
  2775. }
  2776. ],
  2777. "time": "2024-06-05T10:09:59+00:00"
  2778. },
  2779. {
  2780. "name": "hyperf/http-server",
  2781. "version": "v3.1.17",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/hyperf/http-server.git",
  2785. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2790. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2791. "shasum": ""
  2792. },
  2793. "require": {
  2794. "hyperf/codec": "~3.1.0",
  2795. "hyperf/collection": "~3.1.0",
  2796. "hyperf/context": "~3.1.0",
  2797. "hyperf/contract": "~3.1.0",
  2798. "hyperf/coroutine": "~3.1.0",
  2799. "hyperf/dispatcher": "~3.1.0",
  2800. "hyperf/event": "~3.1.0",
  2801. "hyperf/exception-handler": "~3.1.0",
  2802. "hyperf/http-message": "~3.1.0",
  2803. "hyperf/macroable": "~3.1.0",
  2804. "hyperf/serializer": "~3.1.0",
  2805. "hyperf/server": "~3.1.0",
  2806. "hyperf/stdlib": "~3.1.0",
  2807. "hyperf/support": "~3.1.0",
  2808. "nikic/fast-route": "^1.3",
  2809. "php": ">=8.1",
  2810. "psr/container": "^1.0|^2.0",
  2811. "swow/psr7-plus": "^1.0"
  2812. },
  2813. "suggest": {
  2814. "hyperf/di": "Required to use annotations."
  2815. },
  2816. "type": "library",
  2817. "extra": {
  2818. "branch-alias": {
  2819. "dev-master": "3.1-dev"
  2820. },
  2821. "hyperf": {
  2822. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2823. }
  2824. },
  2825. "autoload": {
  2826. "psr-4": {
  2827. "Hyperf\\HttpServer\\": "src/"
  2828. }
  2829. },
  2830. "notification-url": "https://packagist.org/downloads/",
  2831. "license": [
  2832. "MIT"
  2833. ],
  2834. "description": "A HTTP Server for Hyperf.",
  2835. "homepage": "https://hyperf.io",
  2836. "keywords": [
  2837. "http",
  2838. "http-server",
  2839. "hyperf",
  2840. "php",
  2841. "swoole"
  2842. ],
  2843. "support": {
  2844. "docs": "https://hyperf.wiki",
  2845. "issues": "https://github.com/hyperf/hyperf/issues",
  2846. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2847. "source": "https://github.com/hyperf/hyperf"
  2848. },
  2849. "funding": [
  2850. {
  2851. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2852. "type": "custom"
  2853. },
  2854. {
  2855. "url": "https://opencollective.com/hyperf",
  2856. "type": "open_collective"
  2857. }
  2858. ],
  2859. "time": "2024-04-08T07:53:54+00:00"
  2860. },
  2861. {
  2862. "name": "hyperf/json-rpc",
  2863. "version": "v3.1.23",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://github.com/hyperf/json-rpc.git",
  2867. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2872. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2873. "shasum": ""
  2874. },
  2875. "require": {
  2876. "hyperf/codec": "~3.1.0",
  2877. "hyperf/context": "~3.1.0",
  2878. "hyperf/contract": "~3.1.0",
  2879. "hyperf/engine": "^2.0",
  2880. "hyperf/http-message": "~3.1.0",
  2881. "hyperf/load-balancer": "~3.1.0",
  2882. "hyperf/rpc": "~3.1.0",
  2883. "hyperf/serializer": "~3.1.0",
  2884. "hyperf/support": "~3.1.0",
  2885. "hyperf/utils": "~3.1.0",
  2886. "php": ">=8.1",
  2887. "psr/container": "^1.0|^2.0",
  2888. "swow/psr7-plus": "^1.0"
  2889. },
  2890. "suggest": {
  2891. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2892. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2893. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2894. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2895. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2896. },
  2897. "type": "library",
  2898. "extra": {
  2899. "branch-alias": {
  2900. "dev-master": "3.1-dev"
  2901. },
  2902. "hyperf": {
  2903. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2904. }
  2905. },
  2906. "autoload": {
  2907. "psr-4": {
  2908. "Hyperf\\JsonRpc\\": "src/"
  2909. }
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2916. "homepage": "https://hyperf.io",
  2917. "keywords": [
  2918. "hyperf",
  2919. "json-rpc",
  2920. "php",
  2921. "swoole"
  2922. ],
  2923. "support": {
  2924. "docs": "https://hyperf.wiki",
  2925. "issues": "https://github.com/hyperf/hyperf/issues",
  2926. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2927. "source": "https://github.com/hyperf/hyperf"
  2928. },
  2929. "funding": [
  2930. {
  2931. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2932. "type": "custom"
  2933. },
  2934. {
  2935. "url": "https://opencollective.com/hyperf",
  2936. "type": "open_collective"
  2937. }
  2938. ],
  2939. "time": "2024-05-23T03:43:58+00:00"
  2940. },
  2941. {
  2942. "name": "hyperf/load-balancer",
  2943. "version": "v3.1.15",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://github.com/hyperf/load-balancer.git",
  2947. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2952. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2953. "shasum": ""
  2954. },
  2955. "require": {
  2956. "hyperf/coordinator": "~3.1.0",
  2957. "hyperf/coroutine": "~3.1.0",
  2958. "markrogoyski/math-php": "^2.0",
  2959. "php": ">=8.1",
  2960. "psr/log": "^1.0|^2.0|^3.0"
  2961. },
  2962. "type": "library",
  2963. "extra": {
  2964. "branch-alias": {
  2965. "dev-master": "3.1-dev"
  2966. },
  2967. "hyperf": {
  2968. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2969. }
  2970. },
  2971. "autoload": {
  2972. "psr-4": {
  2973. "Hyperf\\LoadBalancer\\": "src/"
  2974. }
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "MIT"
  2979. ],
  2980. "description": "A load balancer library for Hyperf.",
  2981. "homepage": "https://hyperf.io",
  2982. "keywords": [
  2983. "hyperf",
  2984. "load-balancer",
  2985. "php",
  2986. "swoole"
  2987. ],
  2988. "support": {
  2989. "docs": "https://hyperf.wiki",
  2990. "issues": "https://github.com/hyperf/hyperf/issues",
  2991. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2992. "source": "https://github.com/hyperf/hyperf"
  2993. },
  2994. "funding": [
  2995. {
  2996. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2997. "type": "custom"
  2998. },
  2999. {
  3000. "url": "https://opencollective.com/hyperf",
  3001. "type": "open_collective"
  3002. }
  3003. ],
  3004. "time": "2024-03-23T11:28:51+00:00"
  3005. },
  3006. {
  3007. "name": "hyperf/logger",
  3008. "version": "v3.1.15",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/hyperf/logger.git",
  3012. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  3017. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "hyperf/contract": "~3.1.0",
  3022. "hyperf/support": "~3.1.0",
  3023. "hyperf/utils": "~3.1.0",
  3024. "monolog/monolog": "^2.7|^3.1",
  3025. "php": ">=8.1",
  3026. "psr/container": "^1.0|^2.0",
  3027. "psr/log": "^1.0|^2.0|^3.0"
  3028. },
  3029. "type": "library",
  3030. "extra": {
  3031. "branch-alias": {
  3032. "dev-master": "3.1-dev"
  3033. },
  3034. "hyperf": {
  3035. "config": "Hyperf\\Logger\\ConfigProvider"
  3036. }
  3037. },
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Hyperf\\Logger\\": "src/"
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "description": "A logger component for hyperf.",
  3048. "homepage": "https://hyperf.io",
  3049. "keywords": [
  3050. "hyperf",
  3051. "logger",
  3052. "php"
  3053. ],
  3054. "support": {
  3055. "docs": "https://hyperf.wiki",
  3056. "issues": "https://github.com/hyperf/hyperf/issues",
  3057. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3058. "source": "https://github.com/hyperf/hyperf"
  3059. },
  3060. "funding": [
  3061. {
  3062. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3063. "type": "custom"
  3064. },
  3065. {
  3066. "url": "https://opencollective.com/hyperf",
  3067. "type": "open_collective"
  3068. }
  3069. ],
  3070. "time": "2024-03-23T11:28:51+00:00"
  3071. },
  3072. {
  3073. "name": "hyperf/macroable",
  3074. "version": "v3.1.23",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/hyperf/macroable.git",
  3078. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3083. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3084. "shasum": ""
  3085. },
  3086. "require": {
  3087. "php": ">=8.1"
  3088. },
  3089. "type": "library",
  3090. "extra": {
  3091. "branch-alias": {
  3092. "dev-master": "3.1-dev"
  3093. }
  3094. },
  3095. "autoload": {
  3096. "psr-4": {
  3097. "Hyperf\\Macroable\\": "src/"
  3098. }
  3099. },
  3100. "notification-url": "https://packagist.org/downloads/",
  3101. "license": [
  3102. "MIT"
  3103. ],
  3104. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3105. "homepage": "https://hyperf.io",
  3106. "keywords": [
  3107. "hyperf",
  3108. "macroable",
  3109. "php",
  3110. "swoole"
  3111. ],
  3112. "support": {
  3113. "docs": "https://hyperf.wiki",
  3114. "issues": "https://github.com/hyperf/hyperf/issues",
  3115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3116. "source": "https://github.com/hyperf/hyperf"
  3117. },
  3118. "funding": [
  3119. {
  3120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3121. "type": "custom"
  3122. },
  3123. {
  3124. "url": "https://opencollective.com/hyperf",
  3125. "type": "open_collective"
  3126. }
  3127. ],
  3128. "time": "2024-05-20T09:55:40+00:00"
  3129. },
  3130. {
  3131. "name": "hyperf/memory",
  3132. "version": "v3.1.15",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/hyperf/memory.git",
  3136. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3141. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "php": ">=8.1"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "3.1-dev"
  3151. },
  3152. "hyperf": {
  3153. "config": "Hyperf\\Memory\\ConfigProvider"
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Hyperf\\Memory\\": "src/"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "description": "An independent component that use to operate and manage memory.",
  3166. "homepage": "https://hyperf.io",
  3167. "keywords": [
  3168. "hyperf",
  3169. "memory",
  3170. "php",
  3171. "swoole"
  3172. ],
  3173. "support": {
  3174. "docs": "https://hyperf.wiki",
  3175. "issues": "https://github.com/hyperf/hyperf/issues",
  3176. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3177. "source": "https://github.com/hyperf/hyperf"
  3178. },
  3179. "funding": [
  3180. {
  3181. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3182. "type": "custom"
  3183. },
  3184. {
  3185. "url": "https://opencollective.com/hyperf",
  3186. "type": "open_collective"
  3187. }
  3188. ],
  3189. "time": "2024-03-23T11:28:51+00:00"
  3190. },
  3191. {
  3192. "name": "hyperf/model-listener",
  3193. "version": "v3.1.15",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/hyperf/model-listener.git",
  3197. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3202. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3203. "shasum": ""
  3204. },
  3205. "require": {
  3206. "hyperf/contract": "~3.1.0",
  3207. "hyperf/database": "~3.1.0",
  3208. "hyperf/di": "~3.1.0",
  3209. "hyperf/event": "~3.1.0",
  3210. "hyperf/support": "~3.1.0",
  3211. "hyperf/utils": "~3.1.0",
  3212. "php": ">=8.1",
  3213. "psr/container": "^1.0|^2.0"
  3214. },
  3215. "type": "library",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-master": "3.1-dev"
  3219. },
  3220. "hyperf": {
  3221. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "psr-4": {
  3226. "Hyperf\\ModelListener\\": "src/"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "MIT"
  3232. ],
  3233. "description": "A model listener for Hyperf.",
  3234. "homepage": "https://hyperf.io",
  3235. "keywords": [
  3236. "hyperf",
  3237. "model-listener",
  3238. "php",
  3239. "swoole"
  3240. ],
  3241. "support": {
  3242. "docs": "https://hyperf.wiki",
  3243. "issues": "https://github.com/hyperf/hyperf/issues",
  3244. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3245. "source": "https://github.com/hyperf/hyperf"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3250. "type": "custom"
  3251. },
  3252. {
  3253. "url": "https://opencollective.com/hyperf",
  3254. "type": "open_collective"
  3255. }
  3256. ],
  3257. "time": "2024-03-23T11:28:51+00:00"
  3258. },
  3259. {
  3260. "name": "hyperf/nacos",
  3261. "version": "v3.1.15",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/hyperf/nacos.git",
  3265. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3270. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "guzzlehttp/guzzle": "^6.5|^7.0",
  3275. "hyperf/codec": "~3.1.0",
  3276. "hyperf/contract": "~3.1.0",
  3277. "hyperf/support": "~3.1.0",
  3278. "hyperf/utils": "~3.1.0",
  3279. "jetbrains/phpstorm-attributes": "^1.0",
  3280. "php": ">=8.1"
  3281. },
  3282. "type": "library",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-master": "3.1-dev"
  3286. },
  3287. "hyperf": {
  3288. "config": "Hyperf\\Nacos\\ConfigProvider"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "psr-4": {
  3293. "Hyperf\\Nacos\\": "src/"
  3294. }
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "description": "Nacos SDK",
  3301. "keywords": [
  3302. "hyperf",
  3303. "nacos",
  3304. "php"
  3305. ],
  3306. "support": {
  3307. "issues": "https://github.com/hyperf/nacos/issues",
  3308. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3309. },
  3310. "funding": [
  3311. {
  3312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3313. "type": "custom"
  3314. },
  3315. {
  3316. "url": "https://opencollective.com/hyperf",
  3317. "type": "open_collective"
  3318. }
  3319. ],
  3320. "time": "2024-03-23T11:28:51+00:00"
  3321. },
  3322. {
  3323. "name": "hyperf/pipeline",
  3324. "version": "v3.1.15",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/hyperf/pipeline.git",
  3328. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3333. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=8.1",
  3338. "psr/container": "^1.0|^2.0"
  3339. },
  3340. "type": "library",
  3341. "extra": {
  3342. "branch-alias": {
  3343. "dev-master": "3.1-dev"
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Hyperf\\Pipeline\\": "src/"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3356. "homepage": "https://hyperf.io",
  3357. "keywords": [
  3358. "hyperf",
  3359. "php",
  3360. "pipeline",
  3361. "swoole"
  3362. ],
  3363. "support": {
  3364. "docs": "https://hyperf.wiki",
  3365. "issues": "https://github.com/hyperf/hyperf/issues",
  3366. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3367. "source": "https://github.com/hyperf/hyperf"
  3368. },
  3369. "funding": [
  3370. {
  3371. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3372. "type": "custom"
  3373. },
  3374. {
  3375. "url": "https://opencollective.com/hyperf",
  3376. "type": "open_collective"
  3377. }
  3378. ],
  3379. "time": "2024-03-23T11:28:51+00:00"
  3380. },
  3381. {
  3382. "name": "hyperf/pool",
  3383. "version": "v3.1.15",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/hyperf/pool.git",
  3387. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3392. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "hyperf/contract": "~3.1.0",
  3397. "hyperf/support": "~3.1.0",
  3398. "hyperf/utils": "~3.1.0",
  3399. "php": ">=8.1",
  3400. "psr/container": "^1.0|^2.0"
  3401. },
  3402. "suggest": {
  3403. "psr/event-dispatcher": "Required to use events."
  3404. },
  3405. "type": "library",
  3406. "extra": {
  3407. "branch-alias": {
  3408. "dev-master": "3.1-dev"
  3409. },
  3410. "hyperf": {
  3411. "config": "Hyperf\\Pool\\ConfigProvider"
  3412. }
  3413. },
  3414. "autoload": {
  3415. "psr-4": {
  3416. "Hyperf\\Pool\\": "src/"
  3417. }
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "description": "An independent universal connection pool component.",
  3424. "homepage": "https://hyperf.io",
  3425. "keywords": [
  3426. "connection-pool",
  3427. "hyperf",
  3428. "php",
  3429. "swoole"
  3430. ],
  3431. "support": {
  3432. "docs": "https://hyperf.wiki",
  3433. "issues": "https://github.com/hyperf/hyperf/issues",
  3434. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3435. "source": "https://github.com/hyperf/hyperf"
  3436. },
  3437. "funding": [
  3438. {
  3439. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3440. "type": "custom"
  3441. },
  3442. {
  3443. "url": "https://opencollective.com/hyperf",
  3444. "type": "open_collective"
  3445. }
  3446. ],
  3447. "time": "2024-03-23T11:28:51+00:00"
  3448. },
  3449. {
  3450. "name": "hyperf/process",
  3451. "version": "v3.1.15",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/hyperf/process.git",
  3455. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3460. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3461. "shasum": ""
  3462. },
  3463. "require": {
  3464. "hyperf/contract": "~3.1.0",
  3465. "hyperf/support": "~3.1.0",
  3466. "hyperf/utils": "~3.1.0",
  3467. "php": ">=8.1",
  3468. "psr/container": "^1.0|^2.0",
  3469. "psr/event-dispatcher": "^1.0"
  3470. },
  3471. "suggest": {
  3472. "hyperf/di": "Required to use annotations.",
  3473. "hyperf/event": "Required to dump the message before and after process.",
  3474. "hyperf/framework": "Required to use BootProcessListener."
  3475. },
  3476. "type": "library",
  3477. "extra": {
  3478. "branch-alias": {
  3479. "dev-master": "3.1-dev"
  3480. },
  3481. "hyperf": {
  3482. "config": "Hyperf\\Process\\ConfigProvider"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Hyperf\\Process\\": "src/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "description": "A process component for hyperf.",
  3495. "homepage": "https://hyperf.io",
  3496. "keywords": [
  3497. "hyperf",
  3498. "php",
  3499. "process"
  3500. ],
  3501. "support": {
  3502. "docs": "https://hyperf.wiki",
  3503. "issues": "https://github.com/hyperf/hyperf/issues",
  3504. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3505. "source": "https://github.com/hyperf/hyperf"
  3506. },
  3507. "funding": [
  3508. {
  3509. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3510. "type": "custom"
  3511. },
  3512. {
  3513. "url": "https://opencollective.com/hyperf",
  3514. "type": "open_collective"
  3515. }
  3516. ],
  3517. "time": "2024-03-23T11:28:51+00:00"
  3518. },
  3519. {
  3520. "name": "hyperf/redis",
  3521. "version": "v3.1.18",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/hyperf/redis.git",
  3525. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3530. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3531. "shasum": ""
  3532. },
  3533. "require": {
  3534. "ext-redis": "^5.0|^6.0",
  3535. "hyperf/contract": "~3.1.0",
  3536. "hyperf/pool": "~3.1.0",
  3537. "hyperf/support": "~3.1.0",
  3538. "hyperf/tappable": "~3.1.0",
  3539. "hyperf/utils": "~3.1.0",
  3540. "php": ">=8.1",
  3541. "psr/container": "^1.0|^2.0"
  3542. },
  3543. "suggest": {
  3544. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3545. "hyperf/di": "Create the RedisPool via dependency injection."
  3546. },
  3547. "type": "library",
  3548. "extra": {
  3549. "branch-alias": {
  3550. "dev-master": "3.1-dev"
  3551. },
  3552. "hyperf": {
  3553. "config": "Hyperf\\Redis\\ConfigProvider"
  3554. }
  3555. },
  3556. "autoload": {
  3557. "psr-4": {
  3558. "Hyperf\\Redis\\": "src/"
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "description": "A redis component for hyperf.",
  3566. "homepage": "https://hyperf.io",
  3567. "keywords": [
  3568. "hyperf",
  3569. "php",
  3570. "pool",
  3571. "redis"
  3572. ],
  3573. "support": {
  3574. "docs": "https://hyperf.wiki",
  3575. "issues": "https://github.com/hyperf/hyperf/issues",
  3576. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3577. "source": "https://github.com/hyperf/hyperf"
  3578. },
  3579. "funding": [
  3580. {
  3581. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3582. "type": "custom"
  3583. },
  3584. {
  3585. "url": "https://opencollective.com/hyperf",
  3586. "type": "open_collective"
  3587. }
  3588. ],
  3589. "time": "2024-04-11T10:18:35+00:00"
  3590. },
  3591. {
  3592. "name": "hyperf/rpc",
  3593. "version": "v3.1.15",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://github.com/hyperf/rpc.git",
  3597. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3602. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "hyperf/codec": "~3.1.0",
  3607. "hyperf/contract": "~3.1.0",
  3608. "hyperf/support": "~3.1.0",
  3609. "jetbrains/phpstorm-attributes": "^1.0",
  3610. "php": ">=8.1"
  3611. },
  3612. "type": "library",
  3613. "extra": {
  3614. "branch-alias": {
  3615. "dev-master": "3.1-dev"
  3616. },
  3617. "hyperf": []
  3618. },
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Hyperf\\Rpc\\": "src/"
  3622. }
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "description": "A rpc basic library for Hyperf.",
  3629. "homepage": "https://hyperf.io",
  3630. "keywords": [
  3631. "hyperf",
  3632. "php",
  3633. "rpc",
  3634. "swoole"
  3635. ],
  3636. "support": {
  3637. "docs": "https://hyperf.wiki",
  3638. "issues": "https://github.com/hyperf/hyperf/issues",
  3639. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3640. "source": "https://github.com/hyperf/hyperf"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3645. "type": "custom"
  3646. },
  3647. {
  3648. "url": "https://opencollective.com/hyperf",
  3649. "type": "open_collective"
  3650. }
  3651. ],
  3652. "time": "2024-03-23T11:28:51+00:00"
  3653. },
  3654. {
  3655. "name": "hyperf/rpc-client",
  3656. "version": "v3.1.15",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/hyperf/rpc-client.git",
  3660. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3665. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "hyperf/code-parser": "~3.1.0",
  3670. "hyperf/load-balancer": "~3.1.0",
  3671. "hyperf/rpc": "~3.1.0",
  3672. "hyperf/support": "~3.1.0",
  3673. "hyperf/utils": "~3.1.0",
  3674. "jetbrains/phpstorm-attributes": "^1.0",
  3675. "php": ">=8.1",
  3676. "psr/container": "^1.0|^2.0"
  3677. },
  3678. "suggest": {
  3679. "hyperf/di": "For better container experience.",
  3680. "hyperf/pool": "Required to use connection pool.",
  3681. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-master": "3.1-dev"
  3687. },
  3688. "hyperf": {
  3689. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "Hyperf\\RpcClient\\": "src/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "description": "An abstract rpc server component for Hyperf.",
  3702. "homepage": "https://hyperf.io",
  3703. "keywords": [
  3704. "hyperf",
  3705. "json-rpc",
  3706. "php",
  3707. "rpc",
  3708. "rpc-client",
  3709. "swoole"
  3710. ],
  3711. "support": {
  3712. "docs": "https://hyperf.wiki",
  3713. "issues": "https://github.com/hyperf/hyperf/issues",
  3714. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3715. "source": "https://github.com/hyperf/hyperf"
  3716. },
  3717. "funding": [
  3718. {
  3719. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3720. "type": "custom"
  3721. },
  3722. {
  3723. "url": "https://opencollective.com/hyperf",
  3724. "type": "open_collective"
  3725. }
  3726. ],
  3727. "time": "2024-03-23T11:28:51+00:00"
  3728. },
  3729. {
  3730. "name": "hyperf/rpc-server",
  3731. "version": "v3.1.20",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/hyperf/rpc-server.git",
  3735. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3740. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3741. "shasum": ""
  3742. },
  3743. "require": {
  3744. "hyperf/http-server": "~3.1.0",
  3745. "hyperf/rpc": "~3.1.0",
  3746. "php": ">=8.1"
  3747. },
  3748. "suggest": {
  3749. "hyperf/di": "Required to use annotations."
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-master": "3.1-dev"
  3755. },
  3756. "hyperf": {
  3757. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Hyperf\\RpcServer\\": "src/"
  3763. }
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "description": "An abstract rpc server component for Hyperf.",
  3770. "homepage": "https://hyperf.io",
  3771. "keywords": [
  3772. "hyperf",
  3773. "php",
  3774. "rpc",
  3775. "rpc-server",
  3776. "swoole"
  3777. ],
  3778. "support": {
  3779. "docs": "https://hyperf.wiki",
  3780. "issues": "https://github.com/hyperf/hyperf/issues",
  3781. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3782. "source": "https://github.com/hyperf/hyperf"
  3783. },
  3784. "funding": [
  3785. {
  3786. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3787. "type": "custom"
  3788. },
  3789. {
  3790. "url": "https://opencollective.com/hyperf",
  3791. "type": "open_collective"
  3792. }
  3793. ],
  3794. "time": "2024-04-22T01:46:29+00:00"
  3795. },
  3796. {
  3797. "name": "hyperf/serializer",
  3798. "version": "v3.1.23",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/hyperf/serializer.git",
  3802. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3807. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3808. "shasum": ""
  3809. },
  3810. "require": {
  3811. "hyperf/contract": "~3.1.0",
  3812. "php": ">=8.1"
  3813. },
  3814. "suggest": {
  3815. "hyperf/di": "Required to use ExceptionNormalizer",
  3816. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3817. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3818. },
  3819. "type": "library",
  3820. "extra": {
  3821. "branch-alias": {
  3822. "dev-master": "3.1-dev"
  3823. },
  3824. "hyperf": {
  3825. "config": "Hyperf\\Serializer\\ConfigProvider"
  3826. }
  3827. },
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Hyperf\\Serializer\\": "src/"
  3831. }
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "description": "A serializer component for Hyperf.",
  3838. "homepage": "https://hyperf.io",
  3839. "keywords": [
  3840. "hyperf",
  3841. "php",
  3842. "swoole",
  3843. "tappable"
  3844. ],
  3845. "support": {
  3846. "docs": "https://hyperf.wiki",
  3847. "issues": "https://github.com/hyperf/hyperf/issues",
  3848. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3849. "source": "https://github.com/hyperf/hyperf"
  3850. },
  3851. "funding": [
  3852. {
  3853. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3854. "type": "custom"
  3855. },
  3856. {
  3857. "url": "https://opencollective.com/hyperf",
  3858. "type": "open_collective"
  3859. }
  3860. ],
  3861. "time": "2024-05-23T03:43:58+00:00"
  3862. },
  3863. {
  3864. "name": "hyperf/server",
  3865. "version": "v3.1.23",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/hyperf/server.git",
  3869. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3874. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3875. "shasum": ""
  3876. },
  3877. "require": {
  3878. "hyperf/contract": "~3.1.0",
  3879. "hyperf/coordinator": "~3.1.0",
  3880. "hyperf/engine": "^2.8",
  3881. "hyperf/support": "~3.1.0",
  3882. "hyperf/tappable": "~3.1.0",
  3883. "php": ">=8.1",
  3884. "psr/container": "^1.0|^2.0",
  3885. "psr/event-dispatcher": "^1.0",
  3886. "psr/log": "^1.0|^2.0|^3.0",
  3887. "symfony/console": "^5.0|^6.0|^7.0"
  3888. },
  3889. "suggest": {
  3890. "hyperf/event": "Dump the info after server start.",
  3891. "hyperf/framework": "Dump the info after server start."
  3892. },
  3893. "type": "library",
  3894. "extra": {
  3895. "branch-alias": {
  3896. "dev-master": "3.1-dev"
  3897. },
  3898. "hyperf": {
  3899. "config": "Hyperf\\Server\\ConfigProvider"
  3900. }
  3901. },
  3902. "autoload": {
  3903. "psr-4": {
  3904. "Hyperf\\Server\\": "src/"
  3905. }
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "description": "A base server library for Hyperf.",
  3912. "homepage": "https://hyperf.io",
  3913. "keywords": [
  3914. "hyperf",
  3915. "php",
  3916. "server",
  3917. "swoole"
  3918. ],
  3919. "support": {
  3920. "docs": "https://hyperf.wiki",
  3921. "issues": "https://github.com/hyperf/hyperf/issues",
  3922. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3923. "source": "https://github.com/hyperf/hyperf"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3928. "type": "custom"
  3929. },
  3930. {
  3931. "url": "https://opencollective.com/hyperf",
  3932. "type": "open_collective"
  3933. }
  3934. ],
  3935. "time": "2024-05-23T03:43:58+00:00"
  3936. },
  3937. {
  3938. "name": "hyperf/service-governance",
  3939. "version": "v3.1.15",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/hyperf/service-governance.git",
  3943. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3948. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "hyperf/contract": "~3.1.0",
  3953. "hyperf/support": "~3.1.0",
  3954. "jetbrains/phpstorm-attributes": "^1.0",
  3955. "php": ">=8.1"
  3956. },
  3957. "suggest": {
  3958. "hyperf/event": "Required to use RegisterServiceListener.",
  3959. "hyperf/framework": "Required to use RegisterServiceListener.",
  3960. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3961. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3962. },
  3963. "type": "library",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-master": "3.1-dev"
  3967. },
  3968. "hyperf": {
  3969. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3970. }
  3971. },
  3972. "autoload": {
  3973. "psr-4": {
  3974. "Hyperf\\ServiceGovernance\\": "src/"
  3975. }
  3976. },
  3977. "notification-url": "https://packagist.org/downloads/",
  3978. "license": [
  3979. "MIT"
  3980. ],
  3981. "description": "A service governance component for Hyperf.",
  3982. "homepage": "https://hyperf.io",
  3983. "keywords": [
  3984. "hyperf",
  3985. "php",
  3986. "service-governance",
  3987. "swoole"
  3988. ],
  3989. "support": {
  3990. "docs": "https://hyperf.wiki",
  3991. "issues": "https://github.com/hyperf/hyperf/issues",
  3992. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3993. "source": "https://github.com/hyperf/hyperf"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://opencollective.com/hyperf",
  4002. "type": "open_collective"
  4003. }
  4004. ],
  4005. "time": "2024-03-23T11:28:51+00:00"
  4006. },
  4007. {
  4008. "name": "hyperf/service-governance-consul",
  4009. "version": "v3.1.15",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/hyperf/service-governance-consul.git",
  4013. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4018. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "hyperf/consul": "~3.1.0",
  4023. "hyperf/contract": "~3.1.0",
  4024. "hyperf/service-governance": "~3.1.0",
  4025. "hyperf/support": "~3.1.0",
  4026. "hyperf/utils": "~3.1.0",
  4027. "php": ">=8.1"
  4028. },
  4029. "type": "library",
  4030. "extra": {
  4031. "branch-alias": {
  4032. "dev-master": "3.1-dev"
  4033. },
  4034. "hyperf": {
  4035. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4036. }
  4037. },
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4041. }
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "description": "A consul adapter for service governance.",
  4048. "homepage": "https://hyperf.io",
  4049. "keywords": [
  4050. "consul-adapter",
  4051. "hyperf",
  4052. "php",
  4053. "service-governance",
  4054. "swoole"
  4055. ],
  4056. "support": {
  4057. "docs": "https://hyperf.wiki",
  4058. "issues": "https://github.com/hyperf/hyperf/issues",
  4059. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4060. "source": "https://github.com/hyperf/hyperf"
  4061. },
  4062. "funding": [
  4063. {
  4064. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4065. "type": "custom"
  4066. },
  4067. {
  4068. "url": "https://opencollective.com/hyperf",
  4069. "type": "open_collective"
  4070. }
  4071. ],
  4072. "time": "2024-03-23T11:28:51+00:00"
  4073. },
  4074. {
  4075. "name": "hyperf/service-governance-nacos",
  4076. "version": "v3.1.15",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4080. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4085. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "hyperf/codec": "~3.1.0",
  4090. "hyperf/contract": "~3.1.0",
  4091. "hyperf/nacos": "~3.1.0",
  4092. "hyperf/service-governance": "~3.1.0",
  4093. "hyperf/support": "~3.1.0",
  4094. "hyperf/utils": "~3.1.0",
  4095. "php": ">=8.1"
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-master": "3.1-dev"
  4101. },
  4102. "hyperf": {
  4103. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4104. }
  4105. },
  4106. "autoload": {
  4107. "psr-4": {
  4108. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4109. }
  4110. },
  4111. "notification-url": "https://packagist.org/downloads/",
  4112. "license": [
  4113. "MIT"
  4114. ],
  4115. "description": "A nacos adapter for service governance.",
  4116. "homepage": "https://hyperf.io",
  4117. "keywords": [
  4118. "hyperf",
  4119. "nacos-adapter",
  4120. "php",
  4121. "service-governance",
  4122. "swoole"
  4123. ],
  4124. "support": {
  4125. "docs": "https://hyperf.wiki",
  4126. "issues": "https://github.com/hyperf/hyperf/issues",
  4127. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4128. "source": "https://github.com/hyperf/hyperf"
  4129. },
  4130. "funding": [
  4131. {
  4132. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4133. "type": "custom"
  4134. },
  4135. {
  4136. "url": "https://opencollective.com/hyperf",
  4137. "type": "open_collective"
  4138. }
  4139. ],
  4140. "time": "2024-03-23T11:28:51+00:00"
  4141. },
  4142. {
  4143. "name": "hyperf/stdlib",
  4144. "version": "v3.1.15",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://github.com/hyperf/stdlib.git",
  4148. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4153. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4154. "shasum": ""
  4155. },
  4156. "require": {
  4157. "php": ">=8.1"
  4158. },
  4159. "type": "library",
  4160. "extra": {
  4161. "branch-alias": {
  4162. "dev-master": "3.1-dev"
  4163. }
  4164. },
  4165. "autoload": {
  4166. "psr-4": {
  4167. "Hyperf\\Stdlib\\": "src/"
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "description": "A stdlib component for Hyperf.",
  4175. "homepage": "https://hyperf.io",
  4176. "keywords": [
  4177. "hyperf",
  4178. "php",
  4179. "stdlib",
  4180. "swoole"
  4181. ],
  4182. "support": {
  4183. "docs": "https://hyperf.wiki",
  4184. "issues": "https://github.com/hyperf/hyperf/issues",
  4185. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4186. "source": "https://github.com/hyperf/hyperf"
  4187. },
  4188. "funding": [
  4189. {
  4190. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4191. "type": "custom"
  4192. },
  4193. {
  4194. "url": "https://opencollective.com/hyperf",
  4195. "type": "open_collective"
  4196. }
  4197. ],
  4198. "time": "2024-03-23T11:28:51+00:00"
  4199. },
  4200. {
  4201. "name": "hyperf/stringable",
  4202. "version": "v3.1.24",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/hyperf/stringable.git",
  4206. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4211. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "ext-mbstring": "*",
  4216. "hyperf/collection": "~3.1.0",
  4217. "hyperf/conditionable": "~3.1.0",
  4218. "hyperf/macroable": "~3.1.0",
  4219. "hyperf/tappable": "~3.1.0",
  4220. "php": ">=8.1"
  4221. },
  4222. "suggest": {
  4223. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4224. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4225. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4226. },
  4227. "type": "library",
  4228. "extra": {
  4229. "branch-alias": {
  4230. "dev-master": "3.1-dev"
  4231. }
  4232. },
  4233. "autoload": {
  4234. "files": [
  4235. "src/Functions.php"
  4236. ],
  4237. "psr-4": {
  4238. "Hyperf\\Stringable\\": "src/"
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "description": "Hyperf Stringable package which come from illuminate/support",
  4246. "homepage": "https://hyperf.io",
  4247. "keywords": [
  4248. "hyperf",
  4249. "php",
  4250. "stringable",
  4251. "swoole"
  4252. ],
  4253. "support": {
  4254. "docs": "https://hyperf.wiki",
  4255. "issues": "https://github.com/hyperf/hyperf/issues",
  4256. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4257. "source": "https://github.com/hyperf/hyperf"
  4258. },
  4259. "funding": [
  4260. {
  4261. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4262. "type": "custom"
  4263. },
  4264. {
  4265. "url": "https://opencollective.com/hyperf",
  4266. "type": "open_collective"
  4267. }
  4268. ],
  4269. "time": "2024-05-27T03:20:24+00:00"
  4270. },
  4271. {
  4272. "name": "hyperf/support",
  4273. "version": "v3.1.25",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/hyperf/support.git",
  4277. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/hyperf/support/zipball/4b74b58b94cf029696a93d479068341a67b27a0d",
  4282. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d",
  4283. "shasum": ""
  4284. },
  4285. "require": {
  4286. "hyperf/collection": "~3.1.0",
  4287. "hyperf/context": "~3.1.0",
  4288. "hyperf/contract": "~3.1.0",
  4289. "hyperf/coroutine": "~3.1.0",
  4290. "hyperf/macroable": "~3.1.0",
  4291. "hyperf/stringable": "~3.1.0",
  4292. "php": ">=8.1"
  4293. },
  4294. "suggest": {
  4295. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4296. },
  4297. "type": "library",
  4298. "extra": {
  4299. "branch-alias": {
  4300. "dev-master": "3.1-dev"
  4301. }
  4302. },
  4303. "autoload": {
  4304. "files": [
  4305. "src/Functions.php"
  4306. ],
  4307. "psr-4": {
  4308. "Hyperf\\Support\\": "src/"
  4309. }
  4310. },
  4311. "notification-url": "https://packagist.org/downloads/",
  4312. "license": [
  4313. "MIT"
  4314. ],
  4315. "description": "A support component for Hyperf.",
  4316. "homepage": "https://hyperf.io",
  4317. "keywords": [
  4318. "hyperf",
  4319. "php",
  4320. "support",
  4321. "swoole"
  4322. ],
  4323. "support": {
  4324. "docs": "https://hyperf.wiki",
  4325. "issues": "https://github.com/hyperf/hyperf/issues",
  4326. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4327. "source": "https://github.com/hyperf/hyperf"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4332. "type": "custom"
  4333. },
  4334. {
  4335. "url": "https://opencollective.com/hyperf",
  4336. "type": "open_collective"
  4337. }
  4338. ],
  4339. "time": "2024-05-30T09:57:29+00:00"
  4340. },
  4341. {
  4342. "name": "hyperf/tappable",
  4343. "version": "v3.1.15",
  4344. "source": {
  4345. "type": "git",
  4346. "url": "https://github.com/hyperf/tappable.git",
  4347. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4348. },
  4349. "dist": {
  4350. "type": "zip",
  4351. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4352. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4353. "shasum": ""
  4354. },
  4355. "require": {
  4356. "php": ">=8.1"
  4357. },
  4358. "type": "library",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-master": "3.1-dev"
  4362. }
  4363. },
  4364. "autoload": {
  4365. "files": [
  4366. "src/Functions.php"
  4367. ],
  4368. "psr-4": {
  4369. "Hyperf\\Tappable\\": "src/"
  4370. }
  4371. },
  4372. "notification-url": "https://packagist.org/downloads/",
  4373. "license": [
  4374. "MIT"
  4375. ],
  4376. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4377. "homepage": "https://hyperf.io",
  4378. "keywords": [
  4379. "hyperf",
  4380. "php",
  4381. "swoole",
  4382. "tappable"
  4383. ],
  4384. "support": {
  4385. "docs": "https://hyperf.wiki",
  4386. "issues": "https://github.com/hyperf/hyperf/issues",
  4387. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4388. "source": "https://github.com/hyperf/hyperf"
  4389. },
  4390. "funding": [
  4391. {
  4392. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4393. "type": "custom"
  4394. },
  4395. {
  4396. "url": "https://opencollective.com/hyperf",
  4397. "type": "open_collective"
  4398. }
  4399. ],
  4400. "time": "2024-03-23T11:28:51+00:00"
  4401. },
  4402. {
  4403. "name": "hyperf/translation",
  4404. "version": "v3.1.15",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/hyperf/translation.git",
  4408. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/hyperf/translation/zipball/7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4413. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "hyperf/contract": "~3.1.0",
  4418. "hyperf/macroable": "~3.1.0",
  4419. "hyperf/support": "~3.1.0",
  4420. "hyperf/utils": "~3.1.0",
  4421. "php": ">=8.1",
  4422. "psr/container": "^1.0|^2.0"
  4423. },
  4424. "type": "library",
  4425. "extra": {
  4426. "branch-alias": {
  4427. "dev-master": "3.1-dev"
  4428. },
  4429. "hyperf": {
  4430. "config": "Hyperf\\Translation\\ConfigProvider"
  4431. }
  4432. },
  4433. "autoload": {
  4434. "files": [
  4435. "src/Functions.php"
  4436. ],
  4437. "psr-4": {
  4438. "Hyperf\\Translation\\": "src/"
  4439. }
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "description": "An independent translation component, forked by illuminate/translation.",
  4446. "keywords": [
  4447. "hyperf",
  4448. "translation"
  4449. ],
  4450. "support": {
  4451. "issues": "https://github.com/hyperf/translation/issues",
  4452. "source": "https://github.com/hyperf/translation/tree/v3.1.15"
  4453. },
  4454. "funding": [
  4455. {
  4456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4457. "type": "custom"
  4458. },
  4459. {
  4460. "url": "https://opencollective.com/hyperf",
  4461. "type": "open_collective"
  4462. }
  4463. ],
  4464. "time": "2024-03-23T11:28:51+00:00"
  4465. },
  4466. {
  4467. "name": "hyperf/utils",
  4468. "version": "v3.1.0",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/hyperf/utils.git",
  4472. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4477. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "doctrine/inflector": "^2.0",
  4482. "hyperf/code-parser": "~3.1.0",
  4483. "hyperf/codec": "~3.1.0",
  4484. "hyperf/collection": "~3.1.0",
  4485. "hyperf/context": "~3.1.0",
  4486. "hyperf/contract": "~3.1.0",
  4487. "hyperf/coordinator": "~3.1.0",
  4488. "hyperf/coroutine": "~3.1.0",
  4489. "hyperf/engine": "^2.0",
  4490. "hyperf/macroable": "~3.1.0",
  4491. "hyperf/serializer": "~3.1.0",
  4492. "hyperf/stringable": "~3.1.0",
  4493. "hyperf/support": "~3.1.0",
  4494. "php": ">=8.1"
  4495. },
  4496. "type": "library",
  4497. "extra": {
  4498. "branch-alias": {
  4499. "dev-master": "3.1-dev"
  4500. }
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "MIT"
  4505. ],
  4506. "description": "A tools package that could help developer solved the problem quickly.",
  4507. "homepage": "https://hyperf.io",
  4508. "keywords": [
  4509. "hyperf",
  4510. "php",
  4511. "swoole",
  4512. "utils"
  4513. ],
  4514. "support": {
  4515. "docs": "https://hyperf.wiki",
  4516. "issues": "https://github.com/hyperf/hyperf/issues",
  4517. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4518. "source": "https://github.com/hyperf/hyperf"
  4519. },
  4520. "funding": [
  4521. {
  4522. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://opencollective.com/hyperf",
  4527. "type": "open_collective"
  4528. }
  4529. ],
  4530. "time": "2023-11-24T03:10:53+00:00"
  4531. },
  4532. {
  4533. "name": "hyperf/validation",
  4534. "version": "v3.1.25",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/hyperf/validation.git",
  4538. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/hyperf/validation/zipball/a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4543. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4544. "shasum": ""
  4545. },
  4546. "require": {
  4547. "egulias/email-validator": "^3.0",
  4548. "hyperf/collection": "~3.1.0",
  4549. "hyperf/conditionable": "~3.1.0",
  4550. "hyperf/contract": "~3.1.0",
  4551. "hyperf/di": "~3.1.0",
  4552. "hyperf/framework": "~3.1.0",
  4553. "hyperf/macroable": "~3.1.0",
  4554. "hyperf/stringable": "~3.1.0",
  4555. "hyperf/support": "~3.1.0",
  4556. "hyperf/tappable": "~3.1.0",
  4557. "hyperf/translation": "~3.1.0",
  4558. "hyperf/utils": "~3.1.0",
  4559. "nesbot/carbon": "^2.21",
  4560. "php": ">=8.1",
  4561. "psr/container": "^1.0|^2.0",
  4562. "psr/event-dispatcher": "^1.0",
  4563. "psr/http-message": "^1.0|^2.0"
  4564. },
  4565. "suggest": {
  4566. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4567. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4568. },
  4569. "type": "library",
  4570. "extra": {
  4571. "branch-alias": {
  4572. "dev-master": "3.1-dev"
  4573. },
  4574. "hyperf": {
  4575. "config": "Hyperf\\Validation\\ConfigProvider"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "psr-4": {
  4580. "Hyperf\\Validation\\": "src/"
  4581. }
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "description": "hyperf validation",
  4588. "keywords": [
  4589. "hyperf",
  4590. "validation"
  4591. ],
  4592. "support": {
  4593. "issues": "https://github.com/hyperf/validation/issues",
  4594. "source": "https://github.com/hyperf/validation/tree/v3.1.25"
  4595. },
  4596. "funding": [
  4597. {
  4598. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4599. "type": "custom"
  4600. },
  4601. {
  4602. "url": "https://opencollective.com/hyperf",
  4603. "type": "open_collective"
  4604. }
  4605. ],
  4606. "time": "2024-05-30T08:59:48+00:00"
  4607. },
  4608. {
  4609. "name": "jetbrains/phpstorm-attributes",
  4610. "version": "1.1",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4614. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4619. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4620. "shasum": ""
  4621. },
  4622. "type": "library",
  4623. "autoload": {
  4624. "psr-4": {
  4625. "JetBrains\\PhpStorm\\": "src/"
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "Apache-2.0"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "JetBrains",
  4635. "homepage": "https://www.jetbrains.com"
  4636. }
  4637. ],
  4638. "description": "PhpStorm specific attributes",
  4639. "keywords": [
  4640. "attributes",
  4641. "jetbrains",
  4642. "phpstorm"
  4643. ],
  4644. "support": {
  4645. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4646. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4647. },
  4648. "time": "2023-09-01T08:50:25+00:00"
  4649. },
  4650. {
  4651. "name": "laminas/laminas-mime",
  4652. "version": "2.12.0",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/laminas/laminas-mime.git",
  4656. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4661. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4666. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4667. },
  4668. "conflict": {
  4669. "zendframework/zend-mime": "*"
  4670. },
  4671. "require-dev": {
  4672. "laminas/laminas-coding-standard": "~2.4.0",
  4673. "laminas/laminas-mail": "^2.19.0",
  4674. "phpunit/phpunit": "~9.5.25"
  4675. },
  4676. "suggest": {
  4677. "laminas/laminas-mail": "Laminas\\Mail component"
  4678. },
  4679. "type": "library",
  4680. "autoload": {
  4681. "psr-4": {
  4682. "Laminas\\Mime\\": "src/"
  4683. }
  4684. },
  4685. "notification-url": "https://packagist.org/downloads/",
  4686. "license": [
  4687. "BSD-3-Clause"
  4688. ],
  4689. "description": "Create and parse MIME messages and parts",
  4690. "homepage": "https://laminas.dev",
  4691. "keywords": [
  4692. "laminas",
  4693. "mime"
  4694. ],
  4695. "support": {
  4696. "chat": "https://laminas.dev/chat",
  4697. "docs": "https://docs.laminas.dev/laminas-mime/",
  4698. "forum": "https://discourse.laminas.dev",
  4699. "issues": "https://github.com/laminas/laminas-mime/issues",
  4700. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4701. "source": "https://github.com/laminas/laminas-mime"
  4702. },
  4703. "funding": [
  4704. {
  4705. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4706. "type": "community_bridge"
  4707. }
  4708. ],
  4709. "time": "2023-11-02T16:47:19+00:00"
  4710. },
  4711. {
  4712. "name": "laminas/laminas-stdlib",
  4713. "version": "3.19.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/laminas/laminas-stdlib.git",
  4717. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4722. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4727. },
  4728. "conflict": {
  4729. "zendframework/zend-stdlib": "*"
  4730. },
  4731. "require-dev": {
  4732. "laminas/laminas-coding-standard": "^2.5",
  4733. "phpbench/phpbench": "^1.2.15",
  4734. "phpunit/phpunit": "^10.5.8",
  4735. "psalm/plugin-phpunit": "^0.18.4",
  4736. "vimeo/psalm": "^5.20.0"
  4737. },
  4738. "type": "library",
  4739. "autoload": {
  4740. "psr-4": {
  4741. "Laminas\\Stdlib\\": "src/"
  4742. }
  4743. },
  4744. "notification-url": "https://packagist.org/downloads/",
  4745. "license": [
  4746. "BSD-3-Clause"
  4747. ],
  4748. "description": "SPL extensions, array utilities, error handlers, and more",
  4749. "homepage": "https://laminas.dev",
  4750. "keywords": [
  4751. "laminas",
  4752. "stdlib"
  4753. ],
  4754. "support": {
  4755. "chat": "https://laminas.dev/chat",
  4756. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4757. "forum": "https://discourse.laminas.dev",
  4758. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4759. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4760. "source": "https://github.com/laminas/laminas-stdlib"
  4761. },
  4762. "funding": [
  4763. {
  4764. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4765. "type": "community_bridge"
  4766. }
  4767. ],
  4768. "time": "2024-01-19T12:39:49+00:00"
  4769. },
  4770. {
  4771. "name": "lcobucci/clock",
  4772. "version": "2.3.0",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/lcobucci/clock.git",
  4776. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  4781. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": "~8.1.0 || ~8.2.0",
  4786. "stella-maris/clock": "^0.1.7"
  4787. },
  4788. "provide": {
  4789. "psr/clock-implementation": "1.0"
  4790. },
  4791. "require-dev": {
  4792. "infection/infection": "^0.26",
  4793. "lcobucci/coding-standard": "^9.0",
  4794. "phpstan/extension-installer": "^1.2",
  4795. "phpstan/phpstan": "^1.9.4",
  4796. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  4797. "phpstan/phpstan-phpunit": "^1.3.2",
  4798. "phpstan/phpstan-strict-rules": "^1.4.4",
  4799. "phpunit/phpunit": "^9.5.27"
  4800. },
  4801. "type": "library",
  4802. "autoload": {
  4803. "psr-4": {
  4804. "Lcobucci\\Clock\\": "src"
  4805. }
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "Luís Cobucci",
  4814. "email": "lcobucci@gmail.com"
  4815. }
  4816. ],
  4817. "description": "Yet another clock abstraction",
  4818. "support": {
  4819. "issues": "https://github.com/lcobucci/clock/issues",
  4820. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  4821. },
  4822. "funding": [
  4823. {
  4824. "url": "https://github.com/lcobucci",
  4825. "type": "github"
  4826. },
  4827. {
  4828. "url": "https://www.patreon.com/lcobucci",
  4829. "type": "patreon"
  4830. }
  4831. ],
  4832. "time": "2022-12-19T14:38:11+00:00"
  4833. },
  4834. {
  4835. "name": "lcobucci/jwt",
  4836. "version": "4.1.5",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/lcobucci/jwt.git",
  4840. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  4845. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  4846. "shasum": ""
  4847. },
  4848. "require": {
  4849. "ext-hash": "*",
  4850. "ext-json": "*",
  4851. "ext-mbstring": "*",
  4852. "ext-openssl": "*",
  4853. "ext-sodium": "*",
  4854. "lcobucci/clock": "^2.0",
  4855. "php": "^7.4 || ^8.0"
  4856. },
  4857. "require-dev": {
  4858. "infection/infection": "^0.21",
  4859. "lcobucci/coding-standard": "^6.0",
  4860. "mikey179/vfsstream": "^1.6.7",
  4861. "phpbench/phpbench": "^1.0",
  4862. "phpstan/extension-installer": "^1.0",
  4863. "phpstan/phpstan": "^0.12",
  4864. "phpstan/phpstan-deprecation-rules": "^0.12",
  4865. "phpstan/phpstan-phpunit": "^0.12",
  4866. "phpstan/phpstan-strict-rules": "^0.12",
  4867. "phpunit/php-invoker": "^3.1",
  4868. "phpunit/phpunit": "^9.5"
  4869. },
  4870. "type": "library",
  4871. "autoload": {
  4872. "psr-4": {
  4873. "Lcobucci\\JWT\\": "src"
  4874. }
  4875. },
  4876. "notification-url": "https://packagist.org/downloads/",
  4877. "license": [
  4878. "BSD-3-Clause"
  4879. ],
  4880. "authors": [
  4881. {
  4882. "name": "Luís Cobucci",
  4883. "email": "lcobucci@gmail.com",
  4884. "role": "Developer"
  4885. }
  4886. ],
  4887. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  4888. "keywords": [
  4889. "JWS",
  4890. "jwt"
  4891. ],
  4892. "support": {
  4893. "issues": "https://github.com/lcobucci/jwt/issues",
  4894. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  4895. },
  4896. "funding": [
  4897. {
  4898. "url": "https://github.com/lcobucci",
  4899. "type": "github"
  4900. },
  4901. {
  4902. "url": "https://www.patreon.com/lcobucci",
  4903. "type": "patreon"
  4904. }
  4905. ],
  4906. "time": "2021-09-28T19:34:56+00:00"
  4907. },
  4908. {
  4909. "name": "markrogoyski/math-php",
  4910. "version": "v2.10.0",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/markrogoyski/math-php.git",
  4914. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4919. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4920. "shasum": ""
  4921. },
  4922. "require": {
  4923. "ext-json": "*",
  4924. "php": ">=7.2.0"
  4925. },
  4926. "require-dev": {
  4927. "php-coveralls/php-coveralls": "^2.0",
  4928. "php-parallel-lint/php-parallel-lint": "^1.2",
  4929. "phploc/phploc": "*",
  4930. "phpmd/phpmd": "^2.6",
  4931. "phpstan/phpstan": "^1.10",
  4932. "phpunit/phpunit": "^8.5",
  4933. "squizlabs/php_codesniffer": "3.*"
  4934. },
  4935. "type": "library",
  4936. "autoload": {
  4937. "psr-4": {
  4938. "MathPHP\\": "src/"
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Mark Rogoyski",
  4948. "email": "mark@rogoyski.com",
  4949. "homepage": "https://github.com/markrogoyski",
  4950. "role": "Lead developer"
  4951. },
  4952. {
  4953. "name": "Kevin Nowaczyk",
  4954. "homepage": "https://github.com/Beakerboy",
  4955. "role": "Developer"
  4956. },
  4957. {
  4958. "name": "MathPHP Community of Contributors",
  4959. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4960. }
  4961. ],
  4962. "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",
  4963. "homepage": "https://github.com/markrogoyski/math-php/",
  4964. "keywords": [
  4965. "algebra",
  4966. "combinatorics",
  4967. "distributions",
  4968. "linear algebra",
  4969. "math",
  4970. "mathematics",
  4971. "matrix",
  4972. "numerical analysis",
  4973. "probability",
  4974. "regressions",
  4975. "statistics"
  4976. ],
  4977. "support": {
  4978. "issues": "https://github.com/markrogoyski/math-php/issues",
  4979. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4980. },
  4981. "time": "2024-04-17T00:09:51+00:00"
  4982. },
  4983. {
  4984. "name": "monolog/monolog",
  4985. "version": "3.6.0",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/Seldaek/monolog.git",
  4989. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4994. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4995. "shasum": ""
  4996. },
  4997. "require": {
  4998. "php": ">=8.1",
  4999. "psr/log": "^2.0 || ^3.0"
  5000. },
  5001. "provide": {
  5002. "psr/log-implementation": "3.0.0"
  5003. },
  5004. "require-dev": {
  5005. "aws/aws-sdk-php": "^3.0",
  5006. "doctrine/couchdb": "~1.0@dev",
  5007. "elasticsearch/elasticsearch": "^7 || ^8",
  5008. "ext-json": "*",
  5009. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5010. "guzzlehttp/guzzle": "^7.4.5",
  5011. "guzzlehttp/psr7": "^2.2",
  5012. "mongodb/mongodb": "^1.8",
  5013. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5014. "phpstan/phpstan": "^1.9",
  5015. "phpstan/phpstan-deprecation-rules": "^1.0",
  5016. "phpstan/phpstan-strict-rules": "^1.4",
  5017. "phpunit/phpunit": "^10.5.17",
  5018. "predis/predis": "^1.1 || ^2",
  5019. "ruflin/elastica": "^7",
  5020. "symfony/mailer": "^5.4 || ^6",
  5021. "symfony/mime": "^5.4 || ^6"
  5022. },
  5023. "suggest": {
  5024. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5025. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5026. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5027. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5028. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5029. "ext-mbstring": "Allow to work properly with unicode symbols",
  5030. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5031. "ext-openssl": "Required to send log messages using SSL",
  5032. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5033. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5034. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5035. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5036. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5037. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5038. },
  5039. "type": "library",
  5040. "extra": {
  5041. "branch-alias": {
  5042. "dev-main": "3.x-dev"
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Monolog\\": "src/Monolog"
  5048. }
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Jordi Boggiano",
  5057. "email": "j.boggiano@seld.be",
  5058. "homepage": "https://seld.be"
  5059. }
  5060. ],
  5061. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5062. "homepage": "https://github.com/Seldaek/monolog",
  5063. "keywords": [
  5064. "log",
  5065. "logging",
  5066. "psr-3"
  5067. ],
  5068. "support": {
  5069. "issues": "https://github.com/Seldaek/monolog/issues",
  5070. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  5071. },
  5072. "funding": [
  5073. {
  5074. "url": "https://github.com/Seldaek",
  5075. "type": "github"
  5076. },
  5077. {
  5078. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5079. "type": "tidelift"
  5080. }
  5081. ],
  5082. "time": "2024-04-12T21:02:21+00:00"
  5083. },
  5084. {
  5085. "name": "nesbot/carbon",
  5086. "version": "2.72.5",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/briannesbitt/Carbon.git",
  5090. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5095. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "carbonphp/carbon-doctrine-types": "*",
  5100. "ext-json": "*",
  5101. "php": "^7.1.8 || ^8.0",
  5102. "psr/clock": "^1.0",
  5103. "symfony/polyfill-mbstring": "^1.0",
  5104. "symfony/polyfill-php80": "^1.16",
  5105. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5106. },
  5107. "provide": {
  5108. "psr/clock-implementation": "1.0"
  5109. },
  5110. "require-dev": {
  5111. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5112. "doctrine/orm": "^2.7 || ^3.0",
  5113. "friendsofphp/php-cs-fixer": "^3.0",
  5114. "kylekatarnls/multi-tester": "^2.0",
  5115. "ondrejmirtes/better-reflection": "*",
  5116. "phpmd/phpmd": "^2.9",
  5117. "phpstan/extension-installer": "^1.0",
  5118. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5119. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5120. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5121. "squizlabs/php_codesniffer": "^3.4"
  5122. },
  5123. "bin": [
  5124. "bin/carbon"
  5125. ],
  5126. "type": "library",
  5127. "extra": {
  5128. "branch-alias": {
  5129. "dev-master": "3.x-dev",
  5130. "dev-2.x": "2.x-dev"
  5131. },
  5132. "laravel": {
  5133. "providers": [
  5134. "Carbon\\Laravel\\ServiceProvider"
  5135. ]
  5136. },
  5137. "phpstan": {
  5138. "includes": [
  5139. "extension.neon"
  5140. ]
  5141. }
  5142. },
  5143. "autoload": {
  5144. "psr-4": {
  5145. "Carbon\\": "src/Carbon/"
  5146. }
  5147. },
  5148. "notification-url": "https://packagist.org/downloads/",
  5149. "license": [
  5150. "MIT"
  5151. ],
  5152. "authors": [
  5153. {
  5154. "name": "Brian Nesbitt",
  5155. "email": "brian@nesbot.com",
  5156. "homepage": "https://markido.com"
  5157. },
  5158. {
  5159. "name": "kylekatarnls",
  5160. "homepage": "https://github.com/kylekatarnls"
  5161. }
  5162. ],
  5163. "description": "An API extension for DateTime that supports 281 different languages.",
  5164. "homepage": "https://carbon.nesbot.com",
  5165. "keywords": [
  5166. "date",
  5167. "datetime",
  5168. "time"
  5169. ],
  5170. "support": {
  5171. "docs": "https://carbon.nesbot.com/docs",
  5172. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5173. "source": "https://github.com/briannesbitt/Carbon"
  5174. },
  5175. "funding": [
  5176. {
  5177. "url": "https://github.com/sponsors/kylekatarnls",
  5178. "type": "github"
  5179. },
  5180. {
  5181. "url": "https://opencollective.com/Carbon#sponsor",
  5182. "type": "opencollective"
  5183. },
  5184. {
  5185. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5186. "type": "tidelift"
  5187. }
  5188. ],
  5189. "time": "2024-06-03T19:18:41+00:00"
  5190. },
  5191. {
  5192. "name": "nikic/fast-route",
  5193. "version": "v1.3.0",
  5194. "source": {
  5195. "type": "git",
  5196. "url": "https://github.com/nikic/FastRoute.git",
  5197. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5198. },
  5199. "dist": {
  5200. "type": "zip",
  5201. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5202. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5203. "shasum": ""
  5204. },
  5205. "require": {
  5206. "php": ">=5.4.0"
  5207. },
  5208. "require-dev": {
  5209. "phpunit/phpunit": "^4.8.35|~5.7"
  5210. },
  5211. "type": "library",
  5212. "autoload": {
  5213. "files": [
  5214. "src/functions.php"
  5215. ],
  5216. "psr-4": {
  5217. "FastRoute\\": "src/"
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "BSD-3-Clause"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Nikita Popov",
  5227. "email": "nikic@php.net"
  5228. }
  5229. ],
  5230. "description": "Fast request router for PHP",
  5231. "keywords": [
  5232. "router",
  5233. "routing"
  5234. ],
  5235. "support": {
  5236. "issues": "https://github.com/nikic/FastRoute/issues",
  5237. "source": "https://github.com/nikic/FastRoute/tree/master"
  5238. },
  5239. "time": "2018-02-13T20:26:39+00:00"
  5240. },
  5241. {
  5242. "name": "nikic/php-parser",
  5243. "version": "v4.19.1",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/nikic/PHP-Parser.git",
  5247. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5252. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5253. "shasum": ""
  5254. },
  5255. "require": {
  5256. "ext-tokenizer": "*",
  5257. "php": ">=7.1"
  5258. },
  5259. "require-dev": {
  5260. "ircmaxell/php-yacc": "^0.0.7",
  5261. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5262. },
  5263. "bin": [
  5264. "bin/php-parse"
  5265. ],
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-master": "4.9-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "psr-4": {
  5274. "PhpParser\\": "lib/PhpParser"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "BSD-3-Clause"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Nikita Popov"
  5284. }
  5285. ],
  5286. "description": "A PHP parser written in PHP",
  5287. "keywords": [
  5288. "parser",
  5289. "php"
  5290. ],
  5291. "support": {
  5292. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5293. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5294. },
  5295. "time": "2024-03-17T08:10:35+00:00"
  5296. },
  5297. {
  5298. "name": "php-di/phpdoc-reader",
  5299. "version": "2.2.1",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5303. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5308. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5309. "shasum": ""
  5310. },
  5311. "require": {
  5312. "php": ">=7.2.0"
  5313. },
  5314. "require-dev": {
  5315. "mnapoli/hard-mode": "~0.3.0",
  5316. "phpunit/phpunit": "^8.5|^9.0"
  5317. },
  5318. "type": "library",
  5319. "autoload": {
  5320. "psr-4": {
  5321. "PhpDocReader\\": "src/PhpDocReader"
  5322. }
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5329. "keywords": [
  5330. "phpdoc",
  5331. "reflection"
  5332. ],
  5333. "support": {
  5334. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5335. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5336. },
  5337. "time": "2020-10-12T12:39:22+00:00"
  5338. },
  5339. {
  5340. "name": "phper666/jwt-auth",
  5341. "version": "v4.0.11",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/phper666/jwt-auth.git",
  5345. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5350. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "ext-swoole": ">=4.4",
  5355. "lcobucci/jwt": "4.1.5",
  5356. "nesbot/carbon": "^1.0 || ^2.0",
  5357. "php": ">=7.4"
  5358. },
  5359. "suggest": {
  5360. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5361. "hyperf/command": "required hyperf/command ~2.2.0",
  5362. "hyperf/config": "required hyperf/config ~2.2.0",
  5363. "hyperf/di": "required hyperf/di ~2.2.0"
  5364. },
  5365. "type": "library",
  5366. "extra": {
  5367. "hyperf": {
  5368. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5369. }
  5370. },
  5371. "autoload": {
  5372. "files": [
  5373. "src/Functions.php"
  5374. ],
  5375. "psr-4": {
  5376. "Phper666\\JWTAuth\\": "src/"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Li Yuzhao",
  5386. "email": "562405704@qq.com",
  5387. "homepage": "https://github.com/phper666/jwt-auth",
  5388. "role": "Developer"
  5389. }
  5390. ],
  5391. "description": "jwt-auth Component",
  5392. "keywords": [
  5393. "hyperf",
  5394. "php"
  5395. ],
  5396. "support": {
  5397. "issues": "https://github.com/phper666/jwt-auth/issues",
  5398. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5399. },
  5400. "time": "2024-02-02T13:24:54+00:00"
  5401. },
  5402. {
  5403. "name": "phpoption/phpoption",
  5404. "version": "1.9.2",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://github.com/schmittjoh/php-option.git",
  5408. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5413. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5414. "shasum": ""
  5415. },
  5416. "require": {
  5417. "php": "^7.2.5 || ^8.0"
  5418. },
  5419. "require-dev": {
  5420. "bamarni/composer-bin-plugin": "^1.8.2",
  5421. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "bamarni-bin": {
  5426. "bin-links": true,
  5427. "forward-command": true
  5428. },
  5429. "branch-alias": {
  5430. "dev-master": "1.9-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "PhpOption\\": "src/PhpOption/"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "Apache-2.0"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Johannes M. Schmitt",
  5445. "email": "schmittjoh@gmail.com",
  5446. "homepage": "https://github.com/schmittjoh"
  5447. },
  5448. {
  5449. "name": "Graham Campbell",
  5450. "email": "hello@gjcampbell.co.uk",
  5451. "homepage": "https://github.com/GrahamCampbell"
  5452. }
  5453. ],
  5454. "description": "Option Type for PHP",
  5455. "keywords": [
  5456. "language",
  5457. "option",
  5458. "php",
  5459. "type"
  5460. ],
  5461. "support": {
  5462. "issues": "https://github.com/schmittjoh/php-option/issues",
  5463. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5464. },
  5465. "funding": [
  5466. {
  5467. "url": "https://github.com/GrahamCampbell",
  5468. "type": "github"
  5469. },
  5470. {
  5471. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5472. "type": "tidelift"
  5473. }
  5474. ],
  5475. "time": "2023-11-12T21:59:55+00:00"
  5476. },
  5477. {
  5478. "name": "psr/cache",
  5479. "version": "3.0.0",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/php-fig/cache.git",
  5483. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5488. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": ">=8.0.0"
  5493. },
  5494. "type": "library",
  5495. "extra": {
  5496. "branch-alias": {
  5497. "dev-master": "1.0.x-dev"
  5498. }
  5499. },
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Psr\\Cache\\": "src/"
  5503. }
  5504. },
  5505. "notification-url": "https://packagist.org/downloads/",
  5506. "license": [
  5507. "MIT"
  5508. ],
  5509. "authors": [
  5510. {
  5511. "name": "PHP-FIG",
  5512. "homepage": "https://www.php-fig.org/"
  5513. }
  5514. ],
  5515. "description": "Common interface for caching libraries",
  5516. "keywords": [
  5517. "cache",
  5518. "psr",
  5519. "psr-6"
  5520. ],
  5521. "support": {
  5522. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5523. },
  5524. "time": "2021-02-03T23:26:27+00:00"
  5525. },
  5526. {
  5527. "name": "psr/clock",
  5528. "version": "1.0.0",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/php-fig/clock.git",
  5532. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5537. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "php": "^7.0 || ^8.0"
  5542. },
  5543. "type": "library",
  5544. "autoload": {
  5545. "psr-4": {
  5546. "Psr\\Clock\\": "src/"
  5547. }
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "PHP-FIG",
  5556. "homepage": "https://www.php-fig.org/"
  5557. }
  5558. ],
  5559. "description": "Common interface for reading the clock.",
  5560. "homepage": "https://github.com/php-fig/clock",
  5561. "keywords": [
  5562. "clock",
  5563. "now",
  5564. "psr",
  5565. "psr-20",
  5566. "time"
  5567. ],
  5568. "support": {
  5569. "issues": "https://github.com/php-fig/clock/issues",
  5570. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5571. },
  5572. "time": "2022-11-25T14:36:26+00:00"
  5573. },
  5574. {
  5575. "name": "psr/container",
  5576. "version": "2.0.2",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://github.com/php-fig/container.git",
  5580. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5585. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5586. "shasum": ""
  5587. },
  5588. "require": {
  5589. "php": ">=7.4.0"
  5590. },
  5591. "type": "library",
  5592. "extra": {
  5593. "branch-alias": {
  5594. "dev-master": "2.0.x-dev"
  5595. }
  5596. },
  5597. "autoload": {
  5598. "psr-4": {
  5599. "Psr\\Container\\": "src/"
  5600. }
  5601. },
  5602. "notification-url": "https://packagist.org/downloads/",
  5603. "license": [
  5604. "MIT"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "PHP-FIG",
  5609. "homepage": "https://www.php-fig.org/"
  5610. }
  5611. ],
  5612. "description": "Common Container Interface (PHP FIG PSR-11)",
  5613. "homepage": "https://github.com/php-fig/container",
  5614. "keywords": [
  5615. "PSR-11",
  5616. "container",
  5617. "container-interface",
  5618. "container-interop",
  5619. "psr"
  5620. ],
  5621. "support": {
  5622. "issues": "https://github.com/php-fig/container/issues",
  5623. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5624. },
  5625. "time": "2021-11-05T16:47:00+00:00"
  5626. },
  5627. {
  5628. "name": "psr/event-dispatcher",
  5629. "version": "1.0.0",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/php-fig/event-dispatcher.git",
  5633. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5638. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": ">=7.2.0"
  5643. },
  5644. "type": "library",
  5645. "extra": {
  5646. "branch-alias": {
  5647. "dev-master": "1.0.x-dev"
  5648. }
  5649. },
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Psr\\EventDispatcher\\": "src/"
  5653. }
  5654. },
  5655. "notification-url": "https://packagist.org/downloads/",
  5656. "license": [
  5657. "MIT"
  5658. ],
  5659. "authors": [
  5660. {
  5661. "name": "PHP-FIG",
  5662. "homepage": "http://www.php-fig.org/"
  5663. }
  5664. ],
  5665. "description": "Standard interfaces for event handling.",
  5666. "keywords": [
  5667. "events",
  5668. "psr",
  5669. "psr-14"
  5670. ],
  5671. "support": {
  5672. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5673. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5674. },
  5675. "time": "2019-01-08T18:20:26+00:00"
  5676. },
  5677. {
  5678. "name": "psr/http-client",
  5679. "version": "1.0.3",
  5680. "source": {
  5681. "type": "git",
  5682. "url": "https://github.com/php-fig/http-client.git",
  5683. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5684. },
  5685. "dist": {
  5686. "type": "zip",
  5687. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5688. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5689. "shasum": ""
  5690. },
  5691. "require": {
  5692. "php": "^7.0 || ^8.0",
  5693. "psr/http-message": "^1.0 || ^2.0"
  5694. },
  5695. "type": "library",
  5696. "extra": {
  5697. "branch-alias": {
  5698. "dev-master": "1.0.x-dev"
  5699. }
  5700. },
  5701. "autoload": {
  5702. "psr-4": {
  5703. "Psr\\Http\\Client\\": "src/"
  5704. }
  5705. },
  5706. "notification-url": "https://packagist.org/downloads/",
  5707. "license": [
  5708. "MIT"
  5709. ],
  5710. "authors": [
  5711. {
  5712. "name": "PHP-FIG",
  5713. "homepage": "https://www.php-fig.org/"
  5714. }
  5715. ],
  5716. "description": "Common interface for HTTP clients",
  5717. "homepage": "https://github.com/php-fig/http-client",
  5718. "keywords": [
  5719. "http",
  5720. "http-client",
  5721. "psr",
  5722. "psr-18"
  5723. ],
  5724. "support": {
  5725. "source": "https://github.com/php-fig/http-client"
  5726. },
  5727. "time": "2023-09-23T14:17:50+00:00"
  5728. },
  5729. {
  5730. "name": "psr/http-factory",
  5731. "version": "1.1.0",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://github.com/php-fig/http-factory.git",
  5735. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5740. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5741. "shasum": ""
  5742. },
  5743. "require": {
  5744. "php": ">=7.1",
  5745. "psr/http-message": "^1.0 || ^2.0"
  5746. },
  5747. "type": "library",
  5748. "extra": {
  5749. "branch-alias": {
  5750. "dev-master": "1.0.x-dev"
  5751. }
  5752. },
  5753. "autoload": {
  5754. "psr-4": {
  5755. "Psr\\Http\\Message\\": "src/"
  5756. }
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "PHP-FIG",
  5765. "homepage": "https://www.php-fig.org/"
  5766. }
  5767. ],
  5768. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5769. "keywords": [
  5770. "factory",
  5771. "http",
  5772. "message",
  5773. "psr",
  5774. "psr-17",
  5775. "psr-7",
  5776. "request",
  5777. "response"
  5778. ],
  5779. "support": {
  5780. "source": "https://github.com/php-fig/http-factory"
  5781. },
  5782. "time": "2024-04-15T12:06:14+00:00"
  5783. },
  5784. {
  5785. "name": "psr/http-message",
  5786. "version": "2.0",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/php-fig/http-message.git",
  5790. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5795. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5796. "shasum": ""
  5797. },
  5798. "require": {
  5799. "php": "^7.2 || ^8.0"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-master": "2.0.x-dev"
  5805. }
  5806. },
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Psr\\Http\\Message\\": "src/"
  5810. }
  5811. },
  5812. "notification-url": "https://packagist.org/downloads/",
  5813. "license": [
  5814. "MIT"
  5815. ],
  5816. "authors": [
  5817. {
  5818. "name": "PHP-FIG",
  5819. "homepage": "https://www.php-fig.org/"
  5820. }
  5821. ],
  5822. "description": "Common interface for HTTP messages",
  5823. "homepage": "https://github.com/php-fig/http-message",
  5824. "keywords": [
  5825. "http",
  5826. "http-message",
  5827. "psr",
  5828. "psr-7",
  5829. "request",
  5830. "response"
  5831. ],
  5832. "support": {
  5833. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5834. },
  5835. "time": "2023-04-04T09:54:51+00:00"
  5836. },
  5837. {
  5838. "name": "psr/http-server-handler",
  5839. "version": "1.0.2",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/php-fig/http-server-handler.git",
  5843. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5848. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "php": ">=7.0",
  5853. "psr/http-message": "^1.0 || ^2.0"
  5854. },
  5855. "type": "library",
  5856. "extra": {
  5857. "branch-alias": {
  5858. "dev-master": "1.0.x-dev"
  5859. }
  5860. },
  5861. "autoload": {
  5862. "psr-4": {
  5863. "Psr\\Http\\Server\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "PHP-FIG",
  5873. "homepage": "https://www.php-fig.org/"
  5874. }
  5875. ],
  5876. "description": "Common interface for HTTP server-side request handler",
  5877. "keywords": [
  5878. "handler",
  5879. "http",
  5880. "http-interop",
  5881. "psr",
  5882. "psr-15",
  5883. "psr-7",
  5884. "request",
  5885. "response",
  5886. "server"
  5887. ],
  5888. "support": {
  5889. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5890. },
  5891. "time": "2023-04-10T20:06:20+00:00"
  5892. },
  5893. {
  5894. "name": "psr/http-server-middleware",
  5895. "version": "1.0.2",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/php-fig/http-server-middleware.git",
  5899. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5904. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=7.0",
  5909. "psr/http-message": "^1.0 || ^2.0",
  5910. "psr/http-server-handler": "^1.0"
  5911. },
  5912. "type": "library",
  5913. "extra": {
  5914. "branch-alias": {
  5915. "dev-master": "1.0.x-dev"
  5916. }
  5917. },
  5918. "autoload": {
  5919. "psr-4": {
  5920. "Psr\\Http\\Server\\": "src/"
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "PHP-FIG",
  5930. "homepage": "https://www.php-fig.org/"
  5931. }
  5932. ],
  5933. "description": "Common interface for HTTP server-side middleware",
  5934. "keywords": [
  5935. "http",
  5936. "http-interop",
  5937. "middleware",
  5938. "psr",
  5939. "psr-15",
  5940. "psr-7",
  5941. "request",
  5942. "response"
  5943. ],
  5944. "support": {
  5945. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5946. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5947. },
  5948. "time": "2023-04-11T06:14:47+00:00"
  5949. },
  5950. {
  5951. "name": "psr/log",
  5952. "version": "3.0.0",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/php-fig/log.git",
  5956. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5961. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5962. "shasum": ""
  5963. },
  5964. "require": {
  5965. "php": ">=8.0.0"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "3.x-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "psr-4": {
  5975. "Psr\\Log\\": "src"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "PHP-FIG",
  5985. "homepage": "https://www.php-fig.org/"
  5986. }
  5987. ],
  5988. "description": "Common interface for logging libraries",
  5989. "homepage": "https://github.com/php-fig/log",
  5990. "keywords": [
  5991. "log",
  5992. "psr",
  5993. "psr-3"
  5994. ],
  5995. "support": {
  5996. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5997. },
  5998. "time": "2021-07-14T16:46:02+00:00"
  5999. },
  6000. {
  6001. "name": "psr/simple-cache",
  6002. "version": "3.0.0",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/php-fig/simple-cache.git",
  6006. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6011. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "php": ">=8.0.0"
  6016. },
  6017. "type": "library",
  6018. "extra": {
  6019. "branch-alias": {
  6020. "dev-master": "3.0.x-dev"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Psr\\SimpleCache\\": "src/"
  6026. }
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "PHP-FIG",
  6035. "homepage": "https://www.php-fig.org/"
  6036. }
  6037. ],
  6038. "description": "Common interfaces for simple caching",
  6039. "keywords": [
  6040. "cache",
  6041. "caching",
  6042. "psr",
  6043. "psr-16",
  6044. "simple-cache"
  6045. ],
  6046. "support": {
  6047. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6048. },
  6049. "time": "2021-10-29T13:26:27+00:00"
  6050. },
  6051. {
  6052. "name": "ralouphie/getallheaders",
  6053. "version": "3.0.3",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/ralouphie/getallheaders.git",
  6057. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6062. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6063. "shasum": ""
  6064. },
  6065. "require": {
  6066. "php": ">=5.6"
  6067. },
  6068. "require-dev": {
  6069. "php-coveralls/php-coveralls": "^2.1",
  6070. "phpunit/phpunit": "^5 || ^6.5"
  6071. },
  6072. "type": "library",
  6073. "autoload": {
  6074. "files": [
  6075. "src/getallheaders.php"
  6076. ]
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "MIT"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "Ralph Khattar",
  6085. "email": "ralph.khattar@gmail.com"
  6086. }
  6087. ],
  6088. "description": "A polyfill for getallheaders.",
  6089. "support": {
  6090. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6091. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6092. },
  6093. "time": "2019-03-08T08:55:37+00:00"
  6094. },
  6095. {
  6096. "name": "stella-maris/clock",
  6097. "version": "0.1.7",
  6098. "source": {
  6099. "type": "git",
  6100. "url": "https://github.com/stella-maris-solutions/clock.git",
  6101. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6102. },
  6103. "dist": {
  6104. "type": "zip",
  6105. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6106. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6107. "shasum": ""
  6108. },
  6109. "require": {
  6110. "php": "^7.0|^8.0",
  6111. "psr/clock": "^1.0"
  6112. },
  6113. "type": "library",
  6114. "autoload": {
  6115. "psr-4": {
  6116. "StellaMaris\\Clock\\": "src"
  6117. }
  6118. },
  6119. "notification-url": "https://packagist.org/downloads/",
  6120. "license": [
  6121. "MIT"
  6122. ],
  6123. "authors": [
  6124. {
  6125. "name": "Andreas Heigl",
  6126. "role": "Maintainer"
  6127. }
  6128. ],
  6129. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6130. "homepage": "https://gitlab.com/stella-maris/clock",
  6131. "keywords": [
  6132. "clock",
  6133. "datetime",
  6134. "point in time",
  6135. "psr20"
  6136. ],
  6137. "support": {
  6138. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6139. },
  6140. "time": "2022-11-25T16:15:06+00:00"
  6141. },
  6142. {
  6143. "name": "swow/psr7-plus",
  6144. "version": "v1.1.2",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/swow/psr7-plus.git",
  6148. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6153. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": ">=8.0",
  6158. "psr/http-client": "^1.0",
  6159. "psr/http-factory": "^1.0",
  6160. "psr/http-message": "^1.1|^2.0"
  6161. },
  6162. "type": "library",
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Swow\\Psr7\\Message\\": "src/Message/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "Apache-2.0"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "twose",
  6175. "email": "twosee@php.net"
  6176. }
  6177. ],
  6178. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6179. "keywords": [
  6180. "http",
  6181. "psr17",
  6182. "psr7",
  6183. "swow",
  6184. "websocket"
  6185. ],
  6186. "support": {
  6187. "issues": "https://github.com/swow/swow",
  6188. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6189. },
  6190. "time": "2023-06-15T09:18:11+00:00"
  6191. },
  6192. {
  6193. "name": "symfony/console",
  6194. "version": "v6.4.8",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/symfony/console.git",
  6198. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6203. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "php": ">=8.1",
  6208. "symfony/deprecation-contracts": "^2.5|^3",
  6209. "symfony/polyfill-mbstring": "~1.0",
  6210. "symfony/service-contracts": "^2.5|^3",
  6211. "symfony/string": "^5.4|^6.0|^7.0"
  6212. },
  6213. "conflict": {
  6214. "symfony/dependency-injection": "<5.4",
  6215. "symfony/dotenv": "<5.4",
  6216. "symfony/event-dispatcher": "<5.4",
  6217. "symfony/lock": "<5.4",
  6218. "symfony/process": "<5.4"
  6219. },
  6220. "provide": {
  6221. "psr/log-implementation": "1.0|2.0|3.0"
  6222. },
  6223. "require-dev": {
  6224. "psr/log": "^1|^2|^3",
  6225. "symfony/config": "^5.4|^6.0|^7.0",
  6226. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6227. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6228. "symfony/http-foundation": "^6.4|^7.0",
  6229. "symfony/http-kernel": "^6.4|^7.0",
  6230. "symfony/lock": "^5.4|^6.0|^7.0",
  6231. "symfony/messenger": "^5.4|^6.0|^7.0",
  6232. "symfony/process": "^5.4|^6.0|^7.0",
  6233. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6234. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6235. },
  6236. "type": "library",
  6237. "autoload": {
  6238. "psr-4": {
  6239. "Symfony\\Component\\Console\\": ""
  6240. },
  6241. "exclude-from-classmap": [
  6242. "/Tests/"
  6243. ]
  6244. },
  6245. "notification-url": "https://packagist.org/downloads/",
  6246. "license": [
  6247. "MIT"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "Fabien Potencier",
  6252. "email": "fabien@symfony.com"
  6253. },
  6254. {
  6255. "name": "Symfony Community",
  6256. "homepage": "https://symfony.com/contributors"
  6257. }
  6258. ],
  6259. "description": "Eases the creation of beautiful and testable command line interfaces",
  6260. "homepage": "https://symfony.com",
  6261. "keywords": [
  6262. "cli",
  6263. "command-line",
  6264. "console",
  6265. "terminal"
  6266. ],
  6267. "support": {
  6268. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6269. },
  6270. "funding": [
  6271. {
  6272. "url": "https://symfony.com/sponsor",
  6273. "type": "custom"
  6274. },
  6275. {
  6276. "url": "https://github.com/fabpot",
  6277. "type": "github"
  6278. },
  6279. {
  6280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6281. "type": "tidelift"
  6282. }
  6283. ],
  6284. "time": "2024-05-31T14:49:08+00:00"
  6285. },
  6286. {
  6287. "name": "symfony/deprecation-contracts",
  6288. "version": "v3.5.0",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/symfony/deprecation-contracts.git",
  6292. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6297. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "php": ">=8.1"
  6302. },
  6303. "type": "library",
  6304. "extra": {
  6305. "branch-alias": {
  6306. "dev-main": "3.5-dev"
  6307. },
  6308. "thanks": {
  6309. "name": "symfony/contracts",
  6310. "url": "https://github.com/symfony/contracts"
  6311. }
  6312. },
  6313. "autoload": {
  6314. "files": [
  6315. "function.php"
  6316. ]
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Nicolas Grekas",
  6325. "email": "p@tchwork.com"
  6326. },
  6327. {
  6328. "name": "Symfony Community",
  6329. "homepage": "https://symfony.com/contributors"
  6330. }
  6331. ],
  6332. "description": "A generic function and convention to trigger deprecation notices",
  6333. "homepage": "https://symfony.com",
  6334. "support": {
  6335. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6336. },
  6337. "funding": [
  6338. {
  6339. "url": "https://symfony.com/sponsor",
  6340. "type": "custom"
  6341. },
  6342. {
  6343. "url": "https://github.com/fabpot",
  6344. "type": "github"
  6345. },
  6346. {
  6347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6348. "type": "tidelift"
  6349. }
  6350. ],
  6351. "time": "2024-04-18T09:32:20+00:00"
  6352. },
  6353. {
  6354. "name": "symfony/finder",
  6355. "version": "v6.4.8",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/symfony/finder.git",
  6359. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6364. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "php": ">=8.1"
  6369. },
  6370. "require-dev": {
  6371. "symfony/filesystem": "^6.0|^7.0"
  6372. },
  6373. "type": "library",
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Component\\Finder\\": ""
  6377. },
  6378. "exclude-from-classmap": [
  6379. "/Tests/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Fabien Potencier",
  6389. "email": "fabien@symfony.com"
  6390. },
  6391. {
  6392. "name": "Symfony Community",
  6393. "homepage": "https://symfony.com/contributors"
  6394. }
  6395. ],
  6396. "description": "Finds files and directories via an intuitive fluent interface",
  6397. "homepage": "https://symfony.com",
  6398. "support": {
  6399. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6400. },
  6401. "funding": [
  6402. {
  6403. "url": "https://symfony.com/sponsor",
  6404. "type": "custom"
  6405. },
  6406. {
  6407. "url": "https://github.com/fabpot",
  6408. "type": "github"
  6409. },
  6410. {
  6411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6412. "type": "tidelift"
  6413. }
  6414. ],
  6415. "time": "2024-05-31T14:49:08+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/polyfill-ctype",
  6419. "version": "v1.29.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/polyfill-ctype.git",
  6423. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6428. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": ">=7.1"
  6433. },
  6434. "provide": {
  6435. "ext-ctype": "*"
  6436. },
  6437. "suggest": {
  6438. "ext-ctype": "For best performance"
  6439. },
  6440. "type": "library",
  6441. "extra": {
  6442. "thanks": {
  6443. "name": "symfony/polyfill",
  6444. "url": "https://github.com/symfony/polyfill"
  6445. }
  6446. },
  6447. "autoload": {
  6448. "files": [
  6449. "bootstrap.php"
  6450. ],
  6451. "psr-4": {
  6452. "Symfony\\Polyfill\\Ctype\\": ""
  6453. }
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Gert de Pagter",
  6462. "email": "BackEndTea@gmail.com"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Symfony polyfill for ctype functions",
  6470. "homepage": "https://symfony.com",
  6471. "keywords": [
  6472. "compatibility",
  6473. "ctype",
  6474. "polyfill",
  6475. "portable"
  6476. ],
  6477. "support": {
  6478. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6479. },
  6480. "funding": [
  6481. {
  6482. "url": "https://symfony.com/sponsor",
  6483. "type": "custom"
  6484. },
  6485. {
  6486. "url": "https://github.com/fabpot",
  6487. "type": "github"
  6488. },
  6489. {
  6490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6491. "type": "tidelift"
  6492. }
  6493. ],
  6494. "time": "2024-01-29T20:11:03+00:00"
  6495. },
  6496. {
  6497. "name": "symfony/polyfill-intl-grapheme",
  6498. "version": "v1.29.0",
  6499. "source": {
  6500. "type": "git",
  6501. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6502. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6503. },
  6504. "dist": {
  6505. "type": "zip",
  6506. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6507. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6508. "shasum": ""
  6509. },
  6510. "require": {
  6511. "php": ">=7.1"
  6512. },
  6513. "suggest": {
  6514. "ext-intl": "For best performance"
  6515. },
  6516. "type": "library",
  6517. "extra": {
  6518. "thanks": {
  6519. "name": "symfony/polyfill",
  6520. "url": "https://github.com/symfony/polyfill"
  6521. }
  6522. },
  6523. "autoload": {
  6524. "files": [
  6525. "bootstrap.php"
  6526. ],
  6527. "psr-4": {
  6528. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6529. }
  6530. },
  6531. "notification-url": "https://packagist.org/downloads/",
  6532. "license": [
  6533. "MIT"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Nicolas Grekas",
  6538. "email": "p@tchwork.com"
  6539. },
  6540. {
  6541. "name": "Symfony Community",
  6542. "homepage": "https://symfony.com/contributors"
  6543. }
  6544. ],
  6545. "description": "Symfony polyfill for intl's grapheme_* functions",
  6546. "homepage": "https://symfony.com",
  6547. "keywords": [
  6548. "compatibility",
  6549. "grapheme",
  6550. "intl",
  6551. "polyfill",
  6552. "portable",
  6553. "shim"
  6554. ],
  6555. "support": {
  6556. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6557. },
  6558. "funding": [
  6559. {
  6560. "url": "https://symfony.com/sponsor",
  6561. "type": "custom"
  6562. },
  6563. {
  6564. "url": "https://github.com/fabpot",
  6565. "type": "github"
  6566. },
  6567. {
  6568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6569. "type": "tidelift"
  6570. }
  6571. ],
  6572. "time": "2024-01-29T20:11:03+00:00"
  6573. },
  6574. {
  6575. "name": "symfony/polyfill-intl-idn",
  6576. "version": "v1.29.0",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6580. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  6585. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  6586. "shasum": ""
  6587. },
  6588. "require": {
  6589. "php": ">=7.1",
  6590. "symfony/polyfill-intl-normalizer": "^1.10",
  6591. "symfony/polyfill-php72": "^1.10"
  6592. },
  6593. "suggest": {
  6594. "ext-intl": "For best performance"
  6595. },
  6596. "type": "library",
  6597. "extra": {
  6598. "thanks": {
  6599. "name": "symfony/polyfill",
  6600. "url": "https://github.com/symfony/polyfill"
  6601. }
  6602. },
  6603. "autoload": {
  6604. "files": [
  6605. "bootstrap.php"
  6606. ],
  6607. "psr-4": {
  6608. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6609. }
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "license": [
  6613. "MIT"
  6614. ],
  6615. "authors": [
  6616. {
  6617. "name": "Laurent Bassin",
  6618. "email": "laurent@bassin.info"
  6619. },
  6620. {
  6621. "name": "Trevor Rowbotham",
  6622. "email": "trevor.rowbotham@pm.me"
  6623. },
  6624. {
  6625. "name": "Symfony Community",
  6626. "homepage": "https://symfony.com/contributors"
  6627. }
  6628. ],
  6629. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6630. "homepage": "https://symfony.com",
  6631. "keywords": [
  6632. "compatibility",
  6633. "idn",
  6634. "intl",
  6635. "polyfill",
  6636. "portable",
  6637. "shim"
  6638. ],
  6639. "support": {
  6640. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  6641. },
  6642. "funding": [
  6643. {
  6644. "url": "https://symfony.com/sponsor",
  6645. "type": "custom"
  6646. },
  6647. {
  6648. "url": "https://github.com/fabpot",
  6649. "type": "github"
  6650. },
  6651. {
  6652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6653. "type": "tidelift"
  6654. }
  6655. ],
  6656. "time": "2024-01-29T20:11:03+00:00"
  6657. },
  6658. {
  6659. "name": "symfony/polyfill-intl-normalizer",
  6660. "version": "v1.29.0",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6664. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6669. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": ">=7.1"
  6674. },
  6675. "suggest": {
  6676. "ext-intl": "For best performance"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "thanks": {
  6681. "name": "symfony/polyfill",
  6682. "url": "https://github.com/symfony/polyfill"
  6683. }
  6684. },
  6685. "autoload": {
  6686. "files": [
  6687. "bootstrap.php"
  6688. ],
  6689. "psr-4": {
  6690. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6691. },
  6692. "classmap": [
  6693. "Resources/stubs"
  6694. ]
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Nicolas Grekas",
  6703. "email": "p@tchwork.com"
  6704. },
  6705. {
  6706. "name": "Symfony Community",
  6707. "homepage": "https://symfony.com/contributors"
  6708. }
  6709. ],
  6710. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6711. "homepage": "https://symfony.com",
  6712. "keywords": [
  6713. "compatibility",
  6714. "intl",
  6715. "normalizer",
  6716. "polyfill",
  6717. "portable",
  6718. "shim"
  6719. ],
  6720. "support": {
  6721. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6722. },
  6723. "funding": [
  6724. {
  6725. "url": "https://symfony.com/sponsor",
  6726. "type": "custom"
  6727. },
  6728. {
  6729. "url": "https://github.com/fabpot",
  6730. "type": "github"
  6731. },
  6732. {
  6733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6734. "type": "tidelift"
  6735. }
  6736. ],
  6737. "time": "2024-01-29T20:11:03+00:00"
  6738. },
  6739. {
  6740. "name": "symfony/polyfill-mbstring",
  6741. "version": "v1.29.0",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6745. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6746. },
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6750. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6751. "shasum": ""
  6752. },
  6753. "require": {
  6754. "php": ">=7.1"
  6755. },
  6756. "provide": {
  6757. "ext-mbstring": "*"
  6758. },
  6759. "suggest": {
  6760. "ext-mbstring": "For best performance"
  6761. },
  6762. "type": "library",
  6763. "extra": {
  6764. "thanks": {
  6765. "name": "symfony/polyfill",
  6766. "url": "https://github.com/symfony/polyfill"
  6767. }
  6768. },
  6769. "autoload": {
  6770. "files": [
  6771. "bootstrap.php"
  6772. ],
  6773. "psr-4": {
  6774. "Symfony\\Polyfill\\Mbstring\\": ""
  6775. }
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Nicolas Grekas",
  6784. "email": "p@tchwork.com"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Symfony polyfill for the Mbstring extension",
  6792. "homepage": "https://symfony.com",
  6793. "keywords": [
  6794. "compatibility",
  6795. "mbstring",
  6796. "polyfill",
  6797. "portable",
  6798. "shim"
  6799. ],
  6800. "support": {
  6801. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6802. },
  6803. "funding": [
  6804. {
  6805. "url": "https://symfony.com/sponsor",
  6806. "type": "custom"
  6807. },
  6808. {
  6809. "url": "https://github.com/fabpot",
  6810. "type": "github"
  6811. },
  6812. {
  6813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6814. "type": "tidelift"
  6815. }
  6816. ],
  6817. "time": "2024-01-29T20:11:03+00:00"
  6818. },
  6819. {
  6820. "name": "symfony/polyfill-php72",
  6821. "version": "v1.29.0",
  6822. "source": {
  6823. "type": "git",
  6824. "url": "https://github.com/symfony/polyfill-php72.git",
  6825. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  6826. },
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6830. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6831. "shasum": ""
  6832. },
  6833. "require": {
  6834. "php": ">=7.1"
  6835. },
  6836. "type": "library",
  6837. "extra": {
  6838. "thanks": {
  6839. "name": "symfony/polyfill",
  6840. "url": "https://github.com/symfony/polyfill"
  6841. }
  6842. },
  6843. "autoload": {
  6844. "files": [
  6845. "bootstrap.php"
  6846. ],
  6847. "psr-4": {
  6848. "Symfony\\Polyfill\\Php72\\": ""
  6849. }
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Nicolas Grekas",
  6858. "email": "p@tchwork.com"
  6859. },
  6860. {
  6861. "name": "Symfony Community",
  6862. "homepage": "https://symfony.com/contributors"
  6863. }
  6864. ],
  6865. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6866. "homepage": "https://symfony.com",
  6867. "keywords": [
  6868. "compatibility",
  6869. "polyfill",
  6870. "portable",
  6871. "shim"
  6872. ],
  6873. "support": {
  6874. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  6875. },
  6876. "funding": [
  6877. {
  6878. "url": "https://symfony.com/sponsor",
  6879. "type": "custom"
  6880. },
  6881. {
  6882. "url": "https://github.com/fabpot",
  6883. "type": "github"
  6884. },
  6885. {
  6886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6887. "type": "tidelift"
  6888. }
  6889. ],
  6890. "time": "2024-01-29T20:11:03+00:00"
  6891. },
  6892. {
  6893. "name": "symfony/polyfill-php80",
  6894. "version": "v1.29.0",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/symfony/polyfill-php80.git",
  6898. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6903. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=7.1"
  6908. },
  6909. "type": "library",
  6910. "extra": {
  6911. "thanks": {
  6912. "name": "symfony/polyfill",
  6913. "url": "https://github.com/symfony/polyfill"
  6914. }
  6915. },
  6916. "autoload": {
  6917. "files": [
  6918. "bootstrap.php"
  6919. ],
  6920. "psr-4": {
  6921. "Symfony\\Polyfill\\Php80\\": ""
  6922. },
  6923. "classmap": [
  6924. "Resources/stubs"
  6925. ]
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Ion Bazan",
  6934. "email": "ion.bazan@gmail.com"
  6935. },
  6936. {
  6937. "name": "Nicolas Grekas",
  6938. "email": "p@tchwork.com"
  6939. },
  6940. {
  6941. "name": "Symfony Community",
  6942. "homepage": "https://symfony.com/contributors"
  6943. }
  6944. ],
  6945. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6946. "homepage": "https://symfony.com",
  6947. "keywords": [
  6948. "compatibility",
  6949. "polyfill",
  6950. "portable",
  6951. "shim"
  6952. ],
  6953. "support": {
  6954. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6955. },
  6956. "funding": [
  6957. {
  6958. "url": "https://symfony.com/sponsor",
  6959. "type": "custom"
  6960. },
  6961. {
  6962. "url": "https://github.com/fabpot",
  6963. "type": "github"
  6964. },
  6965. {
  6966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6967. "type": "tidelift"
  6968. }
  6969. ],
  6970. "time": "2024-01-29T20:11:03+00:00"
  6971. },
  6972. {
  6973. "name": "symfony/service-contracts",
  6974. "version": "v3.5.0",
  6975. "source": {
  6976. "type": "git",
  6977. "url": "https://github.com/symfony/service-contracts.git",
  6978. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6979. },
  6980. "dist": {
  6981. "type": "zip",
  6982. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6983. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6984. "shasum": ""
  6985. },
  6986. "require": {
  6987. "php": ">=8.1",
  6988. "psr/container": "^1.1|^2.0",
  6989. "symfony/deprecation-contracts": "^2.5|^3"
  6990. },
  6991. "conflict": {
  6992. "ext-psr": "<1.1|>=2"
  6993. },
  6994. "type": "library",
  6995. "extra": {
  6996. "branch-alias": {
  6997. "dev-main": "3.5-dev"
  6998. },
  6999. "thanks": {
  7000. "name": "symfony/contracts",
  7001. "url": "https://github.com/symfony/contracts"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Contracts\\Service\\": ""
  7007. },
  7008. "exclude-from-classmap": [
  7009. "/Test/"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Nicolas Grekas",
  7019. "email": "p@tchwork.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "https://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "Generic abstractions related to writing services",
  7027. "homepage": "https://symfony.com",
  7028. "keywords": [
  7029. "abstractions",
  7030. "contracts",
  7031. "decoupling",
  7032. "interfaces",
  7033. "interoperability",
  7034. "standards"
  7035. ],
  7036. "support": {
  7037. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7038. },
  7039. "funding": [
  7040. {
  7041. "url": "https://symfony.com/sponsor",
  7042. "type": "custom"
  7043. },
  7044. {
  7045. "url": "https://github.com/fabpot",
  7046. "type": "github"
  7047. },
  7048. {
  7049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7050. "type": "tidelift"
  7051. }
  7052. ],
  7053. "time": "2024-04-18T09:32:20+00:00"
  7054. },
  7055. {
  7056. "name": "symfony/string",
  7057. "version": "v6.4.8",
  7058. "source": {
  7059. "type": "git",
  7060. "url": "https://github.com/symfony/string.git",
  7061. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7062. },
  7063. "dist": {
  7064. "type": "zip",
  7065. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7066. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7067. "shasum": ""
  7068. },
  7069. "require": {
  7070. "php": ">=8.1",
  7071. "symfony/polyfill-ctype": "~1.8",
  7072. "symfony/polyfill-intl-grapheme": "~1.0",
  7073. "symfony/polyfill-intl-normalizer": "~1.0",
  7074. "symfony/polyfill-mbstring": "~1.0"
  7075. },
  7076. "conflict": {
  7077. "symfony/translation-contracts": "<2.5"
  7078. },
  7079. "require-dev": {
  7080. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7081. "symfony/http-client": "^5.4|^6.0|^7.0",
  7082. "symfony/intl": "^6.2|^7.0",
  7083. "symfony/translation-contracts": "^2.5|^3.0",
  7084. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7085. },
  7086. "type": "library",
  7087. "autoload": {
  7088. "files": [
  7089. "Resources/functions.php"
  7090. ],
  7091. "psr-4": {
  7092. "Symfony\\Component\\String\\": ""
  7093. },
  7094. "exclude-from-classmap": [
  7095. "/Tests/"
  7096. ]
  7097. },
  7098. "notification-url": "https://packagist.org/downloads/",
  7099. "license": [
  7100. "MIT"
  7101. ],
  7102. "authors": [
  7103. {
  7104. "name": "Nicolas Grekas",
  7105. "email": "p@tchwork.com"
  7106. },
  7107. {
  7108. "name": "Symfony Community",
  7109. "homepage": "https://symfony.com/contributors"
  7110. }
  7111. ],
  7112. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7113. "homepage": "https://symfony.com",
  7114. "keywords": [
  7115. "grapheme",
  7116. "i18n",
  7117. "string",
  7118. "unicode",
  7119. "utf-8",
  7120. "utf8"
  7121. ],
  7122. "support": {
  7123. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7124. },
  7125. "funding": [
  7126. {
  7127. "url": "https://symfony.com/sponsor",
  7128. "type": "custom"
  7129. },
  7130. {
  7131. "url": "https://github.com/fabpot",
  7132. "type": "github"
  7133. },
  7134. {
  7135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7136. "type": "tidelift"
  7137. }
  7138. ],
  7139. "time": "2024-05-31T14:49:08+00:00"
  7140. },
  7141. {
  7142. "name": "symfony/translation",
  7143. "version": "v6.4.8",
  7144. "source": {
  7145. "type": "git",
  7146. "url": "https://github.com/symfony/translation.git",
  7147. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7148. },
  7149. "dist": {
  7150. "type": "zip",
  7151. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7152. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7153. "shasum": ""
  7154. },
  7155. "require": {
  7156. "php": ">=8.1",
  7157. "symfony/deprecation-contracts": "^2.5|^3",
  7158. "symfony/polyfill-mbstring": "~1.0",
  7159. "symfony/translation-contracts": "^2.5|^3.0"
  7160. },
  7161. "conflict": {
  7162. "symfony/config": "<5.4",
  7163. "symfony/console": "<5.4",
  7164. "symfony/dependency-injection": "<5.4",
  7165. "symfony/http-client-contracts": "<2.5",
  7166. "symfony/http-kernel": "<5.4",
  7167. "symfony/service-contracts": "<2.5",
  7168. "symfony/twig-bundle": "<5.4",
  7169. "symfony/yaml": "<5.4"
  7170. },
  7171. "provide": {
  7172. "symfony/translation-implementation": "2.3|3.0"
  7173. },
  7174. "require-dev": {
  7175. "nikic/php-parser": "^4.18|^5.0",
  7176. "psr/log": "^1|^2|^3",
  7177. "symfony/config": "^5.4|^6.0|^7.0",
  7178. "symfony/console": "^5.4|^6.0|^7.0",
  7179. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7180. "symfony/finder": "^5.4|^6.0|^7.0",
  7181. "symfony/http-client-contracts": "^2.5|^3.0",
  7182. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7183. "symfony/intl": "^5.4|^6.0|^7.0",
  7184. "symfony/polyfill-intl-icu": "^1.21",
  7185. "symfony/routing": "^5.4|^6.0|^7.0",
  7186. "symfony/service-contracts": "^2.5|^3",
  7187. "symfony/yaml": "^5.4|^6.0|^7.0"
  7188. },
  7189. "type": "library",
  7190. "autoload": {
  7191. "files": [
  7192. "Resources/functions.php"
  7193. ],
  7194. "psr-4": {
  7195. "Symfony\\Component\\Translation\\": ""
  7196. },
  7197. "exclude-from-classmap": [
  7198. "/Tests/"
  7199. ]
  7200. },
  7201. "notification-url": "https://packagist.org/downloads/",
  7202. "license": [
  7203. "MIT"
  7204. ],
  7205. "authors": [
  7206. {
  7207. "name": "Fabien Potencier",
  7208. "email": "fabien@symfony.com"
  7209. },
  7210. {
  7211. "name": "Symfony Community",
  7212. "homepage": "https://symfony.com/contributors"
  7213. }
  7214. ],
  7215. "description": "Provides tools to internationalize your application",
  7216. "homepage": "https://symfony.com",
  7217. "support": {
  7218. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://symfony.com/sponsor",
  7223. "type": "custom"
  7224. },
  7225. {
  7226. "url": "https://github.com/fabpot",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7231. "type": "tidelift"
  7232. }
  7233. ],
  7234. "time": "2024-05-31T14:49:08+00:00"
  7235. },
  7236. {
  7237. "name": "symfony/translation-contracts",
  7238. "version": "v3.5.0",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/symfony/translation-contracts.git",
  7242. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7247. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "php": ">=8.1"
  7252. },
  7253. "type": "library",
  7254. "extra": {
  7255. "branch-alias": {
  7256. "dev-main": "3.5-dev"
  7257. },
  7258. "thanks": {
  7259. "name": "symfony/contracts",
  7260. "url": "https://github.com/symfony/contracts"
  7261. }
  7262. },
  7263. "autoload": {
  7264. "psr-4": {
  7265. "Symfony\\Contracts\\Translation\\": ""
  7266. },
  7267. "exclude-from-classmap": [
  7268. "/Test/"
  7269. ]
  7270. },
  7271. "notification-url": "https://packagist.org/downloads/",
  7272. "license": [
  7273. "MIT"
  7274. ],
  7275. "authors": [
  7276. {
  7277. "name": "Nicolas Grekas",
  7278. "email": "p@tchwork.com"
  7279. },
  7280. {
  7281. "name": "Symfony Community",
  7282. "homepage": "https://symfony.com/contributors"
  7283. }
  7284. ],
  7285. "description": "Generic abstractions related to translation",
  7286. "homepage": "https://symfony.com",
  7287. "keywords": [
  7288. "abstractions",
  7289. "contracts",
  7290. "decoupling",
  7291. "interfaces",
  7292. "interoperability",
  7293. "standards"
  7294. ],
  7295. "support": {
  7296. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://symfony.com/sponsor",
  7301. "type": "custom"
  7302. },
  7303. {
  7304. "url": "https://github.com/fabpot",
  7305. "type": "github"
  7306. },
  7307. {
  7308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7309. "type": "tidelift"
  7310. }
  7311. ],
  7312. "time": "2024-04-18T09:32:20+00:00"
  7313. },
  7314. {
  7315. "name": "vlucas/phpdotenv",
  7316. "version": "v5.6.0",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/vlucas/phpdotenv.git",
  7320. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7325. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "ext-pcre": "*",
  7330. "graham-campbell/result-type": "^1.1.2",
  7331. "php": "^7.2.5 || ^8.0",
  7332. "phpoption/phpoption": "^1.9.2",
  7333. "symfony/polyfill-ctype": "^1.24",
  7334. "symfony/polyfill-mbstring": "^1.24",
  7335. "symfony/polyfill-php80": "^1.24"
  7336. },
  7337. "require-dev": {
  7338. "bamarni/composer-bin-plugin": "^1.8.2",
  7339. "ext-filter": "*",
  7340. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7341. },
  7342. "suggest": {
  7343. "ext-filter": "Required to use the boolean validator."
  7344. },
  7345. "type": "library",
  7346. "extra": {
  7347. "bamarni-bin": {
  7348. "bin-links": true,
  7349. "forward-command": true
  7350. },
  7351. "branch-alias": {
  7352. "dev-master": "5.6-dev"
  7353. }
  7354. },
  7355. "autoload": {
  7356. "psr-4": {
  7357. "Dotenv\\": "src/"
  7358. }
  7359. },
  7360. "notification-url": "https://packagist.org/downloads/",
  7361. "license": [
  7362. "BSD-3-Clause"
  7363. ],
  7364. "authors": [
  7365. {
  7366. "name": "Graham Campbell",
  7367. "email": "hello@gjcampbell.co.uk",
  7368. "homepage": "https://github.com/GrahamCampbell"
  7369. },
  7370. {
  7371. "name": "Vance Lucas",
  7372. "email": "vance@vancelucas.com",
  7373. "homepage": "https://github.com/vlucas"
  7374. }
  7375. ],
  7376. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7377. "keywords": [
  7378. "dotenv",
  7379. "env",
  7380. "environment"
  7381. ],
  7382. "support": {
  7383. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7384. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7385. },
  7386. "funding": [
  7387. {
  7388. "url": "https://github.com/GrahamCampbell",
  7389. "type": "github"
  7390. },
  7391. {
  7392. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7393. "type": "tidelift"
  7394. }
  7395. ],
  7396. "time": "2023-11-12T22:43:29+00:00"
  7397. }
  7398. ],
  7399. "packages-dev": [
  7400. {
  7401. "name": "clue/ndjson-react",
  7402. "version": "v1.3.0",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/clue/reactphp-ndjson.git",
  7406. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7411. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "php": ">=5.3",
  7416. "react/stream": "^1.2"
  7417. },
  7418. "require-dev": {
  7419. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7420. "react/event-loop": "^1.2"
  7421. },
  7422. "type": "library",
  7423. "autoload": {
  7424. "psr-4": {
  7425. "Clue\\React\\NDJson\\": "src/"
  7426. }
  7427. },
  7428. "notification-url": "https://packagist.org/downloads/",
  7429. "license": [
  7430. "MIT"
  7431. ],
  7432. "authors": [
  7433. {
  7434. "name": "Christian Lück",
  7435. "email": "christian@clue.engineering"
  7436. }
  7437. ],
  7438. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7439. "homepage": "https://github.com/clue/reactphp-ndjson",
  7440. "keywords": [
  7441. "NDJSON",
  7442. "json",
  7443. "jsonlines",
  7444. "newline",
  7445. "reactphp",
  7446. "streaming"
  7447. ],
  7448. "support": {
  7449. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7450. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7451. },
  7452. "funding": [
  7453. {
  7454. "url": "https://clue.engineering/support",
  7455. "type": "custom"
  7456. },
  7457. {
  7458. "url": "https://github.com/clue",
  7459. "type": "github"
  7460. }
  7461. ],
  7462. "time": "2022-12-23T10:58:28+00:00"
  7463. },
  7464. {
  7465. "name": "composer/pcre",
  7466. "version": "3.1.4",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/composer/pcre.git",
  7470. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7475. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7476. "shasum": ""
  7477. },
  7478. "require": {
  7479. "php": "^7.4 || ^8.0"
  7480. },
  7481. "require-dev": {
  7482. "phpstan/phpstan": "^1.3",
  7483. "phpstan/phpstan-strict-rules": "^1.1",
  7484. "symfony/phpunit-bridge": "^5"
  7485. },
  7486. "type": "library",
  7487. "extra": {
  7488. "branch-alias": {
  7489. "dev-main": "3.x-dev"
  7490. }
  7491. },
  7492. "autoload": {
  7493. "psr-4": {
  7494. "Composer\\Pcre\\": "src"
  7495. }
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Jordi Boggiano",
  7504. "email": "j.boggiano@seld.be",
  7505. "homepage": "http://seld.be"
  7506. }
  7507. ],
  7508. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7509. "keywords": [
  7510. "PCRE",
  7511. "preg",
  7512. "regex",
  7513. "regular expression"
  7514. ],
  7515. "support": {
  7516. "issues": "https://github.com/composer/pcre/issues",
  7517. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7518. },
  7519. "funding": [
  7520. {
  7521. "url": "https://packagist.com",
  7522. "type": "custom"
  7523. },
  7524. {
  7525. "url": "https://github.com/composer",
  7526. "type": "github"
  7527. },
  7528. {
  7529. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7530. "type": "tidelift"
  7531. }
  7532. ],
  7533. "time": "2024-05-27T13:40:54+00:00"
  7534. },
  7535. {
  7536. "name": "composer/semver",
  7537. "version": "3.4.0",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/composer/semver.git",
  7541. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7546. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7547. "shasum": ""
  7548. },
  7549. "require": {
  7550. "php": "^5.3.2 || ^7.0 || ^8.0"
  7551. },
  7552. "require-dev": {
  7553. "phpstan/phpstan": "^1.4",
  7554. "symfony/phpunit-bridge": "^4.2 || ^5"
  7555. },
  7556. "type": "library",
  7557. "extra": {
  7558. "branch-alias": {
  7559. "dev-main": "3.x-dev"
  7560. }
  7561. },
  7562. "autoload": {
  7563. "psr-4": {
  7564. "Composer\\Semver\\": "src"
  7565. }
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Nils Adermann",
  7574. "email": "naderman@naderman.de",
  7575. "homepage": "http://www.naderman.de"
  7576. },
  7577. {
  7578. "name": "Jordi Boggiano",
  7579. "email": "j.boggiano@seld.be",
  7580. "homepage": "http://seld.be"
  7581. },
  7582. {
  7583. "name": "Rob Bast",
  7584. "email": "rob.bast@gmail.com",
  7585. "homepage": "http://robbast.nl"
  7586. }
  7587. ],
  7588. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7589. "keywords": [
  7590. "semantic",
  7591. "semver",
  7592. "validation",
  7593. "versioning"
  7594. ],
  7595. "support": {
  7596. "irc": "ircs://irc.libera.chat:6697/composer",
  7597. "issues": "https://github.com/composer/semver/issues",
  7598. "source": "https://github.com/composer/semver/tree/3.4.0"
  7599. },
  7600. "funding": [
  7601. {
  7602. "url": "https://packagist.com",
  7603. "type": "custom"
  7604. },
  7605. {
  7606. "url": "https://github.com/composer",
  7607. "type": "github"
  7608. },
  7609. {
  7610. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7611. "type": "tidelift"
  7612. }
  7613. ],
  7614. "time": "2023-08-31T09:50:34+00:00"
  7615. },
  7616. {
  7617. "name": "composer/xdebug-handler",
  7618. "version": "3.0.5",
  7619. "source": {
  7620. "type": "git",
  7621. "url": "https://github.com/composer/xdebug-handler.git",
  7622. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7623. },
  7624. "dist": {
  7625. "type": "zip",
  7626. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7627. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7628. "shasum": ""
  7629. },
  7630. "require": {
  7631. "composer/pcre": "^1 || ^2 || ^3",
  7632. "php": "^7.2.5 || ^8.0",
  7633. "psr/log": "^1 || ^2 || ^3"
  7634. },
  7635. "require-dev": {
  7636. "phpstan/phpstan": "^1.0",
  7637. "phpstan/phpstan-strict-rules": "^1.1",
  7638. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7639. },
  7640. "type": "library",
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Composer\\XdebugHandler\\": "src"
  7644. }
  7645. },
  7646. "notification-url": "https://packagist.org/downloads/",
  7647. "license": [
  7648. "MIT"
  7649. ],
  7650. "authors": [
  7651. {
  7652. "name": "John Stevenson",
  7653. "email": "john-stevenson@blueyonder.co.uk"
  7654. }
  7655. ],
  7656. "description": "Restarts a process without Xdebug.",
  7657. "keywords": [
  7658. "Xdebug",
  7659. "performance"
  7660. ],
  7661. "support": {
  7662. "irc": "ircs://irc.libera.chat:6697/composer",
  7663. "issues": "https://github.com/composer/xdebug-handler/issues",
  7664. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://packagist.com",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/composer",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2024-05-06T16:37:16+00:00"
  7681. },
  7682. {
  7683. "name": "evenement/evenement",
  7684. "version": "v3.0.2",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/igorw/evenement.git",
  7688. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7693. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=7.0"
  7698. },
  7699. "require-dev": {
  7700. "phpunit/phpunit": "^9 || ^6"
  7701. },
  7702. "type": "library",
  7703. "autoload": {
  7704. "psr-4": {
  7705. "Evenement\\": "src/"
  7706. }
  7707. },
  7708. "notification-url": "https://packagist.org/downloads/",
  7709. "license": [
  7710. "MIT"
  7711. ],
  7712. "authors": [
  7713. {
  7714. "name": "Igor Wiedler",
  7715. "email": "igor@wiedler.ch"
  7716. }
  7717. ],
  7718. "description": "Événement is a very simple event dispatching library for PHP",
  7719. "keywords": [
  7720. "event-dispatcher",
  7721. "event-emitter"
  7722. ],
  7723. "support": {
  7724. "issues": "https://github.com/igorw/evenement/issues",
  7725. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7726. },
  7727. "time": "2023-08-08T05:53:35+00:00"
  7728. },
  7729. {
  7730. "name": "fidry/cpu-core-counter",
  7731. "version": "1.1.0",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7735. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7740. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7741. "shasum": ""
  7742. },
  7743. "require": {
  7744. "php": "^7.2 || ^8.0"
  7745. },
  7746. "require-dev": {
  7747. "fidry/makefile": "^0.2.0",
  7748. "fidry/php-cs-fixer-config": "^1.1.2",
  7749. "phpstan/extension-installer": "^1.2.0",
  7750. "phpstan/phpstan": "^1.9.2",
  7751. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7752. "phpstan/phpstan-phpunit": "^1.2.2",
  7753. "phpstan/phpstan-strict-rules": "^1.4.4",
  7754. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7755. "webmozarts/strict-phpunit": "^7.5"
  7756. },
  7757. "type": "library",
  7758. "autoload": {
  7759. "psr-4": {
  7760. "Fidry\\CpuCoreCounter\\": "src/"
  7761. }
  7762. },
  7763. "notification-url": "https://packagist.org/downloads/",
  7764. "license": [
  7765. "MIT"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Théo FIDRY",
  7770. "email": "theo.fidry@gmail.com"
  7771. }
  7772. ],
  7773. "description": "Tiny utility to get the number of CPU cores.",
  7774. "keywords": [
  7775. "CPU",
  7776. "core"
  7777. ],
  7778. "support": {
  7779. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7780. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7781. },
  7782. "funding": [
  7783. {
  7784. "url": "https://github.com/theofidry",
  7785. "type": "github"
  7786. }
  7787. ],
  7788. "time": "2024-02-07T09:43:46+00:00"
  7789. },
  7790. {
  7791. "name": "friendsofphp/php-cs-fixer",
  7792. "version": "v3.58.1",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7796. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7801. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7802. "shasum": ""
  7803. },
  7804. "require": {
  7805. "clue/ndjson-react": "^1.0",
  7806. "composer/semver": "^3.4",
  7807. "composer/xdebug-handler": "^3.0.3",
  7808. "ext-filter": "*",
  7809. "ext-json": "*",
  7810. "ext-tokenizer": "*",
  7811. "fidry/cpu-core-counter": "^1.0",
  7812. "php": "^7.4 || ^8.0",
  7813. "react/child-process": "^0.6.5",
  7814. "react/event-loop": "^1.0",
  7815. "react/promise": "^2.0 || ^3.0",
  7816. "react/socket": "^1.0",
  7817. "react/stream": "^1.0",
  7818. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7819. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7820. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7821. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7822. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7823. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7824. "symfony/polyfill-mbstring": "^1.28",
  7825. "symfony/polyfill-php80": "^1.28",
  7826. "symfony/polyfill-php81": "^1.28",
  7827. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7828. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7829. },
  7830. "require-dev": {
  7831. "facile-it/paraunit": "^1.3 || ^2.0",
  7832. "infection/infection": "^0.27.11",
  7833. "justinrainbow/json-schema": "^5.2",
  7834. "keradus/cli-executor": "^2.1",
  7835. "mikey179/vfsstream": "^1.6.11",
  7836. "php-coveralls/php-coveralls": "^2.7",
  7837. "php-cs-fixer/accessible-object": "^1.1",
  7838. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7839. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7840. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7841. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7842. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7843. },
  7844. "suggest": {
  7845. "ext-dom": "For handling output formats in XML",
  7846. "ext-mbstring": "For handling non-UTF8 characters."
  7847. },
  7848. "bin": [
  7849. "php-cs-fixer"
  7850. ],
  7851. "type": "application",
  7852. "autoload": {
  7853. "psr-4": {
  7854. "PhpCsFixer\\": "src/"
  7855. }
  7856. },
  7857. "notification-url": "https://packagist.org/downloads/",
  7858. "license": [
  7859. "MIT"
  7860. ],
  7861. "authors": [
  7862. {
  7863. "name": "Fabien Potencier",
  7864. "email": "fabien@symfony.com"
  7865. },
  7866. {
  7867. "name": "Dariusz Rumiński",
  7868. "email": "dariusz.ruminski@gmail.com"
  7869. }
  7870. ],
  7871. "description": "A tool to automatically fix PHP code style",
  7872. "keywords": [
  7873. "Static code analysis",
  7874. "fixer",
  7875. "standards",
  7876. "static analysis"
  7877. ],
  7878. "support": {
  7879. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7880. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://github.com/keradus",
  7885. "type": "github"
  7886. }
  7887. ],
  7888. "time": "2024-05-29T16:39:07+00:00"
  7889. },
  7890. {
  7891. "name": "hamcrest/hamcrest-php",
  7892. "version": "v2.0.1",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7896. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7901. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "php": "^5.3|^7.0|^8.0"
  7906. },
  7907. "replace": {
  7908. "cordoval/hamcrest-php": "*",
  7909. "davedevelopment/hamcrest-php": "*",
  7910. "kodova/hamcrest-php": "*"
  7911. },
  7912. "require-dev": {
  7913. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7914. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7915. },
  7916. "type": "library",
  7917. "extra": {
  7918. "branch-alias": {
  7919. "dev-master": "2.1-dev"
  7920. }
  7921. },
  7922. "autoload": {
  7923. "classmap": [
  7924. "hamcrest"
  7925. ]
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "BSD-3-Clause"
  7930. ],
  7931. "description": "This is the PHP port of Hamcrest Matchers",
  7932. "keywords": [
  7933. "test"
  7934. ],
  7935. "support": {
  7936. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7937. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7938. },
  7939. "time": "2020-07-09T08:09:16+00:00"
  7940. },
  7941. {
  7942. "name": "hyperf/devtool",
  7943. "version": "v3.1.19",
  7944. "source": {
  7945. "type": "git",
  7946. "url": "https://github.com/hyperf/devtool.git",
  7947. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7948. },
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7952. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7953. "shasum": ""
  7954. },
  7955. "require": {
  7956. "hyperf/code-parser": "~3.1.0",
  7957. "hyperf/command": "~3.1.0",
  7958. "hyperf/contract": "~3.1.0",
  7959. "hyperf/di": "~3.1.0",
  7960. "hyperf/support": "~3.1.0",
  7961. "hyperf/utils": "~3.1.0",
  7962. "php": ">=8.1"
  7963. },
  7964. "type": "library",
  7965. "extra": {
  7966. "branch-alias": {
  7967. "dev-master": "3.1-dev"
  7968. },
  7969. "hyperf": {
  7970. "config": "Hyperf\\Devtool\\ConfigProvider"
  7971. }
  7972. },
  7973. "autoload": {
  7974. "psr-4": {
  7975. "Hyperf\\Devtool\\": "src/"
  7976. }
  7977. },
  7978. "notification-url": "https://packagist.org/downloads/",
  7979. "license": [
  7980. "MIT"
  7981. ],
  7982. "description": "A Devtool for Hyperf.",
  7983. "homepage": "https://hyperf.io",
  7984. "keywords": [
  7985. "dev",
  7986. "devtool",
  7987. "hyperf",
  7988. "php",
  7989. "swoole"
  7990. ],
  7991. "support": {
  7992. "docs": "https://hyperf.wiki",
  7993. "issues": "https://github.com/hyperf/hyperf/issues",
  7994. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7995. "source": "https://github.com/hyperf/hyperf"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8000. "type": "custom"
  8001. },
  8002. {
  8003. "url": "https://opencollective.com/hyperf",
  8004. "type": "open_collective"
  8005. }
  8006. ],
  8007. "time": "2024-04-13T06:53:08+00:00"
  8008. },
  8009. {
  8010. "name": "hyperf/testing",
  8011. "version": "v3.1.21",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/hyperf/testing.git",
  8015. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8020. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8021. "shasum": ""
  8022. },
  8023. "require": {
  8024. "hyperf/codec": "~3.1.0",
  8025. "hyperf/collection": "~3.1.0",
  8026. "hyperf/contract": "~3.1.0",
  8027. "hyperf/coroutine": "~3.1.0",
  8028. "hyperf/http-message": "~3.1.0",
  8029. "hyperf/http-server": "~3.1.0",
  8030. "hyperf/support": "~3.1.0",
  8031. "hyperf/utils": "~3.1.0",
  8032. "php": ">=8.1",
  8033. "phpunit/phpunit": "^10.0",
  8034. "psr/container": "^1.0|^2.0",
  8035. "symfony/http-foundation": "^5.4|^6.0"
  8036. },
  8037. "suggest": {
  8038. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8039. },
  8040. "bin": [
  8041. "co-phpunit"
  8042. ],
  8043. "type": "library",
  8044. "extra": {
  8045. "branch-alias": {
  8046. "dev-master": "3.1-dev"
  8047. }
  8048. },
  8049. "autoload": {
  8050. "psr-4": {
  8051. "Hyperf\\Testing\\": "src/"
  8052. }
  8053. },
  8054. "notification-url": "https://packagist.org/downloads/",
  8055. "license": [
  8056. "MIT"
  8057. ],
  8058. "description": "Testing for hyperf",
  8059. "keywords": [
  8060. "dev",
  8061. "php",
  8062. "swoole",
  8063. "testing"
  8064. ],
  8065. "support": {
  8066. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://opencollective.com/hyperf",
  8075. "type": "open_collective"
  8076. }
  8077. ],
  8078. "time": "2024-05-07T05:34:51+00:00"
  8079. },
  8080. {
  8081. "name": "hyperf/watcher",
  8082. "version": "v3.1.21",
  8083. "source": {
  8084. "type": "git",
  8085. "url": "https://github.com/hyperf/watcher.git",
  8086. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8087. },
  8088. "dist": {
  8089. "type": "zip",
  8090. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8091. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8092. "shasum": ""
  8093. },
  8094. "require": {
  8095. "ext-posix": "*",
  8096. "hyperf/codec": "~3.1.0",
  8097. "hyperf/command": "~3.1.0",
  8098. "hyperf/di": "~3.1.0",
  8099. "hyperf/framework": "~3.1.0",
  8100. "hyperf/support": "~3.1.0",
  8101. "php": ">=8.1"
  8102. },
  8103. "type": "library",
  8104. "extra": {
  8105. "branch-alias": {
  8106. "dev-master": "3.1-dev"
  8107. },
  8108. "hyperf": {
  8109. "config": "Hyperf\\Watcher\\ConfigProvider"
  8110. }
  8111. },
  8112. "autoload": {
  8113. "files": [
  8114. "src/Functions.php"
  8115. ],
  8116. "psr-4": {
  8117. "Hyperf\\Watcher\\": "src/"
  8118. }
  8119. },
  8120. "notification-url": "https://packagist.org/downloads/",
  8121. "license": [
  8122. "MIT"
  8123. ],
  8124. "description": "Hot reload watcher for Hyperf",
  8125. "keywords": [
  8126. "dev",
  8127. "hyperf",
  8128. "php"
  8129. ],
  8130. "support": {
  8131. "issues": "https://github.com/hyperf/watcher/issues",
  8132. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8133. },
  8134. "funding": [
  8135. {
  8136. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8137. "type": "custom"
  8138. },
  8139. {
  8140. "url": "https://opencollective.com/hyperf",
  8141. "type": "open_collective"
  8142. }
  8143. ],
  8144. "time": "2024-05-09T13:40:44+00:00"
  8145. },
  8146. {
  8147. "name": "mockery/mockery",
  8148. "version": "1.6.12",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/mockery/mockery.git",
  8152. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8157. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "hamcrest/hamcrest-php": "^2.0.1",
  8162. "lib-pcre": ">=7.0",
  8163. "php": ">=7.3"
  8164. },
  8165. "conflict": {
  8166. "phpunit/phpunit": "<8.0"
  8167. },
  8168. "require-dev": {
  8169. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8170. "symplify/easy-coding-standard": "^12.1.14"
  8171. },
  8172. "type": "library",
  8173. "autoload": {
  8174. "files": [
  8175. "library/helpers.php",
  8176. "library/Mockery.php"
  8177. ],
  8178. "psr-4": {
  8179. "Mockery\\": "library/Mockery"
  8180. }
  8181. },
  8182. "notification-url": "https://packagist.org/downloads/",
  8183. "license": [
  8184. "BSD-3-Clause"
  8185. ],
  8186. "authors": [
  8187. {
  8188. "name": "Pádraic Brady",
  8189. "email": "padraic.brady@gmail.com",
  8190. "homepage": "https://github.com/padraic",
  8191. "role": "Author"
  8192. },
  8193. {
  8194. "name": "Dave Marshall",
  8195. "email": "dave.marshall@atstsolutions.co.uk",
  8196. "homepage": "https://davedevelopment.co.uk",
  8197. "role": "Developer"
  8198. },
  8199. {
  8200. "name": "Nathanael Esayeas",
  8201. "email": "nathanael.esayeas@protonmail.com",
  8202. "homepage": "https://github.com/ghostwriter",
  8203. "role": "Lead Developer"
  8204. }
  8205. ],
  8206. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8207. "homepage": "https://github.com/mockery/mockery",
  8208. "keywords": [
  8209. "BDD",
  8210. "TDD",
  8211. "library",
  8212. "mock",
  8213. "mock objects",
  8214. "mockery",
  8215. "stub",
  8216. "test",
  8217. "test double",
  8218. "testing"
  8219. ],
  8220. "support": {
  8221. "docs": "https://docs.mockery.io/",
  8222. "issues": "https://github.com/mockery/mockery/issues",
  8223. "rss": "https://github.com/mockery/mockery/releases.atom",
  8224. "security": "https://github.com/mockery/mockery/security/advisories",
  8225. "source": "https://github.com/mockery/mockery"
  8226. },
  8227. "time": "2024-05-16T03:13:13+00:00"
  8228. },
  8229. {
  8230. "name": "myclabs/deep-copy",
  8231. "version": "1.11.1",
  8232. "source": {
  8233. "type": "git",
  8234. "url": "https://github.com/myclabs/DeepCopy.git",
  8235. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8236. },
  8237. "dist": {
  8238. "type": "zip",
  8239. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8240. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8241. "shasum": ""
  8242. },
  8243. "require": {
  8244. "php": "^7.1 || ^8.0"
  8245. },
  8246. "conflict": {
  8247. "doctrine/collections": "<1.6.8",
  8248. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8249. },
  8250. "require-dev": {
  8251. "doctrine/collections": "^1.6.8",
  8252. "doctrine/common": "^2.13.3 || ^3.2.2",
  8253. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8254. },
  8255. "type": "library",
  8256. "autoload": {
  8257. "files": [
  8258. "src/DeepCopy/deep_copy.php"
  8259. ],
  8260. "psr-4": {
  8261. "DeepCopy\\": "src/DeepCopy/"
  8262. }
  8263. },
  8264. "notification-url": "https://packagist.org/downloads/",
  8265. "license": [
  8266. "MIT"
  8267. ],
  8268. "description": "Create deep copies (clones) of your objects",
  8269. "keywords": [
  8270. "clone",
  8271. "copy",
  8272. "duplicate",
  8273. "object",
  8274. "object graph"
  8275. ],
  8276. "support": {
  8277. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8278. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8283. "type": "tidelift"
  8284. }
  8285. ],
  8286. "time": "2023-03-08T13:26:56+00:00"
  8287. },
  8288. {
  8289. "name": "phar-io/manifest",
  8290. "version": "2.0.4",
  8291. "source": {
  8292. "type": "git",
  8293. "url": "https://github.com/phar-io/manifest.git",
  8294. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8295. },
  8296. "dist": {
  8297. "type": "zip",
  8298. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8299. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8300. "shasum": ""
  8301. },
  8302. "require": {
  8303. "ext-dom": "*",
  8304. "ext-libxml": "*",
  8305. "ext-phar": "*",
  8306. "ext-xmlwriter": "*",
  8307. "phar-io/version": "^3.0.1",
  8308. "php": "^7.2 || ^8.0"
  8309. },
  8310. "type": "library",
  8311. "extra": {
  8312. "branch-alias": {
  8313. "dev-master": "2.0.x-dev"
  8314. }
  8315. },
  8316. "autoload": {
  8317. "classmap": [
  8318. "src/"
  8319. ]
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "BSD-3-Clause"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "Arne Blankerts",
  8328. "email": "arne@blankerts.de",
  8329. "role": "Developer"
  8330. },
  8331. {
  8332. "name": "Sebastian Heuer",
  8333. "email": "sebastian@phpeople.de",
  8334. "role": "Developer"
  8335. },
  8336. {
  8337. "name": "Sebastian Bergmann",
  8338. "email": "sebastian@phpunit.de",
  8339. "role": "Developer"
  8340. }
  8341. ],
  8342. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8343. "support": {
  8344. "issues": "https://github.com/phar-io/manifest/issues",
  8345. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8346. },
  8347. "funding": [
  8348. {
  8349. "url": "https://github.com/theseer",
  8350. "type": "github"
  8351. }
  8352. ],
  8353. "time": "2024-03-03T12:33:53+00:00"
  8354. },
  8355. {
  8356. "name": "phar-io/version",
  8357. "version": "3.2.1",
  8358. "source": {
  8359. "type": "git",
  8360. "url": "https://github.com/phar-io/version.git",
  8361. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8362. },
  8363. "dist": {
  8364. "type": "zip",
  8365. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8366. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8367. "shasum": ""
  8368. },
  8369. "require": {
  8370. "php": "^7.2 || ^8.0"
  8371. },
  8372. "type": "library",
  8373. "autoload": {
  8374. "classmap": [
  8375. "src/"
  8376. ]
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "BSD-3-Clause"
  8381. ],
  8382. "authors": [
  8383. {
  8384. "name": "Arne Blankerts",
  8385. "email": "arne@blankerts.de",
  8386. "role": "Developer"
  8387. },
  8388. {
  8389. "name": "Sebastian Heuer",
  8390. "email": "sebastian@phpeople.de",
  8391. "role": "Developer"
  8392. },
  8393. {
  8394. "name": "Sebastian Bergmann",
  8395. "email": "sebastian@phpunit.de",
  8396. "role": "Developer"
  8397. }
  8398. ],
  8399. "description": "Library for handling version information and constraints",
  8400. "support": {
  8401. "issues": "https://github.com/phar-io/version/issues",
  8402. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8403. },
  8404. "time": "2022-02-21T01:04:05+00:00"
  8405. },
  8406. {
  8407. "name": "phpstan/phpstan",
  8408. "version": "1.11.4",
  8409. "source": {
  8410. "type": "git",
  8411. "url": "https://github.com/phpstan/phpstan.git",
  8412. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82"
  8413. },
  8414. "dist": {
  8415. "type": "zip",
  8416. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  8417. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  8418. "shasum": ""
  8419. },
  8420. "require": {
  8421. "php": "^7.2|^8.0"
  8422. },
  8423. "conflict": {
  8424. "phpstan/phpstan-shim": "*"
  8425. },
  8426. "bin": [
  8427. "phpstan",
  8428. "phpstan.phar"
  8429. ],
  8430. "type": "library",
  8431. "autoload": {
  8432. "files": [
  8433. "bootstrap.php"
  8434. ]
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "description": "PHPStan - PHP Static Analysis Tool",
  8441. "keywords": [
  8442. "dev",
  8443. "static analysis"
  8444. ],
  8445. "support": {
  8446. "docs": "https://phpstan.org/user-guide/getting-started",
  8447. "forum": "https://github.com/phpstan/phpstan/discussions",
  8448. "issues": "https://github.com/phpstan/phpstan/issues",
  8449. "security": "https://github.com/phpstan/phpstan/security/policy",
  8450. "source": "https://github.com/phpstan/phpstan-src"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://github.com/ondrejmirtes",
  8455. "type": "github"
  8456. },
  8457. {
  8458. "url": "https://github.com/phpstan",
  8459. "type": "github"
  8460. }
  8461. ],
  8462. "time": "2024-06-06T12:19:22+00:00"
  8463. },
  8464. {
  8465. "name": "phpunit/php-code-coverage",
  8466. "version": "10.1.14",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8470. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8475. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "ext-dom": "*",
  8480. "ext-libxml": "*",
  8481. "ext-xmlwriter": "*",
  8482. "nikic/php-parser": "^4.18 || ^5.0",
  8483. "php": ">=8.1",
  8484. "phpunit/php-file-iterator": "^4.0",
  8485. "phpunit/php-text-template": "^3.0",
  8486. "sebastian/code-unit-reverse-lookup": "^3.0",
  8487. "sebastian/complexity": "^3.0",
  8488. "sebastian/environment": "^6.0",
  8489. "sebastian/lines-of-code": "^2.0",
  8490. "sebastian/version": "^4.0",
  8491. "theseer/tokenizer": "^1.2.0"
  8492. },
  8493. "require-dev": {
  8494. "phpunit/phpunit": "^10.1"
  8495. },
  8496. "suggest": {
  8497. "ext-pcov": "PHP extension that provides line coverage",
  8498. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8499. },
  8500. "type": "library",
  8501. "extra": {
  8502. "branch-alias": {
  8503. "dev-main": "10.1-dev"
  8504. }
  8505. },
  8506. "autoload": {
  8507. "classmap": [
  8508. "src/"
  8509. ]
  8510. },
  8511. "notification-url": "https://packagist.org/downloads/",
  8512. "license": [
  8513. "BSD-3-Clause"
  8514. ],
  8515. "authors": [
  8516. {
  8517. "name": "Sebastian Bergmann",
  8518. "email": "sebastian@phpunit.de",
  8519. "role": "lead"
  8520. }
  8521. ],
  8522. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8523. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8524. "keywords": [
  8525. "coverage",
  8526. "testing",
  8527. "xunit"
  8528. ],
  8529. "support": {
  8530. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8531. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8532. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8533. },
  8534. "funding": [
  8535. {
  8536. "url": "https://github.com/sebastianbergmann",
  8537. "type": "github"
  8538. }
  8539. ],
  8540. "time": "2024-03-12T15:33:41+00:00"
  8541. },
  8542. {
  8543. "name": "phpunit/php-file-iterator",
  8544. "version": "4.1.0",
  8545. "source": {
  8546. "type": "git",
  8547. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8548. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8549. },
  8550. "dist": {
  8551. "type": "zip",
  8552. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8553. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8554. "shasum": ""
  8555. },
  8556. "require": {
  8557. "php": ">=8.1"
  8558. },
  8559. "require-dev": {
  8560. "phpunit/phpunit": "^10.0"
  8561. },
  8562. "type": "library",
  8563. "extra": {
  8564. "branch-alias": {
  8565. "dev-main": "4.0-dev"
  8566. }
  8567. },
  8568. "autoload": {
  8569. "classmap": [
  8570. "src/"
  8571. ]
  8572. },
  8573. "notification-url": "https://packagist.org/downloads/",
  8574. "license": [
  8575. "BSD-3-Clause"
  8576. ],
  8577. "authors": [
  8578. {
  8579. "name": "Sebastian Bergmann",
  8580. "email": "sebastian@phpunit.de",
  8581. "role": "lead"
  8582. }
  8583. ],
  8584. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8585. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8586. "keywords": [
  8587. "filesystem",
  8588. "iterator"
  8589. ],
  8590. "support": {
  8591. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8592. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8593. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8594. },
  8595. "funding": [
  8596. {
  8597. "url": "https://github.com/sebastianbergmann",
  8598. "type": "github"
  8599. }
  8600. ],
  8601. "time": "2023-08-31T06:24:48+00:00"
  8602. },
  8603. {
  8604. "name": "phpunit/php-invoker",
  8605. "version": "4.0.0",
  8606. "source": {
  8607. "type": "git",
  8608. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8609. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8610. },
  8611. "dist": {
  8612. "type": "zip",
  8613. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8614. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8615. "shasum": ""
  8616. },
  8617. "require": {
  8618. "php": ">=8.1"
  8619. },
  8620. "require-dev": {
  8621. "ext-pcntl": "*",
  8622. "phpunit/phpunit": "^10.0"
  8623. },
  8624. "suggest": {
  8625. "ext-pcntl": "*"
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-main": "4.0-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "classmap": [
  8635. "src/"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "BSD-3-Clause"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Sebastian Bergmann",
  8645. "email": "sebastian@phpunit.de",
  8646. "role": "lead"
  8647. }
  8648. ],
  8649. "description": "Invoke callables with a timeout",
  8650. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8651. "keywords": [
  8652. "process"
  8653. ],
  8654. "support": {
  8655. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8656. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8657. },
  8658. "funding": [
  8659. {
  8660. "url": "https://github.com/sebastianbergmann",
  8661. "type": "github"
  8662. }
  8663. ],
  8664. "time": "2023-02-03T06:56:09+00:00"
  8665. },
  8666. {
  8667. "name": "phpunit/php-text-template",
  8668. "version": "3.0.1",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8672. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8677. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=8.1"
  8682. },
  8683. "require-dev": {
  8684. "phpunit/phpunit": "^10.0"
  8685. },
  8686. "type": "library",
  8687. "extra": {
  8688. "branch-alias": {
  8689. "dev-main": "3.0-dev"
  8690. }
  8691. },
  8692. "autoload": {
  8693. "classmap": [
  8694. "src/"
  8695. ]
  8696. },
  8697. "notification-url": "https://packagist.org/downloads/",
  8698. "license": [
  8699. "BSD-3-Clause"
  8700. ],
  8701. "authors": [
  8702. {
  8703. "name": "Sebastian Bergmann",
  8704. "email": "sebastian@phpunit.de",
  8705. "role": "lead"
  8706. }
  8707. ],
  8708. "description": "Simple template engine.",
  8709. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8710. "keywords": [
  8711. "template"
  8712. ],
  8713. "support": {
  8714. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8715. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8716. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8717. },
  8718. "funding": [
  8719. {
  8720. "url": "https://github.com/sebastianbergmann",
  8721. "type": "github"
  8722. }
  8723. ],
  8724. "time": "2023-08-31T14:07:24+00:00"
  8725. },
  8726. {
  8727. "name": "phpunit/php-timer",
  8728. "version": "6.0.0",
  8729. "source": {
  8730. "type": "git",
  8731. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8732. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8733. },
  8734. "dist": {
  8735. "type": "zip",
  8736. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8737. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8738. "shasum": ""
  8739. },
  8740. "require": {
  8741. "php": ">=8.1"
  8742. },
  8743. "require-dev": {
  8744. "phpunit/phpunit": "^10.0"
  8745. },
  8746. "type": "library",
  8747. "extra": {
  8748. "branch-alias": {
  8749. "dev-main": "6.0-dev"
  8750. }
  8751. },
  8752. "autoload": {
  8753. "classmap": [
  8754. "src/"
  8755. ]
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "BSD-3-Clause"
  8760. ],
  8761. "authors": [
  8762. {
  8763. "name": "Sebastian Bergmann",
  8764. "email": "sebastian@phpunit.de",
  8765. "role": "lead"
  8766. }
  8767. ],
  8768. "description": "Utility class for timing",
  8769. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8770. "keywords": [
  8771. "timer"
  8772. ],
  8773. "support": {
  8774. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8775. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8776. },
  8777. "funding": [
  8778. {
  8779. "url": "https://github.com/sebastianbergmann",
  8780. "type": "github"
  8781. }
  8782. ],
  8783. "time": "2023-02-03T06:57:52+00:00"
  8784. },
  8785. {
  8786. "name": "phpunit/phpunit",
  8787. "version": "10.5.20",
  8788. "source": {
  8789. "type": "git",
  8790. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8791. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8792. },
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8796. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8797. "shasum": ""
  8798. },
  8799. "require": {
  8800. "ext-dom": "*",
  8801. "ext-json": "*",
  8802. "ext-libxml": "*",
  8803. "ext-mbstring": "*",
  8804. "ext-xml": "*",
  8805. "ext-xmlwriter": "*",
  8806. "myclabs/deep-copy": "^1.10.1",
  8807. "phar-io/manifest": "^2.0.3",
  8808. "phar-io/version": "^3.0.2",
  8809. "php": ">=8.1",
  8810. "phpunit/php-code-coverage": "^10.1.5",
  8811. "phpunit/php-file-iterator": "^4.0",
  8812. "phpunit/php-invoker": "^4.0",
  8813. "phpunit/php-text-template": "^3.0",
  8814. "phpunit/php-timer": "^6.0",
  8815. "sebastian/cli-parser": "^2.0",
  8816. "sebastian/code-unit": "^2.0",
  8817. "sebastian/comparator": "^5.0",
  8818. "sebastian/diff": "^5.0",
  8819. "sebastian/environment": "^6.0",
  8820. "sebastian/exporter": "^5.1",
  8821. "sebastian/global-state": "^6.0.1",
  8822. "sebastian/object-enumerator": "^5.0",
  8823. "sebastian/recursion-context": "^5.0",
  8824. "sebastian/type": "^4.0",
  8825. "sebastian/version": "^4.0"
  8826. },
  8827. "suggest": {
  8828. "ext-soap": "To be able to generate mocks based on WSDL files"
  8829. },
  8830. "bin": [
  8831. "phpunit"
  8832. ],
  8833. "type": "library",
  8834. "extra": {
  8835. "branch-alias": {
  8836. "dev-main": "10.5-dev"
  8837. }
  8838. },
  8839. "autoload": {
  8840. "files": [
  8841. "src/Framework/Assert/Functions.php"
  8842. ],
  8843. "classmap": [
  8844. "src/"
  8845. ]
  8846. },
  8847. "notification-url": "https://packagist.org/downloads/",
  8848. "license": [
  8849. "BSD-3-Clause"
  8850. ],
  8851. "authors": [
  8852. {
  8853. "name": "Sebastian Bergmann",
  8854. "email": "sebastian@phpunit.de",
  8855. "role": "lead"
  8856. }
  8857. ],
  8858. "description": "The PHP Unit Testing framework.",
  8859. "homepage": "https://phpunit.de/",
  8860. "keywords": [
  8861. "phpunit",
  8862. "testing",
  8863. "xunit"
  8864. ],
  8865. "support": {
  8866. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8867. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8868. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://phpunit.de/sponsors.html",
  8873. "type": "custom"
  8874. },
  8875. {
  8876. "url": "https://github.com/sebastianbergmann",
  8877. "type": "github"
  8878. },
  8879. {
  8880. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8881. "type": "tidelift"
  8882. }
  8883. ],
  8884. "time": "2024-04-24T06:32:35+00:00"
  8885. },
  8886. {
  8887. "name": "react/cache",
  8888. "version": "v1.2.0",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/reactphp/cache.git",
  8892. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8897. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8898. "shasum": ""
  8899. },
  8900. "require": {
  8901. "php": ">=5.3.0",
  8902. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8903. },
  8904. "require-dev": {
  8905. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8906. },
  8907. "type": "library",
  8908. "autoload": {
  8909. "psr-4": {
  8910. "React\\Cache\\": "src/"
  8911. }
  8912. },
  8913. "notification-url": "https://packagist.org/downloads/",
  8914. "license": [
  8915. "MIT"
  8916. ],
  8917. "authors": [
  8918. {
  8919. "name": "Christian Lück",
  8920. "email": "christian@clue.engineering",
  8921. "homepage": "https://clue.engineering/"
  8922. },
  8923. {
  8924. "name": "Cees-Jan Kiewiet",
  8925. "email": "reactphp@ceesjankiewiet.nl",
  8926. "homepage": "https://wyrihaximus.net/"
  8927. },
  8928. {
  8929. "name": "Jan Sorgalla",
  8930. "email": "jsorgalla@gmail.com",
  8931. "homepage": "https://sorgalla.com/"
  8932. },
  8933. {
  8934. "name": "Chris Boden",
  8935. "email": "cboden@gmail.com",
  8936. "homepage": "https://cboden.dev/"
  8937. }
  8938. ],
  8939. "description": "Async, Promise-based cache interface for ReactPHP",
  8940. "keywords": [
  8941. "cache",
  8942. "caching",
  8943. "promise",
  8944. "reactphp"
  8945. ],
  8946. "support": {
  8947. "issues": "https://github.com/reactphp/cache/issues",
  8948. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8949. },
  8950. "funding": [
  8951. {
  8952. "url": "https://opencollective.com/reactphp",
  8953. "type": "open_collective"
  8954. }
  8955. ],
  8956. "time": "2022-11-30T15:59:55+00:00"
  8957. },
  8958. {
  8959. "name": "react/child-process",
  8960. "version": "v0.6.5",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/reactphp/child-process.git",
  8964. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8969. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8970. "shasum": ""
  8971. },
  8972. "require": {
  8973. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8974. "php": ">=5.3.0",
  8975. "react/event-loop": "^1.2",
  8976. "react/stream": "^1.2"
  8977. },
  8978. "require-dev": {
  8979. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8980. "react/socket": "^1.8",
  8981. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8982. },
  8983. "type": "library",
  8984. "autoload": {
  8985. "psr-4": {
  8986. "React\\ChildProcess\\": "src"
  8987. }
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "MIT"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Christian Lück",
  8996. "email": "christian@clue.engineering",
  8997. "homepage": "https://clue.engineering/"
  8998. },
  8999. {
  9000. "name": "Cees-Jan Kiewiet",
  9001. "email": "reactphp@ceesjankiewiet.nl",
  9002. "homepage": "https://wyrihaximus.net/"
  9003. },
  9004. {
  9005. "name": "Jan Sorgalla",
  9006. "email": "jsorgalla@gmail.com",
  9007. "homepage": "https://sorgalla.com/"
  9008. },
  9009. {
  9010. "name": "Chris Boden",
  9011. "email": "cboden@gmail.com",
  9012. "homepage": "https://cboden.dev/"
  9013. }
  9014. ],
  9015. "description": "Event-driven library for executing child processes with ReactPHP.",
  9016. "keywords": [
  9017. "event-driven",
  9018. "process",
  9019. "reactphp"
  9020. ],
  9021. "support": {
  9022. "issues": "https://github.com/reactphp/child-process/issues",
  9023. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://github.com/WyriHaximus",
  9028. "type": "github"
  9029. },
  9030. {
  9031. "url": "https://github.com/clue",
  9032. "type": "github"
  9033. }
  9034. ],
  9035. "time": "2022-09-16T13:41:56+00:00"
  9036. },
  9037. {
  9038. "name": "react/dns",
  9039. "version": "v1.12.0",
  9040. "source": {
  9041. "type": "git",
  9042. "url": "https://github.com/reactphp/dns.git",
  9043. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9044. },
  9045. "dist": {
  9046. "type": "zip",
  9047. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9048. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9049. "shasum": ""
  9050. },
  9051. "require": {
  9052. "php": ">=5.3.0",
  9053. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9054. "react/event-loop": "^1.2",
  9055. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9056. },
  9057. "require-dev": {
  9058. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9059. "react/async": "^4 || ^3 || ^2",
  9060. "react/promise-timer": "^1.9"
  9061. },
  9062. "type": "library",
  9063. "autoload": {
  9064. "psr-4": {
  9065. "React\\Dns\\": "src/"
  9066. }
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "MIT"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Christian Lück",
  9075. "email": "christian@clue.engineering",
  9076. "homepage": "https://clue.engineering/"
  9077. },
  9078. {
  9079. "name": "Cees-Jan Kiewiet",
  9080. "email": "reactphp@ceesjankiewiet.nl",
  9081. "homepage": "https://wyrihaximus.net/"
  9082. },
  9083. {
  9084. "name": "Jan Sorgalla",
  9085. "email": "jsorgalla@gmail.com",
  9086. "homepage": "https://sorgalla.com/"
  9087. },
  9088. {
  9089. "name": "Chris Boden",
  9090. "email": "cboden@gmail.com",
  9091. "homepage": "https://cboden.dev/"
  9092. }
  9093. ],
  9094. "description": "Async DNS resolver for ReactPHP",
  9095. "keywords": [
  9096. "async",
  9097. "dns",
  9098. "dns-resolver",
  9099. "reactphp"
  9100. ],
  9101. "support": {
  9102. "issues": "https://github.com/reactphp/dns/issues",
  9103. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9104. },
  9105. "funding": [
  9106. {
  9107. "url": "https://opencollective.com/reactphp",
  9108. "type": "open_collective"
  9109. }
  9110. ],
  9111. "time": "2023-11-29T12:41:06+00:00"
  9112. },
  9113. {
  9114. "name": "react/event-loop",
  9115. "version": "v1.5.0",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/reactphp/event-loop.git",
  9119. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9124. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": ">=5.3.0"
  9129. },
  9130. "require-dev": {
  9131. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9132. },
  9133. "suggest": {
  9134. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9135. },
  9136. "type": "library",
  9137. "autoload": {
  9138. "psr-4": {
  9139. "React\\EventLoop\\": "src/"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "MIT"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Christian Lück",
  9149. "email": "christian@clue.engineering",
  9150. "homepage": "https://clue.engineering/"
  9151. },
  9152. {
  9153. "name": "Cees-Jan Kiewiet",
  9154. "email": "reactphp@ceesjankiewiet.nl",
  9155. "homepage": "https://wyrihaximus.net/"
  9156. },
  9157. {
  9158. "name": "Jan Sorgalla",
  9159. "email": "jsorgalla@gmail.com",
  9160. "homepage": "https://sorgalla.com/"
  9161. },
  9162. {
  9163. "name": "Chris Boden",
  9164. "email": "cboden@gmail.com",
  9165. "homepage": "https://cboden.dev/"
  9166. }
  9167. ],
  9168. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9169. "keywords": [
  9170. "asynchronous",
  9171. "event-loop"
  9172. ],
  9173. "support": {
  9174. "issues": "https://github.com/reactphp/event-loop/issues",
  9175. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9176. },
  9177. "funding": [
  9178. {
  9179. "url": "https://opencollective.com/reactphp",
  9180. "type": "open_collective"
  9181. }
  9182. ],
  9183. "time": "2023-11-13T13:48:05+00:00"
  9184. },
  9185. {
  9186. "name": "react/promise",
  9187. "version": "v3.2.0",
  9188. "source": {
  9189. "type": "git",
  9190. "url": "https://github.com/reactphp/promise.git",
  9191. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9192. },
  9193. "dist": {
  9194. "type": "zip",
  9195. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9196. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9197. "shasum": ""
  9198. },
  9199. "require": {
  9200. "php": ">=7.1.0"
  9201. },
  9202. "require-dev": {
  9203. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9204. "phpunit/phpunit": "^9.6 || ^7.5"
  9205. },
  9206. "type": "library",
  9207. "autoload": {
  9208. "files": [
  9209. "src/functions_include.php"
  9210. ],
  9211. "psr-4": {
  9212. "React\\Promise\\": "src/"
  9213. }
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "MIT"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Jan Sorgalla",
  9222. "email": "jsorgalla@gmail.com",
  9223. "homepage": "https://sorgalla.com/"
  9224. },
  9225. {
  9226. "name": "Christian Lück",
  9227. "email": "christian@clue.engineering",
  9228. "homepage": "https://clue.engineering/"
  9229. },
  9230. {
  9231. "name": "Cees-Jan Kiewiet",
  9232. "email": "reactphp@ceesjankiewiet.nl",
  9233. "homepage": "https://wyrihaximus.net/"
  9234. },
  9235. {
  9236. "name": "Chris Boden",
  9237. "email": "cboden@gmail.com",
  9238. "homepage": "https://cboden.dev/"
  9239. }
  9240. ],
  9241. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9242. "keywords": [
  9243. "promise",
  9244. "promises"
  9245. ],
  9246. "support": {
  9247. "issues": "https://github.com/reactphp/promise/issues",
  9248. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9249. },
  9250. "funding": [
  9251. {
  9252. "url": "https://opencollective.com/reactphp",
  9253. "type": "open_collective"
  9254. }
  9255. ],
  9256. "time": "2024-05-24T10:39:05+00:00"
  9257. },
  9258. {
  9259. "name": "react/socket",
  9260. "version": "v1.15.0",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/reactphp/socket.git",
  9264. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9269. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9274. "php": ">=5.3.0",
  9275. "react/dns": "^1.11",
  9276. "react/event-loop": "^1.2",
  9277. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9278. "react/stream": "^1.2"
  9279. },
  9280. "require-dev": {
  9281. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9282. "react/async": "^4 || ^3 || ^2",
  9283. "react/promise-stream": "^1.4",
  9284. "react/promise-timer": "^1.10"
  9285. },
  9286. "type": "library",
  9287. "autoload": {
  9288. "psr-4": {
  9289. "React\\Socket\\": "src/"
  9290. }
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "MIT"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Christian Lück",
  9299. "email": "christian@clue.engineering",
  9300. "homepage": "https://clue.engineering/"
  9301. },
  9302. {
  9303. "name": "Cees-Jan Kiewiet",
  9304. "email": "reactphp@ceesjankiewiet.nl",
  9305. "homepage": "https://wyrihaximus.net/"
  9306. },
  9307. {
  9308. "name": "Jan Sorgalla",
  9309. "email": "jsorgalla@gmail.com",
  9310. "homepage": "https://sorgalla.com/"
  9311. },
  9312. {
  9313. "name": "Chris Boden",
  9314. "email": "cboden@gmail.com",
  9315. "homepage": "https://cboden.dev/"
  9316. }
  9317. ],
  9318. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9319. "keywords": [
  9320. "Connection",
  9321. "Socket",
  9322. "async",
  9323. "reactphp",
  9324. "stream"
  9325. ],
  9326. "support": {
  9327. "issues": "https://github.com/reactphp/socket/issues",
  9328. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9329. },
  9330. "funding": [
  9331. {
  9332. "url": "https://opencollective.com/reactphp",
  9333. "type": "open_collective"
  9334. }
  9335. ],
  9336. "time": "2023-12-15T11:02:10+00:00"
  9337. },
  9338. {
  9339. "name": "react/stream",
  9340. "version": "v1.3.0",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/reactphp/stream.git",
  9344. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9349. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9350. "shasum": ""
  9351. },
  9352. "require": {
  9353. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9354. "php": ">=5.3.8",
  9355. "react/event-loop": "^1.2"
  9356. },
  9357. "require-dev": {
  9358. "clue/stream-filter": "~1.2",
  9359. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9360. },
  9361. "type": "library",
  9362. "autoload": {
  9363. "psr-4": {
  9364. "React\\Stream\\": "src/"
  9365. }
  9366. },
  9367. "notification-url": "https://packagist.org/downloads/",
  9368. "license": [
  9369. "MIT"
  9370. ],
  9371. "authors": [
  9372. {
  9373. "name": "Christian Lück",
  9374. "email": "christian@clue.engineering",
  9375. "homepage": "https://clue.engineering/"
  9376. },
  9377. {
  9378. "name": "Cees-Jan Kiewiet",
  9379. "email": "reactphp@ceesjankiewiet.nl",
  9380. "homepage": "https://wyrihaximus.net/"
  9381. },
  9382. {
  9383. "name": "Jan Sorgalla",
  9384. "email": "jsorgalla@gmail.com",
  9385. "homepage": "https://sorgalla.com/"
  9386. },
  9387. {
  9388. "name": "Chris Boden",
  9389. "email": "cboden@gmail.com",
  9390. "homepage": "https://cboden.dev/"
  9391. }
  9392. ],
  9393. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9394. "keywords": [
  9395. "event-driven",
  9396. "io",
  9397. "non-blocking",
  9398. "pipe",
  9399. "reactphp",
  9400. "readable",
  9401. "stream",
  9402. "writable"
  9403. ],
  9404. "support": {
  9405. "issues": "https://github.com/reactphp/stream/issues",
  9406. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9407. },
  9408. "funding": [
  9409. {
  9410. "url": "https://opencollective.com/reactphp",
  9411. "type": "open_collective"
  9412. }
  9413. ],
  9414. "time": "2023-06-16T10:52:11+00:00"
  9415. },
  9416. {
  9417. "name": "sebastian/cli-parser",
  9418. "version": "2.0.1",
  9419. "source": {
  9420. "type": "git",
  9421. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9422. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9423. },
  9424. "dist": {
  9425. "type": "zip",
  9426. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9427. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9428. "shasum": ""
  9429. },
  9430. "require": {
  9431. "php": ">=8.1"
  9432. },
  9433. "require-dev": {
  9434. "phpunit/phpunit": "^10.0"
  9435. },
  9436. "type": "library",
  9437. "extra": {
  9438. "branch-alias": {
  9439. "dev-main": "2.0-dev"
  9440. }
  9441. },
  9442. "autoload": {
  9443. "classmap": [
  9444. "src/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "BSD-3-Clause"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Sebastian Bergmann",
  9454. "email": "sebastian@phpunit.de",
  9455. "role": "lead"
  9456. }
  9457. ],
  9458. "description": "Library for parsing CLI options",
  9459. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9460. "support": {
  9461. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9462. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9463. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9464. },
  9465. "funding": [
  9466. {
  9467. "url": "https://github.com/sebastianbergmann",
  9468. "type": "github"
  9469. }
  9470. ],
  9471. "time": "2024-03-02T07:12:49+00:00"
  9472. },
  9473. {
  9474. "name": "sebastian/code-unit",
  9475. "version": "2.0.0",
  9476. "source": {
  9477. "type": "git",
  9478. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9479. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9480. },
  9481. "dist": {
  9482. "type": "zip",
  9483. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9484. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9485. "shasum": ""
  9486. },
  9487. "require": {
  9488. "php": ">=8.1"
  9489. },
  9490. "require-dev": {
  9491. "phpunit/phpunit": "^10.0"
  9492. },
  9493. "type": "library",
  9494. "extra": {
  9495. "branch-alias": {
  9496. "dev-main": "2.0-dev"
  9497. }
  9498. },
  9499. "autoload": {
  9500. "classmap": [
  9501. "src/"
  9502. ]
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "BSD-3-Clause"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Sebastian Bergmann",
  9511. "email": "sebastian@phpunit.de",
  9512. "role": "lead"
  9513. }
  9514. ],
  9515. "description": "Collection of value objects that represent the PHP code units",
  9516. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9517. "support": {
  9518. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9519. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9520. },
  9521. "funding": [
  9522. {
  9523. "url": "https://github.com/sebastianbergmann",
  9524. "type": "github"
  9525. }
  9526. ],
  9527. "time": "2023-02-03T06:58:43+00:00"
  9528. },
  9529. {
  9530. "name": "sebastian/code-unit-reverse-lookup",
  9531. "version": "3.0.0",
  9532. "source": {
  9533. "type": "git",
  9534. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9535. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9536. },
  9537. "dist": {
  9538. "type": "zip",
  9539. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9540. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9541. "shasum": ""
  9542. },
  9543. "require": {
  9544. "php": ">=8.1"
  9545. },
  9546. "require-dev": {
  9547. "phpunit/phpunit": "^10.0"
  9548. },
  9549. "type": "library",
  9550. "extra": {
  9551. "branch-alias": {
  9552. "dev-main": "3.0-dev"
  9553. }
  9554. },
  9555. "autoload": {
  9556. "classmap": [
  9557. "src/"
  9558. ]
  9559. },
  9560. "notification-url": "https://packagist.org/downloads/",
  9561. "license": [
  9562. "BSD-3-Clause"
  9563. ],
  9564. "authors": [
  9565. {
  9566. "name": "Sebastian Bergmann",
  9567. "email": "sebastian@phpunit.de"
  9568. }
  9569. ],
  9570. "description": "Looks up which function or method a line of code belongs to",
  9571. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9572. "support": {
  9573. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9574. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9575. },
  9576. "funding": [
  9577. {
  9578. "url": "https://github.com/sebastianbergmann",
  9579. "type": "github"
  9580. }
  9581. ],
  9582. "time": "2023-02-03T06:59:15+00:00"
  9583. },
  9584. {
  9585. "name": "sebastian/comparator",
  9586. "version": "5.0.1",
  9587. "source": {
  9588. "type": "git",
  9589. "url": "https://github.com/sebastianbergmann/comparator.git",
  9590. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9591. },
  9592. "dist": {
  9593. "type": "zip",
  9594. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9595. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9596. "shasum": ""
  9597. },
  9598. "require": {
  9599. "ext-dom": "*",
  9600. "ext-mbstring": "*",
  9601. "php": ">=8.1",
  9602. "sebastian/diff": "^5.0",
  9603. "sebastian/exporter": "^5.0"
  9604. },
  9605. "require-dev": {
  9606. "phpunit/phpunit": "^10.3"
  9607. },
  9608. "type": "library",
  9609. "extra": {
  9610. "branch-alias": {
  9611. "dev-main": "5.0-dev"
  9612. }
  9613. },
  9614. "autoload": {
  9615. "classmap": [
  9616. "src/"
  9617. ]
  9618. },
  9619. "notification-url": "https://packagist.org/downloads/",
  9620. "license": [
  9621. "BSD-3-Clause"
  9622. ],
  9623. "authors": [
  9624. {
  9625. "name": "Sebastian Bergmann",
  9626. "email": "sebastian@phpunit.de"
  9627. },
  9628. {
  9629. "name": "Jeff Welch",
  9630. "email": "whatthejeff@gmail.com"
  9631. },
  9632. {
  9633. "name": "Volker Dusch",
  9634. "email": "github@wallbash.com"
  9635. },
  9636. {
  9637. "name": "Bernhard Schussek",
  9638. "email": "bschussek@2bepublished.at"
  9639. }
  9640. ],
  9641. "description": "Provides the functionality to compare PHP values for equality",
  9642. "homepage": "https://github.com/sebastianbergmann/comparator",
  9643. "keywords": [
  9644. "comparator",
  9645. "compare",
  9646. "equality"
  9647. ],
  9648. "support": {
  9649. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9650. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9651. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9652. },
  9653. "funding": [
  9654. {
  9655. "url": "https://github.com/sebastianbergmann",
  9656. "type": "github"
  9657. }
  9658. ],
  9659. "time": "2023-08-14T13:18:12+00:00"
  9660. },
  9661. {
  9662. "name": "sebastian/complexity",
  9663. "version": "3.2.0",
  9664. "source": {
  9665. "type": "git",
  9666. "url": "https://github.com/sebastianbergmann/complexity.git",
  9667. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9668. },
  9669. "dist": {
  9670. "type": "zip",
  9671. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9672. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9673. "shasum": ""
  9674. },
  9675. "require": {
  9676. "nikic/php-parser": "^4.18 || ^5.0",
  9677. "php": ">=8.1"
  9678. },
  9679. "require-dev": {
  9680. "phpunit/phpunit": "^10.0"
  9681. },
  9682. "type": "library",
  9683. "extra": {
  9684. "branch-alias": {
  9685. "dev-main": "3.2-dev"
  9686. }
  9687. },
  9688. "autoload": {
  9689. "classmap": [
  9690. "src/"
  9691. ]
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "BSD-3-Clause"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Sebastian Bergmann",
  9700. "email": "sebastian@phpunit.de",
  9701. "role": "lead"
  9702. }
  9703. ],
  9704. "description": "Library for calculating the complexity of PHP code units",
  9705. "homepage": "https://github.com/sebastianbergmann/complexity",
  9706. "support": {
  9707. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9708. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9709. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9710. },
  9711. "funding": [
  9712. {
  9713. "url": "https://github.com/sebastianbergmann",
  9714. "type": "github"
  9715. }
  9716. ],
  9717. "time": "2023-12-21T08:37:17+00:00"
  9718. },
  9719. {
  9720. "name": "sebastian/diff",
  9721. "version": "5.1.1",
  9722. "source": {
  9723. "type": "git",
  9724. "url": "https://github.com/sebastianbergmann/diff.git",
  9725. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9726. },
  9727. "dist": {
  9728. "type": "zip",
  9729. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9730. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9731. "shasum": ""
  9732. },
  9733. "require": {
  9734. "php": ">=8.1"
  9735. },
  9736. "require-dev": {
  9737. "phpunit/phpunit": "^10.0",
  9738. "symfony/process": "^6.4"
  9739. },
  9740. "type": "library",
  9741. "extra": {
  9742. "branch-alias": {
  9743. "dev-main": "5.1-dev"
  9744. }
  9745. },
  9746. "autoload": {
  9747. "classmap": [
  9748. "src/"
  9749. ]
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "BSD-3-Clause"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Sebastian Bergmann",
  9758. "email": "sebastian@phpunit.de"
  9759. },
  9760. {
  9761. "name": "Kore Nordmann",
  9762. "email": "mail@kore-nordmann.de"
  9763. }
  9764. ],
  9765. "description": "Diff implementation",
  9766. "homepage": "https://github.com/sebastianbergmann/diff",
  9767. "keywords": [
  9768. "diff",
  9769. "udiff",
  9770. "unidiff",
  9771. "unified diff"
  9772. ],
  9773. "support": {
  9774. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9775. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9776. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://github.com/sebastianbergmann",
  9781. "type": "github"
  9782. }
  9783. ],
  9784. "time": "2024-03-02T07:15:17+00:00"
  9785. },
  9786. {
  9787. "name": "sebastian/environment",
  9788. "version": "6.1.0",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/sebastianbergmann/environment.git",
  9792. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9797. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=8.1"
  9802. },
  9803. "require-dev": {
  9804. "phpunit/phpunit": "^10.0"
  9805. },
  9806. "suggest": {
  9807. "ext-posix": "*"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-main": "6.1-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "classmap": [
  9817. "src/"
  9818. ]
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "BSD-3-Clause"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Sebastian Bergmann",
  9827. "email": "sebastian@phpunit.de"
  9828. }
  9829. ],
  9830. "description": "Provides functionality to handle HHVM/PHP environments",
  9831. "homepage": "https://github.com/sebastianbergmann/environment",
  9832. "keywords": [
  9833. "Xdebug",
  9834. "environment",
  9835. "hhvm"
  9836. ],
  9837. "support": {
  9838. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9839. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9840. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9841. },
  9842. "funding": [
  9843. {
  9844. "url": "https://github.com/sebastianbergmann",
  9845. "type": "github"
  9846. }
  9847. ],
  9848. "time": "2024-03-23T08:47:14+00:00"
  9849. },
  9850. {
  9851. "name": "sebastian/exporter",
  9852. "version": "5.1.2",
  9853. "source": {
  9854. "type": "git",
  9855. "url": "https://github.com/sebastianbergmann/exporter.git",
  9856. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9857. },
  9858. "dist": {
  9859. "type": "zip",
  9860. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9861. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9862. "shasum": ""
  9863. },
  9864. "require": {
  9865. "ext-mbstring": "*",
  9866. "php": ">=8.1",
  9867. "sebastian/recursion-context": "^5.0"
  9868. },
  9869. "require-dev": {
  9870. "phpunit/phpunit": "^10.0"
  9871. },
  9872. "type": "library",
  9873. "extra": {
  9874. "branch-alias": {
  9875. "dev-main": "5.1-dev"
  9876. }
  9877. },
  9878. "autoload": {
  9879. "classmap": [
  9880. "src/"
  9881. ]
  9882. },
  9883. "notification-url": "https://packagist.org/downloads/",
  9884. "license": [
  9885. "BSD-3-Clause"
  9886. ],
  9887. "authors": [
  9888. {
  9889. "name": "Sebastian Bergmann",
  9890. "email": "sebastian@phpunit.de"
  9891. },
  9892. {
  9893. "name": "Jeff Welch",
  9894. "email": "whatthejeff@gmail.com"
  9895. },
  9896. {
  9897. "name": "Volker Dusch",
  9898. "email": "github@wallbash.com"
  9899. },
  9900. {
  9901. "name": "Adam Harvey",
  9902. "email": "aharvey@php.net"
  9903. },
  9904. {
  9905. "name": "Bernhard Schussek",
  9906. "email": "bschussek@gmail.com"
  9907. }
  9908. ],
  9909. "description": "Provides the functionality to export PHP variables for visualization",
  9910. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9911. "keywords": [
  9912. "export",
  9913. "exporter"
  9914. ],
  9915. "support": {
  9916. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9917. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9918. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://github.com/sebastianbergmann",
  9923. "type": "github"
  9924. }
  9925. ],
  9926. "time": "2024-03-02T07:17:12+00:00"
  9927. },
  9928. {
  9929. "name": "sebastian/global-state",
  9930. "version": "6.0.2",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/sebastianbergmann/global-state.git",
  9934. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9939. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "php": ">=8.1",
  9944. "sebastian/object-reflector": "^3.0",
  9945. "sebastian/recursion-context": "^5.0"
  9946. },
  9947. "require-dev": {
  9948. "ext-dom": "*",
  9949. "phpunit/phpunit": "^10.0"
  9950. },
  9951. "type": "library",
  9952. "extra": {
  9953. "branch-alias": {
  9954. "dev-main": "6.0-dev"
  9955. }
  9956. },
  9957. "autoload": {
  9958. "classmap": [
  9959. "src/"
  9960. ]
  9961. },
  9962. "notification-url": "https://packagist.org/downloads/",
  9963. "license": [
  9964. "BSD-3-Clause"
  9965. ],
  9966. "authors": [
  9967. {
  9968. "name": "Sebastian Bergmann",
  9969. "email": "sebastian@phpunit.de"
  9970. }
  9971. ],
  9972. "description": "Snapshotting of global state",
  9973. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9974. "keywords": [
  9975. "global state"
  9976. ],
  9977. "support": {
  9978. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9979. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9980. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9981. },
  9982. "funding": [
  9983. {
  9984. "url": "https://github.com/sebastianbergmann",
  9985. "type": "github"
  9986. }
  9987. ],
  9988. "time": "2024-03-02T07:19:19+00:00"
  9989. },
  9990. {
  9991. "name": "sebastian/lines-of-code",
  9992. "version": "2.0.2",
  9993. "source": {
  9994. "type": "git",
  9995. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9996. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9997. },
  9998. "dist": {
  9999. "type": "zip",
  10000. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10001. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10002. "shasum": ""
  10003. },
  10004. "require": {
  10005. "nikic/php-parser": "^4.18 || ^5.0",
  10006. "php": ">=8.1"
  10007. },
  10008. "require-dev": {
  10009. "phpunit/phpunit": "^10.0"
  10010. },
  10011. "type": "library",
  10012. "extra": {
  10013. "branch-alias": {
  10014. "dev-main": "2.0-dev"
  10015. }
  10016. },
  10017. "autoload": {
  10018. "classmap": [
  10019. "src/"
  10020. ]
  10021. },
  10022. "notification-url": "https://packagist.org/downloads/",
  10023. "license": [
  10024. "BSD-3-Clause"
  10025. ],
  10026. "authors": [
  10027. {
  10028. "name": "Sebastian Bergmann",
  10029. "email": "sebastian@phpunit.de",
  10030. "role": "lead"
  10031. }
  10032. ],
  10033. "description": "Library for counting the lines of code in PHP source code",
  10034. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10035. "support": {
  10036. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10037. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10038. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10039. },
  10040. "funding": [
  10041. {
  10042. "url": "https://github.com/sebastianbergmann",
  10043. "type": "github"
  10044. }
  10045. ],
  10046. "time": "2023-12-21T08:38:20+00:00"
  10047. },
  10048. {
  10049. "name": "sebastian/object-enumerator",
  10050. "version": "5.0.0",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10054. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10059. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=8.1",
  10064. "sebastian/object-reflector": "^3.0",
  10065. "sebastian/recursion-context": "^5.0"
  10066. },
  10067. "require-dev": {
  10068. "phpunit/phpunit": "^10.0"
  10069. },
  10070. "type": "library",
  10071. "extra": {
  10072. "branch-alias": {
  10073. "dev-main": "5.0-dev"
  10074. }
  10075. },
  10076. "autoload": {
  10077. "classmap": [
  10078. "src/"
  10079. ]
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "BSD-3-Clause"
  10084. ],
  10085. "authors": [
  10086. {
  10087. "name": "Sebastian Bergmann",
  10088. "email": "sebastian@phpunit.de"
  10089. }
  10090. ],
  10091. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10092. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10093. "support": {
  10094. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10095. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10096. },
  10097. "funding": [
  10098. {
  10099. "url": "https://github.com/sebastianbergmann",
  10100. "type": "github"
  10101. }
  10102. ],
  10103. "time": "2023-02-03T07:08:32+00:00"
  10104. },
  10105. {
  10106. "name": "sebastian/object-reflector",
  10107. "version": "3.0.0",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10111. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10116. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "php": ">=8.1"
  10121. },
  10122. "require-dev": {
  10123. "phpunit/phpunit": "^10.0"
  10124. },
  10125. "type": "library",
  10126. "extra": {
  10127. "branch-alias": {
  10128. "dev-main": "3.0-dev"
  10129. }
  10130. },
  10131. "autoload": {
  10132. "classmap": [
  10133. "src/"
  10134. ]
  10135. },
  10136. "notification-url": "https://packagist.org/downloads/",
  10137. "license": [
  10138. "BSD-3-Clause"
  10139. ],
  10140. "authors": [
  10141. {
  10142. "name": "Sebastian Bergmann",
  10143. "email": "sebastian@phpunit.de"
  10144. }
  10145. ],
  10146. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10147. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10148. "support": {
  10149. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10150. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10151. },
  10152. "funding": [
  10153. {
  10154. "url": "https://github.com/sebastianbergmann",
  10155. "type": "github"
  10156. }
  10157. ],
  10158. "time": "2023-02-03T07:06:18+00:00"
  10159. },
  10160. {
  10161. "name": "sebastian/recursion-context",
  10162. "version": "5.0.0",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10166. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10171. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "php": ">=8.1"
  10176. },
  10177. "require-dev": {
  10178. "phpunit/phpunit": "^10.0"
  10179. },
  10180. "type": "library",
  10181. "extra": {
  10182. "branch-alias": {
  10183. "dev-main": "5.0-dev"
  10184. }
  10185. },
  10186. "autoload": {
  10187. "classmap": [
  10188. "src/"
  10189. ]
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "BSD-3-Clause"
  10194. ],
  10195. "authors": [
  10196. {
  10197. "name": "Sebastian Bergmann",
  10198. "email": "sebastian@phpunit.de"
  10199. },
  10200. {
  10201. "name": "Jeff Welch",
  10202. "email": "whatthejeff@gmail.com"
  10203. },
  10204. {
  10205. "name": "Adam Harvey",
  10206. "email": "aharvey@php.net"
  10207. }
  10208. ],
  10209. "description": "Provides functionality to recursively process PHP variables",
  10210. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10211. "support": {
  10212. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10213. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10214. },
  10215. "funding": [
  10216. {
  10217. "url": "https://github.com/sebastianbergmann",
  10218. "type": "github"
  10219. }
  10220. ],
  10221. "time": "2023-02-03T07:05:40+00:00"
  10222. },
  10223. {
  10224. "name": "sebastian/type",
  10225. "version": "4.0.0",
  10226. "source": {
  10227. "type": "git",
  10228. "url": "https://github.com/sebastianbergmann/type.git",
  10229. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10230. },
  10231. "dist": {
  10232. "type": "zip",
  10233. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10234. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10235. "shasum": ""
  10236. },
  10237. "require": {
  10238. "php": ">=8.1"
  10239. },
  10240. "require-dev": {
  10241. "phpunit/phpunit": "^10.0"
  10242. },
  10243. "type": "library",
  10244. "extra": {
  10245. "branch-alias": {
  10246. "dev-main": "4.0-dev"
  10247. }
  10248. },
  10249. "autoload": {
  10250. "classmap": [
  10251. "src/"
  10252. ]
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "BSD-3-Clause"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Sebastian Bergmann",
  10261. "email": "sebastian@phpunit.de",
  10262. "role": "lead"
  10263. }
  10264. ],
  10265. "description": "Collection of value objects that represent the types of the PHP type system",
  10266. "homepage": "https://github.com/sebastianbergmann/type",
  10267. "support": {
  10268. "issues": "https://github.com/sebastianbergmann/type/issues",
  10269. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10270. },
  10271. "funding": [
  10272. {
  10273. "url": "https://github.com/sebastianbergmann",
  10274. "type": "github"
  10275. }
  10276. ],
  10277. "time": "2023-02-03T07:10:45+00:00"
  10278. },
  10279. {
  10280. "name": "sebastian/version",
  10281. "version": "4.0.1",
  10282. "source": {
  10283. "type": "git",
  10284. "url": "https://github.com/sebastianbergmann/version.git",
  10285. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10286. },
  10287. "dist": {
  10288. "type": "zip",
  10289. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10290. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10291. "shasum": ""
  10292. },
  10293. "require": {
  10294. "php": ">=8.1"
  10295. },
  10296. "type": "library",
  10297. "extra": {
  10298. "branch-alias": {
  10299. "dev-main": "4.0-dev"
  10300. }
  10301. },
  10302. "autoload": {
  10303. "classmap": [
  10304. "src/"
  10305. ]
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "BSD-3-Clause"
  10310. ],
  10311. "authors": [
  10312. {
  10313. "name": "Sebastian Bergmann",
  10314. "email": "sebastian@phpunit.de",
  10315. "role": "lead"
  10316. }
  10317. ],
  10318. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10319. "homepage": "https://github.com/sebastianbergmann/version",
  10320. "support": {
  10321. "issues": "https://github.com/sebastianbergmann/version/issues",
  10322. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10323. },
  10324. "funding": [
  10325. {
  10326. "url": "https://github.com/sebastianbergmann",
  10327. "type": "github"
  10328. }
  10329. ],
  10330. "time": "2023-02-07T11:34:05+00:00"
  10331. },
  10332. {
  10333. "name": "swoole/ide-helper",
  10334. "version": "5.1.2",
  10335. "source": {
  10336. "type": "git",
  10337. "url": "https://github.com/swoole/ide-helper.git",
  10338. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10339. },
  10340. "dist": {
  10341. "type": "zip",
  10342. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10343. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10344. "shasum": ""
  10345. },
  10346. "type": "library",
  10347. "notification-url": "https://packagist.org/downloads/",
  10348. "license": [
  10349. "Apache-2.0"
  10350. ],
  10351. "authors": [
  10352. {
  10353. "name": "Team Swoole",
  10354. "email": "team@swoole.com"
  10355. }
  10356. ],
  10357. "description": "IDE help files for Swoole.",
  10358. "support": {
  10359. "issues": "https://github.com/swoole/ide-helper/issues",
  10360. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10361. },
  10362. "time": "2024-02-01T22:28:11+00:00"
  10363. },
  10364. {
  10365. "name": "symfony/event-dispatcher",
  10366. "version": "v6.4.8",
  10367. "source": {
  10368. "type": "git",
  10369. "url": "https://github.com/symfony/event-dispatcher.git",
  10370. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10371. },
  10372. "dist": {
  10373. "type": "zip",
  10374. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10375. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10376. "shasum": ""
  10377. },
  10378. "require": {
  10379. "php": ">=8.1",
  10380. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10381. },
  10382. "conflict": {
  10383. "symfony/dependency-injection": "<5.4",
  10384. "symfony/service-contracts": "<2.5"
  10385. },
  10386. "provide": {
  10387. "psr/event-dispatcher-implementation": "1.0",
  10388. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10389. },
  10390. "require-dev": {
  10391. "psr/log": "^1|^2|^3",
  10392. "symfony/config": "^5.4|^6.0|^7.0",
  10393. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10394. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10395. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10396. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10397. "symfony/service-contracts": "^2.5|^3",
  10398. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10399. },
  10400. "type": "library",
  10401. "autoload": {
  10402. "psr-4": {
  10403. "Symfony\\Component\\EventDispatcher\\": ""
  10404. },
  10405. "exclude-from-classmap": [
  10406. "/Tests/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "MIT"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Fabien Potencier",
  10416. "email": "fabien@symfony.com"
  10417. },
  10418. {
  10419. "name": "Symfony Community",
  10420. "homepage": "https://symfony.com/contributors"
  10421. }
  10422. ],
  10423. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10424. "homepage": "https://symfony.com",
  10425. "support": {
  10426. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10427. },
  10428. "funding": [
  10429. {
  10430. "url": "https://symfony.com/sponsor",
  10431. "type": "custom"
  10432. },
  10433. {
  10434. "url": "https://github.com/fabpot",
  10435. "type": "github"
  10436. },
  10437. {
  10438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10439. "type": "tidelift"
  10440. }
  10441. ],
  10442. "time": "2024-05-31T14:49:08+00:00"
  10443. },
  10444. {
  10445. "name": "symfony/event-dispatcher-contracts",
  10446. "version": "v3.5.0",
  10447. "source": {
  10448. "type": "git",
  10449. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10450. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10451. },
  10452. "dist": {
  10453. "type": "zip",
  10454. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10455. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10456. "shasum": ""
  10457. },
  10458. "require": {
  10459. "php": ">=8.1",
  10460. "psr/event-dispatcher": "^1"
  10461. },
  10462. "type": "library",
  10463. "extra": {
  10464. "branch-alias": {
  10465. "dev-main": "3.5-dev"
  10466. },
  10467. "thanks": {
  10468. "name": "symfony/contracts",
  10469. "url": "https://github.com/symfony/contracts"
  10470. }
  10471. },
  10472. "autoload": {
  10473. "psr-4": {
  10474. "Symfony\\Contracts\\EventDispatcher\\": ""
  10475. }
  10476. },
  10477. "notification-url": "https://packagist.org/downloads/",
  10478. "license": [
  10479. "MIT"
  10480. ],
  10481. "authors": [
  10482. {
  10483. "name": "Nicolas Grekas",
  10484. "email": "p@tchwork.com"
  10485. },
  10486. {
  10487. "name": "Symfony Community",
  10488. "homepage": "https://symfony.com/contributors"
  10489. }
  10490. ],
  10491. "description": "Generic abstractions related to dispatching event",
  10492. "homepage": "https://symfony.com",
  10493. "keywords": [
  10494. "abstractions",
  10495. "contracts",
  10496. "decoupling",
  10497. "interfaces",
  10498. "interoperability",
  10499. "standards"
  10500. ],
  10501. "support": {
  10502. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10503. },
  10504. "funding": [
  10505. {
  10506. "url": "https://symfony.com/sponsor",
  10507. "type": "custom"
  10508. },
  10509. {
  10510. "url": "https://github.com/fabpot",
  10511. "type": "github"
  10512. },
  10513. {
  10514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10515. "type": "tidelift"
  10516. }
  10517. ],
  10518. "time": "2024-04-18T09:32:20+00:00"
  10519. },
  10520. {
  10521. "name": "symfony/filesystem",
  10522. "version": "v6.4.8",
  10523. "source": {
  10524. "type": "git",
  10525. "url": "https://github.com/symfony/filesystem.git",
  10526. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10527. },
  10528. "dist": {
  10529. "type": "zip",
  10530. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10531. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10532. "shasum": ""
  10533. },
  10534. "require": {
  10535. "php": ">=8.1",
  10536. "symfony/polyfill-ctype": "~1.8",
  10537. "symfony/polyfill-mbstring": "~1.8"
  10538. },
  10539. "require-dev": {
  10540. "symfony/process": "^5.4|^6.4|^7.0"
  10541. },
  10542. "type": "library",
  10543. "autoload": {
  10544. "psr-4": {
  10545. "Symfony\\Component\\Filesystem\\": ""
  10546. },
  10547. "exclude-from-classmap": [
  10548. "/Tests/"
  10549. ]
  10550. },
  10551. "notification-url": "https://packagist.org/downloads/",
  10552. "license": [
  10553. "MIT"
  10554. ],
  10555. "authors": [
  10556. {
  10557. "name": "Fabien Potencier",
  10558. "email": "fabien@symfony.com"
  10559. },
  10560. {
  10561. "name": "Symfony Community",
  10562. "homepage": "https://symfony.com/contributors"
  10563. }
  10564. ],
  10565. "description": "Provides basic utilities for the filesystem",
  10566. "homepage": "https://symfony.com",
  10567. "support": {
  10568. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10569. },
  10570. "funding": [
  10571. {
  10572. "url": "https://symfony.com/sponsor",
  10573. "type": "custom"
  10574. },
  10575. {
  10576. "url": "https://github.com/fabpot",
  10577. "type": "github"
  10578. },
  10579. {
  10580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10581. "type": "tidelift"
  10582. }
  10583. ],
  10584. "time": "2024-05-31T14:49:08+00:00"
  10585. },
  10586. {
  10587. "name": "symfony/http-foundation",
  10588. "version": "v6.4.8",
  10589. "source": {
  10590. "type": "git",
  10591. "url": "https://github.com/symfony/http-foundation.git",
  10592. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10593. },
  10594. "dist": {
  10595. "type": "zip",
  10596. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10597. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10598. "shasum": ""
  10599. },
  10600. "require": {
  10601. "php": ">=8.1",
  10602. "symfony/deprecation-contracts": "^2.5|^3",
  10603. "symfony/polyfill-mbstring": "~1.1",
  10604. "symfony/polyfill-php83": "^1.27"
  10605. },
  10606. "conflict": {
  10607. "symfony/cache": "<6.3"
  10608. },
  10609. "require-dev": {
  10610. "doctrine/dbal": "^2.13.1|^3|^4",
  10611. "predis/predis": "^1.1|^2.0",
  10612. "symfony/cache": "^6.3|^7.0",
  10613. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10614. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10615. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10616. "symfony/mime": "^5.4|^6.0|^7.0",
  10617. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10618. },
  10619. "type": "library",
  10620. "autoload": {
  10621. "psr-4": {
  10622. "Symfony\\Component\\HttpFoundation\\": ""
  10623. },
  10624. "exclude-from-classmap": [
  10625. "/Tests/"
  10626. ]
  10627. },
  10628. "notification-url": "https://packagist.org/downloads/",
  10629. "license": [
  10630. "MIT"
  10631. ],
  10632. "authors": [
  10633. {
  10634. "name": "Fabien Potencier",
  10635. "email": "fabien@symfony.com"
  10636. },
  10637. {
  10638. "name": "Symfony Community",
  10639. "homepage": "https://symfony.com/contributors"
  10640. }
  10641. ],
  10642. "description": "Defines an object-oriented layer for the HTTP specification",
  10643. "homepage": "https://symfony.com",
  10644. "support": {
  10645. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10646. },
  10647. "funding": [
  10648. {
  10649. "url": "https://symfony.com/sponsor",
  10650. "type": "custom"
  10651. },
  10652. {
  10653. "url": "https://github.com/fabpot",
  10654. "type": "github"
  10655. },
  10656. {
  10657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10658. "type": "tidelift"
  10659. }
  10660. ],
  10661. "time": "2024-05-31T14:49:08+00:00"
  10662. },
  10663. {
  10664. "name": "symfony/options-resolver",
  10665. "version": "v6.4.8",
  10666. "source": {
  10667. "type": "git",
  10668. "url": "https://github.com/symfony/options-resolver.git",
  10669. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10670. },
  10671. "dist": {
  10672. "type": "zip",
  10673. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10674. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10675. "shasum": ""
  10676. },
  10677. "require": {
  10678. "php": ">=8.1",
  10679. "symfony/deprecation-contracts": "^2.5|^3"
  10680. },
  10681. "type": "library",
  10682. "autoload": {
  10683. "psr-4": {
  10684. "Symfony\\Component\\OptionsResolver\\": ""
  10685. },
  10686. "exclude-from-classmap": [
  10687. "/Tests/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "MIT"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Fabien Potencier",
  10697. "email": "fabien@symfony.com"
  10698. },
  10699. {
  10700. "name": "Symfony Community",
  10701. "homepage": "https://symfony.com/contributors"
  10702. }
  10703. ],
  10704. "description": "Provides an improved replacement for the array_replace PHP function",
  10705. "homepage": "https://symfony.com",
  10706. "keywords": [
  10707. "config",
  10708. "configuration",
  10709. "options"
  10710. ],
  10711. "support": {
  10712. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10713. },
  10714. "funding": [
  10715. {
  10716. "url": "https://symfony.com/sponsor",
  10717. "type": "custom"
  10718. },
  10719. {
  10720. "url": "https://github.com/fabpot",
  10721. "type": "github"
  10722. },
  10723. {
  10724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10725. "type": "tidelift"
  10726. }
  10727. ],
  10728. "time": "2024-05-31T14:49:08+00:00"
  10729. },
  10730. {
  10731. "name": "symfony/polyfill-php81",
  10732. "version": "v1.29.0",
  10733. "source": {
  10734. "type": "git",
  10735. "url": "https://github.com/symfony/polyfill-php81.git",
  10736. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10737. },
  10738. "dist": {
  10739. "type": "zip",
  10740. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10741. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10742. "shasum": ""
  10743. },
  10744. "require": {
  10745. "php": ">=7.1"
  10746. },
  10747. "type": "library",
  10748. "extra": {
  10749. "thanks": {
  10750. "name": "symfony/polyfill",
  10751. "url": "https://github.com/symfony/polyfill"
  10752. }
  10753. },
  10754. "autoload": {
  10755. "files": [
  10756. "bootstrap.php"
  10757. ],
  10758. "psr-4": {
  10759. "Symfony\\Polyfill\\Php81\\": ""
  10760. },
  10761. "classmap": [
  10762. "Resources/stubs"
  10763. ]
  10764. },
  10765. "notification-url": "https://packagist.org/downloads/",
  10766. "license": [
  10767. "MIT"
  10768. ],
  10769. "authors": [
  10770. {
  10771. "name": "Nicolas Grekas",
  10772. "email": "p@tchwork.com"
  10773. },
  10774. {
  10775. "name": "Symfony Community",
  10776. "homepage": "https://symfony.com/contributors"
  10777. }
  10778. ],
  10779. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10780. "homepage": "https://symfony.com",
  10781. "keywords": [
  10782. "compatibility",
  10783. "polyfill",
  10784. "portable",
  10785. "shim"
  10786. ],
  10787. "support": {
  10788. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10789. },
  10790. "funding": [
  10791. {
  10792. "url": "https://symfony.com/sponsor",
  10793. "type": "custom"
  10794. },
  10795. {
  10796. "url": "https://github.com/fabpot",
  10797. "type": "github"
  10798. },
  10799. {
  10800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10801. "type": "tidelift"
  10802. }
  10803. ],
  10804. "time": "2024-01-29T20:11:03+00:00"
  10805. },
  10806. {
  10807. "name": "symfony/polyfill-php83",
  10808. "version": "v1.29.0",
  10809. "source": {
  10810. "type": "git",
  10811. "url": "https://github.com/symfony/polyfill-php83.git",
  10812. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10813. },
  10814. "dist": {
  10815. "type": "zip",
  10816. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10817. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10818. "shasum": ""
  10819. },
  10820. "require": {
  10821. "php": ">=7.1",
  10822. "symfony/polyfill-php80": "^1.14"
  10823. },
  10824. "type": "library",
  10825. "extra": {
  10826. "thanks": {
  10827. "name": "symfony/polyfill",
  10828. "url": "https://github.com/symfony/polyfill"
  10829. }
  10830. },
  10831. "autoload": {
  10832. "files": [
  10833. "bootstrap.php"
  10834. ],
  10835. "psr-4": {
  10836. "Symfony\\Polyfill\\Php83\\": ""
  10837. },
  10838. "classmap": [
  10839. "Resources/stubs"
  10840. ]
  10841. },
  10842. "notification-url": "https://packagist.org/downloads/",
  10843. "license": [
  10844. "MIT"
  10845. ],
  10846. "authors": [
  10847. {
  10848. "name": "Nicolas Grekas",
  10849. "email": "p@tchwork.com"
  10850. },
  10851. {
  10852. "name": "Symfony Community",
  10853. "homepage": "https://symfony.com/contributors"
  10854. }
  10855. ],
  10856. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10857. "homepage": "https://symfony.com",
  10858. "keywords": [
  10859. "compatibility",
  10860. "polyfill",
  10861. "portable",
  10862. "shim"
  10863. ],
  10864. "support": {
  10865. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10866. },
  10867. "funding": [
  10868. {
  10869. "url": "https://symfony.com/sponsor",
  10870. "type": "custom"
  10871. },
  10872. {
  10873. "url": "https://github.com/fabpot",
  10874. "type": "github"
  10875. },
  10876. {
  10877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10878. "type": "tidelift"
  10879. }
  10880. ],
  10881. "time": "2024-01-29T20:11:03+00:00"
  10882. },
  10883. {
  10884. "name": "symfony/process",
  10885. "version": "v6.4.8",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/symfony/process.git",
  10889. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10894. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10895. "shasum": ""
  10896. },
  10897. "require": {
  10898. "php": ">=8.1"
  10899. },
  10900. "type": "library",
  10901. "autoload": {
  10902. "psr-4": {
  10903. "Symfony\\Component\\Process\\": ""
  10904. },
  10905. "exclude-from-classmap": [
  10906. "/Tests/"
  10907. ]
  10908. },
  10909. "notification-url": "https://packagist.org/downloads/",
  10910. "license": [
  10911. "MIT"
  10912. ],
  10913. "authors": [
  10914. {
  10915. "name": "Fabien Potencier",
  10916. "email": "fabien@symfony.com"
  10917. },
  10918. {
  10919. "name": "Symfony Community",
  10920. "homepage": "https://symfony.com/contributors"
  10921. }
  10922. ],
  10923. "description": "Executes commands in sub-processes",
  10924. "homepage": "https://symfony.com",
  10925. "support": {
  10926. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10927. },
  10928. "funding": [
  10929. {
  10930. "url": "https://symfony.com/sponsor",
  10931. "type": "custom"
  10932. },
  10933. {
  10934. "url": "https://github.com/fabpot",
  10935. "type": "github"
  10936. },
  10937. {
  10938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10939. "type": "tidelift"
  10940. }
  10941. ],
  10942. "time": "2024-05-31T14:49:08+00:00"
  10943. },
  10944. {
  10945. "name": "symfony/stopwatch",
  10946. "version": "v6.4.8",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/symfony/stopwatch.git",
  10950. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10955. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": ">=8.1",
  10960. "symfony/service-contracts": "^2.5|^3"
  10961. },
  10962. "type": "library",
  10963. "autoload": {
  10964. "psr-4": {
  10965. "Symfony\\Component\\Stopwatch\\": ""
  10966. },
  10967. "exclude-from-classmap": [
  10968. "/Tests/"
  10969. ]
  10970. },
  10971. "notification-url": "https://packagist.org/downloads/",
  10972. "license": [
  10973. "MIT"
  10974. ],
  10975. "authors": [
  10976. {
  10977. "name": "Fabien Potencier",
  10978. "email": "fabien@symfony.com"
  10979. },
  10980. {
  10981. "name": "Symfony Community",
  10982. "homepage": "https://symfony.com/contributors"
  10983. }
  10984. ],
  10985. "description": "Provides a way to profile code",
  10986. "homepage": "https://symfony.com",
  10987. "support": {
  10988. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10989. },
  10990. "funding": [
  10991. {
  10992. "url": "https://symfony.com/sponsor",
  10993. "type": "custom"
  10994. },
  10995. {
  10996. "url": "https://github.com/fabpot",
  10997. "type": "github"
  10998. },
  10999. {
  11000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11001. "type": "tidelift"
  11002. }
  11003. ],
  11004. "time": "2024-05-31T14:49:08+00:00"
  11005. },
  11006. {
  11007. "name": "theseer/tokenizer",
  11008. "version": "1.2.3",
  11009. "source": {
  11010. "type": "git",
  11011. "url": "https://github.com/theseer/tokenizer.git",
  11012. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11013. },
  11014. "dist": {
  11015. "type": "zip",
  11016. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11017. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11018. "shasum": ""
  11019. },
  11020. "require": {
  11021. "ext-dom": "*",
  11022. "ext-tokenizer": "*",
  11023. "ext-xmlwriter": "*",
  11024. "php": "^7.2 || ^8.0"
  11025. },
  11026. "type": "library",
  11027. "autoload": {
  11028. "classmap": [
  11029. "src/"
  11030. ]
  11031. },
  11032. "notification-url": "https://packagist.org/downloads/",
  11033. "license": [
  11034. "BSD-3-Clause"
  11035. ],
  11036. "authors": [
  11037. {
  11038. "name": "Arne Blankerts",
  11039. "email": "arne@blankerts.de",
  11040. "role": "Developer"
  11041. }
  11042. ],
  11043. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11044. "support": {
  11045. "issues": "https://github.com/theseer/tokenizer/issues",
  11046. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11047. },
  11048. "funding": [
  11049. {
  11050. "url": "https://github.com/theseer",
  11051. "type": "github"
  11052. }
  11053. ],
  11054. "time": "2024-03-03T12:36:25+00:00"
  11055. }
  11056. ],
  11057. "aliases": [],
  11058. "minimum-stability": "dev",
  11059. "stability-flags": [],
  11060. "prefer-stable": true,
  11061. "prefer-lowest": false,
  11062. "platform": {
  11063. "php": ">=8.1"
  11064. },
  11065. "platform-dev": [],
  11066. "plugin-api-version": "2.6.0"
  11067. }