composer.lock 416 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e71f383836139c57d31eb8084467a897",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.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": "easyswoole/spl",
  501. "version": "2.1.2",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "bc90f12574f8c69e72afd8e61de9bfd186802077"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/bc90f12574f8c69e72afd8e61de9bfd186802077",
  510. "reference": "bc90f12574f8c69e72afd8e61de9bfd186802077",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.2"
  551. },
  552. "time": "2024-03-19T06:53:52+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.2",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  733. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.2"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2023-11-12T22:16:48+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.8.1",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  795. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  801. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2023-12-03T20:35:24+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.2",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  921. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2023-12-03T20:19:20+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.6.2",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1004. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "^0.9",
  1020. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2023-12-03T20:05:35+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.28",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/c96e294e99e68113ed3e237db8f976308ee42ba7",
  1120. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-06-24T01:53:39+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/cache",
  1187. "version": "v3.1.23",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/cache.git",
  1191. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  1196. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/contract": "~3.1.0",
  1203. "hyperf/support": "~3.1.0",
  1204. "hyperf/utils": "~3.1.0",
  1205. "php": ">=8.1",
  1206. "psr/container": "^1.0|^2.0",
  1207. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1208. },
  1209. "suggest": {
  1210. "hyperf/di": "Use cache annotations.",
  1211. "hyperf/event": "Use listener to delete annotation cache."
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. },
  1218. "hyperf": {
  1219. "config": "Hyperf\\Cache\\ConfigProvider"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Hyperf\\Cache\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "description": "A cache component for hyperf.",
  1232. "homepage": "https://hyperf.io",
  1233. "keywords": [
  1234. "cache",
  1235. "hyperf",
  1236. "php"
  1237. ],
  1238. "support": {
  1239. "docs": "https://hyperf.wiki",
  1240. "issues": "https://github.com/hyperf/hyperf/issues",
  1241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1242. "source": "https://github.com/hyperf/hyperf"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1247. "type": "custom"
  1248. },
  1249. {
  1250. "url": "https://opencollective.com/hyperf",
  1251. "type": "open_collective"
  1252. }
  1253. ],
  1254. "time": "2024-05-23T03:43:58+00:00"
  1255. },
  1256. {
  1257. "name": "hyperf/code-parser",
  1258. "version": "v3.1.15",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/hyperf/code-parser.git",
  1262. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1267. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "hyperf/collection": "~3.1.0",
  1272. "hyperf/stringable": "~3.1.0",
  1273. "hyperf/support": "~3.1.0",
  1274. "php": ">=8.1"
  1275. },
  1276. "suggest": {
  1277. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1278. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1279. },
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "3.1-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Hyperf\\CodeParser\\": "src/"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "description": "A code parser component for Hyperf.",
  1296. "homepage": "https://hyperf.io",
  1297. "keywords": [
  1298. "code-parser",
  1299. "hyperf",
  1300. "php",
  1301. "swoole"
  1302. ],
  1303. "support": {
  1304. "docs": "https://hyperf.wiki",
  1305. "issues": "https://github.com/hyperf/hyperf/issues",
  1306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1307. "source": "https://github.com/hyperf/hyperf"
  1308. },
  1309. "funding": [
  1310. {
  1311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1312. "type": "custom"
  1313. },
  1314. {
  1315. "url": "https://opencollective.com/hyperf",
  1316. "type": "open_collective"
  1317. }
  1318. ],
  1319. "time": "2024-03-23T11:28:51+00:00"
  1320. },
  1321. {
  1322. "name": "hyperf/codec",
  1323. "version": "v3.1.15",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/hyperf/codec.git",
  1327. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1332. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "ext-xml": "*",
  1338. "hyperf/contract": "~3.1.0",
  1339. "php": ">=8.1"
  1340. },
  1341. "suggest": {
  1342. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "3.1-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Hyperf\\Codec\\": "src/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "description": "A codec component for Hyperf.",
  1360. "homepage": "https://hyperf.io",
  1361. "keywords": [
  1362. "codec",
  1363. "hyperf",
  1364. "php",
  1365. "swoole"
  1366. ],
  1367. "support": {
  1368. "docs": "https://hyperf.wiki",
  1369. "issues": "https://github.com/hyperf/hyperf/issues",
  1370. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1371. "source": "https://github.com/hyperf/hyperf"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://opencollective.com/hyperf",
  1380. "type": "open_collective"
  1381. }
  1382. ],
  1383. "time": "2024-03-23T11:28:51+00:00"
  1384. },
  1385. {
  1386. "name": "hyperf/collection",
  1387. "version": "v3.1.25",
  1388. "source": {
  1389. "type": "git",
  1390. "url": "https://github.com/hyperf/collection.git",
  1391. "reference": "b071263a75910cb972de4686b326a9274a2464c2"
  1392. },
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://api.github.com/repos/hyperf/collection/zipball/b071263a75910cb972de4686b326a9274a2464c2",
  1396. "reference": "b071263a75910cb972de4686b326a9274a2464c2",
  1397. "shasum": ""
  1398. },
  1399. "require": {
  1400. "hyperf/conditionable": "~3.1.0",
  1401. "hyperf/contract": "~3.1.0",
  1402. "hyperf/macroable": "~3.1.0",
  1403. "hyperf/stringable": "~3.1.0",
  1404. "php": ">=8.1"
  1405. },
  1406. "type": "library",
  1407. "extra": {
  1408. "branch-alias": {
  1409. "dev-master": "3.1-dev"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "files": [
  1414. "src/Functions.php"
  1415. ],
  1416. "psr-4": {
  1417. "Hyperf\\Collection\\": "src/"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "description": "Hyperf Collection package which come from illuminate/collections",
  1425. "homepage": "https://hyperf.io",
  1426. "keywords": [
  1427. "collection",
  1428. "hyperf",
  1429. "php",
  1430. "swoole"
  1431. ],
  1432. "support": {
  1433. "docs": "https://hyperf.wiki",
  1434. "issues": "https://github.com/hyperf/hyperf/issues",
  1435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1436. "source": "https://github.com/hyperf/hyperf"
  1437. },
  1438. "funding": [
  1439. {
  1440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1441. "type": "custom"
  1442. },
  1443. {
  1444. "url": "https://opencollective.com/hyperf",
  1445. "type": "open_collective"
  1446. }
  1447. ],
  1448. "time": "2024-06-05T07:45:03+00:00"
  1449. },
  1450. {
  1451. "name": "hyperf/command",
  1452. "version": "v3.1.22",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/hyperf/command.git",
  1456. "reference": "dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/hyperf/command/zipball/dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27",
  1461. "reference": "dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27",
  1462. "shasum": "",
  1463. "mirrors": [
  1464. {
  1465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1466. "preferred": true
  1467. }
  1468. ]
  1469. },
  1470. "require": {
  1471. "hyperf/collection": "~3.1.0",
  1472. "hyperf/context": "~3.1.0",
  1473. "hyperf/contract": "~3.1.0",
  1474. "hyperf/coroutine": "~3.1.0",
  1475. "hyperf/di": "~3.1.0",
  1476. "hyperf/stringable": "~3.1.0",
  1477. "hyperf/support": "~3.1.0",
  1478. "hyperf/tappable": "~3.1.0",
  1479. "php": ">=8.1",
  1480. "psr/event-dispatcher": "^1.0",
  1481. "symfony/console": "^5.0|^6.0|^7.0"
  1482. },
  1483. "suggest": {
  1484. "hyperf/di": "Required to use annotations.",
  1485. "hyperf/event": "Required to use listeners."
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "3.1-dev"
  1491. },
  1492. "hyperf": {
  1493. "config": "Hyperf\\Command\\ConfigProvider"
  1494. }
  1495. },
  1496. "autoload": {
  1497. "psr-4": {
  1498. "Hyperf\\Command\\": "src/"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "description": "Command for hyperf",
  1506. "keywords": [
  1507. "command",
  1508. "php",
  1509. "swoole"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/hyperf/command/issues",
  1513. "source": "https://github.com/hyperf/command/tree/v3.1.22"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://opencollective.com/hyperf",
  1522. "type": "open_collective"
  1523. }
  1524. ],
  1525. "time": "2024-05-15T05:22:10+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/conditionable",
  1529. "version": "v3.1.15",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/conditionable.git",
  1533. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1538. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": ">=8.1"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "3.1-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Hyperf\\Conditionable\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1560. "homepage": "https://hyperf.io",
  1561. "keywords": [
  1562. "conditionable",
  1563. "hyperf",
  1564. "php",
  1565. "swoole"
  1566. ],
  1567. "support": {
  1568. "docs": "https://hyperf.wiki",
  1569. "issues": "https://github.com/hyperf/hyperf/issues",
  1570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1571. "source": "https://github.com/hyperf/hyperf"
  1572. },
  1573. "funding": [
  1574. {
  1575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1576. "type": "custom"
  1577. },
  1578. {
  1579. "url": "https://opencollective.com/hyperf",
  1580. "type": "open_collective"
  1581. }
  1582. ],
  1583. "time": "2024-03-23T11:28:51+00:00"
  1584. },
  1585. {
  1586. "name": "hyperf/config",
  1587. "version": "v3.1.15",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/hyperf/config.git",
  1591. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1596. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "hyperf/collection": "~3.1.0",
  1601. "hyperf/contract": "~3.1.0",
  1602. "hyperf/support": "~3.1.0",
  1603. "php": ">=8.1",
  1604. "psr/container": "^1.0|^2.0",
  1605. "symfony/finder": "^5.0|^6.0|^7.0"
  1606. },
  1607. "suggest": {
  1608. "hyperf/context": "Required to use config()",
  1609. "hyperf/di": "Allows using @Value annotation",
  1610. "hyperf/event": "Allows using @Value annotation",
  1611. "hyperf/framework": "Allows using @Value annotation",
  1612. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1613. },
  1614. "type": "library",
  1615. "extra": {
  1616. "branch-alias": {
  1617. "dev-master": "3.1-dev"
  1618. },
  1619. "hyperf": {
  1620. "config": "Hyperf\\Config\\ConfigProvider"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "files": [
  1625. "./src/Functions.php"
  1626. ],
  1627. "psr-4": {
  1628. "Hyperf\\Config\\": "src/"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "description": "An independent component that provides configuration container.",
  1636. "homepage": "https://hyperf.io",
  1637. "keywords": [
  1638. "config",
  1639. "configuration",
  1640. "hyperf",
  1641. "php",
  1642. "swoole"
  1643. ],
  1644. "support": {
  1645. "docs": "https://hyperf.wiki",
  1646. "issues": "https://github.com/hyperf/hyperf/issues",
  1647. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1648. "source": "https://github.com/hyperf/hyperf"
  1649. },
  1650. "funding": [
  1651. {
  1652. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1653. "type": "custom"
  1654. },
  1655. {
  1656. "url": "https://opencollective.com/hyperf",
  1657. "type": "open_collective"
  1658. }
  1659. ],
  1660. "time": "2024-03-23T11:28:51+00:00"
  1661. },
  1662. {
  1663. "name": "hyperf/config-center",
  1664. "version": "v3.1.15",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/hyperf/config-center.git",
  1668. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1673. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "hyperf/support": "~3.1.0",
  1678. "php": ">=8.1"
  1679. },
  1680. "suggest": {
  1681. "hyperf/process": "^2.1"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. },
  1688. "hyperf": {
  1689. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "psr-4": {
  1694. "Hyperf\\ConfigCenter\\": "src/"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "MIT"
  1700. ],
  1701. "description": "The abstraction component of config center",
  1702. "homepage": "https://hyperf.io",
  1703. "keywords": [
  1704. "config-center",
  1705. "hyperf",
  1706. "php"
  1707. ],
  1708. "support": {
  1709. "docs": "https://hyperf.wiki",
  1710. "issues": "https://github.com/hyperf/hyperf/issues",
  1711. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1712. "source": "https://github.com/hyperf/hyperf"
  1713. },
  1714. "funding": [
  1715. {
  1716. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1717. "type": "custom"
  1718. },
  1719. {
  1720. "url": "https://opencollective.com/hyperf",
  1721. "type": "open_collective"
  1722. }
  1723. ],
  1724. "time": "2024-03-23T11:28:51+00:00"
  1725. },
  1726. {
  1727. "name": "hyperf/config-nacos",
  1728. "version": "v3.1.15",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/hyperf/config-nacos.git",
  1732. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1737. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "hyperf/codec": "~3.1.0",
  1742. "hyperf/config-center": "~3.1.0",
  1743. "hyperf/contract": "~3.1.0",
  1744. "hyperf/guzzle": "~3.1.0",
  1745. "hyperf/nacos": "~3.1.0",
  1746. "hyperf/support": "~3.1.0",
  1747. "hyperf/utils": "~3.1.0",
  1748. "jetbrains/phpstorm-attributes": "^1.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "ext-json": "*",
  1753. "ext-simplexml": "*",
  1754. "ext-yaml": "*",
  1755. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1756. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1757. "hyperf/process": "Required to use processes. (~2.2.0)"
  1758. },
  1759. "type": "library",
  1760. "extra": {
  1761. "branch-alias": {
  1762. "dev-master": "3.1-dev"
  1763. },
  1764. "hyperf": {
  1765. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Hyperf\\ConfigNacos\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "description": "A nacos adapter for config center component.",
  1778. "homepage": "https://hyperf.io",
  1779. "keywords": [
  1780. "hyperf",
  1781. "nacos",
  1782. "php",
  1783. "swoole"
  1784. ],
  1785. "support": {
  1786. "docs": "https://hyperf.wiki",
  1787. "issues": "https://github.com/hyperf/hyperf/issues",
  1788. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1789. "source": "https://github.com/hyperf/hyperf"
  1790. },
  1791. "funding": [
  1792. {
  1793. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1794. "type": "custom"
  1795. },
  1796. {
  1797. "url": "https://opencollective.com/hyperf",
  1798. "type": "open_collective"
  1799. }
  1800. ],
  1801. "time": "2024-03-23T11:28:51+00:00"
  1802. },
  1803. {
  1804. "name": "hyperf/constants",
  1805. "version": "v3.1.25",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/hyperf/constants.git",
  1809. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/hyperf/constants/zipball/6749edf0391025e1664b3baf1253f1c4e94c928a",
  1814. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "hyperf/di": "~3.1.0",
  1819. "hyperf/support": "~3.1.0",
  1820. "hyperf/utils": "~3.1.0",
  1821. "php": ">=8.1"
  1822. },
  1823. "suggest": {
  1824. "hyperf/translation": "Required to use translation."
  1825. },
  1826. "type": "library",
  1827. "extra": {
  1828. "branch-alias": {
  1829. "dev-master": "3.1-dev"
  1830. },
  1831. "hyperf": {
  1832. "config": "Hyperf\\Constants\\ConfigProvider"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "Hyperf\\Constants\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "description": "A constants component for hyperf.",
  1845. "homepage": "https://hyperf.io",
  1846. "keywords": [
  1847. "constants",
  1848. "hyperf",
  1849. "php"
  1850. ],
  1851. "support": {
  1852. "docs": "https://hyperf.wiki",
  1853. "issues": "https://github.com/hyperf/hyperf/issues",
  1854. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1855. "source": "https://github.com/hyperf/hyperf"
  1856. },
  1857. "funding": [
  1858. {
  1859. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1860. "type": "custom"
  1861. },
  1862. {
  1863. "url": "https://opencollective.com/hyperf",
  1864. "type": "open_collective"
  1865. }
  1866. ],
  1867. "time": "2024-05-30T11:07:42+00:00"
  1868. },
  1869. {
  1870. "name": "hyperf/consul",
  1871. "version": "v3.1.22",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/hyperf/consul.git",
  1875. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1880. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "guzzlehttp/guzzle": "^6.3|^7.0",
  1885. "php": ">=8.1"
  1886. },
  1887. "require-dev": {
  1888. "hyperf/guzzle": "~3.1.0"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-master": "3.1-dev"
  1894. },
  1895. "hyperf": {
  1896. "config": "Hyperf\\Consul\\ConfigProvider"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Hyperf\\Consul\\": "src/"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "description": "A Consul Client for Hyperf.",
  1909. "homepage": "https://hyperf.io",
  1910. "keywords": [
  1911. "consul",
  1912. "consul-client",
  1913. "hyperf",
  1914. "php",
  1915. "swoole"
  1916. ],
  1917. "support": {
  1918. "docs": "https://hyperf.wiki",
  1919. "issues": "https://github.com/hyperf/hyperf/issues",
  1920. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1921. "source": "https://github.com/hyperf/hyperf"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1926. "type": "custom"
  1927. },
  1928. {
  1929. "url": "https://opencollective.com/hyperf",
  1930. "type": "open_collective"
  1931. }
  1932. ],
  1933. "time": "2024-05-15T06:42:24+00:00"
  1934. },
  1935. {
  1936. "name": "hyperf/context",
  1937. "version": "v3.1.15",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://github.com/hyperf/context.git",
  1941. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1946. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1947. "shasum": ""
  1948. },
  1949. "require": {
  1950. "hyperf/engine": "^2.0",
  1951. "php": ">=8.1"
  1952. },
  1953. "suggest": {
  1954. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "3.1-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Hyperf\\Context\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "description": "A coroutine/application context library.",
  1972. "homepage": "https://hyperf.io",
  1973. "keywords": [
  1974. "Context",
  1975. "hyperf",
  1976. "php",
  1977. "swoole"
  1978. ],
  1979. "support": {
  1980. "docs": "https://hyperf.wiki",
  1981. "issues": "https://github.com/hyperf/hyperf/issues",
  1982. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1983. "source": "https://github.com/hyperf/hyperf"
  1984. },
  1985. "funding": [
  1986. {
  1987. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1988. "type": "custom"
  1989. },
  1990. {
  1991. "url": "https://opencollective.com/hyperf",
  1992. "type": "open_collective"
  1993. }
  1994. ],
  1995. "time": "2024-03-23T11:28:51+00:00"
  1996. },
  1997. {
  1998. "name": "hyperf/contract",
  1999. "version": "v3.1.15",
  2000. "source": {
  2001. "type": "git",
  2002. "url": "https://github.com/hyperf/contract.git",
  2003. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  2004. },
  2005. "dist": {
  2006. "type": "zip",
  2007. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  2008. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  2009. "shasum": ""
  2010. },
  2011. "require": {
  2012. "php": ">=8.1"
  2013. },
  2014. "type": "library",
  2015. "extra": {
  2016. "branch-alias": {
  2017. "dev-master": "3.1-dev"
  2018. }
  2019. },
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Hyperf\\Contract\\": "src/"
  2023. }
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "MIT"
  2028. ],
  2029. "description": "The contracts of Hyperf.",
  2030. "homepage": "https://hyperf.io",
  2031. "keywords": [
  2032. "hyperf",
  2033. "php",
  2034. "swoole"
  2035. ],
  2036. "support": {
  2037. "docs": "https://hyperf.wiki",
  2038. "issues": "https://github.com/hyperf/hyperf/issues",
  2039. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2040. "source": "https://github.com/hyperf/hyperf"
  2041. },
  2042. "funding": [
  2043. {
  2044. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2045. "type": "custom"
  2046. },
  2047. {
  2048. "url": "https://opencollective.com/hyperf",
  2049. "type": "open_collective"
  2050. }
  2051. ],
  2052. "time": "2024-03-23T11:28:51+00:00"
  2053. },
  2054. {
  2055. "name": "hyperf/coordinator",
  2056. "version": "v3.1.21",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/hyperf/coordinator.git",
  2060. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  2065. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "hyperf/engine": "^2.0",
  2070. "php": ">=8.1"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "3.1-dev"
  2076. }
  2077. },
  2078. "autoload": {
  2079. "files": [
  2080. "src/Functions.php"
  2081. ],
  2082. "psr-4": {
  2083. "Hyperf\\Coordinator\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "description": "Hyperf Coordinator",
  2091. "homepage": "https://hyperf.io",
  2092. "keywords": [
  2093. "Coordinator",
  2094. "hyperf",
  2095. "php",
  2096. "swoole"
  2097. ],
  2098. "support": {
  2099. "docs": "https://hyperf.wiki",
  2100. "issues": "https://github.com/hyperf/hyperf/issues",
  2101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2102. "source": "https://github.com/hyperf/hyperf"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2107. "type": "custom"
  2108. },
  2109. {
  2110. "url": "https://opencollective.com/hyperf",
  2111. "type": "open_collective"
  2112. }
  2113. ],
  2114. "time": "2024-05-09T02:35:08+00:00"
  2115. },
  2116. {
  2117. "name": "hyperf/coroutine",
  2118. "version": "v3.1.15",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/hyperf/coroutine.git",
  2122. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  2127. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "hyperf/context": "~3.1.0",
  2132. "hyperf/contract": "~3.1.0",
  2133. "hyperf/engine": "^2.0",
  2134. "php": ">=8.1"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "3.1-dev"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "files": [
  2144. "src/Functions.php"
  2145. ],
  2146. "psr-4": {
  2147. "Hyperf\\Coroutine\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "description": "Hyperf Coroutine",
  2155. "homepage": "https://hyperf.io",
  2156. "keywords": [
  2157. "coroutine",
  2158. "hyperf",
  2159. "php",
  2160. "swoole"
  2161. ],
  2162. "support": {
  2163. "docs": "https://hyperf.wiki",
  2164. "issues": "https://github.com/hyperf/hyperf/issues",
  2165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2166. "source": "https://github.com/hyperf/hyperf"
  2167. },
  2168. "funding": [
  2169. {
  2170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2171. "type": "custom"
  2172. },
  2173. {
  2174. "url": "https://opencollective.com/hyperf",
  2175. "type": "open_collective"
  2176. }
  2177. ],
  2178. "time": "2024-03-23T11:28:51+00:00"
  2179. },
  2180. {
  2181. "name": "hyperf/database",
  2182. "version": "v3.1.25",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/hyperf/database.git",
  2186. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/hyperf/database/zipball/3e69ba93d8c66c431bed94e8dab479964d471802",
  2191. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "hyperf/code-parser": "~3.1.0",
  2196. "hyperf/collection": "~3.1.0",
  2197. "hyperf/macroable": "~3.1.0",
  2198. "hyperf/support": "~3.1.0",
  2199. "hyperf/tappable": "~3.1.0",
  2200. "hyperf/utils": "~3.1.0",
  2201. "nesbot/carbon": "^2.0",
  2202. "php": ">=8.1",
  2203. "psr/container": "^1.0|^2.0",
  2204. "psr/event-dispatcher": "^1.0"
  2205. },
  2206. "suggest": {
  2207. "doctrine/dbal": "Required to rename columns (^3.0).",
  2208. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2209. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "3.1-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Hyperf\\Database\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "A flexible database library.",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "database",
  2230. "hyperf",
  2231. "php"
  2232. ],
  2233. "support": {
  2234. "docs": "https://hyperf.wiki",
  2235. "issues": "https://github.com/hyperf/hyperf/issues",
  2236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2237. "source": "https://github.com/hyperf/hyperf"
  2238. },
  2239. "funding": [
  2240. {
  2241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2242. "type": "custom"
  2243. },
  2244. {
  2245. "url": "https://opencollective.com/hyperf",
  2246. "type": "open_collective"
  2247. }
  2248. ],
  2249. "time": "2024-06-03T07:00:15+00:00"
  2250. },
  2251. {
  2252. "name": "hyperf/db-connection",
  2253. "version": "v3.1.15",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/hyperf/db-connection.git",
  2257. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2262. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "hyperf/database": "~3.1.0",
  2267. "hyperf/di": "~3.1.0",
  2268. "hyperf/framework": "~3.1.0",
  2269. "hyperf/model-listener": "~3.1.0",
  2270. "hyperf/pool": "~3.1.0",
  2271. "hyperf/support": "~3.1.0",
  2272. "hyperf/utils": "~3.1.0",
  2273. "php": ">=8.1",
  2274. "psr/container": "^1.0|^2.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "3.1-dev"
  2280. },
  2281. "hyperf": {
  2282. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\DbConnection\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "A hyperf db connection handler for hyperf/database.",
  2295. "homepage": "https://hyperf.io",
  2296. "keywords": [
  2297. "Connection",
  2298. "database",
  2299. "hyperf",
  2300. "php"
  2301. ],
  2302. "support": {
  2303. "docs": "https://hyperf.wiki",
  2304. "issues": "https://github.com/hyperf/hyperf/issues",
  2305. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2306. "source": "https://github.com/hyperf/hyperf"
  2307. },
  2308. "funding": [
  2309. {
  2310. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2311. "type": "custom"
  2312. },
  2313. {
  2314. "url": "https://opencollective.com/hyperf",
  2315. "type": "open_collective"
  2316. }
  2317. ],
  2318. "time": "2024-03-23T11:28:51+00:00"
  2319. },
  2320. {
  2321. "name": "hyperf/di",
  2322. "version": "v3.1.25",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/hyperf/di.git",
  2326. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/hyperf/di/zipball/4815738288b50096d3b908c0d4f0f7d97a741d75",
  2331. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "doctrine/instantiator": "^1.0",
  2336. "hyperf/code-parser": "~3.1.0",
  2337. "hyperf/pipeline": "~3.1.0",
  2338. "hyperf/stdlib": "~3.1.0",
  2339. "hyperf/support": "~3.1.0",
  2340. "nikic/php-parser": "^4.1",
  2341. "php": ">=8.1",
  2342. "php-di/phpdoc-reader": "^2.2",
  2343. "psr/container": "^1.0|^2.0",
  2344. "symfony/finder": "^5.0|^6.0|^7.0",
  2345. "vlucas/phpdotenv": "^5.0"
  2346. },
  2347. "suggest": {
  2348. "ext-pcntl": "Required to scan annotations.",
  2349. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2350. },
  2351. "type": "library",
  2352. "extra": {
  2353. "branch-alias": {
  2354. "dev-master": "3.1-dev"
  2355. },
  2356. "hyperf": {
  2357. "config": "Hyperf\\Di\\ConfigProvider"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Hyperf\\Di\\": "src/"
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "description": "A DI for Hyperf.",
  2370. "homepage": "https://hyperf.io",
  2371. "keywords": [
  2372. "annotation",
  2373. "di",
  2374. "hyperf",
  2375. "php",
  2376. "swoole"
  2377. ],
  2378. "support": {
  2379. "docs": "https://hyperf.wiki",
  2380. "issues": "https://github.com/hyperf/hyperf/issues",
  2381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2382. "source": "https://github.com/hyperf/hyperf"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://opencollective.com/hyperf",
  2391. "type": "open_collective"
  2392. }
  2393. ],
  2394. "time": "2024-06-03T06:37:01+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/dispatcher",
  2398. "version": "v3.1.15",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/dispatcher.git",
  2402. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2407. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "hyperf/contract": "~3.1.0",
  2412. "php": ">=8.1",
  2413. "psr/container": "^1.0|^2.0",
  2414. "psr/http-message": "^1.0|^2.0",
  2415. "psr/http-server-middleware": "^1.0"
  2416. },
  2417. "type": "library",
  2418. "extra": {
  2419. "branch-alias": {
  2420. "dev-master": "3.1-dev"
  2421. },
  2422. "hyperf": {
  2423. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "psr-4": {
  2428. "Hyperf\\Dispatcher\\": "src/"
  2429. }
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "MIT"
  2434. ],
  2435. "description": "A HTTP Server for Hyperf.",
  2436. "homepage": "https://hyperf.io",
  2437. "keywords": [
  2438. "dispatcher",
  2439. "filter",
  2440. "hyperf",
  2441. "middleware",
  2442. "php",
  2443. "swoole"
  2444. ],
  2445. "support": {
  2446. "docs": "https://hyperf.wiki",
  2447. "issues": "https://github.com/hyperf/hyperf/issues",
  2448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2449. "source": "https://github.com/hyperf/hyperf"
  2450. },
  2451. "funding": [
  2452. {
  2453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2454. "type": "custom"
  2455. },
  2456. {
  2457. "url": "https://opencollective.com/hyperf",
  2458. "type": "open_collective"
  2459. }
  2460. ],
  2461. "time": "2024-03-23T11:28:51+00:00"
  2462. },
  2463. {
  2464. "name": "hyperf/engine",
  2465. "version": "v2.11.0",
  2466. "source": {
  2467. "type": "git",
  2468. "url": "https://github.com/hyperf/engine.git",
  2469. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2470. },
  2471. "dist": {
  2472. "type": "zip",
  2473. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2474. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2475. "shasum": ""
  2476. },
  2477. "require": {
  2478. "hyperf/engine-contract": "~1.10.0",
  2479. "php": ">=8.0"
  2480. },
  2481. "conflict": {
  2482. "ext-swoole": "<5.0"
  2483. },
  2484. "require-dev": {
  2485. "friendsofphp/php-cs-fixer": "^3.0",
  2486. "hyperf/guzzle": "^3.0",
  2487. "hyperf/http-message": "^3.0",
  2488. "mockery/mockery": "^1.5",
  2489. "phpstan/phpstan": "^1.0",
  2490. "phpunit/phpunit": "^9.4",
  2491. "swoole/ide-helper": "5.*"
  2492. },
  2493. "suggest": {
  2494. "ext-sockets": "*",
  2495. "ext-swoole": ">=5.0",
  2496. "hyperf/http-message": "Required to use ResponseEmitter.",
  2497. "psr/http-message": "Required to use WebSocket Frame."
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "2.11-dev"
  2503. },
  2504. "hyperf": {
  2505. "config": "Hyperf\\Engine\\ConfigProvider"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "files": [
  2510. "src/Functions.php"
  2511. ],
  2512. "psr-4": {
  2513. "Hyperf\\Engine\\": "src/"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "description": "Coroutine engine provided by swoole.",
  2521. "keywords": [
  2522. "engine",
  2523. "hyperf",
  2524. "php",
  2525. "swoole"
  2526. ],
  2527. "support": {
  2528. "issues": "https://github.com/hyperf/engine/issues",
  2529. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2530. },
  2531. "funding": [
  2532. {
  2533. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2534. "type": "custom"
  2535. },
  2536. {
  2537. "url": "https://opencollective.com/hyperf",
  2538. "type": "open_collective"
  2539. }
  2540. ],
  2541. "time": "2024-04-17T13:36:28+00:00"
  2542. },
  2543. {
  2544. "name": "hyperf/engine-contract",
  2545. "version": "v1.10.1",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/hyperf/engine-contract.git",
  2549. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2554. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "php": ">=8.0"
  2559. },
  2560. "require-dev": {
  2561. "friendsofphp/php-cs-fixer": "^3.0",
  2562. "mockery/mockery": "^1.0",
  2563. "phpstan/phpstan": "^1.0",
  2564. "phpunit/phpunit": ">=7.0",
  2565. "psr/http-message": "^1.0",
  2566. "swoole/ide-helper": "^4.5"
  2567. },
  2568. "suggest": {
  2569. "psr/http-message": "Required to use WebSocket Frame."
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-master": "1.9-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "Hyperf\\Engine\\Contract\\": "src/"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "description": "Contract for Coroutine Engine",
  2587. "keywords": [
  2588. "contract",
  2589. "coroutine",
  2590. "engine",
  2591. "hyperf",
  2592. "php"
  2593. ],
  2594. "support": {
  2595. "issues": "https://github.com/hyperf/engine-contract/issues",
  2596. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2597. },
  2598. "funding": [
  2599. {
  2600. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2601. "type": "custom"
  2602. },
  2603. {
  2604. "url": "https://opencollective.com/hyperf",
  2605. "type": "open_collective"
  2606. }
  2607. ],
  2608. "time": "2024-04-17T13:34:51+00:00"
  2609. },
  2610. {
  2611. "name": "hyperf/event",
  2612. "version": "v3.1.15",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/hyperf/event.git",
  2616. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2621. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "hyperf/contract": "~3.1.0",
  2626. "hyperf/stdlib": "~3.1.0",
  2627. "php": ">=8.1",
  2628. "psr/event-dispatcher": "^1.0"
  2629. },
  2630. "suggest": {
  2631. "hyperf/di": "Required to use annotatioins."
  2632. },
  2633. "type": "library",
  2634. "extra": {
  2635. "branch-alias": {
  2636. "dev-master": "3.1-dev"
  2637. },
  2638. "hyperf": {
  2639. "config": "Hyperf\\Event\\ConfigProvider"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Hyperf\\Event\\": "src/"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "description": "an event manager that implements PSR-14.",
  2652. "homepage": "https://hyperf.io",
  2653. "keywords": [
  2654. "event",
  2655. "hyperf",
  2656. "php",
  2657. "swoole"
  2658. ],
  2659. "support": {
  2660. "docs": "https://hyperf.wiki",
  2661. "issues": "https://github.com/hyperf/hyperf/issues",
  2662. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2663. "source": "https://github.com/hyperf/hyperf"
  2664. },
  2665. "funding": [
  2666. {
  2667. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2668. "type": "custom"
  2669. },
  2670. {
  2671. "url": "https://opencollective.com/hyperf",
  2672. "type": "open_collective"
  2673. }
  2674. ],
  2675. "time": "2024-03-23T11:28:51+00:00"
  2676. },
  2677. {
  2678. "name": "hyperf/exception-handler",
  2679. "version": "v3.1.22",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/hyperf/exception-handler.git",
  2683. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2688. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2689. "shasum": ""
  2690. },
  2691. "require": {
  2692. "hyperf/context": "~3.1.0",
  2693. "hyperf/contract": "~3.1.0",
  2694. "hyperf/dispatcher": "~3.1.0",
  2695. "hyperf/http-message": "~3.1.0",
  2696. "hyperf/stdlib": "~3.1.0",
  2697. "hyperf/support": "~3.1.0",
  2698. "php": ">=8.1",
  2699. "psr/container": "^1.0|^2.0",
  2700. "psr/http-message": "^1.0|^2.0",
  2701. "swow/psr7-plus": "^1.0"
  2702. },
  2703. "suggest": {
  2704. "hyperf/di": "Required to use #[ExceptionHandler]",
  2705. "hyperf/event": "Required to use listeners",
  2706. "hyperf/framework": "Required to use listeners",
  2707. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "3.1-dev"
  2713. },
  2714. "hyperf": {
  2715. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2716. }
  2717. },
  2718. "autoload": {
  2719. "psr-4": {
  2720. "Hyperf\\ExceptionHandler\\": "src/"
  2721. }
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "MIT"
  2726. ],
  2727. "description": "Exception handler for hyperf",
  2728. "homepage": "https://hyperf.io",
  2729. "keywords": [
  2730. "exception-handler",
  2731. "php",
  2732. "swoole"
  2733. ],
  2734. "support": {
  2735. "docs": "https://hyperf.wiki",
  2736. "issues": "https://github.com/hyperf/hyperf/issues",
  2737. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2738. "source": "https://github.com/hyperf/hyperf"
  2739. },
  2740. "funding": [
  2741. {
  2742. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2743. "type": "custom"
  2744. },
  2745. {
  2746. "url": "https://opencollective.com/hyperf",
  2747. "type": "open_collective"
  2748. }
  2749. ],
  2750. "time": "2024-05-15T07:12:41+00:00"
  2751. },
  2752. {
  2753. "name": "hyperf/framework",
  2754. "version": "v3.1.23",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/hyperf/framework.git",
  2758. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2763. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2764. "shasum": ""
  2765. },
  2766. "require": {
  2767. "fig/http-message-util": "^1.1.2",
  2768. "hyperf/contract": "~3.1.0",
  2769. "hyperf/coordinator": "~3.1.0",
  2770. "hyperf/coroutine": "~3.1.0",
  2771. "php": ">=8.1",
  2772. "psr/container": "^1.0|^2.0",
  2773. "psr/event-dispatcher": "^1.0",
  2774. "psr/log": "^1.0|^2.0|^3.0"
  2775. },
  2776. "suggest": {
  2777. "ext-swoole": "Required to use swoole engine.",
  2778. "hyperf/command": "Required to use Command annotation.",
  2779. "hyperf/di": "Required to use Command annotation.",
  2780. "hyperf/dispatcher": "Required to use BootApplication event.",
  2781. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2782. },
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "3.1-dev"
  2787. },
  2788. "hyperf": {
  2789. "config": "Hyperf\\Framework\\ConfigProvider"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Hyperf\\Framework\\": "src/"
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2802. "homepage": "https://hyperf.io",
  2803. "keywords": [
  2804. "Microservice",
  2805. "framework",
  2806. "hyperf",
  2807. "middleware",
  2808. "php",
  2809. "swoole"
  2810. ],
  2811. "support": {
  2812. "docs": "https://hyperf.wiki",
  2813. "issues": "https://github.com/hyperf/hyperf/issues",
  2814. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2815. "source": "https://github.com/hyperf/hyperf"
  2816. },
  2817. "funding": [
  2818. {
  2819. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2820. "type": "custom"
  2821. },
  2822. {
  2823. "url": "https://opencollective.com/hyperf",
  2824. "type": "open_collective"
  2825. }
  2826. ],
  2827. "time": "2024-05-21T05:43:48+00:00"
  2828. },
  2829. {
  2830. "name": "hyperf/guzzle",
  2831. "version": "v3.1.15",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/hyperf/guzzle.git",
  2835. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2840. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "guzzlehttp/guzzle": "^6.3|^7.0",
  2845. "php": ">=8.1",
  2846. "psr/container": "^1.0|^2.0",
  2847. "psr/http-message": "^1.0|^2.0"
  2848. },
  2849. "suggest": {
  2850. "ext-curl": "Required for CURL handler support",
  2851. "hyperf/pool": "Required to use pool handler."
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "3.1-dev"
  2857. },
  2858. "hyperf": {
  2859. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Hyperf\\Guzzle\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "description": "Swoole coroutine handler for guzzle",
  2872. "keywords": [
  2873. "Guzzle",
  2874. "handler",
  2875. "php",
  2876. "swoole"
  2877. ],
  2878. "support": {
  2879. "issues": "https://github.com/hyperf/guzzle/issues",
  2880. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2881. },
  2882. "funding": [
  2883. {
  2884. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2885. "type": "custom"
  2886. },
  2887. {
  2888. "url": "https://opencollective.com/hyperf",
  2889. "type": "open_collective"
  2890. }
  2891. ],
  2892. "time": "2024-03-23T11:28:51+00:00"
  2893. },
  2894. {
  2895. "name": "hyperf/http-message",
  2896. "version": "v3.1.25",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/hyperf/http-message.git",
  2900. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/hyperf/http-message/zipball/6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2905. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2906. "shasum": ""
  2907. },
  2908. "require": {
  2909. "hyperf/codec": "~3.1.0",
  2910. "hyperf/engine": "^2.11",
  2911. "hyperf/support": "~3.1.0",
  2912. "laminas/laminas-mime": "^2.7",
  2913. "php": ">=8.1",
  2914. "psr/http-message": "^1.0|^2.0",
  2915. "swow/psr7-plus": "^1.0"
  2916. },
  2917. "suggest": {
  2918. "psr/container": "Required to replace RequestParserInterface."
  2919. },
  2920. "type": "library",
  2921. "extra": {
  2922. "branch-alias": {
  2923. "dev-master": "3.1-dev"
  2924. },
  2925. "hyperf": {
  2926. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Hyperf\\HttpMessage\\": "src/"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "description": "microservice framework base on swoole",
  2939. "keywords": [
  2940. "http-message",
  2941. "hyperf",
  2942. "php",
  2943. "swoole"
  2944. ],
  2945. "support": {
  2946. "issues": "https://github.com/hyperf/http-message/issues",
  2947. "source": "https://github.com/hyperf/http-message/tree/v3.1.25"
  2948. },
  2949. "funding": [
  2950. {
  2951. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2952. "type": "custom"
  2953. },
  2954. {
  2955. "url": "https://opencollective.com/hyperf",
  2956. "type": "open_collective"
  2957. }
  2958. ],
  2959. "time": "2024-06-05T10:09:59+00:00"
  2960. },
  2961. {
  2962. "name": "hyperf/http-server",
  2963. "version": "v3.1.17",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/hyperf/http-server.git",
  2967. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2972. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "hyperf/codec": "~3.1.0",
  2977. "hyperf/collection": "~3.1.0",
  2978. "hyperf/context": "~3.1.0",
  2979. "hyperf/contract": "~3.1.0",
  2980. "hyperf/coroutine": "~3.1.0",
  2981. "hyperf/dispatcher": "~3.1.0",
  2982. "hyperf/event": "~3.1.0",
  2983. "hyperf/exception-handler": "~3.1.0",
  2984. "hyperf/http-message": "~3.1.0",
  2985. "hyperf/macroable": "~3.1.0",
  2986. "hyperf/serializer": "~3.1.0",
  2987. "hyperf/server": "~3.1.0",
  2988. "hyperf/stdlib": "~3.1.0",
  2989. "hyperf/support": "~3.1.0",
  2990. "nikic/fast-route": "^1.3",
  2991. "php": ">=8.1",
  2992. "psr/container": "^1.0|^2.0",
  2993. "swow/psr7-plus": "^1.0"
  2994. },
  2995. "suggest": {
  2996. "hyperf/di": "Required to use annotations."
  2997. },
  2998. "type": "library",
  2999. "extra": {
  3000. "branch-alias": {
  3001. "dev-master": "3.1-dev"
  3002. },
  3003. "hyperf": {
  3004. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3005. }
  3006. },
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Hyperf\\HttpServer\\": "src/"
  3010. }
  3011. },
  3012. "notification-url": "https://packagist.org/downloads/",
  3013. "license": [
  3014. "MIT"
  3015. ],
  3016. "description": "A HTTP Server for Hyperf.",
  3017. "homepage": "https://hyperf.io",
  3018. "keywords": [
  3019. "http",
  3020. "http-server",
  3021. "hyperf",
  3022. "php",
  3023. "swoole"
  3024. ],
  3025. "support": {
  3026. "docs": "https://hyperf.wiki",
  3027. "issues": "https://github.com/hyperf/hyperf/issues",
  3028. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3029. "source": "https://github.com/hyperf/hyperf"
  3030. },
  3031. "funding": [
  3032. {
  3033. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3034. "type": "custom"
  3035. },
  3036. {
  3037. "url": "https://opencollective.com/hyperf",
  3038. "type": "open_collective"
  3039. }
  3040. ],
  3041. "time": "2024-04-08T07:53:54+00:00"
  3042. },
  3043. {
  3044. "name": "hyperf/json-rpc",
  3045. "version": "v3.1.23",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/hyperf/json-rpc.git",
  3049. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  3054. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  3055. "shasum": ""
  3056. },
  3057. "require": {
  3058. "hyperf/codec": "~3.1.0",
  3059. "hyperf/context": "~3.1.0",
  3060. "hyperf/contract": "~3.1.0",
  3061. "hyperf/engine": "^2.0",
  3062. "hyperf/http-message": "~3.1.0",
  3063. "hyperf/load-balancer": "~3.1.0",
  3064. "hyperf/rpc": "~3.1.0",
  3065. "hyperf/serializer": "~3.1.0",
  3066. "hyperf/support": "~3.1.0",
  3067. "hyperf/utils": "~3.1.0",
  3068. "php": ">=8.1",
  3069. "psr/container": "^1.0|^2.0",
  3070. "swow/psr7-plus": "^1.0"
  3071. },
  3072. "suggest": {
  3073. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3074. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3075. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3076. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3077. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3078. },
  3079. "type": "library",
  3080. "extra": {
  3081. "branch-alias": {
  3082. "dev-master": "3.1-dev"
  3083. },
  3084. "hyperf": {
  3085. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Hyperf\\JsonRpc\\": "src/"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3098. "homepage": "https://hyperf.io",
  3099. "keywords": [
  3100. "hyperf",
  3101. "json-rpc",
  3102. "php",
  3103. "swoole"
  3104. ],
  3105. "support": {
  3106. "docs": "https://hyperf.wiki",
  3107. "issues": "https://github.com/hyperf/hyperf/issues",
  3108. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3109. "source": "https://github.com/hyperf/hyperf"
  3110. },
  3111. "funding": [
  3112. {
  3113. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3114. "type": "custom"
  3115. },
  3116. {
  3117. "url": "https://opencollective.com/hyperf",
  3118. "type": "open_collective"
  3119. }
  3120. ],
  3121. "time": "2024-05-23T03:43:58+00:00"
  3122. },
  3123. {
  3124. "name": "hyperf/load-balancer",
  3125. "version": "v3.1.15",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/hyperf/load-balancer.git",
  3129. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  3134. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  3135. "shasum": ""
  3136. },
  3137. "require": {
  3138. "hyperf/coordinator": "~3.1.0",
  3139. "hyperf/coroutine": "~3.1.0",
  3140. "markrogoyski/math-php": "^2.0",
  3141. "php": ">=8.1",
  3142. "psr/log": "^1.0|^2.0|^3.0"
  3143. },
  3144. "type": "library",
  3145. "extra": {
  3146. "branch-alias": {
  3147. "dev-master": "3.1-dev"
  3148. },
  3149. "hyperf": {
  3150. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "Hyperf\\LoadBalancer\\": "src/"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "description": "A load balancer library for Hyperf.",
  3163. "homepage": "https://hyperf.io",
  3164. "keywords": [
  3165. "hyperf",
  3166. "load-balancer",
  3167. "php",
  3168. "swoole"
  3169. ],
  3170. "support": {
  3171. "docs": "https://hyperf.wiki",
  3172. "issues": "https://github.com/hyperf/hyperf/issues",
  3173. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3174. "source": "https://github.com/hyperf/hyperf"
  3175. },
  3176. "funding": [
  3177. {
  3178. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3179. "type": "custom"
  3180. },
  3181. {
  3182. "url": "https://opencollective.com/hyperf",
  3183. "type": "open_collective"
  3184. }
  3185. ],
  3186. "time": "2024-03-23T11:28:51+00:00"
  3187. },
  3188. {
  3189. "name": "hyperf/logger",
  3190. "version": "v3.1.15",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/hyperf/logger.git",
  3194. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  3199. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  3200. "shasum": ""
  3201. },
  3202. "require": {
  3203. "hyperf/contract": "~3.1.0",
  3204. "hyperf/support": "~3.1.0",
  3205. "hyperf/utils": "~3.1.0",
  3206. "monolog/monolog": "^2.7|^3.1",
  3207. "php": ">=8.1",
  3208. "psr/container": "^1.0|^2.0",
  3209. "psr/log": "^1.0|^2.0|^3.0"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "3.1-dev"
  3215. },
  3216. "hyperf": {
  3217. "config": "Hyperf\\Logger\\ConfigProvider"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Hyperf\\Logger\\": "src/"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "description": "A logger component for hyperf.",
  3230. "homepage": "https://hyperf.io",
  3231. "keywords": [
  3232. "hyperf",
  3233. "logger",
  3234. "php"
  3235. ],
  3236. "support": {
  3237. "docs": "https://hyperf.wiki",
  3238. "issues": "https://github.com/hyperf/hyperf/issues",
  3239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3240. "source": "https://github.com/hyperf/hyperf"
  3241. },
  3242. "funding": [
  3243. {
  3244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3245. "type": "custom"
  3246. },
  3247. {
  3248. "url": "https://opencollective.com/hyperf",
  3249. "type": "open_collective"
  3250. }
  3251. ],
  3252. "time": "2024-03-23T11:28:51+00:00"
  3253. },
  3254. {
  3255. "name": "hyperf/macroable",
  3256. "version": "v3.1.23",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/hyperf/macroable.git",
  3260. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3265. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "php": ">=8.1"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "3.1-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Hyperf\\Macroable\\": "src/"
  3280. }
  3281. },
  3282. "notification-url": "https://packagist.org/downloads/",
  3283. "license": [
  3284. "MIT"
  3285. ],
  3286. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3287. "homepage": "https://hyperf.io",
  3288. "keywords": [
  3289. "hyperf",
  3290. "macroable",
  3291. "php",
  3292. "swoole"
  3293. ],
  3294. "support": {
  3295. "docs": "https://hyperf.wiki",
  3296. "issues": "https://github.com/hyperf/hyperf/issues",
  3297. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3298. "source": "https://github.com/hyperf/hyperf"
  3299. },
  3300. "funding": [
  3301. {
  3302. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3303. "type": "custom"
  3304. },
  3305. {
  3306. "url": "https://opencollective.com/hyperf",
  3307. "type": "open_collective"
  3308. }
  3309. ],
  3310. "time": "2024-05-20T09:55:40+00:00"
  3311. },
  3312. {
  3313. "name": "hyperf/memory",
  3314. "version": "v3.1.15",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/hyperf/memory.git",
  3318. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3323. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3324. "shasum": ""
  3325. },
  3326. "require": {
  3327. "php": ">=8.1"
  3328. },
  3329. "type": "library",
  3330. "extra": {
  3331. "branch-alias": {
  3332. "dev-master": "3.1-dev"
  3333. },
  3334. "hyperf": {
  3335. "config": "Hyperf\\Memory\\ConfigProvider"
  3336. }
  3337. },
  3338. "autoload": {
  3339. "psr-4": {
  3340. "Hyperf\\Memory\\": "src/"
  3341. }
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "description": "An independent component that use to operate and manage memory.",
  3348. "homepage": "https://hyperf.io",
  3349. "keywords": [
  3350. "hyperf",
  3351. "memory",
  3352. "php",
  3353. "swoole"
  3354. ],
  3355. "support": {
  3356. "docs": "https://hyperf.wiki",
  3357. "issues": "https://github.com/hyperf/hyperf/issues",
  3358. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3359. "source": "https://github.com/hyperf/hyperf"
  3360. },
  3361. "funding": [
  3362. {
  3363. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3364. "type": "custom"
  3365. },
  3366. {
  3367. "url": "https://opencollective.com/hyperf",
  3368. "type": "open_collective"
  3369. }
  3370. ],
  3371. "time": "2024-03-23T11:28:51+00:00"
  3372. },
  3373. {
  3374. "name": "hyperf/model-listener",
  3375. "version": "v3.1.15",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/hyperf/model-listener.git",
  3379. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3384. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "hyperf/contract": "~3.1.0",
  3389. "hyperf/database": "~3.1.0",
  3390. "hyperf/di": "~3.1.0",
  3391. "hyperf/event": "~3.1.0",
  3392. "hyperf/support": "~3.1.0",
  3393. "hyperf/utils": "~3.1.0",
  3394. "php": ">=8.1",
  3395. "psr/container": "^1.0|^2.0"
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "branch-alias": {
  3400. "dev-master": "3.1-dev"
  3401. },
  3402. "hyperf": {
  3403. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "Hyperf\\ModelListener\\": "src/"
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "description": "A model listener for Hyperf.",
  3416. "homepage": "https://hyperf.io",
  3417. "keywords": [
  3418. "hyperf",
  3419. "model-listener",
  3420. "php",
  3421. "swoole"
  3422. ],
  3423. "support": {
  3424. "docs": "https://hyperf.wiki",
  3425. "issues": "https://github.com/hyperf/hyperf/issues",
  3426. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3427. "source": "https://github.com/hyperf/hyperf"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3432. "type": "custom"
  3433. },
  3434. {
  3435. "url": "https://opencollective.com/hyperf",
  3436. "type": "open_collective"
  3437. }
  3438. ],
  3439. "time": "2024-03-23T11:28:51+00:00"
  3440. },
  3441. {
  3442. "name": "hyperf/nacos",
  3443. "version": "v3.1.15",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/hyperf/nacos.git",
  3447. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3452. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "guzzlehttp/guzzle": "^6.5|^7.0",
  3457. "hyperf/codec": "~3.1.0",
  3458. "hyperf/contract": "~3.1.0",
  3459. "hyperf/support": "~3.1.0",
  3460. "hyperf/utils": "~3.1.0",
  3461. "jetbrains/phpstorm-attributes": "^1.0",
  3462. "php": ">=8.1"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "branch-alias": {
  3467. "dev-master": "3.1-dev"
  3468. },
  3469. "hyperf": {
  3470. "config": "Hyperf\\Nacos\\ConfigProvider"
  3471. }
  3472. },
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Hyperf\\Nacos\\": "src/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "description": "Nacos SDK",
  3483. "keywords": [
  3484. "hyperf",
  3485. "nacos",
  3486. "php"
  3487. ],
  3488. "support": {
  3489. "issues": "https://github.com/hyperf/nacos/issues",
  3490. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3495. "type": "custom"
  3496. },
  3497. {
  3498. "url": "https://opencollective.com/hyperf",
  3499. "type": "open_collective"
  3500. }
  3501. ],
  3502. "time": "2024-03-23T11:28:51+00:00"
  3503. },
  3504. {
  3505. "name": "hyperf/pipeline",
  3506. "version": "v3.1.15",
  3507. "source": {
  3508. "type": "git",
  3509. "url": "https://github.com/hyperf/pipeline.git",
  3510. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3511. },
  3512. "dist": {
  3513. "type": "zip",
  3514. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3515. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3516. "shasum": ""
  3517. },
  3518. "require": {
  3519. "php": ">=8.1",
  3520. "psr/container": "^1.0|^2.0"
  3521. },
  3522. "type": "library",
  3523. "extra": {
  3524. "branch-alias": {
  3525. "dev-master": "3.1-dev"
  3526. }
  3527. },
  3528. "autoload": {
  3529. "psr-4": {
  3530. "Hyperf\\Pipeline\\": "src/"
  3531. }
  3532. },
  3533. "notification-url": "https://packagist.org/downloads/",
  3534. "license": [
  3535. "MIT"
  3536. ],
  3537. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3538. "homepage": "https://hyperf.io",
  3539. "keywords": [
  3540. "hyperf",
  3541. "php",
  3542. "pipeline",
  3543. "swoole"
  3544. ],
  3545. "support": {
  3546. "docs": "https://hyperf.wiki",
  3547. "issues": "https://github.com/hyperf/hyperf/issues",
  3548. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3549. "source": "https://github.com/hyperf/hyperf"
  3550. },
  3551. "funding": [
  3552. {
  3553. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3554. "type": "custom"
  3555. },
  3556. {
  3557. "url": "https://opencollective.com/hyperf",
  3558. "type": "open_collective"
  3559. }
  3560. ],
  3561. "time": "2024-03-23T11:28:51+00:00"
  3562. },
  3563. {
  3564. "name": "hyperf/pool",
  3565. "version": "v3.1.15",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/hyperf/pool.git",
  3569. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3574. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3575. "shasum": ""
  3576. },
  3577. "require": {
  3578. "hyperf/contract": "~3.1.0",
  3579. "hyperf/support": "~3.1.0",
  3580. "hyperf/utils": "~3.1.0",
  3581. "php": ">=8.1",
  3582. "psr/container": "^1.0|^2.0"
  3583. },
  3584. "suggest": {
  3585. "psr/event-dispatcher": "Required to use events."
  3586. },
  3587. "type": "library",
  3588. "extra": {
  3589. "branch-alias": {
  3590. "dev-master": "3.1-dev"
  3591. },
  3592. "hyperf": {
  3593. "config": "Hyperf\\Pool\\ConfigProvider"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "psr-4": {
  3598. "Hyperf\\Pool\\": "src/"
  3599. }
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "description": "An independent universal connection pool component.",
  3606. "homepage": "https://hyperf.io",
  3607. "keywords": [
  3608. "connection-pool",
  3609. "hyperf",
  3610. "php",
  3611. "swoole"
  3612. ],
  3613. "support": {
  3614. "docs": "https://hyperf.wiki",
  3615. "issues": "https://github.com/hyperf/hyperf/issues",
  3616. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3617. "source": "https://github.com/hyperf/hyperf"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://opencollective.com/hyperf",
  3626. "type": "open_collective"
  3627. }
  3628. ],
  3629. "time": "2024-03-23T11:28:51+00:00"
  3630. },
  3631. {
  3632. "name": "hyperf/process",
  3633. "version": "v3.1.15",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/hyperf/process.git",
  3637. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3642. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "hyperf/contract": "~3.1.0",
  3647. "hyperf/support": "~3.1.0",
  3648. "hyperf/utils": "~3.1.0",
  3649. "php": ">=8.1",
  3650. "psr/container": "^1.0|^2.0",
  3651. "psr/event-dispatcher": "^1.0"
  3652. },
  3653. "suggest": {
  3654. "hyperf/di": "Required to use annotations.",
  3655. "hyperf/event": "Required to dump the message before and after process.",
  3656. "hyperf/framework": "Required to use BootProcessListener."
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "3.1-dev"
  3662. },
  3663. "hyperf": {
  3664. "config": "Hyperf\\Process\\ConfigProvider"
  3665. }
  3666. },
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Hyperf\\Process\\": "src/"
  3670. }
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "description": "A process component for hyperf.",
  3677. "homepage": "https://hyperf.io",
  3678. "keywords": [
  3679. "hyperf",
  3680. "php",
  3681. "process"
  3682. ],
  3683. "support": {
  3684. "docs": "https://hyperf.wiki",
  3685. "issues": "https://github.com/hyperf/hyperf/issues",
  3686. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3687. "source": "https://github.com/hyperf/hyperf"
  3688. },
  3689. "funding": [
  3690. {
  3691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3692. "type": "custom"
  3693. },
  3694. {
  3695. "url": "https://opencollective.com/hyperf",
  3696. "type": "open_collective"
  3697. }
  3698. ],
  3699. "time": "2024-03-23T11:28:51+00:00"
  3700. },
  3701. {
  3702. "name": "hyperf/redis",
  3703. "version": "v3.1.18",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/hyperf/redis.git",
  3707. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3712. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "ext-redis": "^5.0|^6.0",
  3717. "hyperf/contract": "~3.1.0",
  3718. "hyperf/pool": "~3.1.0",
  3719. "hyperf/support": "~3.1.0",
  3720. "hyperf/tappable": "~3.1.0",
  3721. "hyperf/utils": "~3.1.0",
  3722. "php": ">=8.1",
  3723. "psr/container": "^1.0|^2.0"
  3724. },
  3725. "suggest": {
  3726. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3727. "hyperf/di": "Create the RedisPool via dependency injection."
  3728. },
  3729. "type": "library",
  3730. "extra": {
  3731. "branch-alias": {
  3732. "dev-master": "3.1-dev"
  3733. },
  3734. "hyperf": {
  3735. "config": "Hyperf\\Redis\\ConfigProvider"
  3736. }
  3737. },
  3738. "autoload": {
  3739. "psr-4": {
  3740. "Hyperf\\Redis\\": "src/"
  3741. }
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "MIT"
  3746. ],
  3747. "description": "A redis component for hyperf.",
  3748. "homepage": "https://hyperf.io",
  3749. "keywords": [
  3750. "hyperf",
  3751. "php",
  3752. "pool",
  3753. "redis"
  3754. ],
  3755. "support": {
  3756. "docs": "https://hyperf.wiki",
  3757. "issues": "https://github.com/hyperf/hyperf/issues",
  3758. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3759. "source": "https://github.com/hyperf/hyperf"
  3760. },
  3761. "funding": [
  3762. {
  3763. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3764. "type": "custom"
  3765. },
  3766. {
  3767. "url": "https://opencollective.com/hyperf",
  3768. "type": "open_collective"
  3769. }
  3770. ],
  3771. "time": "2024-04-11T10:18:35+00:00"
  3772. },
  3773. {
  3774. "name": "hyperf/rpc",
  3775. "version": "v3.1.15",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/hyperf/rpc.git",
  3779. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3784. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3785. "shasum": ""
  3786. },
  3787. "require": {
  3788. "hyperf/codec": "~3.1.0",
  3789. "hyperf/contract": "~3.1.0",
  3790. "hyperf/support": "~3.1.0",
  3791. "jetbrains/phpstorm-attributes": "^1.0",
  3792. "php": ">=8.1"
  3793. },
  3794. "type": "library",
  3795. "extra": {
  3796. "branch-alias": {
  3797. "dev-master": "3.1-dev"
  3798. },
  3799. "hyperf": []
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Hyperf\\Rpc\\": "src/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "description": "A rpc basic library for Hyperf.",
  3811. "homepage": "https://hyperf.io",
  3812. "keywords": [
  3813. "hyperf",
  3814. "php",
  3815. "rpc",
  3816. "swoole"
  3817. ],
  3818. "support": {
  3819. "docs": "https://hyperf.wiki",
  3820. "issues": "https://github.com/hyperf/hyperf/issues",
  3821. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3822. "source": "https://github.com/hyperf/hyperf"
  3823. },
  3824. "funding": [
  3825. {
  3826. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3827. "type": "custom"
  3828. },
  3829. {
  3830. "url": "https://opencollective.com/hyperf",
  3831. "type": "open_collective"
  3832. }
  3833. ],
  3834. "time": "2024-03-23T11:28:51+00:00"
  3835. },
  3836. {
  3837. "name": "hyperf/rpc-client",
  3838. "version": "v3.1.15",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/hyperf/rpc-client.git",
  3842. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3847. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "hyperf/code-parser": "~3.1.0",
  3852. "hyperf/load-balancer": "~3.1.0",
  3853. "hyperf/rpc": "~3.1.0",
  3854. "hyperf/support": "~3.1.0",
  3855. "hyperf/utils": "~3.1.0",
  3856. "jetbrains/phpstorm-attributes": "^1.0",
  3857. "php": ">=8.1",
  3858. "psr/container": "^1.0|^2.0"
  3859. },
  3860. "suggest": {
  3861. "hyperf/di": "For better container experience.",
  3862. "hyperf/pool": "Required to use connection pool.",
  3863. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3864. },
  3865. "type": "library",
  3866. "extra": {
  3867. "branch-alias": {
  3868. "dev-master": "3.1-dev"
  3869. },
  3870. "hyperf": {
  3871. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3872. }
  3873. },
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Hyperf\\RpcClient\\": "src/"
  3877. }
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "MIT"
  3882. ],
  3883. "description": "An abstract rpc server component for Hyperf.",
  3884. "homepage": "https://hyperf.io",
  3885. "keywords": [
  3886. "hyperf",
  3887. "json-rpc",
  3888. "php",
  3889. "rpc",
  3890. "rpc-client",
  3891. "swoole"
  3892. ],
  3893. "support": {
  3894. "docs": "https://hyperf.wiki",
  3895. "issues": "https://github.com/hyperf/hyperf/issues",
  3896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3897. "source": "https://github.com/hyperf/hyperf"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://opencollective.com/hyperf",
  3906. "type": "open_collective"
  3907. }
  3908. ],
  3909. "time": "2024-03-23T11:28:51+00:00"
  3910. },
  3911. {
  3912. "name": "hyperf/rpc-server",
  3913. "version": "v3.1.20",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/hyperf/rpc-server.git",
  3917. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3922. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "hyperf/http-server": "~3.1.0",
  3927. "hyperf/rpc": "~3.1.0",
  3928. "php": ">=8.1"
  3929. },
  3930. "suggest": {
  3931. "hyperf/di": "Required to use annotations."
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "branch-alias": {
  3936. "dev-master": "3.1-dev"
  3937. },
  3938. "hyperf": {
  3939. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3940. }
  3941. },
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Hyperf\\RpcServer\\": "src/"
  3945. }
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "description": "An abstract rpc server component for Hyperf.",
  3952. "homepage": "https://hyperf.io",
  3953. "keywords": [
  3954. "hyperf",
  3955. "php",
  3956. "rpc",
  3957. "rpc-server",
  3958. "swoole"
  3959. ],
  3960. "support": {
  3961. "docs": "https://hyperf.wiki",
  3962. "issues": "https://github.com/hyperf/hyperf/issues",
  3963. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3964. "source": "https://github.com/hyperf/hyperf"
  3965. },
  3966. "funding": [
  3967. {
  3968. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3969. "type": "custom"
  3970. },
  3971. {
  3972. "url": "https://opencollective.com/hyperf",
  3973. "type": "open_collective"
  3974. }
  3975. ],
  3976. "time": "2024-04-22T01:46:29+00:00"
  3977. },
  3978. {
  3979. "name": "hyperf/serializer",
  3980. "version": "v3.1.23",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/hyperf/serializer.git",
  3984. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3989. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "hyperf/contract": "~3.1.0",
  3994. "php": ">=8.1"
  3995. },
  3996. "suggest": {
  3997. "hyperf/di": "Required to use ExceptionNormalizer",
  3998. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3999. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "3.1-dev"
  4005. },
  4006. "hyperf": {
  4007. "config": "Hyperf\\Serializer\\ConfigProvider"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Hyperf\\Serializer\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "description": "A serializer component for Hyperf.",
  4020. "homepage": "https://hyperf.io",
  4021. "keywords": [
  4022. "hyperf",
  4023. "php",
  4024. "swoole",
  4025. "tappable"
  4026. ],
  4027. "support": {
  4028. "docs": "https://hyperf.wiki",
  4029. "issues": "https://github.com/hyperf/hyperf/issues",
  4030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4031. "source": "https://github.com/hyperf/hyperf"
  4032. },
  4033. "funding": [
  4034. {
  4035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4036. "type": "custom"
  4037. },
  4038. {
  4039. "url": "https://opencollective.com/hyperf",
  4040. "type": "open_collective"
  4041. }
  4042. ],
  4043. "time": "2024-05-23T03:43:58+00:00"
  4044. },
  4045. {
  4046. "name": "hyperf/server",
  4047. "version": "v3.1.23",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/hyperf/server.git",
  4051. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  4056. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "hyperf/contract": "~3.1.0",
  4061. "hyperf/coordinator": "~3.1.0",
  4062. "hyperf/engine": "^2.8",
  4063. "hyperf/support": "~3.1.0",
  4064. "hyperf/tappable": "~3.1.0",
  4065. "php": ">=8.1",
  4066. "psr/container": "^1.0|^2.0",
  4067. "psr/event-dispatcher": "^1.0",
  4068. "psr/log": "^1.0|^2.0|^3.0",
  4069. "symfony/console": "^5.0|^6.0|^7.0"
  4070. },
  4071. "suggest": {
  4072. "hyperf/event": "Dump the info after server start.",
  4073. "hyperf/framework": "Dump the info after server start."
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "branch-alias": {
  4078. "dev-master": "3.1-dev"
  4079. },
  4080. "hyperf": {
  4081. "config": "Hyperf\\Server\\ConfigProvider"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "psr-4": {
  4086. "Hyperf\\Server\\": "src/"
  4087. }
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "description": "A base server library for Hyperf.",
  4094. "homepage": "https://hyperf.io",
  4095. "keywords": [
  4096. "hyperf",
  4097. "php",
  4098. "server",
  4099. "swoole"
  4100. ],
  4101. "support": {
  4102. "docs": "https://hyperf.wiki",
  4103. "issues": "https://github.com/hyperf/hyperf/issues",
  4104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4105. "source": "https://github.com/hyperf/hyperf"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4110. "type": "custom"
  4111. },
  4112. {
  4113. "url": "https://opencollective.com/hyperf",
  4114. "type": "open_collective"
  4115. }
  4116. ],
  4117. "time": "2024-05-23T03:43:58+00:00"
  4118. },
  4119. {
  4120. "name": "hyperf/service-governance",
  4121. "version": "v3.1.15",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/hyperf/service-governance.git",
  4125. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  4130. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "hyperf/contract": "~3.1.0",
  4135. "hyperf/support": "~3.1.0",
  4136. "jetbrains/phpstorm-attributes": "^1.0",
  4137. "php": ">=8.1"
  4138. },
  4139. "suggest": {
  4140. "hyperf/event": "Required to use RegisterServiceListener.",
  4141. "hyperf/framework": "Required to use RegisterServiceListener.",
  4142. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4143. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4144. },
  4145. "type": "library",
  4146. "extra": {
  4147. "branch-alias": {
  4148. "dev-master": "3.1-dev"
  4149. },
  4150. "hyperf": {
  4151. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Hyperf\\ServiceGovernance\\": "src/"
  4157. }
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "description": "A service governance component for Hyperf.",
  4164. "homepage": "https://hyperf.io",
  4165. "keywords": [
  4166. "hyperf",
  4167. "php",
  4168. "service-governance",
  4169. "swoole"
  4170. ],
  4171. "support": {
  4172. "docs": "https://hyperf.wiki",
  4173. "issues": "https://github.com/hyperf/hyperf/issues",
  4174. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4175. "source": "https://github.com/hyperf/hyperf"
  4176. },
  4177. "funding": [
  4178. {
  4179. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4180. "type": "custom"
  4181. },
  4182. {
  4183. "url": "https://opencollective.com/hyperf",
  4184. "type": "open_collective"
  4185. }
  4186. ],
  4187. "time": "2024-03-23T11:28:51+00:00"
  4188. },
  4189. {
  4190. "name": "hyperf/service-governance-consul",
  4191. "version": "v3.1.15",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/hyperf/service-governance-consul.git",
  4195. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4200. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4201. "shasum": ""
  4202. },
  4203. "require": {
  4204. "hyperf/consul": "~3.1.0",
  4205. "hyperf/contract": "~3.1.0",
  4206. "hyperf/service-governance": "~3.1.0",
  4207. "hyperf/support": "~3.1.0",
  4208. "hyperf/utils": "~3.1.0",
  4209. "php": ">=8.1"
  4210. },
  4211. "type": "library",
  4212. "extra": {
  4213. "branch-alias": {
  4214. "dev-master": "3.1-dev"
  4215. },
  4216. "hyperf": {
  4217. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4218. }
  4219. },
  4220. "autoload": {
  4221. "psr-4": {
  4222. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4223. }
  4224. },
  4225. "notification-url": "https://packagist.org/downloads/",
  4226. "license": [
  4227. "MIT"
  4228. ],
  4229. "description": "A consul adapter for service governance.",
  4230. "homepage": "https://hyperf.io",
  4231. "keywords": [
  4232. "consul-adapter",
  4233. "hyperf",
  4234. "php",
  4235. "service-governance",
  4236. "swoole"
  4237. ],
  4238. "support": {
  4239. "docs": "https://hyperf.wiki",
  4240. "issues": "https://github.com/hyperf/hyperf/issues",
  4241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4242. "source": "https://github.com/hyperf/hyperf"
  4243. },
  4244. "funding": [
  4245. {
  4246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4247. "type": "custom"
  4248. },
  4249. {
  4250. "url": "https://opencollective.com/hyperf",
  4251. "type": "open_collective"
  4252. }
  4253. ],
  4254. "time": "2024-03-23T11:28:51+00:00"
  4255. },
  4256. {
  4257. "name": "hyperf/service-governance-nacos",
  4258. "version": "v3.1.15",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4262. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4267. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4268. "shasum": ""
  4269. },
  4270. "require": {
  4271. "hyperf/codec": "~3.1.0",
  4272. "hyperf/contract": "~3.1.0",
  4273. "hyperf/nacos": "~3.1.0",
  4274. "hyperf/service-governance": "~3.1.0",
  4275. "hyperf/support": "~3.1.0",
  4276. "hyperf/utils": "~3.1.0",
  4277. "php": ">=8.1"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-master": "3.1-dev"
  4283. },
  4284. "hyperf": {
  4285. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4291. }
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "description": "A nacos adapter for service governance.",
  4298. "homepage": "https://hyperf.io",
  4299. "keywords": [
  4300. "hyperf",
  4301. "nacos-adapter",
  4302. "php",
  4303. "service-governance",
  4304. "swoole"
  4305. ],
  4306. "support": {
  4307. "docs": "https://hyperf.wiki",
  4308. "issues": "https://github.com/hyperf/hyperf/issues",
  4309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4310. "source": "https://github.com/hyperf/hyperf"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4315. "type": "custom"
  4316. },
  4317. {
  4318. "url": "https://opencollective.com/hyperf",
  4319. "type": "open_collective"
  4320. }
  4321. ],
  4322. "time": "2024-03-23T11:28:51+00:00"
  4323. },
  4324. {
  4325. "name": "hyperf/snowflake",
  4326. "version": "v3.1.15",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/hyperf/snowflake.git",
  4330. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  4335. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  4336. "shasum": "",
  4337. "mirrors": [
  4338. {
  4339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4340. "preferred": true
  4341. }
  4342. ]
  4343. },
  4344. "require": {
  4345. "hyperf/contract": "~3.1.0",
  4346. "php": ">=8.1"
  4347. },
  4348. "suggest": {
  4349. "hyperf/config": "Required to read snowflake config.",
  4350. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4351. "psr/container": "Required to use MetaGeneratorFactory."
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-master": "3.1-dev"
  4357. },
  4358. "hyperf": {
  4359. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "Hyperf\\Snowflake\\": "src/"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "description": "A snowflake library",
  4372. "homepage": "https://hyperf.io",
  4373. "keywords": [
  4374. "php",
  4375. "snowflake"
  4376. ],
  4377. "support": {
  4378. "docs": "https://hyperf.wiki",
  4379. "issues": "https://github.com/hyperf/hyperf/issues",
  4380. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4381. "source": "https://github.com/hyperf/hyperf"
  4382. },
  4383. "funding": [
  4384. {
  4385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4386. "type": "custom"
  4387. },
  4388. {
  4389. "url": "https://opencollective.com/hyperf",
  4390. "type": "open_collective"
  4391. }
  4392. ],
  4393. "time": "2024-03-23T11:28:51+00:00"
  4394. },
  4395. {
  4396. "name": "hyperf/stdlib",
  4397. "version": "v3.1.15",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/hyperf/stdlib.git",
  4401. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4406. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "php": ">=8.1"
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "3.1-dev"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Hyperf\\Stdlib\\": "src/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "description": "A stdlib component for Hyperf.",
  4428. "homepage": "https://hyperf.io",
  4429. "keywords": [
  4430. "hyperf",
  4431. "php",
  4432. "stdlib",
  4433. "swoole"
  4434. ],
  4435. "support": {
  4436. "docs": "https://hyperf.wiki",
  4437. "issues": "https://github.com/hyperf/hyperf/issues",
  4438. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4439. "source": "https://github.com/hyperf/hyperf"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4444. "type": "custom"
  4445. },
  4446. {
  4447. "url": "https://opencollective.com/hyperf",
  4448. "type": "open_collective"
  4449. }
  4450. ],
  4451. "time": "2024-03-23T11:28:51+00:00"
  4452. },
  4453. {
  4454. "name": "hyperf/stringable",
  4455. "version": "v3.1.24",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://github.com/hyperf/stringable.git",
  4459. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4464. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4465. "shasum": ""
  4466. },
  4467. "require": {
  4468. "ext-mbstring": "*",
  4469. "hyperf/collection": "~3.1.0",
  4470. "hyperf/conditionable": "~3.1.0",
  4471. "hyperf/macroable": "~3.1.0",
  4472. "hyperf/tappable": "~3.1.0",
  4473. "php": ">=8.1"
  4474. },
  4475. "suggest": {
  4476. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4477. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4478. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "3.1-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "files": [
  4488. "src/Functions.php"
  4489. ],
  4490. "psr-4": {
  4491. "Hyperf\\Stringable\\": "src/"
  4492. }
  4493. },
  4494. "notification-url": "https://packagist.org/downloads/",
  4495. "license": [
  4496. "MIT"
  4497. ],
  4498. "description": "Hyperf Stringable package which come from illuminate/support",
  4499. "homepage": "https://hyperf.io",
  4500. "keywords": [
  4501. "hyperf",
  4502. "php",
  4503. "stringable",
  4504. "swoole"
  4505. ],
  4506. "support": {
  4507. "docs": "https://hyperf.wiki",
  4508. "issues": "https://github.com/hyperf/hyperf/issues",
  4509. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4510. "source": "https://github.com/hyperf/hyperf"
  4511. },
  4512. "funding": [
  4513. {
  4514. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4515. "type": "custom"
  4516. },
  4517. {
  4518. "url": "https://opencollective.com/hyperf",
  4519. "type": "open_collective"
  4520. }
  4521. ],
  4522. "time": "2024-05-27T03:20:24+00:00"
  4523. },
  4524. {
  4525. "name": "hyperf/support",
  4526. "version": "v3.1.25",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/hyperf/support.git",
  4530. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/hyperf/support/zipball/4b74b58b94cf029696a93d479068341a67b27a0d",
  4535. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "hyperf/collection": "~3.1.0",
  4540. "hyperf/context": "~3.1.0",
  4541. "hyperf/contract": "~3.1.0",
  4542. "hyperf/coroutine": "~3.1.0",
  4543. "hyperf/macroable": "~3.1.0",
  4544. "hyperf/stringable": "~3.1.0",
  4545. "php": ">=8.1"
  4546. },
  4547. "suggest": {
  4548. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4549. },
  4550. "type": "library",
  4551. "extra": {
  4552. "branch-alias": {
  4553. "dev-master": "3.1-dev"
  4554. }
  4555. },
  4556. "autoload": {
  4557. "files": [
  4558. "src/Functions.php"
  4559. ],
  4560. "psr-4": {
  4561. "Hyperf\\Support\\": "src/"
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "description": "A support component for Hyperf.",
  4569. "homepage": "https://hyperf.io",
  4570. "keywords": [
  4571. "hyperf",
  4572. "php",
  4573. "support",
  4574. "swoole"
  4575. ],
  4576. "support": {
  4577. "docs": "https://hyperf.wiki",
  4578. "issues": "https://github.com/hyperf/hyperf/issues",
  4579. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4580. "source": "https://github.com/hyperf/hyperf"
  4581. },
  4582. "funding": [
  4583. {
  4584. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4585. "type": "custom"
  4586. },
  4587. {
  4588. "url": "https://opencollective.com/hyperf",
  4589. "type": "open_collective"
  4590. }
  4591. ],
  4592. "time": "2024-05-30T09:57:29+00:00"
  4593. },
  4594. {
  4595. "name": "hyperf/tappable",
  4596. "version": "v3.1.15",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/hyperf/tappable.git",
  4600. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4605. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4606. "shasum": ""
  4607. },
  4608. "require": {
  4609. "php": ">=8.1"
  4610. },
  4611. "type": "library",
  4612. "extra": {
  4613. "branch-alias": {
  4614. "dev-master": "3.1-dev"
  4615. }
  4616. },
  4617. "autoload": {
  4618. "files": [
  4619. "src/Functions.php"
  4620. ],
  4621. "psr-4": {
  4622. "Hyperf\\Tappable\\": "src/"
  4623. }
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4630. "homepage": "https://hyperf.io",
  4631. "keywords": [
  4632. "hyperf",
  4633. "php",
  4634. "swoole",
  4635. "tappable"
  4636. ],
  4637. "support": {
  4638. "docs": "https://hyperf.wiki",
  4639. "issues": "https://github.com/hyperf/hyperf/issues",
  4640. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4641. "source": "https://github.com/hyperf/hyperf"
  4642. },
  4643. "funding": [
  4644. {
  4645. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4646. "type": "custom"
  4647. },
  4648. {
  4649. "url": "https://opencollective.com/hyperf",
  4650. "type": "open_collective"
  4651. }
  4652. ],
  4653. "time": "2024-03-23T11:28:51+00:00"
  4654. },
  4655. {
  4656. "name": "hyperf/translation",
  4657. "version": "v3.1.15",
  4658. "source": {
  4659. "type": "git",
  4660. "url": "https://github.com/hyperf/translation.git",
  4661. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d"
  4662. },
  4663. "dist": {
  4664. "type": "zip",
  4665. "url": "https://api.github.com/repos/hyperf/translation/zipball/7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4666. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4667. "shasum": ""
  4668. },
  4669. "require": {
  4670. "hyperf/contract": "~3.1.0",
  4671. "hyperf/macroable": "~3.1.0",
  4672. "hyperf/support": "~3.1.0",
  4673. "hyperf/utils": "~3.1.0",
  4674. "php": ">=8.1",
  4675. "psr/container": "^1.0|^2.0"
  4676. },
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "3.1-dev"
  4681. },
  4682. "hyperf": {
  4683. "config": "Hyperf\\Translation\\ConfigProvider"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "files": [
  4688. "src/Functions.php"
  4689. ],
  4690. "psr-4": {
  4691. "Hyperf\\Translation\\": "src/"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "description": "An independent translation component, forked by illuminate/translation.",
  4699. "keywords": [
  4700. "hyperf",
  4701. "translation"
  4702. ],
  4703. "support": {
  4704. "issues": "https://github.com/hyperf/translation/issues",
  4705. "source": "https://github.com/hyperf/translation/tree/v3.1.15"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://opencollective.com/hyperf",
  4714. "type": "open_collective"
  4715. }
  4716. ],
  4717. "time": "2024-03-23T11:28:51+00:00"
  4718. },
  4719. {
  4720. "name": "hyperf/utils",
  4721. "version": "v3.1.0",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/hyperf/utils.git",
  4725. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4730. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4731. "shasum": ""
  4732. },
  4733. "require": {
  4734. "doctrine/inflector": "^2.0",
  4735. "hyperf/code-parser": "~3.1.0",
  4736. "hyperf/codec": "~3.1.0",
  4737. "hyperf/collection": "~3.1.0",
  4738. "hyperf/context": "~3.1.0",
  4739. "hyperf/contract": "~3.1.0",
  4740. "hyperf/coordinator": "~3.1.0",
  4741. "hyperf/coroutine": "~3.1.0",
  4742. "hyperf/engine": "^2.0",
  4743. "hyperf/macroable": "~3.1.0",
  4744. "hyperf/serializer": "~3.1.0",
  4745. "hyperf/stringable": "~3.1.0",
  4746. "hyperf/support": "~3.1.0",
  4747. "php": ">=8.1"
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-master": "3.1-dev"
  4753. }
  4754. },
  4755. "notification-url": "https://packagist.org/downloads/",
  4756. "license": [
  4757. "MIT"
  4758. ],
  4759. "description": "A tools package that could help developer solved the problem quickly.",
  4760. "homepage": "https://hyperf.io",
  4761. "keywords": [
  4762. "hyperf",
  4763. "php",
  4764. "swoole",
  4765. "utils"
  4766. ],
  4767. "support": {
  4768. "docs": "https://hyperf.wiki",
  4769. "issues": "https://github.com/hyperf/hyperf/issues",
  4770. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4771. "source": "https://github.com/hyperf/hyperf"
  4772. },
  4773. "funding": [
  4774. {
  4775. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4776. "type": "custom"
  4777. },
  4778. {
  4779. "url": "https://opencollective.com/hyperf",
  4780. "type": "open_collective"
  4781. }
  4782. ],
  4783. "time": "2023-11-24T03:10:53+00:00"
  4784. },
  4785. {
  4786. "name": "hyperf/validation",
  4787. "version": "v3.1.25",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://github.com/hyperf/validation.git",
  4791. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://api.github.com/repos/hyperf/validation/zipball/a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4796. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4797. "shasum": ""
  4798. },
  4799. "require": {
  4800. "egulias/email-validator": "^3.0",
  4801. "hyperf/collection": "~3.1.0",
  4802. "hyperf/conditionable": "~3.1.0",
  4803. "hyperf/contract": "~3.1.0",
  4804. "hyperf/di": "~3.1.0",
  4805. "hyperf/framework": "~3.1.0",
  4806. "hyperf/macroable": "~3.1.0",
  4807. "hyperf/stringable": "~3.1.0",
  4808. "hyperf/support": "~3.1.0",
  4809. "hyperf/tappable": "~3.1.0",
  4810. "hyperf/translation": "~3.1.0",
  4811. "hyperf/utils": "~3.1.0",
  4812. "nesbot/carbon": "^2.21",
  4813. "php": ">=8.1",
  4814. "psr/container": "^1.0|^2.0",
  4815. "psr/event-dispatcher": "^1.0",
  4816. "psr/http-message": "^1.0|^2.0"
  4817. },
  4818. "suggest": {
  4819. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4820. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4821. },
  4822. "type": "library",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-master": "3.1-dev"
  4826. },
  4827. "hyperf": {
  4828. "config": "Hyperf\\Validation\\ConfigProvider"
  4829. }
  4830. },
  4831. "autoload": {
  4832. "psr-4": {
  4833. "Hyperf\\Validation\\": "src/"
  4834. }
  4835. },
  4836. "notification-url": "https://packagist.org/downloads/",
  4837. "license": [
  4838. "MIT"
  4839. ],
  4840. "description": "hyperf validation",
  4841. "keywords": [
  4842. "hyperf",
  4843. "validation"
  4844. ],
  4845. "support": {
  4846. "issues": "https://github.com/hyperf/validation/issues",
  4847. "source": "https://github.com/hyperf/validation/tree/v3.1.25"
  4848. },
  4849. "funding": [
  4850. {
  4851. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4852. "type": "custom"
  4853. },
  4854. {
  4855. "url": "https://opencollective.com/hyperf",
  4856. "type": "open_collective"
  4857. }
  4858. ],
  4859. "time": "2024-05-30T08:59:48+00:00"
  4860. },
  4861. {
  4862. "name": "hyperf/websocket-server",
  4863. "version": "v3.1.16",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://github.com/hyperf/websocket-server.git",
  4867. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4872. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4873. "shasum": "",
  4874. "mirrors": [
  4875. {
  4876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4877. "preferred": true
  4878. }
  4879. ]
  4880. },
  4881. "require": {
  4882. "hyperf/collection": "~3.1.0",
  4883. "hyperf/contract": "~3.1.0",
  4884. "hyperf/exception-handler": "~3.1.0",
  4885. "hyperf/http-server": "~3.1.0",
  4886. "hyperf/support": "~3.1.0",
  4887. "hyperf/utils": "~3.1.0",
  4888. "php": ">=8.1",
  4889. "psr/container": "^1.0|^2.0",
  4890. "psr/event-dispatcher": "^1.0"
  4891. },
  4892. "type": "library",
  4893. "extra": {
  4894. "branch-alias": {
  4895. "dev-master": "3.1-dev"
  4896. },
  4897. "hyperf": {
  4898. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4899. }
  4900. },
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Hyperf\\WebSocketServer\\": "src/"
  4904. }
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "description": "A websocket server library for Hyperf.",
  4911. "homepage": "https://hyperf.io",
  4912. "keywords": [
  4913. "hyperf",
  4914. "php",
  4915. "swoole",
  4916. "websocket"
  4917. ],
  4918. "support": {
  4919. "docs": "https://hyperf.wiki",
  4920. "issues": "https://github.com/hyperf/hyperf/issues",
  4921. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4922. "source": "https://github.com/hyperf/hyperf"
  4923. },
  4924. "funding": [
  4925. {
  4926. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4927. "type": "custom"
  4928. },
  4929. {
  4930. "url": "https://opencollective.com/hyperf",
  4931. "type": "open_collective"
  4932. }
  4933. ],
  4934. "time": "2024-04-02T02:40:09+00:00"
  4935. },
  4936. {
  4937. "name": "jetbrains/phpstorm-attributes",
  4938. "version": "1.1",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4942. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4947. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4948. "shasum": ""
  4949. },
  4950. "type": "library",
  4951. "autoload": {
  4952. "psr-4": {
  4953. "JetBrains\\PhpStorm\\": "src/"
  4954. }
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "Apache-2.0"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "JetBrains",
  4963. "homepage": "https://www.jetbrains.com"
  4964. }
  4965. ],
  4966. "description": "PhpStorm specific attributes",
  4967. "keywords": [
  4968. "attributes",
  4969. "jetbrains",
  4970. "phpstorm"
  4971. ],
  4972. "support": {
  4973. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4974. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4975. },
  4976. "time": "2023-09-01T08:50:25+00:00"
  4977. },
  4978. {
  4979. "name": "laminas/laminas-mime",
  4980. "version": "2.12.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/laminas/laminas-mime.git",
  4984. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4989. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4990. "shasum": ""
  4991. },
  4992. "require": {
  4993. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4994. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4995. },
  4996. "conflict": {
  4997. "zendframework/zend-mime": "*"
  4998. },
  4999. "require-dev": {
  5000. "laminas/laminas-coding-standard": "~2.4.0",
  5001. "laminas/laminas-mail": "^2.19.0",
  5002. "phpunit/phpunit": "~9.5.25"
  5003. },
  5004. "suggest": {
  5005. "laminas/laminas-mail": "Laminas\\Mail component"
  5006. },
  5007. "type": "library",
  5008. "autoload": {
  5009. "psr-4": {
  5010. "Laminas\\Mime\\": "src/"
  5011. }
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "BSD-3-Clause"
  5016. ],
  5017. "description": "Create and parse MIME messages and parts",
  5018. "homepage": "https://laminas.dev",
  5019. "keywords": [
  5020. "laminas",
  5021. "mime"
  5022. ],
  5023. "support": {
  5024. "chat": "https://laminas.dev/chat",
  5025. "docs": "https://docs.laminas.dev/laminas-mime/",
  5026. "forum": "https://discourse.laminas.dev",
  5027. "issues": "https://github.com/laminas/laminas-mime/issues",
  5028. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5029. "source": "https://github.com/laminas/laminas-mime"
  5030. },
  5031. "funding": [
  5032. {
  5033. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5034. "type": "community_bridge"
  5035. }
  5036. ],
  5037. "time": "2023-11-02T16:47:19+00:00"
  5038. },
  5039. {
  5040. "name": "laminas/laminas-stdlib",
  5041. "version": "3.19.0",
  5042. "source": {
  5043. "type": "git",
  5044. "url": "https://github.com/laminas/laminas-stdlib.git",
  5045. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  5046. },
  5047. "dist": {
  5048. "type": "zip",
  5049. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  5050. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  5051. "shasum": ""
  5052. },
  5053. "require": {
  5054. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5055. },
  5056. "conflict": {
  5057. "zendframework/zend-stdlib": "*"
  5058. },
  5059. "require-dev": {
  5060. "laminas/laminas-coding-standard": "^2.5",
  5061. "phpbench/phpbench": "^1.2.15",
  5062. "phpunit/phpunit": "^10.5.8",
  5063. "psalm/plugin-phpunit": "^0.18.4",
  5064. "vimeo/psalm": "^5.20.0"
  5065. },
  5066. "type": "library",
  5067. "autoload": {
  5068. "psr-4": {
  5069. "Laminas\\Stdlib\\": "src/"
  5070. }
  5071. },
  5072. "notification-url": "https://packagist.org/downloads/",
  5073. "license": [
  5074. "BSD-3-Clause"
  5075. ],
  5076. "description": "SPL extensions, array utilities, error handlers, and more",
  5077. "homepage": "https://laminas.dev",
  5078. "keywords": [
  5079. "laminas",
  5080. "stdlib"
  5081. ],
  5082. "support": {
  5083. "chat": "https://laminas.dev/chat",
  5084. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5085. "forum": "https://discourse.laminas.dev",
  5086. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5087. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5088. "source": "https://github.com/laminas/laminas-stdlib"
  5089. },
  5090. "funding": [
  5091. {
  5092. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5093. "type": "community_bridge"
  5094. }
  5095. ],
  5096. "time": "2024-01-19T12:39:49+00:00"
  5097. },
  5098. {
  5099. "name": "lcobucci/clock",
  5100. "version": "2.3.0",
  5101. "source": {
  5102. "type": "git",
  5103. "url": "https://github.com/lcobucci/clock.git",
  5104. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5105. },
  5106. "dist": {
  5107. "type": "zip",
  5108. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5109. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5110. "shasum": ""
  5111. },
  5112. "require": {
  5113. "php": "~8.1.0 || ~8.2.0",
  5114. "stella-maris/clock": "^0.1.7"
  5115. },
  5116. "provide": {
  5117. "psr/clock-implementation": "1.0"
  5118. },
  5119. "require-dev": {
  5120. "infection/infection": "^0.26",
  5121. "lcobucci/coding-standard": "^9.0",
  5122. "phpstan/extension-installer": "^1.2",
  5123. "phpstan/phpstan": "^1.9.4",
  5124. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5125. "phpstan/phpstan-phpunit": "^1.3.2",
  5126. "phpstan/phpstan-strict-rules": "^1.4.4",
  5127. "phpunit/phpunit": "^9.5.27"
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Lcobucci\\Clock\\": "src"
  5133. }
  5134. },
  5135. "notification-url": "https://packagist.org/downloads/",
  5136. "license": [
  5137. "MIT"
  5138. ],
  5139. "authors": [
  5140. {
  5141. "name": "Luís Cobucci",
  5142. "email": "lcobucci@gmail.com"
  5143. }
  5144. ],
  5145. "description": "Yet another clock abstraction",
  5146. "support": {
  5147. "issues": "https://github.com/lcobucci/clock/issues",
  5148. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5149. },
  5150. "funding": [
  5151. {
  5152. "url": "https://github.com/lcobucci",
  5153. "type": "github"
  5154. },
  5155. {
  5156. "url": "https://www.patreon.com/lcobucci",
  5157. "type": "patreon"
  5158. }
  5159. ],
  5160. "time": "2022-12-19T14:38:11+00:00"
  5161. },
  5162. {
  5163. "name": "lcobucci/jwt",
  5164. "version": "4.1.5",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://github.com/lcobucci/jwt.git",
  5168. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5169. },
  5170. "dist": {
  5171. "type": "zip",
  5172. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5173. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5174. "shasum": ""
  5175. },
  5176. "require": {
  5177. "ext-hash": "*",
  5178. "ext-json": "*",
  5179. "ext-mbstring": "*",
  5180. "ext-openssl": "*",
  5181. "ext-sodium": "*",
  5182. "lcobucci/clock": "^2.0",
  5183. "php": "^7.4 || ^8.0"
  5184. },
  5185. "require-dev": {
  5186. "infection/infection": "^0.21",
  5187. "lcobucci/coding-standard": "^6.0",
  5188. "mikey179/vfsstream": "^1.6.7",
  5189. "phpbench/phpbench": "^1.0",
  5190. "phpstan/extension-installer": "^1.0",
  5191. "phpstan/phpstan": "^0.12",
  5192. "phpstan/phpstan-deprecation-rules": "^0.12",
  5193. "phpstan/phpstan-phpunit": "^0.12",
  5194. "phpstan/phpstan-strict-rules": "^0.12",
  5195. "phpunit/php-invoker": "^3.1",
  5196. "phpunit/phpunit": "^9.5"
  5197. },
  5198. "type": "library",
  5199. "autoload": {
  5200. "psr-4": {
  5201. "Lcobucci\\JWT\\": "src"
  5202. }
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "BSD-3-Clause"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Luís Cobucci",
  5211. "email": "lcobucci@gmail.com",
  5212. "role": "Developer"
  5213. }
  5214. ],
  5215. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5216. "keywords": [
  5217. "JWS",
  5218. "jwt"
  5219. ],
  5220. "support": {
  5221. "issues": "https://github.com/lcobucci/jwt/issues",
  5222. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5223. },
  5224. "funding": [
  5225. {
  5226. "url": "https://github.com/lcobucci",
  5227. "type": "github"
  5228. },
  5229. {
  5230. "url": "https://www.patreon.com/lcobucci",
  5231. "type": "patreon"
  5232. }
  5233. ],
  5234. "time": "2021-09-28T19:34:56+00:00"
  5235. },
  5236. {
  5237. "name": "markrogoyski/math-php",
  5238. "version": "v2.10.0",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/markrogoyski/math-php.git",
  5242. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5247. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5248. "shasum": ""
  5249. },
  5250. "require": {
  5251. "ext-json": "*",
  5252. "php": ">=7.2.0"
  5253. },
  5254. "require-dev": {
  5255. "php-coveralls/php-coveralls": "^2.0",
  5256. "php-parallel-lint/php-parallel-lint": "^1.2",
  5257. "phploc/phploc": "*",
  5258. "phpmd/phpmd": "^2.6",
  5259. "phpstan/phpstan": "^1.10",
  5260. "phpunit/phpunit": "^8.5",
  5261. "squizlabs/php_codesniffer": "3.*"
  5262. },
  5263. "type": "library",
  5264. "autoload": {
  5265. "psr-4": {
  5266. "MathPHP\\": "src/"
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Mark Rogoyski",
  5276. "email": "mark@rogoyski.com",
  5277. "homepage": "https://github.com/markrogoyski",
  5278. "role": "Lead developer"
  5279. },
  5280. {
  5281. "name": "Kevin Nowaczyk",
  5282. "homepage": "https://github.com/Beakerboy",
  5283. "role": "Developer"
  5284. },
  5285. {
  5286. "name": "MathPHP Community of Contributors",
  5287. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5288. }
  5289. ],
  5290. "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",
  5291. "homepage": "https://github.com/markrogoyski/math-php/",
  5292. "keywords": [
  5293. "algebra",
  5294. "combinatorics",
  5295. "distributions",
  5296. "linear algebra",
  5297. "math",
  5298. "mathematics",
  5299. "matrix",
  5300. "numerical analysis",
  5301. "probability",
  5302. "regressions",
  5303. "statistics"
  5304. ],
  5305. "support": {
  5306. "issues": "https://github.com/markrogoyski/math-php/issues",
  5307. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5308. },
  5309. "time": "2024-04-17T00:09:51+00:00"
  5310. },
  5311. {
  5312. "name": "monolog/monolog",
  5313. "version": "3.6.0",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/Seldaek/monolog.git",
  5317. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5322. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5323. "shasum": ""
  5324. },
  5325. "require": {
  5326. "php": ">=8.1",
  5327. "psr/log": "^2.0 || ^3.0"
  5328. },
  5329. "provide": {
  5330. "psr/log-implementation": "3.0.0"
  5331. },
  5332. "require-dev": {
  5333. "aws/aws-sdk-php": "^3.0",
  5334. "doctrine/couchdb": "~1.0@dev",
  5335. "elasticsearch/elasticsearch": "^7 || ^8",
  5336. "ext-json": "*",
  5337. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5338. "guzzlehttp/guzzle": "^7.4.5",
  5339. "guzzlehttp/psr7": "^2.2",
  5340. "mongodb/mongodb": "^1.8",
  5341. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5342. "phpstan/phpstan": "^1.9",
  5343. "phpstan/phpstan-deprecation-rules": "^1.0",
  5344. "phpstan/phpstan-strict-rules": "^1.4",
  5345. "phpunit/phpunit": "^10.5.17",
  5346. "predis/predis": "^1.1 || ^2",
  5347. "ruflin/elastica": "^7",
  5348. "symfony/mailer": "^5.4 || ^6",
  5349. "symfony/mime": "^5.4 || ^6"
  5350. },
  5351. "suggest": {
  5352. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5353. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5354. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5355. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5356. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5357. "ext-mbstring": "Allow to work properly with unicode symbols",
  5358. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5359. "ext-openssl": "Required to send log messages using SSL",
  5360. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5361. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5362. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5363. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5364. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5365. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "branch-alias": {
  5370. "dev-main": "3.x-dev"
  5371. }
  5372. },
  5373. "autoload": {
  5374. "psr-4": {
  5375. "Monolog\\": "src/Monolog"
  5376. }
  5377. },
  5378. "notification-url": "https://packagist.org/downloads/",
  5379. "license": [
  5380. "MIT"
  5381. ],
  5382. "authors": [
  5383. {
  5384. "name": "Jordi Boggiano",
  5385. "email": "j.boggiano@seld.be",
  5386. "homepage": "https://seld.be"
  5387. }
  5388. ],
  5389. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5390. "homepage": "https://github.com/Seldaek/monolog",
  5391. "keywords": [
  5392. "log",
  5393. "logging",
  5394. "psr-3"
  5395. ],
  5396. "support": {
  5397. "issues": "https://github.com/Seldaek/monolog/issues",
  5398. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  5399. },
  5400. "funding": [
  5401. {
  5402. "url": "https://github.com/Seldaek",
  5403. "type": "github"
  5404. },
  5405. {
  5406. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5407. "type": "tidelift"
  5408. }
  5409. ],
  5410. "time": "2024-04-12T21:02:21+00:00"
  5411. },
  5412. {
  5413. "name": "nesbot/carbon",
  5414. "version": "2.72.5",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/briannesbitt/Carbon.git",
  5418. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5423. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "carbonphp/carbon-doctrine-types": "*",
  5428. "ext-json": "*",
  5429. "php": "^7.1.8 || ^8.0",
  5430. "psr/clock": "^1.0",
  5431. "symfony/polyfill-mbstring": "^1.0",
  5432. "symfony/polyfill-php80": "^1.16",
  5433. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5434. },
  5435. "provide": {
  5436. "psr/clock-implementation": "1.0"
  5437. },
  5438. "require-dev": {
  5439. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5440. "doctrine/orm": "^2.7 || ^3.0",
  5441. "friendsofphp/php-cs-fixer": "^3.0",
  5442. "kylekatarnls/multi-tester": "^2.0",
  5443. "ondrejmirtes/better-reflection": "*",
  5444. "phpmd/phpmd": "^2.9",
  5445. "phpstan/extension-installer": "^1.0",
  5446. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5447. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5448. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5449. "squizlabs/php_codesniffer": "^3.4"
  5450. },
  5451. "bin": [
  5452. "bin/carbon"
  5453. ],
  5454. "type": "library",
  5455. "extra": {
  5456. "branch-alias": {
  5457. "dev-master": "3.x-dev",
  5458. "dev-2.x": "2.x-dev"
  5459. },
  5460. "laravel": {
  5461. "providers": [
  5462. "Carbon\\Laravel\\ServiceProvider"
  5463. ]
  5464. },
  5465. "phpstan": {
  5466. "includes": [
  5467. "extension.neon"
  5468. ]
  5469. }
  5470. },
  5471. "autoload": {
  5472. "psr-4": {
  5473. "Carbon\\": "src/Carbon/"
  5474. }
  5475. },
  5476. "notification-url": "https://packagist.org/downloads/",
  5477. "license": [
  5478. "MIT"
  5479. ],
  5480. "authors": [
  5481. {
  5482. "name": "Brian Nesbitt",
  5483. "email": "brian@nesbot.com",
  5484. "homepage": "https://markido.com"
  5485. },
  5486. {
  5487. "name": "kylekatarnls",
  5488. "homepage": "https://github.com/kylekatarnls"
  5489. }
  5490. ],
  5491. "description": "An API extension for DateTime that supports 281 different languages.",
  5492. "homepage": "https://carbon.nesbot.com",
  5493. "keywords": [
  5494. "date",
  5495. "datetime",
  5496. "time"
  5497. ],
  5498. "support": {
  5499. "docs": "https://carbon.nesbot.com/docs",
  5500. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5501. "source": "https://github.com/briannesbitt/Carbon"
  5502. },
  5503. "funding": [
  5504. {
  5505. "url": "https://github.com/sponsors/kylekatarnls",
  5506. "type": "github"
  5507. },
  5508. {
  5509. "url": "https://opencollective.com/Carbon#sponsor",
  5510. "type": "opencollective"
  5511. },
  5512. {
  5513. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5514. "type": "tidelift"
  5515. }
  5516. ],
  5517. "time": "2024-06-03T19:18:41+00:00"
  5518. },
  5519. {
  5520. "name": "nikic/fast-route",
  5521. "version": "v1.3.0",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/nikic/FastRoute.git",
  5525. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5530. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5531. "shasum": ""
  5532. },
  5533. "require": {
  5534. "php": ">=5.4.0"
  5535. },
  5536. "require-dev": {
  5537. "phpunit/phpunit": "^4.8.35|~5.7"
  5538. },
  5539. "type": "library",
  5540. "autoload": {
  5541. "files": [
  5542. "src/functions.php"
  5543. ],
  5544. "psr-4": {
  5545. "FastRoute\\": "src/"
  5546. }
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "BSD-3-Clause"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Nikita Popov",
  5555. "email": "nikic@php.net"
  5556. }
  5557. ],
  5558. "description": "Fast request router for PHP",
  5559. "keywords": [
  5560. "router",
  5561. "routing"
  5562. ],
  5563. "support": {
  5564. "issues": "https://github.com/nikic/FastRoute/issues",
  5565. "source": "https://github.com/nikic/FastRoute/tree/master"
  5566. },
  5567. "time": "2018-02-13T20:26:39+00:00"
  5568. },
  5569. {
  5570. "name": "nikic/php-parser",
  5571. "version": "v4.19.1",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://github.com/nikic/PHP-Parser.git",
  5575. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5576. },
  5577. "dist": {
  5578. "type": "zip",
  5579. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5580. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5581. "shasum": ""
  5582. },
  5583. "require": {
  5584. "ext-tokenizer": "*",
  5585. "php": ">=7.1"
  5586. },
  5587. "require-dev": {
  5588. "ircmaxell/php-yacc": "^0.0.7",
  5589. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5590. },
  5591. "bin": [
  5592. "bin/php-parse"
  5593. ],
  5594. "type": "library",
  5595. "extra": {
  5596. "branch-alias": {
  5597. "dev-master": "4.9-dev"
  5598. }
  5599. },
  5600. "autoload": {
  5601. "psr-4": {
  5602. "PhpParser\\": "lib/PhpParser"
  5603. }
  5604. },
  5605. "notification-url": "https://packagist.org/downloads/",
  5606. "license": [
  5607. "BSD-3-Clause"
  5608. ],
  5609. "authors": [
  5610. {
  5611. "name": "Nikita Popov"
  5612. }
  5613. ],
  5614. "description": "A PHP parser written in PHP",
  5615. "keywords": [
  5616. "parser",
  5617. "php"
  5618. ],
  5619. "support": {
  5620. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5621. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5622. },
  5623. "time": "2024-03-17T08:10:35+00:00"
  5624. },
  5625. {
  5626. "name": "paragonie/constant_time_encoding",
  5627. "version": "v3.0.0",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5631. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5636. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5637. "shasum": "",
  5638. "mirrors": [
  5639. {
  5640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5641. "preferred": true
  5642. }
  5643. ]
  5644. },
  5645. "require": {
  5646. "php": "^8"
  5647. },
  5648. "require-dev": {
  5649. "phpunit/phpunit": "^9",
  5650. "vimeo/psalm": "^4|^5"
  5651. },
  5652. "type": "library",
  5653. "autoload": {
  5654. "psr-4": {
  5655. "ParagonIE\\ConstantTime\\": "src/"
  5656. }
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Paragon Initiative Enterprises",
  5665. "email": "security@paragonie.com",
  5666. "homepage": "https://paragonie.com",
  5667. "role": "Maintainer"
  5668. },
  5669. {
  5670. "name": "Steve 'Sc00bz' Thomas",
  5671. "email": "steve@tobtu.com",
  5672. "homepage": "https://www.tobtu.com",
  5673. "role": "Original Developer"
  5674. }
  5675. ],
  5676. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5677. "keywords": [
  5678. "base16",
  5679. "base32",
  5680. "base32_decode",
  5681. "base32_encode",
  5682. "base64",
  5683. "base64_decode",
  5684. "base64_encode",
  5685. "bin2hex",
  5686. "encoding",
  5687. "hex",
  5688. "hex2bin",
  5689. "rfc4648"
  5690. ],
  5691. "support": {
  5692. "email": "info@paragonie.com",
  5693. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5694. "source": "https://github.com/paragonie/constant_time_encoding"
  5695. },
  5696. "time": "2024-05-08T12:36:18+00:00"
  5697. },
  5698. {
  5699. "name": "paragonie/random_compat",
  5700. "version": "v9.99.100",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/paragonie/random_compat.git",
  5704. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5709. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5710. "shasum": "",
  5711. "mirrors": [
  5712. {
  5713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5714. "preferred": true
  5715. }
  5716. ]
  5717. },
  5718. "require": {
  5719. "php": ">= 7"
  5720. },
  5721. "require-dev": {
  5722. "phpunit/phpunit": "4.*|5.*",
  5723. "vimeo/psalm": "^1"
  5724. },
  5725. "suggest": {
  5726. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5727. },
  5728. "type": "library",
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Paragon Initiative Enterprises",
  5736. "email": "security@paragonie.com",
  5737. "homepage": "https://paragonie.com"
  5738. }
  5739. ],
  5740. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5741. "keywords": [
  5742. "csprng",
  5743. "polyfill",
  5744. "pseudorandom",
  5745. "random"
  5746. ],
  5747. "support": {
  5748. "email": "info@paragonie.com",
  5749. "issues": "https://github.com/paragonie/random_compat/issues",
  5750. "source": "https://github.com/paragonie/random_compat"
  5751. },
  5752. "time": "2020-10-15T08:29:30+00:00"
  5753. },
  5754. {
  5755. "name": "php-amqplib/php-amqplib",
  5756. "version": "v3.6.1",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5760. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5765. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5766. "shasum": "",
  5767. "mirrors": [
  5768. {
  5769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5770. "preferred": true
  5771. }
  5772. ]
  5773. },
  5774. "require": {
  5775. "ext-mbstring": "*",
  5776. "ext-sockets": "*",
  5777. "php": "^7.2||^8.0",
  5778. "phpseclib/phpseclib": "^2.0|^3.0"
  5779. },
  5780. "conflict": {
  5781. "php": "7.4.0 - 7.4.1"
  5782. },
  5783. "replace": {
  5784. "videlalvaro/php-amqplib": "self.version"
  5785. },
  5786. "require-dev": {
  5787. "ext-curl": "*",
  5788. "nategood/httpful": "^0.2.20",
  5789. "phpunit/phpunit": "^7.5|^9.5",
  5790. "squizlabs/php_codesniffer": "^3.6"
  5791. },
  5792. "type": "library",
  5793. "extra": {
  5794. "branch-alias": {
  5795. "dev-master": "3.0-dev"
  5796. }
  5797. },
  5798. "autoload": {
  5799. "psr-4": {
  5800. "PhpAmqpLib\\": "PhpAmqpLib/"
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "LGPL-2.1-or-later"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Alvaro Videla",
  5810. "role": "Original Maintainer"
  5811. },
  5812. {
  5813. "name": "Raúl Araya",
  5814. "email": "nubeiro@gmail.com",
  5815. "role": "Maintainer"
  5816. },
  5817. {
  5818. "name": "Luke Bakken",
  5819. "email": "luke@bakken.io",
  5820. "role": "Maintainer"
  5821. },
  5822. {
  5823. "name": "Ramūnas Dronga",
  5824. "email": "github@ramuno.lt",
  5825. "role": "Maintainer"
  5826. }
  5827. ],
  5828. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5829. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5830. "keywords": [
  5831. "message",
  5832. "queue",
  5833. "rabbitmq"
  5834. ],
  5835. "support": {
  5836. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5837. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  5838. },
  5839. "time": "2024-02-07T17:21:26+00:00"
  5840. },
  5841. {
  5842. "name": "php-di/phpdoc-reader",
  5843. "version": "2.2.1",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5847. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5852. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "php": ">=7.2.0"
  5857. },
  5858. "require-dev": {
  5859. "mnapoli/hard-mode": "~0.3.0",
  5860. "phpunit/phpunit": "^8.5|^9.0"
  5861. },
  5862. "type": "library",
  5863. "autoload": {
  5864. "psr-4": {
  5865. "PhpDocReader\\": "src/PhpDocReader"
  5866. }
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5873. "keywords": [
  5874. "phpdoc",
  5875. "reflection"
  5876. ],
  5877. "support": {
  5878. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5879. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5880. },
  5881. "time": "2020-10-12T12:39:22+00:00"
  5882. },
  5883. {
  5884. "name": "phper666/jwt-auth",
  5885. "version": "v4.0.11",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/phper666/jwt-auth.git",
  5889. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5894. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "ext-swoole": ">=4.4",
  5899. "lcobucci/jwt": "4.1.5",
  5900. "nesbot/carbon": "^1.0 || ^2.0",
  5901. "php": ">=7.4"
  5902. },
  5903. "suggest": {
  5904. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5905. "hyperf/command": "required hyperf/command ~2.2.0",
  5906. "hyperf/config": "required hyperf/config ~2.2.0",
  5907. "hyperf/di": "required hyperf/di ~2.2.0"
  5908. },
  5909. "type": "library",
  5910. "extra": {
  5911. "hyperf": {
  5912. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5913. }
  5914. },
  5915. "autoload": {
  5916. "files": [
  5917. "src/Functions.php"
  5918. ],
  5919. "psr-4": {
  5920. "Phper666\\JWTAuth\\": "src/"
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Li Yuzhao",
  5930. "email": "562405704@qq.com",
  5931. "homepage": "https://github.com/phper666/jwt-auth",
  5932. "role": "Developer"
  5933. }
  5934. ],
  5935. "description": "jwt-auth Component",
  5936. "keywords": [
  5937. "hyperf",
  5938. "php"
  5939. ],
  5940. "support": {
  5941. "issues": "https://github.com/phper666/jwt-auth/issues",
  5942. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5943. },
  5944. "time": "2024-02-02T13:24:54+00:00"
  5945. },
  5946. {
  5947. "name": "phpoption/phpoption",
  5948. "version": "1.9.2",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/schmittjoh/php-option.git",
  5952. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5957. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5958. "shasum": ""
  5959. },
  5960. "require": {
  5961. "php": "^7.2.5 || ^8.0"
  5962. },
  5963. "require-dev": {
  5964. "bamarni/composer-bin-plugin": "^1.8.2",
  5965. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "bamarni-bin": {
  5970. "bin-links": true,
  5971. "forward-command": true
  5972. },
  5973. "branch-alias": {
  5974. "dev-master": "1.9-dev"
  5975. }
  5976. },
  5977. "autoload": {
  5978. "psr-4": {
  5979. "PhpOption\\": "src/PhpOption/"
  5980. }
  5981. },
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "Apache-2.0"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Johannes M. Schmitt",
  5989. "email": "schmittjoh@gmail.com",
  5990. "homepage": "https://github.com/schmittjoh"
  5991. },
  5992. {
  5993. "name": "Graham Campbell",
  5994. "email": "hello@gjcampbell.co.uk",
  5995. "homepage": "https://github.com/GrahamCampbell"
  5996. }
  5997. ],
  5998. "description": "Option Type for PHP",
  5999. "keywords": [
  6000. "language",
  6001. "option",
  6002. "php",
  6003. "type"
  6004. ],
  6005. "support": {
  6006. "issues": "https://github.com/schmittjoh/php-option/issues",
  6007. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  6008. },
  6009. "funding": [
  6010. {
  6011. "url": "https://github.com/GrahamCampbell",
  6012. "type": "github"
  6013. },
  6014. {
  6015. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6016. "type": "tidelift"
  6017. }
  6018. ],
  6019. "time": "2023-11-12T21:59:55+00:00"
  6020. },
  6021. {
  6022. "name": "phpseclib/phpseclib",
  6023. "version": "3.0.39",
  6024. "source": {
  6025. "type": "git",
  6026. "url": "https://github.com/phpseclib/phpseclib.git",
  6027. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485"
  6028. },
  6029. "dist": {
  6030. "type": "zip",
  6031. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485",
  6032. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485",
  6033. "shasum": "",
  6034. "mirrors": [
  6035. {
  6036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6037. "preferred": true
  6038. }
  6039. ]
  6040. },
  6041. "require": {
  6042. "paragonie/constant_time_encoding": "^1|^2|^3",
  6043. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6044. "php": ">=5.6.1"
  6045. },
  6046. "require-dev": {
  6047. "phpunit/phpunit": "*"
  6048. },
  6049. "suggest": {
  6050. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6051. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6052. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6053. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6054. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6055. },
  6056. "type": "library",
  6057. "autoload": {
  6058. "files": [
  6059. "phpseclib/bootstrap.php"
  6060. ],
  6061. "psr-4": {
  6062. "phpseclib3\\": "phpseclib/"
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Jim Wigginton",
  6072. "email": "terrafrost@php.net",
  6073. "role": "Lead Developer"
  6074. },
  6075. {
  6076. "name": "Patrick Monnerat",
  6077. "email": "pm@datasphere.ch",
  6078. "role": "Developer"
  6079. },
  6080. {
  6081. "name": "Andreas Fischer",
  6082. "email": "bantu@phpbb.com",
  6083. "role": "Developer"
  6084. },
  6085. {
  6086. "name": "Hans-Jürgen Petrich",
  6087. "email": "petrich@tronic-media.com",
  6088. "role": "Developer"
  6089. },
  6090. {
  6091. "name": "Graham Campbell",
  6092. "email": "graham@alt-three.com",
  6093. "role": "Developer"
  6094. }
  6095. ],
  6096. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6097. "homepage": "http://phpseclib.sourceforge.net",
  6098. "keywords": [
  6099. "BigInteger",
  6100. "aes",
  6101. "asn.1",
  6102. "asn1",
  6103. "blowfish",
  6104. "crypto",
  6105. "cryptography",
  6106. "encryption",
  6107. "rsa",
  6108. "security",
  6109. "sftp",
  6110. "signature",
  6111. "signing",
  6112. "ssh",
  6113. "twofish",
  6114. "x.509",
  6115. "x509"
  6116. ],
  6117. "support": {
  6118. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6119. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39"
  6120. },
  6121. "funding": [
  6122. {
  6123. "url": "https://github.com/terrafrost",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://www.patreon.com/phpseclib",
  6128. "type": "patreon"
  6129. },
  6130. {
  6131. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6132. "type": "tidelift"
  6133. }
  6134. ],
  6135. "time": "2024-06-24T06:27:33+00:00"
  6136. },
  6137. {
  6138. "name": "psr/cache",
  6139. "version": "3.0.0",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/php-fig/cache.git",
  6143. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6148. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6149. "shasum": ""
  6150. },
  6151. "require": {
  6152. "php": ">=8.0.0"
  6153. },
  6154. "type": "library",
  6155. "extra": {
  6156. "branch-alias": {
  6157. "dev-master": "1.0.x-dev"
  6158. }
  6159. },
  6160. "autoload": {
  6161. "psr-4": {
  6162. "Psr\\Cache\\": "src/"
  6163. }
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "MIT"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "PHP-FIG",
  6172. "homepage": "https://www.php-fig.org/"
  6173. }
  6174. ],
  6175. "description": "Common interface for caching libraries",
  6176. "keywords": [
  6177. "cache",
  6178. "psr",
  6179. "psr-6"
  6180. ],
  6181. "support": {
  6182. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6183. },
  6184. "time": "2021-02-03T23:26:27+00:00"
  6185. },
  6186. {
  6187. "name": "psr/clock",
  6188. "version": "1.0.0",
  6189. "source": {
  6190. "type": "git",
  6191. "url": "https://github.com/php-fig/clock.git",
  6192. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6193. },
  6194. "dist": {
  6195. "type": "zip",
  6196. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6197. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6198. "shasum": ""
  6199. },
  6200. "require": {
  6201. "php": "^7.0 || ^8.0"
  6202. },
  6203. "type": "library",
  6204. "autoload": {
  6205. "psr-4": {
  6206. "Psr\\Clock\\": "src/"
  6207. }
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "PHP-FIG",
  6216. "homepage": "https://www.php-fig.org/"
  6217. }
  6218. ],
  6219. "description": "Common interface for reading the clock.",
  6220. "homepage": "https://github.com/php-fig/clock",
  6221. "keywords": [
  6222. "clock",
  6223. "now",
  6224. "psr",
  6225. "psr-20",
  6226. "time"
  6227. ],
  6228. "support": {
  6229. "issues": "https://github.com/php-fig/clock/issues",
  6230. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6231. },
  6232. "time": "2022-11-25T14:36:26+00:00"
  6233. },
  6234. {
  6235. "name": "psr/container",
  6236. "version": "2.0.2",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://github.com/php-fig/container.git",
  6240. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6245. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "php": ">=7.4.0"
  6250. },
  6251. "type": "library",
  6252. "extra": {
  6253. "branch-alias": {
  6254. "dev-master": "2.0.x-dev"
  6255. }
  6256. },
  6257. "autoload": {
  6258. "psr-4": {
  6259. "Psr\\Container\\": "src/"
  6260. }
  6261. },
  6262. "notification-url": "https://packagist.org/downloads/",
  6263. "license": [
  6264. "MIT"
  6265. ],
  6266. "authors": [
  6267. {
  6268. "name": "PHP-FIG",
  6269. "homepage": "https://www.php-fig.org/"
  6270. }
  6271. ],
  6272. "description": "Common Container Interface (PHP FIG PSR-11)",
  6273. "homepage": "https://github.com/php-fig/container",
  6274. "keywords": [
  6275. "PSR-11",
  6276. "container",
  6277. "container-interface",
  6278. "container-interop",
  6279. "psr"
  6280. ],
  6281. "support": {
  6282. "issues": "https://github.com/php-fig/container/issues",
  6283. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6284. },
  6285. "time": "2021-11-05T16:47:00+00:00"
  6286. },
  6287. {
  6288. "name": "psr/event-dispatcher",
  6289. "version": "1.0.0",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/php-fig/event-dispatcher.git",
  6293. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6298. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "php": ">=7.2.0"
  6303. },
  6304. "type": "library",
  6305. "extra": {
  6306. "branch-alias": {
  6307. "dev-master": "1.0.x-dev"
  6308. }
  6309. },
  6310. "autoload": {
  6311. "psr-4": {
  6312. "Psr\\EventDispatcher\\": "src/"
  6313. }
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "PHP-FIG",
  6322. "homepage": "http://www.php-fig.org/"
  6323. }
  6324. ],
  6325. "description": "Standard interfaces for event handling.",
  6326. "keywords": [
  6327. "events",
  6328. "psr",
  6329. "psr-14"
  6330. ],
  6331. "support": {
  6332. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6333. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6334. },
  6335. "time": "2019-01-08T18:20:26+00:00"
  6336. },
  6337. {
  6338. "name": "psr/http-client",
  6339. "version": "1.0.3",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://github.com/php-fig/http-client.git",
  6343. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6348. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6349. "shasum": ""
  6350. },
  6351. "require": {
  6352. "php": "^7.0 || ^8.0",
  6353. "psr/http-message": "^1.0 || ^2.0"
  6354. },
  6355. "type": "library",
  6356. "extra": {
  6357. "branch-alias": {
  6358. "dev-master": "1.0.x-dev"
  6359. }
  6360. },
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Psr\\Http\\Client\\": "src/"
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "PHP-FIG",
  6373. "homepage": "https://www.php-fig.org/"
  6374. }
  6375. ],
  6376. "description": "Common interface for HTTP clients",
  6377. "homepage": "https://github.com/php-fig/http-client",
  6378. "keywords": [
  6379. "http",
  6380. "http-client",
  6381. "psr",
  6382. "psr-18"
  6383. ],
  6384. "support": {
  6385. "source": "https://github.com/php-fig/http-client"
  6386. },
  6387. "time": "2023-09-23T14:17:50+00:00"
  6388. },
  6389. {
  6390. "name": "psr/http-factory",
  6391. "version": "1.1.0",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/php-fig/http-factory.git",
  6395. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6400. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": ">=7.1",
  6405. "psr/http-message": "^1.0 || ^2.0"
  6406. },
  6407. "type": "library",
  6408. "extra": {
  6409. "branch-alias": {
  6410. "dev-master": "1.0.x-dev"
  6411. }
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "Psr\\Http\\Message\\": "src/"
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "PHP-FIG",
  6425. "homepage": "https://www.php-fig.org/"
  6426. }
  6427. ],
  6428. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6429. "keywords": [
  6430. "factory",
  6431. "http",
  6432. "message",
  6433. "psr",
  6434. "psr-17",
  6435. "psr-7",
  6436. "request",
  6437. "response"
  6438. ],
  6439. "support": {
  6440. "source": "https://github.com/php-fig/http-factory"
  6441. },
  6442. "time": "2024-04-15T12:06:14+00:00"
  6443. },
  6444. {
  6445. "name": "psr/http-message",
  6446. "version": "2.0",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://github.com/php-fig/http-message.git",
  6450. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6451. },
  6452. "dist": {
  6453. "type": "zip",
  6454. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6455. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6456. "shasum": ""
  6457. },
  6458. "require": {
  6459. "php": "^7.2 || ^8.0"
  6460. },
  6461. "type": "library",
  6462. "extra": {
  6463. "branch-alias": {
  6464. "dev-master": "2.0.x-dev"
  6465. }
  6466. },
  6467. "autoload": {
  6468. "psr-4": {
  6469. "Psr\\Http\\Message\\": "src/"
  6470. }
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "PHP-FIG",
  6479. "homepage": "https://www.php-fig.org/"
  6480. }
  6481. ],
  6482. "description": "Common interface for HTTP messages",
  6483. "homepage": "https://github.com/php-fig/http-message",
  6484. "keywords": [
  6485. "http",
  6486. "http-message",
  6487. "psr",
  6488. "psr-7",
  6489. "request",
  6490. "response"
  6491. ],
  6492. "support": {
  6493. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6494. },
  6495. "time": "2023-04-04T09:54:51+00:00"
  6496. },
  6497. {
  6498. "name": "psr/http-server-handler",
  6499. "version": "1.0.2",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/php-fig/http-server-handler.git",
  6503. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6508. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6509. "shasum": ""
  6510. },
  6511. "require": {
  6512. "php": ">=7.0",
  6513. "psr/http-message": "^1.0 || ^2.0"
  6514. },
  6515. "type": "library",
  6516. "extra": {
  6517. "branch-alias": {
  6518. "dev-master": "1.0.x-dev"
  6519. }
  6520. },
  6521. "autoload": {
  6522. "psr-4": {
  6523. "Psr\\Http\\Server\\": "src/"
  6524. }
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "PHP-FIG",
  6533. "homepage": "https://www.php-fig.org/"
  6534. }
  6535. ],
  6536. "description": "Common interface for HTTP server-side request handler",
  6537. "keywords": [
  6538. "handler",
  6539. "http",
  6540. "http-interop",
  6541. "psr",
  6542. "psr-15",
  6543. "psr-7",
  6544. "request",
  6545. "response",
  6546. "server"
  6547. ],
  6548. "support": {
  6549. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6550. },
  6551. "time": "2023-04-10T20:06:20+00:00"
  6552. },
  6553. {
  6554. "name": "psr/http-server-middleware",
  6555. "version": "1.0.2",
  6556. "source": {
  6557. "type": "git",
  6558. "url": "https://github.com/php-fig/http-server-middleware.git",
  6559. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6560. },
  6561. "dist": {
  6562. "type": "zip",
  6563. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6564. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6565. "shasum": ""
  6566. },
  6567. "require": {
  6568. "php": ">=7.0",
  6569. "psr/http-message": "^1.0 || ^2.0",
  6570. "psr/http-server-handler": "^1.0"
  6571. },
  6572. "type": "library",
  6573. "extra": {
  6574. "branch-alias": {
  6575. "dev-master": "1.0.x-dev"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Psr\\Http\\Server\\": "src/"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "PHP-FIG",
  6590. "homepage": "https://www.php-fig.org/"
  6591. }
  6592. ],
  6593. "description": "Common interface for HTTP server-side middleware",
  6594. "keywords": [
  6595. "http",
  6596. "http-interop",
  6597. "middleware",
  6598. "psr",
  6599. "psr-15",
  6600. "psr-7",
  6601. "request",
  6602. "response"
  6603. ],
  6604. "support": {
  6605. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6606. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6607. },
  6608. "time": "2023-04-11T06:14:47+00:00"
  6609. },
  6610. {
  6611. "name": "psr/log",
  6612. "version": "3.0.0",
  6613. "source": {
  6614. "type": "git",
  6615. "url": "https://github.com/php-fig/log.git",
  6616. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6617. },
  6618. "dist": {
  6619. "type": "zip",
  6620. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6621. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6622. "shasum": ""
  6623. },
  6624. "require": {
  6625. "php": ">=8.0.0"
  6626. },
  6627. "type": "library",
  6628. "extra": {
  6629. "branch-alias": {
  6630. "dev-master": "3.x-dev"
  6631. }
  6632. },
  6633. "autoload": {
  6634. "psr-4": {
  6635. "Psr\\Log\\": "src"
  6636. }
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "MIT"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "PHP-FIG",
  6645. "homepage": "https://www.php-fig.org/"
  6646. }
  6647. ],
  6648. "description": "Common interface for logging libraries",
  6649. "homepage": "https://github.com/php-fig/log",
  6650. "keywords": [
  6651. "log",
  6652. "psr",
  6653. "psr-3"
  6654. ],
  6655. "support": {
  6656. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6657. },
  6658. "time": "2021-07-14T16:46:02+00:00"
  6659. },
  6660. {
  6661. "name": "psr/simple-cache",
  6662. "version": "3.0.0",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/php-fig/simple-cache.git",
  6666. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6671. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": ">=8.0.0"
  6676. },
  6677. "type": "library",
  6678. "extra": {
  6679. "branch-alias": {
  6680. "dev-master": "3.0.x-dev"
  6681. }
  6682. },
  6683. "autoload": {
  6684. "psr-4": {
  6685. "Psr\\SimpleCache\\": "src/"
  6686. }
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "PHP-FIG",
  6695. "homepage": "https://www.php-fig.org/"
  6696. }
  6697. ],
  6698. "description": "Common interfaces for simple caching",
  6699. "keywords": [
  6700. "cache",
  6701. "caching",
  6702. "psr",
  6703. "psr-16",
  6704. "simple-cache"
  6705. ],
  6706. "support": {
  6707. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6708. },
  6709. "time": "2021-10-29T13:26:27+00:00"
  6710. },
  6711. {
  6712. "name": "ralouphie/getallheaders",
  6713. "version": "3.0.3",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://github.com/ralouphie/getallheaders.git",
  6717. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6722. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6723. "shasum": ""
  6724. },
  6725. "require": {
  6726. "php": ">=5.6"
  6727. },
  6728. "require-dev": {
  6729. "php-coveralls/php-coveralls": "^2.1",
  6730. "phpunit/phpunit": "^5 || ^6.5"
  6731. },
  6732. "type": "library",
  6733. "autoload": {
  6734. "files": [
  6735. "src/getallheaders.php"
  6736. ]
  6737. },
  6738. "notification-url": "https://packagist.org/downloads/",
  6739. "license": [
  6740. "MIT"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "Ralph Khattar",
  6745. "email": "ralph.khattar@gmail.com"
  6746. }
  6747. ],
  6748. "description": "A polyfill for getallheaders.",
  6749. "support": {
  6750. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6751. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6752. },
  6753. "time": "2019-03-08T08:55:37+00:00"
  6754. },
  6755. {
  6756. "name": "stella-maris/clock",
  6757. "version": "0.1.7",
  6758. "source": {
  6759. "type": "git",
  6760. "url": "https://github.com/stella-maris-solutions/clock.git",
  6761. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6762. },
  6763. "dist": {
  6764. "type": "zip",
  6765. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6766. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6767. "shasum": ""
  6768. },
  6769. "require": {
  6770. "php": "^7.0|^8.0",
  6771. "psr/clock": "^1.0"
  6772. },
  6773. "type": "library",
  6774. "autoload": {
  6775. "psr-4": {
  6776. "StellaMaris\\Clock\\": "src"
  6777. }
  6778. },
  6779. "notification-url": "https://packagist.org/downloads/",
  6780. "license": [
  6781. "MIT"
  6782. ],
  6783. "authors": [
  6784. {
  6785. "name": "Andreas Heigl",
  6786. "role": "Maintainer"
  6787. }
  6788. ],
  6789. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6790. "homepage": "https://gitlab.com/stella-maris/clock",
  6791. "keywords": [
  6792. "clock",
  6793. "datetime",
  6794. "point in time",
  6795. "psr20"
  6796. ],
  6797. "support": {
  6798. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6799. },
  6800. "time": "2022-11-25T16:15:06+00:00"
  6801. },
  6802. {
  6803. "name": "swow/psr7-plus",
  6804. "version": "v1.1.2",
  6805. "source": {
  6806. "type": "git",
  6807. "url": "https://github.com/swow/psr7-plus.git",
  6808. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6809. },
  6810. "dist": {
  6811. "type": "zip",
  6812. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6813. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6814. "shasum": ""
  6815. },
  6816. "require": {
  6817. "php": ">=8.0",
  6818. "psr/http-client": "^1.0",
  6819. "psr/http-factory": "^1.0",
  6820. "psr/http-message": "^1.1|^2.0"
  6821. },
  6822. "type": "library",
  6823. "autoload": {
  6824. "psr-4": {
  6825. "Swow\\Psr7\\Message\\": "src/Message/"
  6826. }
  6827. },
  6828. "notification-url": "https://packagist.org/downloads/",
  6829. "license": [
  6830. "Apache-2.0"
  6831. ],
  6832. "authors": [
  6833. {
  6834. "name": "twose",
  6835. "email": "twosee@php.net"
  6836. }
  6837. ],
  6838. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6839. "keywords": [
  6840. "http",
  6841. "psr17",
  6842. "psr7",
  6843. "swow",
  6844. "websocket"
  6845. ],
  6846. "support": {
  6847. "issues": "https://github.com/swow/swow",
  6848. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6849. },
  6850. "time": "2023-06-15T09:18:11+00:00"
  6851. },
  6852. {
  6853. "name": "symfony/console",
  6854. "version": "v6.4.8",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/symfony/console.git",
  6858. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6863. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "php": ">=8.1",
  6868. "symfony/deprecation-contracts": "^2.5|^3",
  6869. "symfony/polyfill-mbstring": "~1.0",
  6870. "symfony/service-contracts": "^2.5|^3",
  6871. "symfony/string": "^5.4|^6.0|^7.0"
  6872. },
  6873. "conflict": {
  6874. "symfony/dependency-injection": "<5.4",
  6875. "symfony/dotenv": "<5.4",
  6876. "symfony/event-dispatcher": "<5.4",
  6877. "symfony/lock": "<5.4",
  6878. "symfony/process": "<5.4"
  6879. },
  6880. "provide": {
  6881. "psr/log-implementation": "1.0|2.0|3.0"
  6882. },
  6883. "require-dev": {
  6884. "psr/log": "^1|^2|^3",
  6885. "symfony/config": "^5.4|^6.0|^7.0",
  6886. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6887. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6888. "symfony/http-foundation": "^6.4|^7.0",
  6889. "symfony/http-kernel": "^6.4|^7.0",
  6890. "symfony/lock": "^5.4|^6.0|^7.0",
  6891. "symfony/messenger": "^5.4|^6.0|^7.0",
  6892. "symfony/process": "^5.4|^6.0|^7.0",
  6893. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6894. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6895. },
  6896. "type": "library",
  6897. "autoload": {
  6898. "psr-4": {
  6899. "Symfony\\Component\\Console\\": ""
  6900. },
  6901. "exclude-from-classmap": [
  6902. "/Tests/"
  6903. ]
  6904. },
  6905. "notification-url": "https://packagist.org/downloads/",
  6906. "license": [
  6907. "MIT"
  6908. ],
  6909. "authors": [
  6910. {
  6911. "name": "Fabien Potencier",
  6912. "email": "fabien@symfony.com"
  6913. },
  6914. {
  6915. "name": "Symfony Community",
  6916. "homepage": "https://symfony.com/contributors"
  6917. }
  6918. ],
  6919. "description": "Eases the creation of beautiful and testable command line interfaces",
  6920. "homepage": "https://symfony.com",
  6921. "keywords": [
  6922. "cli",
  6923. "command-line",
  6924. "console",
  6925. "terminal"
  6926. ],
  6927. "support": {
  6928. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6929. },
  6930. "funding": [
  6931. {
  6932. "url": "https://symfony.com/sponsor",
  6933. "type": "custom"
  6934. },
  6935. {
  6936. "url": "https://github.com/fabpot",
  6937. "type": "github"
  6938. },
  6939. {
  6940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6941. "type": "tidelift"
  6942. }
  6943. ],
  6944. "time": "2024-05-31T14:49:08+00:00"
  6945. },
  6946. {
  6947. "name": "symfony/deprecation-contracts",
  6948. "version": "v3.5.0",
  6949. "source": {
  6950. "type": "git",
  6951. "url": "https://github.com/symfony/deprecation-contracts.git",
  6952. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6953. },
  6954. "dist": {
  6955. "type": "zip",
  6956. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6957. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6958. "shasum": ""
  6959. },
  6960. "require": {
  6961. "php": ">=8.1"
  6962. },
  6963. "type": "library",
  6964. "extra": {
  6965. "branch-alias": {
  6966. "dev-main": "3.5-dev"
  6967. },
  6968. "thanks": {
  6969. "name": "symfony/contracts",
  6970. "url": "https://github.com/symfony/contracts"
  6971. }
  6972. },
  6973. "autoload": {
  6974. "files": [
  6975. "function.php"
  6976. ]
  6977. },
  6978. "notification-url": "https://packagist.org/downloads/",
  6979. "license": [
  6980. "MIT"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "Nicolas Grekas",
  6985. "email": "p@tchwork.com"
  6986. },
  6987. {
  6988. "name": "Symfony Community",
  6989. "homepage": "https://symfony.com/contributors"
  6990. }
  6991. ],
  6992. "description": "A generic function and convention to trigger deprecation notices",
  6993. "homepage": "https://symfony.com",
  6994. "support": {
  6995. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6996. },
  6997. "funding": [
  6998. {
  6999. "url": "https://symfony.com/sponsor",
  7000. "type": "custom"
  7001. },
  7002. {
  7003. "url": "https://github.com/fabpot",
  7004. "type": "github"
  7005. },
  7006. {
  7007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7008. "type": "tidelift"
  7009. }
  7010. ],
  7011. "time": "2024-04-18T09:32:20+00:00"
  7012. },
  7013. {
  7014. "name": "symfony/finder",
  7015. "version": "v6.4.8",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://github.com/symfony/finder.git",
  7019. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  7024. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  7025. "shasum": ""
  7026. },
  7027. "require": {
  7028. "php": ">=8.1"
  7029. },
  7030. "require-dev": {
  7031. "symfony/filesystem": "^6.0|^7.0"
  7032. },
  7033. "type": "library",
  7034. "autoload": {
  7035. "psr-4": {
  7036. "Symfony\\Component\\Finder\\": ""
  7037. },
  7038. "exclude-from-classmap": [
  7039. "/Tests/"
  7040. ]
  7041. },
  7042. "notification-url": "https://packagist.org/downloads/",
  7043. "license": [
  7044. "MIT"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "Fabien Potencier",
  7049. "email": "fabien@symfony.com"
  7050. },
  7051. {
  7052. "name": "Symfony Community",
  7053. "homepage": "https://symfony.com/contributors"
  7054. }
  7055. ],
  7056. "description": "Finds files and directories via an intuitive fluent interface",
  7057. "homepage": "https://symfony.com",
  7058. "support": {
  7059. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  7060. },
  7061. "funding": [
  7062. {
  7063. "url": "https://symfony.com/sponsor",
  7064. "type": "custom"
  7065. },
  7066. {
  7067. "url": "https://github.com/fabpot",
  7068. "type": "github"
  7069. },
  7070. {
  7071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7072. "type": "tidelift"
  7073. }
  7074. ],
  7075. "time": "2024-05-31T14:49:08+00:00"
  7076. },
  7077. {
  7078. "name": "symfony/polyfill-ctype",
  7079. "version": "v1.29.0",
  7080. "source": {
  7081. "type": "git",
  7082. "url": "https://github.com/symfony/polyfill-ctype.git",
  7083. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  7084. },
  7085. "dist": {
  7086. "type": "zip",
  7087. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7088. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7089. "shasum": ""
  7090. },
  7091. "require": {
  7092. "php": ">=7.1"
  7093. },
  7094. "provide": {
  7095. "ext-ctype": "*"
  7096. },
  7097. "suggest": {
  7098. "ext-ctype": "For best performance"
  7099. },
  7100. "type": "library",
  7101. "extra": {
  7102. "thanks": {
  7103. "name": "symfony/polyfill",
  7104. "url": "https://github.com/symfony/polyfill"
  7105. }
  7106. },
  7107. "autoload": {
  7108. "files": [
  7109. "bootstrap.php"
  7110. ],
  7111. "psr-4": {
  7112. "Symfony\\Polyfill\\Ctype\\": ""
  7113. }
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "MIT"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Gert de Pagter",
  7122. "email": "BackEndTea@gmail.com"
  7123. },
  7124. {
  7125. "name": "Symfony Community",
  7126. "homepage": "https://symfony.com/contributors"
  7127. }
  7128. ],
  7129. "description": "Symfony polyfill for ctype functions",
  7130. "homepage": "https://symfony.com",
  7131. "keywords": [
  7132. "compatibility",
  7133. "ctype",
  7134. "polyfill",
  7135. "portable"
  7136. ],
  7137. "support": {
  7138. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  7139. },
  7140. "funding": [
  7141. {
  7142. "url": "https://symfony.com/sponsor",
  7143. "type": "custom"
  7144. },
  7145. {
  7146. "url": "https://github.com/fabpot",
  7147. "type": "github"
  7148. },
  7149. {
  7150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7151. "type": "tidelift"
  7152. }
  7153. ],
  7154. "time": "2024-01-29T20:11:03+00:00"
  7155. },
  7156. {
  7157. "name": "symfony/polyfill-intl-grapheme",
  7158. "version": "v1.29.0",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7162. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7167. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.1"
  7172. },
  7173. "suggest": {
  7174. "ext-intl": "For best performance"
  7175. },
  7176. "type": "library",
  7177. "extra": {
  7178. "thanks": {
  7179. "name": "symfony/polyfill",
  7180. "url": "https://github.com/symfony/polyfill"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "files": [
  7185. "bootstrap.php"
  7186. ],
  7187. "psr-4": {
  7188. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7189. }
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Nicolas Grekas",
  7198. "email": "p@tchwork.com"
  7199. },
  7200. {
  7201. "name": "Symfony Community",
  7202. "homepage": "https://symfony.com/contributors"
  7203. }
  7204. ],
  7205. "description": "Symfony polyfill for intl's grapheme_* functions",
  7206. "homepage": "https://symfony.com",
  7207. "keywords": [
  7208. "compatibility",
  7209. "grapheme",
  7210. "intl",
  7211. "polyfill",
  7212. "portable",
  7213. "shim"
  7214. ],
  7215. "support": {
  7216. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  7217. },
  7218. "funding": [
  7219. {
  7220. "url": "https://symfony.com/sponsor",
  7221. "type": "custom"
  7222. },
  7223. {
  7224. "url": "https://github.com/fabpot",
  7225. "type": "github"
  7226. },
  7227. {
  7228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7229. "type": "tidelift"
  7230. }
  7231. ],
  7232. "time": "2024-01-29T20:11:03+00:00"
  7233. },
  7234. {
  7235. "name": "symfony/polyfill-intl-idn",
  7236. "version": "v1.29.0",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7240. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  7245. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  7246. "shasum": ""
  7247. },
  7248. "require": {
  7249. "php": ">=7.1",
  7250. "symfony/polyfill-intl-normalizer": "^1.10",
  7251. "symfony/polyfill-php72": "^1.10"
  7252. },
  7253. "suggest": {
  7254. "ext-intl": "For best performance"
  7255. },
  7256. "type": "library",
  7257. "extra": {
  7258. "thanks": {
  7259. "name": "symfony/polyfill",
  7260. "url": "https://github.com/symfony/polyfill"
  7261. }
  7262. },
  7263. "autoload": {
  7264. "files": [
  7265. "bootstrap.php"
  7266. ],
  7267. "psr-4": {
  7268. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7269. }
  7270. },
  7271. "notification-url": "https://packagist.org/downloads/",
  7272. "license": [
  7273. "MIT"
  7274. ],
  7275. "authors": [
  7276. {
  7277. "name": "Laurent Bassin",
  7278. "email": "laurent@bassin.info"
  7279. },
  7280. {
  7281. "name": "Trevor Rowbotham",
  7282. "email": "trevor.rowbotham@pm.me"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7290. "homepage": "https://symfony.com",
  7291. "keywords": [
  7292. "compatibility",
  7293. "idn",
  7294. "intl",
  7295. "polyfill",
  7296. "portable",
  7297. "shim"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2024-01-29T20:11:03+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/polyfill-intl-normalizer",
  7320. "version": "v1.29.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7324. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  7329. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": ">=7.1"
  7334. },
  7335. "suggest": {
  7336. "ext-intl": "For best performance"
  7337. },
  7338. "type": "library",
  7339. "extra": {
  7340. "thanks": {
  7341. "name": "symfony/polyfill",
  7342. "url": "https://github.com/symfony/polyfill"
  7343. }
  7344. },
  7345. "autoload": {
  7346. "files": [
  7347. "bootstrap.php"
  7348. ],
  7349. "psr-4": {
  7350. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7351. },
  7352. "classmap": [
  7353. "Resources/stubs"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Nicolas Grekas",
  7363. "email": "p@tchwork.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7371. "homepage": "https://symfony.com",
  7372. "keywords": [
  7373. "compatibility",
  7374. "intl",
  7375. "normalizer",
  7376. "polyfill",
  7377. "portable",
  7378. "shim"
  7379. ],
  7380. "support": {
  7381. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  7382. },
  7383. "funding": [
  7384. {
  7385. "url": "https://symfony.com/sponsor",
  7386. "type": "custom"
  7387. },
  7388. {
  7389. "url": "https://github.com/fabpot",
  7390. "type": "github"
  7391. },
  7392. {
  7393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7394. "type": "tidelift"
  7395. }
  7396. ],
  7397. "time": "2024-01-29T20:11:03+00:00"
  7398. },
  7399. {
  7400. "name": "symfony/polyfill-mbstring",
  7401. "version": "v1.29.0",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7405. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7410. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7411. "shasum": ""
  7412. },
  7413. "require": {
  7414. "php": ">=7.1"
  7415. },
  7416. "provide": {
  7417. "ext-mbstring": "*"
  7418. },
  7419. "suggest": {
  7420. "ext-mbstring": "For best performance"
  7421. },
  7422. "type": "library",
  7423. "extra": {
  7424. "thanks": {
  7425. "name": "symfony/polyfill",
  7426. "url": "https://github.com/symfony/polyfill"
  7427. }
  7428. },
  7429. "autoload": {
  7430. "files": [
  7431. "bootstrap.php"
  7432. ],
  7433. "psr-4": {
  7434. "Symfony\\Polyfill\\Mbstring\\": ""
  7435. }
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Nicolas Grekas",
  7444. "email": "p@tchwork.com"
  7445. },
  7446. {
  7447. "name": "Symfony Community",
  7448. "homepage": "https://symfony.com/contributors"
  7449. }
  7450. ],
  7451. "description": "Symfony polyfill for the Mbstring extension",
  7452. "homepage": "https://symfony.com",
  7453. "keywords": [
  7454. "compatibility",
  7455. "mbstring",
  7456. "polyfill",
  7457. "portable",
  7458. "shim"
  7459. ],
  7460. "support": {
  7461. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  7462. },
  7463. "funding": [
  7464. {
  7465. "url": "https://symfony.com/sponsor",
  7466. "type": "custom"
  7467. },
  7468. {
  7469. "url": "https://github.com/fabpot",
  7470. "type": "github"
  7471. },
  7472. {
  7473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7474. "type": "tidelift"
  7475. }
  7476. ],
  7477. "time": "2024-01-29T20:11:03+00:00"
  7478. },
  7479. {
  7480. "name": "symfony/polyfill-php72",
  7481. "version": "v1.29.0",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/symfony/polyfill-php72.git",
  7485. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7490. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7491. "shasum": ""
  7492. },
  7493. "require": {
  7494. "php": ">=7.1"
  7495. },
  7496. "type": "library",
  7497. "extra": {
  7498. "thanks": {
  7499. "name": "symfony/polyfill",
  7500. "url": "https://github.com/symfony/polyfill"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "files": [
  7505. "bootstrap.php"
  7506. ],
  7507. "psr-4": {
  7508. "Symfony\\Polyfill\\Php72\\": ""
  7509. }
  7510. },
  7511. "notification-url": "https://packagist.org/downloads/",
  7512. "license": [
  7513. "MIT"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "Nicolas Grekas",
  7518. "email": "p@tchwork.com"
  7519. },
  7520. {
  7521. "name": "Symfony Community",
  7522. "homepage": "https://symfony.com/contributors"
  7523. }
  7524. ],
  7525. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7526. "homepage": "https://symfony.com",
  7527. "keywords": [
  7528. "compatibility",
  7529. "polyfill",
  7530. "portable",
  7531. "shim"
  7532. ],
  7533. "support": {
  7534. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7535. },
  7536. "funding": [
  7537. {
  7538. "url": "https://symfony.com/sponsor",
  7539. "type": "custom"
  7540. },
  7541. {
  7542. "url": "https://github.com/fabpot",
  7543. "type": "github"
  7544. },
  7545. {
  7546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7547. "type": "tidelift"
  7548. }
  7549. ],
  7550. "time": "2024-01-29T20:11:03+00:00"
  7551. },
  7552. {
  7553. "name": "symfony/polyfill-php80",
  7554. "version": "v1.29.0",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/symfony/polyfill-php80.git",
  7558. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7563. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": ">=7.1"
  7568. },
  7569. "type": "library",
  7570. "extra": {
  7571. "thanks": {
  7572. "name": "symfony/polyfill",
  7573. "url": "https://github.com/symfony/polyfill"
  7574. }
  7575. },
  7576. "autoload": {
  7577. "files": [
  7578. "bootstrap.php"
  7579. ],
  7580. "psr-4": {
  7581. "Symfony\\Polyfill\\Php80\\": ""
  7582. },
  7583. "classmap": [
  7584. "Resources/stubs"
  7585. ]
  7586. },
  7587. "notification-url": "https://packagist.org/downloads/",
  7588. "license": [
  7589. "MIT"
  7590. ],
  7591. "authors": [
  7592. {
  7593. "name": "Ion Bazan",
  7594. "email": "ion.bazan@gmail.com"
  7595. },
  7596. {
  7597. "name": "Nicolas Grekas",
  7598. "email": "p@tchwork.com"
  7599. },
  7600. {
  7601. "name": "Symfony Community",
  7602. "homepage": "https://symfony.com/contributors"
  7603. }
  7604. ],
  7605. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7606. "homepage": "https://symfony.com",
  7607. "keywords": [
  7608. "compatibility",
  7609. "polyfill",
  7610. "portable",
  7611. "shim"
  7612. ],
  7613. "support": {
  7614. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7615. },
  7616. "funding": [
  7617. {
  7618. "url": "https://symfony.com/sponsor",
  7619. "type": "custom"
  7620. },
  7621. {
  7622. "url": "https://github.com/fabpot",
  7623. "type": "github"
  7624. },
  7625. {
  7626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7627. "type": "tidelift"
  7628. }
  7629. ],
  7630. "time": "2024-01-29T20:11:03+00:00"
  7631. },
  7632. {
  7633. "name": "symfony/service-contracts",
  7634. "version": "v3.5.0",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/symfony/service-contracts.git",
  7638. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7643. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7644. "shasum": ""
  7645. },
  7646. "require": {
  7647. "php": ">=8.1",
  7648. "psr/container": "^1.1|^2.0",
  7649. "symfony/deprecation-contracts": "^2.5|^3"
  7650. },
  7651. "conflict": {
  7652. "ext-psr": "<1.1|>=2"
  7653. },
  7654. "type": "library",
  7655. "extra": {
  7656. "branch-alias": {
  7657. "dev-main": "3.5-dev"
  7658. },
  7659. "thanks": {
  7660. "name": "symfony/contracts",
  7661. "url": "https://github.com/symfony/contracts"
  7662. }
  7663. },
  7664. "autoload": {
  7665. "psr-4": {
  7666. "Symfony\\Contracts\\Service\\": ""
  7667. },
  7668. "exclude-from-classmap": [
  7669. "/Test/"
  7670. ]
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Nicolas Grekas",
  7679. "email": "p@tchwork.com"
  7680. },
  7681. {
  7682. "name": "Symfony Community",
  7683. "homepage": "https://symfony.com/contributors"
  7684. }
  7685. ],
  7686. "description": "Generic abstractions related to writing services",
  7687. "homepage": "https://symfony.com",
  7688. "keywords": [
  7689. "abstractions",
  7690. "contracts",
  7691. "decoupling",
  7692. "interfaces",
  7693. "interoperability",
  7694. "standards"
  7695. ],
  7696. "support": {
  7697. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7698. },
  7699. "funding": [
  7700. {
  7701. "url": "https://symfony.com/sponsor",
  7702. "type": "custom"
  7703. },
  7704. {
  7705. "url": "https://github.com/fabpot",
  7706. "type": "github"
  7707. },
  7708. {
  7709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7710. "type": "tidelift"
  7711. }
  7712. ],
  7713. "time": "2024-04-18T09:32:20+00:00"
  7714. },
  7715. {
  7716. "name": "symfony/string",
  7717. "version": "v6.4.8",
  7718. "source": {
  7719. "type": "git",
  7720. "url": "https://github.com/symfony/string.git",
  7721. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7722. },
  7723. "dist": {
  7724. "type": "zip",
  7725. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7726. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7727. "shasum": ""
  7728. },
  7729. "require": {
  7730. "php": ">=8.1",
  7731. "symfony/polyfill-ctype": "~1.8",
  7732. "symfony/polyfill-intl-grapheme": "~1.0",
  7733. "symfony/polyfill-intl-normalizer": "~1.0",
  7734. "symfony/polyfill-mbstring": "~1.0"
  7735. },
  7736. "conflict": {
  7737. "symfony/translation-contracts": "<2.5"
  7738. },
  7739. "require-dev": {
  7740. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7741. "symfony/http-client": "^5.4|^6.0|^7.0",
  7742. "symfony/intl": "^6.2|^7.0",
  7743. "symfony/translation-contracts": "^2.5|^3.0",
  7744. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7745. },
  7746. "type": "library",
  7747. "autoload": {
  7748. "files": [
  7749. "Resources/functions.php"
  7750. ],
  7751. "psr-4": {
  7752. "Symfony\\Component\\String\\": ""
  7753. },
  7754. "exclude-from-classmap": [
  7755. "/Tests/"
  7756. ]
  7757. },
  7758. "notification-url": "https://packagist.org/downloads/",
  7759. "license": [
  7760. "MIT"
  7761. ],
  7762. "authors": [
  7763. {
  7764. "name": "Nicolas Grekas",
  7765. "email": "p@tchwork.com"
  7766. },
  7767. {
  7768. "name": "Symfony Community",
  7769. "homepage": "https://symfony.com/contributors"
  7770. }
  7771. ],
  7772. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7773. "homepage": "https://symfony.com",
  7774. "keywords": [
  7775. "grapheme",
  7776. "i18n",
  7777. "string",
  7778. "unicode",
  7779. "utf-8",
  7780. "utf8"
  7781. ],
  7782. "support": {
  7783. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://symfony.com/sponsor",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://github.com/fabpot",
  7792. "type": "github"
  7793. },
  7794. {
  7795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7796. "type": "tidelift"
  7797. }
  7798. ],
  7799. "time": "2024-05-31T14:49:08+00:00"
  7800. },
  7801. {
  7802. "name": "symfony/translation",
  7803. "version": "v6.4.8",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/symfony/translation.git",
  7807. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7812. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7813. "shasum": ""
  7814. },
  7815. "require": {
  7816. "php": ">=8.1",
  7817. "symfony/deprecation-contracts": "^2.5|^3",
  7818. "symfony/polyfill-mbstring": "~1.0",
  7819. "symfony/translation-contracts": "^2.5|^3.0"
  7820. },
  7821. "conflict": {
  7822. "symfony/config": "<5.4",
  7823. "symfony/console": "<5.4",
  7824. "symfony/dependency-injection": "<5.4",
  7825. "symfony/http-client-contracts": "<2.5",
  7826. "symfony/http-kernel": "<5.4",
  7827. "symfony/service-contracts": "<2.5",
  7828. "symfony/twig-bundle": "<5.4",
  7829. "symfony/yaml": "<5.4"
  7830. },
  7831. "provide": {
  7832. "symfony/translation-implementation": "2.3|3.0"
  7833. },
  7834. "require-dev": {
  7835. "nikic/php-parser": "^4.18|^5.0",
  7836. "psr/log": "^1|^2|^3",
  7837. "symfony/config": "^5.4|^6.0|^7.0",
  7838. "symfony/console": "^5.4|^6.0|^7.0",
  7839. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7840. "symfony/finder": "^5.4|^6.0|^7.0",
  7841. "symfony/http-client-contracts": "^2.5|^3.0",
  7842. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7843. "symfony/intl": "^5.4|^6.0|^7.0",
  7844. "symfony/polyfill-intl-icu": "^1.21",
  7845. "symfony/routing": "^5.4|^6.0|^7.0",
  7846. "symfony/service-contracts": "^2.5|^3",
  7847. "symfony/yaml": "^5.4|^6.0|^7.0"
  7848. },
  7849. "type": "library",
  7850. "autoload": {
  7851. "files": [
  7852. "Resources/functions.php"
  7853. ],
  7854. "psr-4": {
  7855. "Symfony\\Component\\Translation\\": ""
  7856. },
  7857. "exclude-from-classmap": [
  7858. "/Tests/"
  7859. ]
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "MIT"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Fabien Potencier",
  7868. "email": "fabien@symfony.com"
  7869. },
  7870. {
  7871. "name": "Symfony Community",
  7872. "homepage": "https://symfony.com/contributors"
  7873. }
  7874. ],
  7875. "description": "Provides tools to internationalize your application",
  7876. "homepage": "https://symfony.com",
  7877. "support": {
  7878. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7879. },
  7880. "funding": [
  7881. {
  7882. "url": "https://symfony.com/sponsor",
  7883. "type": "custom"
  7884. },
  7885. {
  7886. "url": "https://github.com/fabpot",
  7887. "type": "github"
  7888. },
  7889. {
  7890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7891. "type": "tidelift"
  7892. }
  7893. ],
  7894. "time": "2024-05-31T14:49:08+00:00"
  7895. },
  7896. {
  7897. "name": "symfony/translation-contracts",
  7898. "version": "v3.5.0",
  7899. "source": {
  7900. "type": "git",
  7901. "url": "https://github.com/symfony/translation-contracts.git",
  7902. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7903. },
  7904. "dist": {
  7905. "type": "zip",
  7906. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7907. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7908. "shasum": ""
  7909. },
  7910. "require": {
  7911. "php": ">=8.1"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "branch-alias": {
  7916. "dev-main": "3.5-dev"
  7917. },
  7918. "thanks": {
  7919. "name": "symfony/contracts",
  7920. "url": "https://github.com/symfony/contracts"
  7921. }
  7922. },
  7923. "autoload": {
  7924. "psr-4": {
  7925. "Symfony\\Contracts\\Translation\\": ""
  7926. },
  7927. "exclude-from-classmap": [
  7928. "/Test/"
  7929. ]
  7930. },
  7931. "notification-url": "https://packagist.org/downloads/",
  7932. "license": [
  7933. "MIT"
  7934. ],
  7935. "authors": [
  7936. {
  7937. "name": "Nicolas Grekas",
  7938. "email": "p@tchwork.com"
  7939. },
  7940. {
  7941. "name": "Symfony Community",
  7942. "homepage": "https://symfony.com/contributors"
  7943. }
  7944. ],
  7945. "description": "Generic abstractions related to translation",
  7946. "homepage": "https://symfony.com",
  7947. "keywords": [
  7948. "abstractions",
  7949. "contracts",
  7950. "decoupling",
  7951. "interfaces",
  7952. "interoperability",
  7953. "standards"
  7954. ],
  7955. "support": {
  7956. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7957. },
  7958. "funding": [
  7959. {
  7960. "url": "https://symfony.com/sponsor",
  7961. "type": "custom"
  7962. },
  7963. {
  7964. "url": "https://github.com/fabpot",
  7965. "type": "github"
  7966. },
  7967. {
  7968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7969. "type": "tidelift"
  7970. }
  7971. ],
  7972. "time": "2024-04-18T09:32:20+00:00"
  7973. },
  7974. {
  7975. "name": "vlucas/phpdotenv",
  7976. "version": "v5.6.0",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/vlucas/phpdotenv.git",
  7980. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7985. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "ext-pcre": "*",
  7990. "graham-campbell/result-type": "^1.1.2",
  7991. "php": "^7.2.5 || ^8.0",
  7992. "phpoption/phpoption": "^1.9.2",
  7993. "symfony/polyfill-ctype": "^1.24",
  7994. "symfony/polyfill-mbstring": "^1.24",
  7995. "symfony/polyfill-php80": "^1.24"
  7996. },
  7997. "require-dev": {
  7998. "bamarni/composer-bin-plugin": "^1.8.2",
  7999. "ext-filter": "*",
  8000. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8001. },
  8002. "suggest": {
  8003. "ext-filter": "Required to use the boolean validator."
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "bamarni-bin": {
  8008. "bin-links": true,
  8009. "forward-command": true
  8010. },
  8011. "branch-alias": {
  8012. "dev-master": "5.6-dev"
  8013. }
  8014. },
  8015. "autoload": {
  8016. "psr-4": {
  8017. "Dotenv\\": "src/"
  8018. }
  8019. },
  8020. "notification-url": "https://packagist.org/downloads/",
  8021. "license": [
  8022. "BSD-3-Clause"
  8023. ],
  8024. "authors": [
  8025. {
  8026. "name": "Graham Campbell",
  8027. "email": "hello@gjcampbell.co.uk",
  8028. "homepage": "https://github.com/GrahamCampbell"
  8029. },
  8030. {
  8031. "name": "Vance Lucas",
  8032. "email": "vance@vancelucas.com",
  8033. "homepage": "https://github.com/vlucas"
  8034. }
  8035. ],
  8036. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8037. "keywords": [
  8038. "dotenv",
  8039. "env",
  8040. "environment"
  8041. ],
  8042. "support": {
  8043. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8044. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8045. },
  8046. "funding": [
  8047. {
  8048. "url": "https://github.com/GrahamCampbell",
  8049. "type": "github"
  8050. },
  8051. {
  8052. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8053. "type": "tidelift"
  8054. }
  8055. ],
  8056. "time": "2023-11-12T22:43:29+00:00"
  8057. }
  8058. ],
  8059. "packages-dev": [
  8060. {
  8061. "name": "clue/ndjson-react",
  8062. "version": "v1.3.0",
  8063. "source": {
  8064. "type": "git",
  8065. "url": "https://github.com/clue/reactphp-ndjson.git",
  8066. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8067. },
  8068. "dist": {
  8069. "type": "zip",
  8070. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8071. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8072. "shasum": ""
  8073. },
  8074. "require": {
  8075. "php": ">=5.3",
  8076. "react/stream": "^1.2"
  8077. },
  8078. "require-dev": {
  8079. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8080. "react/event-loop": "^1.2"
  8081. },
  8082. "type": "library",
  8083. "autoload": {
  8084. "psr-4": {
  8085. "Clue\\React\\NDJson\\": "src/"
  8086. }
  8087. },
  8088. "notification-url": "https://packagist.org/downloads/",
  8089. "license": [
  8090. "MIT"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Christian Lück",
  8095. "email": "christian@clue.engineering"
  8096. }
  8097. ],
  8098. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8099. "homepage": "https://github.com/clue/reactphp-ndjson",
  8100. "keywords": [
  8101. "NDJSON",
  8102. "json",
  8103. "jsonlines",
  8104. "newline",
  8105. "reactphp",
  8106. "streaming"
  8107. ],
  8108. "support": {
  8109. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8110. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8111. },
  8112. "funding": [
  8113. {
  8114. "url": "https://clue.engineering/support",
  8115. "type": "custom"
  8116. },
  8117. {
  8118. "url": "https://github.com/clue",
  8119. "type": "github"
  8120. }
  8121. ],
  8122. "time": "2022-12-23T10:58:28+00:00"
  8123. },
  8124. {
  8125. "name": "composer/pcre",
  8126. "version": "3.1.4",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/composer/pcre.git",
  8130. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  8135. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "php": "^7.4 || ^8.0"
  8140. },
  8141. "require-dev": {
  8142. "phpstan/phpstan": "^1.3",
  8143. "phpstan/phpstan-strict-rules": "^1.1",
  8144. "symfony/phpunit-bridge": "^5"
  8145. },
  8146. "type": "library",
  8147. "extra": {
  8148. "branch-alias": {
  8149. "dev-main": "3.x-dev"
  8150. }
  8151. },
  8152. "autoload": {
  8153. "psr-4": {
  8154. "Composer\\Pcre\\": "src"
  8155. }
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "MIT"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Jordi Boggiano",
  8164. "email": "j.boggiano@seld.be",
  8165. "homepage": "http://seld.be"
  8166. }
  8167. ],
  8168. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8169. "keywords": [
  8170. "PCRE",
  8171. "preg",
  8172. "regex",
  8173. "regular expression"
  8174. ],
  8175. "support": {
  8176. "issues": "https://github.com/composer/pcre/issues",
  8177. "source": "https://github.com/composer/pcre/tree/3.1.4"
  8178. },
  8179. "funding": [
  8180. {
  8181. "url": "https://packagist.com",
  8182. "type": "custom"
  8183. },
  8184. {
  8185. "url": "https://github.com/composer",
  8186. "type": "github"
  8187. },
  8188. {
  8189. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8190. "type": "tidelift"
  8191. }
  8192. ],
  8193. "time": "2024-05-27T13:40:54+00:00"
  8194. },
  8195. {
  8196. "name": "composer/semver",
  8197. "version": "3.4.0",
  8198. "source": {
  8199. "type": "git",
  8200. "url": "https://github.com/composer/semver.git",
  8201. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  8202. },
  8203. "dist": {
  8204. "type": "zip",
  8205. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  8206. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  8207. "shasum": ""
  8208. },
  8209. "require": {
  8210. "php": "^5.3.2 || ^7.0 || ^8.0"
  8211. },
  8212. "require-dev": {
  8213. "phpstan/phpstan": "^1.4",
  8214. "symfony/phpunit-bridge": "^4.2 || ^5"
  8215. },
  8216. "type": "library",
  8217. "extra": {
  8218. "branch-alias": {
  8219. "dev-main": "3.x-dev"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Composer\\Semver\\": "src"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Nils Adermann",
  8234. "email": "naderman@naderman.de",
  8235. "homepage": "http://www.naderman.de"
  8236. },
  8237. {
  8238. "name": "Jordi Boggiano",
  8239. "email": "j.boggiano@seld.be",
  8240. "homepage": "http://seld.be"
  8241. },
  8242. {
  8243. "name": "Rob Bast",
  8244. "email": "rob.bast@gmail.com",
  8245. "homepage": "http://robbast.nl"
  8246. }
  8247. ],
  8248. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8249. "keywords": [
  8250. "semantic",
  8251. "semver",
  8252. "validation",
  8253. "versioning"
  8254. ],
  8255. "support": {
  8256. "irc": "ircs://irc.libera.chat:6697/composer",
  8257. "issues": "https://github.com/composer/semver/issues",
  8258. "source": "https://github.com/composer/semver/tree/3.4.0"
  8259. },
  8260. "funding": [
  8261. {
  8262. "url": "https://packagist.com",
  8263. "type": "custom"
  8264. },
  8265. {
  8266. "url": "https://github.com/composer",
  8267. "type": "github"
  8268. },
  8269. {
  8270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8271. "type": "tidelift"
  8272. }
  8273. ],
  8274. "time": "2023-08-31T09:50:34+00:00"
  8275. },
  8276. {
  8277. "name": "composer/xdebug-handler",
  8278. "version": "3.0.5",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/composer/xdebug-handler.git",
  8282. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8287. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "composer/pcre": "^1 || ^2 || ^3",
  8292. "php": "^7.2.5 || ^8.0",
  8293. "psr/log": "^1 || ^2 || ^3"
  8294. },
  8295. "require-dev": {
  8296. "phpstan/phpstan": "^1.0",
  8297. "phpstan/phpstan-strict-rules": "^1.1",
  8298. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8299. },
  8300. "type": "library",
  8301. "autoload": {
  8302. "psr-4": {
  8303. "Composer\\XdebugHandler\\": "src"
  8304. }
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "MIT"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "John Stevenson",
  8313. "email": "john-stevenson@blueyonder.co.uk"
  8314. }
  8315. ],
  8316. "description": "Restarts a process without Xdebug.",
  8317. "keywords": [
  8318. "Xdebug",
  8319. "performance"
  8320. ],
  8321. "support": {
  8322. "irc": "ircs://irc.libera.chat:6697/composer",
  8323. "issues": "https://github.com/composer/xdebug-handler/issues",
  8324. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8325. },
  8326. "funding": [
  8327. {
  8328. "url": "https://packagist.com",
  8329. "type": "custom"
  8330. },
  8331. {
  8332. "url": "https://github.com/composer",
  8333. "type": "github"
  8334. },
  8335. {
  8336. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8337. "type": "tidelift"
  8338. }
  8339. ],
  8340. "time": "2024-05-06T16:37:16+00:00"
  8341. },
  8342. {
  8343. "name": "evenement/evenement",
  8344. "version": "v3.0.2",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/igorw/evenement.git",
  8348. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8353. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "php": ">=7.0"
  8358. },
  8359. "require-dev": {
  8360. "phpunit/phpunit": "^9 || ^6"
  8361. },
  8362. "type": "library",
  8363. "autoload": {
  8364. "psr-4": {
  8365. "Evenement\\": "src/"
  8366. }
  8367. },
  8368. "notification-url": "https://packagist.org/downloads/",
  8369. "license": [
  8370. "MIT"
  8371. ],
  8372. "authors": [
  8373. {
  8374. "name": "Igor Wiedler",
  8375. "email": "igor@wiedler.ch"
  8376. }
  8377. ],
  8378. "description": "Événement is a very simple event dispatching library for PHP",
  8379. "keywords": [
  8380. "event-dispatcher",
  8381. "event-emitter"
  8382. ],
  8383. "support": {
  8384. "issues": "https://github.com/igorw/evenement/issues",
  8385. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8386. },
  8387. "time": "2023-08-08T05:53:35+00:00"
  8388. },
  8389. {
  8390. "name": "fidry/cpu-core-counter",
  8391. "version": "1.1.0",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8395. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8400. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "php": "^7.2 || ^8.0"
  8405. },
  8406. "require-dev": {
  8407. "fidry/makefile": "^0.2.0",
  8408. "fidry/php-cs-fixer-config": "^1.1.2",
  8409. "phpstan/extension-installer": "^1.2.0",
  8410. "phpstan/phpstan": "^1.9.2",
  8411. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8412. "phpstan/phpstan-phpunit": "^1.2.2",
  8413. "phpstan/phpstan-strict-rules": "^1.4.4",
  8414. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8415. "webmozarts/strict-phpunit": "^7.5"
  8416. },
  8417. "type": "library",
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Fidry\\CpuCoreCounter\\": "src/"
  8421. }
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "MIT"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Théo FIDRY",
  8430. "email": "theo.fidry@gmail.com"
  8431. }
  8432. ],
  8433. "description": "Tiny utility to get the number of CPU cores.",
  8434. "keywords": [
  8435. "CPU",
  8436. "core"
  8437. ],
  8438. "support": {
  8439. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8440. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8441. },
  8442. "funding": [
  8443. {
  8444. "url": "https://github.com/theofidry",
  8445. "type": "github"
  8446. }
  8447. ],
  8448. "time": "2024-02-07T09:43:46+00:00"
  8449. },
  8450. {
  8451. "name": "friendsofphp/php-cs-fixer",
  8452. "version": "v3.58.1",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8456. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  8461. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  8462. "shasum": ""
  8463. },
  8464. "require": {
  8465. "clue/ndjson-react": "^1.0",
  8466. "composer/semver": "^3.4",
  8467. "composer/xdebug-handler": "^3.0.3",
  8468. "ext-filter": "*",
  8469. "ext-json": "*",
  8470. "ext-tokenizer": "*",
  8471. "fidry/cpu-core-counter": "^1.0",
  8472. "php": "^7.4 || ^8.0",
  8473. "react/child-process": "^0.6.5",
  8474. "react/event-loop": "^1.0",
  8475. "react/promise": "^2.0 || ^3.0",
  8476. "react/socket": "^1.0",
  8477. "react/stream": "^1.0",
  8478. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8479. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8480. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8481. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8482. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8483. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8484. "symfony/polyfill-mbstring": "^1.28",
  8485. "symfony/polyfill-php80": "^1.28",
  8486. "symfony/polyfill-php81": "^1.28",
  8487. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8488. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8489. },
  8490. "require-dev": {
  8491. "facile-it/paraunit": "^1.3 || ^2.0",
  8492. "infection/infection": "^0.27.11",
  8493. "justinrainbow/json-schema": "^5.2",
  8494. "keradus/cli-executor": "^2.1",
  8495. "mikey179/vfsstream": "^1.6.11",
  8496. "php-coveralls/php-coveralls": "^2.7",
  8497. "php-cs-fixer/accessible-object": "^1.1",
  8498. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  8499. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  8500. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  8501. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8502. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8503. },
  8504. "suggest": {
  8505. "ext-dom": "For handling output formats in XML",
  8506. "ext-mbstring": "For handling non-UTF8 characters."
  8507. },
  8508. "bin": [
  8509. "php-cs-fixer"
  8510. ],
  8511. "type": "application",
  8512. "autoload": {
  8513. "psr-4": {
  8514. "PhpCsFixer\\": "src/"
  8515. }
  8516. },
  8517. "notification-url": "https://packagist.org/downloads/",
  8518. "license": [
  8519. "MIT"
  8520. ],
  8521. "authors": [
  8522. {
  8523. "name": "Fabien Potencier",
  8524. "email": "fabien@symfony.com"
  8525. },
  8526. {
  8527. "name": "Dariusz Rumiński",
  8528. "email": "dariusz.ruminski@gmail.com"
  8529. }
  8530. ],
  8531. "description": "A tool to automatically fix PHP code style",
  8532. "keywords": [
  8533. "Static code analysis",
  8534. "fixer",
  8535. "standards",
  8536. "static analysis"
  8537. ],
  8538. "support": {
  8539. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8540. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  8541. },
  8542. "funding": [
  8543. {
  8544. "url": "https://github.com/keradus",
  8545. "type": "github"
  8546. }
  8547. ],
  8548. "time": "2024-05-29T16:39:07+00:00"
  8549. },
  8550. {
  8551. "name": "hamcrest/hamcrest-php",
  8552. "version": "v2.0.1",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8556. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8561. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8562. "shasum": ""
  8563. },
  8564. "require": {
  8565. "php": "^5.3|^7.0|^8.0"
  8566. },
  8567. "replace": {
  8568. "cordoval/hamcrest-php": "*",
  8569. "davedevelopment/hamcrest-php": "*",
  8570. "kodova/hamcrest-php": "*"
  8571. },
  8572. "require-dev": {
  8573. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8574. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8575. },
  8576. "type": "library",
  8577. "extra": {
  8578. "branch-alias": {
  8579. "dev-master": "2.1-dev"
  8580. }
  8581. },
  8582. "autoload": {
  8583. "classmap": [
  8584. "hamcrest"
  8585. ]
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "BSD-3-Clause"
  8590. ],
  8591. "description": "This is the PHP port of Hamcrest Matchers",
  8592. "keywords": [
  8593. "test"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8597. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8598. },
  8599. "time": "2020-07-09T08:09:16+00:00"
  8600. },
  8601. {
  8602. "name": "hyperf/devtool",
  8603. "version": "v3.1.19",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/hyperf/devtool.git",
  8607. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8612. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8613. "shasum": ""
  8614. },
  8615. "require": {
  8616. "hyperf/code-parser": "~3.1.0",
  8617. "hyperf/command": "~3.1.0",
  8618. "hyperf/contract": "~3.1.0",
  8619. "hyperf/di": "~3.1.0",
  8620. "hyperf/support": "~3.1.0",
  8621. "hyperf/utils": "~3.1.0",
  8622. "php": ">=8.1"
  8623. },
  8624. "type": "library",
  8625. "extra": {
  8626. "branch-alias": {
  8627. "dev-master": "3.1-dev"
  8628. },
  8629. "hyperf": {
  8630. "config": "Hyperf\\Devtool\\ConfigProvider"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Hyperf\\Devtool\\": "src/"
  8636. }
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "description": "A Devtool for Hyperf.",
  8643. "homepage": "https://hyperf.io",
  8644. "keywords": [
  8645. "dev",
  8646. "devtool",
  8647. "hyperf",
  8648. "php",
  8649. "swoole"
  8650. ],
  8651. "support": {
  8652. "docs": "https://hyperf.wiki",
  8653. "issues": "https://github.com/hyperf/hyperf/issues",
  8654. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8655. "source": "https://github.com/hyperf/hyperf"
  8656. },
  8657. "funding": [
  8658. {
  8659. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8660. "type": "custom"
  8661. },
  8662. {
  8663. "url": "https://opencollective.com/hyperf",
  8664. "type": "open_collective"
  8665. }
  8666. ],
  8667. "time": "2024-04-13T06:53:08+00:00"
  8668. },
  8669. {
  8670. "name": "hyperf/testing",
  8671. "version": "v3.1.21",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/hyperf/testing.git",
  8675. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8680. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "hyperf/codec": "~3.1.0",
  8685. "hyperf/collection": "~3.1.0",
  8686. "hyperf/contract": "~3.1.0",
  8687. "hyperf/coroutine": "~3.1.0",
  8688. "hyperf/http-message": "~3.1.0",
  8689. "hyperf/http-server": "~3.1.0",
  8690. "hyperf/support": "~3.1.0",
  8691. "hyperf/utils": "~3.1.0",
  8692. "php": ">=8.1",
  8693. "phpunit/phpunit": "^10.0",
  8694. "psr/container": "^1.0|^2.0",
  8695. "symfony/http-foundation": "^5.4|^6.0"
  8696. },
  8697. "suggest": {
  8698. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8699. },
  8700. "bin": [
  8701. "co-phpunit"
  8702. ],
  8703. "type": "library",
  8704. "extra": {
  8705. "branch-alias": {
  8706. "dev-master": "3.1-dev"
  8707. }
  8708. },
  8709. "autoload": {
  8710. "psr-4": {
  8711. "Hyperf\\Testing\\": "src/"
  8712. }
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "MIT"
  8717. ],
  8718. "description": "Testing for hyperf",
  8719. "keywords": [
  8720. "dev",
  8721. "php",
  8722. "swoole",
  8723. "testing"
  8724. ],
  8725. "support": {
  8726. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8731. "type": "custom"
  8732. },
  8733. {
  8734. "url": "https://opencollective.com/hyperf",
  8735. "type": "open_collective"
  8736. }
  8737. ],
  8738. "time": "2024-05-07T05:34:51+00:00"
  8739. },
  8740. {
  8741. "name": "hyperf/watcher",
  8742. "version": "v3.1.21",
  8743. "source": {
  8744. "type": "git",
  8745. "url": "https://github.com/hyperf/watcher.git",
  8746. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8747. },
  8748. "dist": {
  8749. "type": "zip",
  8750. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8751. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8752. "shasum": ""
  8753. },
  8754. "require": {
  8755. "ext-posix": "*",
  8756. "hyperf/codec": "~3.1.0",
  8757. "hyperf/command": "~3.1.0",
  8758. "hyperf/di": "~3.1.0",
  8759. "hyperf/framework": "~3.1.0",
  8760. "hyperf/support": "~3.1.0",
  8761. "php": ">=8.1"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-master": "3.1-dev"
  8767. },
  8768. "hyperf": {
  8769. "config": "Hyperf\\Watcher\\ConfigProvider"
  8770. }
  8771. },
  8772. "autoload": {
  8773. "files": [
  8774. "src/Functions.php"
  8775. ],
  8776. "psr-4": {
  8777. "Hyperf\\Watcher\\": "src/"
  8778. }
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "MIT"
  8783. ],
  8784. "description": "Hot reload watcher for Hyperf",
  8785. "keywords": [
  8786. "dev",
  8787. "hyperf",
  8788. "php"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/hyperf/watcher/issues",
  8792. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8793. },
  8794. "funding": [
  8795. {
  8796. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8797. "type": "custom"
  8798. },
  8799. {
  8800. "url": "https://opencollective.com/hyperf",
  8801. "type": "open_collective"
  8802. }
  8803. ],
  8804. "time": "2024-05-09T13:40:44+00:00"
  8805. },
  8806. {
  8807. "name": "mockery/mockery",
  8808. "version": "1.6.12",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/mockery/mockery.git",
  8812. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8817. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "hamcrest/hamcrest-php": "^2.0.1",
  8822. "lib-pcre": ">=7.0",
  8823. "php": ">=7.3"
  8824. },
  8825. "conflict": {
  8826. "phpunit/phpunit": "<8.0"
  8827. },
  8828. "require-dev": {
  8829. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8830. "symplify/easy-coding-standard": "^12.1.14"
  8831. },
  8832. "type": "library",
  8833. "autoload": {
  8834. "files": [
  8835. "library/helpers.php",
  8836. "library/Mockery.php"
  8837. ],
  8838. "psr-4": {
  8839. "Mockery\\": "library/Mockery"
  8840. }
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "BSD-3-Clause"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Pádraic Brady",
  8849. "email": "padraic.brady@gmail.com",
  8850. "homepage": "https://github.com/padraic",
  8851. "role": "Author"
  8852. },
  8853. {
  8854. "name": "Dave Marshall",
  8855. "email": "dave.marshall@atstsolutions.co.uk",
  8856. "homepage": "https://davedevelopment.co.uk",
  8857. "role": "Developer"
  8858. },
  8859. {
  8860. "name": "Nathanael Esayeas",
  8861. "email": "nathanael.esayeas@protonmail.com",
  8862. "homepage": "https://github.com/ghostwriter",
  8863. "role": "Lead Developer"
  8864. }
  8865. ],
  8866. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8867. "homepage": "https://github.com/mockery/mockery",
  8868. "keywords": [
  8869. "BDD",
  8870. "TDD",
  8871. "library",
  8872. "mock",
  8873. "mock objects",
  8874. "mockery",
  8875. "stub",
  8876. "test",
  8877. "test double",
  8878. "testing"
  8879. ],
  8880. "support": {
  8881. "docs": "https://docs.mockery.io/",
  8882. "issues": "https://github.com/mockery/mockery/issues",
  8883. "rss": "https://github.com/mockery/mockery/releases.atom",
  8884. "security": "https://github.com/mockery/mockery/security/advisories",
  8885. "source": "https://github.com/mockery/mockery"
  8886. },
  8887. "time": "2024-05-16T03:13:13+00:00"
  8888. },
  8889. {
  8890. "name": "myclabs/deep-copy",
  8891. "version": "1.11.1",
  8892. "source": {
  8893. "type": "git",
  8894. "url": "https://github.com/myclabs/DeepCopy.git",
  8895. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8896. },
  8897. "dist": {
  8898. "type": "zip",
  8899. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8900. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8901. "shasum": ""
  8902. },
  8903. "require": {
  8904. "php": "^7.1 || ^8.0"
  8905. },
  8906. "conflict": {
  8907. "doctrine/collections": "<1.6.8",
  8908. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8909. },
  8910. "require-dev": {
  8911. "doctrine/collections": "^1.6.8",
  8912. "doctrine/common": "^2.13.3 || ^3.2.2",
  8913. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8914. },
  8915. "type": "library",
  8916. "autoload": {
  8917. "files": [
  8918. "src/DeepCopy/deep_copy.php"
  8919. ],
  8920. "psr-4": {
  8921. "DeepCopy\\": "src/DeepCopy/"
  8922. }
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "MIT"
  8927. ],
  8928. "description": "Create deep copies (clones) of your objects",
  8929. "keywords": [
  8930. "clone",
  8931. "copy",
  8932. "duplicate",
  8933. "object",
  8934. "object graph"
  8935. ],
  8936. "support": {
  8937. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8938. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8939. },
  8940. "funding": [
  8941. {
  8942. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8943. "type": "tidelift"
  8944. }
  8945. ],
  8946. "time": "2023-03-08T13:26:56+00:00"
  8947. },
  8948. {
  8949. "name": "phar-io/manifest",
  8950. "version": "2.0.4",
  8951. "source": {
  8952. "type": "git",
  8953. "url": "https://github.com/phar-io/manifest.git",
  8954. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8955. },
  8956. "dist": {
  8957. "type": "zip",
  8958. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8959. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8960. "shasum": ""
  8961. },
  8962. "require": {
  8963. "ext-dom": "*",
  8964. "ext-libxml": "*",
  8965. "ext-phar": "*",
  8966. "ext-xmlwriter": "*",
  8967. "phar-io/version": "^3.0.1",
  8968. "php": "^7.2 || ^8.0"
  8969. },
  8970. "type": "library",
  8971. "extra": {
  8972. "branch-alias": {
  8973. "dev-master": "2.0.x-dev"
  8974. }
  8975. },
  8976. "autoload": {
  8977. "classmap": [
  8978. "src/"
  8979. ]
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "BSD-3-Clause"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Arne Blankerts",
  8988. "email": "arne@blankerts.de",
  8989. "role": "Developer"
  8990. },
  8991. {
  8992. "name": "Sebastian Heuer",
  8993. "email": "sebastian@phpeople.de",
  8994. "role": "Developer"
  8995. },
  8996. {
  8997. "name": "Sebastian Bergmann",
  8998. "email": "sebastian@phpunit.de",
  8999. "role": "Developer"
  9000. }
  9001. ],
  9002. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9003. "support": {
  9004. "issues": "https://github.com/phar-io/manifest/issues",
  9005. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9006. },
  9007. "funding": [
  9008. {
  9009. "url": "https://github.com/theseer",
  9010. "type": "github"
  9011. }
  9012. ],
  9013. "time": "2024-03-03T12:33:53+00:00"
  9014. },
  9015. {
  9016. "name": "phar-io/version",
  9017. "version": "3.2.1",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/phar-io/version.git",
  9021. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9026. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9027. "shasum": ""
  9028. },
  9029. "require": {
  9030. "php": "^7.2 || ^8.0"
  9031. },
  9032. "type": "library",
  9033. "autoload": {
  9034. "classmap": [
  9035. "src/"
  9036. ]
  9037. },
  9038. "notification-url": "https://packagist.org/downloads/",
  9039. "license": [
  9040. "BSD-3-Clause"
  9041. ],
  9042. "authors": [
  9043. {
  9044. "name": "Arne Blankerts",
  9045. "email": "arne@blankerts.de",
  9046. "role": "Developer"
  9047. },
  9048. {
  9049. "name": "Sebastian Heuer",
  9050. "email": "sebastian@phpeople.de",
  9051. "role": "Developer"
  9052. },
  9053. {
  9054. "name": "Sebastian Bergmann",
  9055. "email": "sebastian@phpunit.de",
  9056. "role": "Developer"
  9057. }
  9058. ],
  9059. "description": "Library for handling version information and constraints",
  9060. "support": {
  9061. "issues": "https://github.com/phar-io/version/issues",
  9062. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9063. },
  9064. "time": "2022-02-21T01:04:05+00:00"
  9065. },
  9066. {
  9067. "name": "phpstan/phpstan",
  9068. "version": "1.11.4",
  9069. "source": {
  9070. "type": "git",
  9071. "url": "https://github.com/phpstan/phpstan.git",
  9072. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82"
  9073. },
  9074. "dist": {
  9075. "type": "zip",
  9076. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  9077. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  9078. "shasum": ""
  9079. },
  9080. "require": {
  9081. "php": "^7.2|^8.0"
  9082. },
  9083. "conflict": {
  9084. "phpstan/phpstan-shim": "*"
  9085. },
  9086. "bin": [
  9087. "phpstan",
  9088. "phpstan.phar"
  9089. ],
  9090. "type": "library",
  9091. "autoload": {
  9092. "files": [
  9093. "bootstrap.php"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "MIT"
  9099. ],
  9100. "description": "PHPStan - PHP Static Analysis Tool",
  9101. "keywords": [
  9102. "dev",
  9103. "static analysis"
  9104. ],
  9105. "support": {
  9106. "docs": "https://phpstan.org/user-guide/getting-started",
  9107. "forum": "https://github.com/phpstan/phpstan/discussions",
  9108. "issues": "https://github.com/phpstan/phpstan/issues",
  9109. "security": "https://github.com/phpstan/phpstan/security/policy",
  9110. "source": "https://github.com/phpstan/phpstan-src"
  9111. },
  9112. "funding": [
  9113. {
  9114. "url": "https://github.com/ondrejmirtes",
  9115. "type": "github"
  9116. },
  9117. {
  9118. "url": "https://github.com/phpstan",
  9119. "type": "github"
  9120. }
  9121. ],
  9122. "time": "2024-06-06T12:19:22+00:00"
  9123. },
  9124. {
  9125. "name": "phpunit/php-code-coverage",
  9126. "version": "10.1.14",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9130. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  9135. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "ext-dom": "*",
  9140. "ext-libxml": "*",
  9141. "ext-xmlwriter": "*",
  9142. "nikic/php-parser": "^4.18 || ^5.0",
  9143. "php": ">=8.1",
  9144. "phpunit/php-file-iterator": "^4.0",
  9145. "phpunit/php-text-template": "^3.0",
  9146. "sebastian/code-unit-reverse-lookup": "^3.0",
  9147. "sebastian/complexity": "^3.0",
  9148. "sebastian/environment": "^6.0",
  9149. "sebastian/lines-of-code": "^2.0",
  9150. "sebastian/version": "^4.0",
  9151. "theseer/tokenizer": "^1.2.0"
  9152. },
  9153. "require-dev": {
  9154. "phpunit/phpunit": "^10.1"
  9155. },
  9156. "suggest": {
  9157. "ext-pcov": "PHP extension that provides line coverage",
  9158. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-main": "10.1-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de",
  9179. "role": "lead"
  9180. }
  9181. ],
  9182. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9183. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9184. "keywords": [
  9185. "coverage",
  9186. "testing",
  9187. "xunit"
  9188. ],
  9189. "support": {
  9190. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9191. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9192. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2024-03-12T15:33:41+00:00"
  9201. },
  9202. {
  9203. "name": "phpunit/php-file-iterator",
  9204. "version": "4.1.0",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9208. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9213. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": ">=8.1"
  9218. },
  9219. "require-dev": {
  9220. "phpunit/phpunit": "^10.0"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-main": "4.0-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "classmap": [
  9230. "src/"
  9231. ]
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "BSD-3-Clause"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Sebastian Bergmann",
  9240. "email": "sebastian@phpunit.de",
  9241. "role": "lead"
  9242. }
  9243. ],
  9244. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9245. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9246. "keywords": [
  9247. "filesystem",
  9248. "iterator"
  9249. ],
  9250. "support": {
  9251. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9252. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9253. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9254. },
  9255. "funding": [
  9256. {
  9257. "url": "https://github.com/sebastianbergmann",
  9258. "type": "github"
  9259. }
  9260. ],
  9261. "time": "2023-08-31T06:24:48+00:00"
  9262. },
  9263. {
  9264. "name": "phpunit/php-invoker",
  9265. "version": "4.0.0",
  9266. "source": {
  9267. "type": "git",
  9268. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9269. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9270. },
  9271. "dist": {
  9272. "type": "zip",
  9273. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9274. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9275. "shasum": ""
  9276. },
  9277. "require": {
  9278. "php": ">=8.1"
  9279. },
  9280. "require-dev": {
  9281. "ext-pcntl": "*",
  9282. "phpunit/phpunit": "^10.0"
  9283. },
  9284. "suggest": {
  9285. "ext-pcntl": "*"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-main": "4.0-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "classmap": [
  9295. "src/"
  9296. ]
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "license": [
  9300. "BSD-3-Clause"
  9301. ],
  9302. "authors": [
  9303. {
  9304. "name": "Sebastian Bergmann",
  9305. "email": "sebastian@phpunit.de",
  9306. "role": "lead"
  9307. }
  9308. ],
  9309. "description": "Invoke callables with a timeout",
  9310. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9311. "keywords": [
  9312. "process"
  9313. ],
  9314. "support": {
  9315. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9316. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9317. },
  9318. "funding": [
  9319. {
  9320. "url": "https://github.com/sebastianbergmann",
  9321. "type": "github"
  9322. }
  9323. ],
  9324. "time": "2023-02-03T06:56:09+00:00"
  9325. },
  9326. {
  9327. "name": "phpunit/php-text-template",
  9328. "version": "3.0.1",
  9329. "source": {
  9330. "type": "git",
  9331. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9332. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9333. },
  9334. "dist": {
  9335. "type": "zip",
  9336. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9337. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9338. "shasum": ""
  9339. },
  9340. "require": {
  9341. "php": ">=8.1"
  9342. },
  9343. "require-dev": {
  9344. "phpunit/phpunit": "^10.0"
  9345. },
  9346. "type": "library",
  9347. "extra": {
  9348. "branch-alias": {
  9349. "dev-main": "3.0-dev"
  9350. }
  9351. },
  9352. "autoload": {
  9353. "classmap": [
  9354. "src/"
  9355. ]
  9356. },
  9357. "notification-url": "https://packagist.org/downloads/",
  9358. "license": [
  9359. "BSD-3-Clause"
  9360. ],
  9361. "authors": [
  9362. {
  9363. "name": "Sebastian Bergmann",
  9364. "email": "sebastian@phpunit.de",
  9365. "role": "lead"
  9366. }
  9367. ],
  9368. "description": "Simple template engine.",
  9369. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9370. "keywords": [
  9371. "template"
  9372. ],
  9373. "support": {
  9374. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9375. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9376. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9377. },
  9378. "funding": [
  9379. {
  9380. "url": "https://github.com/sebastianbergmann",
  9381. "type": "github"
  9382. }
  9383. ],
  9384. "time": "2023-08-31T14:07:24+00:00"
  9385. },
  9386. {
  9387. "name": "phpunit/php-timer",
  9388. "version": "6.0.0",
  9389. "source": {
  9390. "type": "git",
  9391. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9392. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9393. },
  9394. "dist": {
  9395. "type": "zip",
  9396. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9397. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9398. "shasum": ""
  9399. },
  9400. "require": {
  9401. "php": ">=8.1"
  9402. },
  9403. "require-dev": {
  9404. "phpunit/phpunit": "^10.0"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-main": "6.0-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "classmap": [
  9414. "src/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Sebastian Bergmann",
  9424. "email": "sebastian@phpunit.de",
  9425. "role": "lead"
  9426. }
  9427. ],
  9428. "description": "Utility class for timing",
  9429. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9430. "keywords": [
  9431. "timer"
  9432. ],
  9433. "support": {
  9434. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9435. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9436. },
  9437. "funding": [
  9438. {
  9439. "url": "https://github.com/sebastianbergmann",
  9440. "type": "github"
  9441. }
  9442. ],
  9443. "time": "2023-02-03T06:57:52+00:00"
  9444. },
  9445. {
  9446. "name": "phpunit/phpunit",
  9447. "version": "10.5.20",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9451. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  9456. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "ext-dom": "*",
  9461. "ext-json": "*",
  9462. "ext-libxml": "*",
  9463. "ext-mbstring": "*",
  9464. "ext-xml": "*",
  9465. "ext-xmlwriter": "*",
  9466. "myclabs/deep-copy": "^1.10.1",
  9467. "phar-io/manifest": "^2.0.3",
  9468. "phar-io/version": "^3.0.2",
  9469. "php": ">=8.1",
  9470. "phpunit/php-code-coverage": "^10.1.5",
  9471. "phpunit/php-file-iterator": "^4.0",
  9472. "phpunit/php-invoker": "^4.0",
  9473. "phpunit/php-text-template": "^3.0",
  9474. "phpunit/php-timer": "^6.0",
  9475. "sebastian/cli-parser": "^2.0",
  9476. "sebastian/code-unit": "^2.0",
  9477. "sebastian/comparator": "^5.0",
  9478. "sebastian/diff": "^5.0",
  9479. "sebastian/environment": "^6.0",
  9480. "sebastian/exporter": "^5.1",
  9481. "sebastian/global-state": "^6.0.1",
  9482. "sebastian/object-enumerator": "^5.0",
  9483. "sebastian/recursion-context": "^5.0",
  9484. "sebastian/type": "^4.0",
  9485. "sebastian/version": "^4.0"
  9486. },
  9487. "suggest": {
  9488. "ext-soap": "To be able to generate mocks based on WSDL files"
  9489. },
  9490. "bin": [
  9491. "phpunit"
  9492. ],
  9493. "type": "library",
  9494. "extra": {
  9495. "branch-alias": {
  9496. "dev-main": "10.5-dev"
  9497. }
  9498. },
  9499. "autoload": {
  9500. "files": [
  9501. "src/Framework/Assert/Functions.php"
  9502. ],
  9503. "classmap": [
  9504. "src/"
  9505. ]
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "BSD-3-Clause"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Sebastian Bergmann",
  9514. "email": "sebastian@phpunit.de",
  9515. "role": "lead"
  9516. }
  9517. ],
  9518. "description": "The PHP Unit Testing framework.",
  9519. "homepage": "https://phpunit.de/",
  9520. "keywords": [
  9521. "phpunit",
  9522. "testing",
  9523. "xunit"
  9524. ],
  9525. "support": {
  9526. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9527. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9528. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  9529. },
  9530. "funding": [
  9531. {
  9532. "url": "https://phpunit.de/sponsors.html",
  9533. "type": "custom"
  9534. },
  9535. {
  9536. "url": "https://github.com/sebastianbergmann",
  9537. "type": "github"
  9538. },
  9539. {
  9540. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9541. "type": "tidelift"
  9542. }
  9543. ],
  9544. "time": "2024-04-24T06:32:35+00:00"
  9545. },
  9546. {
  9547. "name": "react/cache",
  9548. "version": "v1.2.0",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/reactphp/cache.git",
  9552. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9557. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9558. "shasum": ""
  9559. },
  9560. "require": {
  9561. "php": ">=5.3.0",
  9562. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9563. },
  9564. "require-dev": {
  9565. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9566. },
  9567. "type": "library",
  9568. "autoload": {
  9569. "psr-4": {
  9570. "React\\Cache\\": "src/"
  9571. }
  9572. },
  9573. "notification-url": "https://packagist.org/downloads/",
  9574. "license": [
  9575. "MIT"
  9576. ],
  9577. "authors": [
  9578. {
  9579. "name": "Christian Lück",
  9580. "email": "christian@clue.engineering",
  9581. "homepage": "https://clue.engineering/"
  9582. },
  9583. {
  9584. "name": "Cees-Jan Kiewiet",
  9585. "email": "reactphp@ceesjankiewiet.nl",
  9586. "homepage": "https://wyrihaximus.net/"
  9587. },
  9588. {
  9589. "name": "Jan Sorgalla",
  9590. "email": "jsorgalla@gmail.com",
  9591. "homepage": "https://sorgalla.com/"
  9592. },
  9593. {
  9594. "name": "Chris Boden",
  9595. "email": "cboden@gmail.com",
  9596. "homepage": "https://cboden.dev/"
  9597. }
  9598. ],
  9599. "description": "Async, Promise-based cache interface for ReactPHP",
  9600. "keywords": [
  9601. "cache",
  9602. "caching",
  9603. "promise",
  9604. "reactphp"
  9605. ],
  9606. "support": {
  9607. "issues": "https://github.com/reactphp/cache/issues",
  9608. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9609. },
  9610. "funding": [
  9611. {
  9612. "url": "https://opencollective.com/reactphp",
  9613. "type": "open_collective"
  9614. }
  9615. ],
  9616. "time": "2022-11-30T15:59:55+00:00"
  9617. },
  9618. {
  9619. "name": "react/child-process",
  9620. "version": "v0.6.5",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/reactphp/child-process.git",
  9624. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9629. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9630. "shasum": ""
  9631. },
  9632. "require": {
  9633. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9634. "php": ">=5.3.0",
  9635. "react/event-loop": "^1.2",
  9636. "react/stream": "^1.2"
  9637. },
  9638. "require-dev": {
  9639. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9640. "react/socket": "^1.8",
  9641. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9642. },
  9643. "type": "library",
  9644. "autoload": {
  9645. "psr-4": {
  9646. "React\\ChildProcess\\": "src"
  9647. }
  9648. },
  9649. "notification-url": "https://packagist.org/downloads/",
  9650. "license": [
  9651. "MIT"
  9652. ],
  9653. "authors": [
  9654. {
  9655. "name": "Christian Lück",
  9656. "email": "christian@clue.engineering",
  9657. "homepage": "https://clue.engineering/"
  9658. },
  9659. {
  9660. "name": "Cees-Jan Kiewiet",
  9661. "email": "reactphp@ceesjankiewiet.nl",
  9662. "homepage": "https://wyrihaximus.net/"
  9663. },
  9664. {
  9665. "name": "Jan Sorgalla",
  9666. "email": "jsorgalla@gmail.com",
  9667. "homepage": "https://sorgalla.com/"
  9668. },
  9669. {
  9670. "name": "Chris Boden",
  9671. "email": "cboden@gmail.com",
  9672. "homepage": "https://cboden.dev/"
  9673. }
  9674. ],
  9675. "description": "Event-driven library for executing child processes with ReactPHP.",
  9676. "keywords": [
  9677. "event-driven",
  9678. "process",
  9679. "reactphp"
  9680. ],
  9681. "support": {
  9682. "issues": "https://github.com/reactphp/child-process/issues",
  9683. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9684. },
  9685. "funding": [
  9686. {
  9687. "url": "https://github.com/WyriHaximus",
  9688. "type": "github"
  9689. },
  9690. {
  9691. "url": "https://github.com/clue",
  9692. "type": "github"
  9693. }
  9694. ],
  9695. "time": "2022-09-16T13:41:56+00:00"
  9696. },
  9697. {
  9698. "name": "react/dns",
  9699. "version": "v1.12.0",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/reactphp/dns.git",
  9703. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9708. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9709. "shasum": ""
  9710. },
  9711. "require": {
  9712. "php": ">=5.3.0",
  9713. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9714. "react/event-loop": "^1.2",
  9715. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9716. },
  9717. "require-dev": {
  9718. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9719. "react/async": "^4 || ^3 || ^2",
  9720. "react/promise-timer": "^1.9"
  9721. },
  9722. "type": "library",
  9723. "autoload": {
  9724. "psr-4": {
  9725. "React\\Dns\\": "src/"
  9726. }
  9727. },
  9728. "notification-url": "https://packagist.org/downloads/",
  9729. "license": [
  9730. "MIT"
  9731. ],
  9732. "authors": [
  9733. {
  9734. "name": "Christian Lück",
  9735. "email": "christian@clue.engineering",
  9736. "homepage": "https://clue.engineering/"
  9737. },
  9738. {
  9739. "name": "Cees-Jan Kiewiet",
  9740. "email": "reactphp@ceesjankiewiet.nl",
  9741. "homepage": "https://wyrihaximus.net/"
  9742. },
  9743. {
  9744. "name": "Jan Sorgalla",
  9745. "email": "jsorgalla@gmail.com",
  9746. "homepage": "https://sorgalla.com/"
  9747. },
  9748. {
  9749. "name": "Chris Boden",
  9750. "email": "cboden@gmail.com",
  9751. "homepage": "https://cboden.dev/"
  9752. }
  9753. ],
  9754. "description": "Async DNS resolver for ReactPHP",
  9755. "keywords": [
  9756. "async",
  9757. "dns",
  9758. "dns-resolver",
  9759. "reactphp"
  9760. ],
  9761. "support": {
  9762. "issues": "https://github.com/reactphp/dns/issues",
  9763. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9764. },
  9765. "funding": [
  9766. {
  9767. "url": "https://opencollective.com/reactphp",
  9768. "type": "open_collective"
  9769. }
  9770. ],
  9771. "time": "2023-11-29T12:41:06+00:00"
  9772. },
  9773. {
  9774. "name": "react/event-loop",
  9775. "version": "v1.5.0",
  9776. "source": {
  9777. "type": "git",
  9778. "url": "https://github.com/reactphp/event-loop.git",
  9779. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9780. },
  9781. "dist": {
  9782. "type": "zip",
  9783. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9784. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9785. "shasum": ""
  9786. },
  9787. "require": {
  9788. "php": ">=5.3.0"
  9789. },
  9790. "require-dev": {
  9791. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9792. },
  9793. "suggest": {
  9794. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9795. },
  9796. "type": "library",
  9797. "autoload": {
  9798. "psr-4": {
  9799. "React\\EventLoop\\": "src/"
  9800. }
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "MIT"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Christian Lück",
  9809. "email": "christian@clue.engineering",
  9810. "homepage": "https://clue.engineering/"
  9811. },
  9812. {
  9813. "name": "Cees-Jan Kiewiet",
  9814. "email": "reactphp@ceesjankiewiet.nl",
  9815. "homepage": "https://wyrihaximus.net/"
  9816. },
  9817. {
  9818. "name": "Jan Sorgalla",
  9819. "email": "jsorgalla@gmail.com",
  9820. "homepage": "https://sorgalla.com/"
  9821. },
  9822. {
  9823. "name": "Chris Boden",
  9824. "email": "cboden@gmail.com",
  9825. "homepage": "https://cboden.dev/"
  9826. }
  9827. ],
  9828. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9829. "keywords": [
  9830. "asynchronous",
  9831. "event-loop"
  9832. ],
  9833. "support": {
  9834. "issues": "https://github.com/reactphp/event-loop/issues",
  9835. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://opencollective.com/reactphp",
  9840. "type": "open_collective"
  9841. }
  9842. ],
  9843. "time": "2023-11-13T13:48:05+00:00"
  9844. },
  9845. {
  9846. "name": "react/promise",
  9847. "version": "v3.2.0",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/reactphp/promise.git",
  9851. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9856. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=7.1.0"
  9861. },
  9862. "require-dev": {
  9863. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9864. "phpunit/phpunit": "^9.6 || ^7.5"
  9865. },
  9866. "type": "library",
  9867. "autoload": {
  9868. "files": [
  9869. "src/functions_include.php"
  9870. ],
  9871. "psr-4": {
  9872. "React\\Promise\\": "src/"
  9873. }
  9874. },
  9875. "notification-url": "https://packagist.org/downloads/",
  9876. "license": [
  9877. "MIT"
  9878. ],
  9879. "authors": [
  9880. {
  9881. "name": "Jan Sorgalla",
  9882. "email": "jsorgalla@gmail.com",
  9883. "homepage": "https://sorgalla.com/"
  9884. },
  9885. {
  9886. "name": "Christian Lück",
  9887. "email": "christian@clue.engineering",
  9888. "homepage": "https://clue.engineering/"
  9889. },
  9890. {
  9891. "name": "Cees-Jan Kiewiet",
  9892. "email": "reactphp@ceesjankiewiet.nl",
  9893. "homepage": "https://wyrihaximus.net/"
  9894. },
  9895. {
  9896. "name": "Chris Boden",
  9897. "email": "cboden@gmail.com",
  9898. "homepage": "https://cboden.dev/"
  9899. }
  9900. ],
  9901. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9902. "keywords": [
  9903. "promise",
  9904. "promises"
  9905. ],
  9906. "support": {
  9907. "issues": "https://github.com/reactphp/promise/issues",
  9908. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9909. },
  9910. "funding": [
  9911. {
  9912. "url": "https://opencollective.com/reactphp",
  9913. "type": "open_collective"
  9914. }
  9915. ],
  9916. "time": "2024-05-24T10:39:05+00:00"
  9917. },
  9918. {
  9919. "name": "react/socket",
  9920. "version": "v1.15.0",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/reactphp/socket.git",
  9924. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9929. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9930. "shasum": ""
  9931. },
  9932. "require": {
  9933. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9934. "php": ">=5.3.0",
  9935. "react/dns": "^1.11",
  9936. "react/event-loop": "^1.2",
  9937. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9938. "react/stream": "^1.2"
  9939. },
  9940. "require-dev": {
  9941. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9942. "react/async": "^4 || ^3 || ^2",
  9943. "react/promise-stream": "^1.4",
  9944. "react/promise-timer": "^1.10"
  9945. },
  9946. "type": "library",
  9947. "autoload": {
  9948. "psr-4": {
  9949. "React\\Socket\\": "src/"
  9950. }
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "MIT"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Christian Lück",
  9959. "email": "christian@clue.engineering",
  9960. "homepage": "https://clue.engineering/"
  9961. },
  9962. {
  9963. "name": "Cees-Jan Kiewiet",
  9964. "email": "reactphp@ceesjankiewiet.nl",
  9965. "homepage": "https://wyrihaximus.net/"
  9966. },
  9967. {
  9968. "name": "Jan Sorgalla",
  9969. "email": "jsorgalla@gmail.com",
  9970. "homepage": "https://sorgalla.com/"
  9971. },
  9972. {
  9973. "name": "Chris Boden",
  9974. "email": "cboden@gmail.com",
  9975. "homepage": "https://cboden.dev/"
  9976. }
  9977. ],
  9978. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9979. "keywords": [
  9980. "Connection",
  9981. "Socket",
  9982. "async",
  9983. "reactphp",
  9984. "stream"
  9985. ],
  9986. "support": {
  9987. "issues": "https://github.com/reactphp/socket/issues",
  9988. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9989. },
  9990. "funding": [
  9991. {
  9992. "url": "https://opencollective.com/reactphp",
  9993. "type": "open_collective"
  9994. }
  9995. ],
  9996. "time": "2023-12-15T11:02:10+00:00"
  9997. },
  9998. {
  9999. "name": "react/stream",
  10000. "version": "v1.3.0",
  10001. "source": {
  10002. "type": "git",
  10003. "url": "https://github.com/reactphp/stream.git",
  10004. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  10005. },
  10006. "dist": {
  10007. "type": "zip",
  10008. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  10009. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  10010. "shasum": ""
  10011. },
  10012. "require": {
  10013. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10014. "php": ">=5.3.8",
  10015. "react/event-loop": "^1.2"
  10016. },
  10017. "require-dev": {
  10018. "clue/stream-filter": "~1.2",
  10019. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  10020. },
  10021. "type": "library",
  10022. "autoload": {
  10023. "psr-4": {
  10024. "React\\Stream\\": "src/"
  10025. }
  10026. },
  10027. "notification-url": "https://packagist.org/downloads/",
  10028. "license": [
  10029. "MIT"
  10030. ],
  10031. "authors": [
  10032. {
  10033. "name": "Christian Lück",
  10034. "email": "christian@clue.engineering",
  10035. "homepage": "https://clue.engineering/"
  10036. },
  10037. {
  10038. "name": "Cees-Jan Kiewiet",
  10039. "email": "reactphp@ceesjankiewiet.nl",
  10040. "homepage": "https://wyrihaximus.net/"
  10041. },
  10042. {
  10043. "name": "Jan Sorgalla",
  10044. "email": "jsorgalla@gmail.com",
  10045. "homepage": "https://sorgalla.com/"
  10046. },
  10047. {
  10048. "name": "Chris Boden",
  10049. "email": "cboden@gmail.com",
  10050. "homepage": "https://cboden.dev/"
  10051. }
  10052. ],
  10053. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10054. "keywords": [
  10055. "event-driven",
  10056. "io",
  10057. "non-blocking",
  10058. "pipe",
  10059. "reactphp",
  10060. "readable",
  10061. "stream",
  10062. "writable"
  10063. ],
  10064. "support": {
  10065. "issues": "https://github.com/reactphp/stream/issues",
  10066. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  10067. },
  10068. "funding": [
  10069. {
  10070. "url": "https://opencollective.com/reactphp",
  10071. "type": "open_collective"
  10072. }
  10073. ],
  10074. "time": "2023-06-16T10:52:11+00:00"
  10075. },
  10076. {
  10077. "name": "sebastian/cli-parser",
  10078. "version": "2.0.1",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10082. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10087. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10088. "shasum": ""
  10089. },
  10090. "require": {
  10091. "php": ">=8.1"
  10092. },
  10093. "require-dev": {
  10094. "phpunit/phpunit": "^10.0"
  10095. },
  10096. "type": "library",
  10097. "extra": {
  10098. "branch-alias": {
  10099. "dev-main": "2.0-dev"
  10100. }
  10101. },
  10102. "autoload": {
  10103. "classmap": [
  10104. "src/"
  10105. ]
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "BSD-3-Clause"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Sebastian Bergmann",
  10114. "email": "sebastian@phpunit.de",
  10115. "role": "lead"
  10116. }
  10117. ],
  10118. "description": "Library for parsing CLI options",
  10119. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10120. "support": {
  10121. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10122. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10123. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10124. },
  10125. "funding": [
  10126. {
  10127. "url": "https://github.com/sebastianbergmann",
  10128. "type": "github"
  10129. }
  10130. ],
  10131. "time": "2024-03-02T07:12:49+00:00"
  10132. },
  10133. {
  10134. "name": "sebastian/code-unit",
  10135. "version": "2.0.0",
  10136. "source": {
  10137. "type": "git",
  10138. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10139. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10140. },
  10141. "dist": {
  10142. "type": "zip",
  10143. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10144. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10145. "shasum": ""
  10146. },
  10147. "require": {
  10148. "php": ">=8.1"
  10149. },
  10150. "require-dev": {
  10151. "phpunit/phpunit": "^10.0"
  10152. },
  10153. "type": "library",
  10154. "extra": {
  10155. "branch-alias": {
  10156. "dev-main": "2.0-dev"
  10157. }
  10158. },
  10159. "autoload": {
  10160. "classmap": [
  10161. "src/"
  10162. ]
  10163. },
  10164. "notification-url": "https://packagist.org/downloads/",
  10165. "license": [
  10166. "BSD-3-Clause"
  10167. ],
  10168. "authors": [
  10169. {
  10170. "name": "Sebastian Bergmann",
  10171. "email": "sebastian@phpunit.de",
  10172. "role": "lead"
  10173. }
  10174. ],
  10175. "description": "Collection of value objects that represent the PHP code units",
  10176. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10177. "support": {
  10178. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10179. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10180. },
  10181. "funding": [
  10182. {
  10183. "url": "https://github.com/sebastianbergmann",
  10184. "type": "github"
  10185. }
  10186. ],
  10187. "time": "2023-02-03T06:58:43+00:00"
  10188. },
  10189. {
  10190. "name": "sebastian/code-unit-reverse-lookup",
  10191. "version": "3.0.0",
  10192. "source": {
  10193. "type": "git",
  10194. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10195. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10196. },
  10197. "dist": {
  10198. "type": "zip",
  10199. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10200. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10201. "shasum": ""
  10202. },
  10203. "require": {
  10204. "php": ">=8.1"
  10205. },
  10206. "require-dev": {
  10207. "phpunit/phpunit": "^10.0"
  10208. },
  10209. "type": "library",
  10210. "extra": {
  10211. "branch-alias": {
  10212. "dev-main": "3.0-dev"
  10213. }
  10214. },
  10215. "autoload": {
  10216. "classmap": [
  10217. "src/"
  10218. ]
  10219. },
  10220. "notification-url": "https://packagist.org/downloads/",
  10221. "license": [
  10222. "BSD-3-Clause"
  10223. ],
  10224. "authors": [
  10225. {
  10226. "name": "Sebastian Bergmann",
  10227. "email": "sebastian@phpunit.de"
  10228. }
  10229. ],
  10230. "description": "Looks up which function or method a line of code belongs to",
  10231. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10232. "support": {
  10233. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10234. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10235. },
  10236. "funding": [
  10237. {
  10238. "url": "https://github.com/sebastianbergmann",
  10239. "type": "github"
  10240. }
  10241. ],
  10242. "time": "2023-02-03T06:59:15+00:00"
  10243. },
  10244. {
  10245. "name": "sebastian/comparator",
  10246. "version": "5.0.1",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/sebastianbergmann/comparator.git",
  10250. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  10255. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "ext-dom": "*",
  10260. "ext-mbstring": "*",
  10261. "php": ">=8.1",
  10262. "sebastian/diff": "^5.0",
  10263. "sebastian/exporter": "^5.0"
  10264. },
  10265. "require-dev": {
  10266. "phpunit/phpunit": "^10.3"
  10267. },
  10268. "type": "library",
  10269. "extra": {
  10270. "branch-alias": {
  10271. "dev-main": "5.0-dev"
  10272. }
  10273. },
  10274. "autoload": {
  10275. "classmap": [
  10276. "src/"
  10277. ]
  10278. },
  10279. "notification-url": "https://packagist.org/downloads/",
  10280. "license": [
  10281. "BSD-3-Clause"
  10282. ],
  10283. "authors": [
  10284. {
  10285. "name": "Sebastian Bergmann",
  10286. "email": "sebastian@phpunit.de"
  10287. },
  10288. {
  10289. "name": "Jeff Welch",
  10290. "email": "whatthejeff@gmail.com"
  10291. },
  10292. {
  10293. "name": "Volker Dusch",
  10294. "email": "github@wallbash.com"
  10295. },
  10296. {
  10297. "name": "Bernhard Schussek",
  10298. "email": "bschussek@2bepublished.at"
  10299. }
  10300. ],
  10301. "description": "Provides the functionality to compare PHP values for equality",
  10302. "homepage": "https://github.com/sebastianbergmann/comparator",
  10303. "keywords": [
  10304. "comparator",
  10305. "compare",
  10306. "equality"
  10307. ],
  10308. "support": {
  10309. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10310. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10311. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  10312. },
  10313. "funding": [
  10314. {
  10315. "url": "https://github.com/sebastianbergmann",
  10316. "type": "github"
  10317. }
  10318. ],
  10319. "time": "2023-08-14T13:18:12+00:00"
  10320. },
  10321. {
  10322. "name": "sebastian/complexity",
  10323. "version": "3.2.0",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/sebastianbergmann/complexity.git",
  10327. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10332. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10333. "shasum": ""
  10334. },
  10335. "require": {
  10336. "nikic/php-parser": "^4.18 || ^5.0",
  10337. "php": ">=8.1"
  10338. },
  10339. "require-dev": {
  10340. "phpunit/phpunit": "^10.0"
  10341. },
  10342. "type": "library",
  10343. "extra": {
  10344. "branch-alias": {
  10345. "dev-main": "3.2-dev"
  10346. }
  10347. },
  10348. "autoload": {
  10349. "classmap": [
  10350. "src/"
  10351. ]
  10352. },
  10353. "notification-url": "https://packagist.org/downloads/",
  10354. "license": [
  10355. "BSD-3-Clause"
  10356. ],
  10357. "authors": [
  10358. {
  10359. "name": "Sebastian Bergmann",
  10360. "email": "sebastian@phpunit.de",
  10361. "role": "lead"
  10362. }
  10363. ],
  10364. "description": "Library for calculating the complexity of PHP code units",
  10365. "homepage": "https://github.com/sebastianbergmann/complexity",
  10366. "support": {
  10367. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10368. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10369. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10370. },
  10371. "funding": [
  10372. {
  10373. "url": "https://github.com/sebastianbergmann",
  10374. "type": "github"
  10375. }
  10376. ],
  10377. "time": "2023-12-21T08:37:17+00:00"
  10378. },
  10379. {
  10380. "name": "sebastian/diff",
  10381. "version": "5.1.1",
  10382. "source": {
  10383. "type": "git",
  10384. "url": "https://github.com/sebastianbergmann/diff.git",
  10385. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10386. },
  10387. "dist": {
  10388. "type": "zip",
  10389. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10390. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10391. "shasum": ""
  10392. },
  10393. "require": {
  10394. "php": ">=8.1"
  10395. },
  10396. "require-dev": {
  10397. "phpunit/phpunit": "^10.0",
  10398. "symfony/process": "^6.4"
  10399. },
  10400. "type": "library",
  10401. "extra": {
  10402. "branch-alias": {
  10403. "dev-main": "5.1-dev"
  10404. }
  10405. },
  10406. "autoload": {
  10407. "classmap": [
  10408. "src/"
  10409. ]
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "BSD-3-Clause"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Sebastian Bergmann",
  10418. "email": "sebastian@phpunit.de"
  10419. },
  10420. {
  10421. "name": "Kore Nordmann",
  10422. "email": "mail@kore-nordmann.de"
  10423. }
  10424. ],
  10425. "description": "Diff implementation",
  10426. "homepage": "https://github.com/sebastianbergmann/diff",
  10427. "keywords": [
  10428. "diff",
  10429. "udiff",
  10430. "unidiff",
  10431. "unified diff"
  10432. ],
  10433. "support": {
  10434. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10435. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10436. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10437. },
  10438. "funding": [
  10439. {
  10440. "url": "https://github.com/sebastianbergmann",
  10441. "type": "github"
  10442. }
  10443. ],
  10444. "time": "2024-03-02T07:15:17+00:00"
  10445. },
  10446. {
  10447. "name": "sebastian/environment",
  10448. "version": "6.1.0",
  10449. "source": {
  10450. "type": "git",
  10451. "url": "https://github.com/sebastianbergmann/environment.git",
  10452. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10453. },
  10454. "dist": {
  10455. "type": "zip",
  10456. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10457. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10458. "shasum": ""
  10459. },
  10460. "require": {
  10461. "php": ">=8.1"
  10462. },
  10463. "require-dev": {
  10464. "phpunit/phpunit": "^10.0"
  10465. },
  10466. "suggest": {
  10467. "ext-posix": "*"
  10468. },
  10469. "type": "library",
  10470. "extra": {
  10471. "branch-alias": {
  10472. "dev-main": "6.1-dev"
  10473. }
  10474. },
  10475. "autoload": {
  10476. "classmap": [
  10477. "src/"
  10478. ]
  10479. },
  10480. "notification-url": "https://packagist.org/downloads/",
  10481. "license": [
  10482. "BSD-3-Clause"
  10483. ],
  10484. "authors": [
  10485. {
  10486. "name": "Sebastian Bergmann",
  10487. "email": "sebastian@phpunit.de"
  10488. }
  10489. ],
  10490. "description": "Provides functionality to handle HHVM/PHP environments",
  10491. "homepage": "https://github.com/sebastianbergmann/environment",
  10492. "keywords": [
  10493. "Xdebug",
  10494. "environment",
  10495. "hhvm"
  10496. ],
  10497. "support": {
  10498. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10499. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10500. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10501. },
  10502. "funding": [
  10503. {
  10504. "url": "https://github.com/sebastianbergmann",
  10505. "type": "github"
  10506. }
  10507. ],
  10508. "time": "2024-03-23T08:47:14+00:00"
  10509. },
  10510. {
  10511. "name": "sebastian/exporter",
  10512. "version": "5.1.2",
  10513. "source": {
  10514. "type": "git",
  10515. "url": "https://github.com/sebastianbergmann/exporter.git",
  10516. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10517. },
  10518. "dist": {
  10519. "type": "zip",
  10520. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10521. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10522. "shasum": ""
  10523. },
  10524. "require": {
  10525. "ext-mbstring": "*",
  10526. "php": ">=8.1",
  10527. "sebastian/recursion-context": "^5.0"
  10528. },
  10529. "require-dev": {
  10530. "phpunit/phpunit": "^10.0"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "branch-alias": {
  10535. "dev-main": "5.1-dev"
  10536. }
  10537. },
  10538. "autoload": {
  10539. "classmap": [
  10540. "src/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "BSD-3-Clause"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Sebastian Bergmann",
  10550. "email": "sebastian@phpunit.de"
  10551. },
  10552. {
  10553. "name": "Jeff Welch",
  10554. "email": "whatthejeff@gmail.com"
  10555. },
  10556. {
  10557. "name": "Volker Dusch",
  10558. "email": "github@wallbash.com"
  10559. },
  10560. {
  10561. "name": "Adam Harvey",
  10562. "email": "aharvey@php.net"
  10563. },
  10564. {
  10565. "name": "Bernhard Schussek",
  10566. "email": "bschussek@gmail.com"
  10567. }
  10568. ],
  10569. "description": "Provides the functionality to export PHP variables for visualization",
  10570. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10571. "keywords": [
  10572. "export",
  10573. "exporter"
  10574. ],
  10575. "support": {
  10576. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10577. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10578. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10579. },
  10580. "funding": [
  10581. {
  10582. "url": "https://github.com/sebastianbergmann",
  10583. "type": "github"
  10584. }
  10585. ],
  10586. "time": "2024-03-02T07:17:12+00:00"
  10587. },
  10588. {
  10589. "name": "sebastian/global-state",
  10590. "version": "6.0.2",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/sebastianbergmann/global-state.git",
  10594. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10599. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10600. "shasum": ""
  10601. },
  10602. "require": {
  10603. "php": ">=8.1",
  10604. "sebastian/object-reflector": "^3.0",
  10605. "sebastian/recursion-context": "^5.0"
  10606. },
  10607. "require-dev": {
  10608. "ext-dom": "*",
  10609. "phpunit/phpunit": "^10.0"
  10610. },
  10611. "type": "library",
  10612. "extra": {
  10613. "branch-alias": {
  10614. "dev-main": "6.0-dev"
  10615. }
  10616. },
  10617. "autoload": {
  10618. "classmap": [
  10619. "src/"
  10620. ]
  10621. },
  10622. "notification-url": "https://packagist.org/downloads/",
  10623. "license": [
  10624. "BSD-3-Clause"
  10625. ],
  10626. "authors": [
  10627. {
  10628. "name": "Sebastian Bergmann",
  10629. "email": "sebastian@phpunit.de"
  10630. }
  10631. ],
  10632. "description": "Snapshotting of global state",
  10633. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10634. "keywords": [
  10635. "global state"
  10636. ],
  10637. "support": {
  10638. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10639. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10640. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10641. },
  10642. "funding": [
  10643. {
  10644. "url": "https://github.com/sebastianbergmann",
  10645. "type": "github"
  10646. }
  10647. ],
  10648. "time": "2024-03-02T07:19:19+00:00"
  10649. },
  10650. {
  10651. "name": "sebastian/lines-of-code",
  10652. "version": "2.0.2",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10656. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10661. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "nikic/php-parser": "^4.18 || ^5.0",
  10666. "php": ">=8.1"
  10667. },
  10668. "require-dev": {
  10669. "phpunit/phpunit": "^10.0"
  10670. },
  10671. "type": "library",
  10672. "extra": {
  10673. "branch-alias": {
  10674. "dev-main": "2.0-dev"
  10675. }
  10676. },
  10677. "autoload": {
  10678. "classmap": [
  10679. "src/"
  10680. ]
  10681. },
  10682. "notification-url": "https://packagist.org/downloads/",
  10683. "license": [
  10684. "BSD-3-Clause"
  10685. ],
  10686. "authors": [
  10687. {
  10688. "name": "Sebastian Bergmann",
  10689. "email": "sebastian@phpunit.de",
  10690. "role": "lead"
  10691. }
  10692. ],
  10693. "description": "Library for counting the lines of code in PHP source code",
  10694. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10695. "support": {
  10696. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10697. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10698. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10699. },
  10700. "funding": [
  10701. {
  10702. "url": "https://github.com/sebastianbergmann",
  10703. "type": "github"
  10704. }
  10705. ],
  10706. "time": "2023-12-21T08:38:20+00:00"
  10707. },
  10708. {
  10709. "name": "sebastian/object-enumerator",
  10710. "version": "5.0.0",
  10711. "source": {
  10712. "type": "git",
  10713. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10714. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10715. },
  10716. "dist": {
  10717. "type": "zip",
  10718. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10719. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10720. "shasum": ""
  10721. },
  10722. "require": {
  10723. "php": ">=8.1",
  10724. "sebastian/object-reflector": "^3.0",
  10725. "sebastian/recursion-context": "^5.0"
  10726. },
  10727. "require-dev": {
  10728. "phpunit/phpunit": "^10.0"
  10729. },
  10730. "type": "library",
  10731. "extra": {
  10732. "branch-alias": {
  10733. "dev-main": "5.0-dev"
  10734. }
  10735. },
  10736. "autoload": {
  10737. "classmap": [
  10738. "src/"
  10739. ]
  10740. },
  10741. "notification-url": "https://packagist.org/downloads/",
  10742. "license": [
  10743. "BSD-3-Clause"
  10744. ],
  10745. "authors": [
  10746. {
  10747. "name": "Sebastian Bergmann",
  10748. "email": "sebastian@phpunit.de"
  10749. }
  10750. ],
  10751. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10752. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10753. "support": {
  10754. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10755. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10756. },
  10757. "funding": [
  10758. {
  10759. "url": "https://github.com/sebastianbergmann",
  10760. "type": "github"
  10761. }
  10762. ],
  10763. "time": "2023-02-03T07:08:32+00:00"
  10764. },
  10765. {
  10766. "name": "sebastian/object-reflector",
  10767. "version": "3.0.0",
  10768. "source": {
  10769. "type": "git",
  10770. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10771. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10772. },
  10773. "dist": {
  10774. "type": "zip",
  10775. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10776. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10777. "shasum": ""
  10778. },
  10779. "require": {
  10780. "php": ">=8.1"
  10781. },
  10782. "require-dev": {
  10783. "phpunit/phpunit": "^10.0"
  10784. },
  10785. "type": "library",
  10786. "extra": {
  10787. "branch-alias": {
  10788. "dev-main": "3.0-dev"
  10789. }
  10790. },
  10791. "autoload": {
  10792. "classmap": [
  10793. "src/"
  10794. ]
  10795. },
  10796. "notification-url": "https://packagist.org/downloads/",
  10797. "license": [
  10798. "BSD-3-Clause"
  10799. ],
  10800. "authors": [
  10801. {
  10802. "name": "Sebastian Bergmann",
  10803. "email": "sebastian@phpunit.de"
  10804. }
  10805. ],
  10806. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10807. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10808. "support": {
  10809. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10810. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10811. },
  10812. "funding": [
  10813. {
  10814. "url": "https://github.com/sebastianbergmann",
  10815. "type": "github"
  10816. }
  10817. ],
  10818. "time": "2023-02-03T07:06:18+00:00"
  10819. },
  10820. {
  10821. "name": "sebastian/recursion-context",
  10822. "version": "5.0.0",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10826. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10831. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10832. "shasum": ""
  10833. },
  10834. "require": {
  10835. "php": ">=8.1"
  10836. },
  10837. "require-dev": {
  10838. "phpunit/phpunit": "^10.0"
  10839. },
  10840. "type": "library",
  10841. "extra": {
  10842. "branch-alias": {
  10843. "dev-main": "5.0-dev"
  10844. }
  10845. },
  10846. "autoload": {
  10847. "classmap": [
  10848. "src/"
  10849. ]
  10850. },
  10851. "notification-url": "https://packagist.org/downloads/",
  10852. "license": [
  10853. "BSD-3-Clause"
  10854. ],
  10855. "authors": [
  10856. {
  10857. "name": "Sebastian Bergmann",
  10858. "email": "sebastian@phpunit.de"
  10859. },
  10860. {
  10861. "name": "Jeff Welch",
  10862. "email": "whatthejeff@gmail.com"
  10863. },
  10864. {
  10865. "name": "Adam Harvey",
  10866. "email": "aharvey@php.net"
  10867. }
  10868. ],
  10869. "description": "Provides functionality to recursively process PHP variables",
  10870. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10871. "support": {
  10872. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10873. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10874. },
  10875. "funding": [
  10876. {
  10877. "url": "https://github.com/sebastianbergmann",
  10878. "type": "github"
  10879. }
  10880. ],
  10881. "time": "2023-02-03T07:05:40+00:00"
  10882. },
  10883. {
  10884. "name": "sebastian/type",
  10885. "version": "4.0.0",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/sebastianbergmann/type.git",
  10889. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10894. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10895. "shasum": ""
  10896. },
  10897. "require": {
  10898. "php": ">=8.1"
  10899. },
  10900. "require-dev": {
  10901. "phpunit/phpunit": "^10.0"
  10902. },
  10903. "type": "library",
  10904. "extra": {
  10905. "branch-alias": {
  10906. "dev-main": "4.0-dev"
  10907. }
  10908. },
  10909. "autoload": {
  10910. "classmap": [
  10911. "src/"
  10912. ]
  10913. },
  10914. "notification-url": "https://packagist.org/downloads/",
  10915. "license": [
  10916. "BSD-3-Clause"
  10917. ],
  10918. "authors": [
  10919. {
  10920. "name": "Sebastian Bergmann",
  10921. "email": "sebastian@phpunit.de",
  10922. "role": "lead"
  10923. }
  10924. ],
  10925. "description": "Collection of value objects that represent the types of the PHP type system",
  10926. "homepage": "https://github.com/sebastianbergmann/type",
  10927. "support": {
  10928. "issues": "https://github.com/sebastianbergmann/type/issues",
  10929. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10930. },
  10931. "funding": [
  10932. {
  10933. "url": "https://github.com/sebastianbergmann",
  10934. "type": "github"
  10935. }
  10936. ],
  10937. "time": "2023-02-03T07:10:45+00:00"
  10938. },
  10939. {
  10940. "name": "sebastian/version",
  10941. "version": "4.0.1",
  10942. "source": {
  10943. "type": "git",
  10944. "url": "https://github.com/sebastianbergmann/version.git",
  10945. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10946. },
  10947. "dist": {
  10948. "type": "zip",
  10949. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10950. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10951. "shasum": ""
  10952. },
  10953. "require": {
  10954. "php": ">=8.1"
  10955. },
  10956. "type": "library",
  10957. "extra": {
  10958. "branch-alias": {
  10959. "dev-main": "4.0-dev"
  10960. }
  10961. },
  10962. "autoload": {
  10963. "classmap": [
  10964. "src/"
  10965. ]
  10966. },
  10967. "notification-url": "https://packagist.org/downloads/",
  10968. "license": [
  10969. "BSD-3-Clause"
  10970. ],
  10971. "authors": [
  10972. {
  10973. "name": "Sebastian Bergmann",
  10974. "email": "sebastian@phpunit.de",
  10975. "role": "lead"
  10976. }
  10977. ],
  10978. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10979. "homepage": "https://github.com/sebastianbergmann/version",
  10980. "support": {
  10981. "issues": "https://github.com/sebastianbergmann/version/issues",
  10982. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10983. },
  10984. "funding": [
  10985. {
  10986. "url": "https://github.com/sebastianbergmann",
  10987. "type": "github"
  10988. }
  10989. ],
  10990. "time": "2023-02-07T11:34:05+00:00"
  10991. },
  10992. {
  10993. "name": "swoole/ide-helper",
  10994. "version": "5.1.2",
  10995. "source": {
  10996. "type": "git",
  10997. "url": "https://github.com/swoole/ide-helper.git",
  10998. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10999. },
  11000. "dist": {
  11001. "type": "zip",
  11002. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  11003. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  11004. "shasum": ""
  11005. },
  11006. "type": "library",
  11007. "notification-url": "https://packagist.org/downloads/",
  11008. "license": [
  11009. "Apache-2.0"
  11010. ],
  11011. "authors": [
  11012. {
  11013. "name": "Team Swoole",
  11014. "email": "team@swoole.com"
  11015. }
  11016. ],
  11017. "description": "IDE help files for Swoole.",
  11018. "support": {
  11019. "issues": "https://github.com/swoole/ide-helper/issues",
  11020. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  11021. },
  11022. "time": "2024-02-01T22:28:11+00:00"
  11023. },
  11024. {
  11025. "name": "symfony/event-dispatcher",
  11026. "version": "v6.4.8",
  11027. "source": {
  11028. "type": "git",
  11029. "url": "https://github.com/symfony/event-dispatcher.git",
  11030. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  11031. },
  11032. "dist": {
  11033. "type": "zip",
  11034. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  11035. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  11036. "shasum": ""
  11037. },
  11038. "require": {
  11039. "php": ">=8.1",
  11040. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11041. },
  11042. "conflict": {
  11043. "symfony/dependency-injection": "<5.4",
  11044. "symfony/service-contracts": "<2.5"
  11045. },
  11046. "provide": {
  11047. "psr/event-dispatcher-implementation": "1.0",
  11048. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11049. },
  11050. "require-dev": {
  11051. "psr/log": "^1|^2|^3",
  11052. "symfony/config": "^5.4|^6.0|^7.0",
  11053. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11054. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11055. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11056. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11057. "symfony/service-contracts": "^2.5|^3",
  11058. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11059. },
  11060. "type": "library",
  11061. "autoload": {
  11062. "psr-4": {
  11063. "Symfony\\Component\\EventDispatcher\\": ""
  11064. },
  11065. "exclude-from-classmap": [
  11066. "/Tests/"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "MIT"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Fabien Potencier",
  11076. "email": "fabien@symfony.com"
  11077. },
  11078. {
  11079. "name": "Symfony Community",
  11080. "homepage": "https://symfony.com/contributors"
  11081. }
  11082. ],
  11083. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11084. "homepage": "https://symfony.com",
  11085. "support": {
  11086. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  11087. },
  11088. "funding": [
  11089. {
  11090. "url": "https://symfony.com/sponsor",
  11091. "type": "custom"
  11092. },
  11093. {
  11094. "url": "https://github.com/fabpot",
  11095. "type": "github"
  11096. },
  11097. {
  11098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11099. "type": "tidelift"
  11100. }
  11101. ],
  11102. "time": "2024-05-31T14:49:08+00:00"
  11103. },
  11104. {
  11105. "name": "symfony/event-dispatcher-contracts",
  11106. "version": "v3.5.0",
  11107. "source": {
  11108. "type": "git",
  11109. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11110. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11111. },
  11112. "dist": {
  11113. "type": "zip",
  11114. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11115. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11116. "shasum": ""
  11117. },
  11118. "require": {
  11119. "php": ">=8.1",
  11120. "psr/event-dispatcher": "^1"
  11121. },
  11122. "type": "library",
  11123. "extra": {
  11124. "branch-alias": {
  11125. "dev-main": "3.5-dev"
  11126. },
  11127. "thanks": {
  11128. "name": "symfony/contracts",
  11129. "url": "https://github.com/symfony/contracts"
  11130. }
  11131. },
  11132. "autoload": {
  11133. "psr-4": {
  11134. "Symfony\\Contracts\\EventDispatcher\\": ""
  11135. }
  11136. },
  11137. "notification-url": "https://packagist.org/downloads/",
  11138. "license": [
  11139. "MIT"
  11140. ],
  11141. "authors": [
  11142. {
  11143. "name": "Nicolas Grekas",
  11144. "email": "p@tchwork.com"
  11145. },
  11146. {
  11147. "name": "Symfony Community",
  11148. "homepage": "https://symfony.com/contributors"
  11149. }
  11150. ],
  11151. "description": "Generic abstractions related to dispatching event",
  11152. "homepage": "https://symfony.com",
  11153. "keywords": [
  11154. "abstractions",
  11155. "contracts",
  11156. "decoupling",
  11157. "interfaces",
  11158. "interoperability",
  11159. "standards"
  11160. ],
  11161. "support": {
  11162. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11163. },
  11164. "funding": [
  11165. {
  11166. "url": "https://symfony.com/sponsor",
  11167. "type": "custom"
  11168. },
  11169. {
  11170. "url": "https://github.com/fabpot",
  11171. "type": "github"
  11172. },
  11173. {
  11174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11175. "type": "tidelift"
  11176. }
  11177. ],
  11178. "time": "2024-04-18T09:32:20+00:00"
  11179. },
  11180. {
  11181. "name": "symfony/filesystem",
  11182. "version": "v6.4.8",
  11183. "source": {
  11184. "type": "git",
  11185. "url": "https://github.com/symfony/filesystem.git",
  11186. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  11187. },
  11188. "dist": {
  11189. "type": "zip",
  11190. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  11191. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  11192. "shasum": ""
  11193. },
  11194. "require": {
  11195. "php": ">=8.1",
  11196. "symfony/polyfill-ctype": "~1.8",
  11197. "symfony/polyfill-mbstring": "~1.8"
  11198. },
  11199. "require-dev": {
  11200. "symfony/process": "^5.4|^6.4|^7.0"
  11201. },
  11202. "type": "library",
  11203. "autoload": {
  11204. "psr-4": {
  11205. "Symfony\\Component\\Filesystem\\": ""
  11206. },
  11207. "exclude-from-classmap": [
  11208. "/Tests/"
  11209. ]
  11210. },
  11211. "notification-url": "https://packagist.org/downloads/",
  11212. "license": [
  11213. "MIT"
  11214. ],
  11215. "authors": [
  11216. {
  11217. "name": "Fabien Potencier",
  11218. "email": "fabien@symfony.com"
  11219. },
  11220. {
  11221. "name": "Symfony Community",
  11222. "homepage": "https://symfony.com/contributors"
  11223. }
  11224. ],
  11225. "description": "Provides basic utilities for the filesystem",
  11226. "homepage": "https://symfony.com",
  11227. "support": {
  11228. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  11229. },
  11230. "funding": [
  11231. {
  11232. "url": "https://symfony.com/sponsor",
  11233. "type": "custom"
  11234. },
  11235. {
  11236. "url": "https://github.com/fabpot",
  11237. "type": "github"
  11238. },
  11239. {
  11240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11241. "type": "tidelift"
  11242. }
  11243. ],
  11244. "time": "2024-05-31T14:49:08+00:00"
  11245. },
  11246. {
  11247. "name": "symfony/http-foundation",
  11248. "version": "v6.4.8",
  11249. "source": {
  11250. "type": "git",
  11251. "url": "https://github.com/symfony/http-foundation.git",
  11252. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  11253. },
  11254. "dist": {
  11255. "type": "zip",
  11256. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  11257. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  11258. "shasum": ""
  11259. },
  11260. "require": {
  11261. "php": ">=8.1",
  11262. "symfony/deprecation-contracts": "^2.5|^3",
  11263. "symfony/polyfill-mbstring": "~1.1",
  11264. "symfony/polyfill-php83": "^1.27"
  11265. },
  11266. "conflict": {
  11267. "symfony/cache": "<6.3"
  11268. },
  11269. "require-dev": {
  11270. "doctrine/dbal": "^2.13.1|^3|^4",
  11271. "predis/predis": "^1.1|^2.0",
  11272. "symfony/cache": "^6.3|^7.0",
  11273. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11274. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11275. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11276. "symfony/mime": "^5.4|^6.0|^7.0",
  11277. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11278. },
  11279. "type": "library",
  11280. "autoload": {
  11281. "psr-4": {
  11282. "Symfony\\Component\\HttpFoundation\\": ""
  11283. },
  11284. "exclude-from-classmap": [
  11285. "/Tests/"
  11286. ]
  11287. },
  11288. "notification-url": "https://packagist.org/downloads/",
  11289. "license": [
  11290. "MIT"
  11291. ],
  11292. "authors": [
  11293. {
  11294. "name": "Fabien Potencier",
  11295. "email": "fabien@symfony.com"
  11296. },
  11297. {
  11298. "name": "Symfony Community",
  11299. "homepage": "https://symfony.com/contributors"
  11300. }
  11301. ],
  11302. "description": "Defines an object-oriented layer for the HTTP specification",
  11303. "homepage": "https://symfony.com",
  11304. "support": {
  11305. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  11306. },
  11307. "funding": [
  11308. {
  11309. "url": "https://symfony.com/sponsor",
  11310. "type": "custom"
  11311. },
  11312. {
  11313. "url": "https://github.com/fabpot",
  11314. "type": "github"
  11315. },
  11316. {
  11317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11318. "type": "tidelift"
  11319. }
  11320. ],
  11321. "time": "2024-05-31T14:49:08+00:00"
  11322. },
  11323. {
  11324. "name": "symfony/options-resolver",
  11325. "version": "v6.4.8",
  11326. "source": {
  11327. "type": "git",
  11328. "url": "https://github.com/symfony/options-resolver.git",
  11329. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  11330. },
  11331. "dist": {
  11332. "type": "zip",
  11333. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  11334. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  11335. "shasum": ""
  11336. },
  11337. "require": {
  11338. "php": ">=8.1",
  11339. "symfony/deprecation-contracts": "^2.5|^3"
  11340. },
  11341. "type": "library",
  11342. "autoload": {
  11343. "psr-4": {
  11344. "Symfony\\Component\\OptionsResolver\\": ""
  11345. },
  11346. "exclude-from-classmap": [
  11347. "/Tests/"
  11348. ]
  11349. },
  11350. "notification-url": "https://packagist.org/downloads/",
  11351. "license": [
  11352. "MIT"
  11353. ],
  11354. "authors": [
  11355. {
  11356. "name": "Fabien Potencier",
  11357. "email": "fabien@symfony.com"
  11358. },
  11359. {
  11360. "name": "Symfony Community",
  11361. "homepage": "https://symfony.com/contributors"
  11362. }
  11363. ],
  11364. "description": "Provides an improved replacement for the array_replace PHP function",
  11365. "homepage": "https://symfony.com",
  11366. "keywords": [
  11367. "config",
  11368. "configuration",
  11369. "options"
  11370. ],
  11371. "support": {
  11372. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  11373. },
  11374. "funding": [
  11375. {
  11376. "url": "https://symfony.com/sponsor",
  11377. "type": "custom"
  11378. },
  11379. {
  11380. "url": "https://github.com/fabpot",
  11381. "type": "github"
  11382. },
  11383. {
  11384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11385. "type": "tidelift"
  11386. }
  11387. ],
  11388. "time": "2024-05-31T14:49:08+00:00"
  11389. },
  11390. {
  11391. "name": "symfony/polyfill-php81",
  11392. "version": "v1.29.0",
  11393. "source": {
  11394. "type": "git",
  11395. "url": "https://github.com/symfony/polyfill-php81.git",
  11396. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  11397. },
  11398. "dist": {
  11399. "type": "zip",
  11400. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  11401. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  11402. "shasum": ""
  11403. },
  11404. "require": {
  11405. "php": ">=7.1"
  11406. },
  11407. "type": "library",
  11408. "extra": {
  11409. "thanks": {
  11410. "name": "symfony/polyfill",
  11411. "url": "https://github.com/symfony/polyfill"
  11412. }
  11413. },
  11414. "autoload": {
  11415. "files": [
  11416. "bootstrap.php"
  11417. ],
  11418. "psr-4": {
  11419. "Symfony\\Polyfill\\Php81\\": ""
  11420. },
  11421. "classmap": [
  11422. "Resources/stubs"
  11423. ]
  11424. },
  11425. "notification-url": "https://packagist.org/downloads/",
  11426. "license": [
  11427. "MIT"
  11428. ],
  11429. "authors": [
  11430. {
  11431. "name": "Nicolas Grekas",
  11432. "email": "p@tchwork.com"
  11433. },
  11434. {
  11435. "name": "Symfony Community",
  11436. "homepage": "https://symfony.com/contributors"
  11437. }
  11438. ],
  11439. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11440. "homepage": "https://symfony.com",
  11441. "keywords": [
  11442. "compatibility",
  11443. "polyfill",
  11444. "portable",
  11445. "shim"
  11446. ],
  11447. "support": {
  11448. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  11449. },
  11450. "funding": [
  11451. {
  11452. "url": "https://symfony.com/sponsor",
  11453. "type": "custom"
  11454. },
  11455. {
  11456. "url": "https://github.com/fabpot",
  11457. "type": "github"
  11458. },
  11459. {
  11460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11461. "type": "tidelift"
  11462. }
  11463. ],
  11464. "time": "2024-01-29T20:11:03+00:00"
  11465. },
  11466. {
  11467. "name": "symfony/polyfill-php83",
  11468. "version": "v1.29.0",
  11469. "source": {
  11470. "type": "git",
  11471. "url": "https://github.com/symfony/polyfill-php83.git",
  11472. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  11473. },
  11474. "dist": {
  11475. "type": "zip",
  11476. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  11477. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  11478. "shasum": ""
  11479. },
  11480. "require": {
  11481. "php": ">=7.1",
  11482. "symfony/polyfill-php80": "^1.14"
  11483. },
  11484. "type": "library",
  11485. "extra": {
  11486. "thanks": {
  11487. "name": "symfony/polyfill",
  11488. "url": "https://github.com/symfony/polyfill"
  11489. }
  11490. },
  11491. "autoload": {
  11492. "files": [
  11493. "bootstrap.php"
  11494. ],
  11495. "psr-4": {
  11496. "Symfony\\Polyfill\\Php83\\": ""
  11497. },
  11498. "classmap": [
  11499. "Resources/stubs"
  11500. ]
  11501. },
  11502. "notification-url": "https://packagist.org/downloads/",
  11503. "license": [
  11504. "MIT"
  11505. ],
  11506. "authors": [
  11507. {
  11508. "name": "Nicolas Grekas",
  11509. "email": "p@tchwork.com"
  11510. },
  11511. {
  11512. "name": "Symfony Community",
  11513. "homepage": "https://symfony.com/contributors"
  11514. }
  11515. ],
  11516. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11517. "homepage": "https://symfony.com",
  11518. "keywords": [
  11519. "compatibility",
  11520. "polyfill",
  11521. "portable",
  11522. "shim"
  11523. ],
  11524. "support": {
  11525. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  11526. },
  11527. "funding": [
  11528. {
  11529. "url": "https://symfony.com/sponsor",
  11530. "type": "custom"
  11531. },
  11532. {
  11533. "url": "https://github.com/fabpot",
  11534. "type": "github"
  11535. },
  11536. {
  11537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11538. "type": "tidelift"
  11539. }
  11540. ],
  11541. "time": "2024-01-29T20:11:03+00:00"
  11542. },
  11543. {
  11544. "name": "symfony/process",
  11545. "version": "v6.4.8",
  11546. "source": {
  11547. "type": "git",
  11548. "url": "https://github.com/symfony/process.git",
  11549. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  11550. },
  11551. "dist": {
  11552. "type": "zip",
  11553. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11554. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11555. "shasum": ""
  11556. },
  11557. "require": {
  11558. "php": ">=8.1"
  11559. },
  11560. "type": "library",
  11561. "autoload": {
  11562. "psr-4": {
  11563. "Symfony\\Component\\Process\\": ""
  11564. },
  11565. "exclude-from-classmap": [
  11566. "/Tests/"
  11567. ]
  11568. },
  11569. "notification-url": "https://packagist.org/downloads/",
  11570. "license": [
  11571. "MIT"
  11572. ],
  11573. "authors": [
  11574. {
  11575. "name": "Fabien Potencier",
  11576. "email": "fabien@symfony.com"
  11577. },
  11578. {
  11579. "name": "Symfony Community",
  11580. "homepage": "https://symfony.com/contributors"
  11581. }
  11582. ],
  11583. "description": "Executes commands in sub-processes",
  11584. "homepage": "https://symfony.com",
  11585. "support": {
  11586. "source": "https://github.com/symfony/process/tree/v6.4.8"
  11587. },
  11588. "funding": [
  11589. {
  11590. "url": "https://symfony.com/sponsor",
  11591. "type": "custom"
  11592. },
  11593. {
  11594. "url": "https://github.com/fabpot",
  11595. "type": "github"
  11596. },
  11597. {
  11598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11599. "type": "tidelift"
  11600. }
  11601. ],
  11602. "time": "2024-05-31T14:49:08+00:00"
  11603. },
  11604. {
  11605. "name": "symfony/stopwatch",
  11606. "version": "v6.4.8",
  11607. "source": {
  11608. "type": "git",
  11609. "url": "https://github.com/symfony/stopwatch.git",
  11610. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11611. },
  11612. "dist": {
  11613. "type": "zip",
  11614. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11615. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11616. "shasum": ""
  11617. },
  11618. "require": {
  11619. "php": ">=8.1",
  11620. "symfony/service-contracts": "^2.5|^3"
  11621. },
  11622. "type": "library",
  11623. "autoload": {
  11624. "psr-4": {
  11625. "Symfony\\Component\\Stopwatch\\": ""
  11626. },
  11627. "exclude-from-classmap": [
  11628. "/Tests/"
  11629. ]
  11630. },
  11631. "notification-url": "https://packagist.org/downloads/",
  11632. "license": [
  11633. "MIT"
  11634. ],
  11635. "authors": [
  11636. {
  11637. "name": "Fabien Potencier",
  11638. "email": "fabien@symfony.com"
  11639. },
  11640. {
  11641. "name": "Symfony Community",
  11642. "homepage": "https://symfony.com/contributors"
  11643. }
  11644. ],
  11645. "description": "Provides a way to profile code",
  11646. "homepage": "https://symfony.com",
  11647. "support": {
  11648. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11649. },
  11650. "funding": [
  11651. {
  11652. "url": "https://symfony.com/sponsor",
  11653. "type": "custom"
  11654. },
  11655. {
  11656. "url": "https://github.com/fabpot",
  11657. "type": "github"
  11658. },
  11659. {
  11660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11661. "type": "tidelift"
  11662. }
  11663. ],
  11664. "time": "2024-05-31T14:49:08+00:00"
  11665. },
  11666. {
  11667. "name": "theseer/tokenizer",
  11668. "version": "1.2.3",
  11669. "source": {
  11670. "type": "git",
  11671. "url": "https://github.com/theseer/tokenizer.git",
  11672. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11673. },
  11674. "dist": {
  11675. "type": "zip",
  11676. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11677. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11678. "shasum": ""
  11679. },
  11680. "require": {
  11681. "ext-dom": "*",
  11682. "ext-tokenizer": "*",
  11683. "ext-xmlwriter": "*",
  11684. "php": "^7.2 || ^8.0"
  11685. },
  11686. "type": "library",
  11687. "autoload": {
  11688. "classmap": [
  11689. "src/"
  11690. ]
  11691. },
  11692. "notification-url": "https://packagist.org/downloads/",
  11693. "license": [
  11694. "BSD-3-Clause"
  11695. ],
  11696. "authors": [
  11697. {
  11698. "name": "Arne Blankerts",
  11699. "email": "arne@blankerts.de",
  11700. "role": "Developer"
  11701. }
  11702. ],
  11703. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11704. "support": {
  11705. "issues": "https://github.com/theseer/tokenizer/issues",
  11706. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11707. },
  11708. "funding": [
  11709. {
  11710. "url": "https://github.com/theseer",
  11711. "type": "github"
  11712. }
  11713. ],
  11714. "time": "2024-03-03T12:36:25+00:00"
  11715. },
  11716. {
  11717. "name": "zx/php-tools",
  11718. "version": "v0.0.1",
  11719. "source": {
  11720. "type": "git",
  11721. "url": "https://gitee.com/open-php/php-tools.git",
  11722. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11723. },
  11724. "require": {
  11725. "php": ">=7.0"
  11726. },
  11727. "type": "library",
  11728. "autoload": {
  11729. "psr-4": {
  11730. "ZX\\": "src/"
  11731. }
  11732. },
  11733. "notification-url": "https://packagist.org/downloads/",
  11734. "license": [
  11735. "mit"
  11736. ],
  11737. "authors": [
  11738. {
  11739. "name": "zx",
  11740. "email": "903464207@qq.com"
  11741. }
  11742. ],
  11743. "description": "php-tools",
  11744. "time": "2023-06-25T06:24:10+00:00"
  11745. }
  11746. ],
  11747. "aliases": [],
  11748. "minimum-stability": "dev",
  11749. "stability-flags": [],
  11750. "prefer-stable": true,
  11751. "prefer-lowest": false,
  11752. "platform": {
  11753. "php": ">=8.1"
  11754. },
  11755. "platform-dev": [],
  11756. "plugin-api-version": "2.6.0"
  11757. }