composer.lock 386 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905
  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": "c64b7f2440553c1883c2a743a5f1523d",
  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/inflector",
  80. "version": "2.0.10",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/inflector.git",
  84. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  89. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "php": "^7.2 || ^8.0"
  94. },
  95. "require-dev": {
  96. "doctrine/coding-standard": "^11.0",
  97. "phpstan/phpstan": "^1.8",
  98. "phpstan/phpstan-phpunit": "^1.1",
  99. "phpstan/phpstan-strict-rules": "^1.3",
  100. "phpunit/phpunit": "^8.5 || ^9.5",
  101. "vimeo/psalm": "^4.25 || ^5.4"
  102. },
  103. "type": "library",
  104. "autoload": {
  105. "psr-4": {
  106. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Guilherme Blanco",
  116. "email": "guilhermeblanco@gmail.com"
  117. },
  118. {
  119. "name": "Roman Borschel",
  120. "email": "roman@code-factory.org"
  121. },
  122. {
  123. "name": "Benjamin Eberlei",
  124. "email": "kontakt@beberlei.de"
  125. },
  126. {
  127. "name": "Jonathan Wage",
  128. "email": "jonwage@gmail.com"
  129. },
  130. {
  131. "name": "Johannes Schmitt",
  132. "email": "schmittjoh@gmail.com"
  133. }
  134. ],
  135. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  136. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  137. "keywords": [
  138. "inflection",
  139. "inflector",
  140. "lowercase",
  141. "manipulation",
  142. "php",
  143. "plural",
  144. "singular",
  145. "strings",
  146. "uppercase",
  147. "words"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/doctrine/inflector/issues",
  151. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://www.doctrine-project.org/sponsorship.html",
  156. "type": "custom"
  157. },
  158. {
  159. "url": "https://www.patreon.com/phpdoctrine",
  160. "type": "patreon"
  161. },
  162. {
  163. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  164. "type": "tidelift"
  165. }
  166. ],
  167. "time": "2024-02-18T20:23:39+00:00"
  168. },
  169. {
  170. "name": "doctrine/instantiator",
  171. "version": "1.5.0",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/doctrine/instantiator.git",
  175. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  180. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": "^7.1 || ^8.0"
  185. },
  186. "require-dev": {
  187. "doctrine/coding-standard": "^9 || ^11",
  188. "ext-pdo": "*",
  189. "ext-phar": "*",
  190. "phpbench/phpbench": "^0.16 || ^1",
  191. "phpstan/phpstan": "^1.4",
  192. "phpstan/phpstan-phpunit": "^1",
  193. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  194. "vimeo/psalm": "^4.30 || ^5.4"
  195. },
  196. "type": "library",
  197. "autoload": {
  198. "psr-4": {
  199. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Marco Pivetta",
  209. "email": "ocramius@gmail.com",
  210. "homepage": "https://ocramius.github.io/"
  211. }
  212. ],
  213. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  214. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  215. "keywords": [
  216. "constructor",
  217. "instantiate"
  218. ],
  219. "support": {
  220. "issues": "https://github.com/doctrine/instantiator/issues",
  221. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  222. },
  223. "funding": [
  224. {
  225. "url": "https://www.doctrine-project.org/sponsorship.html",
  226. "type": "custom"
  227. },
  228. {
  229. "url": "https://www.patreon.com/phpdoctrine",
  230. "type": "patreon"
  231. },
  232. {
  233. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  234. "type": "tidelift"
  235. }
  236. ],
  237. "time": "2022-12-30T00:15:36+00:00"
  238. },
  239. {
  240. "name": "elasticsearch/elasticsearch",
  241. "version": "v7.17.2",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/elastic/elasticsearch-php.git",
  245. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  250. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  251. "shasum": ""
  252. },
  253. "require": {
  254. "ext-json": ">=1.3.7",
  255. "ezimuel/ringphp": "^1.1.2",
  256. "php": "^7.3 || ^8.0",
  257. "psr/log": "^1|^2|^3"
  258. },
  259. "require-dev": {
  260. "ext-yaml": "*",
  261. "ext-zip": "*",
  262. "mockery/mockery": "^1.2",
  263. "phpstan/phpstan": "^1.10",
  264. "phpunit/phpunit": "^9.3",
  265. "squizlabs/php_codesniffer": "^3.4",
  266. "symfony/finder": "~4.0"
  267. },
  268. "suggest": {
  269. "ext-curl": "*",
  270. "monolog/monolog": "Allows for client-level logging and tracing"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "files": [
  275. "src/autoload.php"
  276. ],
  277. "psr-4": {
  278. "Elasticsearch\\": "src/Elasticsearch/"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "Apache-2.0",
  284. "LGPL-2.1-only"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Zachary Tong"
  289. },
  290. {
  291. "name": "Enrico Zimuel"
  292. }
  293. ],
  294. "description": "PHP Client for Elasticsearch",
  295. "keywords": [
  296. "client",
  297. "elasticsearch",
  298. "search"
  299. ],
  300. "support": {
  301. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  302. "source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.2"
  303. },
  304. "time": "2023-04-21T15:31:12+00:00"
  305. },
  306. {
  307. "name": "ezimuel/guzzlestreams",
  308. "version": "3.1.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/ezimuel/guzzlestreams.git",
  312. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  317. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": ">=5.4.0"
  322. },
  323. "require-dev": {
  324. "phpunit/phpunit": "~9.0"
  325. },
  326. "type": "library",
  327. "extra": {
  328. "branch-alias": {
  329. "dev-master": "3.0-dev"
  330. }
  331. },
  332. "autoload": {
  333. "psr-4": {
  334. "GuzzleHttp\\Stream\\": "src/"
  335. }
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "MIT"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Michael Dowling",
  344. "email": "mtdowling@gmail.com",
  345. "homepage": "https://github.com/mtdowling"
  346. }
  347. ],
  348. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  349. "homepage": "http://guzzlephp.org/",
  350. "keywords": [
  351. "Guzzle",
  352. "stream"
  353. ],
  354. "support": {
  355. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  356. },
  357. "time": "2022-10-24T12:58:50+00:00"
  358. },
  359. {
  360. "name": "ezimuel/ringphp",
  361. "version": "1.2.2",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/ezimuel/ringphp.git",
  365. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/7887fc8488013065f72f977dcb281994f5fde9f4",
  370. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4",
  371. "shasum": ""
  372. },
  373. "require": {
  374. "ezimuel/guzzlestreams": "^3.0.1",
  375. "php": ">=5.4.0",
  376. "react/promise": "~2.0"
  377. },
  378. "replace": {
  379. "guzzlehttp/ringphp": "self.version"
  380. },
  381. "require-dev": {
  382. "ext-curl": "*",
  383. "phpunit/phpunit": "~9.0"
  384. },
  385. "suggest": {
  386. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "1.1-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "GuzzleHttp\\Ring\\": "src/"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Michael Dowling",
  406. "email": "mtdowling@gmail.com",
  407. "homepage": "https://github.com/mtdowling"
  408. }
  409. ],
  410. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  411. "support": {
  412. "source": "https://github.com/ezimuel/ringphp/tree/1.2.2"
  413. },
  414. "time": "2022-12-07T11:28:53+00:00"
  415. },
  416. {
  417. "name": "fig/http-message-util",
  418. "version": "1.1.5",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/php-fig/http-message-util.git",
  422. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  427. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^5.3 || ^7.0 || ^8.0"
  432. },
  433. "suggest": {
  434. "psr/http-message": "The package containing the PSR-7 interfaces"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-master": "1.1.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Fig\\Http\\Message\\": "src/"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "PHP-FIG",
  454. "homepage": "https://www.php-fig.org/"
  455. }
  456. ],
  457. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  458. "keywords": [
  459. "http",
  460. "http-message",
  461. "psr",
  462. "psr-7",
  463. "request",
  464. "response"
  465. ],
  466. "support": {
  467. "issues": "https://github.com/php-fig/http-message-util/issues",
  468. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  469. },
  470. "time": "2020-11-24T22:02:12+00:00"
  471. },
  472. {
  473. "name": "graham-campbell/result-type",
  474. "version": "v1.1.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  478. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  483. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  484. "shasum": ""
  485. },
  486. "require": {
  487. "php": "^7.2.5 || ^8.0",
  488. "phpoption/phpoption": "^1.9.3"
  489. },
  490. "require-dev": {
  491. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  492. },
  493. "type": "library",
  494. "autoload": {
  495. "psr-4": {
  496. "GrahamCampbell\\ResultType\\": "src/"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "MIT"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Graham Campbell",
  506. "email": "hello@gjcampbell.co.uk",
  507. "homepage": "https://github.com/GrahamCampbell"
  508. }
  509. ],
  510. "description": "An Implementation Of The Result Type",
  511. "keywords": [
  512. "Graham Campbell",
  513. "GrahamCampbell",
  514. "Result Type",
  515. "Result-Type",
  516. "result"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  520. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://github.com/GrahamCampbell",
  525. "type": "github"
  526. },
  527. {
  528. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  529. "type": "tidelift"
  530. }
  531. ],
  532. "time": "2024-07-20T21:45:45+00:00"
  533. },
  534. {
  535. "name": "guzzlehttp/guzzle",
  536. "version": "7.9.2",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/guzzle/guzzle.git",
  540. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  545. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  546. "shasum": ""
  547. },
  548. "require": {
  549. "ext-json": "*",
  550. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  551. "guzzlehttp/psr7": "^2.7.0",
  552. "php": "^7.2.5 || ^8.0",
  553. "psr/http-client": "^1.0",
  554. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  555. },
  556. "provide": {
  557. "psr/http-client-implementation": "1.0"
  558. },
  559. "require-dev": {
  560. "bamarni/composer-bin-plugin": "^1.8.2",
  561. "ext-curl": "*",
  562. "guzzle/client-integration-tests": "3.0.2",
  563. "php-http/message-factory": "^1.1",
  564. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  565. "psr/log": "^1.1 || ^2.0 || ^3.0"
  566. },
  567. "suggest": {
  568. "ext-curl": "Required for CURL handler support",
  569. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  570. "psr/log": "Required for using the Log middleware"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "bamarni-bin": {
  575. "bin-links": true,
  576. "forward-command": false
  577. }
  578. },
  579. "autoload": {
  580. "files": [
  581. "src/functions_include.php"
  582. ],
  583. "psr-4": {
  584. "GuzzleHttp\\": "src/"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Graham Campbell",
  594. "email": "hello@gjcampbell.co.uk",
  595. "homepage": "https://github.com/GrahamCampbell"
  596. },
  597. {
  598. "name": "Michael Dowling",
  599. "email": "mtdowling@gmail.com",
  600. "homepage": "https://github.com/mtdowling"
  601. },
  602. {
  603. "name": "Jeremy Lindblom",
  604. "email": "jeremeamia@gmail.com",
  605. "homepage": "https://github.com/jeremeamia"
  606. },
  607. {
  608. "name": "George Mponos",
  609. "email": "gmponos@gmail.com",
  610. "homepage": "https://github.com/gmponos"
  611. },
  612. {
  613. "name": "Tobias Nyholm",
  614. "email": "tobias.nyholm@gmail.com",
  615. "homepage": "https://github.com/Nyholm"
  616. },
  617. {
  618. "name": "Márk Sági-Kazár",
  619. "email": "mark.sagikazar@gmail.com",
  620. "homepage": "https://github.com/sagikazarmark"
  621. },
  622. {
  623. "name": "Tobias Schultze",
  624. "email": "webmaster@tubo-world.de",
  625. "homepage": "https://github.com/Tobion"
  626. }
  627. ],
  628. "description": "Guzzle is a PHP HTTP client library",
  629. "keywords": [
  630. "client",
  631. "curl",
  632. "framework",
  633. "http",
  634. "http client",
  635. "psr-18",
  636. "psr-7",
  637. "rest",
  638. "web service"
  639. ],
  640. "support": {
  641. "issues": "https://github.com/guzzle/guzzle/issues",
  642. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  643. },
  644. "funding": [
  645. {
  646. "url": "https://github.com/GrahamCampbell",
  647. "type": "github"
  648. },
  649. {
  650. "url": "https://github.com/Nyholm",
  651. "type": "github"
  652. },
  653. {
  654. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  655. "type": "tidelift"
  656. }
  657. ],
  658. "time": "2024-07-24T11:22:20+00:00"
  659. },
  660. {
  661. "name": "guzzlehttp/promises",
  662. "version": "2.0.4",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/guzzle/promises.git",
  666. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  671. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "php": "^7.2.5 || ^8.0"
  676. },
  677. "require-dev": {
  678. "bamarni/composer-bin-plugin": "^1.8.2",
  679. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  680. },
  681. "type": "library",
  682. "extra": {
  683. "bamarni-bin": {
  684. "bin-links": true,
  685. "forward-command": false
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "GuzzleHttp\\Promise\\": "src/"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Graham Campbell",
  700. "email": "hello@gjcampbell.co.uk",
  701. "homepage": "https://github.com/GrahamCampbell"
  702. },
  703. {
  704. "name": "Michael Dowling",
  705. "email": "mtdowling@gmail.com",
  706. "homepage": "https://github.com/mtdowling"
  707. },
  708. {
  709. "name": "Tobias Nyholm",
  710. "email": "tobias.nyholm@gmail.com",
  711. "homepage": "https://github.com/Nyholm"
  712. },
  713. {
  714. "name": "Tobias Schultze",
  715. "email": "webmaster@tubo-world.de",
  716. "homepage": "https://github.com/Tobion"
  717. }
  718. ],
  719. "description": "Guzzle promises library",
  720. "keywords": [
  721. "promise"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/guzzle/promises/issues",
  725. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  726. },
  727. "funding": [
  728. {
  729. "url": "https://github.com/GrahamCampbell",
  730. "type": "github"
  731. },
  732. {
  733. "url": "https://github.com/Nyholm",
  734. "type": "github"
  735. },
  736. {
  737. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  738. "type": "tidelift"
  739. }
  740. ],
  741. "time": "2024-10-17T10:06:22+00:00"
  742. },
  743. {
  744. "name": "guzzlehttp/psr7",
  745. "version": "2.7.0",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/guzzle/psr7.git",
  749. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  754. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "php": "^7.2.5 || ^8.0",
  759. "psr/http-factory": "^1.0",
  760. "psr/http-message": "^1.1 || ^2.0",
  761. "ralouphie/getallheaders": "^3.0"
  762. },
  763. "provide": {
  764. "psr/http-factory-implementation": "1.0",
  765. "psr/http-message-implementation": "1.0"
  766. },
  767. "require-dev": {
  768. "bamarni/composer-bin-plugin": "^1.8.2",
  769. "http-interop/http-factory-tests": "0.9.0",
  770. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  771. },
  772. "suggest": {
  773. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "bamarni-bin": {
  778. "bin-links": true,
  779. "forward-command": false
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "GuzzleHttp\\Psr7\\": "src/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Graham Campbell",
  794. "email": "hello@gjcampbell.co.uk",
  795. "homepage": "https://github.com/GrahamCampbell"
  796. },
  797. {
  798. "name": "Michael Dowling",
  799. "email": "mtdowling@gmail.com",
  800. "homepage": "https://github.com/mtdowling"
  801. },
  802. {
  803. "name": "George Mponos",
  804. "email": "gmponos@gmail.com",
  805. "homepage": "https://github.com/gmponos"
  806. },
  807. {
  808. "name": "Tobias Nyholm",
  809. "email": "tobias.nyholm@gmail.com",
  810. "homepage": "https://github.com/Nyholm"
  811. },
  812. {
  813. "name": "Márk Sági-Kazár",
  814. "email": "mark.sagikazar@gmail.com",
  815. "homepage": "https://github.com/sagikazarmark"
  816. },
  817. {
  818. "name": "Tobias Schultze",
  819. "email": "webmaster@tubo-world.de",
  820. "homepage": "https://github.com/Tobion"
  821. },
  822. {
  823. "name": "Márk Sági-Kazár",
  824. "email": "mark.sagikazar@gmail.com",
  825. "homepage": "https://sagikazarmark.hu"
  826. }
  827. ],
  828. "description": "PSR-7 message implementation that also provides common utility methods",
  829. "keywords": [
  830. "http",
  831. "message",
  832. "psr-7",
  833. "request",
  834. "response",
  835. "stream",
  836. "uri",
  837. "url"
  838. ],
  839. "support": {
  840. "issues": "https://github.com/guzzle/psr7/issues",
  841. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  842. },
  843. "funding": [
  844. {
  845. "url": "https://github.com/GrahamCampbell",
  846. "type": "github"
  847. },
  848. {
  849. "url": "https://github.com/Nyholm",
  850. "type": "github"
  851. },
  852. {
  853. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  854. "type": "tidelift"
  855. }
  856. ],
  857. "time": "2024-07-18T11:15:46+00:00"
  858. },
  859. {
  860. "name": "hyperf/amqp",
  861. "version": "v3.1.42",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/hyperf/amqp.git",
  865. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  870. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "doctrine/instantiator": "^1.2.0",
  875. "hyperf/codec": "~3.1.0",
  876. "hyperf/contract": "~3.1.0",
  877. "hyperf/coroutine": "~3.1.0",
  878. "hyperf/pool": "~3.1.0",
  879. "hyperf/process": "~3.1.0",
  880. "hyperf/support": "~3.1.0",
  881. "hyperf/utils": "~3.1.0",
  882. "php": ">=8.1",
  883. "php-amqplib/php-amqplib": "^3.5",
  884. "psr/container": "^1.0 || ^2.0",
  885. "psr/event-dispatcher": "^1.0",
  886. "psr/log": "^1.0 || ^2.0 || ^3.0"
  887. },
  888. "suggest": {
  889. "hyperf/di": "Required to use annotations.",
  890. "hyperf/event": "Declare queue and start consumers automatically."
  891. },
  892. "type": "library",
  893. "extra": {
  894. "hyperf": {
  895. "config": "Hyperf\\Amqp\\ConfigProvider"
  896. },
  897. "branch-alias": {
  898. "dev-master": "3.1-dev"
  899. }
  900. },
  901. "autoload": {
  902. "psr-4": {
  903. "Hyperf\\Amqp\\": "src/"
  904. }
  905. },
  906. "notification-url": "https://packagist.org/downloads/",
  907. "license": [
  908. "MIT"
  909. ],
  910. "description": "A amqplib for hyperf.",
  911. "homepage": "https://hyperf.io",
  912. "keywords": [
  913. "AMQP",
  914. "hyperf",
  915. "php"
  916. ],
  917. "support": {
  918. "docs": "https://hyperf.wiki",
  919. "issues": "https://github.com/hyperf/hyperf/issues",
  920. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  921. "source": "https://github.com/hyperf/hyperf"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://hyperf.wiki/#/zh-cn/donate",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://opencollective.com/hyperf",
  930. "type": "open_collective"
  931. }
  932. ],
  933. "time": "2024-09-25T02:54:12+00:00"
  934. },
  935. {
  936. "name": "hyperf/async-queue",
  937. "version": "v3.1.42",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/hyperf/async-queue.git",
  941. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  946. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "hyperf/codec": "~3.1.0",
  951. "hyperf/collection": "~3.1.0",
  952. "hyperf/command": "~3.1.0",
  953. "hyperf/contract": "~3.1.0",
  954. "hyperf/support": "~3.1.0",
  955. "hyperf/utils": "~3.1.0",
  956. "php": ">=8.1",
  957. "psr/container": "^1.0 || ^2.0",
  958. "psr/event-dispatcher": "^1.0"
  959. },
  960. "suggest": {
  961. "hyperf/di": "Required to use annotations.",
  962. "hyperf/event": "Required to dispatch a event.",
  963. "hyperf/logger": "Required to use QueueHandleListener.",
  964. "hyperf/process": "Auto register the consumer process for server."
  965. },
  966. "type": "library",
  967. "extra": {
  968. "hyperf": {
  969. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  970. },
  971. "branch-alias": {
  972. "dev-master": "3.1-dev"
  973. }
  974. },
  975. "autoload": {
  976. "files": [
  977. "src/Functions.php"
  978. ],
  979. "psr-4": {
  980. "Hyperf\\AsyncQueue\\": "src/"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "description": "A async queue component for hyperf.",
  988. "homepage": "https://hyperf.io",
  989. "keywords": [
  990. "async-queue",
  991. "hyperf",
  992. "php"
  993. ],
  994. "support": {
  995. "docs": "https://hyperf.wiki",
  996. "issues": "https://github.com/hyperf/hyperf/issues",
  997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  998. "source": "https://github.com/hyperf/hyperf"
  999. },
  1000. "funding": [
  1001. {
  1002. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1003. "type": "custom"
  1004. },
  1005. {
  1006. "url": "https://opencollective.com/hyperf",
  1007. "type": "open_collective"
  1008. }
  1009. ],
  1010. "time": "2024-09-25T02:54:12+00:00"
  1011. },
  1012. {
  1013. "name": "hyperf/cache",
  1014. "version": "v3.1.43",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/hyperf/cache.git",
  1018. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1023. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "hyperf/codec": "~3.1.0",
  1028. "hyperf/collection": "~3.1.0",
  1029. "hyperf/contract": "~3.1.0",
  1030. "hyperf/support": "~3.1.0",
  1031. "hyperf/utils": "~3.1.0",
  1032. "php": ">=8.1",
  1033. "psr/container": "^1.0 || ^2.0",
  1034. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1035. },
  1036. "suggest": {
  1037. "hyperf/di": "Use cache annotations.",
  1038. "hyperf/event": "Use listener to delete annotation cache."
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "hyperf": {
  1043. "config": "Hyperf\\Cache\\ConfigProvider"
  1044. },
  1045. "branch-alias": {
  1046. "dev-master": "3.1-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-4": {
  1051. "Hyperf\\Cache\\": "src/"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "description": "A cache component for hyperf.",
  1059. "homepage": "https://hyperf.io",
  1060. "keywords": [
  1061. "cache",
  1062. "hyperf",
  1063. "php"
  1064. ],
  1065. "support": {
  1066. "docs": "https://hyperf.wiki",
  1067. "issues": "https://github.com/hyperf/hyperf/issues",
  1068. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1069. "source": "https://github.com/hyperf/hyperf"
  1070. },
  1071. "funding": [
  1072. {
  1073. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1074. "type": "custom"
  1075. },
  1076. {
  1077. "url": "https://opencollective.com/hyperf",
  1078. "type": "open_collective"
  1079. }
  1080. ],
  1081. "time": "2024-10-09T10:22:39+00:00"
  1082. },
  1083. {
  1084. "name": "hyperf/code-parser",
  1085. "version": "v3.1.42",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/hyperf/code-parser.git",
  1089. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1094. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1095. "shasum": ""
  1096. },
  1097. "require": {
  1098. "hyperf/collection": "~3.1.0",
  1099. "hyperf/stringable": "~3.1.0",
  1100. "hyperf/support": "~3.1.0",
  1101. "php": ">=8.1"
  1102. },
  1103. "suggest": {
  1104. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1105. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "3.1-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Hyperf\\CodeParser\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "description": "A code parser component for Hyperf.",
  1123. "homepage": "https://hyperf.io",
  1124. "keywords": [
  1125. "code-parser",
  1126. "hyperf",
  1127. "php",
  1128. "swoole"
  1129. ],
  1130. "support": {
  1131. "docs": "https://hyperf.wiki",
  1132. "issues": "https://github.com/hyperf/hyperf/issues",
  1133. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1134. "source": "https://github.com/hyperf/hyperf"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://opencollective.com/hyperf",
  1143. "type": "open_collective"
  1144. }
  1145. ],
  1146. "time": "2024-09-25T02:54:12+00:00"
  1147. },
  1148. {
  1149. "name": "hyperf/codec",
  1150. "version": "v3.1.42",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/hyperf/codec.git",
  1154. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1159. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "ext-json": "*",
  1164. "ext-xml": "*",
  1165. "hyperf/contract": "~3.1.0",
  1166. "php": ">=8.1"
  1167. },
  1168. "suggest": {
  1169. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1170. },
  1171. "type": "library",
  1172. "extra": {
  1173. "branch-alias": {
  1174. "dev-master": "3.1-dev"
  1175. }
  1176. },
  1177. "autoload": {
  1178. "psr-4": {
  1179. "Hyperf\\Codec\\": "src/"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "description": "A codec component for Hyperf.",
  1187. "homepage": "https://hyperf.io",
  1188. "keywords": [
  1189. "codec",
  1190. "hyperf",
  1191. "php",
  1192. "swoole"
  1193. ],
  1194. "support": {
  1195. "docs": "https://hyperf.wiki",
  1196. "issues": "https://github.com/hyperf/hyperf/issues",
  1197. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1198. "source": "https://github.com/hyperf/hyperf"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1203. "type": "custom"
  1204. },
  1205. {
  1206. "url": "https://opencollective.com/hyperf",
  1207. "type": "open_collective"
  1208. }
  1209. ],
  1210. "time": "2024-09-25T02:54:12+00:00"
  1211. },
  1212. {
  1213. "name": "hyperf/collection",
  1214. "version": "v3.1.47",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/hyperf/collection.git",
  1218. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1223. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "hyperf/conditionable": "~3.1.0",
  1228. "hyperf/contract": "~3.1.0",
  1229. "hyperf/macroable": "~3.1.0",
  1230. "hyperf/stringable": "~3.1.0",
  1231. "php": ">=8.1"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "branch-alias": {
  1236. "dev-master": "3.1-dev"
  1237. }
  1238. },
  1239. "autoload": {
  1240. "files": [
  1241. "src/Functions.php"
  1242. ],
  1243. "psr-4": {
  1244. "Hyperf\\Collection\\": "src/"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "description": "Hyperf Collection package which come from illuminate/collections",
  1252. "homepage": "https://hyperf.io",
  1253. "keywords": [
  1254. "collection",
  1255. "hyperf",
  1256. "php",
  1257. "swoole"
  1258. ],
  1259. "support": {
  1260. "docs": "https://hyperf.wiki",
  1261. "issues": "https://github.com/hyperf/hyperf/issues",
  1262. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1263. "source": "https://github.com/hyperf/hyperf"
  1264. },
  1265. "funding": [
  1266. {
  1267. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1268. "type": "custom"
  1269. },
  1270. {
  1271. "url": "https://opencollective.com/hyperf",
  1272. "type": "open_collective"
  1273. }
  1274. ],
  1275. "time": "2024-11-28T01:51:55+00:00"
  1276. },
  1277. {
  1278. "name": "hyperf/command",
  1279. "version": "v3.1.42",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/hyperf/command.git",
  1283. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1288. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "hyperf/collection": "~3.1.0",
  1293. "hyperf/context": "~3.1.0",
  1294. "hyperf/contract": "~3.1.0",
  1295. "hyperf/coroutine": "~3.1.0",
  1296. "hyperf/di": "~3.1.0",
  1297. "hyperf/stringable": "~3.1.0",
  1298. "hyperf/support": "~3.1.0",
  1299. "hyperf/tappable": "~3.1.0",
  1300. "php": ">=8.1",
  1301. "psr/event-dispatcher": "^1.0",
  1302. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1303. },
  1304. "suggest": {
  1305. "hyperf/di": "Required to use annotations.",
  1306. "hyperf/event": "Required to use listeners."
  1307. },
  1308. "type": "library",
  1309. "extra": {
  1310. "hyperf": {
  1311. "config": "Hyperf\\Command\\ConfigProvider"
  1312. },
  1313. "branch-alias": {
  1314. "dev-master": "3.1-dev"
  1315. }
  1316. },
  1317. "autoload": {
  1318. "psr-4": {
  1319. "Hyperf\\Command\\": "src/"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "description": "Command for hyperf",
  1327. "keywords": [
  1328. "command",
  1329. "php",
  1330. "swoole"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/hyperf/command/issues",
  1334. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://opencollective.com/hyperf",
  1343. "type": "open_collective"
  1344. }
  1345. ],
  1346. "time": "2024-09-25T02:54:12+00:00"
  1347. },
  1348. {
  1349. "name": "hyperf/conditionable",
  1350. "version": "v3.1.42",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/hyperf/conditionable.git",
  1354. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1359. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": ">=8.1"
  1364. },
  1365. "type": "library",
  1366. "extra": {
  1367. "branch-alias": {
  1368. "dev-master": "3.1-dev"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Hyperf\\Conditionable\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1381. "homepage": "https://hyperf.io",
  1382. "keywords": [
  1383. "conditionable",
  1384. "hyperf",
  1385. "php",
  1386. "swoole"
  1387. ],
  1388. "support": {
  1389. "docs": "https://hyperf.wiki",
  1390. "issues": "https://github.com/hyperf/hyperf/issues",
  1391. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1392. "source": "https://github.com/hyperf/hyperf"
  1393. },
  1394. "funding": [
  1395. {
  1396. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1397. "type": "custom"
  1398. },
  1399. {
  1400. "url": "https://opencollective.com/hyperf",
  1401. "type": "open_collective"
  1402. }
  1403. ],
  1404. "time": "2024-09-25T02:54:12+00:00"
  1405. },
  1406. {
  1407. "name": "hyperf/config",
  1408. "version": "v3.1.42",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/hyperf/config.git",
  1412. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1417. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "hyperf/collection": "~3.1.0",
  1422. "hyperf/contract": "~3.1.0",
  1423. "hyperf/support": "~3.1.0",
  1424. "php": ">=8.1",
  1425. "psr/container": "^1.0 || ^2.0",
  1426. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1427. },
  1428. "suggest": {
  1429. "hyperf/context": "Required to use config()",
  1430. "hyperf/di": "Allows using @Value annotation",
  1431. "hyperf/event": "Allows using @Value annotation",
  1432. "hyperf/framework": "Allows using @Value annotation",
  1433. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "hyperf": {
  1438. "config": "Hyperf\\Config\\ConfigProvider"
  1439. },
  1440. "branch-alias": {
  1441. "dev-master": "3.1-dev"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "files": [
  1446. "./src/Functions.php"
  1447. ],
  1448. "psr-4": {
  1449. "Hyperf\\Config\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "description": "An independent component that provides configuration container.",
  1457. "homepage": "https://hyperf.io",
  1458. "keywords": [
  1459. "config",
  1460. "configuration",
  1461. "hyperf",
  1462. "php",
  1463. "swoole"
  1464. ],
  1465. "support": {
  1466. "docs": "https://hyperf.wiki",
  1467. "issues": "https://github.com/hyperf/hyperf/issues",
  1468. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1469. "source": "https://github.com/hyperf/hyperf"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://opencollective.com/hyperf",
  1478. "type": "open_collective"
  1479. }
  1480. ],
  1481. "time": "2024-09-25T02:54:12+00:00"
  1482. },
  1483. {
  1484. "name": "hyperf/config-apollo",
  1485. "version": "v3.1.42",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/hyperf/config-apollo.git",
  1489. "reference": "ef35604f1b8689ce86b3a4b1476229bbc34950ff"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/hyperf/config-apollo/zipball/ef35604f1b8689ce86b3a4b1476229bbc34950ff",
  1494. "reference": "ef35604f1b8689ce86b3a4b1476229bbc34950ff",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "hyperf/config-center": "~3.1.0",
  1499. "hyperf/contract": "~3.1.0",
  1500. "hyperf/support": "~3.1.0",
  1501. "hyperf/utils": "~3.1.0",
  1502. "php": ">=8.1",
  1503. "psr/container": "^1.0 || ^2.0"
  1504. },
  1505. "suggest": {
  1506. "hyperf/process": "Use hyperf process to run ConfigFetcherProcess."
  1507. },
  1508. "type": "library",
  1509. "extra": {
  1510. "hyperf": {
  1511. "config": "Hyperf\\ConfigApollo\\ConfigProvider"
  1512. },
  1513. "branch-alias": {
  1514. "dev-master": "3.1-dev"
  1515. }
  1516. },
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Hyperf\\ConfigApollo\\": "src/"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "description": "An apollo adapter for Hyperf config component.",
  1527. "homepage": "https://hyperf.io",
  1528. "keywords": [
  1529. "apollo",
  1530. "config",
  1531. "configuration",
  1532. "hyperf",
  1533. "php",
  1534. "swoole"
  1535. ],
  1536. "support": {
  1537. "docs": "https://hyperf.wiki",
  1538. "issues": "https://github.com/hyperf/hyperf/issues",
  1539. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1540. "source": "https://github.com/hyperf/hyperf"
  1541. },
  1542. "funding": [
  1543. {
  1544. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1545. "type": "custom"
  1546. },
  1547. {
  1548. "url": "https://opencollective.com/hyperf",
  1549. "type": "open_collective"
  1550. }
  1551. ],
  1552. "time": "2024-09-25T02:54:12+00:00"
  1553. },
  1554. {
  1555. "name": "hyperf/config-center",
  1556. "version": "v3.1.42",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/hyperf/config-center.git",
  1560. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1565. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "hyperf/support": "~3.1.0",
  1570. "php": ">=8.1"
  1571. },
  1572. "suggest": {
  1573. "hyperf/process": "^2.1"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "hyperf": {
  1578. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1579. },
  1580. "branch-alias": {
  1581. "dev-master": "3.1-dev"
  1582. }
  1583. },
  1584. "autoload": {
  1585. "psr-4": {
  1586. "Hyperf\\ConfigCenter\\": "src/"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "description": "The abstraction component of config center",
  1594. "homepage": "https://hyperf.io",
  1595. "keywords": [
  1596. "config-center",
  1597. "hyperf",
  1598. "php"
  1599. ],
  1600. "support": {
  1601. "docs": "https://hyperf.wiki",
  1602. "issues": "https://github.com/hyperf/hyperf/issues",
  1603. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1604. "source": "https://github.com/hyperf/hyperf"
  1605. },
  1606. "funding": [
  1607. {
  1608. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1609. "type": "custom"
  1610. },
  1611. {
  1612. "url": "https://opencollective.com/hyperf",
  1613. "type": "open_collective"
  1614. }
  1615. ],
  1616. "time": "2024-09-25T02:54:12+00:00"
  1617. },
  1618. {
  1619. "name": "hyperf/constants",
  1620. "version": "v3.1.42",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/hyperf/constants.git",
  1624. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1629. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "hyperf/di": "~3.1.0",
  1634. "hyperf/support": "~3.1.0",
  1635. "hyperf/utils": "~3.1.0",
  1636. "php": ">=8.1"
  1637. },
  1638. "suggest": {
  1639. "hyperf/translation": "Required to use translation."
  1640. },
  1641. "type": "library",
  1642. "extra": {
  1643. "hyperf": {
  1644. "config": "Hyperf\\Constants\\ConfigProvider"
  1645. },
  1646. "branch-alias": {
  1647. "dev-master": "3.1-dev"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "psr-4": {
  1652. "Hyperf\\Constants\\": "src/"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "description": "A constants component for hyperf.",
  1660. "homepage": "https://hyperf.io",
  1661. "keywords": [
  1662. "constants",
  1663. "hyperf",
  1664. "php"
  1665. ],
  1666. "support": {
  1667. "docs": "https://hyperf.wiki",
  1668. "issues": "https://github.com/hyperf/hyperf/issues",
  1669. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1670. "source": "https://github.com/hyperf/hyperf"
  1671. },
  1672. "funding": [
  1673. {
  1674. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1675. "type": "custom"
  1676. },
  1677. {
  1678. "url": "https://opencollective.com/hyperf",
  1679. "type": "open_collective"
  1680. }
  1681. ],
  1682. "time": "2024-09-25T02:54:12+00:00"
  1683. },
  1684. {
  1685. "name": "hyperf/context",
  1686. "version": "v3.1.42",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/hyperf/context.git",
  1690. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1695. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "hyperf/engine": "^2.0",
  1700. "php": ">=8.1"
  1701. },
  1702. "suggest": {
  1703. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "3.1-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "psr-4": {
  1713. "Hyperf\\Context\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "description": "A coroutine/application context library.",
  1721. "homepage": "https://hyperf.io",
  1722. "keywords": [
  1723. "Context",
  1724. "hyperf",
  1725. "php",
  1726. "swoole"
  1727. ],
  1728. "support": {
  1729. "docs": "https://hyperf.wiki",
  1730. "issues": "https://github.com/hyperf/hyperf/issues",
  1731. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1732. "source": "https://github.com/hyperf/hyperf"
  1733. },
  1734. "funding": [
  1735. {
  1736. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1737. "type": "custom"
  1738. },
  1739. {
  1740. "url": "https://opencollective.com/hyperf",
  1741. "type": "open_collective"
  1742. }
  1743. ],
  1744. "time": "2024-09-25T02:54:12+00:00"
  1745. },
  1746. {
  1747. "name": "hyperf/contract",
  1748. "version": "v3.1.42",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/hyperf/contract.git",
  1752. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1757. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": ">=8.1"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "branch-alias": {
  1766. "dev-master": "3.1-dev"
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-4": {
  1771. "Hyperf\\Contract\\": "src/"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "description": "The contracts of Hyperf.",
  1779. "homepage": "https://hyperf.io",
  1780. "keywords": [
  1781. "hyperf",
  1782. "php",
  1783. "swoole"
  1784. ],
  1785. "support": {
  1786. "docs": "https://hyperf.wiki",
  1787. "issues": "https://github.com/hyperf/hyperf/issues",
  1788. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1789. "source": "https://github.com/hyperf/hyperf"
  1790. },
  1791. "funding": [
  1792. {
  1793. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1794. "type": "custom"
  1795. },
  1796. {
  1797. "url": "https://opencollective.com/hyperf",
  1798. "type": "open_collective"
  1799. }
  1800. ],
  1801. "time": "2024-09-25T02:54:12+00:00"
  1802. },
  1803. {
  1804. "name": "hyperf/coordinator",
  1805. "version": "v3.1.42",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/hyperf/coordinator.git",
  1809. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1814. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "hyperf/engine": "^2.0",
  1819. "php": ">=8.1"
  1820. },
  1821. "type": "library",
  1822. "extra": {
  1823. "branch-alias": {
  1824. "dev-master": "3.1-dev"
  1825. }
  1826. },
  1827. "autoload": {
  1828. "files": [
  1829. "src/Functions.php"
  1830. ],
  1831. "psr-4": {
  1832. "Hyperf\\Coordinator\\": "src/"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "description": "Hyperf Coordinator",
  1840. "homepage": "https://hyperf.io",
  1841. "keywords": [
  1842. "Coordinator",
  1843. "hyperf",
  1844. "php",
  1845. "swoole"
  1846. ],
  1847. "support": {
  1848. "docs": "https://hyperf.wiki",
  1849. "issues": "https://github.com/hyperf/hyperf/issues",
  1850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1851. "source": "https://github.com/hyperf/hyperf"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://opencollective.com/hyperf",
  1860. "type": "open_collective"
  1861. }
  1862. ],
  1863. "time": "2024-09-25T02:54:12+00:00"
  1864. },
  1865. {
  1866. "name": "hyperf/coroutine",
  1867. "version": "v3.1.49",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/hyperf/coroutine.git",
  1871. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/959ea68ac700061d8f7b76708bc52f588b66979b",
  1876. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "hyperf/context": "~3.1.0",
  1881. "hyperf/contract": "~3.1.0",
  1882. "hyperf/engine": "^2.0",
  1883. "php": ">=8.1"
  1884. },
  1885. "type": "library",
  1886. "extra": {
  1887. "branch-alias": {
  1888. "dev-master": "3.1-dev"
  1889. }
  1890. },
  1891. "autoload": {
  1892. "files": [
  1893. "src/Functions.php"
  1894. ],
  1895. "psr-4": {
  1896. "Hyperf\\Coroutine\\": "src/"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "description": "Hyperf Coroutine",
  1904. "homepage": "https://hyperf.io",
  1905. "keywords": [
  1906. "coroutine",
  1907. "hyperf",
  1908. "php",
  1909. "swoole"
  1910. ],
  1911. "support": {
  1912. "docs": "https://hyperf.wiki",
  1913. "issues": "https://github.com/hyperf/hyperf/issues",
  1914. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1915. "source": "https://github.com/hyperf/hyperf"
  1916. },
  1917. "funding": [
  1918. {
  1919. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1920. "type": "custom"
  1921. },
  1922. {
  1923. "url": "https://opencollective.com/hyperf",
  1924. "type": "open_collective"
  1925. }
  1926. ],
  1927. "time": "2024-12-13T07:51:52+00:00"
  1928. },
  1929. {
  1930. "name": "hyperf/database",
  1931. "version": "v3.1.48",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/hyperf/database.git",
  1935. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  1940. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "hyperf/code-parser": "~3.1.0",
  1945. "hyperf/collection": "~3.1.23",
  1946. "hyperf/conditionable": "~3.1.0",
  1947. "hyperf/macroable": "~3.1.0",
  1948. "hyperf/support": "~3.1.0",
  1949. "hyperf/tappable": "~3.1.0",
  1950. "hyperf/utils": "~3.1.0",
  1951. "nesbot/carbon": "^2.0",
  1952. "php": ">=8.1",
  1953. "psr/container": "^1.0 || ^2.0",
  1954. "psr/event-dispatcher": "^1.0"
  1955. },
  1956. "suggest": {
  1957. "doctrine/dbal": "Required to rename columns (^3.0).",
  1958. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1959. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1960. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "3.1-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Hyperf\\Database\\": "src/"
  1971. }
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "MIT"
  1976. ],
  1977. "description": "A flexible database library.",
  1978. "homepage": "https://hyperf.io",
  1979. "keywords": [
  1980. "database",
  1981. "hyperf",
  1982. "php"
  1983. ],
  1984. "support": {
  1985. "docs": "https://hyperf.wiki",
  1986. "issues": "https://github.com/hyperf/hyperf/issues",
  1987. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1988. "source": "https://github.com/hyperf/hyperf"
  1989. },
  1990. "funding": [
  1991. {
  1992. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1993. "type": "custom"
  1994. },
  1995. {
  1996. "url": "https://opencollective.com/hyperf",
  1997. "type": "open_collective"
  1998. }
  1999. ],
  2000. "time": "2024-12-12T01:58:16+00:00"
  2001. },
  2002. {
  2003. "name": "hyperf/db-connection",
  2004. "version": "v3.1.44",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/hyperf/db-connection.git",
  2008. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2013. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "hyperf/database": "~3.1.0",
  2018. "hyperf/di": "~3.1.0",
  2019. "hyperf/framework": "~3.1.0",
  2020. "hyperf/model-listener": "~3.1.0",
  2021. "hyperf/pool": "~3.1.0",
  2022. "hyperf/support": "~3.1.0",
  2023. "hyperf/utils": "~3.1.0",
  2024. "php": ">=8.1",
  2025. "psr/container": "^1.0 || ^2.0"
  2026. },
  2027. "type": "library",
  2028. "extra": {
  2029. "hyperf": {
  2030. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2031. },
  2032. "branch-alias": {
  2033. "dev-master": "3.1-dev"
  2034. }
  2035. },
  2036. "autoload": {
  2037. "psr-4": {
  2038. "Hyperf\\DbConnection\\": "src/"
  2039. }
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "description": "A hyperf db connection handler for hyperf/database.",
  2046. "homepage": "https://hyperf.io",
  2047. "keywords": [
  2048. "Connection",
  2049. "database",
  2050. "hyperf",
  2051. "php"
  2052. ],
  2053. "support": {
  2054. "docs": "https://hyperf.wiki",
  2055. "issues": "https://github.com/hyperf/hyperf/issues",
  2056. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2057. "source": "https://github.com/hyperf/hyperf"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://opencollective.com/hyperf",
  2066. "type": "open_collective"
  2067. }
  2068. ],
  2069. "time": "2024-10-11T08:58:16+00:00"
  2070. },
  2071. {
  2072. "name": "hyperf/di",
  2073. "version": "v3.1.42",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/hyperf/di.git",
  2077. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2082. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "doctrine/instantiator": "^1.0",
  2087. "hyperf/code-parser": "~3.1.0",
  2088. "hyperf/pipeline": "~3.1.0",
  2089. "hyperf/stdlib": "~3.1.0",
  2090. "hyperf/support": "~3.1.0",
  2091. "nikic/php-parser": "^4.1",
  2092. "php": ">=8.1",
  2093. "php-di/phpdoc-reader": "^2.2",
  2094. "psr/container": "^1.0 || ^2.0",
  2095. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2096. "vlucas/phpdotenv": "^5.0"
  2097. },
  2098. "suggest": {
  2099. "ext-pcntl": "Required to scan annotations.",
  2100. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "hyperf": {
  2105. "config": "Hyperf\\Di\\ConfigProvider"
  2106. },
  2107. "branch-alias": {
  2108. "dev-master": "3.1-dev"
  2109. }
  2110. },
  2111. "autoload": {
  2112. "psr-4": {
  2113. "Hyperf\\Di\\": "src/"
  2114. }
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "MIT"
  2119. ],
  2120. "description": "A DI for Hyperf.",
  2121. "homepage": "https://hyperf.io",
  2122. "keywords": [
  2123. "annotation",
  2124. "di",
  2125. "hyperf",
  2126. "php",
  2127. "swoole"
  2128. ],
  2129. "support": {
  2130. "docs": "https://hyperf.wiki",
  2131. "issues": "https://github.com/hyperf/hyperf/issues",
  2132. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2133. "source": "https://github.com/hyperf/hyperf"
  2134. },
  2135. "funding": [
  2136. {
  2137. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2138. "type": "custom"
  2139. },
  2140. {
  2141. "url": "https://opencollective.com/hyperf",
  2142. "type": "open_collective"
  2143. }
  2144. ],
  2145. "time": "2024-09-25T02:54:12+00:00"
  2146. },
  2147. {
  2148. "name": "hyperf/dispatcher",
  2149. "version": "v3.1.42",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://github.com/hyperf/dispatcher.git",
  2153. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2158. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2159. "shasum": ""
  2160. },
  2161. "require": {
  2162. "hyperf/contract": "~3.1.0",
  2163. "php": ">=8.1",
  2164. "psr/container": "^1.0 || ^2.0",
  2165. "psr/http-message": "^1.0 || ^2.0",
  2166. "psr/http-server-middleware": "^1.0"
  2167. },
  2168. "type": "library",
  2169. "extra": {
  2170. "hyperf": {
  2171. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2172. },
  2173. "branch-alias": {
  2174. "dev-master": "3.1-dev"
  2175. }
  2176. },
  2177. "autoload": {
  2178. "psr-4": {
  2179. "Hyperf\\Dispatcher\\": "src/"
  2180. }
  2181. },
  2182. "notification-url": "https://packagist.org/downloads/",
  2183. "license": [
  2184. "MIT"
  2185. ],
  2186. "description": "A HTTP Server for Hyperf.",
  2187. "homepage": "https://hyperf.io",
  2188. "keywords": [
  2189. "dispatcher",
  2190. "filter",
  2191. "hyperf",
  2192. "middleware",
  2193. "php",
  2194. "swoole"
  2195. ],
  2196. "support": {
  2197. "docs": "https://hyperf.wiki",
  2198. "issues": "https://github.com/hyperf/hyperf/issues",
  2199. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2200. "source": "https://github.com/hyperf/hyperf"
  2201. },
  2202. "funding": [
  2203. {
  2204. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2205. "type": "custom"
  2206. },
  2207. {
  2208. "url": "https://opencollective.com/hyperf",
  2209. "type": "open_collective"
  2210. }
  2211. ],
  2212. "time": "2024-09-25T02:54:12+00:00"
  2213. },
  2214. {
  2215. "name": "hyperf/elasticsearch",
  2216. "version": "v3.1.42",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/hyperf/elasticsearch.git",
  2220. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/hyperf/elasticsearch/zipball/ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2225. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "elasticsearch/elasticsearch": "^7.0",
  2230. "hyperf/guzzle": "~3.1.0",
  2231. "php": ">=8.1"
  2232. },
  2233. "type": "library",
  2234. "extra": {
  2235. "branch-alias": {
  2236. "dev-master": "3.1-dev"
  2237. }
  2238. },
  2239. "autoload": {
  2240. "psr-4": {
  2241. "Hyperf\\Elasticsearch\\": "src/"
  2242. }
  2243. },
  2244. "notification-url": "https://packagist.org/downloads/",
  2245. "license": [
  2246. "MIT"
  2247. ],
  2248. "description": "Elasticsearch client for hyperf",
  2249. "keywords": [
  2250. "elasticsearch",
  2251. "php",
  2252. "swoole"
  2253. ],
  2254. "support": {
  2255. "issues": "https://github.com/hyperf/elasticsearch/issues",
  2256. "source": "https://github.com/hyperf/elasticsearch/tree/v3.1.42"
  2257. },
  2258. "funding": [
  2259. {
  2260. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2261. "type": "custom"
  2262. },
  2263. {
  2264. "url": "https://opencollective.com/hyperf",
  2265. "type": "open_collective"
  2266. }
  2267. ],
  2268. "time": "2024-09-25T02:54:12+00:00"
  2269. },
  2270. {
  2271. "name": "hyperf/engine",
  2272. "version": "v2.12.1",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/hyperf/engine.git",
  2276. "reference": "90be8143841482dcd00051050986251e126c6132"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2281. "reference": "90be8143841482dcd00051050986251e126c6132",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "hyperf/engine-contract": "~1.11.0",
  2286. "php": ">=8.0"
  2287. },
  2288. "conflict": {
  2289. "ext-swoole": "<5.0"
  2290. },
  2291. "require-dev": {
  2292. "friendsofphp/php-cs-fixer": "^3.0",
  2293. "hyperf/guzzle": "^3.0",
  2294. "hyperf/http-message": "^3.0",
  2295. "mockery/mockery": "^1.5",
  2296. "phpstan/phpstan": "^1.0",
  2297. "phpunit/phpunit": "^9.4",
  2298. "swoole/ide-helper": "5.*"
  2299. },
  2300. "suggest": {
  2301. "ext-sockets": "*",
  2302. "ext-swoole": ">=5.0",
  2303. "hyperf/http-message": "Required to use ResponseEmitter.",
  2304. "psr/http-message": "Required to use WebSocket Frame."
  2305. },
  2306. "type": "library",
  2307. "extra": {
  2308. "hyperf": {
  2309. "config": "Hyperf\\Engine\\ConfigProvider"
  2310. },
  2311. "branch-alias": {
  2312. "dev-master": "2.12-dev"
  2313. }
  2314. },
  2315. "autoload": {
  2316. "files": [
  2317. "src/Functions.php"
  2318. ],
  2319. "psr-4": {
  2320. "Hyperf\\Engine\\": "src/"
  2321. }
  2322. },
  2323. "notification-url": "https://packagist.org/downloads/",
  2324. "license": [
  2325. "MIT"
  2326. ],
  2327. "description": "Coroutine engine provided by swoole.",
  2328. "keywords": [
  2329. "engine",
  2330. "hyperf",
  2331. "php",
  2332. "swoole"
  2333. ],
  2334. "support": {
  2335. "issues": "https://github.com/hyperf/engine/issues",
  2336. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2337. },
  2338. "funding": [
  2339. {
  2340. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2341. "type": "custom"
  2342. },
  2343. {
  2344. "url": "https://opencollective.com/hyperf",
  2345. "type": "open_collective"
  2346. }
  2347. ],
  2348. "time": "2024-12-17T12:36:21+00:00"
  2349. },
  2350. {
  2351. "name": "hyperf/engine-contract",
  2352. "version": "v1.11.0",
  2353. "source": {
  2354. "type": "git",
  2355. "url": "https://github.com/hyperf/engine-contract.git",
  2356. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2357. },
  2358. "dist": {
  2359. "type": "zip",
  2360. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2361. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2362. "shasum": ""
  2363. },
  2364. "require": {
  2365. "php": ">=8.0"
  2366. },
  2367. "require-dev": {
  2368. "friendsofphp/php-cs-fixer": "^3.0",
  2369. "mockery/mockery": "^1.0",
  2370. "phpstan/phpstan": "^1.0",
  2371. "phpunit/phpunit": ">=7.0",
  2372. "psr/http-message": "^1.0",
  2373. "swoole/ide-helper": "^4.5"
  2374. },
  2375. "suggest": {
  2376. "psr/http-message": "Required to use WebSocket Frame."
  2377. },
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-master": "1.9-dev"
  2382. }
  2383. },
  2384. "autoload": {
  2385. "psr-4": {
  2386. "Hyperf\\Engine\\Contract\\": "src/"
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "description": "Contract for Coroutine Engine",
  2394. "keywords": [
  2395. "contract",
  2396. "coroutine",
  2397. "engine",
  2398. "hyperf",
  2399. "php"
  2400. ],
  2401. "support": {
  2402. "issues": "https://github.com/hyperf/engine-contract/issues",
  2403. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2404. },
  2405. "funding": [
  2406. {
  2407. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2408. "type": "custom"
  2409. },
  2410. {
  2411. "url": "https://opencollective.com/hyperf",
  2412. "type": "open_collective"
  2413. }
  2414. ],
  2415. "time": "2024-11-19T04:15:31+00:00"
  2416. },
  2417. {
  2418. "name": "hyperf/event",
  2419. "version": "v3.1.42",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/hyperf/event.git",
  2423. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2428. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "hyperf/contract": "~3.1.0",
  2433. "hyperf/stdlib": "~3.1.0",
  2434. "php": ">=8.1",
  2435. "psr/event-dispatcher": "^1.0"
  2436. },
  2437. "suggest": {
  2438. "hyperf/di": "Required to use annotatioins."
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "hyperf": {
  2443. "config": "Hyperf\\Event\\ConfigProvider"
  2444. },
  2445. "branch-alias": {
  2446. "dev-master": "3.1-dev"
  2447. }
  2448. },
  2449. "autoload": {
  2450. "psr-4": {
  2451. "Hyperf\\Event\\": "src/"
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "description": "an event manager that implements PSR-14.",
  2459. "homepage": "https://hyperf.io",
  2460. "keywords": [
  2461. "event",
  2462. "hyperf",
  2463. "php",
  2464. "swoole"
  2465. ],
  2466. "support": {
  2467. "docs": "https://hyperf.wiki",
  2468. "issues": "https://github.com/hyperf/hyperf/issues",
  2469. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2470. "source": "https://github.com/hyperf/hyperf"
  2471. },
  2472. "funding": [
  2473. {
  2474. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2475. "type": "custom"
  2476. },
  2477. {
  2478. "url": "https://opencollective.com/hyperf",
  2479. "type": "open_collective"
  2480. }
  2481. ],
  2482. "time": "2024-09-25T02:54:12+00:00"
  2483. },
  2484. {
  2485. "name": "hyperf/exception-handler",
  2486. "version": "v3.1.42",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/hyperf/exception-handler.git",
  2490. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2495. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "hyperf/context": "~3.1.0",
  2500. "hyperf/contract": "~3.1.0",
  2501. "hyperf/dispatcher": "~3.1.0",
  2502. "hyperf/http-message": "~3.1.0",
  2503. "hyperf/stdlib": "~3.1.0",
  2504. "hyperf/support": "~3.1.0",
  2505. "php": ">=8.1",
  2506. "psr/container": "^1.0 || ^2.0",
  2507. "psr/http-message": "^1.0 || ^2.0",
  2508. "swow/psr7-plus": "^1.0"
  2509. },
  2510. "suggest": {
  2511. "hyperf/di": "Required to use #[ExceptionHandler]",
  2512. "hyperf/event": "Required to use listeners",
  2513. "hyperf/framework": "Required to use listeners",
  2514. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2515. },
  2516. "type": "library",
  2517. "extra": {
  2518. "hyperf": {
  2519. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2520. },
  2521. "branch-alias": {
  2522. "dev-master": "3.1-dev"
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "Hyperf\\ExceptionHandler\\": "src/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "description": "Exception handler for hyperf",
  2535. "homepage": "https://hyperf.io",
  2536. "keywords": [
  2537. "exception-handler",
  2538. "php",
  2539. "swoole"
  2540. ],
  2541. "support": {
  2542. "docs": "https://hyperf.wiki",
  2543. "issues": "https://github.com/hyperf/hyperf/issues",
  2544. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2545. "source": "https://github.com/hyperf/hyperf"
  2546. },
  2547. "funding": [
  2548. {
  2549. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2550. "type": "custom"
  2551. },
  2552. {
  2553. "url": "https://opencollective.com/hyperf",
  2554. "type": "open_collective"
  2555. }
  2556. ],
  2557. "time": "2024-09-25T02:54:12+00:00"
  2558. },
  2559. {
  2560. "name": "hyperf/framework",
  2561. "version": "v3.1.42",
  2562. "source": {
  2563. "type": "git",
  2564. "url": "https://github.com/hyperf/framework.git",
  2565. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2566. },
  2567. "dist": {
  2568. "type": "zip",
  2569. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2570. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2571. "shasum": ""
  2572. },
  2573. "require": {
  2574. "fig/http-message-util": "^1.1.2",
  2575. "hyperf/contract": "~3.1.0",
  2576. "hyperf/coordinator": "~3.1.0",
  2577. "hyperf/coroutine": "~3.1.0",
  2578. "php": ">=8.1",
  2579. "psr/container": "^1.0 || ^2.0",
  2580. "psr/event-dispatcher": "^1.0",
  2581. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2582. },
  2583. "suggest": {
  2584. "ext-swoole": "Required to use swoole engine.",
  2585. "hyperf/command": "Required to use Command annotation.",
  2586. "hyperf/di": "Required to use Command annotation.",
  2587. "hyperf/dispatcher": "Required to use BootApplication event.",
  2588. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2589. },
  2590. "type": "library",
  2591. "extra": {
  2592. "hyperf": {
  2593. "config": "Hyperf\\Framework\\ConfigProvider"
  2594. },
  2595. "branch-alias": {
  2596. "dev-master": "3.1-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Hyperf\\Framework\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2609. "homepage": "https://hyperf.io",
  2610. "keywords": [
  2611. "Microservice",
  2612. "framework",
  2613. "hyperf",
  2614. "middleware",
  2615. "php",
  2616. "swoole"
  2617. ],
  2618. "support": {
  2619. "docs": "https://hyperf.wiki",
  2620. "issues": "https://github.com/hyperf/hyperf/issues",
  2621. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2622. "source": "https://github.com/hyperf/hyperf"
  2623. },
  2624. "funding": [
  2625. {
  2626. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2627. "type": "custom"
  2628. },
  2629. {
  2630. "url": "https://opencollective.com/hyperf",
  2631. "type": "open_collective"
  2632. }
  2633. ],
  2634. "time": "2024-09-25T02:54:12+00:00"
  2635. },
  2636. {
  2637. "name": "hyperf/guzzle",
  2638. "version": "v3.1.42",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/hyperf/guzzle.git",
  2642. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2647. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2652. "php": ">=8.1",
  2653. "psr/container": "^1.0 || ^2.0",
  2654. "psr/http-message": "^1.0 || ^2.0"
  2655. },
  2656. "suggest": {
  2657. "ext-curl": "Required for CURL handler support",
  2658. "hyperf/pool": "Required to use pool handler."
  2659. },
  2660. "type": "library",
  2661. "extra": {
  2662. "hyperf": {
  2663. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2664. },
  2665. "branch-alias": {
  2666. "dev-master": "3.1-dev"
  2667. }
  2668. },
  2669. "autoload": {
  2670. "psr-4": {
  2671. "Hyperf\\Guzzle\\": "src/"
  2672. }
  2673. },
  2674. "notification-url": "https://packagist.org/downloads/",
  2675. "license": [
  2676. "MIT"
  2677. ],
  2678. "description": "Swoole coroutine handler for guzzle",
  2679. "keywords": [
  2680. "Guzzle",
  2681. "handler",
  2682. "php",
  2683. "swoole"
  2684. ],
  2685. "support": {
  2686. "issues": "https://github.com/hyperf/guzzle/issues",
  2687. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2688. },
  2689. "funding": [
  2690. {
  2691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2692. "type": "custom"
  2693. },
  2694. {
  2695. "url": "https://opencollective.com/hyperf",
  2696. "type": "open_collective"
  2697. }
  2698. ],
  2699. "time": "2024-09-25T02:54:12+00:00"
  2700. },
  2701. {
  2702. "name": "hyperf/http-message",
  2703. "version": "v3.1.48",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/hyperf/http-message.git",
  2707. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2712. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "hyperf/codec": "~3.1.0",
  2717. "hyperf/engine": "^2.11",
  2718. "hyperf/support": "~3.1.0",
  2719. "laminas/laminas-mime": "^2.7",
  2720. "php": ">=8.1",
  2721. "psr/http-message": "^1.0 || ^2.0",
  2722. "swow/psr7-plus": "^1.0"
  2723. },
  2724. "suggest": {
  2725. "psr/container": "Required to replace RequestParserInterface."
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "hyperf": {
  2730. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2731. },
  2732. "branch-alias": {
  2733. "dev-master": "3.1-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Hyperf\\HttpMessage\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "description": "microservice framework base on swoole",
  2746. "keywords": [
  2747. "http-message",
  2748. "hyperf",
  2749. "php",
  2750. "swoole"
  2751. ],
  2752. "support": {
  2753. "issues": "https://github.com/hyperf/http-message/issues",
  2754. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2755. },
  2756. "funding": [
  2757. {
  2758. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2759. "type": "custom"
  2760. },
  2761. {
  2762. "url": "https://opencollective.com/hyperf",
  2763. "type": "open_collective"
  2764. }
  2765. ],
  2766. "time": "2024-12-05T02:41:08+00:00"
  2767. },
  2768. {
  2769. "name": "hyperf/http-server",
  2770. "version": "v3.1.42",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/hyperf/http-server.git",
  2774. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2779. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2780. "shasum": ""
  2781. },
  2782. "require": {
  2783. "hyperf/codec": "~3.1.0",
  2784. "hyperf/collection": "~3.1.0",
  2785. "hyperf/context": "~3.1.0",
  2786. "hyperf/contract": "~3.1.0",
  2787. "hyperf/coroutine": "~3.1.0",
  2788. "hyperf/dispatcher": "~3.1.0",
  2789. "hyperf/event": "~3.1.0",
  2790. "hyperf/exception-handler": "~3.1.0",
  2791. "hyperf/http-message": "~3.1.0",
  2792. "hyperf/macroable": "~3.1.0",
  2793. "hyperf/serializer": "~3.1.0",
  2794. "hyperf/server": "~3.1.0",
  2795. "hyperf/stdlib": "~3.1.0",
  2796. "hyperf/support": "~3.1.0",
  2797. "nikic/fast-route": "^1.3",
  2798. "php": ">=8.1",
  2799. "psr/container": "^1.0 || ^2.0",
  2800. "swow/psr7-plus": "^1.0"
  2801. },
  2802. "suggest": {
  2803. "hyperf/di": "Required to use annotations."
  2804. },
  2805. "type": "library",
  2806. "extra": {
  2807. "hyperf": {
  2808. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2809. },
  2810. "branch-alias": {
  2811. "dev-master": "3.1-dev"
  2812. }
  2813. },
  2814. "autoload": {
  2815. "psr-4": {
  2816. "Hyperf\\HttpServer\\": "src/"
  2817. }
  2818. },
  2819. "notification-url": "https://packagist.org/downloads/",
  2820. "license": [
  2821. "MIT"
  2822. ],
  2823. "description": "A HTTP Server for Hyperf.",
  2824. "homepage": "https://hyperf.io",
  2825. "keywords": [
  2826. "http",
  2827. "http-server",
  2828. "hyperf",
  2829. "php",
  2830. "swoole"
  2831. ],
  2832. "support": {
  2833. "docs": "https://hyperf.wiki",
  2834. "issues": "https://github.com/hyperf/hyperf/issues",
  2835. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2836. "source": "https://github.com/hyperf/hyperf"
  2837. },
  2838. "funding": [
  2839. {
  2840. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2841. "type": "custom"
  2842. },
  2843. {
  2844. "url": "https://opencollective.com/hyperf",
  2845. "type": "open_collective"
  2846. }
  2847. ],
  2848. "time": "2024-09-25T02:54:12+00:00"
  2849. },
  2850. {
  2851. "name": "hyperf/json-rpc",
  2852. "version": "v3.1.47",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/hyperf/json-rpc.git",
  2856. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2861. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "hyperf/codec": "~3.1.0",
  2866. "hyperf/context": "~3.1.0",
  2867. "hyperf/contract": "~3.1.0",
  2868. "hyperf/engine": "^2.0",
  2869. "hyperf/http-message": "~3.1.0",
  2870. "hyperf/load-balancer": "~3.1.0",
  2871. "hyperf/rpc": "~3.1.0",
  2872. "hyperf/serializer": "~3.1.0",
  2873. "hyperf/support": "~3.1.0",
  2874. "hyperf/utils": "~3.1.0",
  2875. "php": ">=8.1",
  2876. "psr/container": "^1.0 || ^2.0",
  2877. "swow/psr7-plus": "^1.0"
  2878. },
  2879. "suggest": {
  2880. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2881. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2882. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2883. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2884. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2885. },
  2886. "type": "library",
  2887. "extra": {
  2888. "hyperf": {
  2889. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2890. },
  2891. "branch-alias": {
  2892. "dev-master": "3.1-dev"
  2893. }
  2894. },
  2895. "autoload": {
  2896. "psr-4": {
  2897. "Hyperf\\JsonRpc\\": "src/"
  2898. }
  2899. },
  2900. "notification-url": "https://packagist.org/downloads/",
  2901. "license": [
  2902. "MIT"
  2903. ],
  2904. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2905. "homepage": "https://hyperf.io",
  2906. "keywords": [
  2907. "hyperf",
  2908. "json-rpc",
  2909. "php",
  2910. "swoole"
  2911. ],
  2912. "support": {
  2913. "docs": "https://hyperf.wiki",
  2914. "issues": "https://github.com/hyperf/hyperf/issues",
  2915. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2916. "source": "https://github.com/hyperf/hyperf"
  2917. },
  2918. "funding": [
  2919. {
  2920. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2921. "type": "custom"
  2922. },
  2923. {
  2924. "url": "https://opencollective.com/hyperf",
  2925. "type": "open_collective"
  2926. }
  2927. ],
  2928. "time": "2024-11-28T01:51:55+00:00"
  2929. },
  2930. {
  2931. "name": "hyperf/load-balancer",
  2932. "version": "v3.1.42",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/hyperf/load-balancer.git",
  2936. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2941. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "hyperf/coordinator": "~3.1.0",
  2946. "hyperf/coroutine": "~3.1.0",
  2947. "markrogoyski/math-php": "^2.0",
  2948. "php": ">=8.1",
  2949. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2950. },
  2951. "type": "library",
  2952. "extra": {
  2953. "hyperf": {
  2954. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2955. },
  2956. "branch-alias": {
  2957. "dev-master": "3.1-dev"
  2958. }
  2959. },
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Hyperf\\LoadBalancer\\": "src/"
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "description": "A load balancer library for Hyperf.",
  2970. "homepage": "https://hyperf.io",
  2971. "keywords": [
  2972. "hyperf",
  2973. "load-balancer",
  2974. "php",
  2975. "swoole"
  2976. ],
  2977. "support": {
  2978. "docs": "https://hyperf.wiki",
  2979. "issues": "https://github.com/hyperf/hyperf/issues",
  2980. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2981. "source": "https://github.com/hyperf/hyperf"
  2982. },
  2983. "funding": [
  2984. {
  2985. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2986. "type": "custom"
  2987. },
  2988. {
  2989. "url": "https://opencollective.com/hyperf",
  2990. "type": "open_collective"
  2991. }
  2992. ],
  2993. "time": "2024-09-25T02:54:12+00:00"
  2994. },
  2995. {
  2996. "name": "hyperf/logger",
  2997. "version": "v3.1.42",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/hyperf/logger.git",
  3001. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3006. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "hyperf/contract": "~3.1.0",
  3011. "hyperf/support": "~3.1.0",
  3012. "hyperf/utils": "~3.1.0",
  3013. "monolog/monolog": "^2.7 || ^3.1",
  3014. "php": ">=8.1",
  3015. "psr/container": "^1.0 || ^2.0",
  3016. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "hyperf": {
  3021. "config": "Hyperf\\Logger\\ConfigProvider"
  3022. },
  3023. "branch-alias": {
  3024. "dev-master": "3.1-dev"
  3025. }
  3026. },
  3027. "autoload": {
  3028. "psr-4": {
  3029. "Hyperf\\Logger\\": "src/"
  3030. }
  3031. },
  3032. "notification-url": "https://packagist.org/downloads/",
  3033. "license": [
  3034. "MIT"
  3035. ],
  3036. "description": "A logger component for hyperf.",
  3037. "homepage": "https://hyperf.io",
  3038. "keywords": [
  3039. "hyperf",
  3040. "logger",
  3041. "php"
  3042. ],
  3043. "support": {
  3044. "docs": "https://hyperf.wiki",
  3045. "issues": "https://github.com/hyperf/hyperf/issues",
  3046. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3047. "source": "https://github.com/hyperf/hyperf"
  3048. },
  3049. "funding": [
  3050. {
  3051. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3052. "type": "custom"
  3053. },
  3054. {
  3055. "url": "https://opencollective.com/hyperf",
  3056. "type": "open_collective"
  3057. }
  3058. ],
  3059. "time": "2024-09-25T02:54:12+00:00"
  3060. },
  3061. {
  3062. "name": "hyperf/macroable",
  3063. "version": "v3.1.42",
  3064. "source": {
  3065. "type": "git",
  3066. "url": "https://github.com/hyperf/macroable.git",
  3067. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3068. },
  3069. "dist": {
  3070. "type": "zip",
  3071. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3072. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3073. "shasum": ""
  3074. },
  3075. "require": {
  3076. "php": ">=8.1"
  3077. },
  3078. "type": "library",
  3079. "extra": {
  3080. "branch-alias": {
  3081. "dev-master": "3.1-dev"
  3082. }
  3083. },
  3084. "autoload": {
  3085. "psr-4": {
  3086. "Hyperf\\Macroable\\": "src/"
  3087. }
  3088. },
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "MIT"
  3092. ],
  3093. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3094. "homepage": "https://hyperf.io",
  3095. "keywords": [
  3096. "hyperf",
  3097. "macroable",
  3098. "php",
  3099. "swoole"
  3100. ],
  3101. "support": {
  3102. "docs": "https://hyperf.wiki",
  3103. "issues": "https://github.com/hyperf/hyperf/issues",
  3104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3105. "source": "https://github.com/hyperf/hyperf"
  3106. },
  3107. "funding": [
  3108. {
  3109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3110. "type": "custom"
  3111. },
  3112. {
  3113. "url": "https://opencollective.com/hyperf",
  3114. "type": "open_collective"
  3115. }
  3116. ],
  3117. "time": "2024-09-25T02:54:12+00:00"
  3118. },
  3119. {
  3120. "name": "hyperf/memory",
  3121. "version": "v3.1.42",
  3122. "source": {
  3123. "type": "git",
  3124. "url": "https://github.com/hyperf/memory.git",
  3125. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3126. },
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3130. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3131. "shasum": ""
  3132. },
  3133. "require": {
  3134. "php": ">=8.1"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "hyperf": {
  3139. "config": "Hyperf\\Memory\\ConfigProvider"
  3140. },
  3141. "branch-alias": {
  3142. "dev-master": "3.1-dev"
  3143. }
  3144. },
  3145. "autoload": {
  3146. "psr-4": {
  3147. "Hyperf\\Memory\\": "src/"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "description": "An independent component that use to operate and manage memory.",
  3155. "homepage": "https://hyperf.io",
  3156. "keywords": [
  3157. "hyperf",
  3158. "memory",
  3159. "php",
  3160. "swoole"
  3161. ],
  3162. "support": {
  3163. "docs": "https://hyperf.wiki",
  3164. "issues": "https://github.com/hyperf/hyperf/issues",
  3165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3166. "source": "https://github.com/hyperf/hyperf"
  3167. },
  3168. "funding": [
  3169. {
  3170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3171. "type": "custom"
  3172. },
  3173. {
  3174. "url": "https://opencollective.com/hyperf",
  3175. "type": "open_collective"
  3176. }
  3177. ],
  3178. "time": "2024-09-25T02:54:12+00:00"
  3179. },
  3180. {
  3181. "name": "hyperf/model-cache",
  3182. "version": "v3.1.42",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://github.com/hyperf/model-cache.git",
  3186. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/f1af97e63d12f9e2149bdef478541689cd31775f",
  3191. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f",
  3192. "shasum": ""
  3193. },
  3194. "require": {
  3195. "hyperf/codec": "~3.1.0",
  3196. "hyperf/contract": "~3.1.0",
  3197. "hyperf/db-connection": "~3.1.0",
  3198. "hyperf/support": "~3.1.0",
  3199. "hyperf/utils": "~3.1.0",
  3200. "php": ">=8.1",
  3201. "psr/container": "^1.0 || ^2.0",
  3202. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3203. },
  3204. "suggest": {
  3205. "hyperf/event": "Required to use DeleteCacheListener."
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "hyperf": {
  3210. "config": "Hyperf\\ModelCache\\ConfigProvider"
  3211. },
  3212. "branch-alias": {
  3213. "dev-master": "3.1-dev"
  3214. }
  3215. },
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Hyperf\\ModelCache\\": "src/"
  3219. }
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "MIT"
  3224. ],
  3225. "description": "A model cache component for hyperf.",
  3226. "homepage": "https://hyperf.io",
  3227. "keywords": [
  3228. "hyperf",
  3229. "model-cache",
  3230. "php"
  3231. ],
  3232. "support": {
  3233. "docs": "https://hyperf.wiki",
  3234. "issues": "https://github.com/hyperf/hyperf/issues",
  3235. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3236. "source": "https://github.com/hyperf/hyperf"
  3237. },
  3238. "funding": [
  3239. {
  3240. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3241. "type": "custom"
  3242. },
  3243. {
  3244. "url": "https://opencollective.com/hyperf",
  3245. "type": "open_collective"
  3246. }
  3247. ],
  3248. "time": "2024-09-25T02:54:12+00:00"
  3249. },
  3250. {
  3251. "name": "hyperf/model-listener",
  3252. "version": "v3.1.42",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/hyperf/model-listener.git",
  3256. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3261. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "hyperf/contract": "~3.1.0",
  3266. "hyperf/database": "~3.1.0",
  3267. "hyperf/di": "~3.1.0",
  3268. "hyperf/event": "~3.1.0",
  3269. "hyperf/support": "~3.1.0",
  3270. "hyperf/utils": "~3.1.0",
  3271. "php": ">=8.1",
  3272. "psr/container": "^1.0 || ^2.0"
  3273. },
  3274. "type": "library",
  3275. "extra": {
  3276. "hyperf": {
  3277. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3278. },
  3279. "branch-alias": {
  3280. "dev-master": "3.1-dev"
  3281. }
  3282. },
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Hyperf\\ModelListener\\": "src/"
  3286. }
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "description": "A model listener for Hyperf.",
  3293. "homepage": "https://hyperf.io",
  3294. "keywords": [
  3295. "hyperf",
  3296. "model-listener",
  3297. "php",
  3298. "swoole"
  3299. ],
  3300. "support": {
  3301. "docs": "https://hyperf.wiki",
  3302. "issues": "https://github.com/hyperf/hyperf/issues",
  3303. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3304. "source": "https://github.com/hyperf/hyperf"
  3305. },
  3306. "funding": [
  3307. {
  3308. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3309. "type": "custom"
  3310. },
  3311. {
  3312. "url": "https://opencollective.com/hyperf",
  3313. "type": "open_collective"
  3314. }
  3315. ],
  3316. "time": "2024-09-25T02:54:12+00:00"
  3317. },
  3318. {
  3319. "name": "hyperf/paginator",
  3320. "version": "v3.1.49",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/hyperf/paginator.git",
  3324. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3329. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3330. "shasum": ""
  3331. },
  3332. "require": {
  3333. "hyperf/contract": "~3.1.0",
  3334. "hyperf/support": "~3.1.0",
  3335. "hyperf/utils": "~3.1.0",
  3336. "php": ">=8.1"
  3337. },
  3338. "suggest": {
  3339. "hyperf/event": "Reqiured to use PageResolverListener.",
  3340. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3341. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "hyperf": {
  3346. "config": "Hyperf\\Paginator\\ConfigProvider"
  3347. },
  3348. "branch-alias": {
  3349. "dev-master": "3.1-dev"
  3350. }
  3351. },
  3352. "autoload": {
  3353. "psr-4": {
  3354. "Hyperf\\Paginator\\": "src/"
  3355. }
  3356. },
  3357. "notification-url": "https://packagist.org/downloads/",
  3358. "license": [
  3359. "MIT"
  3360. ],
  3361. "description": "A paginator component for hyperf.",
  3362. "homepage": "https://hyperf.io",
  3363. "keywords": [
  3364. "hyperf",
  3365. "paginator",
  3366. "php"
  3367. ],
  3368. "support": {
  3369. "docs": "https://hyperf.wiki",
  3370. "issues": "https://github.com/hyperf/hyperf/issues",
  3371. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3372. "source": "https://github.com/hyperf/hyperf"
  3373. },
  3374. "funding": [
  3375. {
  3376. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3377. "type": "custom"
  3378. },
  3379. {
  3380. "url": "https://opencollective.com/hyperf",
  3381. "type": "open_collective"
  3382. }
  3383. ],
  3384. "time": "2024-12-17T09:42:13+00:00"
  3385. },
  3386. {
  3387. "name": "hyperf/pipeline",
  3388. "version": "v3.1.42",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/hyperf/pipeline.git",
  3392. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3397. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "php": ">=8.1",
  3402. "psr/container": "^1.0 || ^2.0"
  3403. },
  3404. "type": "library",
  3405. "extra": {
  3406. "branch-alias": {
  3407. "dev-master": "3.1-dev"
  3408. }
  3409. },
  3410. "autoload": {
  3411. "psr-4": {
  3412. "Hyperf\\Pipeline\\": "src/"
  3413. }
  3414. },
  3415. "notification-url": "https://packagist.org/downloads/",
  3416. "license": [
  3417. "MIT"
  3418. ],
  3419. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3420. "homepage": "https://hyperf.io",
  3421. "keywords": [
  3422. "hyperf",
  3423. "php",
  3424. "pipeline",
  3425. "swoole"
  3426. ],
  3427. "support": {
  3428. "docs": "https://hyperf.wiki",
  3429. "issues": "https://github.com/hyperf/hyperf/issues",
  3430. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3431. "source": "https://github.com/hyperf/hyperf"
  3432. },
  3433. "funding": [
  3434. {
  3435. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3436. "type": "custom"
  3437. },
  3438. {
  3439. "url": "https://opencollective.com/hyperf",
  3440. "type": "open_collective"
  3441. }
  3442. ],
  3443. "time": "2024-09-25T02:54:12+00:00"
  3444. },
  3445. {
  3446. "name": "hyperf/pool",
  3447. "version": "v3.1.42",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/hyperf/pool.git",
  3451. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3456. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3457. "shasum": ""
  3458. },
  3459. "require": {
  3460. "hyperf/contract": "~3.1.0",
  3461. "hyperf/support": "~3.1.0",
  3462. "hyperf/utils": "~3.1.0",
  3463. "php": ">=8.1",
  3464. "psr/container": "^1.0 || ^2.0"
  3465. },
  3466. "suggest": {
  3467. "psr/event-dispatcher": "Required to use events."
  3468. },
  3469. "type": "library",
  3470. "extra": {
  3471. "hyperf": {
  3472. "config": "Hyperf\\Pool\\ConfigProvider"
  3473. },
  3474. "branch-alias": {
  3475. "dev-master": "3.1-dev"
  3476. }
  3477. },
  3478. "autoload": {
  3479. "psr-4": {
  3480. "Hyperf\\Pool\\": "src/"
  3481. }
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "description": "An independent universal connection pool component.",
  3488. "homepage": "https://hyperf.io",
  3489. "keywords": [
  3490. "connection-pool",
  3491. "hyperf",
  3492. "php",
  3493. "swoole"
  3494. ],
  3495. "support": {
  3496. "docs": "https://hyperf.wiki",
  3497. "issues": "https://github.com/hyperf/hyperf/issues",
  3498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3499. "source": "https://github.com/hyperf/hyperf"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://opencollective.com/hyperf",
  3508. "type": "open_collective"
  3509. }
  3510. ],
  3511. "time": "2024-09-25T02:54:12+00:00"
  3512. },
  3513. {
  3514. "name": "hyperf/process",
  3515. "version": "v3.1.48",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://github.com/hyperf/process.git",
  3519. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3524. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3525. "shasum": ""
  3526. },
  3527. "require": {
  3528. "hyperf/contract": "~3.1.0",
  3529. "hyperf/support": "~3.1.0",
  3530. "hyperf/utils": "~3.1.0",
  3531. "php": ">=8.1",
  3532. "psr/container": "^1.0 || ^2.0",
  3533. "psr/event-dispatcher": "^1.0"
  3534. },
  3535. "suggest": {
  3536. "hyperf/di": "Required to use annotations.",
  3537. "hyperf/event": "Required to dump the message before and after process.",
  3538. "hyperf/framework": "Required to use BootProcessListener."
  3539. },
  3540. "type": "library",
  3541. "extra": {
  3542. "hyperf": {
  3543. "config": "Hyperf\\Process\\ConfigProvider"
  3544. },
  3545. "branch-alias": {
  3546. "dev-master": "3.1-dev"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "psr-4": {
  3551. "Hyperf\\Process\\": "src/"
  3552. }
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "description": "A process component for hyperf.",
  3559. "homepage": "https://hyperf.io",
  3560. "keywords": [
  3561. "hyperf",
  3562. "php",
  3563. "process"
  3564. ],
  3565. "support": {
  3566. "docs": "https://hyperf.wiki",
  3567. "issues": "https://github.com/hyperf/hyperf/issues",
  3568. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3569. "source": "https://github.com/hyperf/hyperf"
  3570. },
  3571. "funding": [
  3572. {
  3573. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3574. "type": "custom"
  3575. },
  3576. {
  3577. "url": "https://opencollective.com/hyperf",
  3578. "type": "open_collective"
  3579. }
  3580. ],
  3581. "time": "2024-12-02T10:54:30+00:00"
  3582. },
  3583. {
  3584. "name": "hyperf/redis",
  3585. "version": "v3.1.42",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/hyperf/redis.git",
  3589. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3594. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "ext-redis": "^5.0 || ^6.0",
  3599. "hyperf/contract": "~3.1.0",
  3600. "hyperf/pool": "~3.1.0",
  3601. "hyperf/support": "~3.1.0",
  3602. "hyperf/tappable": "~3.1.0",
  3603. "hyperf/utils": "~3.1.0",
  3604. "php": ">=8.1",
  3605. "psr/container": "^1.0 || ^2.0"
  3606. },
  3607. "suggest": {
  3608. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3609. "hyperf/di": "Create the RedisPool via dependency injection."
  3610. },
  3611. "type": "library",
  3612. "extra": {
  3613. "hyperf": {
  3614. "config": "Hyperf\\Redis\\ConfigProvider"
  3615. },
  3616. "branch-alias": {
  3617. "dev-master": "3.1-dev"
  3618. }
  3619. },
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Hyperf\\Redis\\": "src/"
  3623. }
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "description": "A redis component for hyperf.",
  3630. "homepage": "https://hyperf.io",
  3631. "keywords": [
  3632. "hyperf",
  3633. "php",
  3634. "pool",
  3635. "redis"
  3636. ],
  3637. "support": {
  3638. "docs": "https://hyperf.wiki",
  3639. "issues": "https://github.com/hyperf/hyperf/issues",
  3640. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3641. "source": "https://github.com/hyperf/hyperf"
  3642. },
  3643. "funding": [
  3644. {
  3645. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3646. "type": "custom"
  3647. },
  3648. {
  3649. "url": "https://opencollective.com/hyperf",
  3650. "type": "open_collective"
  3651. }
  3652. ],
  3653. "time": "2024-09-25T02:54:12+00:00"
  3654. },
  3655. {
  3656. "name": "hyperf/rpc",
  3657. "version": "v3.1.42",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/hyperf/rpc.git",
  3661. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3666. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3667. "shasum": ""
  3668. },
  3669. "require": {
  3670. "hyperf/codec": "~3.1.0",
  3671. "hyperf/contract": "~3.1.0",
  3672. "hyperf/support": "~3.1.0",
  3673. "jetbrains/phpstorm-attributes": "^1.0",
  3674. "php": ">=8.1"
  3675. },
  3676. "type": "library",
  3677. "extra": {
  3678. "hyperf": [],
  3679. "branch-alias": {
  3680. "dev-master": "3.1-dev"
  3681. }
  3682. },
  3683. "autoload": {
  3684. "psr-4": {
  3685. "Hyperf\\Rpc\\": "src/"
  3686. }
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "MIT"
  3691. ],
  3692. "description": "A rpc basic library for Hyperf.",
  3693. "homepage": "https://hyperf.io",
  3694. "keywords": [
  3695. "hyperf",
  3696. "php",
  3697. "rpc",
  3698. "swoole"
  3699. ],
  3700. "support": {
  3701. "docs": "https://hyperf.wiki",
  3702. "issues": "https://github.com/hyperf/hyperf/issues",
  3703. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3704. "source": "https://github.com/hyperf/hyperf"
  3705. },
  3706. "funding": [
  3707. {
  3708. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3709. "type": "custom"
  3710. },
  3711. {
  3712. "url": "https://opencollective.com/hyperf",
  3713. "type": "open_collective"
  3714. }
  3715. ],
  3716. "time": "2024-09-25T02:54:12+00:00"
  3717. },
  3718. {
  3719. "name": "hyperf/rpc-client",
  3720. "version": "v3.1.42",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://github.com/hyperf/rpc-client.git",
  3724. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3725. },
  3726. "dist": {
  3727. "type": "zip",
  3728. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3729. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3730. "shasum": ""
  3731. },
  3732. "require": {
  3733. "hyperf/code-parser": "~3.1.0",
  3734. "hyperf/load-balancer": "~3.1.0",
  3735. "hyperf/rpc": "~3.1.0",
  3736. "hyperf/support": "~3.1.0",
  3737. "hyperf/utils": "~3.1.0",
  3738. "jetbrains/phpstorm-attributes": "^1.0",
  3739. "php": ">=8.1",
  3740. "psr/container": "^1.0 || ^2.0"
  3741. },
  3742. "suggest": {
  3743. "hyperf/di": "For better container experience.",
  3744. "hyperf/pool": "Required to use connection pool.",
  3745. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3746. },
  3747. "type": "library",
  3748. "extra": {
  3749. "hyperf": {
  3750. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3751. },
  3752. "branch-alias": {
  3753. "dev-master": "3.1-dev"
  3754. }
  3755. },
  3756. "autoload": {
  3757. "psr-4": {
  3758. "Hyperf\\RpcClient\\": "src/"
  3759. }
  3760. },
  3761. "notification-url": "https://packagist.org/downloads/",
  3762. "license": [
  3763. "MIT"
  3764. ],
  3765. "description": "An abstract rpc server component for Hyperf.",
  3766. "homepage": "https://hyperf.io",
  3767. "keywords": [
  3768. "hyperf",
  3769. "json-rpc",
  3770. "php",
  3771. "rpc",
  3772. "rpc-client",
  3773. "swoole"
  3774. ],
  3775. "support": {
  3776. "docs": "https://hyperf.wiki",
  3777. "issues": "https://github.com/hyperf/hyperf/issues",
  3778. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3779. "source": "https://github.com/hyperf/hyperf"
  3780. },
  3781. "funding": [
  3782. {
  3783. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3784. "type": "custom"
  3785. },
  3786. {
  3787. "url": "https://opencollective.com/hyperf",
  3788. "type": "open_collective"
  3789. }
  3790. ],
  3791. "time": "2024-09-25T02:54:12+00:00"
  3792. },
  3793. {
  3794. "name": "hyperf/rpc-server",
  3795. "version": "v3.1.42",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/hyperf/rpc-server.git",
  3799. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3804. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3805. "shasum": ""
  3806. },
  3807. "require": {
  3808. "hyperf/http-server": "~3.1.0",
  3809. "hyperf/rpc": "~3.1.0",
  3810. "php": ">=8.1"
  3811. },
  3812. "suggest": {
  3813. "hyperf/di": "Required to use annotations."
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "hyperf": {
  3818. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3819. },
  3820. "branch-alias": {
  3821. "dev-master": "3.1-dev"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Hyperf\\RpcServer\\": "src/"
  3827. }
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "MIT"
  3832. ],
  3833. "description": "An abstract rpc server component for Hyperf.",
  3834. "homepage": "https://hyperf.io",
  3835. "keywords": [
  3836. "hyperf",
  3837. "php",
  3838. "rpc",
  3839. "rpc-server",
  3840. "swoole"
  3841. ],
  3842. "support": {
  3843. "docs": "https://hyperf.wiki",
  3844. "issues": "https://github.com/hyperf/hyperf/issues",
  3845. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3846. "source": "https://github.com/hyperf/hyperf"
  3847. },
  3848. "funding": [
  3849. {
  3850. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3851. "type": "custom"
  3852. },
  3853. {
  3854. "url": "https://opencollective.com/hyperf",
  3855. "type": "open_collective"
  3856. }
  3857. ],
  3858. "time": "2024-09-25T02:54:12+00:00"
  3859. },
  3860. {
  3861. "name": "hyperf/serializer",
  3862. "version": "v3.1.42",
  3863. "source": {
  3864. "type": "git",
  3865. "url": "https://github.com/hyperf/serializer.git",
  3866. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3867. },
  3868. "dist": {
  3869. "type": "zip",
  3870. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3871. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3872. "shasum": ""
  3873. },
  3874. "require": {
  3875. "hyperf/contract": "~3.1.0",
  3876. "php": ">=8.1"
  3877. },
  3878. "suggest": {
  3879. "hyperf/di": "Required to use ExceptionNormalizer",
  3880. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3881. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "hyperf": {
  3886. "config": "Hyperf\\Serializer\\ConfigProvider"
  3887. },
  3888. "branch-alias": {
  3889. "dev-master": "3.1-dev"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "psr-4": {
  3894. "Hyperf\\Serializer\\": "src/"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "description": "A serializer component for Hyperf.",
  3902. "homepage": "https://hyperf.io",
  3903. "keywords": [
  3904. "hyperf",
  3905. "php",
  3906. "swoole",
  3907. "tappable"
  3908. ],
  3909. "support": {
  3910. "docs": "https://hyperf.wiki",
  3911. "issues": "https://github.com/hyperf/hyperf/issues",
  3912. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3913. "source": "https://github.com/hyperf/hyperf"
  3914. },
  3915. "funding": [
  3916. {
  3917. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3918. "type": "custom"
  3919. },
  3920. {
  3921. "url": "https://opencollective.com/hyperf",
  3922. "type": "open_collective"
  3923. }
  3924. ],
  3925. "time": "2024-09-25T02:54:12+00:00"
  3926. },
  3927. {
  3928. "name": "hyperf/server",
  3929. "version": "v3.1.42",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/hyperf/server.git",
  3933. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3938. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3939. "shasum": ""
  3940. },
  3941. "require": {
  3942. "hyperf/contract": "~3.1.0",
  3943. "hyperf/coordinator": "~3.1.0",
  3944. "hyperf/engine": "^2.8",
  3945. "hyperf/support": "~3.1.0",
  3946. "hyperf/tappable": "~3.1.0",
  3947. "php": ">=8.1",
  3948. "psr/container": "^1.0 || ^2.0",
  3949. "psr/event-dispatcher": "^1.0",
  3950. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3951. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3952. },
  3953. "suggest": {
  3954. "hyperf/event": "Dump the info after server start.",
  3955. "hyperf/framework": "Dump the info after server start."
  3956. },
  3957. "type": "library",
  3958. "extra": {
  3959. "hyperf": {
  3960. "config": "Hyperf\\Server\\ConfigProvider"
  3961. },
  3962. "branch-alias": {
  3963. "dev-master": "3.1-dev"
  3964. }
  3965. },
  3966. "autoload": {
  3967. "psr-4": {
  3968. "Hyperf\\Server\\": "src/"
  3969. }
  3970. },
  3971. "notification-url": "https://packagist.org/downloads/",
  3972. "license": [
  3973. "MIT"
  3974. ],
  3975. "description": "A base server library for Hyperf.",
  3976. "homepage": "https://hyperf.io",
  3977. "keywords": [
  3978. "hyperf",
  3979. "php",
  3980. "server",
  3981. "swoole"
  3982. ],
  3983. "support": {
  3984. "docs": "https://hyperf.wiki",
  3985. "issues": "https://github.com/hyperf/hyperf/issues",
  3986. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3987. "source": "https://github.com/hyperf/hyperf"
  3988. },
  3989. "funding": [
  3990. {
  3991. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3992. "type": "custom"
  3993. },
  3994. {
  3995. "url": "https://opencollective.com/hyperf",
  3996. "type": "open_collective"
  3997. }
  3998. ],
  3999. "time": "2024-09-25T02:54:12+00:00"
  4000. },
  4001. {
  4002. "name": "hyperf/stdlib",
  4003. "version": "v3.1.42",
  4004. "source": {
  4005. "type": "git",
  4006. "url": "https://github.com/hyperf/stdlib.git",
  4007. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4008. },
  4009. "dist": {
  4010. "type": "zip",
  4011. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4012. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4013. "shasum": ""
  4014. },
  4015. "require": {
  4016. "php": ">=8.1"
  4017. },
  4018. "type": "library",
  4019. "extra": {
  4020. "branch-alias": {
  4021. "dev-master": "3.1-dev"
  4022. }
  4023. },
  4024. "autoload": {
  4025. "psr-4": {
  4026. "Hyperf\\Stdlib\\": "src/"
  4027. }
  4028. },
  4029. "notification-url": "https://packagist.org/downloads/",
  4030. "license": [
  4031. "MIT"
  4032. ],
  4033. "description": "A stdlib component for Hyperf.",
  4034. "homepage": "https://hyperf.io",
  4035. "keywords": [
  4036. "hyperf",
  4037. "php",
  4038. "stdlib",
  4039. "swoole"
  4040. ],
  4041. "support": {
  4042. "docs": "https://hyperf.wiki",
  4043. "issues": "https://github.com/hyperf/hyperf/issues",
  4044. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4045. "source": "https://github.com/hyperf/hyperf"
  4046. },
  4047. "funding": [
  4048. {
  4049. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4050. "type": "custom"
  4051. },
  4052. {
  4053. "url": "https://opencollective.com/hyperf",
  4054. "type": "open_collective"
  4055. }
  4056. ],
  4057. "time": "2024-09-25T02:54:12+00:00"
  4058. },
  4059. {
  4060. "name": "hyperf/stringable",
  4061. "version": "v3.1.43",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/hyperf/stringable.git",
  4065. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4070. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4071. "shasum": ""
  4072. },
  4073. "require": {
  4074. "ext-mbstring": "*",
  4075. "hyperf/collection": "~3.1.0",
  4076. "hyperf/conditionable": "~3.1.0",
  4077. "hyperf/macroable": "~3.1.0",
  4078. "hyperf/tappable": "~3.1.0",
  4079. "php": ">=8.1"
  4080. },
  4081. "suggest": {
  4082. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4083. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4084. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "3.1-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "files": [
  4094. "src/Functions.php"
  4095. ],
  4096. "psr-4": {
  4097. "Hyperf\\Stringable\\": "src/"
  4098. }
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "description": "Hyperf Stringable package which come from illuminate/support",
  4105. "homepage": "https://hyperf.io",
  4106. "keywords": [
  4107. "hyperf",
  4108. "php",
  4109. "stringable",
  4110. "swoole"
  4111. ],
  4112. "support": {
  4113. "docs": "https://hyperf.wiki",
  4114. "issues": "https://github.com/hyperf/hyperf/issues",
  4115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4116. "source": "https://github.com/hyperf/hyperf"
  4117. },
  4118. "funding": [
  4119. {
  4120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4121. "type": "custom"
  4122. },
  4123. {
  4124. "url": "https://opencollective.com/hyperf",
  4125. "type": "open_collective"
  4126. }
  4127. ],
  4128. "time": "2024-10-09T02:28:40+00:00"
  4129. },
  4130. {
  4131. "name": "hyperf/support",
  4132. "version": "v3.1.47",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/hyperf/support.git",
  4136. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4141. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "hyperf/collection": "~3.1.0",
  4146. "hyperf/context": "~3.1.0",
  4147. "hyperf/contract": "~3.1.0",
  4148. "hyperf/coroutine": "~3.1.0",
  4149. "hyperf/macroable": "~3.1.0",
  4150. "hyperf/stringable": "~3.1.0",
  4151. "php": ">=8.1"
  4152. },
  4153. "suggest": {
  4154. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "branch-alias": {
  4159. "dev-master": "3.1-dev"
  4160. }
  4161. },
  4162. "autoload": {
  4163. "files": [
  4164. "src/Functions.php"
  4165. ],
  4166. "psr-4": {
  4167. "Hyperf\\Support\\": "src/"
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "description": "A support component for Hyperf.",
  4175. "homepage": "https://hyperf.io",
  4176. "keywords": [
  4177. "hyperf",
  4178. "php",
  4179. "support",
  4180. "swoole"
  4181. ],
  4182. "support": {
  4183. "docs": "https://hyperf.wiki",
  4184. "issues": "https://github.com/hyperf/hyperf/issues",
  4185. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4186. "source": "https://github.com/hyperf/hyperf"
  4187. },
  4188. "funding": [
  4189. {
  4190. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4191. "type": "custom"
  4192. },
  4193. {
  4194. "url": "https://opencollective.com/hyperf",
  4195. "type": "open_collective"
  4196. }
  4197. ],
  4198. "time": "2024-11-28T01:51:55+00:00"
  4199. },
  4200. {
  4201. "name": "hyperf/tappable",
  4202. "version": "v3.1.42",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/hyperf/tappable.git",
  4206. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4211. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "php": ">=8.1"
  4216. },
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-master": "3.1-dev"
  4221. }
  4222. },
  4223. "autoload": {
  4224. "files": [
  4225. "src/Functions.php"
  4226. ],
  4227. "psr-4": {
  4228. "Hyperf\\Tappable\\": "src/"
  4229. }
  4230. },
  4231. "notification-url": "https://packagist.org/downloads/",
  4232. "license": [
  4233. "MIT"
  4234. ],
  4235. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4236. "homepage": "https://hyperf.io",
  4237. "keywords": [
  4238. "hyperf",
  4239. "php",
  4240. "swoole",
  4241. "tappable"
  4242. ],
  4243. "support": {
  4244. "docs": "https://hyperf.wiki",
  4245. "issues": "https://github.com/hyperf/hyperf/issues",
  4246. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4247. "source": "https://github.com/hyperf/hyperf"
  4248. },
  4249. "funding": [
  4250. {
  4251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4252. "type": "custom"
  4253. },
  4254. {
  4255. "url": "https://opencollective.com/hyperf",
  4256. "type": "open_collective"
  4257. }
  4258. ],
  4259. "time": "2024-09-25T02:54:12+00:00"
  4260. },
  4261. {
  4262. "name": "hyperf/tracer",
  4263. "version": "v3.1.42",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/hyperf/tracer.git",
  4267. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/hyperf/tracer/zipball/8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4272. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4273. "shasum": ""
  4274. },
  4275. "require": {
  4276. "hyperf/contract": "~3.1.0",
  4277. "hyperf/di": "~3.1.0",
  4278. "hyperf/guzzle": "~3.1.0",
  4279. "hyperf/support": "~3.1.0",
  4280. "hyperf/utils": "~3.1.0",
  4281. "jcchavezs/zipkin-opentracing": "^2.0",
  4282. "opentracing/opentracing": "^1.0",
  4283. "php": ">=8.1",
  4284. "psr/http-message": "^1.0 || ^2.0"
  4285. },
  4286. "suggest": {
  4287. "hyperf/event": "Required to use DbQueryExecutedListener.",
  4288. "jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing.",
  4289. "longlang/phpkafka": "Required (^1.2) to use Kafka Producer."
  4290. },
  4291. "type": "library",
  4292. "extra": {
  4293. "hyperf": {
  4294. "config": "Hyperf\\Tracer\\ConfigProvider"
  4295. },
  4296. "branch-alias": {
  4297. "dev-master": "3.1-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "psr-4": {
  4302. "Hyperf\\Tracer\\": "src/"
  4303. }
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "MIT"
  4308. ],
  4309. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  4310. "homepage": "https://hyperf.io",
  4311. "keywords": [
  4312. "hyperf",
  4313. "open-tracing",
  4314. "php",
  4315. "zipkin"
  4316. ],
  4317. "support": {
  4318. "docs": "https://hyperf.wiki",
  4319. "issues": "https://github.com/hyperf/hyperf/issues",
  4320. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4321. "source": "https://github.com/hyperf/hyperf"
  4322. },
  4323. "funding": [
  4324. {
  4325. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4326. "type": "custom"
  4327. },
  4328. {
  4329. "url": "https://opencollective.com/hyperf",
  4330. "type": "open_collective"
  4331. }
  4332. ],
  4333. "time": "2024-09-25T02:54:12+00:00"
  4334. },
  4335. {
  4336. "name": "hyperf/utils",
  4337. "version": "v3.1.42",
  4338. "source": {
  4339. "type": "git",
  4340. "url": "https://github.com/hyperf/utils.git",
  4341. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4342. },
  4343. "dist": {
  4344. "type": "zip",
  4345. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4346. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4347. "shasum": ""
  4348. },
  4349. "require": {
  4350. "doctrine/inflector": "^2.0",
  4351. "hyperf/code-parser": "~3.1.0",
  4352. "hyperf/codec": "~3.1.0",
  4353. "hyperf/collection": "~3.1.0",
  4354. "hyperf/context": "~3.1.0",
  4355. "hyperf/contract": "~3.1.0",
  4356. "hyperf/coordinator": "~3.1.0",
  4357. "hyperf/coroutine": "~3.1.0",
  4358. "hyperf/engine": "^2.0",
  4359. "hyperf/macroable": "~3.1.0",
  4360. "hyperf/serializer": "~3.1.0",
  4361. "hyperf/stringable": "~3.1.0",
  4362. "hyperf/support": "~3.1.0",
  4363. "php": ">=8.1"
  4364. },
  4365. "type": "library",
  4366. "extra": {
  4367. "branch-alias": {
  4368. "dev-master": "3.1-dev"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "description": "A tools package that could help developer solved the problem quickly.",
  4376. "homepage": "https://hyperf.io",
  4377. "keywords": [
  4378. "hyperf",
  4379. "php",
  4380. "swoole",
  4381. "utils"
  4382. ],
  4383. "support": {
  4384. "docs": "https://hyperf.wiki",
  4385. "issues": "https://github.com/hyperf/hyperf/issues",
  4386. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4387. "source": "https://github.com/hyperf/hyperf"
  4388. },
  4389. "funding": [
  4390. {
  4391. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4392. "type": "custom"
  4393. },
  4394. {
  4395. "url": "https://opencollective.com/hyperf",
  4396. "type": "open_collective"
  4397. }
  4398. ],
  4399. "time": "2024-09-25T02:54:12+00:00"
  4400. },
  4401. {
  4402. "name": "jcchavezs/zipkin-opentracing",
  4403. "version": "2.0.4",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  4407. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4412. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "opentracing/opentracing": "^1.0.1",
  4417. "openzipkin/zipkin": "^3.0.0",
  4418. "php": ">=7.4 || ^8.0"
  4419. },
  4420. "provide": {
  4421. "opentracing/opentracing": "1.0.0"
  4422. },
  4423. "require-dev": {
  4424. "phpspec/prophecy-phpunit": "^2.0",
  4425. "phpstan/phpstan": "^0.12.26",
  4426. "phpunit/phpunit": "^9.0",
  4427. "squizlabs/php_codesniffer": "3.*"
  4428. },
  4429. "type": "library",
  4430. "autoload": {
  4431. "psr-4": {
  4432. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "authors": [
  4440. {
  4441. "name": "José Carlos Chávez",
  4442. "email": "jcchavezs@gmail.com"
  4443. }
  4444. ],
  4445. "description": "A Zipkin bridge with OpenTracing",
  4446. "support": {
  4447. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  4448. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/2.0.4"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://www.paypal.me/jcchavezs",
  4453. "type": "paypal"
  4454. }
  4455. ],
  4456. "time": "2023-11-03T22:38:29+00:00"
  4457. },
  4458. {
  4459. "name": "jetbrains/phpstorm-attributes",
  4460. "version": "1.2",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4464. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4469. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4470. "shasum": ""
  4471. },
  4472. "type": "library",
  4473. "autoload": {
  4474. "psr-4": {
  4475. "JetBrains\\PhpStorm\\": "src/"
  4476. }
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "Apache-2.0"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "JetBrains",
  4485. "homepage": "https://www.jetbrains.com"
  4486. }
  4487. ],
  4488. "description": "PhpStorm specific attributes",
  4489. "keywords": [
  4490. "attributes",
  4491. "jetbrains",
  4492. "phpstorm"
  4493. ],
  4494. "support": {
  4495. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4496. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4497. },
  4498. "time": "2024-10-11T10:46:19+00:00"
  4499. },
  4500. {
  4501. "name": "laminas/laminas-mime",
  4502. "version": "2.12.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/laminas/laminas-mime.git",
  4506. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4511. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4516. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4517. },
  4518. "conflict": {
  4519. "zendframework/zend-mime": "*"
  4520. },
  4521. "require-dev": {
  4522. "laminas/laminas-coding-standard": "~2.4.0",
  4523. "laminas/laminas-mail": "^2.19.0",
  4524. "phpunit/phpunit": "~9.5.25"
  4525. },
  4526. "suggest": {
  4527. "laminas/laminas-mail": "Laminas\\Mail component"
  4528. },
  4529. "type": "library",
  4530. "autoload": {
  4531. "psr-4": {
  4532. "Laminas\\Mime\\": "src/"
  4533. }
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "BSD-3-Clause"
  4538. ],
  4539. "description": "Create and parse MIME messages and parts",
  4540. "homepage": "https://laminas.dev",
  4541. "keywords": [
  4542. "laminas",
  4543. "mime"
  4544. ],
  4545. "support": {
  4546. "chat": "https://laminas.dev/chat",
  4547. "docs": "https://docs.laminas.dev/laminas-mime/",
  4548. "forum": "https://discourse.laminas.dev",
  4549. "issues": "https://github.com/laminas/laminas-mime/issues",
  4550. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4551. "source": "https://github.com/laminas/laminas-mime"
  4552. },
  4553. "funding": [
  4554. {
  4555. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4556. "type": "community_bridge"
  4557. }
  4558. ],
  4559. "abandoned": "symfony/mime",
  4560. "time": "2023-11-02T16:47:19+00:00"
  4561. },
  4562. {
  4563. "name": "laminas/laminas-stdlib",
  4564. "version": "3.20.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/laminas/laminas-stdlib.git",
  4568. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4573. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4578. },
  4579. "conflict": {
  4580. "zendframework/zend-stdlib": "*"
  4581. },
  4582. "require-dev": {
  4583. "laminas/laminas-coding-standard": "^3.0",
  4584. "phpbench/phpbench": "^1.3.1",
  4585. "phpunit/phpunit": "^10.5.38",
  4586. "psalm/plugin-phpunit": "^0.19.0",
  4587. "vimeo/psalm": "^5.26.1"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "psr-4": {
  4592. "Laminas\\Stdlib\\": "src/"
  4593. }
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "BSD-3-Clause"
  4598. ],
  4599. "description": "SPL extensions, array utilities, error handlers, and more",
  4600. "homepage": "https://laminas.dev",
  4601. "keywords": [
  4602. "laminas",
  4603. "stdlib"
  4604. ],
  4605. "support": {
  4606. "chat": "https://laminas.dev/chat",
  4607. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4608. "forum": "https://discourse.laminas.dev",
  4609. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4610. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4611. "source": "https://github.com/laminas/laminas-stdlib"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4616. "type": "community_bridge"
  4617. }
  4618. ],
  4619. "time": "2024-10-29T13:46:07+00:00"
  4620. },
  4621. {
  4622. "name": "markrogoyski/math-php",
  4623. "version": "v2.10.0",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/markrogoyski/math-php.git",
  4627. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4632. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "ext-json": "*",
  4637. "php": ">=7.2.0"
  4638. },
  4639. "require-dev": {
  4640. "php-coveralls/php-coveralls": "^2.0",
  4641. "php-parallel-lint/php-parallel-lint": "^1.2",
  4642. "phploc/phploc": "*",
  4643. "phpmd/phpmd": "^2.6",
  4644. "phpstan/phpstan": "^1.10",
  4645. "phpunit/phpunit": "^8.5",
  4646. "squizlabs/php_codesniffer": "3.*"
  4647. },
  4648. "type": "library",
  4649. "autoload": {
  4650. "psr-4": {
  4651. "MathPHP\\": "src/"
  4652. }
  4653. },
  4654. "notification-url": "https://packagist.org/downloads/",
  4655. "license": [
  4656. "MIT"
  4657. ],
  4658. "authors": [
  4659. {
  4660. "name": "Mark Rogoyski",
  4661. "email": "mark@rogoyski.com",
  4662. "homepage": "https://github.com/markrogoyski",
  4663. "role": "Lead developer"
  4664. },
  4665. {
  4666. "name": "Kevin Nowaczyk",
  4667. "homepage": "https://github.com/Beakerboy",
  4668. "role": "Developer"
  4669. },
  4670. {
  4671. "name": "MathPHP Community of Contributors",
  4672. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4673. }
  4674. ],
  4675. "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",
  4676. "homepage": "https://github.com/markrogoyski/math-php/",
  4677. "keywords": [
  4678. "algebra",
  4679. "combinatorics",
  4680. "distributions",
  4681. "linear algebra",
  4682. "math",
  4683. "mathematics",
  4684. "matrix",
  4685. "numerical analysis",
  4686. "probability",
  4687. "regressions",
  4688. "statistics"
  4689. ],
  4690. "support": {
  4691. "issues": "https://github.com/markrogoyski/math-php/issues",
  4692. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4693. },
  4694. "time": "2024-04-17T00:09:51+00:00"
  4695. },
  4696. {
  4697. "name": "monolog/monolog",
  4698. "version": "3.8.1",
  4699. "source": {
  4700. "type": "git",
  4701. "url": "https://github.com/Seldaek/monolog.git",
  4702. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4703. },
  4704. "dist": {
  4705. "type": "zip",
  4706. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4707. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4708. "shasum": ""
  4709. },
  4710. "require": {
  4711. "php": ">=8.1",
  4712. "psr/log": "^2.0 || ^3.0"
  4713. },
  4714. "provide": {
  4715. "psr/log-implementation": "3.0.0"
  4716. },
  4717. "require-dev": {
  4718. "aws/aws-sdk-php": "^3.0",
  4719. "doctrine/couchdb": "~1.0@dev",
  4720. "elasticsearch/elasticsearch": "^7 || ^8",
  4721. "ext-json": "*",
  4722. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4723. "guzzlehttp/guzzle": "^7.4.5",
  4724. "guzzlehttp/psr7": "^2.2",
  4725. "mongodb/mongodb": "^1.8",
  4726. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4727. "php-console/php-console": "^3.1.8",
  4728. "phpstan/phpstan": "^2",
  4729. "phpstan/phpstan-deprecation-rules": "^2",
  4730. "phpstan/phpstan-strict-rules": "^2",
  4731. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4732. "predis/predis": "^1.1 || ^2",
  4733. "rollbar/rollbar": "^4.0",
  4734. "ruflin/elastica": "^7 || ^8",
  4735. "symfony/mailer": "^5.4 || ^6",
  4736. "symfony/mime": "^5.4 || ^6"
  4737. },
  4738. "suggest": {
  4739. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4740. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4741. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4742. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4743. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4744. "ext-mbstring": "Allow to work properly with unicode symbols",
  4745. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4746. "ext-openssl": "Required to send log messages using SSL",
  4747. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4748. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4749. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4750. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4751. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4752. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4753. },
  4754. "type": "library",
  4755. "extra": {
  4756. "branch-alias": {
  4757. "dev-main": "3.x-dev"
  4758. }
  4759. },
  4760. "autoload": {
  4761. "psr-4": {
  4762. "Monolog\\": "src/Monolog"
  4763. }
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "authors": [
  4770. {
  4771. "name": "Jordi Boggiano",
  4772. "email": "j.boggiano@seld.be",
  4773. "homepage": "https://seld.be"
  4774. }
  4775. ],
  4776. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4777. "homepage": "https://github.com/Seldaek/monolog",
  4778. "keywords": [
  4779. "log",
  4780. "logging",
  4781. "psr-3"
  4782. ],
  4783. "support": {
  4784. "issues": "https://github.com/Seldaek/monolog/issues",
  4785. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4786. },
  4787. "funding": [
  4788. {
  4789. "url": "https://github.com/Seldaek",
  4790. "type": "github"
  4791. },
  4792. {
  4793. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4794. "type": "tidelift"
  4795. }
  4796. ],
  4797. "time": "2024-12-05T17:15:07+00:00"
  4798. },
  4799. {
  4800. "name": "nesbot/carbon",
  4801. "version": "2.72.6",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/briannesbitt/Carbon.git",
  4805. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1e9d50601e7035a4c61441a208cb5bed73e108c5",
  4810. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5",
  4811. "shasum": ""
  4812. },
  4813. "require": {
  4814. "carbonphp/carbon-doctrine-types": "*",
  4815. "ext-json": "*",
  4816. "php": "^7.1.8 || ^8.0",
  4817. "psr/clock": "^1.0",
  4818. "symfony/polyfill-mbstring": "^1.0",
  4819. "symfony/polyfill-php80": "^1.16",
  4820. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4821. },
  4822. "provide": {
  4823. "psr/clock-implementation": "1.0"
  4824. },
  4825. "require-dev": {
  4826. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4827. "doctrine/orm": "^2.7 || ^3.0",
  4828. "friendsofphp/php-cs-fixer": "^3.0",
  4829. "kylekatarnls/multi-tester": "^2.0",
  4830. "ondrejmirtes/better-reflection": "<6",
  4831. "phpmd/phpmd": "^2.9",
  4832. "phpstan/extension-installer": "^1.0",
  4833. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4834. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4835. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4836. "squizlabs/php_codesniffer": "^3.4"
  4837. },
  4838. "bin": [
  4839. "bin/carbon"
  4840. ],
  4841. "type": "library",
  4842. "extra": {
  4843. "laravel": {
  4844. "providers": [
  4845. "Carbon\\Laravel\\ServiceProvider"
  4846. ]
  4847. },
  4848. "phpstan": {
  4849. "includes": [
  4850. "extension.neon"
  4851. ]
  4852. },
  4853. "branch-alias": {
  4854. "dev-2.x": "2.x-dev",
  4855. "dev-master": "3.x-dev"
  4856. }
  4857. },
  4858. "autoload": {
  4859. "psr-4": {
  4860. "Carbon\\": "src/Carbon/"
  4861. }
  4862. },
  4863. "notification-url": "https://packagist.org/downloads/",
  4864. "license": [
  4865. "MIT"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Brian Nesbitt",
  4870. "email": "brian@nesbot.com",
  4871. "homepage": "https://markido.com"
  4872. },
  4873. {
  4874. "name": "kylekatarnls",
  4875. "homepage": "https://github.com/kylekatarnls"
  4876. }
  4877. ],
  4878. "description": "An API extension for DateTime that supports 281 different languages.",
  4879. "homepage": "https://carbon.nesbot.com",
  4880. "keywords": [
  4881. "date",
  4882. "datetime",
  4883. "time"
  4884. ],
  4885. "support": {
  4886. "docs": "https://carbon.nesbot.com/docs",
  4887. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4888. "source": "https://github.com/briannesbitt/Carbon"
  4889. },
  4890. "funding": [
  4891. {
  4892. "url": "https://github.com/sponsors/kylekatarnls",
  4893. "type": "github"
  4894. },
  4895. {
  4896. "url": "https://opencollective.com/Carbon#sponsor",
  4897. "type": "opencollective"
  4898. },
  4899. {
  4900. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4901. "type": "tidelift"
  4902. }
  4903. ],
  4904. "time": "2024-12-27T09:28:11+00:00"
  4905. },
  4906. {
  4907. "name": "nikic/fast-route",
  4908. "version": "v1.3.0",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/nikic/FastRoute.git",
  4912. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4917. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "php": ">=5.4.0"
  4922. },
  4923. "require-dev": {
  4924. "phpunit/phpunit": "^4.8.35|~5.7"
  4925. },
  4926. "type": "library",
  4927. "autoload": {
  4928. "files": [
  4929. "src/functions.php"
  4930. ],
  4931. "psr-4": {
  4932. "FastRoute\\": "src/"
  4933. }
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "BSD-3-Clause"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Nikita Popov",
  4942. "email": "nikic@php.net"
  4943. }
  4944. ],
  4945. "description": "Fast request router for PHP",
  4946. "keywords": [
  4947. "router",
  4948. "routing"
  4949. ],
  4950. "support": {
  4951. "issues": "https://github.com/nikic/FastRoute/issues",
  4952. "source": "https://github.com/nikic/FastRoute/tree/master"
  4953. },
  4954. "time": "2018-02-13T20:26:39+00:00"
  4955. },
  4956. {
  4957. "name": "nikic/php-parser",
  4958. "version": "v4.19.4",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/nikic/PHP-Parser.git",
  4962. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4967. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "ext-tokenizer": "*",
  4972. "php": ">=7.1"
  4973. },
  4974. "require-dev": {
  4975. "ircmaxell/php-yacc": "^0.0.7",
  4976. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4977. },
  4978. "bin": [
  4979. "bin/php-parse"
  4980. ],
  4981. "type": "library",
  4982. "extra": {
  4983. "branch-alias": {
  4984. "dev-master": "4.9-dev"
  4985. }
  4986. },
  4987. "autoload": {
  4988. "psr-4": {
  4989. "PhpParser\\": "lib/PhpParser"
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "BSD-3-Clause"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "Nikita Popov"
  4999. }
  5000. ],
  5001. "description": "A PHP parser written in PHP",
  5002. "keywords": [
  5003. "parser",
  5004. "php"
  5005. ],
  5006. "support": {
  5007. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5008. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5009. },
  5010. "time": "2024-09-29T15:01:53+00:00"
  5011. },
  5012. {
  5013. "name": "opentracing/opentracing",
  5014. "version": "1.0.2",
  5015. "source": {
  5016. "type": "git",
  5017. "url": "https://github.com/opentracing/opentracing-php.git",
  5018. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116"
  5019. },
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5023. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5024. "shasum": ""
  5025. },
  5026. "require": {
  5027. "php": "^7.1 || ^8.0"
  5028. },
  5029. "require-dev": {
  5030. "phpstan/phpstan": "~0.12",
  5031. "phpunit/phpunit": "^7.0 || ^9.0",
  5032. "squizlabs/php_codesniffer": "3.*"
  5033. },
  5034. "type": "library",
  5035. "autoload": {
  5036. "files": [
  5037. "src/OpenTracing/Tags.php",
  5038. "src/OpenTracing/Formats.php"
  5039. ],
  5040. "psr-4": {
  5041. "OpenTracing\\": "src/OpenTracing/"
  5042. }
  5043. },
  5044. "notification-url": "https://packagist.org/downloads/",
  5045. "license": [
  5046. "Apache-2.0"
  5047. ],
  5048. "authors": [
  5049. {
  5050. "name": "José Carlos Chávez",
  5051. "email": "jcchavezs@gmail.com"
  5052. }
  5053. ],
  5054. "description": "OpenTracing API for PHP",
  5055. "support": {
  5056. "issues": "https://github.com/opentracing/opentracing-php/issues",
  5057. "source": "https://github.com/opentracing/opentracing-php/tree/1.0.2"
  5058. },
  5059. "time": "2022-01-27T19:59:21+00:00"
  5060. },
  5061. {
  5062. "name": "openzipkin/zipkin",
  5063. "version": "3.2.0",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/openzipkin/zipkin-php.git",
  5067. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/e2809f8b6775796d2116b3ca73576a1734296ff6",
  5072. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "ext-curl": "*",
  5077. "php": "^7.4 || ^8.0",
  5078. "psr/http-message": "~1.0 || ~2.0",
  5079. "psr/log": "^1.0 || ^2.0 || ^3.0"
  5080. },
  5081. "require-dev": {
  5082. "ext-mysqli": "*",
  5083. "jcchavezs/httptest": "~0.2",
  5084. "middlewares/fast-route": "^2.0",
  5085. "middlewares/request-handler": "^2.0",
  5086. "nyholm/psr7": "^1.4",
  5087. "phpspec/prophecy-phpunit": "^2.0",
  5088. "phpstan/phpstan": "^0.12.26",
  5089. "phpunit/phpunit": "~9",
  5090. "psr/http-client": "^1.0",
  5091. "psr/http-server-middleware": "^1.0",
  5092. "squizlabs/php_codesniffer": "3.*"
  5093. },
  5094. "suggest": {
  5095. "ext-mysqli": "Allows to use mysqli instrumentation.",
  5096. "psr/http-client": "Allows to instrument HTTP clients following PSR18.",
  5097. "psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
  5098. },
  5099. "type": "library",
  5100. "autoload": {
  5101. "files": [
  5102. "./src/Zipkin/Propagation/Id.php",
  5103. "./src/Zipkin/Timestamp.php",
  5104. "./src/Zipkin/Kind.php",
  5105. "./src/Zipkin/Tags.php",
  5106. "./src/Zipkin/Annotations.php",
  5107. "./src/Zipkin/SpanName.php"
  5108. ],
  5109. "psr-4": {
  5110. "Zipkin\\": "./src/Zipkin/"
  5111. }
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "Apache-2.0"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "José Carlos Chávez",
  5120. "email": "jcchavezs@gmail.com"
  5121. }
  5122. ],
  5123. "description": "A Zipkin instrumentation for PHP",
  5124. "homepage": "https://github.com/openzipkin/zipkin-php",
  5125. "keywords": [
  5126. "distributed-tracing",
  5127. "openzipkin",
  5128. "tracing",
  5129. "zipkin"
  5130. ],
  5131. "support": {
  5132. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  5133. "source": "https://github.com/openzipkin/zipkin-php/tree/3.2.0"
  5134. },
  5135. "time": "2023-09-28T20:54:04+00:00"
  5136. },
  5137. {
  5138. "name": "paragonie/constant_time_encoding",
  5139. "version": "v3.0.0",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5143. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5148. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5149. "shasum": ""
  5150. },
  5151. "require": {
  5152. "php": "^8"
  5153. },
  5154. "require-dev": {
  5155. "phpunit/phpunit": "^9",
  5156. "vimeo/psalm": "^4|^5"
  5157. },
  5158. "type": "library",
  5159. "autoload": {
  5160. "psr-4": {
  5161. "ParagonIE\\ConstantTime\\": "src/"
  5162. }
  5163. },
  5164. "notification-url": "https://packagist.org/downloads/",
  5165. "license": [
  5166. "MIT"
  5167. ],
  5168. "authors": [
  5169. {
  5170. "name": "Paragon Initiative Enterprises",
  5171. "email": "security@paragonie.com",
  5172. "homepage": "https://paragonie.com",
  5173. "role": "Maintainer"
  5174. },
  5175. {
  5176. "name": "Steve 'Sc00bz' Thomas",
  5177. "email": "steve@tobtu.com",
  5178. "homepage": "https://www.tobtu.com",
  5179. "role": "Original Developer"
  5180. }
  5181. ],
  5182. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5183. "keywords": [
  5184. "base16",
  5185. "base32",
  5186. "base32_decode",
  5187. "base32_encode",
  5188. "base64",
  5189. "base64_decode",
  5190. "base64_encode",
  5191. "bin2hex",
  5192. "encoding",
  5193. "hex",
  5194. "hex2bin",
  5195. "rfc4648"
  5196. ],
  5197. "support": {
  5198. "email": "info@paragonie.com",
  5199. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5200. "source": "https://github.com/paragonie/constant_time_encoding"
  5201. },
  5202. "time": "2024-05-08T12:36:18+00:00"
  5203. },
  5204. {
  5205. "name": "paragonie/random_compat",
  5206. "version": "v9.99.100",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/paragonie/random_compat.git",
  5210. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5215. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "php": ">= 7"
  5220. },
  5221. "require-dev": {
  5222. "phpunit/phpunit": "4.*|5.*",
  5223. "vimeo/psalm": "^1"
  5224. },
  5225. "suggest": {
  5226. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5227. },
  5228. "type": "library",
  5229. "notification-url": "https://packagist.org/downloads/",
  5230. "license": [
  5231. "MIT"
  5232. ],
  5233. "authors": [
  5234. {
  5235. "name": "Paragon Initiative Enterprises",
  5236. "email": "security@paragonie.com",
  5237. "homepage": "https://paragonie.com"
  5238. }
  5239. ],
  5240. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5241. "keywords": [
  5242. "csprng",
  5243. "polyfill",
  5244. "pseudorandom",
  5245. "random"
  5246. ],
  5247. "support": {
  5248. "email": "info@paragonie.com",
  5249. "issues": "https://github.com/paragonie/random_compat/issues",
  5250. "source": "https://github.com/paragonie/random_compat"
  5251. },
  5252. "time": "2020-10-15T08:29:30+00:00"
  5253. },
  5254. {
  5255. "name": "php-amqplib/php-amqplib",
  5256. "version": "v3.7.2",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5260. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5265. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5266. "shasum": ""
  5267. },
  5268. "require": {
  5269. "ext-mbstring": "*",
  5270. "ext-sockets": "*",
  5271. "php": "^7.2||^8.0",
  5272. "phpseclib/phpseclib": "^2.0|^3.0"
  5273. },
  5274. "conflict": {
  5275. "php": "7.4.0 - 7.4.1"
  5276. },
  5277. "replace": {
  5278. "videlalvaro/php-amqplib": "self.version"
  5279. },
  5280. "require-dev": {
  5281. "ext-curl": "*",
  5282. "nategood/httpful": "^0.2.20",
  5283. "phpunit/phpunit": "^7.5|^9.5",
  5284. "squizlabs/php_codesniffer": "^3.6"
  5285. },
  5286. "type": "library",
  5287. "extra": {
  5288. "branch-alias": {
  5289. "dev-master": "3.0-dev"
  5290. }
  5291. },
  5292. "autoload": {
  5293. "psr-4": {
  5294. "PhpAmqpLib\\": "PhpAmqpLib/"
  5295. }
  5296. },
  5297. "notification-url": "https://packagist.org/downloads/",
  5298. "license": [
  5299. "LGPL-2.1-or-later"
  5300. ],
  5301. "authors": [
  5302. {
  5303. "name": "Alvaro Videla",
  5304. "role": "Original Maintainer"
  5305. },
  5306. {
  5307. "name": "Raúl Araya",
  5308. "email": "nubeiro@gmail.com",
  5309. "role": "Maintainer"
  5310. },
  5311. {
  5312. "name": "Luke Bakken",
  5313. "email": "luke@bakken.io",
  5314. "role": "Maintainer"
  5315. },
  5316. {
  5317. "name": "Ramūnas Dronga",
  5318. "email": "github@ramuno.lt",
  5319. "role": "Maintainer"
  5320. }
  5321. ],
  5322. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5323. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5324. "keywords": [
  5325. "message",
  5326. "queue",
  5327. "rabbitmq"
  5328. ],
  5329. "support": {
  5330. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5331. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5332. },
  5333. "time": "2024-11-21T09:21:41+00:00"
  5334. },
  5335. {
  5336. "name": "php-di/phpdoc-reader",
  5337. "version": "2.2.1",
  5338. "source": {
  5339. "type": "git",
  5340. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5341. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5342. },
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5346. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "php": ">=7.2.0"
  5351. },
  5352. "require-dev": {
  5353. "mnapoli/hard-mode": "~0.3.0",
  5354. "phpunit/phpunit": "^8.5|^9.0"
  5355. },
  5356. "type": "library",
  5357. "autoload": {
  5358. "psr-4": {
  5359. "PhpDocReader\\": "src/PhpDocReader"
  5360. }
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5367. "keywords": [
  5368. "phpdoc",
  5369. "reflection"
  5370. ],
  5371. "support": {
  5372. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5373. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5374. },
  5375. "time": "2020-10-12T12:39:22+00:00"
  5376. },
  5377. {
  5378. "name": "phpoption/phpoption",
  5379. "version": "1.9.3",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/schmittjoh/php-option.git",
  5383. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5388. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "php": "^7.2.5 || ^8.0"
  5393. },
  5394. "require-dev": {
  5395. "bamarni/composer-bin-plugin": "^1.8.2",
  5396. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5397. },
  5398. "type": "library",
  5399. "extra": {
  5400. "bamarni-bin": {
  5401. "bin-links": true,
  5402. "forward-command": false
  5403. },
  5404. "branch-alias": {
  5405. "dev-master": "1.9-dev"
  5406. }
  5407. },
  5408. "autoload": {
  5409. "psr-4": {
  5410. "PhpOption\\": "src/PhpOption/"
  5411. }
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "Apache-2.0"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Johannes M. Schmitt",
  5420. "email": "schmittjoh@gmail.com",
  5421. "homepage": "https://github.com/schmittjoh"
  5422. },
  5423. {
  5424. "name": "Graham Campbell",
  5425. "email": "hello@gjcampbell.co.uk",
  5426. "homepage": "https://github.com/GrahamCampbell"
  5427. }
  5428. ],
  5429. "description": "Option Type for PHP",
  5430. "keywords": [
  5431. "language",
  5432. "option",
  5433. "php",
  5434. "type"
  5435. ],
  5436. "support": {
  5437. "issues": "https://github.com/schmittjoh/php-option/issues",
  5438. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5439. },
  5440. "funding": [
  5441. {
  5442. "url": "https://github.com/GrahamCampbell",
  5443. "type": "github"
  5444. },
  5445. {
  5446. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5447. "type": "tidelift"
  5448. }
  5449. ],
  5450. "time": "2024-07-20T21:41:07+00:00"
  5451. },
  5452. {
  5453. "name": "phpseclib/phpseclib",
  5454. "version": "3.0.43",
  5455. "source": {
  5456. "type": "git",
  5457. "url": "https://github.com/phpseclib/phpseclib.git",
  5458. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5459. },
  5460. "dist": {
  5461. "type": "zip",
  5462. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5463. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5464. "shasum": ""
  5465. },
  5466. "require": {
  5467. "paragonie/constant_time_encoding": "^1|^2|^3",
  5468. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5469. "php": ">=5.6.1"
  5470. },
  5471. "require-dev": {
  5472. "phpunit/phpunit": "*"
  5473. },
  5474. "suggest": {
  5475. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5476. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5477. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5478. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5479. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5480. },
  5481. "type": "library",
  5482. "autoload": {
  5483. "files": [
  5484. "phpseclib/bootstrap.php"
  5485. ],
  5486. "psr-4": {
  5487. "phpseclib3\\": "phpseclib/"
  5488. }
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "MIT"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "Jim Wigginton",
  5497. "email": "terrafrost@php.net",
  5498. "role": "Lead Developer"
  5499. },
  5500. {
  5501. "name": "Patrick Monnerat",
  5502. "email": "pm@datasphere.ch",
  5503. "role": "Developer"
  5504. },
  5505. {
  5506. "name": "Andreas Fischer",
  5507. "email": "bantu@phpbb.com",
  5508. "role": "Developer"
  5509. },
  5510. {
  5511. "name": "Hans-Jürgen Petrich",
  5512. "email": "petrich@tronic-media.com",
  5513. "role": "Developer"
  5514. },
  5515. {
  5516. "name": "Graham Campbell",
  5517. "email": "graham@alt-three.com",
  5518. "role": "Developer"
  5519. }
  5520. ],
  5521. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5522. "homepage": "http://phpseclib.sourceforge.net",
  5523. "keywords": [
  5524. "BigInteger",
  5525. "aes",
  5526. "asn.1",
  5527. "asn1",
  5528. "blowfish",
  5529. "crypto",
  5530. "cryptography",
  5531. "encryption",
  5532. "rsa",
  5533. "security",
  5534. "sftp",
  5535. "signature",
  5536. "signing",
  5537. "ssh",
  5538. "twofish",
  5539. "x.509",
  5540. "x509"
  5541. ],
  5542. "support": {
  5543. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5544. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5545. },
  5546. "funding": [
  5547. {
  5548. "url": "https://github.com/terrafrost",
  5549. "type": "github"
  5550. },
  5551. {
  5552. "url": "https://www.patreon.com/phpseclib",
  5553. "type": "patreon"
  5554. },
  5555. {
  5556. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5557. "type": "tidelift"
  5558. }
  5559. ],
  5560. "time": "2024-12-14T21:12:59+00:00"
  5561. },
  5562. {
  5563. "name": "psr/clock",
  5564. "version": "1.0.0",
  5565. "source": {
  5566. "type": "git",
  5567. "url": "https://github.com/php-fig/clock.git",
  5568. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5569. },
  5570. "dist": {
  5571. "type": "zip",
  5572. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5573. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5574. "shasum": ""
  5575. },
  5576. "require": {
  5577. "php": "^7.0 || ^8.0"
  5578. },
  5579. "type": "library",
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Psr\\Clock\\": "src/"
  5583. }
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "PHP-FIG",
  5592. "homepage": "https://www.php-fig.org/"
  5593. }
  5594. ],
  5595. "description": "Common interface for reading the clock.",
  5596. "homepage": "https://github.com/php-fig/clock",
  5597. "keywords": [
  5598. "clock",
  5599. "now",
  5600. "psr",
  5601. "psr-20",
  5602. "time"
  5603. ],
  5604. "support": {
  5605. "issues": "https://github.com/php-fig/clock/issues",
  5606. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5607. },
  5608. "time": "2022-11-25T14:36:26+00:00"
  5609. },
  5610. {
  5611. "name": "psr/container",
  5612. "version": "2.0.2",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/php-fig/container.git",
  5616. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5621. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "php": ">=7.4.0"
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "2.0.x-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Psr\\Container\\": "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 Container Interface (PHP FIG PSR-11)",
  5649. "homepage": "https://github.com/php-fig/container",
  5650. "keywords": [
  5651. "PSR-11",
  5652. "container",
  5653. "container-interface",
  5654. "container-interop",
  5655. "psr"
  5656. ],
  5657. "support": {
  5658. "issues": "https://github.com/php-fig/container/issues",
  5659. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5660. },
  5661. "time": "2021-11-05T16:47:00+00:00"
  5662. },
  5663. {
  5664. "name": "psr/event-dispatcher",
  5665. "version": "1.0.0",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/php-fig/event-dispatcher.git",
  5669. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5674. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=7.2.0"
  5679. },
  5680. "type": "library",
  5681. "extra": {
  5682. "branch-alias": {
  5683. "dev-master": "1.0.x-dev"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Psr\\EventDispatcher\\": "src/"
  5689. }
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "PHP-FIG",
  5698. "homepage": "http://www.php-fig.org/"
  5699. }
  5700. ],
  5701. "description": "Standard interfaces for event handling.",
  5702. "keywords": [
  5703. "events",
  5704. "psr",
  5705. "psr-14"
  5706. ],
  5707. "support": {
  5708. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5709. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5710. },
  5711. "time": "2019-01-08T18:20:26+00:00"
  5712. },
  5713. {
  5714. "name": "psr/http-client",
  5715. "version": "1.0.3",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/php-fig/http-client.git",
  5719. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5724. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": "^7.0 || ^8.0",
  5729. "psr/http-message": "^1.0 || ^2.0"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "1.0.x-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "psr-4": {
  5739. "Psr\\Http\\Client\\": "src/"
  5740. }
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "MIT"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "PHP-FIG",
  5749. "homepage": "https://www.php-fig.org/"
  5750. }
  5751. ],
  5752. "description": "Common interface for HTTP clients",
  5753. "homepage": "https://github.com/php-fig/http-client",
  5754. "keywords": [
  5755. "http",
  5756. "http-client",
  5757. "psr",
  5758. "psr-18"
  5759. ],
  5760. "support": {
  5761. "source": "https://github.com/php-fig/http-client"
  5762. },
  5763. "time": "2023-09-23T14:17:50+00:00"
  5764. },
  5765. {
  5766. "name": "psr/http-factory",
  5767. "version": "1.1.0",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://github.com/php-fig/http-factory.git",
  5771. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5776. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5777. "shasum": ""
  5778. },
  5779. "require": {
  5780. "php": ">=7.1",
  5781. "psr/http-message": "^1.0 || ^2.0"
  5782. },
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "1.0.x-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "psr-4": {
  5791. "Psr\\Http\\Message\\": "src/"
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "PHP-FIG",
  5801. "homepage": "https://www.php-fig.org/"
  5802. }
  5803. ],
  5804. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5805. "keywords": [
  5806. "factory",
  5807. "http",
  5808. "message",
  5809. "psr",
  5810. "psr-17",
  5811. "psr-7",
  5812. "request",
  5813. "response"
  5814. ],
  5815. "support": {
  5816. "source": "https://github.com/php-fig/http-factory"
  5817. },
  5818. "time": "2024-04-15T12:06:14+00:00"
  5819. },
  5820. {
  5821. "name": "psr/http-message",
  5822. "version": "2.0",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/php-fig/http-message.git",
  5826. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5831. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5832. "shasum": ""
  5833. },
  5834. "require": {
  5835. "php": "^7.2 || ^8.0"
  5836. },
  5837. "type": "library",
  5838. "extra": {
  5839. "branch-alias": {
  5840. "dev-master": "2.0.x-dev"
  5841. }
  5842. },
  5843. "autoload": {
  5844. "psr-4": {
  5845. "Psr\\Http\\Message\\": "src/"
  5846. }
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "PHP-FIG",
  5855. "homepage": "https://www.php-fig.org/"
  5856. }
  5857. ],
  5858. "description": "Common interface for HTTP messages",
  5859. "homepage": "https://github.com/php-fig/http-message",
  5860. "keywords": [
  5861. "http",
  5862. "http-message",
  5863. "psr",
  5864. "psr-7",
  5865. "request",
  5866. "response"
  5867. ],
  5868. "support": {
  5869. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5870. },
  5871. "time": "2023-04-04T09:54:51+00:00"
  5872. },
  5873. {
  5874. "name": "psr/http-server-handler",
  5875. "version": "1.0.2",
  5876. "source": {
  5877. "type": "git",
  5878. "url": "https://github.com/php-fig/http-server-handler.git",
  5879. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5880. },
  5881. "dist": {
  5882. "type": "zip",
  5883. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5884. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5885. "shasum": ""
  5886. },
  5887. "require": {
  5888. "php": ">=7.0",
  5889. "psr/http-message": "^1.0 || ^2.0"
  5890. },
  5891. "type": "library",
  5892. "extra": {
  5893. "branch-alias": {
  5894. "dev-master": "1.0.x-dev"
  5895. }
  5896. },
  5897. "autoload": {
  5898. "psr-4": {
  5899. "Psr\\Http\\Server\\": "src/"
  5900. }
  5901. },
  5902. "notification-url": "https://packagist.org/downloads/",
  5903. "license": [
  5904. "MIT"
  5905. ],
  5906. "authors": [
  5907. {
  5908. "name": "PHP-FIG",
  5909. "homepage": "https://www.php-fig.org/"
  5910. }
  5911. ],
  5912. "description": "Common interface for HTTP server-side request handler",
  5913. "keywords": [
  5914. "handler",
  5915. "http",
  5916. "http-interop",
  5917. "psr",
  5918. "psr-15",
  5919. "psr-7",
  5920. "request",
  5921. "response",
  5922. "server"
  5923. ],
  5924. "support": {
  5925. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5926. },
  5927. "time": "2023-04-10T20:06:20+00:00"
  5928. },
  5929. {
  5930. "name": "psr/http-server-middleware",
  5931. "version": "1.0.2",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/php-fig/http-server-middleware.git",
  5935. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5940. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5941. "shasum": ""
  5942. },
  5943. "require": {
  5944. "php": ">=7.0",
  5945. "psr/http-message": "^1.0 || ^2.0",
  5946. "psr/http-server-handler": "^1.0"
  5947. },
  5948. "type": "library",
  5949. "extra": {
  5950. "branch-alias": {
  5951. "dev-master": "1.0.x-dev"
  5952. }
  5953. },
  5954. "autoload": {
  5955. "psr-4": {
  5956. "Psr\\Http\\Server\\": "src/"
  5957. }
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "MIT"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "PHP-FIG",
  5966. "homepage": "https://www.php-fig.org/"
  5967. }
  5968. ],
  5969. "description": "Common interface for HTTP server-side middleware",
  5970. "keywords": [
  5971. "http",
  5972. "http-interop",
  5973. "middleware",
  5974. "psr",
  5975. "psr-15",
  5976. "psr-7",
  5977. "request",
  5978. "response"
  5979. ],
  5980. "support": {
  5981. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5982. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5983. },
  5984. "time": "2023-04-11T06:14:47+00:00"
  5985. },
  5986. {
  5987. "name": "psr/log",
  5988. "version": "3.0.2",
  5989. "source": {
  5990. "type": "git",
  5991. "url": "https://github.com/php-fig/log.git",
  5992. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5993. },
  5994. "dist": {
  5995. "type": "zip",
  5996. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5997. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5998. "shasum": ""
  5999. },
  6000. "require": {
  6001. "php": ">=8.0.0"
  6002. },
  6003. "type": "library",
  6004. "extra": {
  6005. "branch-alias": {
  6006. "dev-master": "3.x-dev"
  6007. }
  6008. },
  6009. "autoload": {
  6010. "psr-4": {
  6011. "Psr\\Log\\": "src"
  6012. }
  6013. },
  6014. "notification-url": "https://packagist.org/downloads/",
  6015. "license": [
  6016. "MIT"
  6017. ],
  6018. "authors": [
  6019. {
  6020. "name": "PHP-FIG",
  6021. "homepage": "https://www.php-fig.org/"
  6022. }
  6023. ],
  6024. "description": "Common interface for logging libraries",
  6025. "homepage": "https://github.com/php-fig/log",
  6026. "keywords": [
  6027. "log",
  6028. "psr",
  6029. "psr-3"
  6030. ],
  6031. "support": {
  6032. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6033. },
  6034. "time": "2024-09-11T13:17:53+00:00"
  6035. },
  6036. {
  6037. "name": "psr/simple-cache",
  6038. "version": "3.0.0",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://github.com/php-fig/simple-cache.git",
  6042. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6047. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6048. "shasum": ""
  6049. },
  6050. "require": {
  6051. "php": ">=8.0.0"
  6052. },
  6053. "type": "library",
  6054. "extra": {
  6055. "branch-alias": {
  6056. "dev-master": "3.0.x-dev"
  6057. }
  6058. },
  6059. "autoload": {
  6060. "psr-4": {
  6061. "Psr\\SimpleCache\\": "src/"
  6062. }
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "PHP-FIG",
  6071. "homepage": "https://www.php-fig.org/"
  6072. }
  6073. ],
  6074. "description": "Common interfaces for simple caching",
  6075. "keywords": [
  6076. "cache",
  6077. "caching",
  6078. "psr",
  6079. "psr-16",
  6080. "simple-cache"
  6081. ],
  6082. "support": {
  6083. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6084. },
  6085. "time": "2021-10-29T13:26:27+00:00"
  6086. },
  6087. {
  6088. "name": "ralouphie/getallheaders",
  6089. "version": "3.0.3",
  6090. "source": {
  6091. "type": "git",
  6092. "url": "https://github.com/ralouphie/getallheaders.git",
  6093. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6094. },
  6095. "dist": {
  6096. "type": "zip",
  6097. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6098. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6099. "shasum": ""
  6100. },
  6101. "require": {
  6102. "php": ">=5.6"
  6103. },
  6104. "require-dev": {
  6105. "php-coveralls/php-coveralls": "^2.1",
  6106. "phpunit/phpunit": "^5 || ^6.5"
  6107. },
  6108. "type": "library",
  6109. "autoload": {
  6110. "files": [
  6111. "src/getallheaders.php"
  6112. ]
  6113. },
  6114. "notification-url": "https://packagist.org/downloads/",
  6115. "license": [
  6116. "MIT"
  6117. ],
  6118. "authors": [
  6119. {
  6120. "name": "Ralph Khattar",
  6121. "email": "ralph.khattar@gmail.com"
  6122. }
  6123. ],
  6124. "description": "A polyfill for getallheaders.",
  6125. "support": {
  6126. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6127. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6128. },
  6129. "time": "2019-03-08T08:55:37+00:00"
  6130. },
  6131. {
  6132. "name": "react/promise",
  6133. "version": "v2.11.0",
  6134. "source": {
  6135. "type": "git",
  6136. "url": "https://github.com/reactphp/promise.git",
  6137. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  6138. },
  6139. "dist": {
  6140. "type": "zip",
  6141. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  6142. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  6143. "shasum": ""
  6144. },
  6145. "require": {
  6146. "php": ">=5.4.0"
  6147. },
  6148. "require-dev": {
  6149. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6150. },
  6151. "type": "library",
  6152. "autoload": {
  6153. "files": [
  6154. "src/functions_include.php"
  6155. ],
  6156. "psr-4": {
  6157. "React\\Promise\\": "src/"
  6158. }
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Jan Sorgalla",
  6167. "email": "jsorgalla@gmail.com",
  6168. "homepage": "https://sorgalla.com/"
  6169. },
  6170. {
  6171. "name": "Christian Lück",
  6172. "email": "christian@clue.engineering",
  6173. "homepage": "https://clue.engineering/"
  6174. },
  6175. {
  6176. "name": "Cees-Jan Kiewiet",
  6177. "email": "reactphp@ceesjankiewiet.nl",
  6178. "homepage": "https://wyrihaximus.net/"
  6179. },
  6180. {
  6181. "name": "Chris Boden",
  6182. "email": "cboden@gmail.com",
  6183. "homepage": "https://cboden.dev/"
  6184. }
  6185. ],
  6186. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6187. "keywords": [
  6188. "promise",
  6189. "promises"
  6190. ],
  6191. "support": {
  6192. "issues": "https://github.com/reactphp/promise/issues",
  6193. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  6194. },
  6195. "funding": [
  6196. {
  6197. "url": "https://opencollective.com/reactphp",
  6198. "type": "open_collective"
  6199. }
  6200. ],
  6201. "time": "2023-11-16T16:16:50+00:00"
  6202. },
  6203. {
  6204. "name": "swow/psr7-plus",
  6205. "version": "v1.1.2",
  6206. "source": {
  6207. "type": "git",
  6208. "url": "https://github.com/swow/psr7-plus.git",
  6209. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6210. },
  6211. "dist": {
  6212. "type": "zip",
  6213. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6214. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6215. "shasum": ""
  6216. },
  6217. "require": {
  6218. "php": ">=8.0",
  6219. "psr/http-client": "^1.0",
  6220. "psr/http-factory": "^1.0",
  6221. "psr/http-message": "^1.1|^2.0"
  6222. },
  6223. "type": "library",
  6224. "autoload": {
  6225. "psr-4": {
  6226. "Swow\\Psr7\\Message\\": "src/Message/"
  6227. }
  6228. },
  6229. "notification-url": "https://packagist.org/downloads/",
  6230. "license": [
  6231. "Apache-2.0"
  6232. ],
  6233. "authors": [
  6234. {
  6235. "name": "twose",
  6236. "email": "twosee@php.net"
  6237. }
  6238. ],
  6239. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6240. "keywords": [
  6241. "http",
  6242. "psr17",
  6243. "psr7",
  6244. "swow",
  6245. "websocket"
  6246. ],
  6247. "support": {
  6248. "issues": "https://github.com/swow/swow",
  6249. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6250. },
  6251. "time": "2023-06-15T09:18:11+00:00"
  6252. },
  6253. {
  6254. "name": "symfony/console",
  6255. "version": "v7.2.1",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/symfony/console.git",
  6259. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6264. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": ">=8.2",
  6269. "symfony/polyfill-mbstring": "~1.0",
  6270. "symfony/service-contracts": "^2.5|^3",
  6271. "symfony/string": "^6.4|^7.0"
  6272. },
  6273. "conflict": {
  6274. "symfony/dependency-injection": "<6.4",
  6275. "symfony/dotenv": "<6.4",
  6276. "symfony/event-dispatcher": "<6.4",
  6277. "symfony/lock": "<6.4",
  6278. "symfony/process": "<6.4"
  6279. },
  6280. "provide": {
  6281. "psr/log-implementation": "1.0|2.0|3.0"
  6282. },
  6283. "require-dev": {
  6284. "psr/log": "^1|^2|^3",
  6285. "symfony/config": "^6.4|^7.0",
  6286. "symfony/dependency-injection": "^6.4|^7.0",
  6287. "symfony/event-dispatcher": "^6.4|^7.0",
  6288. "symfony/http-foundation": "^6.4|^7.0",
  6289. "symfony/http-kernel": "^6.4|^7.0",
  6290. "symfony/lock": "^6.4|^7.0",
  6291. "symfony/messenger": "^6.4|^7.0",
  6292. "symfony/process": "^6.4|^7.0",
  6293. "symfony/stopwatch": "^6.4|^7.0",
  6294. "symfony/var-dumper": "^6.4|^7.0"
  6295. },
  6296. "type": "library",
  6297. "autoload": {
  6298. "psr-4": {
  6299. "Symfony\\Component\\Console\\": ""
  6300. },
  6301. "exclude-from-classmap": [
  6302. "/Tests/"
  6303. ]
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "MIT"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "Fabien Potencier",
  6312. "email": "fabien@symfony.com"
  6313. },
  6314. {
  6315. "name": "Symfony Community",
  6316. "homepage": "https://symfony.com/contributors"
  6317. }
  6318. ],
  6319. "description": "Eases the creation of beautiful and testable command line interfaces",
  6320. "homepage": "https://symfony.com",
  6321. "keywords": [
  6322. "cli",
  6323. "command-line",
  6324. "console",
  6325. "terminal"
  6326. ],
  6327. "support": {
  6328. "source": "https://github.com/symfony/console/tree/v7.2.1"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://symfony.com/sponsor",
  6333. "type": "custom"
  6334. },
  6335. {
  6336. "url": "https://github.com/fabpot",
  6337. "type": "github"
  6338. },
  6339. {
  6340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6341. "type": "tidelift"
  6342. }
  6343. ],
  6344. "time": "2024-12-11T03:49:26+00:00"
  6345. },
  6346. {
  6347. "name": "symfony/deprecation-contracts",
  6348. "version": "v3.5.1",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/symfony/deprecation-contracts.git",
  6352. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6357. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "php": ">=8.1"
  6362. },
  6363. "type": "library",
  6364. "extra": {
  6365. "thanks": {
  6366. "url": "https://github.com/symfony/contracts",
  6367. "name": "symfony/contracts"
  6368. },
  6369. "branch-alias": {
  6370. "dev-main": "3.5-dev"
  6371. }
  6372. },
  6373. "autoload": {
  6374. "files": [
  6375. "function.php"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Nicolas Grekas",
  6385. "email": "p@tchwork.com"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "A generic function and convention to trigger deprecation notices",
  6393. "homepage": "https://symfony.com",
  6394. "support": {
  6395. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6396. },
  6397. "funding": [
  6398. {
  6399. "url": "https://symfony.com/sponsor",
  6400. "type": "custom"
  6401. },
  6402. {
  6403. "url": "https://github.com/fabpot",
  6404. "type": "github"
  6405. },
  6406. {
  6407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6408. "type": "tidelift"
  6409. }
  6410. ],
  6411. "time": "2024-09-25T14:20:29+00:00"
  6412. },
  6413. {
  6414. "name": "symfony/finder",
  6415. "version": "v7.2.2",
  6416. "source": {
  6417. "type": "git",
  6418. "url": "https://github.com/symfony/finder.git",
  6419. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  6420. },
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  6424. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "php": ">=8.2"
  6429. },
  6430. "require-dev": {
  6431. "symfony/filesystem": "^6.4|^7.0"
  6432. },
  6433. "type": "library",
  6434. "autoload": {
  6435. "psr-4": {
  6436. "Symfony\\Component\\Finder\\": ""
  6437. },
  6438. "exclude-from-classmap": [
  6439. "/Tests/"
  6440. ]
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Fabien Potencier",
  6449. "email": "fabien@symfony.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Finds files and directories via an intuitive fluent interface",
  6457. "homepage": "https://symfony.com",
  6458. "support": {
  6459. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  6460. },
  6461. "funding": [
  6462. {
  6463. "url": "https://symfony.com/sponsor",
  6464. "type": "custom"
  6465. },
  6466. {
  6467. "url": "https://github.com/fabpot",
  6468. "type": "github"
  6469. },
  6470. {
  6471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6472. "type": "tidelift"
  6473. }
  6474. ],
  6475. "time": "2024-12-30T19:00:17+00:00"
  6476. },
  6477. {
  6478. "name": "symfony/polyfill-ctype",
  6479. "version": "v1.31.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/symfony/polyfill-ctype.git",
  6483. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6488. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": ">=7.2"
  6493. },
  6494. "provide": {
  6495. "ext-ctype": "*"
  6496. },
  6497. "suggest": {
  6498. "ext-ctype": "For best performance"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "thanks": {
  6503. "url": "https://github.com/symfony/polyfill",
  6504. "name": "symfony/polyfill"
  6505. }
  6506. },
  6507. "autoload": {
  6508. "files": [
  6509. "bootstrap.php"
  6510. ],
  6511. "psr-4": {
  6512. "Symfony\\Polyfill\\Ctype\\": ""
  6513. }
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "license": [
  6517. "MIT"
  6518. ],
  6519. "authors": [
  6520. {
  6521. "name": "Gert de Pagter",
  6522. "email": "BackEndTea@gmail.com"
  6523. },
  6524. {
  6525. "name": "Symfony Community",
  6526. "homepage": "https://symfony.com/contributors"
  6527. }
  6528. ],
  6529. "description": "Symfony polyfill for ctype functions",
  6530. "homepage": "https://symfony.com",
  6531. "keywords": [
  6532. "compatibility",
  6533. "ctype",
  6534. "polyfill",
  6535. "portable"
  6536. ],
  6537. "support": {
  6538. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6539. },
  6540. "funding": [
  6541. {
  6542. "url": "https://symfony.com/sponsor",
  6543. "type": "custom"
  6544. },
  6545. {
  6546. "url": "https://github.com/fabpot",
  6547. "type": "github"
  6548. },
  6549. {
  6550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6551. "type": "tidelift"
  6552. }
  6553. ],
  6554. "time": "2024-09-09T11:45:10+00:00"
  6555. },
  6556. {
  6557. "name": "symfony/polyfill-intl-grapheme",
  6558. "version": "v1.31.0",
  6559. "source": {
  6560. "type": "git",
  6561. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6562. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6563. },
  6564. "dist": {
  6565. "type": "zip",
  6566. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6567. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6568. "shasum": ""
  6569. },
  6570. "require": {
  6571. "php": ">=7.2"
  6572. },
  6573. "suggest": {
  6574. "ext-intl": "For best performance"
  6575. },
  6576. "type": "library",
  6577. "extra": {
  6578. "thanks": {
  6579. "url": "https://github.com/symfony/polyfill",
  6580. "name": "symfony/polyfill"
  6581. }
  6582. },
  6583. "autoload": {
  6584. "files": [
  6585. "bootstrap.php"
  6586. ],
  6587. "psr-4": {
  6588. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6589. }
  6590. },
  6591. "notification-url": "https://packagist.org/downloads/",
  6592. "license": [
  6593. "MIT"
  6594. ],
  6595. "authors": [
  6596. {
  6597. "name": "Nicolas Grekas",
  6598. "email": "p@tchwork.com"
  6599. },
  6600. {
  6601. "name": "Symfony Community",
  6602. "homepage": "https://symfony.com/contributors"
  6603. }
  6604. ],
  6605. "description": "Symfony polyfill for intl's grapheme_* functions",
  6606. "homepage": "https://symfony.com",
  6607. "keywords": [
  6608. "compatibility",
  6609. "grapheme",
  6610. "intl",
  6611. "polyfill",
  6612. "portable",
  6613. "shim"
  6614. ],
  6615. "support": {
  6616. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6617. },
  6618. "funding": [
  6619. {
  6620. "url": "https://symfony.com/sponsor",
  6621. "type": "custom"
  6622. },
  6623. {
  6624. "url": "https://github.com/fabpot",
  6625. "type": "github"
  6626. },
  6627. {
  6628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6629. "type": "tidelift"
  6630. }
  6631. ],
  6632. "time": "2024-09-09T11:45:10+00:00"
  6633. },
  6634. {
  6635. "name": "symfony/polyfill-intl-normalizer",
  6636. "version": "v1.31.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6640. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6645. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6646. "shasum": ""
  6647. },
  6648. "require": {
  6649. "php": ">=7.2"
  6650. },
  6651. "suggest": {
  6652. "ext-intl": "For best performance"
  6653. },
  6654. "type": "library",
  6655. "extra": {
  6656. "thanks": {
  6657. "url": "https://github.com/symfony/polyfill",
  6658. "name": "symfony/polyfill"
  6659. }
  6660. },
  6661. "autoload": {
  6662. "files": [
  6663. "bootstrap.php"
  6664. ],
  6665. "psr-4": {
  6666. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6667. },
  6668. "classmap": [
  6669. "Resources/stubs"
  6670. ]
  6671. },
  6672. "notification-url": "https://packagist.org/downloads/",
  6673. "license": [
  6674. "MIT"
  6675. ],
  6676. "authors": [
  6677. {
  6678. "name": "Nicolas Grekas",
  6679. "email": "p@tchwork.com"
  6680. },
  6681. {
  6682. "name": "Symfony Community",
  6683. "homepage": "https://symfony.com/contributors"
  6684. }
  6685. ],
  6686. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6687. "homepage": "https://symfony.com",
  6688. "keywords": [
  6689. "compatibility",
  6690. "intl",
  6691. "normalizer",
  6692. "polyfill",
  6693. "portable",
  6694. "shim"
  6695. ],
  6696. "support": {
  6697. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6698. },
  6699. "funding": [
  6700. {
  6701. "url": "https://symfony.com/sponsor",
  6702. "type": "custom"
  6703. },
  6704. {
  6705. "url": "https://github.com/fabpot",
  6706. "type": "github"
  6707. },
  6708. {
  6709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6710. "type": "tidelift"
  6711. }
  6712. ],
  6713. "time": "2024-09-09T11:45:10+00:00"
  6714. },
  6715. {
  6716. "name": "symfony/polyfill-mbstring",
  6717. "version": "v1.31.0",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6721. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6726. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6727. "shasum": ""
  6728. },
  6729. "require": {
  6730. "php": ">=7.2"
  6731. },
  6732. "provide": {
  6733. "ext-mbstring": "*"
  6734. },
  6735. "suggest": {
  6736. "ext-mbstring": "For best performance"
  6737. },
  6738. "type": "library",
  6739. "extra": {
  6740. "thanks": {
  6741. "url": "https://github.com/symfony/polyfill",
  6742. "name": "symfony/polyfill"
  6743. }
  6744. },
  6745. "autoload": {
  6746. "files": [
  6747. "bootstrap.php"
  6748. ],
  6749. "psr-4": {
  6750. "Symfony\\Polyfill\\Mbstring\\": ""
  6751. }
  6752. },
  6753. "notification-url": "https://packagist.org/downloads/",
  6754. "license": [
  6755. "MIT"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Nicolas Grekas",
  6760. "email": "p@tchwork.com"
  6761. },
  6762. {
  6763. "name": "Symfony Community",
  6764. "homepage": "https://symfony.com/contributors"
  6765. }
  6766. ],
  6767. "description": "Symfony polyfill for the Mbstring extension",
  6768. "homepage": "https://symfony.com",
  6769. "keywords": [
  6770. "compatibility",
  6771. "mbstring",
  6772. "polyfill",
  6773. "portable",
  6774. "shim"
  6775. ],
  6776. "support": {
  6777. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6778. },
  6779. "funding": [
  6780. {
  6781. "url": "https://symfony.com/sponsor",
  6782. "type": "custom"
  6783. },
  6784. {
  6785. "url": "https://github.com/fabpot",
  6786. "type": "github"
  6787. },
  6788. {
  6789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6790. "type": "tidelift"
  6791. }
  6792. ],
  6793. "time": "2024-09-09T11:45:10+00:00"
  6794. },
  6795. {
  6796. "name": "symfony/polyfill-php80",
  6797. "version": "v1.31.0",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/symfony/polyfill-php80.git",
  6801. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6806. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "php": ">=7.2"
  6811. },
  6812. "type": "library",
  6813. "extra": {
  6814. "thanks": {
  6815. "url": "https://github.com/symfony/polyfill",
  6816. "name": "symfony/polyfill"
  6817. }
  6818. },
  6819. "autoload": {
  6820. "files": [
  6821. "bootstrap.php"
  6822. ],
  6823. "psr-4": {
  6824. "Symfony\\Polyfill\\Php80\\": ""
  6825. },
  6826. "classmap": [
  6827. "Resources/stubs"
  6828. ]
  6829. },
  6830. "notification-url": "https://packagist.org/downloads/",
  6831. "license": [
  6832. "MIT"
  6833. ],
  6834. "authors": [
  6835. {
  6836. "name": "Ion Bazan",
  6837. "email": "ion.bazan@gmail.com"
  6838. },
  6839. {
  6840. "name": "Nicolas Grekas",
  6841. "email": "p@tchwork.com"
  6842. },
  6843. {
  6844. "name": "Symfony Community",
  6845. "homepage": "https://symfony.com/contributors"
  6846. }
  6847. ],
  6848. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6849. "homepage": "https://symfony.com",
  6850. "keywords": [
  6851. "compatibility",
  6852. "polyfill",
  6853. "portable",
  6854. "shim"
  6855. ],
  6856. "support": {
  6857. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6858. },
  6859. "funding": [
  6860. {
  6861. "url": "https://symfony.com/sponsor",
  6862. "type": "custom"
  6863. },
  6864. {
  6865. "url": "https://github.com/fabpot",
  6866. "type": "github"
  6867. },
  6868. {
  6869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6870. "type": "tidelift"
  6871. }
  6872. ],
  6873. "time": "2024-09-09T11:45:10+00:00"
  6874. },
  6875. {
  6876. "name": "symfony/service-contracts",
  6877. "version": "v3.5.1",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://github.com/symfony/service-contracts.git",
  6881. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6886. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6887. "shasum": ""
  6888. },
  6889. "require": {
  6890. "php": ">=8.1",
  6891. "psr/container": "^1.1|^2.0",
  6892. "symfony/deprecation-contracts": "^2.5|^3"
  6893. },
  6894. "conflict": {
  6895. "ext-psr": "<1.1|>=2"
  6896. },
  6897. "type": "library",
  6898. "extra": {
  6899. "thanks": {
  6900. "url": "https://github.com/symfony/contracts",
  6901. "name": "symfony/contracts"
  6902. },
  6903. "branch-alias": {
  6904. "dev-main": "3.5-dev"
  6905. }
  6906. },
  6907. "autoload": {
  6908. "psr-4": {
  6909. "Symfony\\Contracts\\Service\\": ""
  6910. },
  6911. "exclude-from-classmap": [
  6912. "/Test/"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "MIT"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Nicolas Grekas",
  6922. "email": "p@tchwork.com"
  6923. },
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Generic abstractions related to writing services",
  6930. "homepage": "https://symfony.com",
  6931. "keywords": [
  6932. "abstractions",
  6933. "contracts",
  6934. "decoupling",
  6935. "interfaces",
  6936. "interoperability",
  6937. "standards"
  6938. ],
  6939. "support": {
  6940. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6941. },
  6942. "funding": [
  6943. {
  6944. "url": "https://symfony.com/sponsor",
  6945. "type": "custom"
  6946. },
  6947. {
  6948. "url": "https://github.com/fabpot",
  6949. "type": "github"
  6950. },
  6951. {
  6952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6953. "type": "tidelift"
  6954. }
  6955. ],
  6956. "time": "2024-09-25T14:20:29+00:00"
  6957. },
  6958. {
  6959. "name": "symfony/string",
  6960. "version": "v7.2.0",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/symfony/string.git",
  6964. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  6969. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  6970. "shasum": ""
  6971. },
  6972. "require": {
  6973. "php": ">=8.2",
  6974. "symfony/polyfill-ctype": "~1.8",
  6975. "symfony/polyfill-intl-grapheme": "~1.0",
  6976. "symfony/polyfill-intl-normalizer": "~1.0",
  6977. "symfony/polyfill-mbstring": "~1.0"
  6978. },
  6979. "conflict": {
  6980. "symfony/translation-contracts": "<2.5"
  6981. },
  6982. "require-dev": {
  6983. "symfony/emoji": "^7.1",
  6984. "symfony/error-handler": "^6.4|^7.0",
  6985. "symfony/http-client": "^6.4|^7.0",
  6986. "symfony/intl": "^6.4|^7.0",
  6987. "symfony/translation-contracts": "^2.5|^3.0",
  6988. "symfony/var-exporter": "^6.4|^7.0"
  6989. },
  6990. "type": "library",
  6991. "autoload": {
  6992. "files": [
  6993. "Resources/functions.php"
  6994. ],
  6995. "psr-4": {
  6996. "Symfony\\Component\\String\\": ""
  6997. },
  6998. "exclude-from-classmap": [
  6999. "/Tests/"
  7000. ]
  7001. },
  7002. "notification-url": "https://packagist.org/downloads/",
  7003. "license": [
  7004. "MIT"
  7005. ],
  7006. "authors": [
  7007. {
  7008. "name": "Nicolas Grekas",
  7009. "email": "p@tchwork.com"
  7010. },
  7011. {
  7012. "name": "Symfony Community",
  7013. "homepage": "https://symfony.com/contributors"
  7014. }
  7015. ],
  7016. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7017. "homepage": "https://symfony.com",
  7018. "keywords": [
  7019. "grapheme",
  7020. "i18n",
  7021. "string",
  7022. "unicode",
  7023. "utf-8",
  7024. "utf8"
  7025. ],
  7026. "support": {
  7027. "source": "https://github.com/symfony/string/tree/v7.2.0"
  7028. },
  7029. "funding": [
  7030. {
  7031. "url": "https://symfony.com/sponsor",
  7032. "type": "custom"
  7033. },
  7034. {
  7035. "url": "https://github.com/fabpot",
  7036. "type": "github"
  7037. },
  7038. {
  7039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7040. "type": "tidelift"
  7041. }
  7042. ],
  7043. "time": "2024-11-13T13:31:26+00:00"
  7044. },
  7045. {
  7046. "name": "symfony/translation",
  7047. "version": "v6.4.13",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/symfony/translation.git",
  7051. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7056. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7057. "shasum": ""
  7058. },
  7059. "require": {
  7060. "php": ">=8.1",
  7061. "symfony/deprecation-contracts": "^2.5|^3",
  7062. "symfony/polyfill-mbstring": "~1.0",
  7063. "symfony/translation-contracts": "^2.5|^3.0"
  7064. },
  7065. "conflict": {
  7066. "symfony/config": "<5.4",
  7067. "symfony/console": "<5.4",
  7068. "symfony/dependency-injection": "<5.4",
  7069. "symfony/http-client-contracts": "<2.5",
  7070. "symfony/http-kernel": "<5.4",
  7071. "symfony/service-contracts": "<2.5",
  7072. "symfony/twig-bundle": "<5.4",
  7073. "symfony/yaml": "<5.4"
  7074. },
  7075. "provide": {
  7076. "symfony/translation-implementation": "2.3|3.0"
  7077. },
  7078. "require-dev": {
  7079. "nikic/php-parser": "^4.18|^5.0",
  7080. "psr/log": "^1|^2|^3",
  7081. "symfony/config": "^5.4|^6.0|^7.0",
  7082. "symfony/console": "^5.4|^6.0|^7.0",
  7083. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7084. "symfony/finder": "^5.4|^6.0|^7.0",
  7085. "symfony/http-client-contracts": "^2.5|^3.0",
  7086. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7087. "symfony/intl": "^5.4|^6.0|^7.0",
  7088. "symfony/polyfill-intl-icu": "^1.21",
  7089. "symfony/routing": "^5.4|^6.0|^7.0",
  7090. "symfony/service-contracts": "^2.5|^3",
  7091. "symfony/yaml": "^5.4|^6.0|^7.0"
  7092. },
  7093. "type": "library",
  7094. "autoload": {
  7095. "files": [
  7096. "Resources/functions.php"
  7097. ],
  7098. "psr-4": {
  7099. "Symfony\\Component\\Translation\\": ""
  7100. },
  7101. "exclude-from-classmap": [
  7102. "/Tests/"
  7103. ]
  7104. },
  7105. "notification-url": "https://packagist.org/downloads/",
  7106. "license": [
  7107. "MIT"
  7108. ],
  7109. "authors": [
  7110. {
  7111. "name": "Fabien Potencier",
  7112. "email": "fabien@symfony.com"
  7113. },
  7114. {
  7115. "name": "Symfony Community",
  7116. "homepage": "https://symfony.com/contributors"
  7117. }
  7118. ],
  7119. "description": "Provides tools to internationalize your application",
  7120. "homepage": "https://symfony.com",
  7121. "support": {
  7122. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7123. },
  7124. "funding": [
  7125. {
  7126. "url": "https://symfony.com/sponsor",
  7127. "type": "custom"
  7128. },
  7129. {
  7130. "url": "https://github.com/fabpot",
  7131. "type": "github"
  7132. },
  7133. {
  7134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7135. "type": "tidelift"
  7136. }
  7137. ],
  7138. "time": "2024-09-27T18:14:25+00:00"
  7139. },
  7140. {
  7141. "name": "symfony/translation-contracts",
  7142. "version": "v3.5.1",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/symfony/translation-contracts.git",
  7146. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7151. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "php": ">=8.1"
  7156. },
  7157. "type": "library",
  7158. "extra": {
  7159. "thanks": {
  7160. "url": "https://github.com/symfony/contracts",
  7161. "name": "symfony/contracts"
  7162. },
  7163. "branch-alias": {
  7164. "dev-main": "3.5-dev"
  7165. }
  7166. },
  7167. "autoload": {
  7168. "psr-4": {
  7169. "Symfony\\Contracts\\Translation\\": ""
  7170. },
  7171. "exclude-from-classmap": [
  7172. "/Test/"
  7173. ]
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Nicolas Grekas",
  7182. "email": "p@tchwork.com"
  7183. },
  7184. {
  7185. "name": "Symfony Community",
  7186. "homepage": "https://symfony.com/contributors"
  7187. }
  7188. ],
  7189. "description": "Generic abstractions related to translation",
  7190. "homepage": "https://symfony.com",
  7191. "keywords": [
  7192. "abstractions",
  7193. "contracts",
  7194. "decoupling",
  7195. "interfaces",
  7196. "interoperability",
  7197. "standards"
  7198. ],
  7199. "support": {
  7200. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7201. },
  7202. "funding": [
  7203. {
  7204. "url": "https://symfony.com/sponsor",
  7205. "type": "custom"
  7206. },
  7207. {
  7208. "url": "https://github.com/fabpot",
  7209. "type": "github"
  7210. },
  7211. {
  7212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7213. "type": "tidelift"
  7214. }
  7215. ],
  7216. "time": "2024-09-25T14:20:29+00:00"
  7217. },
  7218. {
  7219. "name": "vlucas/phpdotenv",
  7220. "version": "v5.6.1",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://github.com/vlucas/phpdotenv.git",
  7224. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7229. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7230. "shasum": ""
  7231. },
  7232. "require": {
  7233. "ext-pcre": "*",
  7234. "graham-campbell/result-type": "^1.1.3",
  7235. "php": "^7.2.5 || ^8.0",
  7236. "phpoption/phpoption": "^1.9.3",
  7237. "symfony/polyfill-ctype": "^1.24",
  7238. "symfony/polyfill-mbstring": "^1.24",
  7239. "symfony/polyfill-php80": "^1.24"
  7240. },
  7241. "require-dev": {
  7242. "bamarni/composer-bin-plugin": "^1.8.2",
  7243. "ext-filter": "*",
  7244. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7245. },
  7246. "suggest": {
  7247. "ext-filter": "Required to use the boolean validator."
  7248. },
  7249. "type": "library",
  7250. "extra": {
  7251. "bamarni-bin": {
  7252. "bin-links": true,
  7253. "forward-command": false
  7254. },
  7255. "branch-alias": {
  7256. "dev-master": "5.6-dev"
  7257. }
  7258. },
  7259. "autoload": {
  7260. "psr-4": {
  7261. "Dotenv\\": "src/"
  7262. }
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "BSD-3-Clause"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Graham Campbell",
  7271. "email": "hello@gjcampbell.co.uk",
  7272. "homepage": "https://github.com/GrahamCampbell"
  7273. },
  7274. {
  7275. "name": "Vance Lucas",
  7276. "email": "vance@vancelucas.com",
  7277. "homepage": "https://github.com/vlucas"
  7278. }
  7279. ],
  7280. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7281. "keywords": [
  7282. "dotenv",
  7283. "env",
  7284. "environment"
  7285. ],
  7286. "support": {
  7287. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7288. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7289. },
  7290. "funding": [
  7291. {
  7292. "url": "https://github.com/GrahamCampbell",
  7293. "type": "github"
  7294. },
  7295. {
  7296. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7297. "type": "tidelift"
  7298. }
  7299. ],
  7300. "time": "2024-07-20T21:52:34+00:00"
  7301. }
  7302. ],
  7303. "packages-dev": [
  7304. {
  7305. "name": "clue/ndjson-react",
  7306. "version": "v1.3.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/clue/reactphp-ndjson.git",
  7310. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7315. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": ">=5.3",
  7320. "react/stream": "^1.2"
  7321. },
  7322. "require-dev": {
  7323. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7324. "react/event-loop": "^1.2"
  7325. },
  7326. "type": "library",
  7327. "autoload": {
  7328. "psr-4": {
  7329. "Clue\\React\\NDJson\\": "src/"
  7330. }
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Christian Lück",
  7339. "email": "christian@clue.engineering"
  7340. }
  7341. ],
  7342. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7343. "homepage": "https://github.com/clue/reactphp-ndjson",
  7344. "keywords": [
  7345. "NDJSON",
  7346. "json",
  7347. "jsonlines",
  7348. "newline",
  7349. "reactphp",
  7350. "streaming"
  7351. ],
  7352. "support": {
  7353. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7354. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://clue.engineering/support",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/clue",
  7363. "type": "github"
  7364. }
  7365. ],
  7366. "time": "2022-12-23T10:58:28+00:00"
  7367. },
  7368. {
  7369. "name": "composer/pcre",
  7370. "version": "3.3.2",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://github.com/composer/pcre.git",
  7374. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7379. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7380. "shasum": ""
  7381. },
  7382. "require": {
  7383. "php": "^7.4 || ^8.0"
  7384. },
  7385. "conflict": {
  7386. "phpstan/phpstan": "<1.11.10"
  7387. },
  7388. "require-dev": {
  7389. "phpstan/phpstan": "^1.12 || ^2",
  7390. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7391. "phpunit/phpunit": "^8 || ^9"
  7392. },
  7393. "type": "library",
  7394. "extra": {
  7395. "phpstan": {
  7396. "includes": [
  7397. "extension.neon"
  7398. ]
  7399. },
  7400. "branch-alias": {
  7401. "dev-main": "3.x-dev"
  7402. }
  7403. },
  7404. "autoload": {
  7405. "psr-4": {
  7406. "Composer\\Pcre\\": "src"
  7407. }
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "MIT"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Jordi Boggiano",
  7416. "email": "j.boggiano@seld.be",
  7417. "homepage": "http://seld.be"
  7418. }
  7419. ],
  7420. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7421. "keywords": [
  7422. "PCRE",
  7423. "preg",
  7424. "regex",
  7425. "regular expression"
  7426. ],
  7427. "support": {
  7428. "issues": "https://github.com/composer/pcre/issues",
  7429. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7430. },
  7431. "funding": [
  7432. {
  7433. "url": "https://packagist.com",
  7434. "type": "custom"
  7435. },
  7436. {
  7437. "url": "https://github.com/composer",
  7438. "type": "github"
  7439. },
  7440. {
  7441. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7442. "type": "tidelift"
  7443. }
  7444. ],
  7445. "time": "2024-11-12T16:29:46+00:00"
  7446. },
  7447. {
  7448. "name": "composer/semver",
  7449. "version": "3.4.3",
  7450. "source": {
  7451. "type": "git",
  7452. "url": "https://github.com/composer/semver.git",
  7453. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7454. },
  7455. "dist": {
  7456. "type": "zip",
  7457. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7458. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7459. "shasum": ""
  7460. },
  7461. "require": {
  7462. "php": "^5.3.2 || ^7.0 || ^8.0"
  7463. },
  7464. "require-dev": {
  7465. "phpstan/phpstan": "^1.11",
  7466. "symfony/phpunit-bridge": "^3 || ^7"
  7467. },
  7468. "type": "library",
  7469. "extra": {
  7470. "branch-alias": {
  7471. "dev-main": "3.x-dev"
  7472. }
  7473. },
  7474. "autoload": {
  7475. "psr-4": {
  7476. "Composer\\Semver\\": "src"
  7477. }
  7478. },
  7479. "notification-url": "https://packagist.org/downloads/",
  7480. "license": [
  7481. "MIT"
  7482. ],
  7483. "authors": [
  7484. {
  7485. "name": "Nils Adermann",
  7486. "email": "naderman@naderman.de",
  7487. "homepage": "http://www.naderman.de"
  7488. },
  7489. {
  7490. "name": "Jordi Boggiano",
  7491. "email": "j.boggiano@seld.be",
  7492. "homepage": "http://seld.be"
  7493. },
  7494. {
  7495. "name": "Rob Bast",
  7496. "email": "rob.bast@gmail.com",
  7497. "homepage": "http://robbast.nl"
  7498. }
  7499. ],
  7500. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7501. "keywords": [
  7502. "semantic",
  7503. "semver",
  7504. "validation",
  7505. "versioning"
  7506. ],
  7507. "support": {
  7508. "irc": "ircs://irc.libera.chat:6697/composer",
  7509. "issues": "https://github.com/composer/semver/issues",
  7510. "source": "https://github.com/composer/semver/tree/3.4.3"
  7511. },
  7512. "funding": [
  7513. {
  7514. "url": "https://packagist.com",
  7515. "type": "custom"
  7516. },
  7517. {
  7518. "url": "https://github.com/composer",
  7519. "type": "github"
  7520. },
  7521. {
  7522. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7523. "type": "tidelift"
  7524. }
  7525. ],
  7526. "time": "2024-09-19T14:15:21+00:00"
  7527. },
  7528. {
  7529. "name": "composer/xdebug-handler",
  7530. "version": "3.0.5",
  7531. "source": {
  7532. "type": "git",
  7533. "url": "https://github.com/composer/xdebug-handler.git",
  7534. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7535. },
  7536. "dist": {
  7537. "type": "zip",
  7538. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7539. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7540. "shasum": ""
  7541. },
  7542. "require": {
  7543. "composer/pcre": "^1 || ^2 || ^3",
  7544. "php": "^7.2.5 || ^8.0",
  7545. "psr/log": "^1 || ^2 || ^3"
  7546. },
  7547. "require-dev": {
  7548. "phpstan/phpstan": "^1.0",
  7549. "phpstan/phpstan-strict-rules": "^1.1",
  7550. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7551. },
  7552. "type": "library",
  7553. "autoload": {
  7554. "psr-4": {
  7555. "Composer\\XdebugHandler\\": "src"
  7556. }
  7557. },
  7558. "notification-url": "https://packagist.org/downloads/",
  7559. "license": [
  7560. "MIT"
  7561. ],
  7562. "authors": [
  7563. {
  7564. "name": "John Stevenson",
  7565. "email": "john-stevenson@blueyonder.co.uk"
  7566. }
  7567. ],
  7568. "description": "Restarts a process without Xdebug.",
  7569. "keywords": [
  7570. "Xdebug",
  7571. "performance"
  7572. ],
  7573. "support": {
  7574. "irc": "ircs://irc.libera.chat:6697/composer",
  7575. "issues": "https://github.com/composer/xdebug-handler/issues",
  7576. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://packagist.com",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://github.com/composer",
  7585. "type": "github"
  7586. },
  7587. {
  7588. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7589. "type": "tidelift"
  7590. }
  7591. ],
  7592. "time": "2024-05-06T16:37:16+00:00"
  7593. },
  7594. {
  7595. "name": "evenement/evenement",
  7596. "version": "v3.0.2",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/igorw/evenement.git",
  7600. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7605. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=7.0"
  7610. },
  7611. "require-dev": {
  7612. "phpunit/phpunit": "^9 || ^6"
  7613. },
  7614. "type": "library",
  7615. "autoload": {
  7616. "psr-4": {
  7617. "Evenement\\": "src/"
  7618. }
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "MIT"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Igor Wiedler",
  7627. "email": "igor@wiedler.ch"
  7628. }
  7629. ],
  7630. "description": "Événement is a very simple event dispatching library for PHP",
  7631. "keywords": [
  7632. "event-dispatcher",
  7633. "event-emitter"
  7634. ],
  7635. "support": {
  7636. "issues": "https://github.com/igorw/evenement/issues",
  7637. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7638. },
  7639. "time": "2023-08-08T05:53:35+00:00"
  7640. },
  7641. {
  7642. "name": "fidry/cpu-core-counter",
  7643. "version": "1.2.0",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7647. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7652. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "php": "^7.2 || ^8.0"
  7657. },
  7658. "require-dev": {
  7659. "fidry/makefile": "^0.2.0",
  7660. "fidry/php-cs-fixer-config": "^1.1.2",
  7661. "phpstan/extension-installer": "^1.2.0",
  7662. "phpstan/phpstan": "^1.9.2",
  7663. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7664. "phpstan/phpstan-phpunit": "^1.2.2",
  7665. "phpstan/phpstan-strict-rules": "^1.4.4",
  7666. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7667. "webmozarts/strict-phpunit": "^7.5"
  7668. },
  7669. "type": "library",
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Fidry\\CpuCoreCounter\\": "src/"
  7673. }
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "MIT"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "Théo FIDRY",
  7682. "email": "theo.fidry@gmail.com"
  7683. }
  7684. ],
  7685. "description": "Tiny utility to get the number of CPU cores.",
  7686. "keywords": [
  7687. "CPU",
  7688. "core"
  7689. ],
  7690. "support": {
  7691. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7692. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7693. },
  7694. "funding": [
  7695. {
  7696. "url": "https://github.com/theofidry",
  7697. "type": "github"
  7698. }
  7699. ],
  7700. "time": "2024-08-06T10:04:20+00:00"
  7701. },
  7702. {
  7703. "name": "friendsofphp/php-cs-fixer",
  7704. "version": "v3.66.1",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7708. "reference": "cde186799d8e92960c5a00c96e6214bf7f5547a9"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/cde186799d8e92960c5a00c96e6214bf7f5547a9",
  7713. "reference": "cde186799d8e92960c5a00c96e6214bf7f5547a9",
  7714. "shasum": ""
  7715. },
  7716. "require": {
  7717. "clue/ndjson-react": "^1.0",
  7718. "composer/semver": "^3.4",
  7719. "composer/xdebug-handler": "^3.0.3",
  7720. "ext-filter": "*",
  7721. "ext-json": "*",
  7722. "ext-tokenizer": "*",
  7723. "fidry/cpu-core-counter": "^1.2",
  7724. "php": "^7.4 || ^8.0",
  7725. "react/child-process": "^0.6.5",
  7726. "react/event-loop": "^1.0",
  7727. "react/promise": "^2.0 || ^3.0",
  7728. "react/socket": "^1.0",
  7729. "react/stream": "^1.0",
  7730. "sebastian/diff": "^4.0 || ^5.1 || ^6.0",
  7731. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  7732. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  7733. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  7734. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  7735. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  7736. "symfony/polyfill-mbstring": "^1.31",
  7737. "symfony/polyfill-php80": "^1.31",
  7738. "symfony/polyfill-php81": "^1.31",
  7739. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  7740. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  7741. },
  7742. "require-dev": {
  7743. "facile-it/paraunit": "^1.3.1 || ^2.4",
  7744. "infection/infection": "^0.29.8",
  7745. "justinrainbow/json-schema": "^5.3 || ^6.0",
  7746. "keradus/cli-executor": "^2.1",
  7747. "mikey179/vfsstream": "^1.6.12",
  7748. "php-coveralls/php-coveralls": "^2.7",
  7749. "php-cs-fixer/accessible-object": "^1.1",
  7750. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7751. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7752. "phpunit/phpunit": "^9.6.22 || ^10.5.40 || ^11.5.2",
  7753. "symfony/var-dumper": "^5.4.48 || ^6.4.15 || ^7.2.0",
  7754. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.2.0"
  7755. },
  7756. "suggest": {
  7757. "ext-dom": "For handling output formats in XML",
  7758. "ext-mbstring": "For handling non-UTF8 characters."
  7759. },
  7760. "bin": [
  7761. "php-cs-fixer"
  7762. ],
  7763. "type": "application",
  7764. "autoload": {
  7765. "psr-4": {
  7766. "PhpCsFixer\\": "src/"
  7767. },
  7768. "exclude-from-classmap": [
  7769. "src/Fixer/Internal/*"
  7770. ]
  7771. },
  7772. "notification-url": "https://packagist.org/downloads/",
  7773. "license": [
  7774. "MIT"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "Fabien Potencier",
  7779. "email": "fabien@symfony.com"
  7780. },
  7781. {
  7782. "name": "Dariusz Rumiński",
  7783. "email": "dariusz.ruminski@gmail.com"
  7784. }
  7785. ],
  7786. "description": "A tool to automatically fix PHP code style",
  7787. "keywords": [
  7788. "Static code analysis",
  7789. "fixer",
  7790. "standards",
  7791. "static analysis"
  7792. ],
  7793. "support": {
  7794. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7795. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.66.1"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://github.com/keradus",
  7800. "type": "github"
  7801. }
  7802. ],
  7803. "time": "2025-01-05T14:43:25+00:00"
  7804. },
  7805. {
  7806. "name": "hamcrest/hamcrest-php",
  7807. "version": "v2.0.1",
  7808. "source": {
  7809. "type": "git",
  7810. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7811. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7812. },
  7813. "dist": {
  7814. "type": "zip",
  7815. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7816. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7817. "shasum": ""
  7818. },
  7819. "require": {
  7820. "php": "^5.3|^7.0|^8.0"
  7821. },
  7822. "replace": {
  7823. "cordoval/hamcrest-php": "*",
  7824. "davedevelopment/hamcrest-php": "*",
  7825. "kodova/hamcrest-php": "*"
  7826. },
  7827. "require-dev": {
  7828. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7829. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7830. },
  7831. "type": "library",
  7832. "extra": {
  7833. "branch-alias": {
  7834. "dev-master": "2.1-dev"
  7835. }
  7836. },
  7837. "autoload": {
  7838. "classmap": [
  7839. "hamcrest"
  7840. ]
  7841. },
  7842. "notification-url": "https://packagist.org/downloads/",
  7843. "license": [
  7844. "BSD-3-Clause"
  7845. ],
  7846. "description": "This is the PHP port of Hamcrest Matchers",
  7847. "keywords": [
  7848. "test"
  7849. ],
  7850. "support": {
  7851. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7852. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7853. },
  7854. "time": "2020-07-09T08:09:16+00:00"
  7855. },
  7856. {
  7857. "name": "hyperf/devtool",
  7858. "version": "v3.1.42",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/hyperf/devtool.git",
  7862. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7867. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "hyperf/code-parser": "~3.1.0",
  7872. "hyperf/command": "~3.1.0",
  7873. "hyperf/contract": "~3.1.0",
  7874. "hyperf/di": "~3.1.0",
  7875. "hyperf/support": "~3.1.0",
  7876. "hyperf/utils": "~3.1.0",
  7877. "php": ">=8.1"
  7878. },
  7879. "type": "library",
  7880. "extra": {
  7881. "hyperf": {
  7882. "config": "Hyperf\\Devtool\\ConfigProvider"
  7883. },
  7884. "branch-alias": {
  7885. "dev-master": "3.1-dev"
  7886. }
  7887. },
  7888. "autoload": {
  7889. "psr-4": {
  7890. "Hyperf\\Devtool\\": "src/"
  7891. }
  7892. },
  7893. "notification-url": "https://packagist.org/downloads/",
  7894. "license": [
  7895. "MIT"
  7896. ],
  7897. "description": "A Devtool for Hyperf.",
  7898. "homepage": "https://hyperf.io",
  7899. "keywords": [
  7900. "dev",
  7901. "devtool",
  7902. "hyperf",
  7903. "php",
  7904. "swoole"
  7905. ],
  7906. "support": {
  7907. "docs": "https://hyperf.wiki",
  7908. "issues": "https://github.com/hyperf/hyperf/issues",
  7909. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7910. "source": "https://github.com/hyperf/hyperf"
  7911. },
  7912. "funding": [
  7913. {
  7914. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7915. "type": "custom"
  7916. },
  7917. {
  7918. "url": "https://opencollective.com/hyperf",
  7919. "type": "open_collective"
  7920. }
  7921. ],
  7922. "time": "2024-09-25T02:54:12+00:00"
  7923. },
  7924. {
  7925. "name": "hyperf/testing",
  7926. "version": "v3.1.48",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/hyperf/testing.git",
  7930. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  7935. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  7936. "shasum": ""
  7937. },
  7938. "require": {
  7939. "hyperf/codec": "~3.1.0",
  7940. "hyperf/collection": "~3.1.0",
  7941. "hyperf/contract": "~3.1.0",
  7942. "hyperf/coroutine": "~3.1.0",
  7943. "hyperf/http-message": "~3.1.0",
  7944. "hyperf/http-server": "~3.1.0",
  7945. "hyperf/support": "~3.1.0",
  7946. "hyperf/utils": "~3.1.0",
  7947. "php": ">=8.1",
  7948. "phpunit/phpunit": "^10.0",
  7949. "psr/container": "^1.0 || ^2.0",
  7950. "symfony/http-foundation": "^5.4 || ^6.0"
  7951. },
  7952. "suggest": {
  7953. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7954. },
  7955. "bin": [
  7956. "co-phpunit"
  7957. ],
  7958. "type": "library",
  7959. "extra": {
  7960. "branch-alias": {
  7961. "dev-master": "3.1-dev"
  7962. }
  7963. },
  7964. "autoload": {
  7965. "psr-4": {
  7966. "Hyperf\\Testing\\": "src/"
  7967. }
  7968. },
  7969. "notification-url": "https://packagist.org/downloads/",
  7970. "license": [
  7971. "MIT"
  7972. ],
  7973. "description": "Testing for hyperf",
  7974. "keywords": [
  7975. "dev",
  7976. "php",
  7977. "swoole",
  7978. "testing"
  7979. ],
  7980. "support": {
  7981. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7986. "type": "custom"
  7987. },
  7988. {
  7989. "url": "https://opencollective.com/hyperf",
  7990. "type": "open_collective"
  7991. }
  7992. ],
  7993. "time": "2024-12-12T02:12:29+00:00"
  7994. },
  7995. {
  7996. "name": "hyperf/watcher",
  7997. "version": "v3.1.43",
  7998. "source": {
  7999. "type": "git",
  8000. "url": "https://github.com/hyperf/watcher.git",
  8001. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8002. },
  8003. "dist": {
  8004. "type": "zip",
  8005. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8006. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8007. "shasum": ""
  8008. },
  8009. "require": {
  8010. "ext-posix": "*",
  8011. "hyperf/codec": "~3.1.0",
  8012. "hyperf/command": "~3.1.0",
  8013. "hyperf/di": "~3.1.0",
  8014. "hyperf/framework": "~3.1.0",
  8015. "hyperf/support": "~3.1.0",
  8016. "php": ">=8.1"
  8017. },
  8018. "type": "library",
  8019. "extra": {
  8020. "hyperf": {
  8021. "config": "Hyperf\\Watcher\\ConfigProvider"
  8022. },
  8023. "branch-alias": {
  8024. "dev-master": "3.1-dev"
  8025. }
  8026. },
  8027. "autoload": {
  8028. "files": [
  8029. "src/Functions.php"
  8030. ],
  8031. "psr-4": {
  8032. "Hyperf\\Watcher\\": "src/"
  8033. }
  8034. },
  8035. "notification-url": "https://packagist.org/downloads/",
  8036. "license": [
  8037. "MIT"
  8038. ],
  8039. "description": "Hot reload watcher for Hyperf",
  8040. "keywords": [
  8041. "dev",
  8042. "hyperf",
  8043. "php"
  8044. ],
  8045. "support": {
  8046. "issues": "https://github.com/hyperf/watcher/issues",
  8047. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8048. },
  8049. "funding": [
  8050. {
  8051. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8052. "type": "custom"
  8053. },
  8054. {
  8055. "url": "https://opencollective.com/hyperf",
  8056. "type": "open_collective"
  8057. }
  8058. ],
  8059. "time": "2024-10-06T12:33:12+00:00"
  8060. },
  8061. {
  8062. "name": "mockery/mockery",
  8063. "version": "1.6.12",
  8064. "source": {
  8065. "type": "git",
  8066. "url": "https://github.com/mockery/mockery.git",
  8067. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8068. },
  8069. "dist": {
  8070. "type": "zip",
  8071. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8072. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8073. "shasum": ""
  8074. },
  8075. "require": {
  8076. "hamcrest/hamcrest-php": "^2.0.1",
  8077. "lib-pcre": ">=7.0",
  8078. "php": ">=7.3"
  8079. },
  8080. "conflict": {
  8081. "phpunit/phpunit": "<8.0"
  8082. },
  8083. "require-dev": {
  8084. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8085. "symplify/easy-coding-standard": "^12.1.14"
  8086. },
  8087. "type": "library",
  8088. "autoload": {
  8089. "files": [
  8090. "library/helpers.php",
  8091. "library/Mockery.php"
  8092. ],
  8093. "psr-4": {
  8094. "Mockery\\": "library/Mockery"
  8095. }
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "BSD-3-Clause"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Pádraic Brady",
  8104. "email": "padraic.brady@gmail.com",
  8105. "homepage": "https://github.com/padraic",
  8106. "role": "Author"
  8107. },
  8108. {
  8109. "name": "Dave Marshall",
  8110. "email": "dave.marshall@atstsolutions.co.uk",
  8111. "homepage": "https://davedevelopment.co.uk",
  8112. "role": "Developer"
  8113. },
  8114. {
  8115. "name": "Nathanael Esayeas",
  8116. "email": "nathanael.esayeas@protonmail.com",
  8117. "homepage": "https://github.com/ghostwriter",
  8118. "role": "Lead Developer"
  8119. }
  8120. ],
  8121. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8122. "homepage": "https://github.com/mockery/mockery",
  8123. "keywords": [
  8124. "BDD",
  8125. "TDD",
  8126. "library",
  8127. "mock",
  8128. "mock objects",
  8129. "mockery",
  8130. "stub",
  8131. "test",
  8132. "test double",
  8133. "testing"
  8134. ],
  8135. "support": {
  8136. "docs": "https://docs.mockery.io/",
  8137. "issues": "https://github.com/mockery/mockery/issues",
  8138. "rss": "https://github.com/mockery/mockery/releases.atom",
  8139. "security": "https://github.com/mockery/mockery/security/advisories",
  8140. "source": "https://github.com/mockery/mockery"
  8141. },
  8142. "time": "2024-05-16T03:13:13+00:00"
  8143. },
  8144. {
  8145. "name": "myclabs/deep-copy",
  8146. "version": "1.12.1",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/myclabs/DeepCopy.git",
  8150. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8155. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8156. "shasum": ""
  8157. },
  8158. "require": {
  8159. "php": "^7.1 || ^8.0"
  8160. },
  8161. "conflict": {
  8162. "doctrine/collections": "<1.6.8",
  8163. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8164. },
  8165. "require-dev": {
  8166. "doctrine/collections": "^1.6.8",
  8167. "doctrine/common": "^2.13.3 || ^3.2.2",
  8168. "phpspec/prophecy": "^1.10",
  8169. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8170. },
  8171. "type": "library",
  8172. "autoload": {
  8173. "files": [
  8174. "src/DeepCopy/deep_copy.php"
  8175. ],
  8176. "psr-4": {
  8177. "DeepCopy\\": "src/DeepCopy/"
  8178. }
  8179. },
  8180. "notification-url": "https://packagist.org/downloads/",
  8181. "license": [
  8182. "MIT"
  8183. ],
  8184. "description": "Create deep copies (clones) of your objects",
  8185. "keywords": [
  8186. "clone",
  8187. "copy",
  8188. "duplicate",
  8189. "object",
  8190. "object graph"
  8191. ],
  8192. "support": {
  8193. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8194. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8195. },
  8196. "funding": [
  8197. {
  8198. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8199. "type": "tidelift"
  8200. }
  8201. ],
  8202. "time": "2024-11-08T17:47:46+00:00"
  8203. },
  8204. {
  8205. "name": "phar-io/manifest",
  8206. "version": "2.0.4",
  8207. "source": {
  8208. "type": "git",
  8209. "url": "https://github.com/phar-io/manifest.git",
  8210. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8211. },
  8212. "dist": {
  8213. "type": "zip",
  8214. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8215. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8216. "shasum": ""
  8217. },
  8218. "require": {
  8219. "ext-dom": "*",
  8220. "ext-libxml": "*",
  8221. "ext-phar": "*",
  8222. "ext-xmlwriter": "*",
  8223. "phar-io/version": "^3.0.1",
  8224. "php": "^7.2 || ^8.0"
  8225. },
  8226. "type": "library",
  8227. "extra": {
  8228. "branch-alias": {
  8229. "dev-master": "2.0.x-dev"
  8230. }
  8231. },
  8232. "autoload": {
  8233. "classmap": [
  8234. "src/"
  8235. ]
  8236. },
  8237. "notification-url": "https://packagist.org/downloads/",
  8238. "license": [
  8239. "BSD-3-Clause"
  8240. ],
  8241. "authors": [
  8242. {
  8243. "name": "Arne Blankerts",
  8244. "email": "arne@blankerts.de",
  8245. "role": "Developer"
  8246. },
  8247. {
  8248. "name": "Sebastian Heuer",
  8249. "email": "sebastian@phpeople.de",
  8250. "role": "Developer"
  8251. },
  8252. {
  8253. "name": "Sebastian Bergmann",
  8254. "email": "sebastian@phpunit.de",
  8255. "role": "Developer"
  8256. }
  8257. ],
  8258. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8259. "support": {
  8260. "issues": "https://github.com/phar-io/manifest/issues",
  8261. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8262. },
  8263. "funding": [
  8264. {
  8265. "url": "https://github.com/theseer",
  8266. "type": "github"
  8267. }
  8268. ],
  8269. "time": "2024-03-03T12:33:53+00:00"
  8270. },
  8271. {
  8272. "name": "phar-io/version",
  8273. "version": "3.2.1",
  8274. "source": {
  8275. "type": "git",
  8276. "url": "https://github.com/phar-io/version.git",
  8277. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8278. },
  8279. "dist": {
  8280. "type": "zip",
  8281. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8282. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8283. "shasum": ""
  8284. },
  8285. "require": {
  8286. "php": "^7.2 || ^8.0"
  8287. },
  8288. "type": "library",
  8289. "autoload": {
  8290. "classmap": [
  8291. "src/"
  8292. ]
  8293. },
  8294. "notification-url": "https://packagist.org/downloads/",
  8295. "license": [
  8296. "BSD-3-Clause"
  8297. ],
  8298. "authors": [
  8299. {
  8300. "name": "Arne Blankerts",
  8301. "email": "arne@blankerts.de",
  8302. "role": "Developer"
  8303. },
  8304. {
  8305. "name": "Sebastian Heuer",
  8306. "email": "sebastian@phpeople.de",
  8307. "role": "Developer"
  8308. },
  8309. {
  8310. "name": "Sebastian Bergmann",
  8311. "email": "sebastian@phpunit.de",
  8312. "role": "Developer"
  8313. }
  8314. ],
  8315. "description": "Library for handling version information and constraints",
  8316. "support": {
  8317. "issues": "https://github.com/phar-io/version/issues",
  8318. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8319. },
  8320. "time": "2022-02-21T01:04:05+00:00"
  8321. },
  8322. {
  8323. "name": "phpstan/phpstan",
  8324. "version": "1.12.15",
  8325. "source": {
  8326. "type": "git",
  8327. "url": "https://github.com/phpstan/phpstan.git",
  8328. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1"
  8329. },
  8330. "dist": {
  8331. "type": "zip",
  8332. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c91d4e8bc056f46cf653656e6f71004b254574d1",
  8333. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1",
  8334. "shasum": ""
  8335. },
  8336. "require": {
  8337. "php": "^7.2|^8.0"
  8338. },
  8339. "conflict": {
  8340. "phpstan/phpstan-shim": "*"
  8341. },
  8342. "bin": [
  8343. "phpstan",
  8344. "phpstan.phar"
  8345. ],
  8346. "type": "library",
  8347. "autoload": {
  8348. "files": [
  8349. "bootstrap.php"
  8350. ]
  8351. },
  8352. "notification-url": "https://packagist.org/downloads/",
  8353. "license": [
  8354. "MIT"
  8355. ],
  8356. "description": "PHPStan - PHP Static Analysis Tool",
  8357. "keywords": [
  8358. "dev",
  8359. "static analysis"
  8360. ],
  8361. "support": {
  8362. "docs": "https://phpstan.org/user-guide/getting-started",
  8363. "forum": "https://github.com/phpstan/phpstan/discussions",
  8364. "issues": "https://github.com/phpstan/phpstan/issues",
  8365. "security": "https://github.com/phpstan/phpstan/security/policy",
  8366. "source": "https://github.com/phpstan/phpstan-src"
  8367. },
  8368. "funding": [
  8369. {
  8370. "url": "https://github.com/ondrejmirtes",
  8371. "type": "github"
  8372. },
  8373. {
  8374. "url": "https://github.com/phpstan",
  8375. "type": "github"
  8376. }
  8377. ],
  8378. "time": "2025-01-05T16:40:22+00:00"
  8379. },
  8380. {
  8381. "name": "phpunit/php-code-coverage",
  8382. "version": "10.1.16",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8386. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8391. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "ext-dom": "*",
  8396. "ext-libxml": "*",
  8397. "ext-xmlwriter": "*",
  8398. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8399. "php": ">=8.1",
  8400. "phpunit/php-file-iterator": "^4.1.0",
  8401. "phpunit/php-text-template": "^3.0.1",
  8402. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8403. "sebastian/complexity": "^3.2.0",
  8404. "sebastian/environment": "^6.1.0",
  8405. "sebastian/lines-of-code": "^2.0.2",
  8406. "sebastian/version": "^4.0.1",
  8407. "theseer/tokenizer": "^1.2.3"
  8408. },
  8409. "require-dev": {
  8410. "phpunit/phpunit": "^10.1"
  8411. },
  8412. "suggest": {
  8413. "ext-pcov": "PHP extension that provides line coverage",
  8414. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8415. },
  8416. "type": "library",
  8417. "extra": {
  8418. "branch-alias": {
  8419. "dev-main": "10.1.x-dev"
  8420. }
  8421. },
  8422. "autoload": {
  8423. "classmap": [
  8424. "src/"
  8425. ]
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "BSD-3-Clause"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Sebastian Bergmann",
  8434. "email": "sebastian@phpunit.de",
  8435. "role": "lead"
  8436. }
  8437. ],
  8438. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8439. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8440. "keywords": [
  8441. "coverage",
  8442. "testing",
  8443. "xunit"
  8444. ],
  8445. "support": {
  8446. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8447. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8448. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8449. },
  8450. "funding": [
  8451. {
  8452. "url": "https://github.com/sebastianbergmann",
  8453. "type": "github"
  8454. }
  8455. ],
  8456. "time": "2024-08-22T04:31:57+00:00"
  8457. },
  8458. {
  8459. "name": "phpunit/php-file-iterator",
  8460. "version": "4.1.0",
  8461. "source": {
  8462. "type": "git",
  8463. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8464. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8465. },
  8466. "dist": {
  8467. "type": "zip",
  8468. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8469. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8470. "shasum": ""
  8471. },
  8472. "require": {
  8473. "php": ">=8.1"
  8474. },
  8475. "require-dev": {
  8476. "phpunit/phpunit": "^10.0"
  8477. },
  8478. "type": "library",
  8479. "extra": {
  8480. "branch-alias": {
  8481. "dev-main": "4.0-dev"
  8482. }
  8483. },
  8484. "autoload": {
  8485. "classmap": [
  8486. "src/"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "BSD-3-Clause"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Sebastian Bergmann",
  8496. "email": "sebastian@phpunit.de",
  8497. "role": "lead"
  8498. }
  8499. ],
  8500. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8501. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8502. "keywords": [
  8503. "filesystem",
  8504. "iterator"
  8505. ],
  8506. "support": {
  8507. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8508. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8509. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8510. },
  8511. "funding": [
  8512. {
  8513. "url": "https://github.com/sebastianbergmann",
  8514. "type": "github"
  8515. }
  8516. ],
  8517. "time": "2023-08-31T06:24:48+00:00"
  8518. },
  8519. {
  8520. "name": "phpunit/php-invoker",
  8521. "version": "4.0.0",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8525. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8530. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8531. "shasum": ""
  8532. },
  8533. "require": {
  8534. "php": ">=8.1"
  8535. },
  8536. "require-dev": {
  8537. "ext-pcntl": "*",
  8538. "phpunit/phpunit": "^10.0"
  8539. },
  8540. "suggest": {
  8541. "ext-pcntl": "*"
  8542. },
  8543. "type": "library",
  8544. "extra": {
  8545. "branch-alias": {
  8546. "dev-main": "4.0-dev"
  8547. }
  8548. },
  8549. "autoload": {
  8550. "classmap": [
  8551. "src/"
  8552. ]
  8553. },
  8554. "notification-url": "https://packagist.org/downloads/",
  8555. "license": [
  8556. "BSD-3-Clause"
  8557. ],
  8558. "authors": [
  8559. {
  8560. "name": "Sebastian Bergmann",
  8561. "email": "sebastian@phpunit.de",
  8562. "role": "lead"
  8563. }
  8564. ],
  8565. "description": "Invoke callables with a timeout",
  8566. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8567. "keywords": [
  8568. "process"
  8569. ],
  8570. "support": {
  8571. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8572. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8573. },
  8574. "funding": [
  8575. {
  8576. "url": "https://github.com/sebastianbergmann",
  8577. "type": "github"
  8578. }
  8579. ],
  8580. "time": "2023-02-03T06:56:09+00:00"
  8581. },
  8582. {
  8583. "name": "phpunit/php-text-template",
  8584. "version": "3.0.1",
  8585. "source": {
  8586. "type": "git",
  8587. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8588. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8589. },
  8590. "dist": {
  8591. "type": "zip",
  8592. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8593. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8594. "shasum": ""
  8595. },
  8596. "require": {
  8597. "php": ">=8.1"
  8598. },
  8599. "require-dev": {
  8600. "phpunit/phpunit": "^10.0"
  8601. },
  8602. "type": "library",
  8603. "extra": {
  8604. "branch-alias": {
  8605. "dev-main": "3.0-dev"
  8606. }
  8607. },
  8608. "autoload": {
  8609. "classmap": [
  8610. "src/"
  8611. ]
  8612. },
  8613. "notification-url": "https://packagist.org/downloads/",
  8614. "license": [
  8615. "BSD-3-Clause"
  8616. ],
  8617. "authors": [
  8618. {
  8619. "name": "Sebastian Bergmann",
  8620. "email": "sebastian@phpunit.de",
  8621. "role": "lead"
  8622. }
  8623. ],
  8624. "description": "Simple template engine.",
  8625. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8626. "keywords": [
  8627. "template"
  8628. ],
  8629. "support": {
  8630. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8631. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8632. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8633. },
  8634. "funding": [
  8635. {
  8636. "url": "https://github.com/sebastianbergmann",
  8637. "type": "github"
  8638. }
  8639. ],
  8640. "time": "2023-08-31T14:07:24+00:00"
  8641. },
  8642. {
  8643. "name": "phpunit/php-timer",
  8644. "version": "6.0.0",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8648. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8653. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "php": ">=8.1"
  8658. },
  8659. "require-dev": {
  8660. "phpunit/phpunit": "^10.0"
  8661. },
  8662. "type": "library",
  8663. "extra": {
  8664. "branch-alias": {
  8665. "dev-main": "6.0-dev"
  8666. }
  8667. },
  8668. "autoload": {
  8669. "classmap": [
  8670. "src/"
  8671. ]
  8672. },
  8673. "notification-url": "https://packagist.org/downloads/",
  8674. "license": [
  8675. "BSD-3-Clause"
  8676. ],
  8677. "authors": [
  8678. {
  8679. "name": "Sebastian Bergmann",
  8680. "email": "sebastian@phpunit.de",
  8681. "role": "lead"
  8682. }
  8683. ],
  8684. "description": "Utility class for timing",
  8685. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8686. "keywords": [
  8687. "timer"
  8688. ],
  8689. "support": {
  8690. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8691. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8692. },
  8693. "funding": [
  8694. {
  8695. "url": "https://github.com/sebastianbergmann",
  8696. "type": "github"
  8697. }
  8698. ],
  8699. "time": "2023-02-03T06:57:52+00:00"
  8700. },
  8701. {
  8702. "name": "phpunit/phpunit",
  8703. "version": "10.5.40",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8707. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  8712. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "ext-dom": "*",
  8717. "ext-json": "*",
  8718. "ext-libxml": "*",
  8719. "ext-mbstring": "*",
  8720. "ext-xml": "*",
  8721. "ext-xmlwriter": "*",
  8722. "myclabs/deep-copy": "^1.12.1",
  8723. "phar-io/manifest": "^2.0.4",
  8724. "phar-io/version": "^3.2.1",
  8725. "php": ">=8.1",
  8726. "phpunit/php-code-coverage": "^10.1.16",
  8727. "phpunit/php-file-iterator": "^4.1.0",
  8728. "phpunit/php-invoker": "^4.0.0",
  8729. "phpunit/php-text-template": "^3.0.1",
  8730. "phpunit/php-timer": "^6.0.0",
  8731. "sebastian/cli-parser": "^2.0.1",
  8732. "sebastian/code-unit": "^2.0.0",
  8733. "sebastian/comparator": "^5.0.3",
  8734. "sebastian/diff": "^5.1.1",
  8735. "sebastian/environment": "^6.1.0",
  8736. "sebastian/exporter": "^5.1.2",
  8737. "sebastian/global-state": "^6.0.2",
  8738. "sebastian/object-enumerator": "^5.0.0",
  8739. "sebastian/recursion-context": "^5.0.0",
  8740. "sebastian/type": "^4.0.0",
  8741. "sebastian/version": "^4.0.1"
  8742. },
  8743. "suggest": {
  8744. "ext-soap": "To be able to generate mocks based on WSDL files"
  8745. },
  8746. "bin": [
  8747. "phpunit"
  8748. ],
  8749. "type": "library",
  8750. "extra": {
  8751. "branch-alias": {
  8752. "dev-main": "10.5-dev"
  8753. }
  8754. },
  8755. "autoload": {
  8756. "files": [
  8757. "src/Framework/Assert/Functions.php"
  8758. ],
  8759. "classmap": [
  8760. "src/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "BSD-3-Clause"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Sebastian Bergmann",
  8770. "email": "sebastian@phpunit.de",
  8771. "role": "lead"
  8772. }
  8773. ],
  8774. "description": "The PHP Unit Testing framework.",
  8775. "homepage": "https://phpunit.de/",
  8776. "keywords": [
  8777. "phpunit",
  8778. "testing",
  8779. "xunit"
  8780. ],
  8781. "support": {
  8782. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8783. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8784. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.40"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://phpunit.de/sponsors.html",
  8789. "type": "custom"
  8790. },
  8791. {
  8792. "url": "https://github.com/sebastianbergmann",
  8793. "type": "github"
  8794. },
  8795. {
  8796. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8797. "type": "tidelift"
  8798. }
  8799. ],
  8800. "time": "2024-12-21T05:49:06+00:00"
  8801. },
  8802. {
  8803. "name": "react/cache",
  8804. "version": "v1.2.0",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/reactphp/cache.git",
  8808. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8813. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8814. "shasum": ""
  8815. },
  8816. "require": {
  8817. "php": ">=5.3.0",
  8818. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8819. },
  8820. "require-dev": {
  8821. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8822. },
  8823. "type": "library",
  8824. "autoload": {
  8825. "psr-4": {
  8826. "React\\Cache\\": "src/"
  8827. }
  8828. },
  8829. "notification-url": "https://packagist.org/downloads/",
  8830. "license": [
  8831. "MIT"
  8832. ],
  8833. "authors": [
  8834. {
  8835. "name": "Christian Lück",
  8836. "email": "christian@clue.engineering",
  8837. "homepage": "https://clue.engineering/"
  8838. },
  8839. {
  8840. "name": "Cees-Jan Kiewiet",
  8841. "email": "reactphp@ceesjankiewiet.nl",
  8842. "homepage": "https://wyrihaximus.net/"
  8843. },
  8844. {
  8845. "name": "Jan Sorgalla",
  8846. "email": "jsorgalla@gmail.com",
  8847. "homepage": "https://sorgalla.com/"
  8848. },
  8849. {
  8850. "name": "Chris Boden",
  8851. "email": "cboden@gmail.com",
  8852. "homepage": "https://cboden.dev/"
  8853. }
  8854. ],
  8855. "description": "Async, Promise-based cache interface for ReactPHP",
  8856. "keywords": [
  8857. "cache",
  8858. "caching",
  8859. "promise",
  8860. "reactphp"
  8861. ],
  8862. "support": {
  8863. "issues": "https://github.com/reactphp/cache/issues",
  8864. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8865. },
  8866. "funding": [
  8867. {
  8868. "url": "https://opencollective.com/reactphp",
  8869. "type": "open_collective"
  8870. }
  8871. ],
  8872. "time": "2022-11-30T15:59:55+00:00"
  8873. },
  8874. {
  8875. "name": "react/child-process",
  8876. "version": "v0.6.6",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/reactphp/child-process.git",
  8880. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8885. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8890. "php": ">=5.3.0",
  8891. "react/event-loop": "^1.2",
  8892. "react/stream": "^1.4"
  8893. },
  8894. "require-dev": {
  8895. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8896. "react/socket": "^1.16",
  8897. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8898. },
  8899. "type": "library",
  8900. "autoload": {
  8901. "psr-4": {
  8902. "React\\ChildProcess\\": "src/"
  8903. }
  8904. },
  8905. "notification-url": "https://packagist.org/downloads/",
  8906. "license": [
  8907. "MIT"
  8908. ],
  8909. "authors": [
  8910. {
  8911. "name": "Christian Lück",
  8912. "email": "christian@clue.engineering",
  8913. "homepage": "https://clue.engineering/"
  8914. },
  8915. {
  8916. "name": "Cees-Jan Kiewiet",
  8917. "email": "reactphp@ceesjankiewiet.nl",
  8918. "homepage": "https://wyrihaximus.net/"
  8919. },
  8920. {
  8921. "name": "Jan Sorgalla",
  8922. "email": "jsorgalla@gmail.com",
  8923. "homepage": "https://sorgalla.com/"
  8924. },
  8925. {
  8926. "name": "Chris Boden",
  8927. "email": "cboden@gmail.com",
  8928. "homepage": "https://cboden.dev/"
  8929. }
  8930. ],
  8931. "description": "Event-driven library for executing child processes with ReactPHP.",
  8932. "keywords": [
  8933. "event-driven",
  8934. "process",
  8935. "reactphp"
  8936. ],
  8937. "support": {
  8938. "issues": "https://github.com/reactphp/child-process/issues",
  8939. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  8940. },
  8941. "funding": [
  8942. {
  8943. "url": "https://opencollective.com/reactphp",
  8944. "type": "open_collective"
  8945. }
  8946. ],
  8947. "time": "2025-01-01T16:37:48+00:00"
  8948. },
  8949. {
  8950. "name": "react/dns",
  8951. "version": "v1.13.0",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/reactphp/dns.git",
  8955. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8960. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "php": ">=5.3.0",
  8965. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8966. "react/event-loop": "^1.2",
  8967. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8968. },
  8969. "require-dev": {
  8970. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8971. "react/async": "^4.3 || ^3 || ^2",
  8972. "react/promise-timer": "^1.11"
  8973. },
  8974. "type": "library",
  8975. "autoload": {
  8976. "psr-4": {
  8977. "React\\Dns\\": "src/"
  8978. }
  8979. },
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "MIT"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Christian Lück",
  8987. "email": "christian@clue.engineering",
  8988. "homepage": "https://clue.engineering/"
  8989. },
  8990. {
  8991. "name": "Cees-Jan Kiewiet",
  8992. "email": "reactphp@ceesjankiewiet.nl",
  8993. "homepage": "https://wyrihaximus.net/"
  8994. },
  8995. {
  8996. "name": "Jan Sorgalla",
  8997. "email": "jsorgalla@gmail.com",
  8998. "homepage": "https://sorgalla.com/"
  8999. },
  9000. {
  9001. "name": "Chris Boden",
  9002. "email": "cboden@gmail.com",
  9003. "homepage": "https://cboden.dev/"
  9004. }
  9005. ],
  9006. "description": "Async DNS resolver for ReactPHP",
  9007. "keywords": [
  9008. "async",
  9009. "dns",
  9010. "dns-resolver",
  9011. "reactphp"
  9012. ],
  9013. "support": {
  9014. "issues": "https://github.com/reactphp/dns/issues",
  9015. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9016. },
  9017. "funding": [
  9018. {
  9019. "url": "https://opencollective.com/reactphp",
  9020. "type": "open_collective"
  9021. }
  9022. ],
  9023. "time": "2024-06-13T14:18:03+00:00"
  9024. },
  9025. {
  9026. "name": "react/event-loop",
  9027. "version": "v1.5.0",
  9028. "source": {
  9029. "type": "git",
  9030. "url": "https://github.com/reactphp/event-loop.git",
  9031. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9032. },
  9033. "dist": {
  9034. "type": "zip",
  9035. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9036. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9037. "shasum": ""
  9038. },
  9039. "require": {
  9040. "php": ">=5.3.0"
  9041. },
  9042. "require-dev": {
  9043. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9044. },
  9045. "suggest": {
  9046. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9047. },
  9048. "type": "library",
  9049. "autoload": {
  9050. "psr-4": {
  9051. "React\\EventLoop\\": "src/"
  9052. }
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "MIT"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Christian Lück",
  9061. "email": "christian@clue.engineering",
  9062. "homepage": "https://clue.engineering/"
  9063. },
  9064. {
  9065. "name": "Cees-Jan Kiewiet",
  9066. "email": "reactphp@ceesjankiewiet.nl",
  9067. "homepage": "https://wyrihaximus.net/"
  9068. },
  9069. {
  9070. "name": "Jan Sorgalla",
  9071. "email": "jsorgalla@gmail.com",
  9072. "homepage": "https://sorgalla.com/"
  9073. },
  9074. {
  9075. "name": "Chris Boden",
  9076. "email": "cboden@gmail.com",
  9077. "homepage": "https://cboden.dev/"
  9078. }
  9079. ],
  9080. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9081. "keywords": [
  9082. "asynchronous",
  9083. "event-loop"
  9084. ],
  9085. "support": {
  9086. "issues": "https://github.com/reactphp/event-loop/issues",
  9087. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9088. },
  9089. "funding": [
  9090. {
  9091. "url": "https://opencollective.com/reactphp",
  9092. "type": "open_collective"
  9093. }
  9094. ],
  9095. "time": "2023-11-13T13:48:05+00:00"
  9096. },
  9097. {
  9098. "name": "react/socket",
  9099. "version": "v1.16.0",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/reactphp/socket.git",
  9103. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9108. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9113. "php": ">=5.3.0",
  9114. "react/dns": "^1.13",
  9115. "react/event-loop": "^1.2",
  9116. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9117. "react/stream": "^1.4"
  9118. },
  9119. "require-dev": {
  9120. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9121. "react/async": "^4.3 || ^3.3 || ^2",
  9122. "react/promise-stream": "^1.4",
  9123. "react/promise-timer": "^1.11"
  9124. },
  9125. "type": "library",
  9126. "autoload": {
  9127. "psr-4": {
  9128. "React\\Socket\\": "src/"
  9129. }
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "MIT"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Christian Lück",
  9138. "email": "christian@clue.engineering",
  9139. "homepage": "https://clue.engineering/"
  9140. },
  9141. {
  9142. "name": "Cees-Jan Kiewiet",
  9143. "email": "reactphp@ceesjankiewiet.nl",
  9144. "homepage": "https://wyrihaximus.net/"
  9145. },
  9146. {
  9147. "name": "Jan Sorgalla",
  9148. "email": "jsorgalla@gmail.com",
  9149. "homepage": "https://sorgalla.com/"
  9150. },
  9151. {
  9152. "name": "Chris Boden",
  9153. "email": "cboden@gmail.com",
  9154. "homepage": "https://cboden.dev/"
  9155. }
  9156. ],
  9157. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9158. "keywords": [
  9159. "Connection",
  9160. "Socket",
  9161. "async",
  9162. "reactphp",
  9163. "stream"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/reactphp/socket/issues",
  9167. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9168. },
  9169. "funding": [
  9170. {
  9171. "url": "https://opencollective.com/reactphp",
  9172. "type": "open_collective"
  9173. }
  9174. ],
  9175. "time": "2024-07-26T10:38:09+00:00"
  9176. },
  9177. {
  9178. "name": "react/stream",
  9179. "version": "v1.4.0",
  9180. "source": {
  9181. "type": "git",
  9182. "url": "https://github.com/reactphp/stream.git",
  9183. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9184. },
  9185. "dist": {
  9186. "type": "zip",
  9187. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9188. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9189. "shasum": ""
  9190. },
  9191. "require": {
  9192. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9193. "php": ">=5.3.8",
  9194. "react/event-loop": "^1.2"
  9195. },
  9196. "require-dev": {
  9197. "clue/stream-filter": "~1.2",
  9198. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9199. },
  9200. "type": "library",
  9201. "autoload": {
  9202. "psr-4": {
  9203. "React\\Stream\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Christian Lück",
  9213. "email": "christian@clue.engineering",
  9214. "homepage": "https://clue.engineering/"
  9215. },
  9216. {
  9217. "name": "Cees-Jan Kiewiet",
  9218. "email": "reactphp@ceesjankiewiet.nl",
  9219. "homepage": "https://wyrihaximus.net/"
  9220. },
  9221. {
  9222. "name": "Jan Sorgalla",
  9223. "email": "jsorgalla@gmail.com",
  9224. "homepage": "https://sorgalla.com/"
  9225. },
  9226. {
  9227. "name": "Chris Boden",
  9228. "email": "cboden@gmail.com",
  9229. "homepage": "https://cboden.dev/"
  9230. }
  9231. ],
  9232. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9233. "keywords": [
  9234. "event-driven",
  9235. "io",
  9236. "non-blocking",
  9237. "pipe",
  9238. "reactphp",
  9239. "readable",
  9240. "stream",
  9241. "writable"
  9242. ],
  9243. "support": {
  9244. "issues": "https://github.com/reactphp/stream/issues",
  9245. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9246. },
  9247. "funding": [
  9248. {
  9249. "url": "https://opencollective.com/reactphp",
  9250. "type": "open_collective"
  9251. }
  9252. ],
  9253. "time": "2024-06-11T12:45:25+00:00"
  9254. },
  9255. {
  9256. "name": "sebastian/cli-parser",
  9257. "version": "2.0.1",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9261. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9266. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "php": ">=8.1"
  9271. },
  9272. "require-dev": {
  9273. "phpunit/phpunit": "^10.0"
  9274. },
  9275. "type": "library",
  9276. "extra": {
  9277. "branch-alias": {
  9278. "dev-main": "2.0-dev"
  9279. }
  9280. },
  9281. "autoload": {
  9282. "classmap": [
  9283. "src/"
  9284. ]
  9285. },
  9286. "notification-url": "https://packagist.org/downloads/",
  9287. "license": [
  9288. "BSD-3-Clause"
  9289. ],
  9290. "authors": [
  9291. {
  9292. "name": "Sebastian Bergmann",
  9293. "email": "sebastian@phpunit.de",
  9294. "role": "lead"
  9295. }
  9296. ],
  9297. "description": "Library for parsing CLI options",
  9298. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9299. "support": {
  9300. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9301. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9302. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9303. },
  9304. "funding": [
  9305. {
  9306. "url": "https://github.com/sebastianbergmann",
  9307. "type": "github"
  9308. }
  9309. ],
  9310. "time": "2024-03-02T07:12:49+00:00"
  9311. },
  9312. {
  9313. "name": "sebastian/code-unit",
  9314. "version": "2.0.0",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9318. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9323. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9324. "shasum": ""
  9325. },
  9326. "require": {
  9327. "php": ">=8.1"
  9328. },
  9329. "require-dev": {
  9330. "phpunit/phpunit": "^10.0"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-main": "2.0-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "classmap": [
  9340. "src/"
  9341. ]
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Sebastian Bergmann",
  9350. "email": "sebastian@phpunit.de",
  9351. "role": "lead"
  9352. }
  9353. ],
  9354. "description": "Collection of value objects that represent the PHP code units",
  9355. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9356. "support": {
  9357. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9358. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9359. },
  9360. "funding": [
  9361. {
  9362. "url": "https://github.com/sebastianbergmann",
  9363. "type": "github"
  9364. }
  9365. ],
  9366. "time": "2023-02-03T06:58:43+00:00"
  9367. },
  9368. {
  9369. "name": "sebastian/code-unit-reverse-lookup",
  9370. "version": "3.0.0",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9374. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9379. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "php": ">=8.1"
  9384. },
  9385. "require-dev": {
  9386. "phpunit/phpunit": "^10.0"
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-main": "3.0-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "classmap": [
  9396. "src/"
  9397. ]
  9398. },
  9399. "notification-url": "https://packagist.org/downloads/",
  9400. "license": [
  9401. "BSD-3-Clause"
  9402. ],
  9403. "authors": [
  9404. {
  9405. "name": "Sebastian Bergmann",
  9406. "email": "sebastian@phpunit.de"
  9407. }
  9408. ],
  9409. "description": "Looks up which function or method a line of code belongs to",
  9410. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9411. "support": {
  9412. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9413. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9414. },
  9415. "funding": [
  9416. {
  9417. "url": "https://github.com/sebastianbergmann",
  9418. "type": "github"
  9419. }
  9420. ],
  9421. "time": "2023-02-03T06:59:15+00:00"
  9422. },
  9423. {
  9424. "name": "sebastian/comparator",
  9425. "version": "5.0.3",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/sebastianbergmann/comparator.git",
  9429. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9434. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "ext-dom": "*",
  9439. "ext-mbstring": "*",
  9440. "php": ">=8.1",
  9441. "sebastian/diff": "^5.0",
  9442. "sebastian/exporter": "^5.0"
  9443. },
  9444. "require-dev": {
  9445. "phpunit/phpunit": "^10.5"
  9446. },
  9447. "type": "library",
  9448. "extra": {
  9449. "branch-alias": {
  9450. "dev-main": "5.0-dev"
  9451. }
  9452. },
  9453. "autoload": {
  9454. "classmap": [
  9455. "src/"
  9456. ]
  9457. },
  9458. "notification-url": "https://packagist.org/downloads/",
  9459. "license": [
  9460. "BSD-3-Clause"
  9461. ],
  9462. "authors": [
  9463. {
  9464. "name": "Sebastian Bergmann",
  9465. "email": "sebastian@phpunit.de"
  9466. },
  9467. {
  9468. "name": "Jeff Welch",
  9469. "email": "whatthejeff@gmail.com"
  9470. },
  9471. {
  9472. "name": "Volker Dusch",
  9473. "email": "github@wallbash.com"
  9474. },
  9475. {
  9476. "name": "Bernhard Schussek",
  9477. "email": "bschussek@2bepublished.at"
  9478. }
  9479. ],
  9480. "description": "Provides the functionality to compare PHP values for equality",
  9481. "homepage": "https://github.com/sebastianbergmann/comparator",
  9482. "keywords": [
  9483. "comparator",
  9484. "compare",
  9485. "equality"
  9486. ],
  9487. "support": {
  9488. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9489. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9490. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9491. },
  9492. "funding": [
  9493. {
  9494. "url": "https://github.com/sebastianbergmann",
  9495. "type": "github"
  9496. }
  9497. ],
  9498. "time": "2024-10-18T14:56:07+00:00"
  9499. },
  9500. {
  9501. "name": "sebastian/complexity",
  9502. "version": "3.2.0",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/sebastianbergmann/complexity.git",
  9506. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9511. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "nikic/php-parser": "^4.18 || ^5.0",
  9516. "php": ">=8.1"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "^10.0"
  9520. },
  9521. "type": "library",
  9522. "extra": {
  9523. "branch-alias": {
  9524. "dev-main": "3.2-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "classmap": [
  9529. "src/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "BSD-3-Clause"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Sebastian Bergmann",
  9539. "email": "sebastian@phpunit.de",
  9540. "role": "lead"
  9541. }
  9542. ],
  9543. "description": "Library for calculating the complexity of PHP code units",
  9544. "homepage": "https://github.com/sebastianbergmann/complexity",
  9545. "support": {
  9546. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9547. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9548. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9549. },
  9550. "funding": [
  9551. {
  9552. "url": "https://github.com/sebastianbergmann",
  9553. "type": "github"
  9554. }
  9555. ],
  9556. "time": "2023-12-21T08:37:17+00:00"
  9557. },
  9558. {
  9559. "name": "sebastian/diff",
  9560. "version": "5.1.1",
  9561. "source": {
  9562. "type": "git",
  9563. "url": "https://github.com/sebastianbergmann/diff.git",
  9564. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9565. },
  9566. "dist": {
  9567. "type": "zip",
  9568. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9569. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9570. "shasum": ""
  9571. },
  9572. "require": {
  9573. "php": ">=8.1"
  9574. },
  9575. "require-dev": {
  9576. "phpunit/phpunit": "^10.0",
  9577. "symfony/process": "^6.4"
  9578. },
  9579. "type": "library",
  9580. "extra": {
  9581. "branch-alias": {
  9582. "dev-main": "5.1-dev"
  9583. }
  9584. },
  9585. "autoload": {
  9586. "classmap": [
  9587. "src/"
  9588. ]
  9589. },
  9590. "notification-url": "https://packagist.org/downloads/",
  9591. "license": [
  9592. "BSD-3-Clause"
  9593. ],
  9594. "authors": [
  9595. {
  9596. "name": "Sebastian Bergmann",
  9597. "email": "sebastian@phpunit.de"
  9598. },
  9599. {
  9600. "name": "Kore Nordmann",
  9601. "email": "mail@kore-nordmann.de"
  9602. }
  9603. ],
  9604. "description": "Diff implementation",
  9605. "homepage": "https://github.com/sebastianbergmann/diff",
  9606. "keywords": [
  9607. "diff",
  9608. "udiff",
  9609. "unidiff",
  9610. "unified diff"
  9611. ],
  9612. "support": {
  9613. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9614. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9615. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9616. },
  9617. "funding": [
  9618. {
  9619. "url": "https://github.com/sebastianbergmann",
  9620. "type": "github"
  9621. }
  9622. ],
  9623. "time": "2024-03-02T07:15:17+00:00"
  9624. },
  9625. {
  9626. "name": "sebastian/environment",
  9627. "version": "6.1.0",
  9628. "source": {
  9629. "type": "git",
  9630. "url": "https://github.com/sebastianbergmann/environment.git",
  9631. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9632. },
  9633. "dist": {
  9634. "type": "zip",
  9635. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9636. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9637. "shasum": ""
  9638. },
  9639. "require": {
  9640. "php": ">=8.1"
  9641. },
  9642. "require-dev": {
  9643. "phpunit/phpunit": "^10.0"
  9644. },
  9645. "suggest": {
  9646. "ext-posix": "*"
  9647. },
  9648. "type": "library",
  9649. "extra": {
  9650. "branch-alias": {
  9651. "dev-main": "6.1-dev"
  9652. }
  9653. },
  9654. "autoload": {
  9655. "classmap": [
  9656. "src/"
  9657. ]
  9658. },
  9659. "notification-url": "https://packagist.org/downloads/",
  9660. "license": [
  9661. "BSD-3-Clause"
  9662. ],
  9663. "authors": [
  9664. {
  9665. "name": "Sebastian Bergmann",
  9666. "email": "sebastian@phpunit.de"
  9667. }
  9668. ],
  9669. "description": "Provides functionality to handle HHVM/PHP environments",
  9670. "homepage": "https://github.com/sebastianbergmann/environment",
  9671. "keywords": [
  9672. "Xdebug",
  9673. "environment",
  9674. "hhvm"
  9675. ],
  9676. "support": {
  9677. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9678. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9679. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2024-03-23T08:47:14+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/exporter",
  9691. "version": "5.1.2",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/exporter.git",
  9695. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9700. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "ext-mbstring": "*",
  9705. "php": ">=8.1",
  9706. "sebastian/recursion-context": "^5.0"
  9707. },
  9708. "require-dev": {
  9709. "phpunit/phpunit": "^10.0"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-main": "5.1-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de"
  9730. },
  9731. {
  9732. "name": "Jeff Welch",
  9733. "email": "whatthejeff@gmail.com"
  9734. },
  9735. {
  9736. "name": "Volker Dusch",
  9737. "email": "github@wallbash.com"
  9738. },
  9739. {
  9740. "name": "Adam Harvey",
  9741. "email": "aharvey@php.net"
  9742. },
  9743. {
  9744. "name": "Bernhard Schussek",
  9745. "email": "bschussek@gmail.com"
  9746. }
  9747. ],
  9748. "description": "Provides the functionality to export PHP variables for visualization",
  9749. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9750. "keywords": [
  9751. "export",
  9752. "exporter"
  9753. ],
  9754. "support": {
  9755. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9756. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9757. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9758. },
  9759. "funding": [
  9760. {
  9761. "url": "https://github.com/sebastianbergmann",
  9762. "type": "github"
  9763. }
  9764. ],
  9765. "time": "2024-03-02T07:17:12+00:00"
  9766. },
  9767. {
  9768. "name": "sebastian/global-state",
  9769. "version": "6.0.2",
  9770. "source": {
  9771. "type": "git",
  9772. "url": "https://github.com/sebastianbergmann/global-state.git",
  9773. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9774. },
  9775. "dist": {
  9776. "type": "zip",
  9777. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9778. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9779. "shasum": ""
  9780. },
  9781. "require": {
  9782. "php": ">=8.1",
  9783. "sebastian/object-reflector": "^3.0",
  9784. "sebastian/recursion-context": "^5.0"
  9785. },
  9786. "require-dev": {
  9787. "ext-dom": "*",
  9788. "phpunit/phpunit": "^10.0"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-main": "6.0-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "classmap": [
  9798. "src/"
  9799. ]
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "BSD-3-Clause"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Sebastian Bergmann",
  9808. "email": "sebastian@phpunit.de"
  9809. }
  9810. ],
  9811. "description": "Snapshotting of global state",
  9812. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9813. "keywords": [
  9814. "global state"
  9815. ],
  9816. "support": {
  9817. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9818. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9819. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9820. },
  9821. "funding": [
  9822. {
  9823. "url": "https://github.com/sebastianbergmann",
  9824. "type": "github"
  9825. }
  9826. ],
  9827. "time": "2024-03-02T07:19:19+00:00"
  9828. },
  9829. {
  9830. "name": "sebastian/lines-of-code",
  9831. "version": "2.0.2",
  9832. "source": {
  9833. "type": "git",
  9834. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9835. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9836. },
  9837. "dist": {
  9838. "type": "zip",
  9839. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9840. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9841. "shasum": ""
  9842. },
  9843. "require": {
  9844. "nikic/php-parser": "^4.18 || ^5.0",
  9845. "php": ">=8.1"
  9846. },
  9847. "require-dev": {
  9848. "phpunit/phpunit": "^10.0"
  9849. },
  9850. "type": "library",
  9851. "extra": {
  9852. "branch-alias": {
  9853. "dev-main": "2.0-dev"
  9854. }
  9855. },
  9856. "autoload": {
  9857. "classmap": [
  9858. "src/"
  9859. ]
  9860. },
  9861. "notification-url": "https://packagist.org/downloads/",
  9862. "license": [
  9863. "BSD-3-Clause"
  9864. ],
  9865. "authors": [
  9866. {
  9867. "name": "Sebastian Bergmann",
  9868. "email": "sebastian@phpunit.de",
  9869. "role": "lead"
  9870. }
  9871. ],
  9872. "description": "Library for counting the lines of code in PHP source code",
  9873. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9874. "support": {
  9875. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9876. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9877. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/sebastianbergmann",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2023-12-21T08:38:20+00:00"
  9886. },
  9887. {
  9888. "name": "sebastian/object-enumerator",
  9889. "version": "5.0.0",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9893. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9898. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=8.1",
  9903. "sebastian/object-reflector": "^3.0",
  9904. "sebastian/recursion-context": "^5.0"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^10.0"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-main": "5.0-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de"
  9928. }
  9929. ],
  9930. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9931. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9932. "support": {
  9933. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9934. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://github.com/sebastianbergmann",
  9939. "type": "github"
  9940. }
  9941. ],
  9942. "time": "2023-02-03T07:08:32+00:00"
  9943. },
  9944. {
  9945. "name": "sebastian/object-reflector",
  9946. "version": "3.0.0",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9950. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9955. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9956. "shasum": ""
  9957. },
  9958. "require": {
  9959. "php": ">=8.1"
  9960. },
  9961. "require-dev": {
  9962. "phpunit/phpunit": "^10.0"
  9963. },
  9964. "type": "library",
  9965. "extra": {
  9966. "branch-alias": {
  9967. "dev-main": "3.0-dev"
  9968. }
  9969. },
  9970. "autoload": {
  9971. "classmap": [
  9972. "src/"
  9973. ]
  9974. },
  9975. "notification-url": "https://packagist.org/downloads/",
  9976. "license": [
  9977. "BSD-3-Clause"
  9978. ],
  9979. "authors": [
  9980. {
  9981. "name": "Sebastian Bergmann",
  9982. "email": "sebastian@phpunit.de"
  9983. }
  9984. ],
  9985. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9986. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9987. "support": {
  9988. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9989. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9990. },
  9991. "funding": [
  9992. {
  9993. "url": "https://github.com/sebastianbergmann",
  9994. "type": "github"
  9995. }
  9996. ],
  9997. "time": "2023-02-03T07:06:18+00:00"
  9998. },
  9999. {
  10000. "name": "sebastian/recursion-context",
  10001. "version": "5.0.0",
  10002. "source": {
  10003. "type": "git",
  10004. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10005. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10006. },
  10007. "dist": {
  10008. "type": "zip",
  10009. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10010. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10011. "shasum": ""
  10012. },
  10013. "require": {
  10014. "php": ">=8.1"
  10015. },
  10016. "require-dev": {
  10017. "phpunit/phpunit": "^10.0"
  10018. },
  10019. "type": "library",
  10020. "extra": {
  10021. "branch-alias": {
  10022. "dev-main": "5.0-dev"
  10023. }
  10024. },
  10025. "autoload": {
  10026. "classmap": [
  10027. "src/"
  10028. ]
  10029. },
  10030. "notification-url": "https://packagist.org/downloads/",
  10031. "license": [
  10032. "BSD-3-Clause"
  10033. ],
  10034. "authors": [
  10035. {
  10036. "name": "Sebastian Bergmann",
  10037. "email": "sebastian@phpunit.de"
  10038. },
  10039. {
  10040. "name": "Jeff Welch",
  10041. "email": "whatthejeff@gmail.com"
  10042. },
  10043. {
  10044. "name": "Adam Harvey",
  10045. "email": "aharvey@php.net"
  10046. }
  10047. ],
  10048. "description": "Provides functionality to recursively process PHP variables",
  10049. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10050. "support": {
  10051. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10052. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10053. },
  10054. "funding": [
  10055. {
  10056. "url": "https://github.com/sebastianbergmann",
  10057. "type": "github"
  10058. }
  10059. ],
  10060. "time": "2023-02-03T07:05:40+00:00"
  10061. },
  10062. {
  10063. "name": "sebastian/type",
  10064. "version": "4.0.0",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/sebastianbergmann/type.git",
  10068. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10073. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10074. "shasum": ""
  10075. },
  10076. "require": {
  10077. "php": ">=8.1"
  10078. },
  10079. "require-dev": {
  10080. "phpunit/phpunit": "^10.0"
  10081. },
  10082. "type": "library",
  10083. "extra": {
  10084. "branch-alias": {
  10085. "dev-main": "4.0-dev"
  10086. }
  10087. },
  10088. "autoload": {
  10089. "classmap": [
  10090. "src/"
  10091. ]
  10092. },
  10093. "notification-url": "https://packagist.org/downloads/",
  10094. "license": [
  10095. "BSD-3-Clause"
  10096. ],
  10097. "authors": [
  10098. {
  10099. "name": "Sebastian Bergmann",
  10100. "email": "sebastian@phpunit.de",
  10101. "role": "lead"
  10102. }
  10103. ],
  10104. "description": "Collection of value objects that represent the types of the PHP type system",
  10105. "homepage": "https://github.com/sebastianbergmann/type",
  10106. "support": {
  10107. "issues": "https://github.com/sebastianbergmann/type/issues",
  10108. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10109. },
  10110. "funding": [
  10111. {
  10112. "url": "https://github.com/sebastianbergmann",
  10113. "type": "github"
  10114. }
  10115. ],
  10116. "time": "2023-02-03T07:10:45+00:00"
  10117. },
  10118. {
  10119. "name": "sebastian/version",
  10120. "version": "4.0.1",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/sebastianbergmann/version.git",
  10124. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10129. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "php": ">=8.1"
  10134. },
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-main": "4.0-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "classmap": [
  10143. "src/"
  10144. ]
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "BSD-3-Clause"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "Sebastian Bergmann",
  10153. "email": "sebastian@phpunit.de",
  10154. "role": "lead"
  10155. }
  10156. ],
  10157. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10158. "homepage": "https://github.com/sebastianbergmann/version",
  10159. "support": {
  10160. "issues": "https://github.com/sebastianbergmann/version/issues",
  10161. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10162. },
  10163. "funding": [
  10164. {
  10165. "url": "https://github.com/sebastianbergmann",
  10166. "type": "github"
  10167. }
  10168. ],
  10169. "time": "2023-02-07T11:34:05+00:00"
  10170. },
  10171. {
  10172. "name": "swoole/ide-helper",
  10173. "version": "5.1.6",
  10174. "source": {
  10175. "type": "git",
  10176. "url": "https://github.com/swoole/ide-helper.git",
  10177. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10178. },
  10179. "dist": {
  10180. "type": "zip",
  10181. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10182. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10183. "shasum": ""
  10184. },
  10185. "type": "library",
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "license": [
  10188. "Apache-2.0"
  10189. ],
  10190. "authors": [
  10191. {
  10192. "name": "Team Swoole",
  10193. "email": "team@swoole.com"
  10194. }
  10195. ],
  10196. "description": "IDE help files for Swoole.",
  10197. "support": {
  10198. "issues": "https://github.com/swoole/ide-helper/issues",
  10199. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10200. },
  10201. "time": "2024-11-29T07:21:36+00:00"
  10202. },
  10203. {
  10204. "name": "symfony/event-dispatcher",
  10205. "version": "v7.2.0",
  10206. "source": {
  10207. "type": "git",
  10208. "url": "https://github.com/symfony/event-dispatcher.git",
  10209. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  10210. },
  10211. "dist": {
  10212. "type": "zip",
  10213. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  10214. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  10215. "shasum": ""
  10216. },
  10217. "require": {
  10218. "php": ">=8.2",
  10219. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10220. },
  10221. "conflict": {
  10222. "symfony/dependency-injection": "<6.4",
  10223. "symfony/service-contracts": "<2.5"
  10224. },
  10225. "provide": {
  10226. "psr/event-dispatcher-implementation": "1.0",
  10227. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10228. },
  10229. "require-dev": {
  10230. "psr/log": "^1|^2|^3",
  10231. "symfony/config": "^6.4|^7.0",
  10232. "symfony/dependency-injection": "^6.4|^7.0",
  10233. "symfony/error-handler": "^6.4|^7.0",
  10234. "symfony/expression-language": "^6.4|^7.0",
  10235. "symfony/http-foundation": "^6.4|^7.0",
  10236. "symfony/service-contracts": "^2.5|^3",
  10237. "symfony/stopwatch": "^6.4|^7.0"
  10238. },
  10239. "type": "library",
  10240. "autoload": {
  10241. "psr-4": {
  10242. "Symfony\\Component\\EventDispatcher\\": ""
  10243. },
  10244. "exclude-from-classmap": [
  10245. "/Tests/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "MIT"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Fabien Potencier",
  10255. "email": "fabien@symfony.com"
  10256. },
  10257. {
  10258. "name": "Symfony Community",
  10259. "homepage": "https://symfony.com/contributors"
  10260. }
  10261. ],
  10262. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10263. "homepage": "https://symfony.com",
  10264. "support": {
  10265. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  10266. },
  10267. "funding": [
  10268. {
  10269. "url": "https://symfony.com/sponsor",
  10270. "type": "custom"
  10271. },
  10272. {
  10273. "url": "https://github.com/fabpot",
  10274. "type": "github"
  10275. },
  10276. {
  10277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10278. "type": "tidelift"
  10279. }
  10280. ],
  10281. "time": "2024-09-25T14:21:43+00:00"
  10282. },
  10283. {
  10284. "name": "symfony/event-dispatcher-contracts",
  10285. "version": "v3.5.1",
  10286. "source": {
  10287. "type": "git",
  10288. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10289. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10290. },
  10291. "dist": {
  10292. "type": "zip",
  10293. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10294. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10295. "shasum": ""
  10296. },
  10297. "require": {
  10298. "php": ">=8.1",
  10299. "psr/event-dispatcher": "^1"
  10300. },
  10301. "type": "library",
  10302. "extra": {
  10303. "thanks": {
  10304. "url": "https://github.com/symfony/contracts",
  10305. "name": "symfony/contracts"
  10306. },
  10307. "branch-alias": {
  10308. "dev-main": "3.5-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "psr-4": {
  10313. "Symfony\\Contracts\\EventDispatcher\\": ""
  10314. }
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "MIT"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Nicolas Grekas",
  10323. "email": "p@tchwork.com"
  10324. },
  10325. {
  10326. "name": "Symfony Community",
  10327. "homepage": "https://symfony.com/contributors"
  10328. }
  10329. ],
  10330. "description": "Generic abstractions related to dispatching event",
  10331. "homepage": "https://symfony.com",
  10332. "keywords": [
  10333. "abstractions",
  10334. "contracts",
  10335. "decoupling",
  10336. "interfaces",
  10337. "interoperability",
  10338. "standards"
  10339. ],
  10340. "support": {
  10341. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  10342. },
  10343. "funding": [
  10344. {
  10345. "url": "https://symfony.com/sponsor",
  10346. "type": "custom"
  10347. },
  10348. {
  10349. "url": "https://github.com/fabpot",
  10350. "type": "github"
  10351. },
  10352. {
  10353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10354. "type": "tidelift"
  10355. }
  10356. ],
  10357. "time": "2024-09-25T14:20:29+00:00"
  10358. },
  10359. {
  10360. "name": "symfony/filesystem",
  10361. "version": "v7.2.0",
  10362. "source": {
  10363. "type": "git",
  10364. "url": "https://github.com/symfony/filesystem.git",
  10365. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  10366. },
  10367. "dist": {
  10368. "type": "zip",
  10369. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  10370. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  10371. "shasum": ""
  10372. },
  10373. "require": {
  10374. "php": ">=8.2",
  10375. "symfony/polyfill-ctype": "~1.8",
  10376. "symfony/polyfill-mbstring": "~1.8"
  10377. },
  10378. "require-dev": {
  10379. "symfony/process": "^6.4|^7.0"
  10380. },
  10381. "type": "library",
  10382. "autoload": {
  10383. "psr-4": {
  10384. "Symfony\\Component\\Filesystem\\": ""
  10385. },
  10386. "exclude-from-classmap": [
  10387. "/Tests/"
  10388. ]
  10389. },
  10390. "notification-url": "https://packagist.org/downloads/",
  10391. "license": [
  10392. "MIT"
  10393. ],
  10394. "authors": [
  10395. {
  10396. "name": "Fabien Potencier",
  10397. "email": "fabien@symfony.com"
  10398. },
  10399. {
  10400. "name": "Symfony Community",
  10401. "homepage": "https://symfony.com/contributors"
  10402. }
  10403. ],
  10404. "description": "Provides basic utilities for the filesystem",
  10405. "homepage": "https://symfony.com",
  10406. "support": {
  10407. "source": "https://github.com/symfony/filesystem/tree/v7.2.0"
  10408. },
  10409. "funding": [
  10410. {
  10411. "url": "https://symfony.com/sponsor",
  10412. "type": "custom"
  10413. },
  10414. {
  10415. "url": "https://github.com/fabpot",
  10416. "type": "github"
  10417. },
  10418. {
  10419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10420. "type": "tidelift"
  10421. }
  10422. ],
  10423. "time": "2024-10-25T15:15:23+00:00"
  10424. },
  10425. {
  10426. "name": "symfony/http-foundation",
  10427. "version": "v6.4.16",
  10428. "source": {
  10429. "type": "git",
  10430. "url": "https://github.com/symfony/http-foundation.git",
  10431. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  10432. },
  10433. "dist": {
  10434. "type": "zip",
  10435. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10436. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10437. "shasum": ""
  10438. },
  10439. "require": {
  10440. "php": ">=8.1",
  10441. "symfony/deprecation-contracts": "^2.5|^3",
  10442. "symfony/polyfill-mbstring": "~1.1",
  10443. "symfony/polyfill-php83": "^1.27"
  10444. },
  10445. "conflict": {
  10446. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10447. },
  10448. "require-dev": {
  10449. "doctrine/dbal": "^2.13.1|^3|^4",
  10450. "predis/predis": "^1.1|^2.0",
  10451. "symfony/cache": "^6.4.12|^7.1.5",
  10452. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10453. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10454. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10455. "symfony/mime": "^5.4|^6.0|^7.0",
  10456. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10457. },
  10458. "type": "library",
  10459. "autoload": {
  10460. "psr-4": {
  10461. "Symfony\\Component\\HttpFoundation\\": ""
  10462. },
  10463. "exclude-from-classmap": [
  10464. "/Tests/"
  10465. ]
  10466. },
  10467. "notification-url": "https://packagist.org/downloads/",
  10468. "license": [
  10469. "MIT"
  10470. ],
  10471. "authors": [
  10472. {
  10473. "name": "Fabien Potencier",
  10474. "email": "fabien@symfony.com"
  10475. },
  10476. {
  10477. "name": "Symfony Community",
  10478. "homepage": "https://symfony.com/contributors"
  10479. }
  10480. ],
  10481. "description": "Defines an object-oriented layer for the HTTP specification",
  10482. "homepage": "https://symfony.com",
  10483. "support": {
  10484. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  10485. },
  10486. "funding": [
  10487. {
  10488. "url": "https://symfony.com/sponsor",
  10489. "type": "custom"
  10490. },
  10491. {
  10492. "url": "https://github.com/fabpot",
  10493. "type": "github"
  10494. },
  10495. {
  10496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10497. "type": "tidelift"
  10498. }
  10499. ],
  10500. "time": "2024-11-13T18:58:10+00:00"
  10501. },
  10502. {
  10503. "name": "symfony/options-resolver",
  10504. "version": "v7.2.0",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/symfony/options-resolver.git",
  10508. "reference": "7da8fbac9dcfef75ffc212235d76b2754ce0cf50"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/7da8fbac9dcfef75ffc212235d76b2754ce0cf50",
  10513. "reference": "7da8fbac9dcfef75ffc212235d76b2754ce0cf50",
  10514. "shasum": ""
  10515. },
  10516. "require": {
  10517. "php": ">=8.2",
  10518. "symfony/deprecation-contracts": "^2.5|^3"
  10519. },
  10520. "type": "library",
  10521. "autoload": {
  10522. "psr-4": {
  10523. "Symfony\\Component\\OptionsResolver\\": ""
  10524. },
  10525. "exclude-from-classmap": [
  10526. "/Tests/"
  10527. ]
  10528. },
  10529. "notification-url": "https://packagist.org/downloads/",
  10530. "license": [
  10531. "MIT"
  10532. ],
  10533. "authors": [
  10534. {
  10535. "name": "Fabien Potencier",
  10536. "email": "fabien@symfony.com"
  10537. },
  10538. {
  10539. "name": "Symfony Community",
  10540. "homepage": "https://symfony.com/contributors"
  10541. }
  10542. ],
  10543. "description": "Provides an improved replacement for the array_replace PHP function",
  10544. "homepage": "https://symfony.com",
  10545. "keywords": [
  10546. "config",
  10547. "configuration",
  10548. "options"
  10549. ],
  10550. "support": {
  10551. "source": "https://github.com/symfony/options-resolver/tree/v7.2.0"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://symfony.com/sponsor",
  10556. "type": "custom"
  10557. },
  10558. {
  10559. "url": "https://github.com/fabpot",
  10560. "type": "github"
  10561. },
  10562. {
  10563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10564. "type": "tidelift"
  10565. }
  10566. ],
  10567. "time": "2024-11-20T11:17:29+00:00"
  10568. },
  10569. {
  10570. "name": "symfony/polyfill-php81",
  10571. "version": "v1.31.0",
  10572. "source": {
  10573. "type": "git",
  10574. "url": "https://github.com/symfony/polyfill-php81.git",
  10575. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10576. },
  10577. "dist": {
  10578. "type": "zip",
  10579. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10580. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10581. "shasum": ""
  10582. },
  10583. "require": {
  10584. "php": ">=7.2"
  10585. },
  10586. "type": "library",
  10587. "extra": {
  10588. "thanks": {
  10589. "url": "https://github.com/symfony/polyfill",
  10590. "name": "symfony/polyfill"
  10591. }
  10592. },
  10593. "autoload": {
  10594. "files": [
  10595. "bootstrap.php"
  10596. ],
  10597. "psr-4": {
  10598. "Symfony\\Polyfill\\Php81\\": ""
  10599. },
  10600. "classmap": [
  10601. "Resources/stubs"
  10602. ]
  10603. },
  10604. "notification-url": "https://packagist.org/downloads/",
  10605. "license": [
  10606. "MIT"
  10607. ],
  10608. "authors": [
  10609. {
  10610. "name": "Nicolas Grekas",
  10611. "email": "p@tchwork.com"
  10612. },
  10613. {
  10614. "name": "Symfony Community",
  10615. "homepage": "https://symfony.com/contributors"
  10616. }
  10617. ],
  10618. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10619. "homepage": "https://symfony.com",
  10620. "keywords": [
  10621. "compatibility",
  10622. "polyfill",
  10623. "portable",
  10624. "shim"
  10625. ],
  10626. "support": {
  10627. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10628. },
  10629. "funding": [
  10630. {
  10631. "url": "https://symfony.com/sponsor",
  10632. "type": "custom"
  10633. },
  10634. {
  10635. "url": "https://github.com/fabpot",
  10636. "type": "github"
  10637. },
  10638. {
  10639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10640. "type": "tidelift"
  10641. }
  10642. ],
  10643. "time": "2024-09-09T11:45:10+00:00"
  10644. },
  10645. {
  10646. "name": "symfony/polyfill-php83",
  10647. "version": "v1.31.0",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/symfony/polyfill-php83.git",
  10651. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10656. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "php": ">=7.2"
  10661. },
  10662. "type": "library",
  10663. "extra": {
  10664. "thanks": {
  10665. "url": "https://github.com/symfony/polyfill",
  10666. "name": "symfony/polyfill"
  10667. }
  10668. },
  10669. "autoload": {
  10670. "files": [
  10671. "bootstrap.php"
  10672. ],
  10673. "psr-4": {
  10674. "Symfony\\Polyfill\\Php83\\": ""
  10675. },
  10676. "classmap": [
  10677. "Resources/stubs"
  10678. ]
  10679. },
  10680. "notification-url": "https://packagist.org/downloads/",
  10681. "license": [
  10682. "MIT"
  10683. ],
  10684. "authors": [
  10685. {
  10686. "name": "Nicolas Grekas",
  10687. "email": "p@tchwork.com"
  10688. },
  10689. {
  10690. "name": "Symfony Community",
  10691. "homepage": "https://symfony.com/contributors"
  10692. }
  10693. ],
  10694. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10695. "homepage": "https://symfony.com",
  10696. "keywords": [
  10697. "compatibility",
  10698. "polyfill",
  10699. "portable",
  10700. "shim"
  10701. ],
  10702. "support": {
  10703. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10704. },
  10705. "funding": [
  10706. {
  10707. "url": "https://symfony.com/sponsor",
  10708. "type": "custom"
  10709. },
  10710. {
  10711. "url": "https://github.com/fabpot",
  10712. "type": "github"
  10713. },
  10714. {
  10715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10716. "type": "tidelift"
  10717. }
  10718. ],
  10719. "time": "2024-09-09T11:45:10+00:00"
  10720. },
  10721. {
  10722. "name": "symfony/process",
  10723. "version": "v7.2.0",
  10724. "source": {
  10725. "type": "git",
  10726. "url": "https://github.com/symfony/process.git",
  10727. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
  10728. },
  10729. "dist": {
  10730. "type": "zip",
  10731. "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  10732. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  10733. "shasum": ""
  10734. },
  10735. "require": {
  10736. "php": ">=8.2"
  10737. },
  10738. "type": "library",
  10739. "autoload": {
  10740. "psr-4": {
  10741. "Symfony\\Component\\Process\\": ""
  10742. },
  10743. "exclude-from-classmap": [
  10744. "/Tests/"
  10745. ]
  10746. },
  10747. "notification-url": "https://packagist.org/downloads/",
  10748. "license": [
  10749. "MIT"
  10750. ],
  10751. "authors": [
  10752. {
  10753. "name": "Fabien Potencier",
  10754. "email": "fabien@symfony.com"
  10755. },
  10756. {
  10757. "name": "Symfony Community",
  10758. "homepage": "https://symfony.com/contributors"
  10759. }
  10760. ],
  10761. "description": "Executes commands in sub-processes",
  10762. "homepage": "https://symfony.com",
  10763. "support": {
  10764. "source": "https://github.com/symfony/process/tree/v7.2.0"
  10765. },
  10766. "funding": [
  10767. {
  10768. "url": "https://symfony.com/sponsor",
  10769. "type": "custom"
  10770. },
  10771. {
  10772. "url": "https://github.com/fabpot",
  10773. "type": "github"
  10774. },
  10775. {
  10776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10777. "type": "tidelift"
  10778. }
  10779. ],
  10780. "time": "2024-11-06T14:24:19+00:00"
  10781. },
  10782. {
  10783. "name": "symfony/stopwatch",
  10784. "version": "v7.2.2",
  10785. "source": {
  10786. "type": "git",
  10787. "url": "https://github.com/symfony/stopwatch.git",
  10788. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df"
  10789. },
  10790. "dist": {
  10791. "type": "zip",
  10792. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  10793. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  10794. "shasum": ""
  10795. },
  10796. "require": {
  10797. "php": ">=8.2",
  10798. "symfony/service-contracts": "^2.5|^3"
  10799. },
  10800. "type": "library",
  10801. "autoload": {
  10802. "psr-4": {
  10803. "Symfony\\Component\\Stopwatch\\": ""
  10804. },
  10805. "exclude-from-classmap": [
  10806. "/Tests/"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "MIT"
  10812. ],
  10813. "authors": [
  10814. {
  10815. "name": "Fabien Potencier",
  10816. "email": "fabien@symfony.com"
  10817. },
  10818. {
  10819. "name": "Symfony Community",
  10820. "homepage": "https://symfony.com/contributors"
  10821. }
  10822. ],
  10823. "description": "Provides a way to profile code",
  10824. "homepage": "https://symfony.com",
  10825. "support": {
  10826. "source": "https://github.com/symfony/stopwatch/tree/v7.2.2"
  10827. },
  10828. "funding": [
  10829. {
  10830. "url": "https://symfony.com/sponsor",
  10831. "type": "custom"
  10832. },
  10833. {
  10834. "url": "https://github.com/fabpot",
  10835. "type": "github"
  10836. },
  10837. {
  10838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10839. "type": "tidelift"
  10840. }
  10841. ],
  10842. "time": "2024-12-18T14:28:33+00:00"
  10843. },
  10844. {
  10845. "name": "theseer/tokenizer",
  10846. "version": "1.2.3",
  10847. "source": {
  10848. "type": "git",
  10849. "url": "https://github.com/theseer/tokenizer.git",
  10850. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10851. },
  10852. "dist": {
  10853. "type": "zip",
  10854. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10855. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10856. "shasum": ""
  10857. },
  10858. "require": {
  10859. "ext-dom": "*",
  10860. "ext-tokenizer": "*",
  10861. "ext-xmlwriter": "*",
  10862. "php": "^7.2 || ^8.0"
  10863. },
  10864. "type": "library",
  10865. "autoload": {
  10866. "classmap": [
  10867. "src/"
  10868. ]
  10869. },
  10870. "notification-url": "https://packagist.org/downloads/",
  10871. "license": [
  10872. "BSD-3-Clause"
  10873. ],
  10874. "authors": [
  10875. {
  10876. "name": "Arne Blankerts",
  10877. "email": "arne@blankerts.de",
  10878. "role": "Developer"
  10879. }
  10880. ],
  10881. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10882. "support": {
  10883. "issues": "https://github.com/theseer/tokenizer/issues",
  10884. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10885. },
  10886. "funding": [
  10887. {
  10888. "url": "https://github.com/theseer",
  10889. "type": "github"
  10890. }
  10891. ],
  10892. "time": "2024-03-03T12:36:25+00:00"
  10893. }
  10894. ],
  10895. "aliases": [],
  10896. "minimum-stability": "dev",
  10897. "stability-flags": {},
  10898. "prefer-stable": true,
  10899. "prefer-lowest": false,
  10900. "platform": {
  10901. "php": ">=8.1"
  10902. },
  10903. "platform-dev": {},
  10904. "plugin-api-version": "2.6.0"
  10905. }