composer.lock 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578
  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": "7a8cb4f75db768057983509f63e11b0b",
  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": "doctrine/annotations",
  80. "version": "2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  89. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.8.0",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6",
  104. "vimeo/psalm": "^4.10"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  151. },
  152. "time": "2023-02-02T22:02:53+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.2",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  459. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.2"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2023-11-12T22:16:48+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.8.1",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  521. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  527. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2023-12-03T20:35:24+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  647. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2023-12-03T20:19:20+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.6.2",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  730. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "^0.9",
  746. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2023-12-03T20:05:35+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.23",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  846. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0|^2.0",
  857. "psr/simple-cache": "^1.0|^2.0|^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-05-23T03:43:58+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.15",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  917. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-03-23T11:28:51+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.15",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  982. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-03-23T11:28:51+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.23.2",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1046. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-05-24T08:33:42+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.24",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1111. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0|^6.0|^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-05-27T12:37:07+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.15",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1182. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-03-23T11:28:51+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.15",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1240. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0|^2.0",
  1249. "symfony/finder": "^5.0|^6.0|^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-03-23T11:28:51+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.15",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1317. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-03-23T11:28:51+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.15",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1381. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-03-23T11:28:51+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.16",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1458. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-03-31T11:35:28+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.22",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1524. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3|^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "require-dev": {
  1532. "hyperf/guzzle": "~3.1.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "3.1-dev"
  1538. },
  1539. "hyperf": {
  1540. "config": "Hyperf\\Consul\\ConfigProvider"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Hyperf\\Consul\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "description": "A Consul Client for Hyperf.",
  1553. "homepage": "https://hyperf.io",
  1554. "keywords": [
  1555. "consul",
  1556. "consul-client",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-05-15T06:42:24+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/context",
  1581. "version": "v3.1.15",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/context.git",
  1585. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1590. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/engine": "^2.0",
  1595. "php": ">=8.1"
  1596. },
  1597. "suggest": {
  1598. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "3.1-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Hyperf\\Context\\": "src/"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "MIT"
  1614. ],
  1615. "description": "A coroutine/application context library.",
  1616. "homepage": "https://hyperf.io",
  1617. "keywords": [
  1618. "Context",
  1619. "hyperf",
  1620. "php",
  1621. "swoole"
  1622. ],
  1623. "support": {
  1624. "docs": "https://hyperf.wiki",
  1625. "issues": "https://github.com/hyperf/hyperf/issues",
  1626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1627. "source": "https://github.com/hyperf/hyperf"
  1628. },
  1629. "funding": [
  1630. {
  1631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1632. "type": "custom"
  1633. },
  1634. {
  1635. "url": "https://opencollective.com/hyperf",
  1636. "type": "open_collective"
  1637. }
  1638. ],
  1639. "time": "2024-03-23T11:28:51+00:00"
  1640. },
  1641. {
  1642. "name": "hyperf/contract",
  1643. "version": "v3.1.15",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/hyperf/contract.git",
  1647. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1652. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "php": ">=8.1"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "3.1-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "Hyperf\\Contract\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "MIT"
  1672. ],
  1673. "description": "The contracts of Hyperf.",
  1674. "homepage": "https://hyperf.io",
  1675. "keywords": [
  1676. "hyperf",
  1677. "php",
  1678. "swoole"
  1679. ],
  1680. "support": {
  1681. "docs": "https://hyperf.wiki",
  1682. "issues": "https://github.com/hyperf/hyperf/issues",
  1683. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1684. "source": "https://github.com/hyperf/hyperf"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1689. "type": "custom"
  1690. },
  1691. {
  1692. "url": "https://opencollective.com/hyperf",
  1693. "type": "open_collective"
  1694. }
  1695. ],
  1696. "time": "2024-03-23T11:28:51+00:00"
  1697. },
  1698. {
  1699. "name": "hyperf/coordinator",
  1700. "version": "v3.1.21",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/hyperf/coordinator.git",
  1704. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1709. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "hyperf/engine": "^2.0",
  1714. "php": ">=8.1"
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "branch-alias": {
  1719. "dev-master": "3.1-dev"
  1720. }
  1721. },
  1722. "autoload": {
  1723. "files": [
  1724. "src/Functions.php"
  1725. ],
  1726. "psr-4": {
  1727. "Hyperf\\Coordinator\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "Hyperf Coordinator",
  1735. "homepage": "https://hyperf.io",
  1736. "keywords": [
  1737. "Coordinator",
  1738. "hyperf",
  1739. "php",
  1740. "swoole"
  1741. ],
  1742. "support": {
  1743. "docs": "https://hyperf.wiki",
  1744. "issues": "https://github.com/hyperf/hyperf/issues",
  1745. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1746. "source": "https://github.com/hyperf/hyperf"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1751. "type": "custom"
  1752. },
  1753. {
  1754. "url": "https://opencollective.com/hyperf",
  1755. "type": "open_collective"
  1756. }
  1757. ],
  1758. "time": "2024-05-09T02:35:08+00:00"
  1759. },
  1760. {
  1761. "name": "hyperf/coroutine",
  1762. "version": "v3.1.15",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/hyperf/coroutine.git",
  1766. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1771. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1772. "shasum": ""
  1773. },
  1774. "require": {
  1775. "hyperf/context": "~3.1.0",
  1776. "hyperf/contract": "~3.1.0",
  1777. "hyperf/engine": "^2.0",
  1778. "php": ">=8.1"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "3.1-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "files": [
  1788. "src/Functions.php"
  1789. ],
  1790. "psr-4": {
  1791. "Hyperf\\Coroutine\\": "src/"
  1792. }
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "description": "Hyperf Coroutine",
  1799. "homepage": "https://hyperf.io",
  1800. "keywords": [
  1801. "coroutine",
  1802. "hyperf",
  1803. "php",
  1804. "swoole"
  1805. ],
  1806. "support": {
  1807. "docs": "https://hyperf.wiki",
  1808. "issues": "https://github.com/hyperf/hyperf/issues",
  1809. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1810. "source": "https://github.com/hyperf/hyperf"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1815. "type": "custom"
  1816. },
  1817. {
  1818. "url": "https://opencollective.com/hyperf",
  1819. "type": "open_collective"
  1820. }
  1821. ],
  1822. "time": "2024-03-23T11:28:51+00:00"
  1823. },
  1824. {
  1825. "name": "hyperf/database",
  1826. "version": "v3.1.24",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/hyperf/database.git",
  1830. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1835. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "hyperf/code-parser": "~3.1.0",
  1840. "hyperf/collection": "~3.1.0",
  1841. "hyperf/macroable": "~3.1.0",
  1842. "hyperf/support": "~3.1.0",
  1843. "hyperf/tappable": "~3.1.0",
  1844. "hyperf/utils": "~3.1.0",
  1845. "nesbot/carbon": "^2.0",
  1846. "php": ">=8.1",
  1847. "psr/container": "^1.0|^2.0",
  1848. "psr/event-dispatcher": "^1.0"
  1849. },
  1850. "suggest": {
  1851. "doctrine/dbal": "Required to rename columns (^3.0).",
  1852. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1853. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "3.1-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Hyperf\\Database\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "A flexible database library.",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "database",
  1874. "hyperf",
  1875. "php"
  1876. ],
  1877. "support": {
  1878. "docs": "https://hyperf.wiki",
  1879. "issues": "https://github.com/hyperf/hyperf/issues",
  1880. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1881. "source": "https://github.com/hyperf/hyperf"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1886. "type": "custom"
  1887. },
  1888. {
  1889. "url": "https://opencollective.com/hyperf",
  1890. "type": "open_collective"
  1891. }
  1892. ],
  1893. "time": "2024-05-24T06:14:27+00:00"
  1894. },
  1895. {
  1896. "name": "hyperf/db-connection",
  1897. "version": "v3.1.15",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/hyperf/db-connection.git",
  1901. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  1906. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "hyperf/database": "~3.1.0",
  1911. "hyperf/di": "~3.1.0",
  1912. "hyperf/framework": "~3.1.0",
  1913. "hyperf/model-listener": "~3.1.0",
  1914. "hyperf/pool": "~3.1.0",
  1915. "hyperf/support": "~3.1.0",
  1916. "hyperf/utils": "~3.1.0",
  1917. "php": ">=8.1",
  1918. "psr/container": "^1.0|^2.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "3.1-dev"
  1924. },
  1925. "hyperf": {
  1926. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Hyperf\\DbConnection\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "description": "A hyperf db connection handler for hyperf/database.",
  1939. "homepage": "https://hyperf.io",
  1940. "keywords": [
  1941. "Connection",
  1942. "database",
  1943. "hyperf",
  1944. "php"
  1945. ],
  1946. "support": {
  1947. "docs": "https://hyperf.wiki",
  1948. "issues": "https://github.com/hyperf/hyperf/issues",
  1949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1950. "source": "https://github.com/hyperf/hyperf"
  1951. },
  1952. "funding": [
  1953. {
  1954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1955. "type": "custom"
  1956. },
  1957. {
  1958. "url": "https://opencollective.com/hyperf",
  1959. "type": "open_collective"
  1960. }
  1961. ],
  1962. "time": "2024-03-23T11:28:51+00:00"
  1963. },
  1964. {
  1965. "name": "hyperf/di",
  1966. "version": "v3.1.15",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/hyperf/di.git",
  1970. "reference": "681120f158739bde07dc5c761e11be56e8d07109"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/hyperf/di/zipball/681120f158739bde07dc5c761e11be56e8d07109",
  1975. "reference": "681120f158739bde07dc5c761e11be56e8d07109",
  1976. "shasum": "",
  1977. "mirrors": [
  1978. {
  1979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1980. "preferred": true
  1981. }
  1982. ]
  1983. },
  1984. "require": {
  1985. "doctrine/instantiator": "^1.0",
  1986. "hyperf/code-parser": "~3.1.0",
  1987. "hyperf/pipeline": "~3.1.0",
  1988. "hyperf/stdlib": "~3.1.0",
  1989. "hyperf/support": "~3.1.0",
  1990. "nikic/php-parser": "^4.1",
  1991. "php": ">=8.1",
  1992. "php-di/phpdoc-reader": "^2.2",
  1993. "psr/container": "^1.0|^2.0",
  1994. "symfony/finder": "^5.0|^6.0|^7.0",
  1995. "vlucas/phpdotenv": "^5.0"
  1996. },
  1997. "suggest": {
  1998. "ext-pcntl": "Required to scan annotations.",
  1999. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2000. },
  2001. "type": "library",
  2002. "extra": {
  2003. "branch-alias": {
  2004. "dev-master": "3.1-dev"
  2005. },
  2006. "hyperf": {
  2007. "config": "Hyperf\\Di\\ConfigProvider"
  2008. }
  2009. },
  2010. "autoload": {
  2011. "psr-4": {
  2012. "Hyperf\\Di\\": "src/"
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "description": "A DI for Hyperf.",
  2020. "homepage": "https://hyperf.io",
  2021. "keywords": [
  2022. "annotation",
  2023. "di",
  2024. "hyperf",
  2025. "php",
  2026. "swoole"
  2027. ],
  2028. "support": {
  2029. "docs": "https://hyperf.wiki",
  2030. "issues": "https://github.com/hyperf/hyperf/issues",
  2031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2032. "source": "https://github.com/hyperf/hyperf"
  2033. },
  2034. "funding": [
  2035. {
  2036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2037. "type": "custom"
  2038. },
  2039. {
  2040. "url": "https://opencollective.com/hyperf",
  2041. "type": "open_collective"
  2042. }
  2043. ],
  2044. "time": "2024-03-23T11:28:51+00:00"
  2045. },
  2046. {
  2047. "name": "hyperf/dispatcher",
  2048. "version": "v3.1.15",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/hyperf/dispatcher.git",
  2052. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2057. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "hyperf/contract": "~3.1.0",
  2062. "php": ">=8.1",
  2063. "psr/container": "^1.0|^2.0",
  2064. "psr/http-message": "^1.0|^2.0",
  2065. "psr/http-server-middleware": "^1.0"
  2066. },
  2067. "type": "library",
  2068. "extra": {
  2069. "branch-alias": {
  2070. "dev-master": "3.1-dev"
  2071. },
  2072. "hyperf": {
  2073. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "Hyperf\\Dispatcher\\": "src/"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "description": "A HTTP Server for Hyperf.",
  2086. "homepage": "https://hyperf.io",
  2087. "keywords": [
  2088. "dispatcher",
  2089. "filter",
  2090. "hyperf",
  2091. "middleware",
  2092. "php",
  2093. "swoole"
  2094. ],
  2095. "support": {
  2096. "docs": "https://hyperf.wiki",
  2097. "issues": "https://github.com/hyperf/hyperf/issues",
  2098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2099. "source": "https://github.com/hyperf/hyperf"
  2100. },
  2101. "funding": [
  2102. {
  2103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2104. "type": "custom"
  2105. },
  2106. {
  2107. "url": "https://opencollective.com/hyperf",
  2108. "type": "open_collective"
  2109. }
  2110. ],
  2111. "time": "2024-03-23T11:28:51+00:00"
  2112. },
  2113. {
  2114. "name": "hyperf/engine",
  2115. "version": "v2.11.0",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/hyperf/engine.git",
  2119. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2124. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "hyperf/engine-contract": "~1.10.0",
  2129. "php": ">=8.0"
  2130. },
  2131. "conflict": {
  2132. "ext-swoole": "<5.0"
  2133. },
  2134. "require-dev": {
  2135. "friendsofphp/php-cs-fixer": "^3.0",
  2136. "hyperf/guzzle": "^3.0",
  2137. "hyperf/http-message": "^3.0",
  2138. "mockery/mockery": "^1.5",
  2139. "phpstan/phpstan": "^1.0",
  2140. "phpunit/phpunit": "^9.4",
  2141. "swoole/ide-helper": "5.*"
  2142. },
  2143. "suggest": {
  2144. "ext-sockets": "*",
  2145. "ext-swoole": ">=5.0",
  2146. "hyperf/http-message": "Required to use ResponseEmitter.",
  2147. "psr/http-message": "Required to use WebSocket Frame."
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "2.11-dev"
  2153. },
  2154. "hyperf": {
  2155. "config": "Hyperf\\Engine\\ConfigProvider"
  2156. }
  2157. },
  2158. "autoload": {
  2159. "files": [
  2160. "src/Functions.php"
  2161. ],
  2162. "psr-4": {
  2163. "Hyperf\\Engine\\": "src/"
  2164. }
  2165. },
  2166. "notification-url": "https://packagist.org/downloads/",
  2167. "license": [
  2168. "MIT"
  2169. ],
  2170. "description": "Coroutine engine provided by swoole.",
  2171. "keywords": [
  2172. "engine",
  2173. "hyperf",
  2174. "php",
  2175. "swoole"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/hyperf/engine/issues",
  2179. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2180. },
  2181. "funding": [
  2182. {
  2183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2184. "type": "custom"
  2185. },
  2186. {
  2187. "url": "https://opencollective.com/hyperf",
  2188. "type": "open_collective"
  2189. }
  2190. ],
  2191. "time": "2024-04-17T13:36:28+00:00"
  2192. },
  2193. {
  2194. "name": "hyperf/engine-contract",
  2195. "version": "v1.10.1",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/hyperf/engine-contract.git",
  2199. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2204. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=8.0"
  2209. },
  2210. "require-dev": {
  2211. "friendsofphp/php-cs-fixer": "^3.0",
  2212. "mockery/mockery": "^1.0",
  2213. "phpstan/phpstan": "^1.0",
  2214. "phpunit/phpunit": ">=7.0",
  2215. "psr/http-message": "^1.0",
  2216. "swoole/ide-helper": "^4.5"
  2217. },
  2218. "suggest": {
  2219. "psr/http-message": "Required to use WebSocket Frame."
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "1.9-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "psr-4": {
  2229. "Hyperf\\Engine\\Contract\\": "src/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "description": "Contract for Coroutine Engine",
  2237. "keywords": [
  2238. "contract",
  2239. "coroutine",
  2240. "engine",
  2241. "hyperf",
  2242. "php"
  2243. ],
  2244. "support": {
  2245. "issues": "https://github.com/hyperf/engine-contract/issues",
  2246. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2247. },
  2248. "funding": [
  2249. {
  2250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2251. "type": "custom"
  2252. },
  2253. {
  2254. "url": "https://opencollective.com/hyperf",
  2255. "type": "open_collective"
  2256. }
  2257. ],
  2258. "time": "2024-04-17T13:34:51+00:00"
  2259. },
  2260. {
  2261. "name": "hyperf/event",
  2262. "version": "v3.1.15",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://github.com/hyperf/event.git",
  2266. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2271. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2272. "shasum": ""
  2273. },
  2274. "require": {
  2275. "hyperf/contract": "~3.1.0",
  2276. "hyperf/stdlib": "~3.1.0",
  2277. "php": ">=8.1",
  2278. "psr/event-dispatcher": "^1.0"
  2279. },
  2280. "suggest": {
  2281. "hyperf/di": "Required to use annotatioins."
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "3.1-dev"
  2287. },
  2288. "hyperf": {
  2289. "config": "Hyperf\\Event\\ConfigProvider"
  2290. }
  2291. },
  2292. "autoload": {
  2293. "psr-4": {
  2294. "Hyperf\\Event\\": "src/"
  2295. }
  2296. },
  2297. "notification-url": "https://packagist.org/downloads/",
  2298. "license": [
  2299. "MIT"
  2300. ],
  2301. "description": "an event manager that implements PSR-14.",
  2302. "homepage": "https://hyperf.io",
  2303. "keywords": [
  2304. "event",
  2305. "hyperf",
  2306. "php",
  2307. "swoole"
  2308. ],
  2309. "support": {
  2310. "docs": "https://hyperf.wiki",
  2311. "issues": "https://github.com/hyperf/hyperf/issues",
  2312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2313. "source": "https://github.com/hyperf/hyperf"
  2314. },
  2315. "funding": [
  2316. {
  2317. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2318. "type": "custom"
  2319. },
  2320. {
  2321. "url": "https://opencollective.com/hyperf",
  2322. "type": "open_collective"
  2323. }
  2324. ],
  2325. "time": "2024-03-23T11:28:51+00:00"
  2326. },
  2327. {
  2328. "name": "hyperf/exception-handler",
  2329. "version": "v3.1.22",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/hyperf/exception-handler.git",
  2333. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2338. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "hyperf/context": "~3.1.0",
  2343. "hyperf/contract": "~3.1.0",
  2344. "hyperf/dispatcher": "~3.1.0",
  2345. "hyperf/http-message": "~3.1.0",
  2346. "hyperf/stdlib": "~3.1.0",
  2347. "hyperf/support": "~3.1.0",
  2348. "php": ">=8.1",
  2349. "psr/container": "^1.0|^2.0",
  2350. "psr/http-message": "^1.0|^2.0",
  2351. "swow/psr7-plus": "^1.0"
  2352. },
  2353. "suggest": {
  2354. "hyperf/di": "Required to use #[ExceptionHandler]",
  2355. "hyperf/event": "Required to use listeners",
  2356. "hyperf/framework": "Required to use listeners",
  2357. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2358. },
  2359. "type": "library",
  2360. "extra": {
  2361. "branch-alias": {
  2362. "dev-master": "3.1-dev"
  2363. },
  2364. "hyperf": {
  2365. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2366. }
  2367. },
  2368. "autoload": {
  2369. "psr-4": {
  2370. "Hyperf\\ExceptionHandler\\": "src/"
  2371. }
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "MIT"
  2376. ],
  2377. "description": "Exception handler for hyperf",
  2378. "homepage": "https://hyperf.io",
  2379. "keywords": [
  2380. "exception-handler",
  2381. "php",
  2382. "swoole"
  2383. ],
  2384. "support": {
  2385. "docs": "https://hyperf.wiki",
  2386. "issues": "https://github.com/hyperf/hyperf/issues",
  2387. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2388. "source": "https://github.com/hyperf/hyperf"
  2389. },
  2390. "funding": [
  2391. {
  2392. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://opencollective.com/hyperf",
  2397. "type": "open_collective"
  2398. }
  2399. ],
  2400. "time": "2024-05-15T07:12:41+00:00"
  2401. },
  2402. {
  2403. "name": "hyperf/framework",
  2404. "version": "v3.1.23",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/hyperf/framework.git",
  2408. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2413. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "fig/http-message-util": "^1.1.2",
  2418. "hyperf/contract": "~3.1.0",
  2419. "hyperf/coordinator": "~3.1.0",
  2420. "hyperf/coroutine": "~3.1.0",
  2421. "php": ">=8.1",
  2422. "psr/container": "^1.0|^2.0",
  2423. "psr/event-dispatcher": "^1.0",
  2424. "psr/log": "^1.0|^2.0|^3.0"
  2425. },
  2426. "suggest": {
  2427. "ext-swoole": "Required to use swoole engine.",
  2428. "hyperf/command": "Required to use Command annotation.",
  2429. "hyperf/di": "Required to use Command annotation.",
  2430. "hyperf/dispatcher": "Required to use BootApplication event.",
  2431. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "branch-alias": {
  2436. "dev-master": "3.1-dev"
  2437. },
  2438. "hyperf": {
  2439. "config": "Hyperf\\Framework\\ConfigProvider"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Hyperf\\Framework\\": "src/"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2452. "homepage": "https://hyperf.io",
  2453. "keywords": [
  2454. "Microservice",
  2455. "framework",
  2456. "hyperf",
  2457. "middleware",
  2458. "php",
  2459. "swoole"
  2460. ],
  2461. "support": {
  2462. "docs": "https://hyperf.wiki",
  2463. "issues": "https://github.com/hyperf/hyperf/issues",
  2464. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2465. "source": "https://github.com/hyperf/hyperf"
  2466. },
  2467. "funding": [
  2468. {
  2469. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2470. "type": "custom"
  2471. },
  2472. {
  2473. "url": "https://opencollective.com/hyperf",
  2474. "type": "open_collective"
  2475. }
  2476. ],
  2477. "time": "2024-05-21T05:43:48+00:00"
  2478. },
  2479. {
  2480. "name": "hyperf/guzzle",
  2481. "version": "v3.1.15",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/hyperf/guzzle.git",
  2485. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2490. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "guzzlehttp/guzzle": "^6.3|^7.0",
  2495. "php": ">=8.1",
  2496. "psr/container": "^1.0|^2.0",
  2497. "psr/http-message": "^1.0|^2.0"
  2498. },
  2499. "suggest": {
  2500. "ext-curl": "Required for CURL handler support",
  2501. "hyperf/pool": "Required to use pool handler."
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "3.1-dev"
  2507. },
  2508. "hyperf": {
  2509. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Hyperf\\Guzzle\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "Swoole coroutine handler for guzzle",
  2522. "keywords": [
  2523. "Guzzle",
  2524. "handler",
  2525. "php",
  2526. "swoole"
  2527. ],
  2528. "support": {
  2529. "issues": "https://github.com/hyperf/guzzle/issues",
  2530. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2531. },
  2532. "funding": [
  2533. {
  2534. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2535. "type": "custom"
  2536. },
  2537. {
  2538. "url": "https://opencollective.com/hyperf",
  2539. "type": "open_collective"
  2540. }
  2541. ],
  2542. "time": "2024-03-23T11:28:51+00:00"
  2543. },
  2544. {
  2545. "name": "hyperf/http-message",
  2546. "version": "v3.1.19",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/hyperf/http-message.git",
  2550. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2555. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "hyperf/codec": "~3.1.0",
  2560. "hyperf/engine": "^2.11",
  2561. "hyperf/support": "~3.1.0",
  2562. "laminas/laminas-mime": "^2.7",
  2563. "php": ">=8.1",
  2564. "psr/http-message": "^1.0|^2.0",
  2565. "swow/psr7-plus": "^1.0"
  2566. },
  2567. "suggest": {
  2568. "psr/container": "Required to replace RequestParserInterface."
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-master": "3.1-dev"
  2574. },
  2575. "hyperf": {
  2576. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2577. }
  2578. },
  2579. "autoload": {
  2580. "psr-4": {
  2581. "Hyperf\\HttpMessage\\": "src/"
  2582. }
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "MIT"
  2587. ],
  2588. "description": "microservice framework base on swoole",
  2589. "keywords": [
  2590. "http-message",
  2591. "hyperf",
  2592. "php",
  2593. "swoole"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/hyperf/http-message/issues",
  2597. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2598. },
  2599. "funding": [
  2600. {
  2601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2602. "type": "custom"
  2603. },
  2604. {
  2605. "url": "https://opencollective.com/hyperf",
  2606. "type": "open_collective"
  2607. }
  2608. ],
  2609. "time": "2024-04-17T13:55:51+00:00"
  2610. },
  2611. {
  2612. "name": "hyperf/http-server",
  2613. "version": "v3.1.17",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/hyperf/http-server.git",
  2617. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2622. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "hyperf/codec": "~3.1.0",
  2627. "hyperf/collection": "~3.1.0",
  2628. "hyperf/context": "~3.1.0",
  2629. "hyperf/contract": "~3.1.0",
  2630. "hyperf/coroutine": "~3.1.0",
  2631. "hyperf/dispatcher": "~3.1.0",
  2632. "hyperf/event": "~3.1.0",
  2633. "hyperf/exception-handler": "~3.1.0",
  2634. "hyperf/http-message": "~3.1.0",
  2635. "hyperf/macroable": "~3.1.0",
  2636. "hyperf/serializer": "~3.1.0",
  2637. "hyperf/server": "~3.1.0",
  2638. "hyperf/stdlib": "~3.1.0",
  2639. "hyperf/support": "~3.1.0",
  2640. "nikic/fast-route": "^1.3",
  2641. "php": ">=8.1",
  2642. "psr/container": "^1.0|^2.0",
  2643. "swow/psr7-plus": "^1.0"
  2644. },
  2645. "suggest": {
  2646. "hyperf/di": "Required to use annotations."
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "branch-alias": {
  2651. "dev-master": "3.1-dev"
  2652. },
  2653. "hyperf": {
  2654. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Hyperf\\HttpServer\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "description": "A HTTP Server for Hyperf.",
  2667. "homepage": "https://hyperf.io",
  2668. "keywords": [
  2669. "http",
  2670. "http-server",
  2671. "hyperf",
  2672. "php",
  2673. "swoole"
  2674. ],
  2675. "support": {
  2676. "docs": "https://hyperf.wiki",
  2677. "issues": "https://github.com/hyperf/hyperf/issues",
  2678. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2679. "source": "https://github.com/hyperf/hyperf"
  2680. },
  2681. "funding": [
  2682. {
  2683. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2684. "type": "custom"
  2685. },
  2686. {
  2687. "url": "https://opencollective.com/hyperf",
  2688. "type": "open_collective"
  2689. }
  2690. ],
  2691. "time": "2024-04-08T07:53:54+00:00"
  2692. },
  2693. {
  2694. "name": "hyperf/json-rpc",
  2695. "version": "v3.1.23",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/hyperf/json-rpc.git",
  2699. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2704. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "hyperf/codec": "~3.1.0",
  2709. "hyperf/context": "~3.1.0",
  2710. "hyperf/contract": "~3.1.0",
  2711. "hyperf/engine": "^2.0",
  2712. "hyperf/http-message": "~3.1.0",
  2713. "hyperf/load-balancer": "~3.1.0",
  2714. "hyperf/rpc": "~3.1.0",
  2715. "hyperf/serializer": "~3.1.0",
  2716. "hyperf/support": "~3.1.0",
  2717. "hyperf/utils": "~3.1.0",
  2718. "php": ">=8.1",
  2719. "psr/container": "^1.0|^2.0",
  2720. "swow/psr7-plus": "^1.0"
  2721. },
  2722. "suggest": {
  2723. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2724. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2725. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2726. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2727. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "branch-alias": {
  2732. "dev-master": "3.1-dev"
  2733. },
  2734. "hyperf": {
  2735. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Hyperf\\JsonRpc\\": "src/"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2748. "homepage": "https://hyperf.io",
  2749. "keywords": [
  2750. "hyperf",
  2751. "json-rpc",
  2752. "php",
  2753. "swoole"
  2754. ],
  2755. "support": {
  2756. "docs": "https://hyperf.wiki",
  2757. "issues": "https://github.com/hyperf/hyperf/issues",
  2758. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2759. "source": "https://github.com/hyperf/hyperf"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2764. "type": "custom"
  2765. },
  2766. {
  2767. "url": "https://opencollective.com/hyperf",
  2768. "type": "open_collective"
  2769. }
  2770. ],
  2771. "time": "2024-05-23T03:43:58+00:00"
  2772. },
  2773. {
  2774. "name": "hyperf/load-balancer",
  2775. "version": "v3.1.15",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/hyperf/load-balancer.git",
  2779. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2784. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "hyperf/coordinator": "~3.1.0",
  2789. "hyperf/coroutine": "~3.1.0",
  2790. "markrogoyski/math-php": "^2.0",
  2791. "php": ">=8.1",
  2792. "psr/log": "^1.0|^2.0|^3.0"
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-master": "3.1-dev"
  2798. },
  2799. "hyperf": {
  2800. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "Hyperf\\LoadBalancer\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A load balancer library for Hyperf.",
  2813. "homepage": "https://hyperf.io",
  2814. "keywords": [
  2815. "hyperf",
  2816. "load-balancer",
  2817. "php",
  2818. "swoole"
  2819. ],
  2820. "support": {
  2821. "docs": "https://hyperf.wiki",
  2822. "issues": "https://github.com/hyperf/hyperf/issues",
  2823. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2824. "source": "https://github.com/hyperf/hyperf"
  2825. },
  2826. "funding": [
  2827. {
  2828. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2829. "type": "custom"
  2830. },
  2831. {
  2832. "url": "https://opencollective.com/hyperf",
  2833. "type": "open_collective"
  2834. }
  2835. ],
  2836. "time": "2024-03-23T11:28:51+00:00"
  2837. },
  2838. {
  2839. "name": "hyperf/logger",
  2840. "version": "v3.1.15",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/hyperf/logger.git",
  2844. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2849. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "hyperf/contract": "~3.1.0",
  2854. "hyperf/support": "~3.1.0",
  2855. "hyperf/utils": "~3.1.0",
  2856. "monolog/monolog": "^2.7|^3.1",
  2857. "php": ">=8.1",
  2858. "psr/container": "^1.0|^2.0",
  2859. "psr/log": "^1.0|^2.0|^3.0"
  2860. },
  2861. "type": "library",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-master": "3.1-dev"
  2865. },
  2866. "hyperf": {
  2867. "config": "Hyperf\\Logger\\ConfigProvider"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Hyperf\\Logger\\": "src/"
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "MIT"
  2878. ],
  2879. "description": "A logger component for hyperf.",
  2880. "homepage": "https://hyperf.io",
  2881. "keywords": [
  2882. "hyperf",
  2883. "logger",
  2884. "php"
  2885. ],
  2886. "support": {
  2887. "docs": "https://hyperf.wiki",
  2888. "issues": "https://github.com/hyperf/hyperf/issues",
  2889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2890. "source": "https://github.com/hyperf/hyperf"
  2891. },
  2892. "funding": [
  2893. {
  2894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2895. "type": "custom"
  2896. },
  2897. {
  2898. "url": "https://opencollective.com/hyperf",
  2899. "type": "open_collective"
  2900. }
  2901. ],
  2902. "time": "2024-03-23T11:28:51+00:00"
  2903. },
  2904. {
  2905. "name": "hyperf/macroable",
  2906. "version": "v3.1.23",
  2907. "source": {
  2908. "type": "git",
  2909. "url": "https://github.com/hyperf/macroable.git",
  2910. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  2911. },
  2912. "dist": {
  2913. "type": "zip",
  2914. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2915. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2916. "shasum": ""
  2917. },
  2918. "require": {
  2919. "php": ">=8.1"
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "3.1-dev"
  2925. }
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "Hyperf\\Macroable\\": "src/"
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2937. "homepage": "https://hyperf.io",
  2938. "keywords": [
  2939. "hyperf",
  2940. "macroable",
  2941. "php",
  2942. "swoole"
  2943. ],
  2944. "support": {
  2945. "docs": "https://hyperf.wiki",
  2946. "issues": "https://github.com/hyperf/hyperf/issues",
  2947. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2948. "source": "https://github.com/hyperf/hyperf"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2953. "type": "custom"
  2954. },
  2955. {
  2956. "url": "https://opencollective.com/hyperf",
  2957. "type": "open_collective"
  2958. }
  2959. ],
  2960. "time": "2024-05-20T09:55:40+00:00"
  2961. },
  2962. {
  2963. "name": "hyperf/memory",
  2964. "version": "v3.1.15",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/hyperf/memory.git",
  2968. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  2973. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "php": ">=8.1"
  2978. },
  2979. "type": "library",
  2980. "extra": {
  2981. "branch-alias": {
  2982. "dev-master": "3.1-dev"
  2983. },
  2984. "hyperf": {
  2985. "config": "Hyperf\\Memory\\ConfigProvider"
  2986. }
  2987. },
  2988. "autoload": {
  2989. "psr-4": {
  2990. "Hyperf\\Memory\\": "src/"
  2991. }
  2992. },
  2993. "notification-url": "https://packagist.org/downloads/",
  2994. "license": [
  2995. "MIT"
  2996. ],
  2997. "description": "An independent component that use to operate and manage memory.",
  2998. "homepage": "https://hyperf.io",
  2999. "keywords": [
  3000. "hyperf",
  3001. "memory",
  3002. "php",
  3003. "swoole"
  3004. ],
  3005. "support": {
  3006. "docs": "https://hyperf.wiki",
  3007. "issues": "https://github.com/hyperf/hyperf/issues",
  3008. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3009. "source": "https://github.com/hyperf/hyperf"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3014. "type": "custom"
  3015. },
  3016. {
  3017. "url": "https://opencollective.com/hyperf",
  3018. "type": "open_collective"
  3019. }
  3020. ],
  3021. "time": "2024-03-23T11:28:51+00:00"
  3022. },
  3023. {
  3024. "name": "hyperf/model-listener",
  3025. "version": "v3.1.15",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/hyperf/model-listener.git",
  3029. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3034. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "hyperf/contract": "~3.1.0",
  3039. "hyperf/database": "~3.1.0",
  3040. "hyperf/di": "~3.1.0",
  3041. "hyperf/event": "~3.1.0",
  3042. "hyperf/support": "~3.1.0",
  3043. "hyperf/utils": "~3.1.0",
  3044. "php": ">=8.1",
  3045. "psr/container": "^1.0|^2.0"
  3046. },
  3047. "type": "library",
  3048. "extra": {
  3049. "branch-alias": {
  3050. "dev-master": "3.1-dev"
  3051. },
  3052. "hyperf": {
  3053. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3054. }
  3055. },
  3056. "autoload": {
  3057. "psr-4": {
  3058. "Hyperf\\ModelListener\\": "src/"
  3059. }
  3060. },
  3061. "notification-url": "https://packagist.org/downloads/",
  3062. "license": [
  3063. "MIT"
  3064. ],
  3065. "description": "A model listener for Hyperf.",
  3066. "homepage": "https://hyperf.io",
  3067. "keywords": [
  3068. "hyperf",
  3069. "model-listener",
  3070. "php",
  3071. "swoole"
  3072. ],
  3073. "support": {
  3074. "docs": "https://hyperf.wiki",
  3075. "issues": "https://github.com/hyperf/hyperf/issues",
  3076. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3077. "source": "https://github.com/hyperf/hyperf"
  3078. },
  3079. "funding": [
  3080. {
  3081. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3082. "type": "custom"
  3083. },
  3084. {
  3085. "url": "https://opencollective.com/hyperf",
  3086. "type": "open_collective"
  3087. }
  3088. ],
  3089. "time": "2024-03-23T11:28:51+00:00"
  3090. },
  3091. {
  3092. "name": "hyperf/nacos",
  3093. "version": "v3.1.15",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/hyperf/nacos.git",
  3097. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3102. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3103. "shasum": ""
  3104. },
  3105. "require": {
  3106. "guzzlehttp/guzzle": "^6.5|^7.0",
  3107. "hyperf/codec": "~3.1.0",
  3108. "hyperf/contract": "~3.1.0",
  3109. "hyperf/support": "~3.1.0",
  3110. "hyperf/utils": "~3.1.0",
  3111. "jetbrains/phpstorm-attributes": "^1.0",
  3112. "php": ">=8.1"
  3113. },
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "3.1-dev"
  3118. },
  3119. "hyperf": {
  3120. "config": "Hyperf\\Nacos\\ConfigProvider"
  3121. }
  3122. },
  3123. "autoload": {
  3124. "psr-4": {
  3125. "Hyperf\\Nacos\\": "src/"
  3126. }
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "description": "Nacos SDK",
  3133. "keywords": [
  3134. "hyperf",
  3135. "nacos",
  3136. "php"
  3137. ],
  3138. "support": {
  3139. "issues": "https://github.com/hyperf/nacos/issues",
  3140. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3141. },
  3142. "funding": [
  3143. {
  3144. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3145. "type": "custom"
  3146. },
  3147. {
  3148. "url": "https://opencollective.com/hyperf",
  3149. "type": "open_collective"
  3150. }
  3151. ],
  3152. "time": "2024-03-23T11:28:51+00:00"
  3153. },
  3154. {
  3155. "name": "hyperf/paginator",
  3156. "version": "v3.1.42",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/hyperf/paginator.git",
  3160. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3165. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "hyperf/contract": "~3.1.0",
  3170. "hyperf/support": "~3.1.0",
  3171. "hyperf/utils": "~3.1.0",
  3172. "php": ">=8.1"
  3173. },
  3174. "suggest": {
  3175. "hyperf/event": "Reqiured to use PageResolverListener.",
  3176. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3177. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "branch-alias": {
  3182. "dev-master": "3.1-dev"
  3183. },
  3184. "hyperf": {
  3185. "config": "Hyperf\\Paginator\\ConfigProvider"
  3186. }
  3187. },
  3188. "autoload": {
  3189. "psr-4": {
  3190. "Hyperf\\Paginator\\": "src/"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "MIT"
  3196. ],
  3197. "description": "A paginator component for hyperf.",
  3198. "homepage": "https://hyperf.io",
  3199. "keywords": [
  3200. "hyperf",
  3201. "paginator",
  3202. "php"
  3203. ],
  3204. "support": {
  3205. "docs": "https://hyperf.wiki",
  3206. "issues": "https://github.com/hyperf/hyperf/issues",
  3207. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3208. "source": "https://github.com/hyperf/hyperf"
  3209. },
  3210. "funding": [
  3211. {
  3212. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3213. "type": "custom"
  3214. },
  3215. {
  3216. "url": "https://opencollective.com/hyperf",
  3217. "type": "open_collective"
  3218. }
  3219. ],
  3220. "time": "2024-09-25T02:54:12+00:00"
  3221. },
  3222. {
  3223. "name": "hyperf/pipeline",
  3224. "version": "v3.1.15",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/hyperf/pipeline.git",
  3228. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3233. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=8.1",
  3238. "psr/container": "^1.0|^2.0"
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "3.1-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Hyperf\\Pipeline\\": "src/"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3256. "homepage": "https://hyperf.io",
  3257. "keywords": [
  3258. "hyperf",
  3259. "php",
  3260. "pipeline",
  3261. "swoole"
  3262. ],
  3263. "support": {
  3264. "docs": "https://hyperf.wiki",
  3265. "issues": "https://github.com/hyperf/hyperf/issues",
  3266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3267. "source": "https://github.com/hyperf/hyperf"
  3268. },
  3269. "funding": [
  3270. {
  3271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3272. "type": "custom"
  3273. },
  3274. {
  3275. "url": "https://opencollective.com/hyperf",
  3276. "type": "open_collective"
  3277. }
  3278. ],
  3279. "time": "2024-03-23T11:28:51+00:00"
  3280. },
  3281. {
  3282. "name": "hyperf/pool",
  3283. "version": "v3.1.15",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/hyperf/pool.git",
  3287. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3292. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "hyperf/contract": "~3.1.0",
  3297. "hyperf/support": "~3.1.0",
  3298. "hyperf/utils": "~3.1.0",
  3299. "php": ">=8.1",
  3300. "psr/container": "^1.0|^2.0"
  3301. },
  3302. "suggest": {
  3303. "psr/event-dispatcher": "Required to use events."
  3304. },
  3305. "type": "library",
  3306. "extra": {
  3307. "branch-alias": {
  3308. "dev-master": "3.1-dev"
  3309. },
  3310. "hyperf": {
  3311. "config": "Hyperf\\Pool\\ConfigProvider"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Hyperf\\Pool\\": "src/"
  3317. }
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "description": "An independent universal connection pool component.",
  3324. "homepage": "https://hyperf.io",
  3325. "keywords": [
  3326. "connection-pool",
  3327. "hyperf",
  3328. "php",
  3329. "swoole"
  3330. ],
  3331. "support": {
  3332. "docs": "https://hyperf.wiki",
  3333. "issues": "https://github.com/hyperf/hyperf/issues",
  3334. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3335. "source": "https://github.com/hyperf/hyperf"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://opencollective.com/hyperf",
  3344. "type": "open_collective"
  3345. }
  3346. ],
  3347. "time": "2024-03-23T11:28:51+00:00"
  3348. },
  3349. {
  3350. "name": "hyperf/process",
  3351. "version": "v3.1.15",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/hyperf/process.git",
  3355. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3360. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "hyperf/contract": "~3.1.0",
  3365. "hyperf/support": "~3.1.0",
  3366. "hyperf/utils": "~3.1.0",
  3367. "php": ">=8.1",
  3368. "psr/container": "^1.0|^2.0",
  3369. "psr/event-dispatcher": "^1.0"
  3370. },
  3371. "suggest": {
  3372. "hyperf/di": "Required to use annotations.",
  3373. "hyperf/event": "Required to dump the message before and after process.",
  3374. "hyperf/framework": "Required to use BootProcessListener."
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "branch-alias": {
  3379. "dev-master": "3.1-dev"
  3380. },
  3381. "hyperf": {
  3382. "config": "Hyperf\\Process\\ConfigProvider"
  3383. }
  3384. },
  3385. "autoload": {
  3386. "psr-4": {
  3387. "Hyperf\\Process\\": "src/"
  3388. }
  3389. },
  3390. "notification-url": "https://packagist.org/downloads/",
  3391. "license": [
  3392. "MIT"
  3393. ],
  3394. "description": "A process component for hyperf.",
  3395. "homepage": "https://hyperf.io",
  3396. "keywords": [
  3397. "hyperf",
  3398. "php",
  3399. "process"
  3400. ],
  3401. "support": {
  3402. "docs": "https://hyperf.wiki",
  3403. "issues": "https://github.com/hyperf/hyperf/issues",
  3404. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3405. "source": "https://github.com/hyperf/hyperf"
  3406. },
  3407. "funding": [
  3408. {
  3409. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3410. "type": "custom"
  3411. },
  3412. {
  3413. "url": "https://opencollective.com/hyperf",
  3414. "type": "open_collective"
  3415. }
  3416. ],
  3417. "time": "2024-03-23T11:28:51+00:00"
  3418. },
  3419. {
  3420. "name": "hyperf/redis",
  3421. "version": "v3.1.27",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/hyperf/redis.git",
  3425. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/hyperf/redis/zipball/535f5f107b6d531b56fabe017a5f544cc53fc194",
  3430. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194",
  3431. "shasum": "",
  3432. "mirrors": [
  3433. {
  3434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3435. "preferred": true
  3436. }
  3437. ]
  3438. },
  3439. "require": {
  3440. "ext-redis": "^5.0 || ^6.0",
  3441. "hyperf/contract": "~3.1.0",
  3442. "hyperf/pool": "~3.1.0",
  3443. "hyperf/support": "~3.1.0",
  3444. "hyperf/tappable": "~3.1.0",
  3445. "hyperf/utils": "~3.1.0",
  3446. "php": ">=8.1",
  3447. "psr/container": "^1.0 || ^2.0"
  3448. },
  3449. "suggest": {
  3450. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3451. "hyperf/di": "Create the RedisPool via dependency injection."
  3452. },
  3453. "type": "library",
  3454. "extra": {
  3455. "branch-alias": {
  3456. "dev-master": "3.1-dev"
  3457. },
  3458. "hyperf": {
  3459. "config": "Hyperf\\Redis\\ConfigProvider"
  3460. }
  3461. },
  3462. "autoload": {
  3463. "psr-4": {
  3464. "Hyperf\\Redis\\": "src/"
  3465. }
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "description": "A redis component for hyperf.",
  3472. "homepage": "https://hyperf.io",
  3473. "keywords": [
  3474. "hyperf",
  3475. "php",
  3476. "pool",
  3477. "redis"
  3478. ],
  3479. "support": {
  3480. "docs": "https://hyperf.wiki",
  3481. "issues": "https://github.com/hyperf/hyperf/issues",
  3482. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3483. "source": "https://github.com/hyperf/hyperf"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://opencollective.com/hyperf",
  3492. "type": "open_collective"
  3493. }
  3494. ],
  3495. "time": "2024-06-17T01:51:06+00:00"
  3496. },
  3497. {
  3498. "name": "hyperf/rpc",
  3499. "version": "v3.1.15",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/hyperf/rpc.git",
  3503. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3508. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "hyperf/codec": "~3.1.0",
  3513. "hyperf/contract": "~3.1.0",
  3514. "hyperf/support": "~3.1.0",
  3515. "jetbrains/phpstorm-attributes": "^1.0",
  3516. "php": ">=8.1"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "3.1-dev"
  3522. },
  3523. "hyperf": []
  3524. },
  3525. "autoload": {
  3526. "psr-4": {
  3527. "Hyperf\\Rpc\\": "src/"
  3528. }
  3529. },
  3530. "notification-url": "https://packagist.org/downloads/",
  3531. "license": [
  3532. "MIT"
  3533. ],
  3534. "description": "A rpc basic library for Hyperf.",
  3535. "homepage": "https://hyperf.io",
  3536. "keywords": [
  3537. "hyperf",
  3538. "php",
  3539. "rpc",
  3540. "swoole"
  3541. ],
  3542. "support": {
  3543. "docs": "https://hyperf.wiki",
  3544. "issues": "https://github.com/hyperf/hyperf/issues",
  3545. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3546. "source": "https://github.com/hyperf/hyperf"
  3547. },
  3548. "funding": [
  3549. {
  3550. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3551. "type": "custom"
  3552. },
  3553. {
  3554. "url": "https://opencollective.com/hyperf",
  3555. "type": "open_collective"
  3556. }
  3557. ],
  3558. "time": "2024-03-23T11:28:51+00:00"
  3559. },
  3560. {
  3561. "name": "hyperf/rpc-server",
  3562. "version": "v3.1.20",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/hyperf/rpc-server.git",
  3566. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3571. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "hyperf/http-server": "~3.1.0",
  3576. "hyperf/rpc": "~3.1.0",
  3577. "php": ">=8.1"
  3578. },
  3579. "suggest": {
  3580. "hyperf/di": "Required to use annotations."
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-master": "3.1-dev"
  3586. },
  3587. "hyperf": {
  3588. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3589. }
  3590. },
  3591. "autoload": {
  3592. "psr-4": {
  3593. "Hyperf\\RpcServer\\": "src/"
  3594. }
  3595. },
  3596. "notification-url": "https://packagist.org/downloads/",
  3597. "license": [
  3598. "MIT"
  3599. ],
  3600. "description": "An abstract rpc server component for Hyperf.",
  3601. "homepage": "https://hyperf.io",
  3602. "keywords": [
  3603. "hyperf",
  3604. "php",
  3605. "rpc",
  3606. "rpc-server",
  3607. "swoole"
  3608. ],
  3609. "support": {
  3610. "docs": "https://hyperf.wiki",
  3611. "issues": "https://github.com/hyperf/hyperf/issues",
  3612. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3613. "source": "https://github.com/hyperf/hyperf"
  3614. },
  3615. "funding": [
  3616. {
  3617. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3618. "type": "custom"
  3619. },
  3620. {
  3621. "url": "https://opencollective.com/hyperf",
  3622. "type": "open_collective"
  3623. }
  3624. ],
  3625. "time": "2024-04-22T01:46:29+00:00"
  3626. },
  3627. {
  3628. "name": "hyperf/serializer",
  3629. "version": "v3.1.23",
  3630. "source": {
  3631. "type": "git",
  3632. "url": "https://github.com/hyperf/serializer.git",
  3633. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3634. },
  3635. "dist": {
  3636. "type": "zip",
  3637. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3638. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3639. "shasum": ""
  3640. },
  3641. "require": {
  3642. "hyperf/contract": "~3.1.0",
  3643. "php": ">=8.1"
  3644. },
  3645. "suggest": {
  3646. "hyperf/di": "Required to use ExceptionNormalizer",
  3647. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3648. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-master": "3.1-dev"
  3654. },
  3655. "hyperf": {
  3656. "config": "Hyperf\\Serializer\\ConfigProvider"
  3657. }
  3658. },
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Hyperf\\Serializer\\": "src/"
  3662. }
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "MIT"
  3667. ],
  3668. "description": "A serializer component for Hyperf.",
  3669. "homepage": "https://hyperf.io",
  3670. "keywords": [
  3671. "hyperf",
  3672. "php",
  3673. "swoole",
  3674. "tappable"
  3675. ],
  3676. "support": {
  3677. "docs": "https://hyperf.wiki",
  3678. "issues": "https://github.com/hyperf/hyperf/issues",
  3679. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3680. "source": "https://github.com/hyperf/hyperf"
  3681. },
  3682. "funding": [
  3683. {
  3684. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3685. "type": "custom"
  3686. },
  3687. {
  3688. "url": "https://opencollective.com/hyperf",
  3689. "type": "open_collective"
  3690. }
  3691. ],
  3692. "time": "2024-05-23T03:43:58+00:00"
  3693. },
  3694. {
  3695. "name": "hyperf/server",
  3696. "version": "v3.1.23",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/hyperf/server.git",
  3700. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3705. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "hyperf/contract": "~3.1.0",
  3710. "hyperf/coordinator": "~3.1.0",
  3711. "hyperf/engine": "^2.8",
  3712. "hyperf/support": "~3.1.0",
  3713. "hyperf/tappable": "~3.1.0",
  3714. "php": ">=8.1",
  3715. "psr/container": "^1.0|^2.0",
  3716. "psr/event-dispatcher": "^1.0",
  3717. "psr/log": "^1.0|^2.0|^3.0",
  3718. "symfony/console": "^5.0|^6.0|^7.0"
  3719. },
  3720. "suggest": {
  3721. "hyperf/event": "Dump the info after server start.",
  3722. "hyperf/framework": "Dump the info after server start."
  3723. },
  3724. "type": "library",
  3725. "extra": {
  3726. "branch-alias": {
  3727. "dev-master": "3.1-dev"
  3728. },
  3729. "hyperf": {
  3730. "config": "Hyperf\\Server\\ConfigProvider"
  3731. }
  3732. },
  3733. "autoload": {
  3734. "psr-4": {
  3735. "Hyperf\\Server\\": "src/"
  3736. }
  3737. },
  3738. "notification-url": "https://packagist.org/downloads/",
  3739. "license": [
  3740. "MIT"
  3741. ],
  3742. "description": "A base server library for Hyperf.",
  3743. "homepage": "https://hyperf.io",
  3744. "keywords": [
  3745. "hyperf",
  3746. "php",
  3747. "server",
  3748. "swoole"
  3749. ],
  3750. "support": {
  3751. "docs": "https://hyperf.wiki",
  3752. "issues": "https://github.com/hyperf/hyperf/issues",
  3753. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3754. "source": "https://github.com/hyperf/hyperf"
  3755. },
  3756. "funding": [
  3757. {
  3758. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3759. "type": "custom"
  3760. },
  3761. {
  3762. "url": "https://opencollective.com/hyperf",
  3763. "type": "open_collective"
  3764. }
  3765. ],
  3766. "time": "2024-05-23T03:43:58+00:00"
  3767. },
  3768. {
  3769. "name": "hyperf/service-governance",
  3770. "version": "v3.1.15",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://github.com/hyperf/service-governance.git",
  3774. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3779. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3780. "shasum": ""
  3781. },
  3782. "require": {
  3783. "hyperf/contract": "~3.1.0",
  3784. "hyperf/support": "~3.1.0",
  3785. "jetbrains/phpstorm-attributes": "^1.0",
  3786. "php": ">=8.1"
  3787. },
  3788. "suggest": {
  3789. "hyperf/event": "Required to use RegisterServiceListener.",
  3790. "hyperf/framework": "Required to use RegisterServiceListener.",
  3791. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3792. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3793. },
  3794. "type": "library",
  3795. "extra": {
  3796. "branch-alias": {
  3797. "dev-master": "3.1-dev"
  3798. },
  3799. "hyperf": {
  3800. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "Hyperf\\ServiceGovernance\\": "src/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "description": "A service governance component for Hyperf.",
  3813. "homepage": "https://hyperf.io",
  3814. "keywords": [
  3815. "hyperf",
  3816. "php",
  3817. "service-governance",
  3818. "swoole"
  3819. ],
  3820. "support": {
  3821. "docs": "https://hyperf.wiki",
  3822. "issues": "https://github.com/hyperf/hyperf/issues",
  3823. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3824. "source": "https://github.com/hyperf/hyperf"
  3825. },
  3826. "funding": [
  3827. {
  3828. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3829. "type": "custom"
  3830. },
  3831. {
  3832. "url": "https://opencollective.com/hyperf",
  3833. "type": "open_collective"
  3834. }
  3835. ],
  3836. "time": "2024-03-23T11:28:51+00:00"
  3837. },
  3838. {
  3839. "name": "hyperf/service-governance-consul",
  3840. "version": "v3.1.15",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/hyperf/service-governance-consul.git",
  3844. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3849. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "hyperf/consul": "~3.1.0",
  3854. "hyperf/contract": "~3.1.0",
  3855. "hyperf/service-governance": "~3.1.0",
  3856. "hyperf/support": "~3.1.0",
  3857. "hyperf/utils": "~3.1.0",
  3858. "php": ">=8.1"
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "3.1-dev"
  3864. },
  3865. "hyperf": {
  3866. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A consul adapter for service governance.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "consul-adapter",
  3882. "hyperf",
  3883. "php",
  3884. "service-governance",
  3885. "swoole"
  3886. ],
  3887. "support": {
  3888. "docs": "https://hyperf.wiki",
  3889. "issues": "https://github.com/hyperf/hyperf/issues",
  3890. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3891. "source": "https://github.com/hyperf/hyperf"
  3892. },
  3893. "funding": [
  3894. {
  3895. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3896. "type": "custom"
  3897. },
  3898. {
  3899. "url": "https://opencollective.com/hyperf",
  3900. "type": "open_collective"
  3901. }
  3902. ],
  3903. "time": "2024-03-23T11:28:51+00:00"
  3904. },
  3905. {
  3906. "name": "hyperf/service-governance-nacos",
  3907. "version": "v3.1.15",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3911. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3916. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3917. "shasum": ""
  3918. },
  3919. "require": {
  3920. "hyperf/codec": "~3.1.0",
  3921. "hyperf/contract": "~3.1.0",
  3922. "hyperf/nacos": "~3.1.0",
  3923. "hyperf/service-governance": "~3.1.0",
  3924. "hyperf/support": "~3.1.0",
  3925. "hyperf/utils": "~3.1.0",
  3926. "php": ">=8.1"
  3927. },
  3928. "type": "library",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-master": "3.1-dev"
  3932. },
  3933. "hyperf": {
  3934. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3935. }
  3936. },
  3937. "autoload": {
  3938. "psr-4": {
  3939. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3940. }
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "MIT"
  3945. ],
  3946. "description": "A nacos adapter for service governance.",
  3947. "homepage": "https://hyperf.io",
  3948. "keywords": [
  3949. "hyperf",
  3950. "nacos-adapter",
  3951. "php",
  3952. "service-governance",
  3953. "swoole"
  3954. ],
  3955. "support": {
  3956. "docs": "https://hyperf.wiki",
  3957. "issues": "https://github.com/hyperf/hyperf/issues",
  3958. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3959. "source": "https://github.com/hyperf/hyperf"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3964. "type": "custom"
  3965. },
  3966. {
  3967. "url": "https://opencollective.com/hyperf",
  3968. "type": "open_collective"
  3969. }
  3970. ],
  3971. "time": "2024-03-23T11:28:51+00:00"
  3972. },
  3973. {
  3974. "name": "hyperf/snowflake",
  3975. "version": "v3.1.15",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/hyperf/snowflake.git",
  3979. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  3984. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  3985. "shasum": "",
  3986. "mirrors": [
  3987. {
  3988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3989. "preferred": true
  3990. }
  3991. ]
  3992. },
  3993. "require": {
  3994. "hyperf/contract": "~3.1.0",
  3995. "php": ">=8.1"
  3996. },
  3997. "suggest": {
  3998. "hyperf/config": "Required to read snowflake config.",
  3999. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4000. "psr/container": "Required to use MetaGeneratorFactory."
  4001. },
  4002. "type": "library",
  4003. "extra": {
  4004. "branch-alias": {
  4005. "dev-master": "3.1-dev"
  4006. },
  4007. "hyperf": {
  4008. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Hyperf\\Snowflake\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "description": "A snowflake library",
  4021. "homepage": "https://hyperf.io",
  4022. "keywords": [
  4023. "php",
  4024. "snowflake"
  4025. ],
  4026. "support": {
  4027. "docs": "https://hyperf.wiki",
  4028. "issues": "https://github.com/hyperf/hyperf/issues",
  4029. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4030. "source": "https://github.com/hyperf/hyperf"
  4031. },
  4032. "funding": [
  4033. {
  4034. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4035. "type": "custom"
  4036. },
  4037. {
  4038. "url": "https://opencollective.com/hyperf",
  4039. "type": "open_collective"
  4040. }
  4041. ],
  4042. "time": "2024-03-23T11:28:51+00:00"
  4043. },
  4044. {
  4045. "name": "hyperf/socketio-server",
  4046. "version": "v3.1.27",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/hyperf/socketio-server.git",
  4050. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/hyperf/socketio-server/zipball/e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4055. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "ext-json": "*",
  4060. "ext-redis": "*",
  4061. "hyperf/codec": "~3.1.0",
  4062. "hyperf/collection": "~3.1.0",
  4063. "hyperf/di": "~3.1.0",
  4064. "hyperf/redis": "~3.1.0",
  4065. "hyperf/websocket-server": "~3.1.0",
  4066. "php": ">=8.1",
  4067. "psr/container": "^1.0 || ^2.0"
  4068. },
  4069. "conflict": {
  4070. "mix/redis-subscriber": "<3.0.4"
  4071. },
  4072. "suggest": {
  4073. "hyperf/command": "Required to use RemoveRedisGarbage command",
  4074. "hyperf/nsq": "Required to use RedisNsqAdapter",
  4075. "hyperf/session": "Required to use session",
  4076. "mix/redis-subscriber": "Suggest to use RedisAdapter (^3.0.4)"
  4077. },
  4078. "type": "library",
  4079. "extra": {
  4080. "branch-alias": {
  4081. "dev-master": "3.1-dev"
  4082. },
  4083. "hyperf": {
  4084. "config": "Hyperf\\SocketIOServer\\ConfigProvider"
  4085. }
  4086. },
  4087. "autoload": {
  4088. "psr-4": {
  4089. "Hyperf\\SocketIOServer\\": "src/"
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "description": "Socket.io implementation for hyperf",
  4097. "keywords": [
  4098. "hyperf",
  4099. "php"
  4100. ],
  4101. "support": {
  4102. "issues": "https://github.com/hyperf/socketio-server/issues",
  4103. "source": "https://github.com/hyperf/socketio-server/tree/v3.1.27"
  4104. },
  4105. "funding": [
  4106. {
  4107. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://opencollective.com/hyperf",
  4112. "type": "open_collective"
  4113. }
  4114. ],
  4115. "time": "2024-06-17T01:51:06+00:00"
  4116. },
  4117. {
  4118. "name": "hyperf/stdlib",
  4119. "version": "v3.1.15",
  4120. "source": {
  4121. "type": "git",
  4122. "url": "https://github.com/hyperf/stdlib.git",
  4123. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4124. },
  4125. "dist": {
  4126. "type": "zip",
  4127. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4128. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4129. "shasum": ""
  4130. },
  4131. "require": {
  4132. "php": ">=8.1"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "3.1-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Hyperf\\Stdlib\\": "src/"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "MIT"
  4148. ],
  4149. "description": "A stdlib component for Hyperf.",
  4150. "homepage": "https://hyperf.io",
  4151. "keywords": [
  4152. "hyperf",
  4153. "php",
  4154. "stdlib",
  4155. "swoole"
  4156. ],
  4157. "support": {
  4158. "docs": "https://hyperf.wiki",
  4159. "issues": "https://github.com/hyperf/hyperf/issues",
  4160. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4161. "source": "https://github.com/hyperf/hyperf"
  4162. },
  4163. "funding": [
  4164. {
  4165. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4166. "type": "custom"
  4167. },
  4168. {
  4169. "url": "https://opencollective.com/hyperf",
  4170. "type": "open_collective"
  4171. }
  4172. ],
  4173. "time": "2024-03-23T11:28:51+00:00"
  4174. },
  4175. {
  4176. "name": "hyperf/stringable",
  4177. "version": "v3.1.24",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/hyperf/stringable.git",
  4181. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4186. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4187. "shasum": ""
  4188. },
  4189. "require": {
  4190. "ext-mbstring": "*",
  4191. "hyperf/collection": "~3.1.0",
  4192. "hyperf/conditionable": "~3.1.0",
  4193. "hyperf/macroable": "~3.1.0",
  4194. "hyperf/tappable": "~3.1.0",
  4195. "php": ">=8.1"
  4196. },
  4197. "suggest": {
  4198. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4199. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4200. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "3.1-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "files": [
  4210. "src/Functions.php"
  4211. ],
  4212. "psr-4": {
  4213. "Hyperf\\Stringable\\": "src/"
  4214. }
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "description": "Hyperf Stringable package which come from illuminate/support",
  4221. "homepage": "https://hyperf.io",
  4222. "keywords": [
  4223. "hyperf",
  4224. "php",
  4225. "stringable",
  4226. "swoole"
  4227. ],
  4228. "support": {
  4229. "docs": "https://hyperf.wiki",
  4230. "issues": "https://github.com/hyperf/hyperf/issues",
  4231. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4232. "source": "https://github.com/hyperf/hyperf"
  4233. },
  4234. "funding": [
  4235. {
  4236. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4237. "type": "custom"
  4238. },
  4239. {
  4240. "url": "https://opencollective.com/hyperf",
  4241. "type": "open_collective"
  4242. }
  4243. ],
  4244. "time": "2024-05-27T03:20:24+00:00"
  4245. },
  4246. {
  4247. "name": "hyperf/support",
  4248. "version": "v3.1.15",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/hyperf/support.git",
  4252. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4257. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4258. "shasum": ""
  4259. },
  4260. "require": {
  4261. "hyperf/collection": "~3.1.0",
  4262. "hyperf/context": "~3.1.0",
  4263. "hyperf/contract": "~3.1.0",
  4264. "hyperf/coroutine": "~3.1.0",
  4265. "hyperf/macroable": "~3.1.0",
  4266. "hyperf/stringable": "~3.1.0",
  4267. "php": ">=8.1"
  4268. },
  4269. "suggest": {
  4270. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-master": "3.1-dev"
  4276. }
  4277. },
  4278. "autoload": {
  4279. "files": [
  4280. "src/Functions.php"
  4281. ],
  4282. "psr-4": {
  4283. "Hyperf\\Support\\": "src/"
  4284. }
  4285. },
  4286. "notification-url": "https://packagist.org/downloads/",
  4287. "license": [
  4288. "MIT"
  4289. ],
  4290. "description": "A support component for Hyperf.",
  4291. "homepage": "https://hyperf.io",
  4292. "keywords": [
  4293. "hyperf",
  4294. "php",
  4295. "support",
  4296. "swoole"
  4297. ],
  4298. "support": {
  4299. "docs": "https://hyperf.wiki",
  4300. "issues": "https://github.com/hyperf/hyperf/issues",
  4301. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4302. "source": "https://github.com/hyperf/hyperf"
  4303. },
  4304. "funding": [
  4305. {
  4306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4307. "type": "custom"
  4308. },
  4309. {
  4310. "url": "https://opencollective.com/hyperf",
  4311. "type": "open_collective"
  4312. }
  4313. ],
  4314. "time": "2024-03-23T11:28:51+00:00"
  4315. },
  4316. {
  4317. "name": "hyperf/tappable",
  4318. "version": "v3.1.15",
  4319. "source": {
  4320. "type": "git",
  4321. "url": "https://github.com/hyperf/tappable.git",
  4322. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4323. },
  4324. "dist": {
  4325. "type": "zip",
  4326. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4327. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4328. "shasum": ""
  4329. },
  4330. "require": {
  4331. "php": ">=8.1"
  4332. },
  4333. "type": "library",
  4334. "extra": {
  4335. "branch-alias": {
  4336. "dev-master": "3.1-dev"
  4337. }
  4338. },
  4339. "autoload": {
  4340. "files": [
  4341. "src/Functions.php"
  4342. ],
  4343. "psr-4": {
  4344. "Hyperf\\Tappable\\": "src/"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4352. "homepage": "https://hyperf.io",
  4353. "keywords": [
  4354. "hyperf",
  4355. "php",
  4356. "swoole",
  4357. "tappable"
  4358. ],
  4359. "support": {
  4360. "docs": "https://hyperf.wiki",
  4361. "issues": "https://github.com/hyperf/hyperf/issues",
  4362. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4363. "source": "https://github.com/hyperf/hyperf"
  4364. },
  4365. "funding": [
  4366. {
  4367. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4368. "type": "custom"
  4369. },
  4370. {
  4371. "url": "https://opencollective.com/hyperf",
  4372. "type": "open_collective"
  4373. }
  4374. ],
  4375. "time": "2024-03-23T11:28:51+00:00"
  4376. },
  4377. {
  4378. "name": "hyperf/utils",
  4379. "version": "v3.1.27",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/hyperf/utils.git",
  4383. "reference": "05cbe18451813d843df419eabdf6c69843796f20"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/hyperf/utils/zipball/05cbe18451813d843df419eabdf6c69843796f20",
  4388. "reference": "05cbe18451813d843df419eabdf6c69843796f20",
  4389. "shasum": "",
  4390. "mirrors": [
  4391. {
  4392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4393. "preferred": true
  4394. }
  4395. ]
  4396. },
  4397. "require": {
  4398. "doctrine/inflector": "^2.0",
  4399. "hyperf/code-parser": "~3.1.0",
  4400. "hyperf/codec": "~3.1.0",
  4401. "hyperf/collection": "~3.1.0",
  4402. "hyperf/context": "~3.1.0",
  4403. "hyperf/contract": "~3.1.0",
  4404. "hyperf/coordinator": "~3.1.0",
  4405. "hyperf/coroutine": "~3.1.0",
  4406. "hyperf/engine": "^2.0",
  4407. "hyperf/macroable": "~3.1.0",
  4408. "hyperf/serializer": "~3.1.0",
  4409. "hyperf/stringable": "~3.1.0",
  4410. "hyperf/support": "~3.1.0",
  4411. "php": ">=8.1"
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "branch-alias": {
  4416. "dev-master": "3.1-dev"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "description": "A tools package that could help developer solved the problem quickly.",
  4424. "homepage": "https://hyperf.io",
  4425. "keywords": [
  4426. "hyperf",
  4427. "php",
  4428. "swoole",
  4429. "utils"
  4430. ],
  4431. "support": {
  4432. "docs": "https://hyperf.wiki",
  4433. "issues": "https://github.com/hyperf/hyperf/issues",
  4434. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4435. "source": "https://github.com/hyperf/hyperf"
  4436. },
  4437. "funding": [
  4438. {
  4439. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4440. "type": "custom"
  4441. },
  4442. {
  4443. "url": "https://opencollective.com/hyperf",
  4444. "type": "open_collective"
  4445. }
  4446. ],
  4447. "time": "2024-06-17T01:51:06+00:00"
  4448. },
  4449. {
  4450. "name": "hyperf/websocket-server",
  4451. "version": "v3.1.16",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/hyperf/websocket-server.git",
  4455. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4460. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4461. "shasum": "",
  4462. "mirrors": [
  4463. {
  4464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4465. "preferred": true
  4466. }
  4467. ]
  4468. },
  4469. "require": {
  4470. "hyperf/collection": "~3.1.0",
  4471. "hyperf/contract": "~3.1.0",
  4472. "hyperf/exception-handler": "~3.1.0",
  4473. "hyperf/http-server": "~3.1.0",
  4474. "hyperf/support": "~3.1.0",
  4475. "hyperf/utils": "~3.1.0",
  4476. "php": ">=8.1",
  4477. "psr/container": "^1.0|^2.0",
  4478. "psr/event-dispatcher": "^1.0"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "3.1-dev"
  4484. },
  4485. "hyperf": {
  4486. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4487. }
  4488. },
  4489. "autoload": {
  4490. "psr-4": {
  4491. "Hyperf\\WebSocketServer\\": "src/"
  4492. }
  4493. },
  4494. "notification-url": "https://packagist.org/downloads/",
  4495. "license": [
  4496. "MIT"
  4497. ],
  4498. "description": "A websocket server library for Hyperf.",
  4499. "homepage": "https://hyperf.io",
  4500. "keywords": [
  4501. "hyperf",
  4502. "php",
  4503. "swoole",
  4504. "websocket"
  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-04-02T02:40:09+00:00"
  4523. },
  4524. {
  4525. "name": "jetbrains/phpstorm-attributes",
  4526. "version": "1.1",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4530. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4535. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4536. "shasum": ""
  4537. },
  4538. "type": "library",
  4539. "autoload": {
  4540. "psr-4": {
  4541. "JetBrains\\PhpStorm\\": "src/"
  4542. }
  4543. },
  4544. "notification-url": "https://packagist.org/downloads/",
  4545. "license": [
  4546. "Apache-2.0"
  4547. ],
  4548. "authors": [
  4549. {
  4550. "name": "JetBrains",
  4551. "homepage": "https://www.jetbrains.com"
  4552. }
  4553. ],
  4554. "description": "PhpStorm specific attributes",
  4555. "keywords": [
  4556. "attributes",
  4557. "jetbrains",
  4558. "phpstorm"
  4559. ],
  4560. "support": {
  4561. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4562. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4563. },
  4564. "time": "2023-09-01T08:50:25+00:00"
  4565. },
  4566. {
  4567. "name": "laminas/laminas-mime",
  4568. "version": "2.12.0",
  4569. "source": {
  4570. "type": "git",
  4571. "url": "https://github.com/laminas/laminas-mime.git",
  4572. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4573. },
  4574. "dist": {
  4575. "type": "zip",
  4576. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4577. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4578. "shasum": ""
  4579. },
  4580. "require": {
  4581. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4582. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4583. },
  4584. "conflict": {
  4585. "zendframework/zend-mime": "*"
  4586. },
  4587. "require-dev": {
  4588. "laminas/laminas-coding-standard": "~2.4.0",
  4589. "laminas/laminas-mail": "^2.19.0",
  4590. "phpunit/phpunit": "~9.5.25"
  4591. },
  4592. "suggest": {
  4593. "laminas/laminas-mail": "Laminas\\Mail component"
  4594. },
  4595. "type": "library",
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Laminas\\Mime\\": "src/"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "BSD-3-Clause"
  4604. ],
  4605. "description": "Create and parse MIME messages and parts",
  4606. "homepage": "https://laminas.dev",
  4607. "keywords": [
  4608. "laminas",
  4609. "mime"
  4610. ],
  4611. "support": {
  4612. "chat": "https://laminas.dev/chat",
  4613. "docs": "https://docs.laminas.dev/laminas-mime/",
  4614. "forum": "https://discourse.laminas.dev",
  4615. "issues": "https://github.com/laminas/laminas-mime/issues",
  4616. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4617. "source": "https://github.com/laminas/laminas-mime"
  4618. },
  4619. "funding": [
  4620. {
  4621. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4622. "type": "community_bridge"
  4623. }
  4624. ],
  4625. "time": "2023-11-02T16:47:19+00:00"
  4626. },
  4627. {
  4628. "name": "laminas/laminas-stdlib",
  4629. "version": "3.19.0",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://github.com/laminas/laminas-stdlib.git",
  4633. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4638. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4639. "shasum": ""
  4640. },
  4641. "require": {
  4642. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4643. },
  4644. "conflict": {
  4645. "zendframework/zend-stdlib": "*"
  4646. },
  4647. "require-dev": {
  4648. "laminas/laminas-coding-standard": "^2.5",
  4649. "phpbench/phpbench": "^1.2.15",
  4650. "phpunit/phpunit": "^10.5.8",
  4651. "psalm/plugin-phpunit": "^0.18.4",
  4652. "vimeo/psalm": "^5.20.0"
  4653. },
  4654. "type": "library",
  4655. "autoload": {
  4656. "psr-4": {
  4657. "Laminas\\Stdlib\\": "src/"
  4658. }
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "BSD-3-Clause"
  4663. ],
  4664. "description": "SPL extensions, array utilities, error handlers, and more",
  4665. "homepage": "https://laminas.dev",
  4666. "keywords": [
  4667. "laminas",
  4668. "stdlib"
  4669. ],
  4670. "support": {
  4671. "chat": "https://laminas.dev/chat",
  4672. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4673. "forum": "https://discourse.laminas.dev",
  4674. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4675. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4676. "source": "https://github.com/laminas/laminas-stdlib"
  4677. },
  4678. "funding": [
  4679. {
  4680. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4681. "type": "community_bridge"
  4682. }
  4683. ],
  4684. "time": "2024-01-19T12:39:49+00:00"
  4685. },
  4686. {
  4687. "name": "markrogoyski/math-php",
  4688. "version": "v2.10.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://github.com/markrogoyski/math-php.git",
  4692. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4697. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4698. "shasum": ""
  4699. },
  4700. "require": {
  4701. "ext-json": "*",
  4702. "php": ">=7.2.0"
  4703. },
  4704. "require-dev": {
  4705. "php-coveralls/php-coveralls": "^2.0",
  4706. "php-parallel-lint/php-parallel-lint": "^1.2",
  4707. "phploc/phploc": "*",
  4708. "phpmd/phpmd": "^2.6",
  4709. "phpstan/phpstan": "^1.10",
  4710. "phpunit/phpunit": "^8.5",
  4711. "squizlabs/php_codesniffer": "3.*"
  4712. },
  4713. "type": "library",
  4714. "autoload": {
  4715. "psr-4": {
  4716. "MathPHP\\": "src/"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Mark Rogoyski",
  4726. "email": "mark@rogoyski.com",
  4727. "homepage": "https://github.com/markrogoyski",
  4728. "role": "Lead developer"
  4729. },
  4730. {
  4731. "name": "Kevin Nowaczyk",
  4732. "homepage": "https://github.com/Beakerboy",
  4733. "role": "Developer"
  4734. },
  4735. {
  4736. "name": "MathPHP Community of Contributors",
  4737. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4738. }
  4739. ],
  4740. "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",
  4741. "homepage": "https://github.com/markrogoyski/math-php/",
  4742. "keywords": [
  4743. "algebra",
  4744. "combinatorics",
  4745. "distributions",
  4746. "linear algebra",
  4747. "math",
  4748. "mathematics",
  4749. "matrix",
  4750. "numerical analysis",
  4751. "probability",
  4752. "regressions",
  4753. "statistics"
  4754. ],
  4755. "support": {
  4756. "issues": "https://github.com/markrogoyski/math-php/issues",
  4757. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4758. },
  4759. "time": "2024-04-17T00:09:51+00:00"
  4760. },
  4761. {
  4762. "name": "monolog/monolog",
  4763. "version": "3.6.0",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://github.com/Seldaek/monolog.git",
  4767. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4772. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4773. "shasum": ""
  4774. },
  4775. "require": {
  4776. "php": ">=8.1",
  4777. "psr/log": "^2.0 || ^3.0"
  4778. },
  4779. "provide": {
  4780. "psr/log-implementation": "3.0.0"
  4781. },
  4782. "require-dev": {
  4783. "aws/aws-sdk-php": "^3.0",
  4784. "doctrine/couchdb": "~1.0@dev",
  4785. "elasticsearch/elasticsearch": "^7 || ^8",
  4786. "ext-json": "*",
  4787. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4788. "guzzlehttp/guzzle": "^7.4.5",
  4789. "guzzlehttp/psr7": "^2.2",
  4790. "mongodb/mongodb": "^1.8",
  4791. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4792. "phpstan/phpstan": "^1.9",
  4793. "phpstan/phpstan-deprecation-rules": "^1.0",
  4794. "phpstan/phpstan-strict-rules": "^1.4",
  4795. "phpunit/phpunit": "^10.5.17",
  4796. "predis/predis": "^1.1 || ^2",
  4797. "ruflin/elastica": "^7",
  4798. "symfony/mailer": "^5.4 || ^6",
  4799. "symfony/mime": "^5.4 || ^6"
  4800. },
  4801. "suggest": {
  4802. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4803. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4804. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4805. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4806. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4807. "ext-mbstring": "Allow to work properly with unicode symbols",
  4808. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4809. "ext-openssl": "Required to send log messages using SSL",
  4810. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4811. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4812. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4813. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4814. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4815. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4816. },
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-main": "3.x-dev"
  4821. }
  4822. },
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Monolog\\": "src/Monolog"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Jordi Boggiano",
  4835. "email": "j.boggiano@seld.be",
  4836. "homepage": "https://seld.be"
  4837. }
  4838. ],
  4839. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4840. "homepage": "https://github.com/Seldaek/monolog",
  4841. "keywords": [
  4842. "log",
  4843. "logging",
  4844. "psr-3"
  4845. ],
  4846. "support": {
  4847. "issues": "https://github.com/Seldaek/monolog/issues",
  4848. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4849. },
  4850. "funding": [
  4851. {
  4852. "url": "https://github.com/Seldaek",
  4853. "type": "github"
  4854. },
  4855. {
  4856. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4857. "type": "tidelift"
  4858. }
  4859. ],
  4860. "time": "2024-04-12T21:02:21+00:00"
  4861. },
  4862. {
  4863. "name": "nesbot/carbon",
  4864. "version": "2.72.5",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/briannesbitt/Carbon.git",
  4868. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4873. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4874. "shasum": ""
  4875. },
  4876. "require": {
  4877. "carbonphp/carbon-doctrine-types": "*",
  4878. "ext-json": "*",
  4879. "php": "^7.1.8 || ^8.0",
  4880. "psr/clock": "^1.0",
  4881. "symfony/polyfill-mbstring": "^1.0",
  4882. "symfony/polyfill-php80": "^1.16",
  4883. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4884. },
  4885. "provide": {
  4886. "psr/clock-implementation": "1.0"
  4887. },
  4888. "require-dev": {
  4889. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4890. "doctrine/orm": "^2.7 || ^3.0",
  4891. "friendsofphp/php-cs-fixer": "^3.0",
  4892. "kylekatarnls/multi-tester": "^2.0",
  4893. "ondrejmirtes/better-reflection": "*",
  4894. "phpmd/phpmd": "^2.9",
  4895. "phpstan/extension-installer": "^1.0",
  4896. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4897. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4898. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4899. "squizlabs/php_codesniffer": "^3.4"
  4900. },
  4901. "bin": [
  4902. "bin/carbon"
  4903. ],
  4904. "type": "library",
  4905. "extra": {
  4906. "branch-alias": {
  4907. "dev-master": "3.x-dev",
  4908. "dev-2.x": "2.x-dev"
  4909. },
  4910. "laravel": {
  4911. "providers": [
  4912. "Carbon\\Laravel\\ServiceProvider"
  4913. ]
  4914. },
  4915. "phpstan": {
  4916. "includes": [
  4917. "extension.neon"
  4918. ]
  4919. }
  4920. },
  4921. "autoload": {
  4922. "psr-4": {
  4923. "Carbon\\": "src/Carbon/"
  4924. }
  4925. },
  4926. "notification-url": "https://packagist.org/downloads/",
  4927. "license": [
  4928. "MIT"
  4929. ],
  4930. "authors": [
  4931. {
  4932. "name": "Brian Nesbitt",
  4933. "email": "brian@nesbot.com",
  4934. "homepage": "https://markido.com"
  4935. },
  4936. {
  4937. "name": "kylekatarnls",
  4938. "homepage": "https://github.com/kylekatarnls"
  4939. }
  4940. ],
  4941. "description": "An API extension for DateTime that supports 281 different languages.",
  4942. "homepage": "https://carbon.nesbot.com",
  4943. "keywords": [
  4944. "date",
  4945. "datetime",
  4946. "time"
  4947. ],
  4948. "support": {
  4949. "docs": "https://carbon.nesbot.com/docs",
  4950. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4951. "source": "https://github.com/briannesbitt/Carbon"
  4952. },
  4953. "funding": [
  4954. {
  4955. "url": "https://github.com/sponsors/kylekatarnls",
  4956. "type": "github"
  4957. },
  4958. {
  4959. "url": "https://opencollective.com/Carbon#sponsor",
  4960. "type": "opencollective"
  4961. },
  4962. {
  4963. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4964. "type": "tidelift"
  4965. }
  4966. ],
  4967. "time": "2024-06-03T19:18:41+00:00"
  4968. },
  4969. {
  4970. "name": "nikic/fast-route",
  4971. "version": "v1.3.0",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://github.com/nikic/FastRoute.git",
  4975. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4980. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4981. "shasum": ""
  4982. },
  4983. "require": {
  4984. "php": ">=5.4.0"
  4985. },
  4986. "require-dev": {
  4987. "phpunit/phpunit": "^4.8.35|~5.7"
  4988. },
  4989. "type": "library",
  4990. "autoload": {
  4991. "files": [
  4992. "src/functions.php"
  4993. ],
  4994. "psr-4": {
  4995. "FastRoute\\": "src/"
  4996. }
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "BSD-3-Clause"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Nikita Popov",
  5005. "email": "nikic@php.net"
  5006. }
  5007. ],
  5008. "description": "Fast request router for PHP",
  5009. "keywords": [
  5010. "router",
  5011. "routing"
  5012. ],
  5013. "support": {
  5014. "issues": "https://github.com/nikic/FastRoute/issues",
  5015. "source": "https://github.com/nikic/FastRoute/tree/master"
  5016. },
  5017. "time": "2018-02-13T20:26:39+00:00"
  5018. },
  5019. {
  5020. "name": "nikic/php-parser",
  5021. "version": "v4.19.1",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/nikic/PHP-Parser.git",
  5025. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5030. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5031. "shasum": ""
  5032. },
  5033. "require": {
  5034. "ext-tokenizer": "*",
  5035. "php": ">=7.1"
  5036. },
  5037. "require-dev": {
  5038. "ircmaxell/php-yacc": "^0.0.7",
  5039. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5040. },
  5041. "bin": [
  5042. "bin/php-parse"
  5043. ],
  5044. "type": "library",
  5045. "extra": {
  5046. "branch-alias": {
  5047. "dev-master": "4.9-dev"
  5048. }
  5049. },
  5050. "autoload": {
  5051. "psr-4": {
  5052. "PhpParser\\": "lib/PhpParser"
  5053. }
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "BSD-3-Clause"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "Nikita Popov"
  5062. }
  5063. ],
  5064. "description": "A PHP parser written in PHP",
  5065. "keywords": [
  5066. "parser",
  5067. "php"
  5068. ],
  5069. "support": {
  5070. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5071. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5072. },
  5073. "time": "2024-03-17T08:10:35+00:00"
  5074. },
  5075. {
  5076. "name": "php-di/phpdoc-reader",
  5077. "version": "2.2.1",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5081. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5086. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5087. "shasum": ""
  5088. },
  5089. "require": {
  5090. "php": ">=7.2.0"
  5091. },
  5092. "require-dev": {
  5093. "mnapoli/hard-mode": "~0.3.0",
  5094. "phpunit/phpunit": "^8.5|^9.0"
  5095. },
  5096. "type": "library",
  5097. "autoload": {
  5098. "psr-4": {
  5099. "PhpDocReader\\": "src/PhpDocReader"
  5100. }
  5101. },
  5102. "notification-url": "https://packagist.org/downloads/",
  5103. "license": [
  5104. "MIT"
  5105. ],
  5106. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5107. "keywords": [
  5108. "phpdoc",
  5109. "reflection"
  5110. ],
  5111. "support": {
  5112. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5113. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5114. },
  5115. "time": "2020-10-12T12:39:22+00:00"
  5116. },
  5117. {
  5118. "name": "phpoption/phpoption",
  5119. "version": "1.9.2",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/schmittjoh/php-option.git",
  5123. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5128. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5129. "shasum": ""
  5130. },
  5131. "require": {
  5132. "php": "^7.2.5 || ^8.0"
  5133. },
  5134. "require-dev": {
  5135. "bamarni/composer-bin-plugin": "^1.8.2",
  5136. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "bamarni-bin": {
  5141. "bin-links": true,
  5142. "forward-command": true
  5143. },
  5144. "branch-alias": {
  5145. "dev-master": "1.9-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "PhpOption\\": "src/PhpOption/"
  5151. }
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "Apache-2.0"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Johannes M. Schmitt",
  5160. "email": "schmittjoh@gmail.com",
  5161. "homepage": "https://github.com/schmittjoh"
  5162. },
  5163. {
  5164. "name": "Graham Campbell",
  5165. "email": "hello@gjcampbell.co.uk",
  5166. "homepage": "https://github.com/GrahamCampbell"
  5167. }
  5168. ],
  5169. "description": "Option Type for PHP",
  5170. "keywords": [
  5171. "language",
  5172. "option",
  5173. "php",
  5174. "type"
  5175. ],
  5176. "support": {
  5177. "issues": "https://github.com/schmittjoh/php-option/issues",
  5178. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://github.com/GrahamCampbell",
  5183. "type": "github"
  5184. },
  5185. {
  5186. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5187. "type": "tidelift"
  5188. }
  5189. ],
  5190. "time": "2023-11-12T21:59:55+00:00"
  5191. },
  5192. {
  5193. "name": "psr/cache",
  5194. "version": "3.0.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/php-fig/cache.git",
  5198. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5203. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": ">=8.0.0"
  5208. },
  5209. "type": "library",
  5210. "extra": {
  5211. "branch-alias": {
  5212. "dev-master": "1.0.x-dev"
  5213. }
  5214. },
  5215. "autoload": {
  5216. "psr-4": {
  5217. "Psr\\Cache\\": "src/"
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "MIT"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "PHP-FIG",
  5227. "homepage": "https://www.php-fig.org/"
  5228. }
  5229. ],
  5230. "description": "Common interface for caching libraries",
  5231. "keywords": [
  5232. "cache",
  5233. "psr",
  5234. "psr-6"
  5235. ],
  5236. "support": {
  5237. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5238. },
  5239. "time": "2021-02-03T23:26:27+00:00"
  5240. },
  5241. {
  5242. "name": "psr/clock",
  5243. "version": "1.0.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/php-fig/clock.git",
  5247. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5252. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5253. "shasum": ""
  5254. },
  5255. "require": {
  5256. "php": "^7.0 || ^8.0"
  5257. },
  5258. "type": "library",
  5259. "autoload": {
  5260. "psr-4": {
  5261. "Psr\\Clock\\": "src/"
  5262. }
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "PHP-FIG",
  5271. "homepage": "https://www.php-fig.org/"
  5272. }
  5273. ],
  5274. "description": "Common interface for reading the clock.",
  5275. "homepage": "https://github.com/php-fig/clock",
  5276. "keywords": [
  5277. "clock",
  5278. "now",
  5279. "psr",
  5280. "psr-20",
  5281. "time"
  5282. ],
  5283. "support": {
  5284. "issues": "https://github.com/php-fig/clock/issues",
  5285. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5286. },
  5287. "time": "2022-11-25T14:36:26+00:00"
  5288. },
  5289. {
  5290. "name": "psr/container",
  5291. "version": "2.0.2",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/php-fig/container.git",
  5295. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5300. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "php": ">=7.4.0"
  5305. },
  5306. "type": "library",
  5307. "extra": {
  5308. "branch-alias": {
  5309. "dev-master": "2.0.x-dev"
  5310. }
  5311. },
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Psr\\Container\\": "src/"
  5315. }
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "PHP-FIG",
  5324. "homepage": "https://www.php-fig.org/"
  5325. }
  5326. ],
  5327. "description": "Common Container Interface (PHP FIG PSR-11)",
  5328. "homepage": "https://github.com/php-fig/container",
  5329. "keywords": [
  5330. "PSR-11",
  5331. "container",
  5332. "container-interface",
  5333. "container-interop",
  5334. "psr"
  5335. ],
  5336. "support": {
  5337. "issues": "https://github.com/php-fig/container/issues",
  5338. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5339. },
  5340. "time": "2021-11-05T16:47:00+00:00"
  5341. },
  5342. {
  5343. "name": "psr/event-dispatcher",
  5344. "version": "1.0.0",
  5345. "source": {
  5346. "type": "git",
  5347. "url": "https://github.com/php-fig/event-dispatcher.git",
  5348. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5349. },
  5350. "dist": {
  5351. "type": "zip",
  5352. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5353. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5354. "shasum": ""
  5355. },
  5356. "require": {
  5357. "php": ">=7.2.0"
  5358. },
  5359. "type": "library",
  5360. "extra": {
  5361. "branch-alias": {
  5362. "dev-master": "1.0.x-dev"
  5363. }
  5364. },
  5365. "autoload": {
  5366. "psr-4": {
  5367. "Psr\\EventDispatcher\\": "src/"
  5368. }
  5369. },
  5370. "notification-url": "https://packagist.org/downloads/",
  5371. "license": [
  5372. "MIT"
  5373. ],
  5374. "authors": [
  5375. {
  5376. "name": "PHP-FIG",
  5377. "homepage": "http://www.php-fig.org/"
  5378. }
  5379. ],
  5380. "description": "Standard interfaces for event handling.",
  5381. "keywords": [
  5382. "events",
  5383. "psr",
  5384. "psr-14"
  5385. ],
  5386. "support": {
  5387. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5388. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5389. },
  5390. "time": "2019-01-08T18:20:26+00:00"
  5391. },
  5392. {
  5393. "name": "psr/http-client",
  5394. "version": "1.0.3",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/php-fig/http-client.git",
  5398. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5403. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": "^7.0 || ^8.0",
  5408. "psr/http-message": "^1.0 || ^2.0"
  5409. },
  5410. "type": "library",
  5411. "extra": {
  5412. "branch-alias": {
  5413. "dev-master": "1.0.x-dev"
  5414. }
  5415. },
  5416. "autoload": {
  5417. "psr-4": {
  5418. "Psr\\Http\\Client\\": "src/"
  5419. }
  5420. },
  5421. "notification-url": "https://packagist.org/downloads/",
  5422. "license": [
  5423. "MIT"
  5424. ],
  5425. "authors": [
  5426. {
  5427. "name": "PHP-FIG",
  5428. "homepage": "https://www.php-fig.org/"
  5429. }
  5430. ],
  5431. "description": "Common interface for HTTP clients",
  5432. "homepage": "https://github.com/php-fig/http-client",
  5433. "keywords": [
  5434. "http",
  5435. "http-client",
  5436. "psr",
  5437. "psr-18"
  5438. ],
  5439. "support": {
  5440. "source": "https://github.com/php-fig/http-client"
  5441. },
  5442. "time": "2023-09-23T14:17:50+00:00"
  5443. },
  5444. {
  5445. "name": "psr/http-factory",
  5446. "version": "1.1.0",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/php-fig/http-factory.git",
  5450. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5455. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "php": ">=7.1",
  5460. "psr/http-message": "^1.0 || ^2.0"
  5461. },
  5462. "type": "library",
  5463. "extra": {
  5464. "branch-alias": {
  5465. "dev-master": "1.0.x-dev"
  5466. }
  5467. },
  5468. "autoload": {
  5469. "psr-4": {
  5470. "Psr\\Http\\Message\\": "src/"
  5471. }
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "PHP-FIG",
  5480. "homepage": "https://www.php-fig.org/"
  5481. }
  5482. ],
  5483. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5484. "keywords": [
  5485. "factory",
  5486. "http",
  5487. "message",
  5488. "psr",
  5489. "psr-17",
  5490. "psr-7",
  5491. "request",
  5492. "response"
  5493. ],
  5494. "support": {
  5495. "source": "https://github.com/php-fig/http-factory"
  5496. },
  5497. "time": "2024-04-15T12:06:14+00:00"
  5498. },
  5499. {
  5500. "name": "psr/http-message",
  5501. "version": "2.0",
  5502. "source": {
  5503. "type": "git",
  5504. "url": "https://github.com/php-fig/http-message.git",
  5505. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5506. },
  5507. "dist": {
  5508. "type": "zip",
  5509. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5510. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5511. "shasum": ""
  5512. },
  5513. "require": {
  5514. "php": "^7.2 || ^8.0"
  5515. },
  5516. "type": "library",
  5517. "extra": {
  5518. "branch-alias": {
  5519. "dev-master": "2.0.x-dev"
  5520. }
  5521. },
  5522. "autoload": {
  5523. "psr-4": {
  5524. "Psr\\Http\\Message\\": "src/"
  5525. }
  5526. },
  5527. "notification-url": "https://packagist.org/downloads/",
  5528. "license": [
  5529. "MIT"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "PHP-FIG",
  5534. "homepage": "https://www.php-fig.org/"
  5535. }
  5536. ],
  5537. "description": "Common interface for HTTP messages",
  5538. "homepage": "https://github.com/php-fig/http-message",
  5539. "keywords": [
  5540. "http",
  5541. "http-message",
  5542. "psr",
  5543. "psr-7",
  5544. "request",
  5545. "response"
  5546. ],
  5547. "support": {
  5548. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5549. },
  5550. "time": "2023-04-04T09:54:51+00:00"
  5551. },
  5552. {
  5553. "name": "psr/http-server-handler",
  5554. "version": "1.0.2",
  5555. "source": {
  5556. "type": "git",
  5557. "url": "https://github.com/php-fig/http-server-handler.git",
  5558. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5559. },
  5560. "dist": {
  5561. "type": "zip",
  5562. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5563. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5564. "shasum": ""
  5565. },
  5566. "require": {
  5567. "php": ">=7.0",
  5568. "psr/http-message": "^1.0 || ^2.0"
  5569. },
  5570. "type": "library",
  5571. "extra": {
  5572. "branch-alias": {
  5573. "dev-master": "1.0.x-dev"
  5574. }
  5575. },
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Psr\\Http\\Server\\": "src/"
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "MIT"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "PHP-FIG",
  5588. "homepage": "https://www.php-fig.org/"
  5589. }
  5590. ],
  5591. "description": "Common interface for HTTP server-side request handler",
  5592. "keywords": [
  5593. "handler",
  5594. "http",
  5595. "http-interop",
  5596. "psr",
  5597. "psr-15",
  5598. "psr-7",
  5599. "request",
  5600. "response",
  5601. "server"
  5602. ],
  5603. "support": {
  5604. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5605. },
  5606. "time": "2023-04-10T20:06:20+00:00"
  5607. },
  5608. {
  5609. "name": "psr/http-server-middleware",
  5610. "version": "1.0.2",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/php-fig/http-server-middleware.git",
  5614. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5619. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=7.0",
  5624. "psr/http-message": "^1.0 || ^2.0",
  5625. "psr/http-server-handler": "^1.0"
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "1.0.x-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Psr\\Http\\Server\\": "src/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "PHP-FIG",
  5645. "homepage": "https://www.php-fig.org/"
  5646. }
  5647. ],
  5648. "description": "Common interface for HTTP server-side middleware",
  5649. "keywords": [
  5650. "http",
  5651. "http-interop",
  5652. "middleware",
  5653. "psr",
  5654. "psr-15",
  5655. "psr-7",
  5656. "request",
  5657. "response"
  5658. ],
  5659. "support": {
  5660. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5661. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5662. },
  5663. "time": "2023-04-11T06:14:47+00:00"
  5664. },
  5665. {
  5666. "name": "psr/log",
  5667. "version": "3.0.0",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/php-fig/log.git",
  5671. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5676. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": ">=8.0.0"
  5681. },
  5682. "type": "library",
  5683. "extra": {
  5684. "branch-alias": {
  5685. "dev-master": "3.x-dev"
  5686. }
  5687. },
  5688. "autoload": {
  5689. "psr-4": {
  5690. "Psr\\Log\\": "src"
  5691. }
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "MIT"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "PHP-FIG",
  5700. "homepage": "https://www.php-fig.org/"
  5701. }
  5702. ],
  5703. "description": "Common interface for logging libraries",
  5704. "homepage": "https://github.com/php-fig/log",
  5705. "keywords": [
  5706. "log",
  5707. "psr",
  5708. "psr-3"
  5709. ],
  5710. "support": {
  5711. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5712. },
  5713. "time": "2021-07-14T16:46:02+00:00"
  5714. },
  5715. {
  5716. "name": "psr/simple-cache",
  5717. "version": "3.0.0",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/php-fig/simple-cache.git",
  5721. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5726. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5727. "shasum": ""
  5728. },
  5729. "require": {
  5730. "php": ">=8.0.0"
  5731. },
  5732. "type": "library",
  5733. "extra": {
  5734. "branch-alias": {
  5735. "dev-master": "3.0.x-dev"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Psr\\SimpleCache\\": "src/"
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "PHP-FIG",
  5750. "homepage": "https://www.php-fig.org/"
  5751. }
  5752. ],
  5753. "description": "Common interfaces for simple caching",
  5754. "keywords": [
  5755. "cache",
  5756. "caching",
  5757. "psr",
  5758. "psr-16",
  5759. "simple-cache"
  5760. ],
  5761. "support": {
  5762. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5763. },
  5764. "time": "2021-10-29T13:26:27+00:00"
  5765. },
  5766. {
  5767. "name": "ralouphie/getallheaders",
  5768. "version": "3.0.3",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/ralouphie/getallheaders.git",
  5772. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5777. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5778. "shasum": ""
  5779. },
  5780. "require": {
  5781. "php": ">=5.6"
  5782. },
  5783. "require-dev": {
  5784. "php-coveralls/php-coveralls": "^2.1",
  5785. "phpunit/phpunit": "^5 || ^6.5"
  5786. },
  5787. "type": "library",
  5788. "autoload": {
  5789. "files": [
  5790. "src/getallheaders.php"
  5791. ]
  5792. },
  5793. "notification-url": "https://packagist.org/downloads/",
  5794. "license": [
  5795. "MIT"
  5796. ],
  5797. "authors": [
  5798. {
  5799. "name": "Ralph Khattar",
  5800. "email": "ralph.khattar@gmail.com"
  5801. }
  5802. ],
  5803. "description": "A polyfill for getallheaders.",
  5804. "support": {
  5805. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5806. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5807. },
  5808. "time": "2019-03-08T08:55:37+00:00"
  5809. },
  5810. {
  5811. "name": "swow/psr7-plus",
  5812. "version": "v1.1.2",
  5813. "source": {
  5814. "type": "git",
  5815. "url": "https://github.com/swow/psr7-plus.git",
  5816. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5817. },
  5818. "dist": {
  5819. "type": "zip",
  5820. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5821. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5822. "shasum": ""
  5823. },
  5824. "require": {
  5825. "php": ">=8.0",
  5826. "psr/http-client": "^1.0",
  5827. "psr/http-factory": "^1.0",
  5828. "psr/http-message": "^1.1|^2.0"
  5829. },
  5830. "type": "library",
  5831. "autoload": {
  5832. "psr-4": {
  5833. "Swow\\Psr7\\Message\\": "src/Message/"
  5834. }
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "Apache-2.0"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "twose",
  5843. "email": "twosee@php.net"
  5844. }
  5845. ],
  5846. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5847. "keywords": [
  5848. "http",
  5849. "psr17",
  5850. "psr7",
  5851. "swow",
  5852. "websocket"
  5853. ],
  5854. "support": {
  5855. "issues": "https://github.com/swow/swow",
  5856. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5857. },
  5858. "time": "2023-06-15T09:18:11+00:00"
  5859. },
  5860. {
  5861. "name": "symfony/console",
  5862. "version": "v6.4.8",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/symfony/console.git",
  5866. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5871. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5872. "shasum": ""
  5873. },
  5874. "require": {
  5875. "php": ">=8.1",
  5876. "symfony/deprecation-contracts": "^2.5|^3",
  5877. "symfony/polyfill-mbstring": "~1.0",
  5878. "symfony/service-contracts": "^2.5|^3",
  5879. "symfony/string": "^5.4|^6.0|^7.0"
  5880. },
  5881. "conflict": {
  5882. "symfony/dependency-injection": "<5.4",
  5883. "symfony/dotenv": "<5.4",
  5884. "symfony/event-dispatcher": "<5.4",
  5885. "symfony/lock": "<5.4",
  5886. "symfony/process": "<5.4"
  5887. },
  5888. "provide": {
  5889. "psr/log-implementation": "1.0|2.0|3.0"
  5890. },
  5891. "require-dev": {
  5892. "psr/log": "^1|^2|^3",
  5893. "symfony/config": "^5.4|^6.0|^7.0",
  5894. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5895. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5896. "symfony/http-foundation": "^6.4|^7.0",
  5897. "symfony/http-kernel": "^6.4|^7.0",
  5898. "symfony/lock": "^5.4|^6.0|^7.0",
  5899. "symfony/messenger": "^5.4|^6.0|^7.0",
  5900. "symfony/process": "^5.4|^6.0|^7.0",
  5901. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5902. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5903. },
  5904. "type": "library",
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Symfony\\Component\\Console\\": ""
  5908. },
  5909. "exclude-from-classmap": [
  5910. "/Tests/"
  5911. ]
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "MIT"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Fabien Potencier",
  5920. "email": "fabien@symfony.com"
  5921. },
  5922. {
  5923. "name": "Symfony Community",
  5924. "homepage": "https://symfony.com/contributors"
  5925. }
  5926. ],
  5927. "description": "Eases the creation of beautiful and testable command line interfaces",
  5928. "homepage": "https://symfony.com",
  5929. "keywords": [
  5930. "cli",
  5931. "command-line",
  5932. "console",
  5933. "terminal"
  5934. ],
  5935. "support": {
  5936. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5937. },
  5938. "funding": [
  5939. {
  5940. "url": "https://symfony.com/sponsor",
  5941. "type": "custom"
  5942. },
  5943. {
  5944. "url": "https://github.com/fabpot",
  5945. "type": "github"
  5946. },
  5947. {
  5948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5949. "type": "tidelift"
  5950. }
  5951. ],
  5952. "time": "2024-05-31T14:49:08+00:00"
  5953. },
  5954. {
  5955. "name": "symfony/deprecation-contracts",
  5956. "version": "v3.5.0",
  5957. "source": {
  5958. "type": "git",
  5959. "url": "https://github.com/symfony/deprecation-contracts.git",
  5960. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5961. },
  5962. "dist": {
  5963. "type": "zip",
  5964. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5965. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5966. "shasum": ""
  5967. },
  5968. "require": {
  5969. "php": ">=8.1"
  5970. },
  5971. "type": "library",
  5972. "extra": {
  5973. "branch-alias": {
  5974. "dev-main": "3.5-dev"
  5975. },
  5976. "thanks": {
  5977. "name": "symfony/contracts",
  5978. "url": "https://github.com/symfony/contracts"
  5979. }
  5980. },
  5981. "autoload": {
  5982. "files": [
  5983. "function.php"
  5984. ]
  5985. },
  5986. "notification-url": "https://packagist.org/downloads/",
  5987. "license": [
  5988. "MIT"
  5989. ],
  5990. "authors": [
  5991. {
  5992. "name": "Nicolas Grekas",
  5993. "email": "p@tchwork.com"
  5994. },
  5995. {
  5996. "name": "Symfony Community",
  5997. "homepage": "https://symfony.com/contributors"
  5998. }
  5999. ],
  6000. "description": "A generic function and convention to trigger deprecation notices",
  6001. "homepage": "https://symfony.com",
  6002. "support": {
  6003. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6004. },
  6005. "funding": [
  6006. {
  6007. "url": "https://symfony.com/sponsor",
  6008. "type": "custom"
  6009. },
  6010. {
  6011. "url": "https://github.com/fabpot",
  6012. "type": "github"
  6013. },
  6014. {
  6015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6016. "type": "tidelift"
  6017. }
  6018. ],
  6019. "time": "2024-04-18T09:32:20+00:00"
  6020. },
  6021. {
  6022. "name": "symfony/finder",
  6023. "version": "v6.4.8",
  6024. "source": {
  6025. "type": "git",
  6026. "url": "https://github.com/symfony/finder.git",
  6027. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6028. },
  6029. "dist": {
  6030. "type": "zip",
  6031. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6032. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6033. "shasum": ""
  6034. },
  6035. "require": {
  6036. "php": ">=8.1"
  6037. },
  6038. "require-dev": {
  6039. "symfony/filesystem": "^6.0|^7.0"
  6040. },
  6041. "type": "library",
  6042. "autoload": {
  6043. "psr-4": {
  6044. "Symfony\\Component\\Finder\\": ""
  6045. },
  6046. "exclude-from-classmap": [
  6047. "/Tests/"
  6048. ]
  6049. },
  6050. "notification-url": "https://packagist.org/downloads/",
  6051. "license": [
  6052. "MIT"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Fabien Potencier",
  6057. "email": "fabien@symfony.com"
  6058. },
  6059. {
  6060. "name": "Symfony Community",
  6061. "homepage": "https://symfony.com/contributors"
  6062. }
  6063. ],
  6064. "description": "Finds files and directories via an intuitive fluent interface",
  6065. "homepage": "https://symfony.com",
  6066. "support": {
  6067. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6068. },
  6069. "funding": [
  6070. {
  6071. "url": "https://symfony.com/sponsor",
  6072. "type": "custom"
  6073. },
  6074. {
  6075. "url": "https://github.com/fabpot",
  6076. "type": "github"
  6077. },
  6078. {
  6079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6080. "type": "tidelift"
  6081. }
  6082. ],
  6083. "time": "2024-05-31T14:49:08+00:00"
  6084. },
  6085. {
  6086. "name": "symfony/polyfill-ctype",
  6087. "version": "v1.29.0",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/symfony/polyfill-ctype.git",
  6091. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6096. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "php": ">=7.1"
  6101. },
  6102. "provide": {
  6103. "ext-ctype": "*"
  6104. },
  6105. "suggest": {
  6106. "ext-ctype": "For best performance"
  6107. },
  6108. "type": "library",
  6109. "extra": {
  6110. "thanks": {
  6111. "name": "symfony/polyfill",
  6112. "url": "https://github.com/symfony/polyfill"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "files": [
  6117. "bootstrap.php"
  6118. ],
  6119. "psr-4": {
  6120. "Symfony\\Polyfill\\Ctype\\": ""
  6121. }
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Gert de Pagter",
  6130. "email": "BackEndTea@gmail.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Symfony polyfill for ctype functions",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "compatibility",
  6141. "ctype",
  6142. "polyfill",
  6143. "portable"
  6144. ],
  6145. "support": {
  6146. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2024-01-29T20:11:03+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/polyfill-intl-grapheme",
  6166. "version": "v1.29.0",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6170. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6175. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "php": ">=7.1"
  6180. },
  6181. "suggest": {
  6182. "ext-intl": "For best performance"
  6183. },
  6184. "type": "library",
  6185. "extra": {
  6186. "thanks": {
  6187. "name": "symfony/polyfill",
  6188. "url": "https://github.com/symfony/polyfill"
  6189. }
  6190. },
  6191. "autoload": {
  6192. "files": [
  6193. "bootstrap.php"
  6194. ],
  6195. "psr-4": {
  6196. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6197. }
  6198. },
  6199. "notification-url": "https://packagist.org/downloads/",
  6200. "license": [
  6201. "MIT"
  6202. ],
  6203. "authors": [
  6204. {
  6205. "name": "Nicolas Grekas",
  6206. "email": "p@tchwork.com"
  6207. },
  6208. {
  6209. "name": "Symfony Community",
  6210. "homepage": "https://symfony.com/contributors"
  6211. }
  6212. ],
  6213. "description": "Symfony polyfill for intl's grapheme_* functions",
  6214. "homepage": "https://symfony.com",
  6215. "keywords": [
  6216. "compatibility",
  6217. "grapheme",
  6218. "intl",
  6219. "polyfill",
  6220. "portable",
  6221. "shim"
  6222. ],
  6223. "support": {
  6224. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6225. },
  6226. "funding": [
  6227. {
  6228. "url": "https://symfony.com/sponsor",
  6229. "type": "custom"
  6230. },
  6231. {
  6232. "url": "https://github.com/fabpot",
  6233. "type": "github"
  6234. },
  6235. {
  6236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6237. "type": "tidelift"
  6238. }
  6239. ],
  6240. "time": "2024-01-29T20:11:03+00:00"
  6241. },
  6242. {
  6243. "name": "symfony/polyfill-intl-normalizer",
  6244. "version": "v1.29.0",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6248. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6253. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6254. "shasum": ""
  6255. },
  6256. "require": {
  6257. "php": ">=7.1"
  6258. },
  6259. "suggest": {
  6260. "ext-intl": "For best performance"
  6261. },
  6262. "type": "library",
  6263. "extra": {
  6264. "thanks": {
  6265. "name": "symfony/polyfill",
  6266. "url": "https://github.com/symfony/polyfill"
  6267. }
  6268. },
  6269. "autoload": {
  6270. "files": [
  6271. "bootstrap.php"
  6272. ],
  6273. "psr-4": {
  6274. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6275. },
  6276. "classmap": [
  6277. "Resources/stubs"
  6278. ]
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "Nicolas Grekas",
  6287. "email": "p@tchwork.com"
  6288. },
  6289. {
  6290. "name": "Symfony Community",
  6291. "homepage": "https://symfony.com/contributors"
  6292. }
  6293. ],
  6294. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6295. "homepage": "https://symfony.com",
  6296. "keywords": [
  6297. "compatibility",
  6298. "intl",
  6299. "normalizer",
  6300. "polyfill",
  6301. "portable",
  6302. "shim"
  6303. ],
  6304. "support": {
  6305. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6306. },
  6307. "funding": [
  6308. {
  6309. "url": "https://symfony.com/sponsor",
  6310. "type": "custom"
  6311. },
  6312. {
  6313. "url": "https://github.com/fabpot",
  6314. "type": "github"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2024-01-29T20:11:03+00:00"
  6322. },
  6323. {
  6324. "name": "symfony/polyfill-mbstring",
  6325. "version": "v1.29.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6329. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6334. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=7.1"
  6339. },
  6340. "provide": {
  6341. "ext-mbstring": "*"
  6342. },
  6343. "suggest": {
  6344. "ext-mbstring": "For best performance"
  6345. },
  6346. "type": "library",
  6347. "extra": {
  6348. "thanks": {
  6349. "name": "symfony/polyfill",
  6350. "url": "https://github.com/symfony/polyfill"
  6351. }
  6352. },
  6353. "autoload": {
  6354. "files": [
  6355. "bootstrap.php"
  6356. ],
  6357. "psr-4": {
  6358. "Symfony\\Polyfill\\Mbstring\\": ""
  6359. }
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "MIT"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Nicolas Grekas",
  6368. "email": "p@tchwork.com"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Symfony polyfill for the Mbstring extension",
  6376. "homepage": "https://symfony.com",
  6377. "keywords": [
  6378. "compatibility",
  6379. "mbstring",
  6380. "polyfill",
  6381. "portable",
  6382. "shim"
  6383. ],
  6384. "support": {
  6385. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6386. },
  6387. "funding": [
  6388. {
  6389. "url": "https://symfony.com/sponsor",
  6390. "type": "custom"
  6391. },
  6392. {
  6393. "url": "https://github.com/fabpot",
  6394. "type": "github"
  6395. },
  6396. {
  6397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6398. "type": "tidelift"
  6399. }
  6400. ],
  6401. "time": "2024-01-29T20:11:03+00:00"
  6402. },
  6403. {
  6404. "name": "symfony/polyfill-php80",
  6405. "version": "v1.29.0",
  6406. "source": {
  6407. "type": "git",
  6408. "url": "https://github.com/symfony/polyfill-php80.git",
  6409. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6410. },
  6411. "dist": {
  6412. "type": "zip",
  6413. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6414. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6415. "shasum": ""
  6416. },
  6417. "require": {
  6418. "php": ">=7.1"
  6419. },
  6420. "type": "library",
  6421. "extra": {
  6422. "thanks": {
  6423. "name": "symfony/polyfill",
  6424. "url": "https://github.com/symfony/polyfill"
  6425. }
  6426. },
  6427. "autoload": {
  6428. "files": [
  6429. "bootstrap.php"
  6430. ],
  6431. "psr-4": {
  6432. "Symfony\\Polyfill\\Php80\\": ""
  6433. },
  6434. "classmap": [
  6435. "Resources/stubs"
  6436. ]
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Ion Bazan",
  6445. "email": "ion.bazan@gmail.com"
  6446. },
  6447. {
  6448. "name": "Nicolas Grekas",
  6449. "email": "p@tchwork.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6457. "homepage": "https://symfony.com",
  6458. "keywords": [
  6459. "compatibility",
  6460. "polyfill",
  6461. "portable",
  6462. "shim"
  6463. ],
  6464. "support": {
  6465. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6466. },
  6467. "funding": [
  6468. {
  6469. "url": "https://symfony.com/sponsor",
  6470. "type": "custom"
  6471. },
  6472. {
  6473. "url": "https://github.com/fabpot",
  6474. "type": "github"
  6475. },
  6476. {
  6477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6478. "type": "tidelift"
  6479. }
  6480. ],
  6481. "time": "2024-01-29T20:11:03+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/service-contracts",
  6485. "version": "v3.5.0",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/service-contracts.git",
  6489. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6494. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6495. "shasum": ""
  6496. },
  6497. "require": {
  6498. "php": ">=8.1",
  6499. "psr/container": "^1.1|^2.0",
  6500. "symfony/deprecation-contracts": "^2.5|^3"
  6501. },
  6502. "conflict": {
  6503. "ext-psr": "<1.1|>=2"
  6504. },
  6505. "type": "library",
  6506. "extra": {
  6507. "branch-alias": {
  6508. "dev-main": "3.5-dev"
  6509. },
  6510. "thanks": {
  6511. "name": "symfony/contracts",
  6512. "url": "https://github.com/symfony/contracts"
  6513. }
  6514. },
  6515. "autoload": {
  6516. "psr-4": {
  6517. "Symfony\\Contracts\\Service\\": ""
  6518. },
  6519. "exclude-from-classmap": [
  6520. "/Test/"
  6521. ]
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Nicolas Grekas",
  6530. "email": "p@tchwork.com"
  6531. },
  6532. {
  6533. "name": "Symfony Community",
  6534. "homepage": "https://symfony.com/contributors"
  6535. }
  6536. ],
  6537. "description": "Generic abstractions related to writing services",
  6538. "homepage": "https://symfony.com",
  6539. "keywords": [
  6540. "abstractions",
  6541. "contracts",
  6542. "decoupling",
  6543. "interfaces",
  6544. "interoperability",
  6545. "standards"
  6546. ],
  6547. "support": {
  6548. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6549. },
  6550. "funding": [
  6551. {
  6552. "url": "https://symfony.com/sponsor",
  6553. "type": "custom"
  6554. },
  6555. {
  6556. "url": "https://github.com/fabpot",
  6557. "type": "github"
  6558. },
  6559. {
  6560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6561. "type": "tidelift"
  6562. }
  6563. ],
  6564. "time": "2024-04-18T09:32:20+00:00"
  6565. },
  6566. {
  6567. "name": "symfony/string",
  6568. "version": "v6.4.8",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/symfony/string.git",
  6572. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6577. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6578. "shasum": ""
  6579. },
  6580. "require": {
  6581. "php": ">=8.1",
  6582. "symfony/polyfill-ctype": "~1.8",
  6583. "symfony/polyfill-intl-grapheme": "~1.0",
  6584. "symfony/polyfill-intl-normalizer": "~1.0",
  6585. "symfony/polyfill-mbstring": "~1.0"
  6586. },
  6587. "conflict": {
  6588. "symfony/translation-contracts": "<2.5"
  6589. },
  6590. "require-dev": {
  6591. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6592. "symfony/http-client": "^5.4|^6.0|^7.0",
  6593. "symfony/intl": "^6.2|^7.0",
  6594. "symfony/translation-contracts": "^2.5|^3.0",
  6595. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6596. },
  6597. "type": "library",
  6598. "autoload": {
  6599. "files": [
  6600. "Resources/functions.php"
  6601. ],
  6602. "psr-4": {
  6603. "Symfony\\Component\\String\\": ""
  6604. },
  6605. "exclude-from-classmap": [
  6606. "/Tests/"
  6607. ]
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Nicolas Grekas",
  6616. "email": "p@tchwork.com"
  6617. },
  6618. {
  6619. "name": "Symfony Community",
  6620. "homepage": "https://symfony.com/contributors"
  6621. }
  6622. ],
  6623. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6624. "homepage": "https://symfony.com",
  6625. "keywords": [
  6626. "grapheme",
  6627. "i18n",
  6628. "string",
  6629. "unicode",
  6630. "utf-8",
  6631. "utf8"
  6632. ],
  6633. "support": {
  6634. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://symfony.com/sponsor",
  6639. "type": "custom"
  6640. },
  6641. {
  6642. "url": "https://github.com/fabpot",
  6643. "type": "github"
  6644. },
  6645. {
  6646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6647. "type": "tidelift"
  6648. }
  6649. ],
  6650. "time": "2024-05-31T14:49:08+00:00"
  6651. },
  6652. {
  6653. "name": "symfony/translation",
  6654. "version": "v6.4.8",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/symfony/translation.git",
  6658. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6663. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "php": ">=8.1",
  6668. "symfony/deprecation-contracts": "^2.5|^3",
  6669. "symfony/polyfill-mbstring": "~1.0",
  6670. "symfony/translation-contracts": "^2.5|^3.0"
  6671. },
  6672. "conflict": {
  6673. "symfony/config": "<5.4",
  6674. "symfony/console": "<5.4",
  6675. "symfony/dependency-injection": "<5.4",
  6676. "symfony/http-client-contracts": "<2.5",
  6677. "symfony/http-kernel": "<5.4",
  6678. "symfony/service-contracts": "<2.5",
  6679. "symfony/twig-bundle": "<5.4",
  6680. "symfony/yaml": "<5.4"
  6681. },
  6682. "provide": {
  6683. "symfony/translation-implementation": "2.3|3.0"
  6684. },
  6685. "require-dev": {
  6686. "nikic/php-parser": "^4.18|^5.0",
  6687. "psr/log": "^1|^2|^3",
  6688. "symfony/config": "^5.4|^6.0|^7.0",
  6689. "symfony/console": "^5.4|^6.0|^7.0",
  6690. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6691. "symfony/finder": "^5.4|^6.0|^7.0",
  6692. "symfony/http-client-contracts": "^2.5|^3.0",
  6693. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6694. "symfony/intl": "^5.4|^6.0|^7.0",
  6695. "symfony/polyfill-intl-icu": "^1.21",
  6696. "symfony/routing": "^5.4|^6.0|^7.0",
  6697. "symfony/service-contracts": "^2.5|^3",
  6698. "symfony/yaml": "^5.4|^6.0|^7.0"
  6699. },
  6700. "type": "library",
  6701. "autoload": {
  6702. "files": [
  6703. "Resources/functions.php"
  6704. ],
  6705. "psr-4": {
  6706. "Symfony\\Component\\Translation\\": ""
  6707. },
  6708. "exclude-from-classmap": [
  6709. "/Tests/"
  6710. ]
  6711. },
  6712. "notification-url": "https://packagist.org/downloads/",
  6713. "license": [
  6714. "MIT"
  6715. ],
  6716. "authors": [
  6717. {
  6718. "name": "Fabien Potencier",
  6719. "email": "fabien@symfony.com"
  6720. },
  6721. {
  6722. "name": "Symfony Community",
  6723. "homepage": "https://symfony.com/contributors"
  6724. }
  6725. ],
  6726. "description": "Provides tools to internationalize your application",
  6727. "homepage": "https://symfony.com",
  6728. "support": {
  6729. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6730. },
  6731. "funding": [
  6732. {
  6733. "url": "https://symfony.com/sponsor",
  6734. "type": "custom"
  6735. },
  6736. {
  6737. "url": "https://github.com/fabpot",
  6738. "type": "github"
  6739. },
  6740. {
  6741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6742. "type": "tidelift"
  6743. }
  6744. ],
  6745. "time": "2024-05-31T14:49:08+00:00"
  6746. },
  6747. {
  6748. "name": "symfony/translation-contracts",
  6749. "version": "v3.5.0",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/symfony/translation-contracts.git",
  6753. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6758. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6759. "shasum": ""
  6760. },
  6761. "require": {
  6762. "php": ">=8.1"
  6763. },
  6764. "type": "library",
  6765. "extra": {
  6766. "branch-alias": {
  6767. "dev-main": "3.5-dev"
  6768. },
  6769. "thanks": {
  6770. "name": "symfony/contracts",
  6771. "url": "https://github.com/symfony/contracts"
  6772. }
  6773. },
  6774. "autoload": {
  6775. "psr-4": {
  6776. "Symfony\\Contracts\\Translation\\": ""
  6777. },
  6778. "exclude-from-classmap": [
  6779. "/Test/"
  6780. ]
  6781. },
  6782. "notification-url": "https://packagist.org/downloads/",
  6783. "license": [
  6784. "MIT"
  6785. ],
  6786. "authors": [
  6787. {
  6788. "name": "Nicolas Grekas",
  6789. "email": "p@tchwork.com"
  6790. },
  6791. {
  6792. "name": "Symfony Community",
  6793. "homepage": "https://symfony.com/contributors"
  6794. }
  6795. ],
  6796. "description": "Generic abstractions related to translation",
  6797. "homepage": "https://symfony.com",
  6798. "keywords": [
  6799. "abstractions",
  6800. "contracts",
  6801. "decoupling",
  6802. "interfaces",
  6803. "interoperability",
  6804. "standards"
  6805. ],
  6806. "support": {
  6807. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://symfony.com/sponsor",
  6812. "type": "custom"
  6813. },
  6814. {
  6815. "url": "https://github.com/fabpot",
  6816. "type": "github"
  6817. },
  6818. {
  6819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6820. "type": "tidelift"
  6821. }
  6822. ],
  6823. "time": "2024-04-18T09:32:20+00:00"
  6824. },
  6825. {
  6826. "name": "vlucas/phpdotenv",
  6827. "version": "v5.6.0",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://github.com/vlucas/phpdotenv.git",
  6831. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6832. },
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6836. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "ext-pcre": "*",
  6841. "graham-campbell/result-type": "^1.1.2",
  6842. "php": "^7.2.5 || ^8.0",
  6843. "phpoption/phpoption": "^1.9.2",
  6844. "symfony/polyfill-ctype": "^1.24",
  6845. "symfony/polyfill-mbstring": "^1.24",
  6846. "symfony/polyfill-php80": "^1.24"
  6847. },
  6848. "require-dev": {
  6849. "bamarni/composer-bin-plugin": "^1.8.2",
  6850. "ext-filter": "*",
  6851. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6852. },
  6853. "suggest": {
  6854. "ext-filter": "Required to use the boolean validator."
  6855. },
  6856. "type": "library",
  6857. "extra": {
  6858. "bamarni-bin": {
  6859. "bin-links": true,
  6860. "forward-command": true
  6861. },
  6862. "branch-alias": {
  6863. "dev-master": "5.6-dev"
  6864. }
  6865. },
  6866. "autoload": {
  6867. "psr-4": {
  6868. "Dotenv\\": "src/"
  6869. }
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "license": [
  6873. "BSD-3-Clause"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "Graham Campbell",
  6878. "email": "hello@gjcampbell.co.uk",
  6879. "homepage": "https://github.com/GrahamCampbell"
  6880. },
  6881. {
  6882. "name": "Vance Lucas",
  6883. "email": "vance@vancelucas.com",
  6884. "homepage": "https://github.com/vlucas"
  6885. }
  6886. ],
  6887. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6888. "keywords": [
  6889. "dotenv",
  6890. "env",
  6891. "environment"
  6892. ],
  6893. "support": {
  6894. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6895. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6896. },
  6897. "funding": [
  6898. {
  6899. "url": "https://github.com/GrahamCampbell",
  6900. "type": "github"
  6901. },
  6902. {
  6903. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6904. "type": "tidelift"
  6905. }
  6906. ],
  6907. "time": "2023-11-12T22:43:29+00:00"
  6908. }
  6909. ],
  6910. "packages-dev": [
  6911. {
  6912. "name": "clue/ndjson-react",
  6913. "version": "v1.3.0",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/clue/reactphp-ndjson.git",
  6917. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6922. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "php": ">=5.3",
  6927. "react/stream": "^1.2"
  6928. },
  6929. "require-dev": {
  6930. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6931. "react/event-loop": "^1.2"
  6932. },
  6933. "type": "library",
  6934. "autoload": {
  6935. "psr-4": {
  6936. "Clue\\React\\NDJson\\": "src/"
  6937. }
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Christian Lück",
  6946. "email": "christian@clue.engineering"
  6947. }
  6948. ],
  6949. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6950. "homepage": "https://github.com/clue/reactphp-ndjson",
  6951. "keywords": [
  6952. "NDJSON",
  6953. "json",
  6954. "jsonlines",
  6955. "newline",
  6956. "reactphp",
  6957. "streaming"
  6958. ],
  6959. "support": {
  6960. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6961. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6962. },
  6963. "funding": [
  6964. {
  6965. "url": "https://clue.engineering/support",
  6966. "type": "custom"
  6967. },
  6968. {
  6969. "url": "https://github.com/clue",
  6970. "type": "github"
  6971. }
  6972. ],
  6973. "time": "2022-12-23T10:58:28+00:00"
  6974. },
  6975. {
  6976. "name": "composer/pcre",
  6977. "version": "3.1.4",
  6978. "source": {
  6979. "type": "git",
  6980. "url": "https://github.com/composer/pcre.git",
  6981. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6982. },
  6983. "dist": {
  6984. "type": "zip",
  6985. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6986. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6987. "shasum": ""
  6988. },
  6989. "require": {
  6990. "php": "^7.4 || ^8.0"
  6991. },
  6992. "require-dev": {
  6993. "phpstan/phpstan": "^1.3",
  6994. "phpstan/phpstan-strict-rules": "^1.1",
  6995. "symfony/phpunit-bridge": "^5"
  6996. },
  6997. "type": "library",
  6998. "extra": {
  6999. "branch-alias": {
  7000. "dev-main": "3.x-dev"
  7001. }
  7002. },
  7003. "autoload": {
  7004. "psr-4": {
  7005. "Composer\\Pcre\\": "src"
  7006. }
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "MIT"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Jordi Boggiano",
  7015. "email": "j.boggiano@seld.be",
  7016. "homepage": "http://seld.be"
  7017. }
  7018. ],
  7019. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7020. "keywords": [
  7021. "PCRE",
  7022. "preg",
  7023. "regex",
  7024. "regular expression"
  7025. ],
  7026. "support": {
  7027. "issues": "https://github.com/composer/pcre/issues",
  7028. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7029. },
  7030. "funding": [
  7031. {
  7032. "url": "https://packagist.com",
  7033. "type": "custom"
  7034. },
  7035. {
  7036. "url": "https://github.com/composer",
  7037. "type": "github"
  7038. },
  7039. {
  7040. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7041. "type": "tidelift"
  7042. }
  7043. ],
  7044. "time": "2024-05-27T13:40:54+00:00"
  7045. },
  7046. {
  7047. "name": "composer/semver",
  7048. "version": "3.4.0",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/composer/semver.git",
  7052. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7057. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": "^5.3.2 || ^7.0 || ^8.0"
  7062. },
  7063. "require-dev": {
  7064. "phpstan/phpstan": "^1.4",
  7065. "symfony/phpunit-bridge": "^4.2 || ^5"
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-main": "3.x-dev"
  7071. }
  7072. },
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Composer\\Semver\\": "src"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Nils Adermann",
  7085. "email": "naderman@naderman.de",
  7086. "homepage": "http://www.naderman.de"
  7087. },
  7088. {
  7089. "name": "Jordi Boggiano",
  7090. "email": "j.boggiano@seld.be",
  7091. "homepage": "http://seld.be"
  7092. },
  7093. {
  7094. "name": "Rob Bast",
  7095. "email": "rob.bast@gmail.com",
  7096. "homepage": "http://robbast.nl"
  7097. }
  7098. ],
  7099. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7100. "keywords": [
  7101. "semantic",
  7102. "semver",
  7103. "validation",
  7104. "versioning"
  7105. ],
  7106. "support": {
  7107. "irc": "ircs://irc.libera.chat:6697/composer",
  7108. "issues": "https://github.com/composer/semver/issues",
  7109. "source": "https://github.com/composer/semver/tree/3.4.0"
  7110. },
  7111. "funding": [
  7112. {
  7113. "url": "https://packagist.com",
  7114. "type": "custom"
  7115. },
  7116. {
  7117. "url": "https://github.com/composer",
  7118. "type": "github"
  7119. },
  7120. {
  7121. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7122. "type": "tidelift"
  7123. }
  7124. ],
  7125. "time": "2023-08-31T09:50:34+00:00"
  7126. },
  7127. {
  7128. "name": "composer/xdebug-handler",
  7129. "version": "3.0.5",
  7130. "source": {
  7131. "type": "git",
  7132. "url": "https://github.com/composer/xdebug-handler.git",
  7133. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7134. },
  7135. "dist": {
  7136. "type": "zip",
  7137. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7138. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7139. "shasum": ""
  7140. },
  7141. "require": {
  7142. "composer/pcre": "^1 || ^2 || ^3",
  7143. "php": "^7.2.5 || ^8.0",
  7144. "psr/log": "^1 || ^2 || ^3"
  7145. },
  7146. "require-dev": {
  7147. "phpstan/phpstan": "^1.0",
  7148. "phpstan/phpstan-strict-rules": "^1.1",
  7149. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7150. },
  7151. "type": "library",
  7152. "autoload": {
  7153. "psr-4": {
  7154. "Composer\\XdebugHandler\\": "src"
  7155. }
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "John Stevenson",
  7164. "email": "john-stevenson@blueyonder.co.uk"
  7165. }
  7166. ],
  7167. "description": "Restarts a process without Xdebug.",
  7168. "keywords": [
  7169. "Xdebug",
  7170. "performance"
  7171. ],
  7172. "support": {
  7173. "irc": "ircs://irc.libera.chat:6697/composer",
  7174. "issues": "https://github.com/composer/xdebug-handler/issues",
  7175. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7176. },
  7177. "funding": [
  7178. {
  7179. "url": "https://packagist.com",
  7180. "type": "custom"
  7181. },
  7182. {
  7183. "url": "https://github.com/composer",
  7184. "type": "github"
  7185. },
  7186. {
  7187. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7188. "type": "tidelift"
  7189. }
  7190. ],
  7191. "time": "2024-05-06T16:37:16+00:00"
  7192. },
  7193. {
  7194. "name": "evenement/evenement",
  7195. "version": "v3.0.2",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://github.com/igorw/evenement.git",
  7199. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7200. },
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7204. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7205. "shasum": ""
  7206. },
  7207. "require": {
  7208. "php": ">=7.0"
  7209. },
  7210. "require-dev": {
  7211. "phpunit/phpunit": "^9 || ^6"
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "psr-4": {
  7216. "Evenement\\": "src/"
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "license": [
  7221. "MIT"
  7222. ],
  7223. "authors": [
  7224. {
  7225. "name": "Igor Wiedler",
  7226. "email": "igor@wiedler.ch"
  7227. }
  7228. ],
  7229. "description": "Événement is a very simple event dispatching library for PHP",
  7230. "keywords": [
  7231. "event-dispatcher",
  7232. "event-emitter"
  7233. ],
  7234. "support": {
  7235. "issues": "https://github.com/igorw/evenement/issues",
  7236. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7237. },
  7238. "time": "2023-08-08T05:53:35+00:00"
  7239. },
  7240. {
  7241. "name": "fidry/cpu-core-counter",
  7242. "version": "1.1.0",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7246. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7251. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7252. "shasum": ""
  7253. },
  7254. "require": {
  7255. "php": "^7.2 || ^8.0"
  7256. },
  7257. "require-dev": {
  7258. "fidry/makefile": "^0.2.0",
  7259. "fidry/php-cs-fixer-config": "^1.1.2",
  7260. "phpstan/extension-installer": "^1.2.0",
  7261. "phpstan/phpstan": "^1.9.2",
  7262. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7263. "phpstan/phpstan-phpunit": "^1.2.2",
  7264. "phpstan/phpstan-strict-rules": "^1.4.4",
  7265. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7266. "webmozarts/strict-phpunit": "^7.5"
  7267. },
  7268. "type": "library",
  7269. "autoload": {
  7270. "psr-4": {
  7271. "Fidry\\CpuCoreCounter\\": "src/"
  7272. }
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Théo FIDRY",
  7281. "email": "theo.fidry@gmail.com"
  7282. }
  7283. ],
  7284. "description": "Tiny utility to get the number of CPU cores.",
  7285. "keywords": [
  7286. "CPU",
  7287. "core"
  7288. ],
  7289. "support": {
  7290. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7291. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7292. },
  7293. "funding": [
  7294. {
  7295. "url": "https://github.com/theofidry",
  7296. "type": "github"
  7297. }
  7298. ],
  7299. "time": "2024-02-07T09:43:46+00:00"
  7300. },
  7301. {
  7302. "name": "friendsofphp/php-cs-fixer",
  7303. "version": "v3.58.1",
  7304. "source": {
  7305. "type": "git",
  7306. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7307. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7308. },
  7309. "dist": {
  7310. "type": "zip",
  7311. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7312. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7313. "shasum": ""
  7314. },
  7315. "require": {
  7316. "clue/ndjson-react": "^1.0",
  7317. "composer/semver": "^3.4",
  7318. "composer/xdebug-handler": "^3.0.3",
  7319. "ext-filter": "*",
  7320. "ext-json": "*",
  7321. "ext-tokenizer": "*",
  7322. "fidry/cpu-core-counter": "^1.0",
  7323. "php": "^7.4 || ^8.0",
  7324. "react/child-process": "^0.6.5",
  7325. "react/event-loop": "^1.0",
  7326. "react/promise": "^2.0 || ^3.0",
  7327. "react/socket": "^1.0",
  7328. "react/stream": "^1.0",
  7329. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7330. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7331. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7332. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7333. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7334. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7335. "symfony/polyfill-mbstring": "^1.28",
  7336. "symfony/polyfill-php80": "^1.28",
  7337. "symfony/polyfill-php81": "^1.28",
  7338. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7339. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7340. },
  7341. "require-dev": {
  7342. "facile-it/paraunit": "^1.3 || ^2.0",
  7343. "infection/infection": "^0.27.11",
  7344. "justinrainbow/json-schema": "^5.2",
  7345. "keradus/cli-executor": "^2.1",
  7346. "mikey179/vfsstream": "^1.6.11",
  7347. "php-coveralls/php-coveralls": "^2.7",
  7348. "php-cs-fixer/accessible-object": "^1.1",
  7349. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7350. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7351. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7352. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7353. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7354. },
  7355. "suggest": {
  7356. "ext-dom": "For handling output formats in XML",
  7357. "ext-mbstring": "For handling non-UTF8 characters."
  7358. },
  7359. "bin": [
  7360. "php-cs-fixer"
  7361. ],
  7362. "type": "application",
  7363. "autoload": {
  7364. "psr-4": {
  7365. "PhpCsFixer\\": "src/"
  7366. }
  7367. },
  7368. "notification-url": "https://packagist.org/downloads/",
  7369. "license": [
  7370. "MIT"
  7371. ],
  7372. "authors": [
  7373. {
  7374. "name": "Fabien Potencier",
  7375. "email": "fabien@symfony.com"
  7376. },
  7377. {
  7378. "name": "Dariusz Rumiński",
  7379. "email": "dariusz.ruminski@gmail.com"
  7380. }
  7381. ],
  7382. "description": "A tool to automatically fix PHP code style",
  7383. "keywords": [
  7384. "Static code analysis",
  7385. "fixer",
  7386. "standards",
  7387. "static analysis"
  7388. ],
  7389. "support": {
  7390. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7391. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7392. },
  7393. "funding": [
  7394. {
  7395. "url": "https://github.com/keradus",
  7396. "type": "github"
  7397. }
  7398. ],
  7399. "time": "2024-05-29T16:39:07+00:00"
  7400. },
  7401. {
  7402. "name": "hamcrest/hamcrest-php",
  7403. "version": "v2.0.1",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7407. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7412. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": "^5.3|^7.0|^8.0"
  7417. },
  7418. "replace": {
  7419. "cordoval/hamcrest-php": "*",
  7420. "davedevelopment/hamcrest-php": "*",
  7421. "kodova/hamcrest-php": "*"
  7422. },
  7423. "require-dev": {
  7424. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7425. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7426. },
  7427. "type": "library",
  7428. "extra": {
  7429. "branch-alias": {
  7430. "dev-master": "2.1-dev"
  7431. }
  7432. },
  7433. "autoload": {
  7434. "classmap": [
  7435. "hamcrest"
  7436. ]
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "BSD-3-Clause"
  7441. ],
  7442. "description": "This is the PHP port of Hamcrest Matchers",
  7443. "keywords": [
  7444. "test"
  7445. ],
  7446. "support": {
  7447. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7448. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7449. },
  7450. "time": "2020-07-09T08:09:16+00:00"
  7451. },
  7452. {
  7453. "name": "hyperf/devtool",
  7454. "version": "v3.1.19",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/hyperf/devtool.git",
  7458. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7463. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "hyperf/code-parser": "~3.1.0",
  7468. "hyperf/command": "~3.1.0",
  7469. "hyperf/contract": "~3.1.0",
  7470. "hyperf/di": "~3.1.0",
  7471. "hyperf/support": "~3.1.0",
  7472. "hyperf/utils": "~3.1.0",
  7473. "php": ">=8.1"
  7474. },
  7475. "type": "library",
  7476. "extra": {
  7477. "branch-alias": {
  7478. "dev-master": "3.1-dev"
  7479. },
  7480. "hyperf": {
  7481. "config": "Hyperf\\Devtool\\ConfigProvider"
  7482. }
  7483. },
  7484. "autoload": {
  7485. "psr-4": {
  7486. "Hyperf\\Devtool\\": "src/"
  7487. }
  7488. },
  7489. "notification-url": "https://packagist.org/downloads/",
  7490. "license": [
  7491. "MIT"
  7492. ],
  7493. "description": "A Devtool for Hyperf.",
  7494. "homepage": "https://hyperf.io",
  7495. "keywords": [
  7496. "dev",
  7497. "devtool",
  7498. "hyperf",
  7499. "php",
  7500. "swoole"
  7501. ],
  7502. "support": {
  7503. "docs": "https://hyperf.wiki",
  7504. "issues": "https://github.com/hyperf/hyperf/issues",
  7505. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7506. "source": "https://github.com/hyperf/hyperf"
  7507. },
  7508. "funding": [
  7509. {
  7510. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7511. "type": "custom"
  7512. },
  7513. {
  7514. "url": "https://opencollective.com/hyperf",
  7515. "type": "open_collective"
  7516. }
  7517. ],
  7518. "time": "2024-04-13T06:53:08+00:00"
  7519. },
  7520. {
  7521. "name": "hyperf/testing",
  7522. "version": "v3.1.21",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/hyperf/testing.git",
  7526. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7531. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7532. "shasum": ""
  7533. },
  7534. "require": {
  7535. "hyperf/codec": "~3.1.0",
  7536. "hyperf/collection": "~3.1.0",
  7537. "hyperf/contract": "~3.1.0",
  7538. "hyperf/coroutine": "~3.1.0",
  7539. "hyperf/http-message": "~3.1.0",
  7540. "hyperf/http-server": "~3.1.0",
  7541. "hyperf/support": "~3.1.0",
  7542. "hyperf/utils": "~3.1.0",
  7543. "php": ">=8.1",
  7544. "phpunit/phpunit": "^10.0",
  7545. "psr/container": "^1.0|^2.0",
  7546. "symfony/http-foundation": "^5.4|^6.0"
  7547. },
  7548. "suggest": {
  7549. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7550. },
  7551. "bin": [
  7552. "co-phpunit"
  7553. ],
  7554. "type": "library",
  7555. "extra": {
  7556. "branch-alias": {
  7557. "dev-master": "3.1-dev"
  7558. }
  7559. },
  7560. "autoload": {
  7561. "psr-4": {
  7562. "Hyperf\\Testing\\": "src/"
  7563. }
  7564. },
  7565. "notification-url": "https://packagist.org/downloads/",
  7566. "license": [
  7567. "MIT"
  7568. ],
  7569. "description": "Testing for hyperf",
  7570. "keywords": [
  7571. "dev",
  7572. "php",
  7573. "swoole",
  7574. "testing"
  7575. ],
  7576. "support": {
  7577. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7578. },
  7579. "funding": [
  7580. {
  7581. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7582. "type": "custom"
  7583. },
  7584. {
  7585. "url": "https://opencollective.com/hyperf",
  7586. "type": "open_collective"
  7587. }
  7588. ],
  7589. "time": "2024-05-07T05:34:51+00:00"
  7590. },
  7591. {
  7592. "name": "hyperf/watcher",
  7593. "version": "v3.1.21",
  7594. "source": {
  7595. "type": "git",
  7596. "url": "https://github.com/hyperf/watcher.git",
  7597. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7598. },
  7599. "dist": {
  7600. "type": "zip",
  7601. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7602. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7603. "shasum": ""
  7604. },
  7605. "require": {
  7606. "ext-posix": "*",
  7607. "hyperf/codec": "~3.1.0",
  7608. "hyperf/command": "~3.1.0",
  7609. "hyperf/di": "~3.1.0",
  7610. "hyperf/framework": "~3.1.0",
  7611. "hyperf/support": "~3.1.0",
  7612. "php": ">=8.1"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "3.1-dev"
  7618. },
  7619. "hyperf": {
  7620. "config": "Hyperf\\Watcher\\ConfigProvider"
  7621. }
  7622. },
  7623. "autoload": {
  7624. "files": [
  7625. "src/Functions.php"
  7626. ],
  7627. "psr-4": {
  7628. "Hyperf\\Watcher\\": "src/"
  7629. }
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "MIT"
  7634. ],
  7635. "description": "Hot reload watcher for Hyperf",
  7636. "keywords": [
  7637. "dev",
  7638. "hyperf",
  7639. "php"
  7640. ],
  7641. "support": {
  7642. "issues": "https://github.com/hyperf/watcher/issues",
  7643. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7644. },
  7645. "funding": [
  7646. {
  7647. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7648. "type": "custom"
  7649. },
  7650. {
  7651. "url": "https://opencollective.com/hyperf",
  7652. "type": "open_collective"
  7653. }
  7654. ],
  7655. "time": "2024-05-09T13:40:44+00:00"
  7656. },
  7657. {
  7658. "name": "mockery/mockery",
  7659. "version": "1.6.12",
  7660. "source": {
  7661. "type": "git",
  7662. "url": "https://github.com/mockery/mockery.git",
  7663. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7664. },
  7665. "dist": {
  7666. "type": "zip",
  7667. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7668. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7669. "shasum": ""
  7670. },
  7671. "require": {
  7672. "hamcrest/hamcrest-php": "^2.0.1",
  7673. "lib-pcre": ">=7.0",
  7674. "php": ">=7.3"
  7675. },
  7676. "conflict": {
  7677. "phpunit/phpunit": "<8.0"
  7678. },
  7679. "require-dev": {
  7680. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7681. "symplify/easy-coding-standard": "^12.1.14"
  7682. },
  7683. "type": "library",
  7684. "autoload": {
  7685. "files": [
  7686. "library/helpers.php",
  7687. "library/Mockery.php"
  7688. ],
  7689. "psr-4": {
  7690. "Mockery\\": "library/Mockery"
  7691. }
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "BSD-3-Clause"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Pádraic Brady",
  7700. "email": "padraic.brady@gmail.com",
  7701. "homepage": "https://github.com/padraic",
  7702. "role": "Author"
  7703. },
  7704. {
  7705. "name": "Dave Marshall",
  7706. "email": "dave.marshall@atstsolutions.co.uk",
  7707. "homepage": "https://davedevelopment.co.uk",
  7708. "role": "Developer"
  7709. },
  7710. {
  7711. "name": "Nathanael Esayeas",
  7712. "email": "nathanael.esayeas@protonmail.com",
  7713. "homepage": "https://github.com/ghostwriter",
  7714. "role": "Lead Developer"
  7715. }
  7716. ],
  7717. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7718. "homepage": "https://github.com/mockery/mockery",
  7719. "keywords": [
  7720. "BDD",
  7721. "TDD",
  7722. "library",
  7723. "mock",
  7724. "mock objects",
  7725. "mockery",
  7726. "stub",
  7727. "test",
  7728. "test double",
  7729. "testing"
  7730. ],
  7731. "support": {
  7732. "docs": "https://docs.mockery.io/",
  7733. "issues": "https://github.com/mockery/mockery/issues",
  7734. "rss": "https://github.com/mockery/mockery/releases.atom",
  7735. "security": "https://github.com/mockery/mockery/security/advisories",
  7736. "source": "https://github.com/mockery/mockery"
  7737. },
  7738. "time": "2024-05-16T03:13:13+00:00"
  7739. },
  7740. {
  7741. "name": "myclabs/deep-copy",
  7742. "version": "1.11.1",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/myclabs/DeepCopy.git",
  7746. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7751. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "php": "^7.1 || ^8.0"
  7756. },
  7757. "conflict": {
  7758. "doctrine/collections": "<1.6.8",
  7759. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7760. },
  7761. "require-dev": {
  7762. "doctrine/collections": "^1.6.8",
  7763. "doctrine/common": "^2.13.3 || ^3.2.2",
  7764. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7765. },
  7766. "type": "library",
  7767. "autoload": {
  7768. "files": [
  7769. "src/DeepCopy/deep_copy.php"
  7770. ],
  7771. "psr-4": {
  7772. "DeepCopy\\": "src/DeepCopy/"
  7773. }
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "MIT"
  7778. ],
  7779. "description": "Create deep copies (clones) of your objects",
  7780. "keywords": [
  7781. "clone",
  7782. "copy",
  7783. "duplicate",
  7784. "object",
  7785. "object graph"
  7786. ],
  7787. "support": {
  7788. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7789. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7790. },
  7791. "funding": [
  7792. {
  7793. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7794. "type": "tidelift"
  7795. }
  7796. ],
  7797. "time": "2023-03-08T13:26:56+00:00"
  7798. },
  7799. {
  7800. "name": "phar-io/manifest",
  7801. "version": "2.0.4",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/phar-io/manifest.git",
  7805. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7810. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7811. "shasum": ""
  7812. },
  7813. "require": {
  7814. "ext-dom": "*",
  7815. "ext-libxml": "*",
  7816. "ext-phar": "*",
  7817. "ext-xmlwriter": "*",
  7818. "phar-io/version": "^3.0.1",
  7819. "php": "^7.2 || ^8.0"
  7820. },
  7821. "type": "library",
  7822. "extra": {
  7823. "branch-alias": {
  7824. "dev-master": "2.0.x-dev"
  7825. }
  7826. },
  7827. "autoload": {
  7828. "classmap": [
  7829. "src/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "BSD-3-Clause"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Arne Blankerts",
  7839. "email": "arne@blankerts.de",
  7840. "role": "Developer"
  7841. },
  7842. {
  7843. "name": "Sebastian Heuer",
  7844. "email": "sebastian@phpeople.de",
  7845. "role": "Developer"
  7846. },
  7847. {
  7848. "name": "Sebastian Bergmann",
  7849. "email": "sebastian@phpunit.de",
  7850. "role": "Developer"
  7851. }
  7852. ],
  7853. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7854. "support": {
  7855. "issues": "https://github.com/phar-io/manifest/issues",
  7856. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://github.com/theseer",
  7861. "type": "github"
  7862. }
  7863. ],
  7864. "time": "2024-03-03T12:33:53+00:00"
  7865. },
  7866. {
  7867. "name": "phar-io/version",
  7868. "version": "3.2.1",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/phar-io/version.git",
  7872. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7877. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": "^7.2 || ^8.0"
  7882. },
  7883. "type": "library",
  7884. "autoload": {
  7885. "classmap": [
  7886. "src/"
  7887. ]
  7888. },
  7889. "notification-url": "https://packagist.org/downloads/",
  7890. "license": [
  7891. "BSD-3-Clause"
  7892. ],
  7893. "authors": [
  7894. {
  7895. "name": "Arne Blankerts",
  7896. "email": "arne@blankerts.de",
  7897. "role": "Developer"
  7898. },
  7899. {
  7900. "name": "Sebastian Heuer",
  7901. "email": "sebastian@phpeople.de",
  7902. "role": "Developer"
  7903. },
  7904. {
  7905. "name": "Sebastian Bergmann",
  7906. "email": "sebastian@phpunit.de",
  7907. "role": "Developer"
  7908. }
  7909. ],
  7910. "description": "Library for handling version information and constraints",
  7911. "support": {
  7912. "issues": "https://github.com/phar-io/version/issues",
  7913. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7914. },
  7915. "time": "2022-02-21T01:04:05+00:00"
  7916. },
  7917. {
  7918. "name": "phpstan/phpstan",
  7919. "version": "1.11.3",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/phpstan/phpstan.git",
  7923. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7928. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "php": "^7.2|^8.0"
  7933. },
  7934. "conflict": {
  7935. "phpstan/phpstan-shim": "*"
  7936. },
  7937. "bin": [
  7938. "phpstan",
  7939. "phpstan.phar"
  7940. ],
  7941. "type": "library",
  7942. "autoload": {
  7943. "files": [
  7944. "bootstrap.php"
  7945. ]
  7946. },
  7947. "notification-url": "https://packagist.org/downloads/",
  7948. "license": [
  7949. "MIT"
  7950. ],
  7951. "description": "PHPStan - PHP Static Analysis Tool",
  7952. "keywords": [
  7953. "dev",
  7954. "static analysis"
  7955. ],
  7956. "support": {
  7957. "docs": "https://phpstan.org/user-guide/getting-started",
  7958. "forum": "https://github.com/phpstan/phpstan/discussions",
  7959. "issues": "https://github.com/phpstan/phpstan/issues",
  7960. "security": "https://github.com/phpstan/phpstan/security/policy",
  7961. "source": "https://github.com/phpstan/phpstan-src"
  7962. },
  7963. "funding": [
  7964. {
  7965. "url": "https://github.com/ondrejmirtes",
  7966. "type": "github"
  7967. },
  7968. {
  7969. "url": "https://github.com/phpstan",
  7970. "type": "github"
  7971. }
  7972. ],
  7973. "time": "2024-05-31T13:53:37+00:00"
  7974. },
  7975. {
  7976. "name": "phpunit/php-code-coverage",
  7977. "version": "10.1.14",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7981. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7986. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "ext-dom": "*",
  7991. "ext-libxml": "*",
  7992. "ext-xmlwriter": "*",
  7993. "nikic/php-parser": "^4.18 || ^5.0",
  7994. "php": ">=8.1",
  7995. "phpunit/php-file-iterator": "^4.0",
  7996. "phpunit/php-text-template": "^3.0",
  7997. "sebastian/code-unit-reverse-lookup": "^3.0",
  7998. "sebastian/complexity": "^3.0",
  7999. "sebastian/environment": "^6.0",
  8000. "sebastian/lines-of-code": "^2.0",
  8001. "sebastian/version": "^4.0",
  8002. "theseer/tokenizer": "^1.2.0"
  8003. },
  8004. "require-dev": {
  8005. "phpunit/phpunit": "^10.1"
  8006. },
  8007. "suggest": {
  8008. "ext-pcov": "PHP extension that provides line coverage",
  8009. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-main": "10.1-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "classmap": [
  8019. "src/"
  8020. ]
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "BSD-3-Clause"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Sebastian Bergmann",
  8029. "email": "sebastian@phpunit.de",
  8030. "role": "lead"
  8031. }
  8032. ],
  8033. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8034. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8035. "keywords": [
  8036. "coverage",
  8037. "testing",
  8038. "xunit"
  8039. ],
  8040. "support": {
  8041. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8042. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8043. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8044. },
  8045. "funding": [
  8046. {
  8047. "url": "https://github.com/sebastianbergmann",
  8048. "type": "github"
  8049. }
  8050. ],
  8051. "time": "2024-03-12T15:33:41+00:00"
  8052. },
  8053. {
  8054. "name": "phpunit/php-file-iterator",
  8055. "version": "4.1.0",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8059. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8064. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "php": ">=8.1"
  8069. },
  8070. "require-dev": {
  8071. "phpunit/phpunit": "^10.0"
  8072. },
  8073. "type": "library",
  8074. "extra": {
  8075. "branch-alias": {
  8076. "dev-main": "4.0-dev"
  8077. }
  8078. },
  8079. "autoload": {
  8080. "classmap": [
  8081. "src/"
  8082. ]
  8083. },
  8084. "notification-url": "https://packagist.org/downloads/",
  8085. "license": [
  8086. "BSD-3-Clause"
  8087. ],
  8088. "authors": [
  8089. {
  8090. "name": "Sebastian Bergmann",
  8091. "email": "sebastian@phpunit.de",
  8092. "role": "lead"
  8093. }
  8094. ],
  8095. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8096. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8097. "keywords": [
  8098. "filesystem",
  8099. "iterator"
  8100. ],
  8101. "support": {
  8102. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8103. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8104. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8105. },
  8106. "funding": [
  8107. {
  8108. "url": "https://github.com/sebastianbergmann",
  8109. "type": "github"
  8110. }
  8111. ],
  8112. "time": "2023-08-31T06:24:48+00:00"
  8113. },
  8114. {
  8115. "name": "phpunit/php-invoker",
  8116. "version": "4.0.0",
  8117. "source": {
  8118. "type": "git",
  8119. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8120. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8121. },
  8122. "dist": {
  8123. "type": "zip",
  8124. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8125. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8126. "shasum": ""
  8127. },
  8128. "require": {
  8129. "php": ">=8.1"
  8130. },
  8131. "require-dev": {
  8132. "ext-pcntl": "*",
  8133. "phpunit/phpunit": "^10.0"
  8134. },
  8135. "suggest": {
  8136. "ext-pcntl": "*"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-main": "4.0-dev"
  8142. }
  8143. },
  8144. "autoload": {
  8145. "classmap": [
  8146. "src/"
  8147. ]
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "BSD-3-Clause"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "Sebastian Bergmann",
  8156. "email": "sebastian@phpunit.de",
  8157. "role": "lead"
  8158. }
  8159. ],
  8160. "description": "Invoke callables with a timeout",
  8161. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8162. "keywords": [
  8163. "process"
  8164. ],
  8165. "support": {
  8166. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8167. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8168. },
  8169. "funding": [
  8170. {
  8171. "url": "https://github.com/sebastianbergmann",
  8172. "type": "github"
  8173. }
  8174. ],
  8175. "time": "2023-02-03T06:56:09+00:00"
  8176. },
  8177. {
  8178. "name": "phpunit/php-text-template",
  8179. "version": "3.0.1",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8183. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8188. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": ">=8.1"
  8193. },
  8194. "require-dev": {
  8195. "phpunit/phpunit": "^10.0"
  8196. },
  8197. "type": "library",
  8198. "extra": {
  8199. "branch-alias": {
  8200. "dev-main": "3.0-dev"
  8201. }
  8202. },
  8203. "autoload": {
  8204. "classmap": [
  8205. "src/"
  8206. ]
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "BSD-3-Clause"
  8211. ],
  8212. "authors": [
  8213. {
  8214. "name": "Sebastian Bergmann",
  8215. "email": "sebastian@phpunit.de",
  8216. "role": "lead"
  8217. }
  8218. ],
  8219. "description": "Simple template engine.",
  8220. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8221. "keywords": [
  8222. "template"
  8223. ],
  8224. "support": {
  8225. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8226. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8227. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8228. },
  8229. "funding": [
  8230. {
  8231. "url": "https://github.com/sebastianbergmann",
  8232. "type": "github"
  8233. }
  8234. ],
  8235. "time": "2023-08-31T14:07:24+00:00"
  8236. },
  8237. {
  8238. "name": "phpunit/php-timer",
  8239. "version": "6.0.0",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8243. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8248. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "php": ">=8.1"
  8253. },
  8254. "require-dev": {
  8255. "phpunit/phpunit": "^10.0"
  8256. },
  8257. "type": "library",
  8258. "extra": {
  8259. "branch-alias": {
  8260. "dev-main": "6.0-dev"
  8261. }
  8262. },
  8263. "autoload": {
  8264. "classmap": [
  8265. "src/"
  8266. ]
  8267. },
  8268. "notification-url": "https://packagist.org/downloads/",
  8269. "license": [
  8270. "BSD-3-Clause"
  8271. ],
  8272. "authors": [
  8273. {
  8274. "name": "Sebastian Bergmann",
  8275. "email": "sebastian@phpunit.de",
  8276. "role": "lead"
  8277. }
  8278. ],
  8279. "description": "Utility class for timing",
  8280. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8281. "keywords": [
  8282. "timer"
  8283. ],
  8284. "support": {
  8285. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8286. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8287. },
  8288. "funding": [
  8289. {
  8290. "url": "https://github.com/sebastianbergmann",
  8291. "type": "github"
  8292. }
  8293. ],
  8294. "time": "2023-02-03T06:57:52+00:00"
  8295. },
  8296. {
  8297. "name": "phpunit/phpunit",
  8298. "version": "10.5.20",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8302. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8307. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8308. "shasum": ""
  8309. },
  8310. "require": {
  8311. "ext-dom": "*",
  8312. "ext-json": "*",
  8313. "ext-libxml": "*",
  8314. "ext-mbstring": "*",
  8315. "ext-xml": "*",
  8316. "ext-xmlwriter": "*",
  8317. "myclabs/deep-copy": "^1.10.1",
  8318. "phar-io/manifest": "^2.0.3",
  8319. "phar-io/version": "^3.0.2",
  8320. "php": ">=8.1",
  8321. "phpunit/php-code-coverage": "^10.1.5",
  8322. "phpunit/php-file-iterator": "^4.0",
  8323. "phpunit/php-invoker": "^4.0",
  8324. "phpunit/php-text-template": "^3.0",
  8325. "phpunit/php-timer": "^6.0",
  8326. "sebastian/cli-parser": "^2.0",
  8327. "sebastian/code-unit": "^2.0",
  8328. "sebastian/comparator": "^5.0",
  8329. "sebastian/diff": "^5.0",
  8330. "sebastian/environment": "^6.0",
  8331. "sebastian/exporter": "^5.1",
  8332. "sebastian/global-state": "^6.0.1",
  8333. "sebastian/object-enumerator": "^5.0",
  8334. "sebastian/recursion-context": "^5.0",
  8335. "sebastian/type": "^4.0",
  8336. "sebastian/version": "^4.0"
  8337. },
  8338. "suggest": {
  8339. "ext-soap": "To be able to generate mocks based on WSDL files"
  8340. },
  8341. "bin": [
  8342. "phpunit"
  8343. ],
  8344. "type": "library",
  8345. "extra": {
  8346. "branch-alias": {
  8347. "dev-main": "10.5-dev"
  8348. }
  8349. },
  8350. "autoload": {
  8351. "files": [
  8352. "src/Framework/Assert/Functions.php"
  8353. ],
  8354. "classmap": [
  8355. "src/"
  8356. ]
  8357. },
  8358. "notification-url": "https://packagist.org/downloads/",
  8359. "license": [
  8360. "BSD-3-Clause"
  8361. ],
  8362. "authors": [
  8363. {
  8364. "name": "Sebastian Bergmann",
  8365. "email": "sebastian@phpunit.de",
  8366. "role": "lead"
  8367. }
  8368. ],
  8369. "description": "The PHP Unit Testing framework.",
  8370. "homepage": "https://phpunit.de/",
  8371. "keywords": [
  8372. "phpunit",
  8373. "testing",
  8374. "xunit"
  8375. ],
  8376. "support": {
  8377. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8378. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8379. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8380. },
  8381. "funding": [
  8382. {
  8383. "url": "https://phpunit.de/sponsors.html",
  8384. "type": "custom"
  8385. },
  8386. {
  8387. "url": "https://github.com/sebastianbergmann",
  8388. "type": "github"
  8389. },
  8390. {
  8391. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8392. "type": "tidelift"
  8393. }
  8394. ],
  8395. "time": "2024-04-24T06:32:35+00:00"
  8396. },
  8397. {
  8398. "name": "react/cache",
  8399. "version": "v1.2.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/reactphp/cache.git",
  8403. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8408. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8409. "shasum": ""
  8410. },
  8411. "require": {
  8412. "php": ">=5.3.0",
  8413. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8414. },
  8415. "require-dev": {
  8416. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8417. },
  8418. "type": "library",
  8419. "autoload": {
  8420. "psr-4": {
  8421. "React\\Cache\\": "src/"
  8422. }
  8423. },
  8424. "notification-url": "https://packagist.org/downloads/",
  8425. "license": [
  8426. "MIT"
  8427. ],
  8428. "authors": [
  8429. {
  8430. "name": "Christian Lück",
  8431. "email": "christian@clue.engineering",
  8432. "homepage": "https://clue.engineering/"
  8433. },
  8434. {
  8435. "name": "Cees-Jan Kiewiet",
  8436. "email": "reactphp@ceesjankiewiet.nl",
  8437. "homepage": "https://wyrihaximus.net/"
  8438. },
  8439. {
  8440. "name": "Jan Sorgalla",
  8441. "email": "jsorgalla@gmail.com",
  8442. "homepage": "https://sorgalla.com/"
  8443. },
  8444. {
  8445. "name": "Chris Boden",
  8446. "email": "cboden@gmail.com",
  8447. "homepage": "https://cboden.dev/"
  8448. }
  8449. ],
  8450. "description": "Async, Promise-based cache interface for ReactPHP",
  8451. "keywords": [
  8452. "cache",
  8453. "caching",
  8454. "promise",
  8455. "reactphp"
  8456. ],
  8457. "support": {
  8458. "issues": "https://github.com/reactphp/cache/issues",
  8459. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8460. },
  8461. "funding": [
  8462. {
  8463. "url": "https://opencollective.com/reactphp",
  8464. "type": "open_collective"
  8465. }
  8466. ],
  8467. "time": "2022-11-30T15:59:55+00:00"
  8468. },
  8469. {
  8470. "name": "react/child-process",
  8471. "version": "v0.6.5",
  8472. "source": {
  8473. "type": "git",
  8474. "url": "https://github.com/reactphp/child-process.git",
  8475. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8476. },
  8477. "dist": {
  8478. "type": "zip",
  8479. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8480. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8481. "shasum": ""
  8482. },
  8483. "require": {
  8484. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8485. "php": ">=5.3.0",
  8486. "react/event-loop": "^1.2",
  8487. "react/stream": "^1.2"
  8488. },
  8489. "require-dev": {
  8490. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8491. "react/socket": "^1.8",
  8492. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8493. },
  8494. "type": "library",
  8495. "autoload": {
  8496. "psr-4": {
  8497. "React\\ChildProcess\\": "src"
  8498. }
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Christian Lück",
  8507. "email": "christian@clue.engineering",
  8508. "homepage": "https://clue.engineering/"
  8509. },
  8510. {
  8511. "name": "Cees-Jan Kiewiet",
  8512. "email": "reactphp@ceesjankiewiet.nl",
  8513. "homepage": "https://wyrihaximus.net/"
  8514. },
  8515. {
  8516. "name": "Jan Sorgalla",
  8517. "email": "jsorgalla@gmail.com",
  8518. "homepage": "https://sorgalla.com/"
  8519. },
  8520. {
  8521. "name": "Chris Boden",
  8522. "email": "cboden@gmail.com",
  8523. "homepage": "https://cboden.dev/"
  8524. }
  8525. ],
  8526. "description": "Event-driven library for executing child processes with ReactPHP.",
  8527. "keywords": [
  8528. "event-driven",
  8529. "process",
  8530. "reactphp"
  8531. ],
  8532. "support": {
  8533. "issues": "https://github.com/reactphp/child-process/issues",
  8534. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8535. },
  8536. "funding": [
  8537. {
  8538. "url": "https://github.com/WyriHaximus",
  8539. "type": "github"
  8540. },
  8541. {
  8542. "url": "https://github.com/clue",
  8543. "type": "github"
  8544. }
  8545. ],
  8546. "time": "2022-09-16T13:41:56+00:00"
  8547. },
  8548. {
  8549. "name": "react/dns",
  8550. "version": "v1.12.0",
  8551. "source": {
  8552. "type": "git",
  8553. "url": "https://github.com/reactphp/dns.git",
  8554. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8555. },
  8556. "dist": {
  8557. "type": "zip",
  8558. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8559. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8560. "shasum": ""
  8561. },
  8562. "require": {
  8563. "php": ">=5.3.0",
  8564. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8565. "react/event-loop": "^1.2",
  8566. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8567. },
  8568. "require-dev": {
  8569. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8570. "react/async": "^4 || ^3 || ^2",
  8571. "react/promise-timer": "^1.9"
  8572. },
  8573. "type": "library",
  8574. "autoload": {
  8575. "psr-4": {
  8576. "React\\Dns\\": "src/"
  8577. }
  8578. },
  8579. "notification-url": "https://packagist.org/downloads/",
  8580. "license": [
  8581. "MIT"
  8582. ],
  8583. "authors": [
  8584. {
  8585. "name": "Christian Lück",
  8586. "email": "christian@clue.engineering",
  8587. "homepage": "https://clue.engineering/"
  8588. },
  8589. {
  8590. "name": "Cees-Jan Kiewiet",
  8591. "email": "reactphp@ceesjankiewiet.nl",
  8592. "homepage": "https://wyrihaximus.net/"
  8593. },
  8594. {
  8595. "name": "Jan Sorgalla",
  8596. "email": "jsorgalla@gmail.com",
  8597. "homepage": "https://sorgalla.com/"
  8598. },
  8599. {
  8600. "name": "Chris Boden",
  8601. "email": "cboden@gmail.com",
  8602. "homepage": "https://cboden.dev/"
  8603. }
  8604. ],
  8605. "description": "Async DNS resolver for ReactPHP",
  8606. "keywords": [
  8607. "async",
  8608. "dns",
  8609. "dns-resolver",
  8610. "reactphp"
  8611. ],
  8612. "support": {
  8613. "issues": "https://github.com/reactphp/dns/issues",
  8614. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8615. },
  8616. "funding": [
  8617. {
  8618. "url": "https://opencollective.com/reactphp",
  8619. "type": "open_collective"
  8620. }
  8621. ],
  8622. "time": "2023-11-29T12:41:06+00:00"
  8623. },
  8624. {
  8625. "name": "react/event-loop",
  8626. "version": "v1.5.0",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/reactphp/event-loop.git",
  8630. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8635. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8636. "shasum": ""
  8637. },
  8638. "require": {
  8639. "php": ">=5.3.0"
  8640. },
  8641. "require-dev": {
  8642. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8643. },
  8644. "suggest": {
  8645. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8646. },
  8647. "type": "library",
  8648. "autoload": {
  8649. "psr-4": {
  8650. "React\\EventLoop\\": "src/"
  8651. }
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Christian Lück",
  8660. "email": "christian@clue.engineering",
  8661. "homepage": "https://clue.engineering/"
  8662. },
  8663. {
  8664. "name": "Cees-Jan Kiewiet",
  8665. "email": "reactphp@ceesjankiewiet.nl",
  8666. "homepage": "https://wyrihaximus.net/"
  8667. },
  8668. {
  8669. "name": "Jan Sorgalla",
  8670. "email": "jsorgalla@gmail.com",
  8671. "homepage": "https://sorgalla.com/"
  8672. },
  8673. {
  8674. "name": "Chris Boden",
  8675. "email": "cboden@gmail.com",
  8676. "homepage": "https://cboden.dev/"
  8677. }
  8678. ],
  8679. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8680. "keywords": [
  8681. "asynchronous",
  8682. "event-loop"
  8683. ],
  8684. "support": {
  8685. "issues": "https://github.com/reactphp/event-loop/issues",
  8686. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8687. },
  8688. "funding": [
  8689. {
  8690. "url": "https://opencollective.com/reactphp",
  8691. "type": "open_collective"
  8692. }
  8693. ],
  8694. "time": "2023-11-13T13:48:05+00:00"
  8695. },
  8696. {
  8697. "name": "react/promise",
  8698. "version": "v3.2.0",
  8699. "source": {
  8700. "type": "git",
  8701. "url": "https://github.com/reactphp/promise.git",
  8702. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8703. },
  8704. "dist": {
  8705. "type": "zip",
  8706. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8707. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8708. "shasum": ""
  8709. },
  8710. "require": {
  8711. "php": ">=7.1.0"
  8712. },
  8713. "require-dev": {
  8714. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8715. "phpunit/phpunit": "^9.6 || ^7.5"
  8716. },
  8717. "type": "library",
  8718. "autoload": {
  8719. "files": [
  8720. "src/functions_include.php"
  8721. ],
  8722. "psr-4": {
  8723. "React\\Promise\\": "src/"
  8724. }
  8725. },
  8726. "notification-url": "https://packagist.org/downloads/",
  8727. "license": [
  8728. "MIT"
  8729. ],
  8730. "authors": [
  8731. {
  8732. "name": "Jan Sorgalla",
  8733. "email": "jsorgalla@gmail.com",
  8734. "homepage": "https://sorgalla.com/"
  8735. },
  8736. {
  8737. "name": "Christian Lück",
  8738. "email": "christian@clue.engineering",
  8739. "homepage": "https://clue.engineering/"
  8740. },
  8741. {
  8742. "name": "Cees-Jan Kiewiet",
  8743. "email": "reactphp@ceesjankiewiet.nl",
  8744. "homepage": "https://wyrihaximus.net/"
  8745. },
  8746. {
  8747. "name": "Chris Boden",
  8748. "email": "cboden@gmail.com",
  8749. "homepage": "https://cboden.dev/"
  8750. }
  8751. ],
  8752. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8753. "keywords": [
  8754. "promise",
  8755. "promises"
  8756. ],
  8757. "support": {
  8758. "issues": "https://github.com/reactphp/promise/issues",
  8759. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8760. },
  8761. "funding": [
  8762. {
  8763. "url": "https://opencollective.com/reactphp",
  8764. "type": "open_collective"
  8765. }
  8766. ],
  8767. "time": "2024-05-24T10:39:05+00:00"
  8768. },
  8769. {
  8770. "name": "react/socket",
  8771. "version": "v1.15.0",
  8772. "source": {
  8773. "type": "git",
  8774. "url": "https://github.com/reactphp/socket.git",
  8775. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8776. },
  8777. "dist": {
  8778. "type": "zip",
  8779. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8780. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8781. "shasum": ""
  8782. },
  8783. "require": {
  8784. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8785. "php": ">=5.3.0",
  8786. "react/dns": "^1.11",
  8787. "react/event-loop": "^1.2",
  8788. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8789. "react/stream": "^1.2"
  8790. },
  8791. "require-dev": {
  8792. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8793. "react/async": "^4 || ^3 || ^2",
  8794. "react/promise-stream": "^1.4",
  8795. "react/promise-timer": "^1.10"
  8796. },
  8797. "type": "library",
  8798. "autoload": {
  8799. "psr-4": {
  8800. "React\\Socket\\": "src/"
  8801. }
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "MIT"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Christian Lück",
  8810. "email": "christian@clue.engineering",
  8811. "homepage": "https://clue.engineering/"
  8812. },
  8813. {
  8814. "name": "Cees-Jan Kiewiet",
  8815. "email": "reactphp@ceesjankiewiet.nl",
  8816. "homepage": "https://wyrihaximus.net/"
  8817. },
  8818. {
  8819. "name": "Jan Sorgalla",
  8820. "email": "jsorgalla@gmail.com",
  8821. "homepage": "https://sorgalla.com/"
  8822. },
  8823. {
  8824. "name": "Chris Boden",
  8825. "email": "cboden@gmail.com",
  8826. "homepage": "https://cboden.dev/"
  8827. }
  8828. ],
  8829. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8830. "keywords": [
  8831. "Connection",
  8832. "Socket",
  8833. "async",
  8834. "reactphp",
  8835. "stream"
  8836. ],
  8837. "support": {
  8838. "issues": "https://github.com/reactphp/socket/issues",
  8839. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8840. },
  8841. "funding": [
  8842. {
  8843. "url": "https://opencollective.com/reactphp",
  8844. "type": "open_collective"
  8845. }
  8846. ],
  8847. "time": "2023-12-15T11:02:10+00:00"
  8848. },
  8849. {
  8850. "name": "react/stream",
  8851. "version": "v1.3.0",
  8852. "source": {
  8853. "type": "git",
  8854. "url": "https://github.com/reactphp/stream.git",
  8855. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8856. },
  8857. "dist": {
  8858. "type": "zip",
  8859. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8860. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8861. "shasum": ""
  8862. },
  8863. "require": {
  8864. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8865. "php": ">=5.3.8",
  8866. "react/event-loop": "^1.2"
  8867. },
  8868. "require-dev": {
  8869. "clue/stream-filter": "~1.2",
  8870. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8871. },
  8872. "type": "library",
  8873. "autoload": {
  8874. "psr-4": {
  8875. "React\\Stream\\": "src/"
  8876. }
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "license": [
  8880. "MIT"
  8881. ],
  8882. "authors": [
  8883. {
  8884. "name": "Christian Lück",
  8885. "email": "christian@clue.engineering",
  8886. "homepage": "https://clue.engineering/"
  8887. },
  8888. {
  8889. "name": "Cees-Jan Kiewiet",
  8890. "email": "reactphp@ceesjankiewiet.nl",
  8891. "homepage": "https://wyrihaximus.net/"
  8892. },
  8893. {
  8894. "name": "Jan Sorgalla",
  8895. "email": "jsorgalla@gmail.com",
  8896. "homepage": "https://sorgalla.com/"
  8897. },
  8898. {
  8899. "name": "Chris Boden",
  8900. "email": "cboden@gmail.com",
  8901. "homepage": "https://cboden.dev/"
  8902. }
  8903. ],
  8904. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8905. "keywords": [
  8906. "event-driven",
  8907. "io",
  8908. "non-blocking",
  8909. "pipe",
  8910. "reactphp",
  8911. "readable",
  8912. "stream",
  8913. "writable"
  8914. ],
  8915. "support": {
  8916. "issues": "https://github.com/reactphp/stream/issues",
  8917. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8918. },
  8919. "funding": [
  8920. {
  8921. "url": "https://opencollective.com/reactphp",
  8922. "type": "open_collective"
  8923. }
  8924. ],
  8925. "time": "2023-06-16T10:52:11+00:00"
  8926. },
  8927. {
  8928. "name": "sebastian/cli-parser",
  8929. "version": "2.0.1",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8933. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8938. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": ">=8.1"
  8943. },
  8944. "require-dev": {
  8945. "phpunit/phpunit": "^10.0"
  8946. },
  8947. "type": "library",
  8948. "extra": {
  8949. "branch-alias": {
  8950. "dev-main": "2.0-dev"
  8951. }
  8952. },
  8953. "autoload": {
  8954. "classmap": [
  8955. "src/"
  8956. ]
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "BSD-3-Clause"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Sebastian Bergmann",
  8965. "email": "sebastian@phpunit.de",
  8966. "role": "lead"
  8967. }
  8968. ],
  8969. "description": "Library for parsing CLI options",
  8970. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8971. "support": {
  8972. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8973. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8974. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8975. },
  8976. "funding": [
  8977. {
  8978. "url": "https://github.com/sebastianbergmann",
  8979. "type": "github"
  8980. }
  8981. ],
  8982. "time": "2024-03-02T07:12:49+00:00"
  8983. },
  8984. {
  8985. "name": "sebastian/code-unit",
  8986. "version": "2.0.0",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8990. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8995. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": ">=8.1"
  9000. },
  9001. "require-dev": {
  9002. "phpunit/phpunit": "^10.0"
  9003. },
  9004. "type": "library",
  9005. "extra": {
  9006. "branch-alias": {
  9007. "dev-main": "2.0-dev"
  9008. }
  9009. },
  9010. "autoload": {
  9011. "classmap": [
  9012. "src/"
  9013. ]
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "license": [
  9017. "BSD-3-Clause"
  9018. ],
  9019. "authors": [
  9020. {
  9021. "name": "Sebastian Bergmann",
  9022. "email": "sebastian@phpunit.de",
  9023. "role": "lead"
  9024. }
  9025. ],
  9026. "description": "Collection of value objects that represent the PHP code units",
  9027. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9028. "support": {
  9029. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9030. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9031. },
  9032. "funding": [
  9033. {
  9034. "url": "https://github.com/sebastianbergmann",
  9035. "type": "github"
  9036. }
  9037. ],
  9038. "time": "2023-02-03T06:58:43+00:00"
  9039. },
  9040. {
  9041. "name": "sebastian/code-unit-reverse-lookup",
  9042. "version": "3.0.0",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9046. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9051. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9052. "shasum": ""
  9053. },
  9054. "require": {
  9055. "php": ">=8.1"
  9056. },
  9057. "require-dev": {
  9058. "phpunit/phpunit": "^10.0"
  9059. },
  9060. "type": "library",
  9061. "extra": {
  9062. "branch-alias": {
  9063. "dev-main": "3.0-dev"
  9064. }
  9065. },
  9066. "autoload": {
  9067. "classmap": [
  9068. "src/"
  9069. ]
  9070. },
  9071. "notification-url": "https://packagist.org/downloads/",
  9072. "license": [
  9073. "BSD-3-Clause"
  9074. ],
  9075. "authors": [
  9076. {
  9077. "name": "Sebastian Bergmann",
  9078. "email": "sebastian@phpunit.de"
  9079. }
  9080. ],
  9081. "description": "Looks up which function or method a line of code belongs to",
  9082. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9083. "support": {
  9084. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9085. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9086. },
  9087. "funding": [
  9088. {
  9089. "url": "https://github.com/sebastianbergmann",
  9090. "type": "github"
  9091. }
  9092. ],
  9093. "time": "2023-02-03T06:59:15+00:00"
  9094. },
  9095. {
  9096. "name": "sebastian/comparator",
  9097. "version": "5.0.1",
  9098. "source": {
  9099. "type": "git",
  9100. "url": "https://github.com/sebastianbergmann/comparator.git",
  9101. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9102. },
  9103. "dist": {
  9104. "type": "zip",
  9105. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9106. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9107. "shasum": ""
  9108. },
  9109. "require": {
  9110. "ext-dom": "*",
  9111. "ext-mbstring": "*",
  9112. "php": ">=8.1",
  9113. "sebastian/diff": "^5.0",
  9114. "sebastian/exporter": "^5.0"
  9115. },
  9116. "require-dev": {
  9117. "phpunit/phpunit": "^10.3"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-main": "5.0-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "classmap": [
  9127. "src/"
  9128. ]
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "BSD-3-Clause"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Sebastian Bergmann",
  9137. "email": "sebastian@phpunit.de"
  9138. },
  9139. {
  9140. "name": "Jeff Welch",
  9141. "email": "whatthejeff@gmail.com"
  9142. },
  9143. {
  9144. "name": "Volker Dusch",
  9145. "email": "github@wallbash.com"
  9146. },
  9147. {
  9148. "name": "Bernhard Schussek",
  9149. "email": "bschussek@2bepublished.at"
  9150. }
  9151. ],
  9152. "description": "Provides the functionality to compare PHP values for equality",
  9153. "homepage": "https://github.com/sebastianbergmann/comparator",
  9154. "keywords": [
  9155. "comparator",
  9156. "compare",
  9157. "equality"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9161. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9162. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9163. },
  9164. "funding": [
  9165. {
  9166. "url": "https://github.com/sebastianbergmann",
  9167. "type": "github"
  9168. }
  9169. ],
  9170. "time": "2023-08-14T13:18:12+00:00"
  9171. },
  9172. {
  9173. "name": "sebastian/complexity",
  9174. "version": "3.2.0",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/sebastianbergmann/complexity.git",
  9178. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9183. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "nikic/php-parser": "^4.18 || ^5.0",
  9188. "php": ">=8.1"
  9189. },
  9190. "require-dev": {
  9191. "phpunit/phpunit": "^10.0"
  9192. },
  9193. "type": "library",
  9194. "extra": {
  9195. "branch-alias": {
  9196. "dev-main": "3.2-dev"
  9197. }
  9198. },
  9199. "autoload": {
  9200. "classmap": [
  9201. "src/"
  9202. ]
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "BSD-3-Clause"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Sebastian Bergmann",
  9211. "email": "sebastian@phpunit.de",
  9212. "role": "lead"
  9213. }
  9214. ],
  9215. "description": "Library for calculating the complexity of PHP code units",
  9216. "homepage": "https://github.com/sebastianbergmann/complexity",
  9217. "support": {
  9218. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9219. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9220. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9221. },
  9222. "funding": [
  9223. {
  9224. "url": "https://github.com/sebastianbergmann",
  9225. "type": "github"
  9226. }
  9227. ],
  9228. "time": "2023-12-21T08:37:17+00:00"
  9229. },
  9230. {
  9231. "name": "sebastian/diff",
  9232. "version": "5.1.1",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/sebastianbergmann/diff.git",
  9236. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9241. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "php": ">=8.1"
  9246. },
  9247. "require-dev": {
  9248. "phpunit/phpunit": "^10.0",
  9249. "symfony/process": "^6.4"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-main": "5.1-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "classmap": [
  9259. "src/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "BSD-3-Clause"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Sebastian Bergmann",
  9269. "email": "sebastian@phpunit.de"
  9270. },
  9271. {
  9272. "name": "Kore Nordmann",
  9273. "email": "mail@kore-nordmann.de"
  9274. }
  9275. ],
  9276. "description": "Diff implementation",
  9277. "homepage": "https://github.com/sebastianbergmann/diff",
  9278. "keywords": [
  9279. "diff",
  9280. "udiff",
  9281. "unidiff",
  9282. "unified diff"
  9283. ],
  9284. "support": {
  9285. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9286. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9287. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://github.com/sebastianbergmann",
  9292. "type": "github"
  9293. }
  9294. ],
  9295. "time": "2024-03-02T07:15:17+00:00"
  9296. },
  9297. {
  9298. "name": "sebastian/environment",
  9299. "version": "6.1.0",
  9300. "source": {
  9301. "type": "git",
  9302. "url": "https://github.com/sebastianbergmann/environment.git",
  9303. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9304. },
  9305. "dist": {
  9306. "type": "zip",
  9307. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9308. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9309. "shasum": ""
  9310. },
  9311. "require": {
  9312. "php": ">=8.1"
  9313. },
  9314. "require-dev": {
  9315. "phpunit/phpunit": "^10.0"
  9316. },
  9317. "suggest": {
  9318. "ext-posix": "*"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-main": "6.1-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "classmap": [
  9328. "src/"
  9329. ]
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "BSD-3-Clause"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Sebastian Bergmann",
  9338. "email": "sebastian@phpunit.de"
  9339. }
  9340. ],
  9341. "description": "Provides functionality to handle HHVM/PHP environments",
  9342. "homepage": "https://github.com/sebastianbergmann/environment",
  9343. "keywords": [
  9344. "Xdebug",
  9345. "environment",
  9346. "hhvm"
  9347. ],
  9348. "support": {
  9349. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9350. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9351. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://github.com/sebastianbergmann",
  9356. "type": "github"
  9357. }
  9358. ],
  9359. "time": "2024-03-23T08:47:14+00:00"
  9360. },
  9361. {
  9362. "name": "sebastian/exporter",
  9363. "version": "5.1.2",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/sebastianbergmann/exporter.git",
  9367. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9372. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "ext-mbstring": "*",
  9377. "php": ">=8.1",
  9378. "sebastian/recursion-context": "^5.0"
  9379. },
  9380. "require-dev": {
  9381. "phpunit/phpunit": "^10.0"
  9382. },
  9383. "type": "library",
  9384. "extra": {
  9385. "branch-alias": {
  9386. "dev-main": "5.1-dev"
  9387. }
  9388. },
  9389. "autoload": {
  9390. "classmap": [
  9391. "src/"
  9392. ]
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "BSD-3-Clause"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Sebastian Bergmann",
  9401. "email": "sebastian@phpunit.de"
  9402. },
  9403. {
  9404. "name": "Jeff Welch",
  9405. "email": "whatthejeff@gmail.com"
  9406. },
  9407. {
  9408. "name": "Volker Dusch",
  9409. "email": "github@wallbash.com"
  9410. },
  9411. {
  9412. "name": "Adam Harvey",
  9413. "email": "aharvey@php.net"
  9414. },
  9415. {
  9416. "name": "Bernhard Schussek",
  9417. "email": "bschussek@gmail.com"
  9418. }
  9419. ],
  9420. "description": "Provides the functionality to export PHP variables for visualization",
  9421. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9422. "keywords": [
  9423. "export",
  9424. "exporter"
  9425. ],
  9426. "support": {
  9427. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9428. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9429. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9430. },
  9431. "funding": [
  9432. {
  9433. "url": "https://github.com/sebastianbergmann",
  9434. "type": "github"
  9435. }
  9436. ],
  9437. "time": "2024-03-02T07:17:12+00:00"
  9438. },
  9439. {
  9440. "name": "sebastian/global-state",
  9441. "version": "6.0.2",
  9442. "source": {
  9443. "type": "git",
  9444. "url": "https://github.com/sebastianbergmann/global-state.git",
  9445. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9446. },
  9447. "dist": {
  9448. "type": "zip",
  9449. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9450. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9451. "shasum": ""
  9452. },
  9453. "require": {
  9454. "php": ">=8.1",
  9455. "sebastian/object-reflector": "^3.0",
  9456. "sebastian/recursion-context": "^5.0"
  9457. },
  9458. "require-dev": {
  9459. "ext-dom": "*",
  9460. "phpunit/phpunit": "^10.0"
  9461. },
  9462. "type": "library",
  9463. "extra": {
  9464. "branch-alias": {
  9465. "dev-main": "6.0-dev"
  9466. }
  9467. },
  9468. "autoload": {
  9469. "classmap": [
  9470. "src/"
  9471. ]
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Sebastian Bergmann",
  9480. "email": "sebastian@phpunit.de"
  9481. }
  9482. ],
  9483. "description": "Snapshotting of global state",
  9484. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9485. "keywords": [
  9486. "global state"
  9487. ],
  9488. "support": {
  9489. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9490. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9491. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9492. },
  9493. "funding": [
  9494. {
  9495. "url": "https://github.com/sebastianbergmann",
  9496. "type": "github"
  9497. }
  9498. ],
  9499. "time": "2024-03-02T07:19:19+00:00"
  9500. },
  9501. {
  9502. "name": "sebastian/lines-of-code",
  9503. "version": "2.0.2",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9507. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9512. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "nikic/php-parser": "^4.18 || ^5.0",
  9517. "php": ">=8.1"
  9518. },
  9519. "require-dev": {
  9520. "phpunit/phpunit": "^10.0"
  9521. },
  9522. "type": "library",
  9523. "extra": {
  9524. "branch-alias": {
  9525. "dev-main": "2.0-dev"
  9526. }
  9527. },
  9528. "autoload": {
  9529. "classmap": [
  9530. "src/"
  9531. ]
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "BSD-3-Clause"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Sebastian Bergmann",
  9540. "email": "sebastian@phpunit.de",
  9541. "role": "lead"
  9542. }
  9543. ],
  9544. "description": "Library for counting the lines of code in PHP source code",
  9545. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9546. "support": {
  9547. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9548. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9549. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://github.com/sebastianbergmann",
  9554. "type": "github"
  9555. }
  9556. ],
  9557. "time": "2023-12-21T08:38:20+00:00"
  9558. },
  9559. {
  9560. "name": "sebastian/object-enumerator",
  9561. "version": "5.0.0",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9565. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9570. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "php": ">=8.1",
  9575. "sebastian/object-reflector": "^3.0",
  9576. "sebastian/recursion-context": "^5.0"
  9577. },
  9578. "require-dev": {
  9579. "phpunit/phpunit": "^10.0"
  9580. },
  9581. "type": "library",
  9582. "extra": {
  9583. "branch-alias": {
  9584. "dev-main": "5.0-dev"
  9585. }
  9586. },
  9587. "autoload": {
  9588. "classmap": [
  9589. "src/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "BSD-3-Clause"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Sebastian Bergmann",
  9599. "email": "sebastian@phpunit.de"
  9600. }
  9601. ],
  9602. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9603. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9604. "support": {
  9605. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9606. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9607. },
  9608. "funding": [
  9609. {
  9610. "url": "https://github.com/sebastianbergmann",
  9611. "type": "github"
  9612. }
  9613. ],
  9614. "time": "2023-02-03T07:08:32+00:00"
  9615. },
  9616. {
  9617. "name": "sebastian/object-reflector",
  9618. "version": "3.0.0",
  9619. "source": {
  9620. "type": "git",
  9621. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9622. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9623. },
  9624. "dist": {
  9625. "type": "zip",
  9626. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9627. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9628. "shasum": ""
  9629. },
  9630. "require": {
  9631. "php": ">=8.1"
  9632. },
  9633. "require-dev": {
  9634. "phpunit/phpunit": "^10.0"
  9635. },
  9636. "type": "library",
  9637. "extra": {
  9638. "branch-alias": {
  9639. "dev-main": "3.0-dev"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "classmap": [
  9644. "src/"
  9645. ]
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "BSD-3-Clause"
  9650. ],
  9651. "authors": [
  9652. {
  9653. "name": "Sebastian Bergmann",
  9654. "email": "sebastian@phpunit.de"
  9655. }
  9656. ],
  9657. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9658. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9659. "support": {
  9660. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9661. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9662. },
  9663. "funding": [
  9664. {
  9665. "url": "https://github.com/sebastianbergmann",
  9666. "type": "github"
  9667. }
  9668. ],
  9669. "time": "2023-02-03T07:06:18+00:00"
  9670. },
  9671. {
  9672. "name": "sebastian/recursion-context",
  9673. "version": "5.0.0",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9677. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9682. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "php": ">=8.1"
  9687. },
  9688. "require-dev": {
  9689. "phpunit/phpunit": "^10.0"
  9690. },
  9691. "type": "library",
  9692. "extra": {
  9693. "branch-alias": {
  9694. "dev-main": "5.0-dev"
  9695. }
  9696. },
  9697. "autoload": {
  9698. "classmap": [
  9699. "src/"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "BSD-3-Clause"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Sebastian Bergmann",
  9709. "email": "sebastian@phpunit.de"
  9710. },
  9711. {
  9712. "name": "Jeff Welch",
  9713. "email": "whatthejeff@gmail.com"
  9714. },
  9715. {
  9716. "name": "Adam Harvey",
  9717. "email": "aharvey@php.net"
  9718. }
  9719. ],
  9720. "description": "Provides functionality to recursively process PHP variables",
  9721. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9722. "support": {
  9723. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9724. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9725. },
  9726. "funding": [
  9727. {
  9728. "url": "https://github.com/sebastianbergmann",
  9729. "type": "github"
  9730. }
  9731. ],
  9732. "time": "2023-02-03T07:05:40+00:00"
  9733. },
  9734. {
  9735. "name": "sebastian/type",
  9736. "version": "4.0.0",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/sebastianbergmann/type.git",
  9740. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9745. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "php": ">=8.1"
  9750. },
  9751. "require-dev": {
  9752. "phpunit/phpunit": "^10.0"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-main": "4.0-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "classmap": [
  9762. "src/"
  9763. ]
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "BSD-3-Clause"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Sebastian Bergmann",
  9772. "email": "sebastian@phpunit.de",
  9773. "role": "lead"
  9774. }
  9775. ],
  9776. "description": "Collection of value objects that represent the types of the PHP type system",
  9777. "homepage": "https://github.com/sebastianbergmann/type",
  9778. "support": {
  9779. "issues": "https://github.com/sebastianbergmann/type/issues",
  9780. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9781. },
  9782. "funding": [
  9783. {
  9784. "url": "https://github.com/sebastianbergmann",
  9785. "type": "github"
  9786. }
  9787. ],
  9788. "time": "2023-02-03T07:10:45+00:00"
  9789. },
  9790. {
  9791. "name": "sebastian/version",
  9792. "version": "4.0.1",
  9793. "source": {
  9794. "type": "git",
  9795. "url": "https://github.com/sebastianbergmann/version.git",
  9796. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9797. },
  9798. "dist": {
  9799. "type": "zip",
  9800. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9801. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9802. "shasum": ""
  9803. },
  9804. "require": {
  9805. "php": ">=8.1"
  9806. },
  9807. "type": "library",
  9808. "extra": {
  9809. "branch-alias": {
  9810. "dev-main": "4.0-dev"
  9811. }
  9812. },
  9813. "autoload": {
  9814. "classmap": [
  9815. "src/"
  9816. ]
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "BSD-3-Clause"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Sebastian Bergmann",
  9825. "email": "sebastian@phpunit.de",
  9826. "role": "lead"
  9827. }
  9828. ],
  9829. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9830. "homepage": "https://github.com/sebastianbergmann/version",
  9831. "support": {
  9832. "issues": "https://github.com/sebastianbergmann/version/issues",
  9833. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9834. },
  9835. "funding": [
  9836. {
  9837. "url": "https://github.com/sebastianbergmann",
  9838. "type": "github"
  9839. }
  9840. ],
  9841. "time": "2023-02-07T11:34:05+00:00"
  9842. },
  9843. {
  9844. "name": "swoole/ide-helper",
  9845. "version": "5.1.2",
  9846. "source": {
  9847. "type": "git",
  9848. "url": "https://github.com/swoole/ide-helper.git",
  9849. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9850. },
  9851. "dist": {
  9852. "type": "zip",
  9853. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9854. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9855. "shasum": ""
  9856. },
  9857. "type": "library",
  9858. "notification-url": "https://packagist.org/downloads/",
  9859. "license": [
  9860. "Apache-2.0"
  9861. ],
  9862. "authors": [
  9863. {
  9864. "name": "Team Swoole",
  9865. "email": "team@swoole.com"
  9866. }
  9867. ],
  9868. "description": "IDE help files for Swoole.",
  9869. "support": {
  9870. "issues": "https://github.com/swoole/ide-helper/issues",
  9871. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9872. },
  9873. "time": "2024-02-01T22:28:11+00:00"
  9874. },
  9875. {
  9876. "name": "symfony/event-dispatcher",
  9877. "version": "v6.4.8",
  9878. "source": {
  9879. "type": "git",
  9880. "url": "https://github.com/symfony/event-dispatcher.git",
  9881. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9882. },
  9883. "dist": {
  9884. "type": "zip",
  9885. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9886. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9887. "shasum": ""
  9888. },
  9889. "require": {
  9890. "php": ">=8.1",
  9891. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9892. },
  9893. "conflict": {
  9894. "symfony/dependency-injection": "<5.4",
  9895. "symfony/service-contracts": "<2.5"
  9896. },
  9897. "provide": {
  9898. "psr/event-dispatcher-implementation": "1.0",
  9899. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9900. },
  9901. "require-dev": {
  9902. "psr/log": "^1|^2|^3",
  9903. "symfony/config": "^5.4|^6.0|^7.0",
  9904. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9905. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9906. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9907. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9908. "symfony/service-contracts": "^2.5|^3",
  9909. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9910. },
  9911. "type": "library",
  9912. "autoload": {
  9913. "psr-4": {
  9914. "Symfony\\Component\\EventDispatcher\\": ""
  9915. },
  9916. "exclude-from-classmap": [
  9917. "/Tests/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "MIT"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Fabien Potencier",
  9927. "email": "fabien@symfony.com"
  9928. },
  9929. {
  9930. "name": "Symfony Community",
  9931. "homepage": "https://symfony.com/contributors"
  9932. }
  9933. ],
  9934. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9935. "homepage": "https://symfony.com",
  9936. "support": {
  9937. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9938. },
  9939. "funding": [
  9940. {
  9941. "url": "https://symfony.com/sponsor",
  9942. "type": "custom"
  9943. },
  9944. {
  9945. "url": "https://github.com/fabpot",
  9946. "type": "github"
  9947. },
  9948. {
  9949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9950. "type": "tidelift"
  9951. }
  9952. ],
  9953. "time": "2024-05-31T14:49:08+00:00"
  9954. },
  9955. {
  9956. "name": "symfony/event-dispatcher-contracts",
  9957. "version": "v3.5.0",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9961. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9966. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "php": ">=8.1",
  9971. "psr/event-dispatcher": "^1"
  9972. },
  9973. "type": "library",
  9974. "extra": {
  9975. "branch-alias": {
  9976. "dev-main": "3.5-dev"
  9977. },
  9978. "thanks": {
  9979. "name": "symfony/contracts",
  9980. "url": "https://github.com/symfony/contracts"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "psr-4": {
  9985. "Symfony\\Contracts\\EventDispatcher\\": ""
  9986. }
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "MIT"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Nicolas Grekas",
  9995. "email": "p@tchwork.com"
  9996. },
  9997. {
  9998. "name": "Symfony Community",
  9999. "homepage": "https://symfony.com/contributors"
  10000. }
  10001. ],
  10002. "description": "Generic abstractions related to dispatching event",
  10003. "homepage": "https://symfony.com",
  10004. "keywords": [
  10005. "abstractions",
  10006. "contracts",
  10007. "decoupling",
  10008. "interfaces",
  10009. "interoperability",
  10010. "standards"
  10011. ],
  10012. "support": {
  10013. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10014. },
  10015. "funding": [
  10016. {
  10017. "url": "https://symfony.com/sponsor",
  10018. "type": "custom"
  10019. },
  10020. {
  10021. "url": "https://github.com/fabpot",
  10022. "type": "github"
  10023. },
  10024. {
  10025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10026. "type": "tidelift"
  10027. }
  10028. ],
  10029. "time": "2024-04-18T09:32:20+00:00"
  10030. },
  10031. {
  10032. "name": "symfony/filesystem",
  10033. "version": "v6.4.8",
  10034. "source": {
  10035. "type": "git",
  10036. "url": "https://github.com/symfony/filesystem.git",
  10037. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10038. },
  10039. "dist": {
  10040. "type": "zip",
  10041. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10042. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10043. "shasum": ""
  10044. },
  10045. "require": {
  10046. "php": ">=8.1",
  10047. "symfony/polyfill-ctype": "~1.8",
  10048. "symfony/polyfill-mbstring": "~1.8"
  10049. },
  10050. "require-dev": {
  10051. "symfony/process": "^5.4|^6.4|^7.0"
  10052. },
  10053. "type": "library",
  10054. "autoload": {
  10055. "psr-4": {
  10056. "Symfony\\Component\\Filesystem\\": ""
  10057. },
  10058. "exclude-from-classmap": [
  10059. "/Tests/"
  10060. ]
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "MIT"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Fabien Potencier",
  10069. "email": "fabien@symfony.com"
  10070. },
  10071. {
  10072. "name": "Symfony Community",
  10073. "homepage": "https://symfony.com/contributors"
  10074. }
  10075. ],
  10076. "description": "Provides basic utilities for the filesystem",
  10077. "homepage": "https://symfony.com",
  10078. "support": {
  10079. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10080. },
  10081. "funding": [
  10082. {
  10083. "url": "https://symfony.com/sponsor",
  10084. "type": "custom"
  10085. },
  10086. {
  10087. "url": "https://github.com/fabpot",
  10088. "type": "github"
  10089. },
  10090. {
  10091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10092. "type": "tidelift"
  10093. }
  10094. ],
  10095. "time": "2024-05-31T14:49:08+00:00"
  10096. },
  10097. {
  10098. "name": "symfony/http-foundation",
  10099. "version": "v6.4.8",
  10100. "source": {
  10101. "type": "git",
  10102. "url": "https://github.com/symfony/http-foundation.git",
  10103. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10104. },
  10105. "dist": {
  10106. "type": "zip",
  10107. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10108. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10109. "shasum": ""
  10110. },
  10111. "require": {
  10112. "php": ">=8.1",
  10113. "symfony/deprecation-contracts": "^2.5|^3",
  10114. "symfony/polyfill-mbstring": "~1.1",
  10115. "symfony/polyfill-php83": "^1.27"
  10116. },
  10117. "conflict": {
  10118. "symfony/cache": "<6.3"
  10119. },
  10120. "require-dev": {
  10121. "doctrine/dbal": "^2.13.1|^3|^4",
  10122. "predis/predis": "^1.1|^2.0",
  10123. "symfony/cache": "^6.3|^7.0",
  10124. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10125. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10126. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10127. "symfony/mime": "^5.4|^6.0|^7.0",
  10128. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10129. },
  10130. "type": "library",
  10131. "autoload": {
  10132. "psr-4": {
  10133. "Symfony\\Component\\HttpFoundation\\": ""
  10134. },
  10135. "exclude-from-classmap": [
  10136. "/Tests/"
  10137. ]
  10138. },
  10139. "notification-url": "https://packagist.org/downloads/",
  10140. "license": [
  10141. "MIT"
  10142. ],
  10143. "authors": [
  10144. {
  10145. "name": "Fabien Potencier",
  10146. "email": "fabien@symfony.com"
  10147. },
  10148. {
  10149. "name": "Symfony Community",
  10150. "homepage": "https://symfony.com/contributors"
  10151. }
  10152. ],
  10153. "description": "Defines an object-oriented layer for the HTTP specification",
  10154. "homepage": "https://symfony.com",
  10155. "support": {
  10156. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10157. },
  10158. "funding": [
  10159. {
  10160. "url": "https://symfony.com/sponsor",
  10161. "type": "custom"
  10162. },
  10163. {
  10164. "url": "https://github.com/fabpot",
  10165. "type": "github"
  10166. },
  10167. {
  10168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10169. "type": "tidelift"
  10170. }
  10171. ],
  10172. "time": "2024-05-31T14:49:08+00:00"
  10173. },
  10174. {
  10175. "name": "symfony/options-resolver",
  10176. "version": "v6.4.8",
  10177. "source": {
  10178. "type": "git",
  10179. "url": "https://github.com/symfony/options-resolver.git",
  10180. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10181. },
  10182. "dist": {
  10183. "type": "zip",
  10184. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10185. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10186. "shasum": ""
  10187. },
  10188. "require": {
  10189. "php": ">=8.1",
  10190. "symfony/deprecation-contracts": "^2.5|^3"
  10191. },
  10192. "type": "library",
  10193. "autoload": {
  10194. "psr-4": {
  10195. "Symfony\\Component\\OptionsResolver\\": ""
  10196. },
  10197. "exclude-from-classmap": [
  10198. "/Tests/"
  10199. ]
  10200. },
  10201. "notification-url": "https://packagist.org/downloads/",
  10202. "license": [
  10203. "MIT"
  10204. ],
  10205. "authors": [
  10206. {
  10207. "name": "Fabien Potencier",
  10208. "email": "fabien@symfony.com"
  10209. },
  10210. {
  10211. "name": "Symfony Community",
  10212. "homepage": "https://symfony.com/contributors"
  10213. }
  10214. ],
  10215. "description": "Provides an improved replacement for the array_replace PHP function",
  10216. "homepage": "https://symfony.com",
  10217. "keywords": [
  10218. "config",
  10219. "configuration",
  10220. "options"
  10221. ],
  10222. "support": {
  10223. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10224. },
  10225. "funding": [
  10226. {
  10227. "url": "https://symfony.com/sponsor",
  10228. "type": "custom"
  10229. },
  10230. {
  10231. "url": "https://github.com/fabpot",
  10232. "type": "github"
  10233. },
  10234. {
  10235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10236. "type": "tidelift"
  10237. }
  10238. ],
  10239. "time": "2024-05-31T14:49:08+00:00"
  10240. },
  10241. {
  10242. "name": "symfony/polyfill-php81",
  10243. "version": "v1.29.0",
  10244. "source": {
  10245. "type": "git",
  10246. "url": "https://github.com/symfony/polyfill-php81.git",
  10247. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10248. },
  10249. "dist": {
  10250. "type": "zip",
  10251. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10252. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10253. "shasum": ""
  10254. },
  10255. "require": {
  10256. "php": ">=7.1"
  10257. },
  10258. "type": "library",
  10259. "extra": {
  10260. "thanks": {
  10261. "name": "symfony/polyfill",
  10262. "url": "https://github.com/symfony/polyfill"
  10263. }
  10264. },
  10265. "autoload": {
  10266. "files": [
  10267. "bootstrap.php"
  10268. ],
  10269. "psr-4": {
  10270. "Symfony\\Polyfill\\Php81\\": ""
  10271. },
  10272. "classmap": [
  10273. "Resources/stubs"
  10274. ]
  10275. },
  10276. "notification-url": "https://packagist.org/downloads/",
  10277. "license": [
  10278. "MIT"
  10279. ],
  10280. "authors": [
  10281. {
  10282. "name": "Nicolas Grekas",
  10283. "email": "p@tchwork.com"
  10284. },
  10285. {
  10286. "name": "Symfony Community",
  10287. "homepage": "https://symfony.com/contributors"
  10288. }
  10289. ],
  10290. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10291. "homepage": "https://symfony.com",
  10292. "keywords": [
  10293. "compatibility",
  10294. "polyfill",
  10295. "portable",
  10296. "shim"
  10297. ],
  10298. "support": {
  10299. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10300. },
  10301. "funding": [
  10302. {
  10303. "url": "https://symfony.com/sponsor",
  10304. "type": "custom"
  10305. },
  10306. {
  10307. "url": "https://github.com/fabpot",
  10308. "type": "github"
  10309. },
  10310. {
  10311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10312. "type": "tidelift"
  10313. }
  10314. ],
  10315. "time": "2024-01-29T20:11:03+00:00"
  10316. },
  10317. {
  10318. "name": "symfony/polyfill-php83",
  10319. "version": "v1.29.0",
  10320. "source": {
  10321. "type": "git",
  10322. "url": "https://github.com/symfony/polyfill-php83.git",
  10323. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10324. },
  10325. "dist": {
  10326. "type": "zip",
  10327. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10328. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10329. "shasum": ""
  10330. },
  10331. "require": {
  10332. "php": ">=7.1",
  10333. "symfony/polyfill-php80": "^1.14"
  10334. },
  10335. "type": "library",
  10336. "extra": {
  10337. "thanks": {
  10338. "name": "symfony/polyfill",
  10339. "url": "https://github.com/symfony/polyfill"
  10340. }
  10341. },
  10342. "autoload": {
  10343. "files": [
  10344. "bootstrap.php"
  10345. ],
  10346. "psr-4": {
  10347. "Symfony\\Polyfill\\Php83\\": ""
  10348. },
  10349. "classmap": [
  10350. "Resources/stubs"
  10351. ]
  10352. },
  10353. "notification-url": "https://packagist.org/downloads/",
  10354. "license": [
  10355. "MIT"
  10356. ],
  10357. "authors": [
  10358. {
  10359. "name": "Nicolas Grekas",
  10360. "email": "p@tchwork.com"
  10361. },
  10362. {
  10363. "name": "Symfony Community",
  10364. "homepage": "https://symfony.com/contributors"
  10365. }
  10366. ],
  10367. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10368. "homepage": "https://symfony.com",
  10369. "keywords": [
  10370. "compatibility",
  10371. "polyfill",
  10372. "portable",
  10373. "shim"
  10374. ],
  10375. "support": {
  10376. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10377. },
  10378. "funding": [
  10379. {
  10380. "url": "https://symfony.com/sponsor",
  10381. "type": "custom"
  10382. },
  10383. {
  10384. "url": "https://github.com/fabpot",
  10385. "type": "github"
  10386. },
  10387. {
  10388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10389. "type": "tidelift"
  10390. }
  10391. ],
  10392. "time": "2024-01-29T20:11:03+00:00"
  10393. },
  10394. {
  10395. "name": "symfony/process",
  10396. "version": "v6.4.8",
  10397. "source": {
  10398. "type": "git",
  10399. "url": "https://github.com/symfony/process.git",
  10400. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10401. },
  10402. "dist": {
  10403. "type": "zip",
  10404. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10405. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10406. "shasum": ""
  10407. },
  10408. "require": {
  10409. "php": ">=8.1"
  10410. },
  10411. "type": "library",
  10412. "autoload": {
  10413. "psr-4": {
  10414. "Symfony\\Component\\Process\\": ""
  10415. },
  10416. "exclude-from-classmap": [
  10417. "/Tests/"
  10418. ]
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "MIT"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Fabien Potencier",
  10427. "email": "fabien@symfony.com"
  10428. },
  10429. {
  10430. "name": "Symfony Community",
  10431. "homepage": "https://symfony.com/contributors"
  10432. }
  10433. ],
  10434. "description": "Executes commands in sub-processes",
  10435. "homepage": "https://symfony.com",
  10436. "support": {
  10437. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10438. },
  10439. "funding": [
  10440. {
  10441. "url": "https://symfony.com/sponsor",
  10442. "type": "custom"
  10443. },
  10444. {
  10445. "url": "https://github.com/fabpot",
  10446. "type": "github"
  10447. },
  10448. {
  10449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10450. "type": "tidelift"
  10451. }
  10452. ],
  10453. "time": "2024-05-31T14:49:08+00:00"
  10454. },
  10455. {
  10456. "name": "symfony/stopwatch",
  10457. "version": "v6.4.8",
  10458. "source": {
  10459. "type": "git",
  10460. "url": "https://github.com/symfony/stopwatch.git",
  10461. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10462. },
  10463. "dist": {
  10464. "type": "zip",
  10465. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10466. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10467. "shasum": ""
  10468. },
  10469. "require": {
  10470. "php": ">=8.1",
  10471. "symfony/service-contracts": "^2.5|^3"
  10472. },
  10473. "type": "library",
  10474. "autoload": {
  10475. "psr-4": {
  10476. "Symfony\\Component\\Stopwatch\\": ""
  10477. },
  10478. "exclude-from-classmap": [
  10479. "/Tests/"
  10480. ]
  10481. },
  10482. "notification-url": "https://packagist.org/downloads/",
  10483. "license": [
  10484. "MIT"
  10485. ],
  10486. "authors": [
  10487. {
  10488. "name": "Fabien Potencier",
  10489. "email": "fabien@symfony.com"
  10490. },
  10491. {
  10492. "name": "Symfony Community",
  10493. "homepage": "https://symfony.com/contributors"
  10494. }
  10495. ],
  10496. "description": "Provides a way to profile code",
  10497. "homepage": "https://symfony.com",
  10498. "support": {
  10499. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10500. },
  10501. "funding": [
  10502. {
  10503. "url": "https://symfony.com/sponsor",
  10504. "type": "custom"
  10505. },
  10506. {
  10507. "url": "https://github.com/fabpot",
  10508. "type": "github"
  10509. },
  10510. {
  10511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10512. "type": "tidelift"
  10513. }
  10514. ],
  10515. "time": "2024-05-31T14:49:08+00:00"
  10516. },
  10517. {
  10518. "name": "theseer/tokenizer",
  10519. "version": "1.2.3",
  10520. "source": {
  10521. "type": "git",
  10522. "url": "https://github.com/theseer/tokenizer.git",
  10523. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10524. },
  10525. "dist": {
  10526. "type": "zip",
  10527. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10528. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10529. "shasum": ""
  10530. },
  10531. "require": {
  10532. "ext-dom": "*",
  10533. "ext-tokenizer": "*",
  10534. "ext-xmlwriter": "*",
  10535. "php": "^7.2 || ^8.0"
  10536. },
  10537. "type": "library",
  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": "Arne Blankerts",
  10550. "email": "arne@blankerts.de",
  10551. "role": "Developer"
  10552. }
  10553. ],
  10554. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10555. "support": {
  10556. "issues": "https://github.com/theseer/tokenizer/issues",
  10557. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10558. },
  10559. "funding": [
  10560. {
  10561. "url": "https://github.com/theseer",
  10562. "type": "github"
  10563. }
  10564. ],
  10565. "time": "2024-03-03T12:36:25+00:00"
  10566. }
  10567. ],
  10568. "aliases": [],
  10569. "minimum-stability": "dev",
  10570. "stability-flags": [],
  10571. "prefer-stable": true,
  10572. "prefer-lowest": false,
  10573. "platform": {
  10574. "php": ">=8.1"
  10575. },
  10576. "platform-dev": [],
  10577. "plugin-api-version": "2.6.0"
  10578. }