composer.lock 382 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773
  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": "fbcdbc7b050522570fd377ee53f971d9",
  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. "branch-alias": {
  895. "dev-master": "3.1-dev"
  896. },
  897. "hyperf": {
  898. "config": "Hyperf\\Amqp\\ConfigProvider"
  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. "branch-alias": {
  969. "dev-master": "3.1-dev"
  970. },
  971. "hyperf": {
  972. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  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. "branch-alias": {
  1043. "dev-master": "3.1-dev"
  1044. },
  1045. "hyperf": {
  1046. "config": "Hyperf\\Cache\\ConfigProvider"
  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.44",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/hyperf/collection.git",
  1218. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1223. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  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-10-23T10:12:23+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. "branch-alias": {
  1311. "dev-master": "3.1-dev"
  1312. },
  1313. "hyperf": {
  1314. "config": "Hyperf\\Command\\ConfigProvider"
  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. "branch-alias": {
  1438. "dev-master": "3.1-dev"
  1439. },
  1440. "hyperf": {
  1441. "config": "Hyperf\\Config\\ConfigProvider"
  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/constants",
  1485. "version": "v3.1.42",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/hyperf/constants.git",
  1489. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1494. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "hyperf/di": "~3.1.0",
  1499. "hyperf/support": "~3.1.0",
  1500. "hyperf/utils": "~3.1.0",
  1501. "php": ">=8.1"
  1502. },
  1503. "suggest": {
  1504. "hyperf/translation": "Required to use translation."
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "3.1-dev"
  1510. },
  1511. "hyperf": {
  1512. "config": "Hyperf\\Constants\\ConfigProvider"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Hyperf\\Constants\\": "src/"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "description": "A constants component for hyperf.",
  1525. "homepage": "https://hyperf.io",
  1526. "keywords": [
  1527. "constants",
  1528. "hyperf",
  1529. "php"
  1530. ],
  1531. "support": {
  1532. "docs": "https://hyperf.wiki",
  1533. "issues": "https://github.com/hyperf/hyperf/issues",
  1534. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1535. "source": "https://github.com/hyperf/hyperf"
  1536. },
  1537. "funding": [
  1538. {
  1539. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1540. "type": "custom"
  1541. },
  1542. {
  1543. "url": "https://opencollective.com/hyperf",
  1544. "type": "open_collective"
  1545. }
  1546. ],
  1547. "time": "2024-09-25T02:54:12+00:00"
  1548. },
  1549. {
  1550. "name": "hyperf/context",
  1551. "version": "v3.1.42",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/hyperf/context.git",
  1555. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1560. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "hyperf/engine": "^2.0",
  1565. "php": ">=8.1"
  1566. },
  1567. "suggest": {
  1568. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "3.1-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Hyperf\\Context\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "description": "A coroutine/application context library.",
  1586. "homepage": "https://hyperf.io",
  1587. "keywords": [
  1588. "Context",
  1589. "hyperf",
  1590. "php",
  1591. "swoole"
  1592. ],
  1593. "support": {
  1594. "docs": "https://hyperf.wiki",
  1595. "issues": "https://github.com/hyperf/hyperf/issues",
  1596. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1597. "source": "https://github.com/hyperf/hyperf"
  1598. },
  1599. "funding": [
  1600. {
  1601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1602. "type": "custom"
  1603. },
  1604. {
  1605. "url": "https://opencollective.com/hyperf",
  1606. "type": "open_collective"
  1607. }
  1608. ],
  1609. "time": "2024-09-25T02:54:12+00:00"
  1610. },
  1611. {
  1612. "name": "hyperf/contract",
  1613. "version": "v3.1.42",
  1614. "source": {
  1615. "type": "git",
  1616. "url": "https://github.com/hyperf/contract.git",
  1617. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1618. },
  1619. "dist": {
  1620. "type": "zip",
  1621. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1622. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1623. "shasum": ""
  1624. },
  1625. "require": {
  1626. "php": ">=8.1"
  1627. },
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "3.1-dev"
  1632. }
  1633. },
  1634. "autoload": {
  1635. "psr-4": {
  1636. "Hyperf\\Contract\\": "src/"
  1637. }
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "MIT"
  1642. ],
  1643. "description": "The contracts of Hyperf.",
  1644. "homepage": "https://hyperf.io",
  1645. "keywords": [
  1646. "hyperf",
  1647. "php",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "docs": "https://hyperf.wiki",
  1652. "issues": "https://github.com/hyperf/hyperf/issues",
  1653. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1654. "source": "https://github.com/hyperf/hyperf"
  1655. },
  1656. "funding": [
  1657. {
  1658. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1659. "type": "custom"
  1660. },
  1661. {
  1662. "url": "https://opencollective.com/hyperf",
  1663. "type": "open_collective"
  1664. }
  1665. ],
  1666. "time": "2024-09-25T02:54:12+00:00"
  1667. },
  1668. {
  1669. "name": "hyperf/coordinator",
  1670. "version": "v3.1.42",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/hyperf/coordinator.git",
  1674. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1679. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "hyperf/engine": "^2.0",
  1684. "php": ">=8.1"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "3.1-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "files": [
  1694. "src/Functions.php"
  1695. ],
  1696. "psr-4": {
  1697. "Hyperf\\Coordinator\\": "src/"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "description": "Hyperf Coordinator",
  1705. "homepage": "https://hyperf.io",
  1706. "keywords": [
  1707. "Coordinator",
  1708. "hyperf",
  1709. "php",
  1710. "swoole"
  1711. ],
  1712. "support": {
  1713. "docs": "https://hyperf.wiki",
  1714. "issues": "https://github.com/hyperf/hyperf/issues",
  1715. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1716. "source": "https://github.com/hyperf/hyperf"
  1717. },
  1718. "funding": [
  1719. {
  1720. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1721. "type": "custom"
  1722. },
  1723. {
  1724. "url": "https://opencollective.com/hyperf",
  1725. "type": "open_collective"
  1726. }
  1727. ],
  1728. "time": "2024-09-25T02:54:12+00:00"
  1729. },
  1730. {
  1731. "name": "hyperf/coroutine",
  1732. "version": "v3.1.42",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/hyperf/coroutine.git",
  1736. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1741. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "hyperf/context": "~3.1.0",
  1746. "hyperf/contract": "~3.1.0",
  1747. "hyperf/engine": "^2.0",
  1748. "php": ">=8.1"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "3.1-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "files": [
  1758. "src/Functions.php"
  1759. ],
  1760. "psr-4": {
  1761. "Hyperf\\Coroutine\\": "src/"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "description": "Hyperf Coroutine",
  1769. "homepage": "https://hyperf.io",
  1770. "keywords": [
  1771. "coroutine",
  1772. "hyperf",
  1773. "php",
  1774. "swoole"
  1775. ],
  1776. "support": {
  1777. "docs": "https://hyperf.wiki",
  1778. "issues": "https://github.com/hyperf/hyperf/issues",
  1779. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1780. "source": "https://github.com/hyperf/hyperf"
  1781. },
  1782. "funding": [
  1783. {
  1784. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1785. "type": "custom"
  1786. },
  1787. {
  1788. "url": "https://opencollective.com/hyperf",
  1789. "type": "open_collective"
  1790. }
  1791. ],
  1792. "time": "2024-09-25T02:54:12+00:00"
  1793. },
  1794. {
  1795. "name": "hyperf/database",
  1796. "version": "v3.1.44",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/hyperf/database.git",
  1800. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1805. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "hyperf/code-parser": "~3.1.0",
  1810. "hyperf/collection": "~3.1.23",
  1811. "hyperf/conditionable": "~3.1.0",
  1812. "hyperf/macroable": "~3.1.0",
  1813. "hyperf/support": "~3.1.0",
  1814. "hyperf/tappable": "~3.1.0",
  1815. "hyperf/utils": "~3.1.0",
  1816. "nesbot/carbon": "^2.0",
  1817. "php": ">=8.1",
  1818. "psr/container": "^1.0 || ^2.0",
  1819. "psr/event-dispatcher": "^1.0"
  1820. },
  1821. "suggest": {
  1822. "doctrine/dbal": "Required to rename columns (^3.0).",
  1823. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1824. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1825. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "3.1-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Hyperf\\Database\\": "src/"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "description": "A flexible database library.",
  1843. "homepage": "https://hyperf.io",
  1844. "keywords": [
  1845. "database",
  1846. "hyperf",
  1847. "php"
  1848. ],
  1849. "support": {
  1850. "docs": "https://hyperf.wiki",
  1851. "issues": "https://github.com/hyperf/hyperf/issues",
  1852. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1853. "source": "https://github.com/hyperf/hyperf"
  1854. },
  1855. "funding": [
  1856. {
  1857. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1858. "type": "custom"
  1859. },
  1860. {
  1861. "url": "https://opencollective.com/hyperf",
  1862. "type": "open_collective"
  1863. }
  1864. ],
  1865. "time": "2024-10-11T10:25:57+00:00"
  1866. },
  1867. {
  1868. "name": "hyperf/db-connection",
  1869. "version": "v3.1.44",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/hyperf/db-connection.git",
  1873. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1878. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "hyperf/database": "~3.1.0",
  1883. "hyperf/di": "~3.1.0",
  1884. "hyperf/framework": "~3.1.0",
  1885. "hyperf/model-listener": "~3.1.0",
  1886. "hyperf/pool": "~3.1.0",
  1887. "hyperf/support": "~3.1.0",
  1888. "hyperf/utils": "~3.1.0",
  1889. "php": ">=8.1",
  1890. "psr/container": "^1.0 || ^2.0"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "branch-alias": {
  1895. "dev-master": "3.1-dev"
  1896. },
  1897. "hyperf": {
  1898. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Hyperf\\DbConnection\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "description": "A hyperf db connection handler for hyperf/database.",
  1911. "homepage": "https://hyperf.io",
  1912. "keywords": [
  1913. "Connection",
  1914. "database",
  1915. "hyperf",
  1916. "php"
  1917. ],
  1918. "support": {
  1919. "docs": "https://hyperf.wiki",
  1920. "issues": "https://github.com/hyperf/hyperf/issues",
  1921. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1922. "source": "https://github.com/hyperf/hyperf"
  1923. },
  1924. "funding": [
  1925. {
  1926. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1927. "type": "custom"
  1928. },
  1929. {
  1930. "url": "https://opencollective.com/hyperf",
  1931. "type": "open_collective"
  1932. }
  1933. ],
  1934. "time": "2024-10-11T08:58:16+00:00"
  1935. },
  1936. {
  1937. "name": "hyperf/di",
  1938. "version": "v3.1.42",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/hyperf/di.git",
  1942. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  1947. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "doctrine/instantiator": "^1.0",
  1952. "hyperf/code-parser": "~3.1.0",
  1953. "hyperf/pipeline": "~3.1.0",
  1954. "hyperf/stdlib": "~3.1.0",
  1955. "hyperf/support": "~3.1.0",
  1956. "nikic/php-parser": "^4.1",
  1957. "php": ">=8.1",
  1958. "php-di/phpdoc-reader": "^2.2",
  1959. "psr/container": "^1.0 || ^2.0",
  1960. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  1961. "vlucas/phpdotenv": "^5.0"
  1962. },
  1963. "suggest": {
  1964. "ext-pcntl": "Required to scan annotations.",
  1965. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1966. },
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": {
  1970. "dev-master": "3.1-dev"
  1971. },
  1972. "hyperf": {
  1973. "config": "Hyperf\\Di\\ConfigProvider"
  1974. }
  1975. },
  1976. "autoload": {
  1977. "psr-4": {
  1978. "Hyperf\\Di\\": "src/"
  1979. }
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "description": "A DI for Hyperf.",
  1986. "homepage": "https://hyperf.io",
  1987. "keywords": [
  1988. "annotation",
  1989. "di",
  1990. "hyperf",
  1991. "php",
  1992. "swoole"
  1993. ],
  1994. "support": {
  1995. "docs": "https://hyperf.wiki",
  1996. "issues": "https://github.com/hyperf/hyperf/issues",
  1997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1998. "source": "https://github.com/hyperf/hyperf"
  1999. },
  2000. "funding": [
  2001. {
  2002. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2003. "type": "custom"
  2004. },
  2005. {
  2006. "url": "https://opencollective.com/hyperf",
  2007. "type": "open_collective"
  2008. }
  2009. ],
  2010. "time": "2024-09-25T02:54:12+00:00"
  2011. },
  2012. {
  2013. "name": "hyperf/dispatcher",
  2014. "version": "v3.1.42",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/hyperf/dispatcher.git",
  2018. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2023. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2024. "shasum": ""
  2025. },
  2026. "require": {
  2027. "hyperf/contract": "~3.1.0",
  2028. "php": ">=8.1",
  2029. "psr/container": "^1.0 || ^2.0",
  2030. "psr/http-message": "^1.0 || ^2.0",
  2031. "psr/http-server-middleware": "^1.0"
  2032. },
  2033. "type": "library",
  2034. "extra": {
  2035. "branch-alias": {
  2036. "dev-master": "3.1-dev"
  2037. },
  2038. "hyperf": {
  2039. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-4": {
  2044. "Hyperf\\Dispatcher\\": "src/"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "MIT"
  2050. ],
  2051. "description": "A HTTP Server for Hyperf.",
  2052. "homepage": "https://hyperf.io",
  2053. "keywords": [
  2054. "dispatcher",
  2055. "filter",
  2056. "hyperf",
  2057. "middleware",
  2058. "php",
  2059. "swoole"
  2060. ],
  2061. "support": {
  2062. "docs": "https://hyperf.wiki",
  2063. "issues": "https://github.com/hyperf/hyperf/issues",
  2064. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2065. "source": "https://github.com/hyperf/hyperf"
  2066. },
  2067. "funding": [
  2068. {
  2069. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2070. "type": "custom"
  2071. },
  2072. {
  2073. "url": "https://opencollective.com/hyperf",
  2074. "type": "open_collective"
  2075. }
  2076. ],
  2077. "time": "2024-09-25T02:54:12+00:00"
  2078. },
  2079. {
  2080. "name": "hyperf/elasticsearch",
  2081. "version": "v3.1.42",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/hyperf/elasticsearch.git",
  2085. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/hyperf/elasticsearch/zipball/ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2090. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "elasticsearch/elasticsearch": "^7.0",
  2095. "hyperf/guzzle": "~3.1.0",
  2096. "php": ">=8.1"
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-master": "3.1-dev"
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Hyperf\\Elasticsearch\\": "src/"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "description": "Elasticsearch client for hyperf",
  2114. "keywords": [
  2115. "elasticsearch",
  2116. "php",
  2117. "swoole"
  2118. ],
  2119. "support": {
  2120. "issues": "https://github.com/hyperf/elasticsearch/issues",
  2121. "source": "https://github.com/hyperf/elasticsearch/tree/v3.1.42"
  2122. },
  2123. "funding": [
  2124. {
  2125. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2126. "type": "custom"
  2127. },
  2128. {
  2129. "url": "https://opencollective.com/hyperf",
  2130. "type": "open_collective"
  2131. }
  2132. ],
  2133. "time": "2024-09-25T02:54:12+00:00"
  2134. },
  2135. {
  2136. "name": "hyperf/engine",
  2137. "version": "v2.11.0",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/hyperf/engine.git",
  2141. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2146. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2147. "shasum": ""
  2148. },
  2149. "require": {
  2150. "hyperf/engine-contract": "~1.10.0",
  2151. "php": ">=8.0"
  2152. },
  2153. "conflict": {
  2154. "ext-swoole": "<5.0"
  2155. },
  2156. "require-dev": {
  2157. "friendsofphp/php-cs-fixer": "^3.0",
  2158. "hyperf/guzzle": "^3.0",
  2159. "hyperf/http-message": "^3.0",
  2160. "mockery/mockery": "^1.5",
  2161. "phpstan/phpstan": "^1.0",
  2162. "phpunit/phpunit": "^9.4",
  2163. "swoole/ide-helper": "5.*"
  2164. },
  2165. "suggest": {
  2166. "ext-sockets": "*",
  2167. "ext-swoole": ">=5.0",
  2168. "hyperf/http-message": "Required to use ResponseEmitter.",
  2169. "psr/http-message": "Required to use WebSocket Frame."
  2170. },
  2171. "type": "library",
  2172. "extra": {
  2173. "branch-alias": {
  2174. "dev-master": "2.11-dev"
  2175. },
  2176. "hyperf": {
  2177. "config": "Hyperf\\Engine\\ConfigProvider"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "files": [
  2182. "src/Functions.php"
  2183. ],
  2184. "psr-4": {
  2185. "Hyperf\\Engine\\": "src/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "description": "Coroutine engine provided by swoole.",
  2193. "keywords": [
  2194. "engine",
  2195. "hyperf",
  2196. "php",
  2197. "swoole"
  2198. ],
  2199. "support": {
  2200. "issues": "https://github.com/hyperf/engine/issues",
  2201. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2202. },
  2203. "funding": [
  2204. {
  2205. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2206. "type": "custom"
  2207. },
  2208. {
  2209. "url": "https://opencollective.com/hyperf",
  2210. "type": "open_collective"
  2211. }
  2212. ],
  2213. "time": "2024-04-17T13:36:28+00:00"
  2214. },
  2215. {
  2216. "name": "hyperf/engine-contract",
  2217. "version": "v1.10.1",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/hyperf/engine-contract.git",
  2221. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2226. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=8.0"
  2231. },
  2232. "require-dev": {
  2233. "friendsofphp/php-cs-fixer": "^3.0",
  2234. "mockery/mockery": "^1.0",
  2235. "phpstan/phpstan": "^1.0",
  2236. "phpunit/phpunit": ">=7.0",
  2237. "psr/http-message": "^1.0",
  2238. "swoole/ide-helper": "^4.5"
  2239. },
  2240. "suggest": {
  2241. "psr/http-message": "Required to use WebSocket Frame."
  2242. },
  2243. "type": "library",
  2244. "extra": {
  2245. "branch-alias": {
  2246. "dev-master": "1.9-dev"
  2247. }
  2248. },
  2249. "autoload": {
  2250. "psr-4": {
  2251. "Hyperf\\Engine\\Contract\\": "src/"
  2252. }
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "MIT"
  2257. ],
  2258. "description": "Contract for Coroutine Engine",
  2259. "keywords": [
  2260. "contract",
  2261. "coroutine",
  2262. "engine",
  2263. "hyperf",
  2264. "php"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/hyperf/engine-contract/issues",
  2268. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2269. },
  2270. "funding": [
  2271. {
  2272. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2273. "type": "custom"
  2274. },
  2275. {
  2276. "url": "https://opencollective.com/hyperf",
  2277. "type": "open_collective"
  2278. }
  2279. ],
  2280. "time": "2024-04-17T13:34:51+00:00"
  2281. },
  2282. {
  2283. "name": "hyperf/event",
  2284. "version": "v3.1.42",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/hyperf/event.git",
  2288. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2293. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "hyperf/contract": "~3.1.0",
  2298. "hyperf/stdlib": "~3.1.0",
  2299. "php": ">=8.1",
  2300. "psr/event-dispatcher": "^1.0"
  2301. },
  2302. "suggest": {
  2303. "hyperf/di": "Required to use annotatioins."
  2304. },
  2305. "type": "library",
  2306. "extra": {
  2307. "branch-alias": {
  2308. "dev-master": "3.1-dev"
  2309. },
  2310. "hyperf": {
  2311. "config": "Hyperf\\Event\\ConfigProvider"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "psr-4": {
  2316. "Hyperf\\Event\\": "src/"
  2317. }
  2318. },
  2319. "notification-url": "https://packagist.org/downloads/",
  2320. "license": [
  2321. "MIT"
  2322. ],
  2323. "description": "an event manager that implements PSR-14.",
  2324. "homepage": "https://hyperf.io",
  2325. "keywords": [
  2326. "event",
  2327. "hyperf",
  2328. "php",
  2329. "swoole"
  2330. ],
  2331. "support": {
  2332. "docs": "https://hyperf.wiki",
  2333. "issues": "https://github.com/hyperf/hyperf/issues",
  2334. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2335. "source": "https://github.com/hyperf/hyperf"
  2336. },
  2337. "funding": [
  2338. {
  2339. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2340. "type": "custom"
  2341. },
  2342. {
  2343. "url": "https://opencollective.com/hyperf",
  2344. "type": "open_collective"
  2345. }
  2346. ],
  2347. "time": "2024-09-25T02:54:12+00:00"
  2348. },
  2349. {
  2350. "name": "hyperf/exception-handler",
  2351. "version": "v3.1.42",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/hyperf/exception-handler.git",
  2355. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2360. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "hyperf/context": "~3.1.0",
  2365. "hyperf/contract": "~3.1.0",
  2366. "hyperf/dispatcher": "~3.1.0",
  2367. "hyperf/http-message": "~3.1.0",
  2368. "hyperf/stdlib": "~3.1.0",
  2369. "hyperf/support": "~3.1.0",
  2370. "php": ">=8.1",
  2371. "psr/container": "^1.0 || ^2.0",
  2372. "psr/http-message": "^1.0 || ^2.0",
  2373. "swow/psr7-plus": "^1.0"
  2374. },
  2375. "suggest": {
  2376. "hyperf/di": "Required to use #[ExceptionHandler]",
  2377. "hyperf/event": "Required to use listeners",
  2378. "hyperf/framework": "Required to use listeners",
  2379. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2380. },
  2381. "type": "library",
  2382. "extra": {
  2383. "branch-alias": {
  2384. "dev-master": "3.1-dev"
  2385. },
  2386. "hyperf": {
  2387. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "psr-4": {
  2392. "Hyperf\\ExceptionHandler\\": "src/"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "MIT"
  2398. ],
  2399. "description": "Exception handler for hyperf",
  2400. "homepage": "https://hyperf.io",
  2401. "keywords": [
  2402. "exception-handler",
  2403. "php",
  2404. "swoole"
  2405. ],
  2406. "support": {
  2407. "docs": "https://hyperf.wiki",
  2408. "issues": "https://github.com/hyperf/hyperf/issues",
  2409. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2410. "source": "https://github.com/hyperf/hyperf"
  2411. },
  2412. "funding": [
  2413. {
  2414. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2415. "type": "custom"
  2416. },
  2417. {
  2418. "url": "https://opencollective.com/hyperf",
  2419. "type": "open_collective"
  2420. }
  2421. ],
  2422. "time": "2024-09-25T02:54:12+00:00"
  2423. },
  2424. {
  2425. "name": "hyperf/framework",
  2426. "version": "v3.1.42",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/hyperf/framework.git",
  2430. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2435. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "fig/http-message-util": "^1.1.2",
  2440. "hyperf/contract": "~3.1.0",
  2441. "hyperf/coordinator": "~3.1.0",
  2442. "hyperf/coroutine": "~3.1.0",
  2443. "php": ">=8.1",
  2444. "psr/container": "^1.0 || ^2.0",
  2445. "psr/event-dispatcher": "^1.0",
  2446. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2447. },
  2448. "suggest": {
  2449. "ext-swoole": "Required to use swoole engine.",
  2450. "hyperf/command": "Required to use Command annotation.",
  2451. "hyperf/di": "Required to use Command annotation.",
  2452. "hyperf/dispatcher": "Required to use BootApplication event.",
  2453. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2454. },
  2455. "type": "library",
  2456. "extra": {
  2457. "branch-alias": {
  2458. "dev-master": "3.1-dev"
  2459. },
  2460. "hyperf": {
  2461. "config": "Hyperf\\Framework\\ConfigProvider"
  2462. }
  2463. },
  2464. "autoload": {
  2465. "psr-4": {
  2466. "Hyperf\\Framework\\": "src/"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2474. "homepage": "https://hyperf.io",
  2475. "keywords": [
  2476. "Microservice",
  2477. "framework",
  2478. "hyperf",
  2479. "middleware",
  2480. "php",
  2481. "swoole"
  2482. ],
  2483. "support": {
  2484. "docs": "https://hyperf.wiki",
  2485. "issues": "https://github.com/hyperf/hyperf/issues",
  2486. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2487. "source": "https://github.com/hyperf/hyperf"
  2488. },
  2489. "funding": [
  2490. {
  2491. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2492. "type": "custom"
  2493. },
  2494. {
  2495. "url": "https://opencollective.com/hyperf",
  2496. "type": "open_collective"
  2497. }
  2498. ],
  2499. "time": "2024-09-25T02:54:12+00:00"
  2500. },
  2501. {
  2502. "name": "hyperf/guzzle",
  2503. "version": "v3.1.42",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/hyperf/guzzle.git",
  2507. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2512. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2517. "php": ">=8.1",
  2518. "psr/container": "^1.0 || ^2.0",
  2519. "psr/http-message": "^1.0 || ^2.0"
  2520. },
  2521. "suggest": {
  2522. "ext-curl": "Required for CURL handler support",
  2523. "hyperf/pool": "Required to use pool handler."
  2524. },
  2525. "type": "library",
  2526. "extra": {
  2527. "branch-alias": {
  2528. "dev-master": "3.1-dev"
  2529. },
  2530. "hyperf": {
  2531. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "psr-4": {
  2536. "Hyperf\\Guzzle\\": "src/"
  2537. }
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "description": "Swoole coroutine handler for guzzle",
  2544. "keywords": [
  2545. "Guzzle",
  2546. "handler",
  2547. "php",
  2548. "swoole"
  2549. ],
  2550. "support": {
  2551. "issues": "https://github.com/hyperf/guzzle/issues",
  2552. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2553. },
  2554. "funding": [
  2555. {
  2556. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2557. "type": "custom"
  2558. },
  2559. {
  2560. "url": "https://opencollective.com/hyperf",
  2561. "type": "open_collective"
  2562. }
  2563. ],
  2564. "time": "2024-09-25T02:54:12+00:00"
  2565. },
  2566. {
  2567. "name": "hyperf/http-message",
  2568. "version": "v3.1.42",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/hyperf/http-message.git",
  2572. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2577. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "hyperf/codec": "~3.1.0",
  2582. "hyperf/engine": "^2.11",
  2583. "hyperf/support": "~3.1.0",
  2584. "laminas/laminas-mime": "^2.7",
  2585. "php": ">=8.1",
  2586. "psr/http-message": "^1.0 || ^2.0",
  2587. "swow/psr7-plus": "^1.0"
  2588. },
  2589. "suggest": {
  2590. "psr/container": "Required to replace RequestParserInterface."
  2591. },
  2592. "type": "library",
  2593. "extra": {
  2594. "branch-alias": {
  2595. "dev-master": "3.1-dev"
  2596. },
  2597. "hyperf": {
  2598. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2599. }
  2600. },
  2601. "autoload": {
  2602. "psr-4": {
  2603. "Hyperf\\HttpMessage\\": "src/"
  2604. }
  2605. },
  2606. "notification-url": "https://packagist.org/downloads/",
  2607. "license": [
  2608. "MIT"
  2609. ],
  2610. "description": "microservice framework base on swoole",
  2611. "keywords": [
  2612. "http-message",
  2613. "hyperf",
  2614. "php",
  2615. "swoole"
  2616. ],
  2617. "support": {
  2618. "issues": "https://github.com/hyperf/http-message/issues",
  2619. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2620. },
  2621. "funding": [
  2622. {
  2623. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2624. "type": "custom"
  2625. },
  2626. {
  2627. "url": "https://opencollective.com/hyperf",
  2628. "type": "open_collective"
  2629. }
  2630. ],
  2631. "time": "2024-09-25T02:54:12+00:00"
  2632. },
  2633. {
  2634. "name": "hyperf/http-server",
  2635. "version": "v3.1.42",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/hyperf/http-server.git",
  2639. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2644. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2645. "shasum": ""
  2646. },
  2647. "require": {
  2648. "hyperf/codec": "~3.1.0",
  2649. "hyperf/collection": "~3.1.0",
  2650. "hyperf/context": "~3.1.0",
  2651. "hyperf/contract": "~3.1.0",
  2652. "hyperf/coroutine": "~3.1.0",
  2653. "hyperf/dispatcher": "~3.1.0",
  2654. "hyperf/event": "~3.1.0",
  2655. "hyperf/exception-handler": "~3.1.0",
  2656. "hyperf/http-message": "~3.1.0",
  2657. "hyperf/macroable": "~3.1.0",
  2658. "hyperf/serializer": "~3.1.0",
  2659. "hyperf/server": "~3.1.0",
  2660. "hyperf/stdlib": "~3.1.0",
  2661. "hyperf/support": "~3.1.0",
  2662. "nikic/fast-route": "^1.3",
  2663. "php": ">=8.1",
  2664. "psr/container": "^1.0 || ^2.0",
  2665. "swow/psr7-plus": "^1.0"
  2666. },
  2667. "suggest": {
  2668. "hyperf/di": "Required to use annotations."
  2669. },
  2670. "type": "library",
  2671. "extra": {
  2672. "branch-alias": {
  2673. "dev-master": "3.1-dev"
  2674. },
  2675. "hyperf": {
  2676. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2677. }
  2678. },
  2679. "autoload": {
  2680. "psr-4": {
  2681. "Hyperf\\HttpServer\\": "src/"
  2682. }
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "MIT"
  2687. ],
  2688. "description": "A HTTP Server for Hyperf.",
  2689. "homepage": "https://hyperf.io",
  2690. "keywords": [
  2691. "http",
  2692. "http-server",
  2693. "hyperf",
  2694. "php",
  2695. "swoole"
  2696. ],
  2697. "support": {
  2698. "docs": "https://hyperf.wiki",
  2699. "issues": "https://github.com/hyperf/hyperf/issues",
  2700. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2701. "source": "https://github.com/hyperf/hyperf"
  2702. },
  2703. "funding": [
  2704. {
  2705. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2706. "type": "custom"
  2707. },
  2708. {
  2709. "url": "https://opencollective.com/hyperf",
  2710. "type": "open_collective"
  2711. }
  2712. ],
  2713. "time": "2024-09-25T02:54:12+00:00"
  2714. },
  2715. {
  2716. "name": "hyperf/json-rpc",
  2717. "version": "v3.1.42",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/hyperf/json-rpc.git",
  2721. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2726. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2727. "shasum": ""
  2728. },
  2729. "require": {
  2730. "hyperf/codec": "~3.1.0",
  2731. "hyperf/context": "~3.1.0",
  2732. "hyperf/contract": "~3.1.0",
  2733. "hyperf/engine": "^2.0",
  2734. "hyperf/http-message": "~3.1.0",
  2735. "hyperf/load-balancer": "~3.1.0",
  2736. "hyperf/rpc": "~3.1.0",
  2737. "hyperf/serializer": "~3.1.0",
  2738. "hyperf/support": "~3.1.0",
  2739. "hyperf/utils": "~3.1.0",
  2740. "php": ">=8.1",
  2741. "psr/container": "^1.0 || ^2.0",
  2742. "swow/psr7-plus": "^1.0"
  2743. },
  2744. "suggest": {
  2745. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2746. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2747. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2748. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2749. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2750. },
  2751. "type": "library",
  2752. "extra": {
  2753. "branch-alias": {
  2754. "dev-master": "3.1-dev"
  2755. },
  2756. "hyperf": {
  2757. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2758. }
  2759. },
  2760. "autoload": {
  2761. "psr-4": {
  2762. "Hyperf\\JsonRpc\\": "src/"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2770. "homepage": "https://hyperf.io",
  2771. "keywords": [
  2772. "hyperf",
  2773. "json-rpc",
  2774. "php",
  2775. "swoole"
  2776. ],
  2777. "support": {
  2778. "docs": "https://hyperf.wiki",
  2779. "issues": "https://github.com/hyperf/hyperf/issues",
  2780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2781. "source": "https://github.com/hyperf/hyperf"
  2782. },
  2783. "funding": [
  2784. {
  2785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2786. "type": "custom"
  2787. },
  2788. {
  2789. "url": "https://opencollective.com/hyperf",
  2790. "type": "open_collective"
  2791. }
  2792. ],
  2793. "time": "2024-09-25T02:54:12+00:00"
  2794. },
  2795. {
  2796. "name": "hyperf/load-balancer",
  2797. "version": "v3.1.42",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/hyperf/load-balancer.git",
  2801. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2806. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2807. "shasum": ""
  2808. },
  2809. "require": {
  2810. "hyperf/coordinator": "~3.1.0",
  2811. "hyperf/coroutine": "~3.1.0",
  2812. "markrogoyski/math-php": "^2.0",
  2813. "php": ">=8.1",
  2814. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2815. },
  2816. "type": "library",
  2817. "extra": {
  2818. "branch-alias": {
  2819. "dev-master": "3.1-dev"
  2820. },
  2821. "hyperf": {
  2822. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2823. }
  2824. },
  2825. "autoload": {
  2826. "psr-4": {
  2827. "Hyperf\\LoadBalancer\\": "src/"
  2828. }
  2829. },
  2830. "notification-url": "https://packagist.org/downloads/",
  2831. "license": [
  2832. "MIT"
  2833. ],
  2834. "description": "A load balancer library for Hyperf.",
  2835. "homepage": "https://hyperf.io",
  2836. "keywords": [
  2837. "hyperf",
  2838. "load-balancer",
  2839. "php",
  2840. "swoole"
  2841. ],
  2842. "support": {
  2843. "docs": "https://hyperf.wiki",
  2844. "issues": "https://github.com/hyperf/hyperf/issues",
  2845. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2846. "source": "https://github.com/hyperf/hyperf"
  2847. },
  2848. "funding": [
  2849. {
  2850. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2851. "type": "custom"
  2852. },
  2853. {
  2854. "url": "https://opencollective.com/hyperf",
  2855. "type": "open_collective"
  2856. }
  2857. ],
  2858. "time": "2024-09-25T02:54:12+00:00"
  2859. },
  2860. {
  2861. "name": "hyperf/logger",
  2862. "version": "v3.1.42",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/hyperf/logger.git",
  2866. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2871. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "hyperf/contract": "~3.1.0",
  2876. "hyperf/support": "~3.1.0",
  2877. "hyperf/utils": "~3.1.0",
  2878. "monolog/monolog": "^2.7 || ^3.1",
  2879. "php": ">=8.1",
  2880. "psr/container": "^1.0 || ^2.0",
  2881. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "3.1-dev"
  2887. },
  2888. "hyperf": {
  2889. "config": "Hyperf\\Logger\\ConfigProvider"
  2890. }
  2891. },
  2892. "autoload": {
  2893. "psr-4": {
  2894. "Hyperf\\Logger\\": "src/"
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "description": "A logger component for hyperf.",
  2902. "homepage": "https://hyperf.io",
  2903. "keywords": [
  2904. "hyperf",
  2905. "logger",
  2906. "php"
  2907. ],
  2908. "support": {
  2909. "docs": "https://hyperf.wiki",
  2910. "issues": "https://github.com/hyperf/hyperf/issues",
  2911. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2912. "source": "https://github.com/hyperf/hyperf"
  2913. },
  2914. "funding": [
  2915. {
  2916. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2917. "type": "custom"
  2918. },
  2919. {
  2920. "url": "https://opencollective.com/hyperf",
  2921. "type": "open_collective"
  2922. }
  2923. ],
  2924. "time": "2024-09-25T02:54:12+00:00"
  2925. },
  2926. {
  2927. "name": "hyperf/macroable",
  2928. "version": "v3.1.42",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/hyperf/macroable.git",
  2932. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2937. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": ">=8.1"
  2942. },
  2943. "type": "library",
  2944. "extra": {
  2945. "branch-alias": {
  2946. "dev-master": "3.1-dev"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "Hyperf\\Macroable\\": "src/"
  2952. }
  2953. },
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2959. "homepage": "https://hyperf.io",
  2960. "keywords": [
  2961. "hyperf",
  2962. "macroable",
  2963. "php",
  2964. "swoole"
  2965. ],
  2966. "support": {
  2967. "docs": "https://hyperf.wiki",
  2968. "issues": "https://github.com/hyperf/hyperf/issues",
  2969. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2970. "source": "https://github.com/hyperf/hyperf"
  2971. },
  2972. "funding": [
  2973. {
  2974. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://opencollective.com/hyperf",
  2979. "type": "open_collective"
  2980. }
  2981. ],
  2982. "time": "2024-09-25T02:54:12+00:00"
  2983. },
  2984. {
  2985. "name": "hyperf/memory",
  2986. "version": "v3.1.42",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/hyperf/memory.git",
  2990. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  2995. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=8.1"
  3000. },
  3001. "type": "library",
  3002. "extra": {
  3003. "branch-alias": {
  3004. "dev-master": "3.1-dev"
  3005. },
  3006. "hyperf": {
  3007. "config": "Hyperf\\Memory\\ConfigProvider"
  3008. }
  3009. },
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Hyperf\\Memory\\": "src/"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "description": "An independent component that use to operate and manage memory.",
  3020. "homepage": "https://hyperf.io",
  3021. "keywords": [
  3022. "hyperf",
  3023. "memory",
  3024. "php",
  3025. "swoole"
  3026. ],
  3027. "support": {
  3028. "docs": "https://hyperf.wiki",
  3029. "issues": "https://github.com/hyperf/hyperf/issues",
  3030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3031. "source": "https://github.com/hyperf/hyperf"
  3032. },
  3033. "funding": [
  3034. {
  3035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3036. "type": "custom"
  3037. },
  3038. {
  3039. "url": "https://opencollective.com/hyperf",
  3040. "type": "open_collective"
  3041. }
  3042. ],
  3043. "time": "2024-09-25T02:54:12+00:00"
  3044. },
  3045. {
  3046. "name": "hyperf/model-cache",
  3047. "version": "v3.1.42",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/hyperf/model-cache.git",
  3051. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/f1af97e63d12f9e2149bdef478541689cd31775f",
  3056. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f",
  3057. "shasum": ""
  3058. },
  3059. "require": {
  3060. "hyperf/codec": "~3.1.0",
  3061. "hyperf/contract": "~3.1.0",
  3062. "hyperf/db-connection": "~3.1.0",
  3063. "hyperf/support": "~3.1.0",
  3064. "hyperf/utils": "~3.1.0",
  3065. "php": ">=8.1",
  3066. "psr/container": "^1.0 || ^2.0",
  3067. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3068. },
  3069. "suggest": {
  3070. "hyperf/event": "Required to use DeleteCacheListener."
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.1-dev"
  3076. },
  3077. "hyperf": {
  3078. "config": "Hyperf\\ModelCache\\ConfigProvider"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\ModelCache\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "A model cache component for hyperf.",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "hyperf",
  3094. "model-cache",
  3095. "php"
  3096. ],
  3097. "support": {
  3098. "docs": "https://hyperf.wiki",
  3099. "issues": "https://github.com/hyperf/hyperf/issues",
  3100. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3101. "source": "https://github.com/hyperf/hyperf"
  3102. },
  3103. "funding": [
  3104. {
  3105. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3106. "type": "custom"
  3107. },
  3108. {
  3109. "url": "https://opencollective.com/hyperf",
  3110. "type": "open_collective"
  3111. }
  3112. ],
  3113. "time": "2024-09-25T02:54:12+00:00"
  3114. },
  3115. {
  3116. "name": "hyperf/model-listener",
  3117. "version": "v3.1.42",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/hyperf/model-listener.git",
  3121. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3126. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3127. "shasum": ""
  3128. },
  3129. "require": {
  3130. "hyperf/contract": "~3.1.0",
  3131. "hyperf/database": "~3.1.0",
  3132. "hyperf/di": "~3.1.0",
  3133. "hyperf/event": "~3.1.0",
  3134. "hyperf/support": "~3.1.0",
  3135. "hyperf/utils": "~3.1.0",
  3136. "php": ">=8.1",
  3137. "psr/container": "^1.0 || ^2.0"
  3138. },
  3139. "type": "library",
  3140. "extra": {
  3141. "branch-alias": {
  3142. "dev-master": "3.1-dev"
  3143. },
  3144. "hyperf": {
  3145. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3146. }
  3147. },
  3148. "autoload": {
  3149. "psr-4": {
  3150. "Hyperf\\ModelListener\\": "src/"
  3151. }
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "MIT"
  3156. ],
  3157. "description": "A model listener for Hyperf.",
  3158. "homepage": "https://hyperf.io",
  3159. "keywords": [
  3160. "hyperf",
  3161. "model-listener",
  3162. "php",
  3163. "swoole"
  3164. ],
  3165. "support": {
  3166. "docs": "https://hyperf.wiki",
  3167. "issues": "https://github.com/hyperf/hyperf/issues",
  3168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3169. "source": "https://github.com/hyperf/hyperf"
  3170. },
  3171. "funding": [
  3172. {
  3173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3174. "type": "custom"
  3175. },
  3176. {
  3177. "url": "https://opencollective.com/hyperf",
  3178. "type": "open_collective"
  3179. }
  3180. ],
  3181. "time": "2024-09-25T02:54:12+00:00"
  3182. },
  3183. {
  3184. "name": "hyperf/pipeline",
  3185. "version": "v3.1.42",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://github.com/hyperf/pipeline.git",
  3189. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3194. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3195. "shasum": ""
  3196. },
  3197. "require": {
  3198. "php": ">=8.1",
  3199. "psr/container": "^1.0 || ^2.0"
  3200. },
  3201. "type": "library",
  3202. "extra": {
  3203. "branch-alias": {
  3204. "dev-master": "3.1-dev"
  3205. }
  3206. },
  3207. "autoload": {
  3208. "psr-4": {
  3209. "Hyperf\\Pipeline\\": "src/"
  3210. }
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3217. "homepage": "https://hyperf.io",
  3218. "keywords": [
  3219. "hyperf",
  3220. "php",
  3221. "pipeline",
  3222. "swoole"
  3223. ],
  3224. "support": {
  3225. "docs": "https://hyperf.wiki",
  3226. "issues": "https://github.com/hyperf/hyperf/issues",
  3227. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3228. "source": "https://github.com/hyperf/hyperf"
  3229. },
  3230. "funding": [
  3231. {
  3232. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3233. "type": "custom"
  3234. },
  3235. {
  3236. "url": "https://opencollective.com/hyperf",
  3237. "type": "open_collective"
  3238. }
  3239. ],
  3240. "time": "2024-09-25T02:54:12+00:00"
  3241. },
  3242. {
  3243. "name": "hyperf/pool",
  3244. "version": "v3.1.42",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/hyperf/pool.git",
  3248. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3253. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "hyperf/contract": "~3.1.0",
  3258. "hyperf/support": "~3.1.0",
  3259. "hyperf/utils": "~3.1.0",
  3260. "php": ">=8.1",
  3261. "psr/container": "^1.0 || ^2.0"
  3262. },
  3263. "suggest": {
  3264. "psr/event-dispatcher": "Required to use events."
  3265. },
  3266. "type": "library",
  3267. "extra": {
  3268. "branch-alias": {
  3269. "dev-master": "3.1-dev"
  3270. },
  3271. "hyperf": {
  3272. "config": "Hyperf\\Pool\\ConfigProvider"
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "Hyperf\\Pool\\": "src/"
  3278. }
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "description": "An independent universal connection pool component.",
  3285. "homepage": "https://hyperf.io",
  3286. "keywords": [
  3287. "connection-pool",
  3288. "hyperf",
  3289. "php",
  3290. "swoole"
  3291. ],
  3292. "support": {
  3293. "docs": "https://hyperf.wiki",
  3294. "issues": "https://github.com/hyperf/hyperf/issues",
  3295. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3296. "source": "https://github.com/hyperf/hyperf"
  3297. },
  3298. "funding": [
  3299. {
  3300. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3301. "type": "custom"
  3302. },
  3303. {
  3304. "url": "https://opencollective.com/hyperf",
  3305. "type": "open_collective"
  3306. }
  3307. ],
  3308. "time": "2024-09-25T02:54:12+00:00"
  3309. },
  3310. {
  3311. "name": "hyperf/process",
  3312. "version": "v3.1.42",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/hyperf/process.git",
  3316. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3321. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3322. "shasum": ""
  3323. },
  3324. "require": {
  3325. "hyperf/contract": "~3.1.0",
  3326. "hyperf/support": "~3.1.0",
  3327. "hyperf/utils": "~3.1.0",
  3328. "php": ">=8.1",
  3329. "psr/container": "^1.0 || ^2.0",
  3330. "psr/event-dispatcher": "^1.0"
  3331. },
  3332. "suggest": {
  3333. "hyperf/di": "Required to use annotations.",
  3334. "hyperf/event": "Required to dump the message before and after process.",
  3335. "hyperf/framework": "Required to use BootProcessListener."
  3336. },
  3337. "type": "library",
  3338. "extra": {
  3339. "branch-alias": {
  3340. "dev-master": "3.1-dev"
  3341. },
  3342. "hyperf": {
  3343. "config": "Hyperf\\Process\\ConfigProvider"
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Hyperf\\Process\\": "src/"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "description": "A process component for hyperf.",
  3356. "homepage": "https://hyperf.io",
  3357. "keywords": [
  3358. "hyperf",
  3359. "php",
  3360. "process"
  3361. ],
  3362. "support": {
  3363. "docs": "https://hyperf.wiki",
  3364. "issues": "https://github.com/hyperf/hyperf/issues",
  3365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3366. "source": "https://github.com/hyperf/hyperf"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://opencollective.com/hyperf",
  3375. "type": "open_collective"
  3376. }
  3377. ],
  3378. "time": "2024-09-25T02:54:12+00:00"
  3379. },
  3380. {
  3381. "name": "hyperf/redis",
  3382. "version": "v3.1.42",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/hyperf/redis.git",
  3386. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3391. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "ext-redis": "^5.0 || ^6.0",
  3396. "hyperf/contract": "~3.1.0",
  3397. "hyperf/pool": "~3.1.0",
  3398. "hyperf/support": "~3.1.0",
  3399. "hyperf/tappable": "~3.1.0",
  3400. "hyperf/utils": "~3.1.0",
  3401. "php": ">=8.1",
  3402. "psr/container": "^1.0 || ^2.0"
  3403. },
  3404. "suggest": {
  3405. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3406. "hyperf/di": "Create the RedisPool via dependency injection."
  3407. },
  3408. "type": "library",
  3409. "extra": {
  3410. "branch-alias": {
  3411. "dev-master": "3.1-dev"
  3412. },
  3413. "hyperf": {
  3414. "config": "Hyperf\\Redis\\ConfigProvider"
  3415. }
  3416. },
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Hyperf\\Redis\\": "src/"
  3420. }
  3421. },
  3422. "notification-url": "https://packagist.org/downloads/",
  3423. "license": [
  3424. "MIT"
  3425. ],
  3426. "description": "A redis component for hyperf.",
  3427. "homepage": "https://hyperf.io",
  3428. "keywords": [
  3429. "hyperf",
  3430. "php",
  3431. "pool",
  3432. "redis"
  3433. ],
  3434. "support": {
  3435. "docs": "https://hyperf.wiki",
  3436. "issues": "https://github.com/hyperf/hyperf/issues",
  3437. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3438. "source": "https://github.com/hyperf/hyperf"
  3439. },
  3440. "funding": [
  3441. {
  3442. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3443. "type": "custom"
  3444. },
  3445. {
  3446. "url": "https://opencollective.com/hyperf",
  3447. "type": "open_collective"
  3448. }
  3449. ],
  3450. "time": "2024-09-25T02:54:12+00:00"
  3451. },
  3452. {
  3453. "name": "hyperf/rpc",
  3454. "version": "v3.1.42",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/hyperf/rpc.git",
  3458. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3463. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "hyperf/codec": "~3.1.0",
  3468. "hyperf/contract": "~3.1.0",
  3469. "hyperf/support": "~3.1.0",
  3470. "jetbrains/phpstorm-attributes": "^1.0",
  3471. "php": ">=8.1"
  3472. },
  3473. "type": "library",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-master": "3.1-dev"
  3477. },
  3478. "hyperf": []
  3479. },
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Hyperf\\Rpc\\": "src/"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "description": "A rpc basic library for Hyperf.",
  3490. "homepage": "https://hyperf.io",
  3491. "keywords": [
  3492. "hyperf",
  3493. "php",
  3494. "rpc",
  3495. "swoole"
  3496. ],
  3497. "support": {
  3498. "docs": "https://hyperf.wiki",
  3499. "issues": "https://github.com/hyperf/hyperf/issues",
  3500. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3501. "source": "https://github.com/hyperf/hyperf"
  3502. },
  3503. "funding": [
  3504. {
  3505. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3506. "type": "custom"
  3507. },
  3508. {
  3509. "url": "https://opencollective.com/hyperf",
  3510. "type": "open_collective"
  3511. }
  3512. ],
  3513. "time": "2024-09-25T02:54:12+00:00"
  3514. },
  3515. {
  3516. "name": "hyperf/rpc-client",
  3517. "version": "v3.1.42",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://github.com/hyperf/rpc-client.git",
  3521. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3526. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3527. "shasum": ""
  3528. },
  3529. "require": {
  3530. "hyperf/code-parser": "~3.1.0",
  3531. "hyperf/load-balancer": "~3.1.0",
  3532. "hyperf/rpc": "~3.1.0",
  3533. "hyperf/support": "~3.1.0",
  3534. "hyperf/utils": "~3.1.0",
  3535. "jetbrains/phpstorm-attributes": "^1.0",
  3536. "php": ">=8.1",
  3537. "psr/container": "^1.0 || ^2.0"
  3538. },
  3539. "suggest": {
  3540. "hyperf/di": "For better container experience.",
  3541. "hyperf/pool": "Required to use connection pool.",
  3542. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3543. },
  3544. "type": "library",
  3545. "extra": {
  3546. "branch-alias": {
  3547. "dev-master": "3.1-dev"
  3548. },
  3549. "hyperf": {
  3550. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3551. }
  3552. },
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Hyperf\\RpcClient\\": "src/"
  3556. }
  3557. },
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "description": "An abstract rpc server component for Hyperf.",
  3563. "homepage": "https://hyperf.io",
  3564. "keywords": [
  3565. "hyperf",
  3566. "json-rpc",
  3567. "php",
  3568. "rpc",
  3569. "rpc-client",
  3570. "swoole"
  3571. ],
  3572. "support": {
  3573. "docs": "https://hyperf.wiki",
  3574. "issues": "https://github.com/hyperf/hyperf/issues",
  3575. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3576. "source": "https://github.com/hyperf/hyperf"
  3577. },
  3578. "funding": [
  3579. {
  3580. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3581. "type": "custom"
  3582. },
  3583. {
  3584. "url": "https://opencollective.com/hyperf",
  3585. "type": "open_collective"
  3586. }
  3587. ],
  3588. "time": "2024-09-25T02:54:12+00:00"
  3589. },
  3590. {
  3591. "name": "hyperf/rpc-server",
  3592. "version": "v3.1.42",
  3593. "source": {
  3594. "type": "git",
  3595. "url": "https://github.com/hyperf/rpc-server.git",
  3596. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3597. },
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3601. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3602. "shasum": ""
  3603. },
  3604. "require": {
  3605. "hyperf/http-server": "~3.1.0",
  3606. "hyperf/rpc": "~3.1.0",
  3607. "php": ">=8.1"
  3608. },
  3609. "suggest": {
  3610. "hyperf/di": "Required to use annotations."
  3611. },
  3612. "type": "library",
  3613. "extra": {
  3614. "branch-alias": {
  3615. "dev-master": "3.1-dev"
  3616. },
  3617. "hyperf": {
  3618. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3619. }
  3620. },
  3621. "autoload": {
  3622. "psr-4": {
  3623. "Hyperf\\RpcServer\\": "src/"
  3624. }
  3625. },
  3626. "notification-url": "https://packagist.org/downloads/",
  3627. "license": [
  3628. "MIT"
  3629. ],
  3630. "description": "An abstract rpc server component for Hyperf.",
  3631. "homepage": "https://hyperf.io",
  3632. "keywords": [
  3633. "hyperf",
  3634. "php",
  3635. "rpc",
  3636. "rpc-server",
  3637. "swoole"
  3638. ],
  3639. "support": {
  3640. "docs": "https://hyperf.wiki",
  3641. "issues": "https://github.com/hyperf/hyperf/issues",
  3642. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3643. "source": "https://github.com/hyperf/hyperf"
  3644. },
  3645. "funding": [
  3646. {
  3647. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3648. "type": "custom"
  3649. },
  3650. {
  3651. "url": "https://opencollective.com/hyperf",
  3652. "type": "open_collective"
  3653. }
  3654. ],
  3655. "time": "2024-09-25T02:54:12+00:00"
  3656. },
  3657. {
  3658. "name": "hyperf/serializer",
  3659. "version": "v3.1.42",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://github.com/hyperf/serializer.git",
  3663. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3668. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3669. "shasum": ""
  3670. },
  3671. "require": {
  3672. "hyperf/contract": "~3.1.0",
  3673. "php": ">=8.1"
  3674. },
  3675. "suggest": {
  3676. "hyperf/di": "Required to use ExceptionNormalizer",
  3677. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3678. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3679. },
  3680. "type": "library",
  3681. "extra": {
  3682. "branch-alias": {
  3683. "dev-master": "3.1-dev"
  3684. },
  3685. "hyperf": {
  3686. "config": "Hyperf\\Serializer\\ConfigProvider"
  3687. }
  3688. },
  3689. "autoload": {
  3690. "psr-4": {
  3691. "Hyperf\\Serializer\\": "src/"
  3692. }
  3693. },
  3694. "notification-url": "https://packagist.org/downloads/",
  3695. "license": [
  3696. "MIT"
  3697. ],
  3698. "description": "A serializer component for Hyperf.",
  3699. "homepage": "https://hyperf.io",
  3700. "keywords": [
  3701. "hyperf",
  3702. "php",
  3703. "swoole",
  3704. "tappable"
  3705. ],
  3706. "support": {
  3707. "docs": "https://hyperf.wiki",
  3708. "issues": "https://github.com/hyperf/hyperf/issues",
  3709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3710. "source": "https://github.com/hyperf/hyperf"
  3711. },
  3712. "funding": [
  3713. {
  3714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3715. "type": "custom"
  3716. },
  3717. {
  3718. "url": "https://opencollective.com/hyperf",
  3719. "type": "open_collective"
  3720. }
  3721. ],
  3722. "time": "2024-09-25T02:54:12+00:00"
  3723. },
  3724. {
  3725. "name": "hyperf/server",
  3726. "version": "v3.1.42",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://github.com/hyperf/server.git",
  3730. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3735. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3736. "shasum": ""
  3737. },
  3738. "require": {
  3739. "hyperf/contract": "~3.1.0",
  3740. "hyperf/coordinator": "~3.1.0",
  3741. "hyperf/engine": "^2.8",
  3742. "hyperf/support": "~3.1.0",
  3743. "hyperf/tappable": "~3.1.0",
  3744. "php": ">=8.1",
  3745. "psr/container": "^1.0 || ^2.0",
  3746. "psr/event-dispatcher": "^1.0",
  3747. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3748. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3749. },
  3750. "suggest": {
  3751. "hyperf/event": "Dump the info after server start.",
  3752. "hyperf/framework": "Dump the info after server start."
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "3.1-dev"
  3758. },
  3759. "hyperf": {
  3760. "config": "Hyperf\\Server\\ConfigProvider"
  3761. }
  3762. },
  3763. "autoload": {
  3764. "psr-4": {
  3765. "Hyperf\\Server\\": "src/"
  3766. }
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "description": "A base server library for Hyperf.",
  3773. "homepage": "https://hyperf.io",
  3774. "keywords": [
  3775. "hyperf",
  3776. "php",
  3777. "server",
  3778. "swoole"
  3779. ],
  3780. "support": {
  3781. "docs": "https://hyperf.wiki",
  3782. "issues": "https://github.com/hyperf/hyperf/issues",
  3783. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3784. "source": "https://github.com/hyperf/hyperf"
  3785. },
  3786. "funding": [
  3787. {
  3788. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3789. "type": "custom"
  3790. },
  3791. {
  3792. "url": "https://opencollective.com/hyperf",
  3793. "type": "open_collective"
  3794. }
  3795. ],
  3796. "time": "2024-09-25T02:54:12+00:00"
  3797. },
  3798. {
  3799. "name": "hyperf/service-governance",
  3800. "version": "v3.1.42",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/hyperf/service-governance.git",
  3804. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3809. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3810. "shasum": ""
  3811. },
  3812. "require": {
  3813. "hyperf/contract": "~3.1.0",
  3814. "hyperf/support": "~3.1.0",
  3815. "jetbrains/phpstorm-attributes": "^1.0",
  3816. "php": ">=8.1"
  3817. },
  3818. "suggest": {
  3819. "hyperf/event": "Required to use RegisterServiceListener.",
  3820. "hyperf/framework": "Required to use RegisterServiceListener.",
  3821. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3822. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3823. },
  3824. "type": "library",
  3825. "extra": {
  3826. "branch-alias": {
  3827. "dev-master": "3.1-dev"
  3828. },
  3829. "hyperf": {
  3830. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3831. }
  3832. },
  3833. "autoload": {
  3834. "psr-4": {
  3835. "Hyperf\\ServiceGovernance\\": "src/"
  3836. }
  3837. },
  3838. "notification-url": "https://packagist.org/downloads/",
  3839. "license": [
  3840. "MIT"
  3841. ],
  3842. "description": "A service governance component for Hyperf.",
  3843. "homepage": "https://hyperf.io",
  3844. "keywords": [
  3845. "hyperf",
  3846. "php",
  3847. "service-governance",
  3848. "swoole"
  3849. ],
  3850. "support": {
  3851. "docs": "https://hyperf.wiki",
  3852. "issues": "https://github.com/hyperf/hyperf/issues",
  3853. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3854. "source": "https://github.com/hyperf/hyperf"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3859. "type": "custom"
  3860. },
  3861. {
  3862. "url": "https://opencollective.com/hyperf",
  3863. "type": "open_collective"
  3864. }
  3865. ],
  3866. "time": "2024-09-25T02:54:12+00:00"
  3867. },
  3868. {
  3869. "name": "hyperf/stdlib",
  3870. "version": "v3.1.42",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/hyperf/stdlib.git",
  3874. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3879. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "php": ">=8.1"
  3884. },
  3885. "type": "library",
  3886. "extra": {
  3887. "branch-alias": {
  3888. "dev-master": "3.1-dev"
  3889. }
  3890. },
  3891. "autoload": {
  3892. "psr-4": {
  3893. "Hyperf\\Stdlib\\": "src/"
  3894. }
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "MIT"
  3899. ],
  3900. "description": "A stdlib component for Hyperf.",
  3901. "homepage": "https://hyperf.io",
  3902. "keywords": [
  3903. "hyperf",
  3904. "php",
  3905. "stdlib",
  3906. "swoole"
  3907. ],
  3908. "support": {
  3909. "docs": "https://hyperf.wiki",
  3910. "issues": "https://github.com/hyperf/hyperf/issues",
  3911. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3912. "source": "https://github.com/hyperf/hyperf"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://opencollective.com/hyperf",
  3921. "type": "open_collective"
  3922. }
  3923. ],
  3924. "time": "2024-09-25T02:54:12+00:00"
  3925. },
  3926. {
  3927. "name": "hyperf/stringable",
  3928. "version": "v3.1.43",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/hyperf/stringable.git",
  3932. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  3937. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "ext-mbstring": "*",
  3942. "hyperf/collection": "~3.1.0",
  3943. "hyperf/conditionable": "~3.1.0",
  3944. "hyperf/macroable": "~3.1.0",
  3945. "hyperf/tappable": "~3.1.0",
  3946. "php": ">=8.1"
  3947. },
  3948. "suggest": {
  3949. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  3950. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  3951. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  3952. },
  3953. "type": "library",
  3954. "extra": {
  3955. "branch-alias": {
  3956. "dev-master": "3.1-dev"
  3957. }
  3958. },
  3959. "autoload": {
  3960. "files": [
  3961. "src/Functions.php"
  3962. ],
  3963. "psr-4": {
  3964. "Hyperf\\Stringable\\": "src/"
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "description": "Hyperf Stringable package which come from illuminate/support",
  3972. "homepage": "https://hyperf.io",
  3973. "keywords": [
  3974. "hyperf",
  3975. "php",
  3976. "stringable",
  3977. "swoole"
  3978. ],
  3979. "support": {
  3980. "docs": "https://hyperf.wiki",
  3981. "issues": "https://github.com/hyperf/hyperf/issues",
  3982. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3983. "source": "https://github.com/hyperf/hyperf"
  3984. },
  3985. "funding": [
  3986. {
  3987. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3988. "type": "custom"
  3989. },
  3990. {
  3991. "url": "https://opencollective.com/hyperf",
  3992. "type": "open_collective"
  3993. }
  3994. ],
  3995. "time": "2024-10-09T02:28:40+00:00"
  3996. },
  3997. {
  3998. "name": "hyperf/support",
  3999. "version": "v3.1.42",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/hyperf/support.git",
  4003. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4008. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "hyperf/collection": "~3.1.0",
  4013. "hyperf/context": "~3.1.0",
  4014. "hyperf/contract": "~3.1.0",
  4015. "hyperf/coroutine": "~3.1.0",
  4016. "hyperf/macroable": "~3.1.0",
  4017. "hyperf/stringable": "~3.1.0",
  4018. "php": ">=8.1"
  4019. },
  4020. "suggest": {
  4021. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "3.1-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "files": [
  4031. "src/Functions.php"
  4032. ],
  4033. "psr-4": {
  4034. "Hyperf\\Support\\": "src/"
  4035. }
  4036. },
  4037. "notification-url": "https://packagist.org/downloads/",
  4038. "license": [
  4039. "MIT"
  4040. ],
  4041. "description": "A support component for Hyperf.",
  4042. "homepage": "https://hyperf.io",
  4043. "keywords": [
  4044. "hyperf",
  4045. "php",
  4046. "support",
  4047. "swoole"
  4048. ],
  4049. "support": {
  4050. "docs": "https://hyperf.wiki",
  4051. "issues": "https://github.com/hyperf/hyperf/issues",
  4052. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4053. "source": "https://github.com/hyperf/hyperf"
  4054. },
  4055. "funding": [
  4056. {
  4057. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4058. "type": "custom"
  4059. },
  4060. {
  4061. "url": "https://opencollective.com/hyperf",
  4062. "type": "open_collective"
  4063. }
  4064. ],
  4065. "time": "2024-09-25T02:54:12+00:00"
  4066. },
  4067. {
  4068. "name": "hyperf/tappable",
  4069. "version": "v3.1.42",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://github.com/hyperf/tappable.git",
  4073. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4078. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4079. "shasum": ""
  4080. },
  4081. "require": {
  4082. "php": ">=8.1"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "3.1-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "files": [
  4092. "src/Functions.php"
  4093. ],
  4094. "psr-4": {
  4095. "Hyperf\\Tappable\\": "src/"
  4096. }
  4097. },
  4098. "notification-url": "https://packagist.org/downloads/",
  4099. "license": [
  4100. "MIT"
  4101. ],
  4102. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4103. "homepage": "https://hyperf.io",
  4104. "keywords": [
  4105. "hyperf",
  4106. "php",
  4107. "swoole",
  4108. "tappable"
  4109. ],
  4110. "support": {
  4111. "docs": "https://hyperf.wiki",
  4112. "issues": "https://github.com/hyperf/hyperf/issues",
  4113. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4114. "source": "https://github.com/hyperf/hyperf"
  4115. },
  4116. "funding": [
  4117. {
  4118. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4119. "type": "custom"
  4120. },
  4121. {
  4122. "url": "https://opencollective.com/hyperf",
  4123. "type": "open_collective"
  4124. }
  4125. ],
  4126. "time": "2024-09-25T02:54:12+00:00"
  4127. },
  4128. {
  4129. "name": "hyperf/tracer",
  4130. "version": "v3.1.42",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/hyperf/tracer.git",
  4134. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/hyperf/tracer/zipball/8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4139. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "hyperf/contract": "~3.1.0",
  4144. "hyperf/di": "~3.1.0",
  4145. "hyperf/guzzle": "~3.1.0",
  4146. "hyperf/support": "~3.1.0",
  4147. "hyperf/utils": "~3.1.0",
  4148. "jcchavezs/zipkin-opentracing": "^2.0",
  4149. "opentracing/opentracing": "^1.0",
  4150. "php": ">=8.1",
  4151. "psr/http-message": "^1.0 || ^2.0"
  4152. },
  4153. "suggest": {
  4154. "hyperf/event": "Required to use DbQueryExecutedListener.",
  4155. "jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing.",
  4156. "longlang/phpkafka": "Required (^1.2) to use Kafka Producer."
  4157. },
  4158. "type": "library",
  4159. "extra": {
  4160. "branch-alias": {
  4161. "dev-master": "3.1-dev"
  4162. },
  4163. "hyperf": {
  4164. "config": "Hyperf\\Tracer\\ConfigProvider"
  4165. }
  4166. },
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Hyperf\\Tracer\\": "src/"
  4170. }
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  4177. "homepage": "https://hyperf.io",
  4178. "keywords": [
  4179. "hyperf",
  4180. "open-tracing",
  4181. "php",
  4182. "zipkin"
  4183. ],
  4184. "support": {
  4185. "docs": "https://hyperf.wiki",
  4186. "issues": "https://github.com/hyperf/hyperf/issues",
  4187. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4188. "source": "https://github.com/hyperf/hyperf"
  4189. },
  4190. "funding": [
  4191. {
  4192. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4193. "type": "custom"
  4194. },
  4195. {
  4196. "url": "https://opencollective.com/hyperf",
  4197. "type": "open_collective"
  4198. }
  4199. ],
  4200. "time": "2024-09-25T02:54:12+00:00"
  4201. },
  4202. {
  4203. "name": "hyperf/utils",
  4204. "version": "v3.1.42",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/hyperf/utils.git",
  4208. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4213. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "doctrine/inflector": "^2.0",
  4218. "hyperf/code-parser": "~3.1.0",
  4219. "hyperf/codec": "~3.1.0",
  4220. "hyperf/collection": "~3.1.0",
  4221. "hyperf/context": "~3.1.0",
  4222. "hyperf/contract": "~3.1.0",
  4223. "hyperf/coordinator": "~3.1.0",
  4224. "hyperf/coroutine": "~3.1.0",
  4225. "hyperf/engine": "^2.0",
  4226. "hyperf/macroable": "~3.1.0",
  4227. "hyperf/serializer": "~3.1.0",
  4228. "hyperf/stringable": "~3.1.0",
  4229. "hyperf/support": "~3.1.0",
  4230. "php": ">=8.1"
  4231. },
  4232. "type": "library",
  4233. "extra": {
  4234. "branch-alias": {
  4235. "dev-master": "3.1-dev"
  4236. }
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "description": "A tools package that could help developer solved the problem quickly.",
  4243. "homepage": "https://hyperf.io",
  4244. "keywords": [
  4245. "hyperf",
  4246. "php",
  4247. "swoole",
  4248. "utils"
  4249. ],
  4250. "support": {
  4251. "docs": "https://hyperf.wiki",
  4252. "issues": "https://github.com/hyperf/hyperf/issues",
  4253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4254. "source": "https://github.com/hyperf/hyperf"
  4255. },
  4256. "funding": [
  4257. {
  4258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4259. "type": "custom"
  4260. },
  4261. {
  4262. "url": "https://opencollective.com/hyperf",
  4263. "type": "open_collective"
  4264. }
  4265. ],
  4266. "time": "2024-09-25T02:54:12+00:00"
  4267. },
  4268. {
  4269. "name": "jcchavezs/zipkin-opentracing",
  4270. "version": "2.0.4",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  4274. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4279. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "opentracing/opentracing": "^1.0.1",
  4284. "openzipkin/zipkin": "^3.0.0",
  4285. "php": ">=7.4 || ^8.0"
  4286. },
  4287. "provide": {
  4288. "opentracing/opentracing": "1.0.0"
  4289. },
  4290. "require-dev": {
  4291. "phpspec/prophecy-phpunit": "^2.0",
  4292. "phpstan/phpstan": "^0.12.26",
  4293. "phpunit/phpunit": "^9.0",
  4294. "squizlabs/php_codesniffer": "3.*"
  4295. },
  4296. "type": "library",
  4297. "autoload": {
  4298. "psr-4": {
  4299. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  4300. }
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "José Carlos Chávez",
  4309. "email": "jcchavezs@gmail.com"
  4310. }
  4311. ],
  4312. "description": "A Zipkin bridge with OpenTracing",
  4313. "support": {
  4314. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  4315. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/2.0.4"
  4316. },
  4317. "funding": [
  4318. {
  4319. "url": "https://www.paypal.me/jcchavezs",
  4320. "type": "paypal"
  4321. }
  4322. ],
  4323. "time": "2023-11-03T22:38:29+00:00"
  4324. },
  4325. {
  4326. "name": "jetbrains/phpstorm-attributes",
  4327. "version": "1.1",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4331. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4336. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4337. "shasum": ""
  4338. },
  4339. "type": "library",
  4340. "autoload": {
  4341. "psr-4": {
  4342. "JetBrains\\PhpStorm\\": "src/"
  4343. }
  4344. },
  4345. "notification-url": "https://packagist.org/downloads/",
  4346. "license": [
  4347. "Apache-2.0"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "JetBrains",
  4352. "homepage": "https://www.jetbrains.com"
  4353. }
  4354. ],
  4355. "description": "PhpStorm specific attributes",
  4356. "keywords": [
  4357. "attributes",
  4358. "jetbrains",
  4359. "phpstorm"
  4360. ],
  4361. "support": {
  4362. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4363. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4364. },
  4365. "time": "2023-09-01T08:50:25+00:00"
  4366. },
  4367. {
  4368. "name": "laminas/laminas-mime",
  4369. "version": "2.12.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/laminas/laminas-mime.git",
  4373. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4378. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4383. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4384. },
  4385. "conflict": {
  4386. "zendframework/zend-mime": "*"
  4387. },
  4388. "require-dev": {
  4389. "laminas/laminas-coding-standard": "~2.4.0",
  4390. "laminas/laminas-mail": "^2.19.0",
  4391. "phpunit/phpunit": "~9.5.25"
  4392. },
  4393. "suggest": {
  4394. "laminas/laminas-mail": "Laminas\\Mail component"
  4395. },
  4396. "type": "library",
  4397. "autoload": {
  4398. "psr-4": {
  4399. "Laminas\\Mime\\": "src/"
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "BSD-3-Clause"
  4405. ],
  4406. "description": "Create and parse MIME messages and parts",
  4407. "homepage": "https://laminas.dev",
  4408. "keywords": [
  4409. "laminas",
  4410. "mime"
  4411. ],
  4412. "support": {
  4413. "chat": "https://laminas.dev/chat",
  4414. "docs": "https://docs.laminas.dev/laminas-mime/",
  4415. "forum": "https://discourse.laminas.dev",
  4416. "issues": "https://github.com/laminas/laminas-mime/issues",
  4417. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4418. "source": "https://github.com/laminas/laminas-mime"
  4419. },
  4420. "funding": [
  4421. {
  4422. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4423. "type": "community_bridge"
  4424. }
  4425. ],
  4426. "time": "2023-11-02T16:47:19+00:00"
  4427. },
  4428. {
  4429. "name": "laminas/laminas-stdlib",
  4430. "version": "3.19.0",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://github.com/laminas/laminas-stdlib.git",
  4434. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4435. },
  4436. "dist": {
  4437. "type": "zip",
  4438. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4439. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4440. "shasum": ""
  4441. },
  4442. "require": {
  4443. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4444. },
  4445. "conflict": {
  4446. "zendframework/zend-stdlib": "*"
  4447. },
  4448. "require-dev": {
  4449. "laminas/laminas-coding-standard": "^2.5",
  4450. "phpbench/phpbench": "^1.2.15",
  4451. "phpunit/phpunit": "^10.5.8",
  4452. "psalm/plugin-phpunit": "^0.18.4",
  4453. "vimeo/psalm": "^5.20.0"
  4454. },
  4455. "type": "library",
  4456. "autoload": {
  4457. "psr-4": {
  4458. "Laminas\\Stdlib\\": "src/"
  4459. }
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "BSD-3-Clause"
  4464. ],
  4465. "description": "SPL extensions, array utilities, error handlers, and more",
  4466. "homepage": "https://laminas.dev",
  4467. "keywords": [
  4468. "laminas",
  4469. "stdlib"
  4470. ],
  4471. "support": {
  4472. "chat": "https://laminas.dev/chat",
  4473. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4474. "forum": "https://discourse.laminas.dev",
  4475. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4476. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4477. "source": "https://github.com/laminas/laminas-stdlib"
  4478. },
  4479. "funding": [
  4480. {
  4481. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4482. "type": "community_bridge"
  4483. }
  4484. ],
  4485. "time": "2024-01-19T12:39:49+00:00"
  4486. },
  4487. {
  4488. "name": "markrogoyski/math-php",
  4489. "version": "v2.10.0",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/markrogoyski/math-php.git",
  4493. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4498. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4499. "shasum": ""
  4500. },
  4501. "require": {
  4502. "ext-json": "*",
  4503. "php": ">=7.2.0"
  4504. },
  4505. "require-dev": {
  4506. "php-coveralls/php-coveralls": "^2.0",
  4507. "php-parallel-lint/php-parallel-lint": "^1.2",
  4508. "phploc/phploc": "*",
  4509. "phpmd/phpmd": "^2.6",
  4510. "phpstan/phpstan": "^1.10",
  4511. "phpunit/phpunit": "^8.5",
  4512. "squizlabs/php_codesniffer": "3.*"
  4513. },
  4514. "type": "library",
  4515. "autoload": {
  4516. "psr-4": {
  4517. "MathPHP\\": "src/"
  4518. }
  4519. },
  4520. "notification-url": "https://packagist.org/downloads/",
  4521. "license": [
  4522. "MIT"
  4523. ],
  4524. "authors": [
  4525. {
  4526. "name": "Mark Rogoyski",
  4527. "email": "mark@rogoyski.com",
  4528. "homepage": "https://github.com/markrogoyski",
  4529. "role": "Lead developer"
  4530. },
  4531. {
  4532. "name": "Kevin Nowaczyk",
  4533. "homepage": "https://github.com/Beakerboy",
  4534. "role": "Developer"
  4535. },
  4536. {
  4537. "name": "MathPHP Community of Contributors",
  4538. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4539. }
  4540. ],
  4541. "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",
  4542. "homepage": "https://github.com/markrogoyski/math-php/",
  4543. "keywords": [
  4544. "algebra",
  4545. "combinatorics",
  4546. "distributions",
  4547. "linear algebra",
  4548. "math",
  4549. "mathematics",
  4550. "matrix",
  4551. "numerical analysis",
  4552. "probability",
  4553. "regressions",
  4554. "statistics"
  4555. ],
  4556. "support": {
  4557. "issues": "https://github.com/markrogoyski/math-php/issues",
  4558. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4559. },
  4560. "time": "2024-04-17T00:09:51+00:00"
  4561. },
  4562. {
  4563. "name": "monolog/monolog",
  4564. "version": "3.7.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/Seldaek/monolog.git",
  4568. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4573. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "php": ">=8.1",
  4578. "psr/log": "^2.0 || ^3.0"
  4579. },
  4580. "provide": {
  4581. "psr/log-implementation": "3.0.0"
  4582. },
  4583. "require-dev": {
  4584. "aws/aws-sdk-php": "^3.0",
  4585. "doctrine/couchdb": "~1.0@dev",
  4586. "elasticsearch/elasticsearch": "^7 || ^8",
  4587. "ext-json": "*",
  4588. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4589. "guzzlehttp/guzzle": "^7.4.5",
  4590. "guzzlehttp/psr7": "^2.2",
  4591. "mongodb/mongodb": "^1.8",
  4592. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4593. "phpstan/phpstan": "^1.9",
  4594. "phpstan/phpstan-deprecation-rules": "^1.0",
  4595. "phpstan/phpstan-strict-rules": "^1.4",
  4596. "phpunit/phpunit": "^10.5.17",
  4597. "predis/predis": "^1.1 || ^2",
  4598. "ruflin/elastica": "^7",
  4599. "symfony/mailer": "^5.4 || ^6",
  4600. "symfony/mime": "^5.4 || ^6"
  4601. },
  4602. "suggest": {
  4603. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4604. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4605. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4606. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4607. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4608. "ext-mbstring": "Allow to work properly with unicode symbols",
  4609. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4610. "ext-openssl": "Required to send log messages using SSL",
  4611. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4612. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4613. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4614. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4615. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4616. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4617. },
  4618. "type": "library",
  4619. "extra": {
  4620. "branch-alias": {
  4621. "dev-main": "3.x-dev"
  4622. }
  4623. },
  4624. "autoload": {
  4625. "psr-4": {
  4626. "Monolog\\": "src/Monolog"
  4627. }
  4628. },
  4629. "notification-url": "https://packagist.org/downloads/",
  4630. "license": [
  4631. "MIT"
  4632. ],
  4633. "authors": [
  4634. {
  4635. "name": "Jordi Boggiano",
  4636. "email": "j.boggiano@seld.be",
  4637. "homepage": "https://seld.be"
  4638. }
  4639. ],
  4640. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4641. "homepage": "https://github.com/Seldaek/monolog",
  4642. "keywords": [
  4643. "log",
  4644. "logging",
  4645. "psr-3"
  4646. ],
  4647. "support": {
  4648. "issues": "https://github.com/Seldaek/monolog/issues",
  4649. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4650. },
  4651. "funding": [
  4652. {
  4653. "url": "https://github.com/Seldaek",
  4654. "type": "github"
  4655. },
  4656. {
  4657. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4658. "type": "tidelift"
  4659. }
  4660. ],
  4661. "time": "2024-06-28T09:40:51+00:00"
  4662. },
  4663. {
  4664. "name": "nesbot/carbon",
  4665. "version": "2.72.5",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/briannesbitt/Carbon.git",
  4669. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4674. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "carbonphp/carbon-doctrine-types": "*",
  4679. "ext-json": "*",
  4680. "php": "^7.1.8 || ^8.0",
  4681. "psr/clock": "^1.0",
  4682. "symfony/polyfill-mbstring": "^1.0",
  4683. "symfony/polyfill-php80": "^1.16",
  4684. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4685. },
  4686. "provide": {
  4687. "psr/clock-implementation": "1.0"
  4688. },
  4689. "require-dev": {
  4690. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4691. "doctrine/orm": "^2.7 || ^3.0",
  4692. "friendsofphp/php-cs-fixer": "^3.0",
  4693. "kylekatarnls/multi-tester": "^2.0",
  4694. "ondrejmirtes/better-reflection": "*",
  4695. "phpmd/phpmd": "^2.9",
  4696. "phpstan/extension-installer": "^1.0",
  4697. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4698. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4699. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4700. "squizlabs/php_codesniffer": "^3.4"
  4701. },
  4702. "bin": [
  4703. "bin/carbon"
  4704. ],
  4705. "type": "library",
  4706. "extra": {
  4707. "branch-alias": {
  4708. "dev-master": "3.x-dev",
  4709. "dev-2.x": "2.x-dev"
  4710. },
  4711. "laravel": {
  4712. "providers": [
  4713. "Carbon\\Laravel\\ServiceProvider"
  4714. ]
  4715. },
  4716. "phpstan": {
  4717. "includes": [
  4718. "extension.neon"
  4719. ]
  4720. }
  4721. },
  4722. "autoload": {
  4723. "psr-4": {
  4724. "Carbon\\": "src/Carbon/"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Brian Nesbitt",
  4734. "email": "brian@nesbot.com",
  4735. "homepage": "https://markido.com"
  4736. },
  4737. {
  4738. "name": "kylekatarnls",
  4739. "homepage": "https://github.com/kylekatarnls"
  4740. }
  4741. ],
  4742. "description": "An API extension for DateTime that supports 281 different languages.",
  4743. "homepage": "https://carbon.nesbot.com",
  4744. "keywords": [
  4745. "date",
  4746. "datetime",
  4747. "time"
  4748. ],
  4749. "support": {
  4750. "docs": "https://carbon.nesbot.com/docs",
  4751. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4752. "source": "https://github.com/briannesbitt/Carbon"
  4753. },
  4754. "funding": [
  4755. {
  4756. "url": "https://github.com/sponsors/kylekatarnls",
  4757. "type": "github"
  4758. },
  4759. {
  4760. "url": "https://opencollective.com/Carbon#sponsor",
  4761. "type": "opencollective"
  4762. },
  4763. {
  4764. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4765. "type": "tidelift"
  4766. }
  4767. ],
  4768. "time": "2024-06-03T19:18:41+00:00"
  4769. },
  4770. {
  4771. "name": "nikic/fast-route",
  4772. "version": "v1.3.0",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/nikic/FastRoute.git",
  4776. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4781. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": ">=5.4.0"
  4786. },
  4787. "require-dev": {
  4788. "phpunit/phpunit": "^4.8.35|~5.7"
  4789. },
  4790. "type": "library",
  4791. "autoload": {
  4792. "files": [
  4793. "src/functions.php"
  4794. ],
  4795. "psr-4": {
  4796. "FastRoute\\": "src/"
  4797. }
  4798. },
  4799. "notification-url": "https://packagist.org/downloads/",
  4800. "license": [
  4801. "BSD-3-Clause"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "Nikita Popov",
  4806. "email": "nikic@php.net"
  4807. }
  4808. ],
  4809. "description": "Fast request router for PHP",
  4810. "keywords": [
  4811. "router",
  4812. "routing"
  4813. ],
  4814. "support": {
  4815. "issues": "https://github.com/nikic/FastRoute/issues",
  4816. "source": "https://github.com/nikic/FastRoute/tree/master"
  4817. },
  4818. "time": "2018-02-13T20:26:39+00:00"
  4819. },
  4820. {
  4821. "name": "nikic/php-parser",
  4822. "version": "v4.19.4",
  4823. "source": {
  4824. "type": "git",
  4825. "url": "https://github.com/nikic/PHP-Parser.git",
  4826. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4827. },
  4828. "dist": {
  4829. "type": "zip",
  4830. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4831. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4832. "shasum": ""
  4833. },
  4834. "require": {
  4835. "ext-tokenizer": "*",
  4836. "php": ">=7.1"
  4837. },
  4838. "require-dev": {
  4839. "ircmaxell/php-yacc": "^0.0.7",
  4840. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4841. },
  4842. "bin": [
  4843. "bin/php-parse"
  4844. ],
  4845. "type": "library",
  4846. "extra": {
  4847. "branch-alias": {
  4848. "dev-master": "4.9-dev"
  4849. }
  4850. },
  4851. "autoload": {
  4852. "psr-4": {
  4853. "PhpParser\\": "lib/PhpParser"
  4854. }
  4855. },
  4856. "notification-url": "https://packagist.org/downloads/",
  4857. "license": [
  4858. "BSD-3-Clause"
  4859. ],
  4860. "authors": [
  4861. {
  4862. "name": "Nikita Popov"
  4863. }
  4864. ],
  4865. "description": "A PHP parser written in PHP",
  4866. "keywords": [
  4867. "parser",
  4868. "php"
  4869. ],
  4870. "support": {
  4871. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4872. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4873. },
  4874. "time": "2024-09-29T15:01:53+00:00"
  4875. },
  4876. {
  4877. "name": "opentracing/opentracing",
  4878. "version": "1.0.2",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://github.com/opentracing/opentracing-php.git",
  4882. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  4887. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  4888. "shasum": ""
  4889. },
  4890. "require": {
  4891. "php": "^7.1 || ^8.0"
  4892. },
  4893. "require-dev": {
  4894. "phpstan/phpstan": "~0.12",
  4895. "phpunit/phpunit": "^7.0 || ^9.0",
  4896. "squizlabs/php_codesniffer": "3.*"
  4897. },
  4898. "type": "library",
  4899. "autoload": {
  4900. "files": [
  4901. "src/OpenTracing/Tags.php",
  4902. "src/OpenTracing/Formats.php"
  4903. ],
  4904. "psr-4": {
  4905. "OpenTracing\\": "src/OpenTracing/"
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "Apache-2.0"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "José Carlos Chávez",
  4915. "email": "jcchavezs@gmail.com"
  4916. }
  4917. ],
  4918. "description": "OpenTracing API for PHP",
  4919. "support": {
  4920. "issues": "https://github.com/opentracing/opentracing-php/issues",
  4921. "source": "https://github.com/opentracing/opentracing-php/tree/1.0.2"
  4922. },
  4923. "time": "2022-01-27T19:59:21+00:00"
  4924. },
  4925. {
  4926. "name": "openzipkin/zipkin",
  4927. "version": "3.2.0",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/openzipkin/zipkin-php.git",
  4931. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/e2809f8b6775796d2116b3ca73576a1734296ff6",
  4936. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "ext-curl": "*",
  4941. "php": "^7.4 || ^8.0",
  4942. "psr/http-message": "~1.0 || ~2.0",
  4943. "psr/log": "^1.0 || ^2.0 || ^3.0"
  4944. },
  4945. "require-dev": {
  4946. "ext-mysqli": "*",
  4947. "jcchavezs/httptest": "~0.2",
  4948. "middlewares/fast-route": "^2.0",
  4949. "middlewares/request-handler": "^2.0",
  4950. "nyholm/psr7": "^1.4",
  4951. "phpspec/prophecy-phpunit": "^2.0",
  4952. "phpstan/phpstan": "^0.12.26",
  4953. "phpunit/phpunit": "~9",
  4954. "psr/http-client": "^1.0",
  4955. "psr/http-server-middleware": "^1.0",
  4956. "squizlabs/php_codesniffer": "3.*"
  4957. },
  4958. "suggest": {
  4959. "ext-mysqli": "Allows to use mysqli instrumentation.",
  4960. "psr/http-client": "Allows to instrument HTTP clients following PSR18.",
  4961. "psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
  4962. },
  4963. "type": "library",
  4964. "autoload": {
  4965. "files": [
  4966. "./src/Zipkin/Propagation/Id.php",
  4967. "./src/Zipkin/Timestamp.php",
  4968. "./src/Zipkin/Kind.php",
  4969. "./src/Zipkin/Tags.php",
  4970. "./src/Zipkin/Annotations.php",
  4971. "./src/Zipkin/SpanName.php"
  4972. ],
  4973. "psr-4": {
  4974. "Zipkin\\": "./src/Zipkin/"
  4975. }
  4976. },
  4977. "notification-url": "https://packagist.org/downloads/",
  4978. "license": [
  4979. "Apache-2.0"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "José Carlos Chávez",
  4984. "email": "jcchavezs@gmail.com"
  4985. }
  4986. ],
  4987. "description": "A Zipkin instrumentation for PHP",
  4988. "homepage": "https://github.com/openzipkin/zipkin-php",
  4989. "keywords": [
  4990. "distributed-tracing",
  4991. "openzipkin",
  4992. "tracing",
  4993. "zipkin"
  4994. ],
  4995. "support": {
  4996. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  4997. "source": "https://github.com/openzipkin/zipkin-php/tree/3.2.0"
  4998. },
  4999. "time": "2023-09-28T20:54:04+00:00"
  5000. },
  5001. {
  5002. "name": "paragonie/constant_time_encoding",
  5003. "version": "v3.0.0",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5007. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5012. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": "^8"
  5017. },
  5018. "require-dev": {
  5019. "phpunit/phpunit": "^9",
  5020. "vimeo/psalm": "^4|^5"
  5021. },
  5022. "type": "library",
  5023. "autoload": {
  5024. "psr-4": {
  5025. "ParagonIE\\ConstantTime\\": "src/"
  5026. }
  5027. },
  5028. "notification-url": "https://packagist.org/downloads/",
  5029. "license": [
  5030. "MIT"
  5031. ],
  5032. "authors": [
  5033. {
  5034. "name": "Paragon Initiative Enterprises",
  5035. "email": "security@paragonie.com",
  5036. "homepage": "https://paragonie.com",
  5037. "role": "Maintainer"
  5038. },
  5039. {
  5040. "name": "Steve 'Sc00bz' Thomas",
  5041. "email": "steve@tobtu.com",
  5042. "homepage": "https://www.tobtu.com",
  5043. "role": "Original Developer"
  5044. }
  5045. ],
  5046. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5047. "keywords": [
  5048. "base16",
  5049. "base32",
  5050. "base32_decode",
  5051. "base32_encode",
  5052. "base64",
  5053. "base64_decode",
  5054. "base64_encode",
  5055. "bin2hex",
  5056. "encoding",
  5057. "hex",
  5058. "hex2bin",
  5059. "rfc4648"
  5060. ],
  5061. "support": {
  5062. "email": "info@paragonie.com",
  5063. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5064. "source": "https://github.com/paragonie/constant_time_encoding"
  5065. },
  5066. "time": "2024-05-08T12:36:18+00:00"
  5067. },
  5068. {
  5069. "name": "paragonie/random_compat",
  5070. "version": "v9.99.100",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://github.com/paragonie/random_compat.git",
  5074. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5079. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5080. "shasum": ""
  5081. },
  5082. "require": {
  5083. "php": ">= 7"
  5084. },
  5085. "require-dev": {
  5086. "phpunit/phpunit": "4.*|5.*",
  5087. "vimeo/psalm": "^1"
  5088. },
  5089. "suggest": {
  5090. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5091. },
  5092. "type": "library",
  5093. "notification-url": "https://packagist.org/downloads/",
  5094. "license": [
  5095. "MIT"
  5096. ],
  5097. "authors": [
  5098. {
  5099. "name": "Paragon Initiative Enterprises",
  5100. "email": "security@paragonie.com",
  5101. "homepage": "https://paragonie.com"
  5102. }
  5103. ],
  5104. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5105. "keywords": [
  5106. "csprng",
  5107. "polyfill",
  5108. "pseudorandom",
  5109. "random"
  5110. ],
  5111. "support": {
  5112. "email": "info@paragonie.com",
  5113. "issues": "https://github.com/paragonie/random_compat/issues",
  5114. "source": "https://github.com/paragonie/random_compat"
  5115. },
  5116. "time": "2020-10-15T08:29:30+00:00"
  5117. },
  5118. {
  5119. "name": "php-amqplib/php-amqplib",
  5120. "version": "v3.7.1",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5124. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5129. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5130. "shasum": ""
  5131. },
  5132. "require": {
  5133. "ext-mbstring": "*",
  5134. "ext-sockets": "*",
  5135. "php": "^7.2||^8.0",
  5136. "phpseclib/phpseclib": "^2.0|^3.0"
  5137. },
  5138. "conflict": {
  5139. "php": "7.4.0 - 7.4.1"
  5140. },
  5141. "replace": {
  5142. "videlalvaro/php-amqplib": "self.version"
  5143. },
  5144. "require-dev": {
  5145. "ext-curl": "*",
  5146. "nategood/httpful": "^0.2.20",
  5147. "phpunit/phpunit": "^7.5|^9.5",
  5148. "squizlabs/php_codesniffer": "^3.6"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "branch-alias": {
  5153. "dev-master": "3.0-dev"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "psr-4": {
  5158. "PhpAmqpLib\\": "PhpAmqpLib/"
  5159. }
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "LGPL-2.1-or-later"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Alvaro Videla",
  5168. "role": "Original Maintainer"
  5169. },
  5170. {
  5171. "name": "Raúl Araya",
  5172. "email": "nubeiro@gmail.com",
  5173. "role": "Maintainer"
  5174. },
  5175. {
  5176. "name": "Luke Bakken",
  5177. "email": "luke@bakken.io",
  5178. "role": "Maintainer"
  5179. },
  5180. {
  5181. "name": "Ramūnas Dronga",
  5182. "email": "github@ramuno.lt",
  5183. "role": "Maintainer"
  5184. }
  5185. ],
  5186. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5187. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5188. "keywords": [
  5189. "message",
  5190. "queue",
  5191. "rabbitmq"
  5192. ],
  5193. "support": {
  5194. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5195. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5196. },
  5197. "time": "2024-09-03T19:18:03+00:00"
  5198. },
  5199. {
  5200. "name": "php-di/phpdoc-reader",
  5201. "version": "2.2.1",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5205. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5210. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": ">=7.2.0"
  5215. },
  5216. "require-dev": {
  5217. "mnapoli/hard-mode": "~0.3.0",
  5218. "phpunit/phpunit": "^8.5|^9.0"
  5219. },
  5220. "type": "library",
  5221. "autoload": {
  5222. "psr-4": {
  5223. "PhpDocReader\\": "src/PhpDocReader"
  5224. }
  5225. },
  5226. "notification-url": "https://packagist.org/downloads/",
  5227. "license": [
  5228. "MIT"
  5229. ],
  5230. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5231. "keywords": [
  5232. "phpdoc",
  5233. "reflection"
  5234. ],
  5235. "support": {
  5236. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5237. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5238. },
  5239. "time": "2020-10-12T12:39:22+00:00"
  5240. },
  5241. {
  5242. "name": "phpoption/phpoption",
  5243. "version": "1.9.3",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/schmittjoh/php-option.git",
  5247. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5252. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5253. "shasum": ""
  5254. },
  5255. "require": {
  5256. "php": "^7.2.5 || ^8.0"
  5257. },
  5258. "require-dev": {
  5259. "bamarni/composer-bin-plugin": "^1.8.2",
  5260. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5261. },
  5262. "type": "library",
  5263. "extra": {
  5264. "bamarni-bin": {
  5265. "bin-links": true,
  5266. "forward-command": false
  5267. },
  5268. "branch-alias": {
  5269. "dev-master": "1.9-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "psr-4": {
  5274. "PhpOption\\": "src/PhpOption/"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "Apache-2.0"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Johannes M. Schmitt",
  5284. "email": "schmittjoh@gmail.com",
  5285. "homepage": "https://github.com/schmittjoh"
  5286. },
  5287. {
  5288. "name": "Graham Campbell",
  5289. "email": "hello@gjcampbell.co.uk",
  5290. "homepage": "https://github.com/GrahamCampbell"
  5291. }
  5292. ],
  5293. "description": "Option Type for PHP",
  5294. "keywords": [
  5295. "language",
  5296. "option",
  5297. "php",
  5298. "type"
  5299. ],
  5300. "support": {
  5301. "issues": "https://github.com/schmittjoh/php-option/issues",
  5302. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5303. },
  5304. "funding": [
  5305. {
  5306. "url": "https://github.com/GrahamCampbell",
  5307. "type": "github"
  5308. },
  5309. {
  5310. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5311. "type": "tidelift"
  5312. }
  5313. ],
  5314. "time": "2024-07-20T21:41:07+00:00"
  5315. },
  5316. {
  5317. "name": "phpseclib/phpseclib",
  5318. "version": "3.0.42",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://github.com/phpseclib/phpseclib.git",
  5322. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5327. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5328. "shasum": ""
  5329. },
  5330. "require": {
  5331. "paragonie/constant_time_encoding": "^1|^2|^3",
  5332. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5333. "php": ">=5.6.1"
  5334. },
  5335. "require-dev": {
  5336. "phpunit/phpunit": "*"
  5337. },
  5338. "suggest": {
  5339. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5340. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5341. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5342. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5343. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5344. },
  5345. "type": "library",
  5346. "autoload": {
  5347. "files": [
  5348. "phpseclib/bootstrap.php"
  5349. ],
  5350. "psr-4": {
  5351. "phpseclib3\\": "phpseclib/"
  5352. }
  5353. },
  5354. "notification-url": "https://packagist.org/downloads/",
  5355. "license": [
  5356. "MIT"
  5357. ],
  5358. "authors": [
  5359. {
  5360. "name": "Jim Wigginton",
  5361. "email": "terrafrost@php.net",
  5362. "role": "Lead Developer"
  5363. },
  5364. {
  5365. "name": "Patrick Monnerat",
  5366. "email": "pm@datasphere.ch",
  5367. "role": "Developer"
  5368. },
  5369. {
  5370. "name": "Andreas Fischer",
  5371. "email": "bantu@phpbb.com",
  5372. "role": "Developer"
  5373. },
  5374. {
  5375. "name": "Hans-Jürgen Petrich",
  5376. "email": "petrich@tronic-media.com",
  5377. "role": "Developer"
  5378. },
  5379. {
  5380. "name": "Graham Campbell",
  5381. "email": "graham@alt-three.com",
  5382. "role": "Developer"
  5383. }
  5384. ],
  5385. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5386. "homepage": "http://phpseclib.sourceforge.net",
  5387. "keywords": [
  5388. "BigInteger",
  5389. "aes",
  5390. "asn.1",
  5391. "asn1",
  5392. "blowfish",
  5393. "crypto",
  5394. "cryptography",
  5395. "encryption",
  5396. "rsa",
  5397. "security",
  5398. "sftp",
  5399. "signature",
  5400. "signing",
  5401. "ssh",
  5402. "twofish",
  5403. "x.509",
  5404. "x509"
  5405. ],
  5406. "support": {
  5407. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5408. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5409. },
  5410. "funding": [
  5411. {
  5412. "url": "https://github.com/terrafrost",
  5413. "type": "github"
  5414. },
  5415. {
  5416. "url": "https://www.patreon.com/phpseclib",
  5417. "type": "patreon"
  5418. },
  5419. {
  5420. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5421. "type": "tidelift"
  5422. }
  5423. ],
  5424. "time": "2024-09-16T03:06:04+00:00"
  5425. },
  5426. {
  5427. "name": "psr/clock",
  5428. "version": "1.0.0",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://github.com/php-fig/clock.git",
  5432. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5437. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5438. "shasum": ""
  5439. },
  5440. "require": {
  5441. "php": "^7.0 || ^8.0"
  5442. },
  5443. "type": "library",
  5444. "autoload": {
  5445. "psr-4": {
  5446. "Psr\\Clock\\": "src/"
  5447. }
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "MIT"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "PHP-FIG",
  5456. "homepage": "https://www.php-fig.org/"
  5457. }
  5458. ],
  5459. "description": "Common interface for reading the clock.",
  5460. "homepage": "https://github.com/php-fig/clock",
  5461. "keywords": [
  5462. "clock",
  5463. "now",
  5464. "psr",
  5465. "psr-20",
  5466. "time"
  5467. ],
  5468. "support": {
  5469. "issues": "https://github.com/php-fig/clock/issues",
  5470. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5471. },
  5472. "time": "2022-11-25T14:36:26+00:00"
  5473. },
  5474. {
  5475. "name": "psr/container",
  5476. "version": "2.0.2",
  5477. "source": {
  5478. "type": "git",
  5479. "url": "https://github.com/php-fig/container.git",
  5480. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5481. },
  5482. "dist": {
  5483. "type": "zip",
  5484. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5485. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5486. "shasum": ""
  5487. },
  5488. "require": {
  5489. "php": ">=7.4.0"
  5490. },
  5491. "type": "library",
  5492. "extra": {
  5493. "branch-alias": {
  5494. "dev-master": "2.0.x-dev"
  5495. }
  5496. },
  5497. "autoload": {
  5498. "psr-4": {
  5499. "Psr\\Container\\": "src/"
  5500. }
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "PHP-FIG",
  5509. "homepage": "https://www.php-fig.org/"
  5510. }
  5511. ],
  5512. "description": "Common Container Interface (PHP FIG PSR-11)",
  5513. "homepage": "https://github.com/php-fig/container",
  5514. "keywords": [
  5515. "PSR-11",
  5516. "container",
  5517. "container-interface",
  5518. "container-interop",
  5519. "psr"
  5520. ],
  5521. "support": {
  5522. "issues": "https://github.com/php-fig/container/issues",
  5523. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5524. },
  5525. "time": "2021-11-05T16:47:00+00:00"
  5526. },
  5527. {
  5528. "name": "psr/event-dispatcher",
  5529. "version": "1.0.0",
  5530. "source": {
  5531. "type": "git",
  5532. "url": "https://github.com/php-fig/event-dispatcher.git",
  5533. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5534. },
  5535. "dist": {
  5536. "type": "zip",
  5537. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5538. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5539. "shasum": ""
  5540. },
  5541. "require": {
  5542. "php": ">=7.2.0"
  5543. },
  5544. "type": "library",
  5545. "extra": {
  5546. "branch-alias": {
  5547. "dev-master": "1.0.x-dev"
  5548. }
  5549. },
  5550. "autoload": {
  5551. "psr-4": {
  5552. "Psr\\EventDispatcher\\": "src/"
  5553. }
  5554. },
  5555. "notification-url": "https://packagist.org/downloads/",
  5556. "license": [
  5557. "MIT"
  5558. ],
  5559. "authors": [
  5560. {
  5561. "name": "PHP-FIG",
  5562. "homepage": "http://www.php-fig.org/"
  5563. }
  5564. ],
  5565. "description": "Standard interfaces for event handling.",
  5566. "keywords": [
  5567. "events",
  5568. "psr",
  5569. "psr-14"
  5570. ],
  5571. "support": {
  5572. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5573. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5574. },
  5575. "time": "2019-01-08T18:20:26+00:00"
  5576. },
  5577. {
  5578. "name": "psr/http-client",
  5579. "version": "1.0.3",
  5580. "source": {
  5581. "type": "git",
  5582. "url": "https://github.com/php-fig/http-client.git",
  5583. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5584. },
  5585. "dist": {
  5586. "type": "zip",
  5587. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5588. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5589. "shasum": ""
  5590. },
  5591. "require": {
  5592. "php": "^7.0 || ^8.0",
  5593. "psr/http-message": "^1.0 || ^2.0"
  5594. },
  5595. "type": "library",
  5596. "extra": {
  5597. "branch-alias": {
  5598. "dev-master": "1.0.x-dev"
  5599. }
  5600. },
  5601. "autoload": {
  5602. "psr-4": {
  5603. "Psr\\Http\\Client\\": "src/"
  5604. }
  5605. },
  5606. "notification-url": "https://packagist.org/downloads/",
  5607. "license": [
  5608. "MIT"
  5609. ],
  5610. "authors": [
  5611. {
  5612. "name": "PHP-FIG",
  5613. "homepage": "https://www.php-fig.org/"
  5614. }
  5615. ],
  5616. "description": "Common interface for HTTP clients",
  5617. "homepage": "https://github.com/php-fig/http-client",
  5618. "keywords": [
  5619. "http",
  5620. "http-client",
  5621. "psr",
  5622. "psr-18"
  5623. ],
  5624. "support": {
  5625. "source": "https://github.com/php-fig/http-client"
  5626. },
  5627. "time": "2023-09-23T14:17:50+00:00"
  5628. },
  5629. {
  5630. "name": "psr/http-factory",
  5631. "version": "1.1.0",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/php-fig/http-factory.git",
  5635. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5640. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5641. "shasum": ""
  5642. },
  5643. "require": {
  5644. "php": ">=7.1",
  5645. "psr/http-message": "^1.0 || ^2.0"
  5646. },
  5647. "type": "library",
  5648. "extra": {
  5649. "branch-alias": {
  5650. "dev-master": "1.0.x-dev"
  5651. }
  5652. },
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Psr\\Http\\Message\\": "src/"
  5656. }
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "PHP-FIG",
  5665. "homepage": "https://www.php-fig.org/"
  5666. }
  5667. ],
  5668. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5669. "keywords": [
  5670. "factory",
  5671. "http",
  5672. "message",
  5673. "psr",
  5674. "psr-17",
  5675. "psr-7",
  5676. "request",
  5677. "response"
  5678. ],
  5679. "support": {
  5680. "source": "https://github.com/php-fig/http-factory"
  5681. },
  5682. "time": "2024-04-15T12:06:14+00:00"
  5683. },
  5684. {
  5685. "name": "psr/http-message",
  5686. "version": "2.0",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/php-fig/http-message.git",
  5690. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5695. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5696. "shasum": ""
  5697. },
  5698. "require": {
  5699. "php": "^7.2 || ^8.0"
  5700. },
  5701. "type": "library",
  5702. "extra": {
  5703. "branch-alias": {
  5704. "dev-master": "2.0.x-dev"
  5705. }
  5706. },
  5707. "autoload": {
  5708. "psr-4": {
  5709. "Psr\\Http\\Message\\": "src/"
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "PHP-FIG",
  5719. "homepage": "https://www.php-fig.org/"
  5720. }
  5721. ],
  5722. "description": "Common interface for HTTP messages",
  5723. "homepage": "https://github.com/php-fig/http-message",
  5724. "keywords": [
  5725. "http",
  5726. "http-message",
  5727. "psr",
  5728. "psr-7",
  5729. "request",
  5730. "response"
  5731. ],
  5732. "support": {
  5733. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5734. },
  5735. "time": "2023-04-04T09:54:51+00:00"
  5736. },
  5737. {
  5738. "name": "psr/http-server-handler",
  5739. "version": "1.0.2",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/php-fig/http-server-handler.git",
  5743. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5748. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=7.0",
  5753. "psr/http-message": "^1.0 || ^2.0"
  5754. },
  5755. "type": "library",
  5756. "extra": {
  5757. "branch-alias": {
  5758. "dev-master": "1.0.x-dev"
  5759. }
  5760. },
  5761. "autoload": {
  5762. "psr-4": {
  5763. "Psr\\Http\\Server\\": "src/"
  5764. }
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "MIT"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "PHP-FIG",
  5773. "homepage": "https://www.php-fig.org/"
  5774. }
  5775. ],
  5776. "description": "Common interface for HTTP server-side request handler",
  5777. "keywords": [
  5778. "handler",
  5779. "http",
  5780. "http-interop",
  5781. "psr",
  5782. "psr-15",
  5783. "psr-7",
  5784. "request",
  5785. "response",
  5786. "server"
  5787. ],
  5788. "support": {
  5789. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5790. },
  5791. "time": "2023-04-10T20:06:20+00:00"
  5792. },
  5793. {
  5794. "name": "psr/http-server-middleware",
  5795. "version": "1.0.2",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/php-fig/http-server-middleware.git",
  5799. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5804. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5805. "shasum": ""
  5806. },
  5807. "require": {
  5808. "php": ">=7.0",
  5809. "psr/http-message": "^1.0 || ^2.0",
  5810. "psr/http-server-handler": "^1.0"
  5811. },
  5812. "type": "library",
  5813. "extra": {
  5814. "branch-alias": {
  5815. "dev-master": "1.0.x-dev"
  5816. }
  5817. },
  5818. "autoload": {
  5819. "psr-4": {
  5820. "Psr\\Http\\Server\\": "src/"
  5821. }
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "MIT"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "PHP-FIG",
  5830. "homepage": "https://www.php-fig.org/"
  5831. }
  5832. ],
  5833. "description": "Common interface for HTTP server-side middleware",
  5834. "keywords": [
  5835. "http",
  5836. "http-interop",
  5837. "middleware",
  5838. "psr",
  5839. "psr-15",
  5840. "psr-7",
  5841. "request",
  5842. "response"
  5843. ],
  5844. "support": {
  5845. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5846. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5847. },
  5848. "time": "2023-04-11T06:14:47+00:00"
  5849. },
  5850. {
  5851. "name": "psr/log",
  5852. "version": "3.0.2",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/php-fig/log.git",
  5856. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5861. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=8.0.0"
  5866. },
  5867. "type": "library",
  5868. "extra": {
  5869. "branch-alias": {
  5870. "dev-master": "3.x-dev"
  5871. }
  5872. },
  5873. "autoload": {
  5874. "psr-4": {
  5875. "Psr\\Log\\": "src"
  5876. }
  5877. },
  5878. "notification-url": "https://packagist.org/downloads/",
  5879. "license": [
  5880. "MIT"
  5881. ],
  5882. "authors": [
  5883. {
  5884. "name": "PHP-FIG",
  5885. "homepage": "https://www.php-fig.org/"
  5886. }
  5887. ],
  5888. "description": "Common interface for logging libraries",
  5889. "homepage": "https://github.com/php-fig/log",
  5890. "keywords": [
  5891. "log",
  5892. "psr",
  5893. "psr-3"
  5894. ],
  5895. "support": {
  5896. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5897. },
  5898. "time": "2024-09-11T13:17:53+00:00"
  5899. },
  5900. {
  5901. "name": "psr/simple-cache",
  5902. "version": "3.0.0",
  5903. "source": {
  5904. "type": "git",
  5905. "url": "https://github.com/php-fig/simple-cache.git",
  5906. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5907. },
  5908. "dist": {
  5909. "type": "zip",
  5910. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5911. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5912. "shasum": ""
  5913. },
  5914. "require": {
  5915. "php": ">=8.0.0"
  5916. },
  5917. "type": "library",
  5918. "extra": {
  5919. "branch-alias": {
  5920. "dev-master": "3.0.x-dev"
  5921. }
  5922. },
  5923. "autoload": {
  5924. "psr-4": {
  5925. "Psr\\SimpleCache\\": "src/"
  5926. }
  5927. },
  5928. "notification-url": "https://packagist.org/downloads/",
  5929. "license": [
  5930. "MIT"
  5931. ],
  5932. "authors": [
  5933. {
  5934. "name": "PHP-FIG",
  5935. "homepage": "https://www.php-fig.org/"
  5936. }
  5937. ],
  5938. "description": "Common interfaces for simple caching",
  5939. "keywords": [
  5940. "cache",
  5941. "caching",
  5942. "psr",
  5943. "psr-16",
  5944. "simple-cache"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5948. },
  5949. "time": "2021-10-29T13:26:27+00:00"
  5950. },
  5951. {
  5952. "name": "ralouphie/getallheaders",
  5953. "version": "3.0.3",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/ralouphie/getallheaders.git",
  5957. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5962. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "php": ">=5.6"
  5967. },
  5968. "require-dev": {
  5969. "php-coveralls/php-coveralls": "^2.1",
  5970. "phpunit/phpunit": "^5 || ^6.5"
  5971. },
  5972. "type": "library",
  5973. "autoload": {
  5974. "files": [
  5975. "src/getallheaders.php"
  5976. ]
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Ralph Khattar",
  5985. "email": "ralph.khattar@gmail.com"
  5986. }
  5987. ],
  5988. "description": "A polyfill for getallheaders.",
  5989. "support": {
  5990. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5991. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5992. },
  5993. "time": "2019-03-08T08:55:37+00:00"
  5994. },
  5995. {
  5996. "name": "react/promise",
  5997. "version": "v2.11.0",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/reactphp/promise.git",
  6001. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  6006. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  6007. "shasum": ""
  6008. },
  6009. "require": {
  6010. "php": ">=5.4.0"
  6011. },
  6012. "require-dev": {
  6013. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6014. },
  6015. "type": "library",
  6016. "autoload": {
  6017. "files": [
  6018. "src/functions_include.php"
  6019. ],
  6020. "psr-4": {
  6021. "React\\Promise\\": "src/"
  6022. }
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "MIT"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Jan Sorgalla",
  6031. "email": "jsorgalla@gmail.com",
  6032. "homepage": "https://sorgalla.com/"
  6033. },
  6034. {
  6035. "name": "Christian Lück",
  6036. "email": "christian@clue.engineering",
  6037. "homepage": "https://clue.engineering/"
  6038. },
  6039. {
  6040. "name": "Cees-Jan Kiewiet",
  6041. "email": "reactphp@ceesjankiewiet.nl",
  6042. "homepage": "https://wyrihaximus.net/"
  6043. },
  6044. {
  6045. "name": "Chris Boden",
  6046. "email": "cboden@gmail.com",
  6047. "homepage": "https://cboden.dev/"
  6048. }
  6049. ],
  6050. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6051. "keywords": [
  6052. "promise",
  6053. "promises"
  6054. ],
  6055. "support": {
  6056. "issues": "https://github.com/reactphp/promise/issues",
  6057. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  6058. },
  6059. "funding": [
  6060. {
  6061. "url": "https://opencollective.com/reactphp",
  6062. "type": "open_collective"
  6063. }
  6064. ],
  6065. "time": "2023-11-16T16:16:50+00:00"
  6066. },
  6067. {
  6068. "name": "swow/psr7-plus",
  6069. "version": "v1.1.2",
  6070. "source": {
  6071. "type": "git",
  6072. "url": "https://github.com/swow/psr7-plus.git",
  6073. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6074. },
  6075. "dist": {
  6076. "type": "zip",
  6077. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6078. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6079. "shasum": ""
  6080. },
  6081. "require": {
  6082. "php": ">=8.0",
  6083. "psr/http-client": "^1.0",
  6084. "psr/http-factory": "^1.0",
  6085. "psr/http-message": "^1.1|^2.0"
  6086. },
  6087. "type": "library",
  6088. "autoload": {
  6089. "psr-4": {
  6090. "Swow\\Psr7\\Message\\": "src/Message/"
  6091. }
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "Apache-2.0"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "twose",
  6100. "email": "twosee@php.net"
  6101. }
  6102. ],
  6103. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6104. "keywords": [
  6105. "http",
  6106. "psr17",
  6107. "psr7",
  6108. "swow",
  6109. "websocket"
  6110. ],
  6111. "support": {
  6112. "issues": "https://github.com/swow/swow",
  6113. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6114. },
  6115. "time": "2023-06-15T09:18:11+00:00"
  6116. },
  6117. {
  6118. "name": "symfony/console",
  6119. "version": "v6.4.12",
  6120. "source": {
  6121. "type": "git",
  6122. "url": "https://github.com/symfony/console.git",
  6123. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765"
  6124. },
  6125. "dist": {
  6126. "type": "zip",
  6127. "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765",
  6128. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  6129. "shasum": ""
  6130. },
  6131. "require": {
  6132. "php": ">=8.1",
  6133. "symfony/deprecation-contracts": "^2.5|^3",
  6134. "symfony/polyfill-mbstring": "~1.0",
  6135. "symfony/service-contracts": "^2.5|^3",
  6136. "symfony/string": "^5.4|^6.0|^7.0"
  6137. },
  6138. "conflict": {
  6139. "symfony/dependency-injection": "<5.4",
  6140. "symfony/dotenv": "<5.4",
  6141. "symfony/event-dispatcher": "<5.4",
  6142. "symfony/lock": "<5.4",
  6143. "symfony/process": "<5.4"
  6144. },
  6145. "provide": {
  6146. "psr/log-implementation": "1.0|2.0|3.0"
  6147. },
  6148. "require-dev": {
  6149. "psr/log": "^1|^2|^3",
  6150. "symfony/config": "^5.4|^6.0|^7.0",
  6151. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6152. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6153. "symfony/http-foundation": "^6.4|^7.0",
  6154. "symfony/http-kernel": "^6.4|^7.0",
  6155. "symfony/lock": "^5.4|^6.0|^7.0",
  6156. "symfony/messenger": "^5.4|^6.0|^7.0",
  6157. "symfony/process": "^5.4|^6.0|^7.0",
  6158. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6159. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6160. },
  6161. "type": "library",
  6162. "autoload": {
  6163. "psr-4": {
  6164. "Symfony\\Component\\Console\\": ""
  6165. },
  6166. "exclude-from-classmap": [
  6167. "/Tests/"
  6168. ]
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "MIT"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Fabien Potencier",
  6177. "email": "fabien@symfony.com"
  6178. },
  6179. {
  6180. "name": "Symfony Community",
  6181. "homepage": "https://symfony.com/contributors"
  6182. }
  6183. ],
  6184. "description": "Eases the creation of beautiful and testable command line interfaces",
  6185. "homepage": "https://symfony.com",
  6186. "keywords": [
  6187. "cli",
  6188. "command-line",
  6189. "console",
  6190. "terminal"
  6191. ],
  6192. "support": {
  6193. "source": "https://github.com/symfony/console/tree/v6.4.12"
  6194. },
  6195. "funding": [
  6196. {
  6197. "url": "https://symfony.com/sponsor",
  6198. "type": "custom"
  6199. },
  6200. {
  6201. "url": "https://github.com/fabpot",
  6202. "type": "github"
  6203. },
  6204. {
  6205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6206. "type": "tidelift"
  6207. }
  6208. ],
  6209. "time": "2024-09-20T08:15:52+00:00"
  6210. },
  6211. {
  6212. "name": "symfony/deprecation-contracts",
  6213. "version": "v3.5.0",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/symfony/deprecation-contracts.git",
  6217. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6222. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "php": ">=8.1"
  6227. },
  6228. "type": "library",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-main": "3.5-dev"
  6232. },
  6233. "thanks": {
  6234. "name": "symfony/contracts",
  6235. "url": "https://github.com/symfony/contracts"
  6236. }
  6237. },
  6238. "autoload": {
  6239. "files": [
  6240. "function.php"
  6241. ]
  6242. },
  6243. "notification-url": "https://packagist.org/downloads/",
  6244. "license": [
  6245. "MIT"
  6246. ],
  6247. "authors": [
  6248. {
  6249. "name": "Nicolas Grekas",
  6250. "email": "p@tchwork.com"
  6251. },
  6252. {
  6253. "name": "Symfony Community",
  6254. "homepage": "https://symfony.com/contributors"
  6255. }
  6256. ],
  6257. "description": "A generic function and convention to trigger deprecation notices",
  6258. "homepage": "https://symfony.com",
  6259. "support": {
  6260. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6261. },
  6262. "funding": [
  6263. {
  6264. "url": "https://symfony.com/sponsor",
  6265. "type": "custom"
  6266. },
  6267. {
  6268. "url": "https://github.com/fabpot",
  6269. "type": "github"
  6270. },
  6271. {
  6272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6273. "type": "tidelift"
  6274. }
  6275. ],
  6276. "time": "2024-04-18T09:32:20+00:00"
  6277. },
  6278. {
  6279. "name": "symfony/finder",
  6280. "version": "v6.4.11",
  6281. "source": {
  6282. "type": "git",
  6283. "url": "https://github.com/symfony/finder.git",
  6284. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  6285. },
  6286. "dist": {
  6287. "type": "zip",
  6288. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6289. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6290. "shasum": ""
  6291. },
  6292. "require": {
  6293. "php": ">=8.1"
  6294. },
  6295. "require-dev": {
  6296. "symfony/filesystem": "^6.0|^7.0"
  6297. },
  6298. "type": "library",
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Symfony\\Component\\Finder\\": ""
  6302. },
  6303. "exclude-from-classmap": [
  6304. "/Tests/"
  6305. ]
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Fabien Potencier",
  6314. "email": "fabien@symfony.com"
  6315. },
  6316. {
  6317. "name": "Symfony Community",
  6318. "homepage": "https://symfony.com/contributors"
  6319. }
  6320. ],
  6321. "description": "Finds files and directories via an intuitive fluent interface",
  6322. "homepage": "https://symfony.com",
  6323. "support": {
  6324. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  6325. },
  6326. "funding": [
  6327. {
  6328. "url": "https://symfony.com/sponsor",
  6329. "type": "custom"
  6330. },
  6331. {
  6332. "url": "https://github.com/fabpot",
  6333. "type": "github"
  6334. },
  6335. {
  6336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6337. "type": "tidelift"
  6338. }
  6339. ],
  6340. "time": "2024-08-13T14:27:37+00:00"
  6341. },
  6342. {
  6343. "name": "symfony/polyfill-ctype",
  6344. "version": "v1.31.0",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/symfony/polyfill-ctype.git",
  6348. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6353. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "php": ">=7.2"
  6358. },
  6359. "provide": {
  6360. "ext-ctype": "*"
  6361. },
  6362. "suggest": {
  6363. "ext-ctype": "For best performance"
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "thanks": {
  6368. "name": "symfony/polyfill",
  6369. "url": "https://github.com/symfony/polyfill"
  6370. }
  6371. },
  6372. "autoload": {
  6373. "files": [
  6374. "bootstrap.php"
  6375. ],
  6376. "psr-4": {
  6377. "Symfony\\Polyfill\\Ctype\\": ""
  6378. }
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "MIT"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "Gert de Pagter",
  6387. "email": "BackEndTea@gmail.com"
  6388. },
  6389. {
  6390. "name": "Symfony Community",
  6391. "homepage": "https://symfony.com/contributors"
  6392. }
  6393. ],
  6394. "description": "Symfony polyfill for ctype functions",
  6395. "homepage": "https://symfony.com",
  6396. "keywords": [
  6397. "compatibility",
  6398. "ctype",
  6399. "polyfill",
  6400. "portable"
  6401. ],
  6402. "support": {
  6403. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-09-09T11:45:10+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/polyfill-intl-grapheme",
  6423. "version": "v1.31.0",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6427. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6432. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=7.2"
  6437. },
  6438. "suggest": {
  6439. "ext-intl": "For best performance"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "thanks": {
  6444. "name": "symfony/polyfill",
  6445. "url": "https://github.com/symfony/polyfill"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "files": [
  6450. "bootstrap.php"
  6451. ],
  6452. "psr-4": {
  6453. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Nicolas Grekas",
  6463. "email": "p@tchwork.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Symfony polyfill for intl's grapheme_* functions",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "compatibility",
  6474. "grapheme",
  6475. "intl",
  6476. "polyfill",
  6477. "portable",
  6478. "shim"
  6479. ],
  6480. "support": {
  6481. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2024-09-09T11:45:10+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/polyfill-intl-normalizer",
  6501. "version": "v1.31.0",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6505. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6510. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6511. "shasum": ""
  6512. },
  6513. "require": {
  6514. "php": ">=7.2"
  6515. },
  6516. "suggest": {
  6517. "ext-intl": "For best performance"
  6518. },
  6519. "type": "library",
  6520. "extra": {
  6521. "thanks": {
  6522. "name": "symfony/polyfill",
  6523. "url": "https://github.com/symfony/polyfill"
  6524. }
  6525. },
  6526. "autoload": {
  6527. "files": [
  6528. "bootstrap.php"
  6529. ],
  6530. "psr-4": {
  6531. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6532. },
  6533. "classmap": [
  6534. "Resources/stubs"
  6535. ]
  6536. },
  6537. "notification-url": "https://packagist.org/downloads/",
  6538. "license": [
  6539. "MIT"
  6540. ],
  6541. "authors": [
  6542. {
  6543. "name": "Nicolas Grekas",
  6544. "email": "p@tchwork.com"
  6545. },
  6546. {
  6547. "name": "Symfony Community",
  6548. "homepage": "https://symfony.com/contributors"
  6549. }
  6550. ],
  6551. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6552. "homepage": "https://symfony.com",
  6553. "keywords": [
  6554. "compatibility",
  6555. "intl",
  6556. "normalizer",
  6557. "polyfill",
  6558. "portable",
  6559. "shim"
  6560. ],
  6561. "support": {
  6562. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://symfony.com/sponsor",
  6567. "type": "custom"
  6568. },
  6569. {
  6570. "url": "https://github.com/fabpot",
  6571. "type": "github"
  6572. },
  6573. {
  6574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6575. "type": "tidelift"
  6576. }
  6577. ],
  6578. "time": "2024-09-09T11:45:10+00:00"
  6579. },
  6580. {
  6581. "name": "symfony/polyfill-mbstring",
  6582. "version": "v1.31.0",
  6583. "source": {
  6584. "type": "git",
  6585. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6586. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6587. },
  6588. "dist": {
  6589. "type": "zip",
  6590. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6591. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6592. "shasum": ""
  6593. },
  6594. "require": {
  6595. "php": ">=7.2"
  6596. },
  6597. "provide": {
  6598. "ext-mbstring": "*"
  6599. },
  6600. "suggest": {
  6601. "ext-mbstring": "For best performance"
  6602. },
  6603. "type": "library",
  6604. "extra": {
  6605. "thanks": {
  6606. "name": "symfony/polyfill",
  6607. "url": "https://github.com/symfony/polyfill"
  6608. }
  6609. },
  6610. "autoload": {
  6611. "files": [
  6612. "bootstrap.php"
  6613. ],
  6614. "psr-4": {
  6615. "Symfony\\Polyfill\\Mbstring\\": ""
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Nicolas Grekas",
  6625. "email": "p@tchwork.com"
  6626. },
  6627. {
  6628. "name": "Symfony Community",
  6629. "homepage": "https://symfony.com/contributors"
  6630. }
  6631. ],
  6632. "description": "Symfony polyfill for the Mbstring extension",
  6633. "homepage": "https://symfony.com",
  6634. "keywords": [
  6635. "compatibility",
  6636. "mbstring",
  6637. "polyfill",
  6638. "portable",
  6639. "shim"
  6640. ],
  6641. "support": {
  6642. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://symfony.com/sponsor",
  6647. "type": "custom"
  6648. },
  6649. {
  6650. "url": "https://github.com/fabpot",
  6651. "type": "github"
  6652. },
  6653. {
  6654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6655. "type": "tidelift"
  6656. }
  6657. ],
  6658. "time": "2024-09-09T11:45:10+00:00"
  6659. },
  6660. {
  6661. "name": "symfony/polyfill-php80",
  6662. "version": "v1.31.0",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/symfony/polyfill-php80.git",
  6666. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6671. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": ">=7.2"
  6676. },
  6677. "type": "library",
  6678. "extra": {
  6679. "thanks": {
  6680. "name": "symfony/polyfill",
  6681. "url": "https://github.com/symfony/polyfill"
  6682. }
  6683. },
  6684. "autoload": {
  6685. "files": [
  6686. "bootstrap.php"
  6687. ],
  6688. "psr-4": {
  6689. "Symfony\\Polyfill\\Php80\\": ""
  6690. },
  6691. "classmap": [
  6692. "Resources/stubs"
  6693. ]
  6694. },
  6695. "notification-url": "https://packagist.org/downloads/",
  6696. "license": [
  6697. "MIT"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "Ion Bazan",
  6702. "email": "ion.bazan@gmail.com"
  6703. },
  6704. {
  6705. "name": "Nicolas Grekas",
  6706. "email": "p@tchwork.com"
  6707. },
  6708. {
  6709. "name": "Symfony Community",
  6710. "homepage": "https://symfony.com/contributors"
  6711. }
  6712. ],
  6713. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6714. "homepage": "https://symfony.com",
  6715. "keywords": [
  6716. "compatibility",
  6717. "polyfill",
  6718. "portable",
  6719. "shim"
  6720. ],
  6721. "support": {
  6722. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://symfony.com/sponsor",
  6727. "type": "custom"
  6728. },
  6729. {
  6730. "url": "https://github.com/fabpot",
  6731. "type": "github"
  6732. },
  6733. {
  6734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6735. "type": "tidelift"
  6736. }
  6737. ],
  6738. "time": "2024-09-09T11:45:10+00:00"
  6739. },
  6740. {
  6741. "name": "symfony/service-contracts",
  6742. "version": "v3.5.0",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/symfony/service-contracts.git",
  6746. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6751. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": ">=8.1",
  6756. "psr/container": "^1.1|^2.0",
  6757. "symfony/deprecation-contracts": "^2.5|^3"
  6758. },
  6759. "conflict": {
  6760. "ext-psr": "<1.1|>=2"
  6761. },
  6762. "type": "library",
  6763. "extra": {
  6764. "branch-alias": {
  6765. "dev-main": "3.5-dev"
  6766. },
  6767. "thanks": {
  6768. "name": "symfony/contracts",
  6769. "url": "https://github.com/symfony/contracts"
  6770. }
  6771. },
  6772. "autoload": {
  6773. "psr-4": {
  6774. "Symfony\\Contracts\\Service\\": ""
  6775. },
  6776. "exclude-from-classmap": [
  6777. "/Test/"
  6778. ]
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "MIT"
  6783. ],
  6784. "authors": [
  6785. {
  6786. "name": "Nicolas Grekas",
  6787. "email": "p@tchwork.com"
  6788. },
  6789. {
  6790. "name": "Symfony Community",
  6791. "homepage": "https://symfony.com/contributors"
  6792. }
  6793. ],
  6794. "description": "Generic abstractions related to writing services",
  6795. "homepage": "https://symfony.com",
  6796. "keywords": [
  6797. "abstractions",
  6798. "contracts",
  6799. "decoupling",
  6800. "interfaces",
  6801. "interoperability",
  6802. "standards"
  6803. ],
  6804. "support": {
  6805. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6806. },
  6807. "funding": [
  6808. {
  6809. "url": "https://symfony.com/sponsor",
  6810. "type": "custom"
  6811. },
  6812. {
  6813. "url": "https://github.com/fabpot",
  6814. "type": "github"
  6815. },
  6816. {
  6817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6818. "type": "tidelift"
  6819. }
  6820. ],
  6821. "time": "2024-04-18T09:32:20+00:00"
  6822. },
  6823. {
  6824. "name": "symfony/string",
  6825. "version": "v6.4.12",
  6826. "source": {
  6827. "type": "git",
  6828. "url": "https://github.com/symfony/string.git",
  6829. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b"
  6830. },
  6831. "dist": {
  6832. "type": "zip",
  6833. "url": "https://api.github.com/repos/symfony/string/zipball/f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  6834. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  6835. "shasum": ""
  6836. },
  6837. "require": {
  6838. "php": ">=8.1",
  6839. "symfony/polyfill-ctype": "~1.8",
  6840. "symfony/polyfill-intl-grapheme": "~1.0",
  6841. "symfony/polyfill-intl-normalizer": "~1.0",
  6842. "symfony/polyfill-mbstring": "~1.0"
  6843. },
  6844. "conflict": {
  6845. "symfony/translation-contracts": "<2.5"
  6846. },
  6847. "require-dev": {
  6848. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6849. "symfony/http-client": "^5.4|^6.0|^7.0",
  6850. "symfony/intl": "^6.2|^7.0",
  6851. "symfony/translation-contracts": "^2.5|^3.0",
  6852. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6853. },
  6854. "type": "library",
  6855. "autoload": {
  6856. "files": [
  6857. "Resources/functions.php"
  6858. ],
  6859. "psr-4": {
  6860. "Symfony\\Component\\String\\": ""
  6861. },
  6862. "exclude-from-classmap": [
  6863. "/Tests/"
  6864. ]
  6865. },
  6866. "notification-url": "https://packagist.org/downloads/",
  6867. "license": [
  6868. "MIT"
  6869. ],
  6870. "authors": [
  6871. {
  6872. "name": "Nicolas Grekas",
  6873. "email": "p@tchwork.com"
  6874. },
  6875. {
  6876. "name": "Symfony Community",
  6877. "homepage": "https://symfony.com/contributors"
  6878. }
  6879. ],
  6880. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6881. "homepage": "https://symfony.com",
  6882. "keywords": [
  6883. "grapheme",
  6884. "i18n",
  6885. "string",
  6886. "unicode",
  6887. "utf-8",
  6888. "utf8"
  6889. ],
  6890. "support": {
  6891. "source": "https://github.com/symfony/string/tree/v6.4.12"
  6892. },
  6893. "funding": [
  6894. {
  6895. "url": "https://symfony.com/sponsor",
  6896. "type": "custom"
  6897. },
  6898. {
  6899. "url": "https://github.com/fabpot",
  6900. "type": "github"
  6901. },
  6902. {
  6903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6904. "type": "tidelift"
  6905. }
  6906. ],
  6907. "time": "2024-09-20T08:15:52+00:00"
  6908. },
  6909. {
  6910. "name": "symfony/translation",
  6911. "version": "v6.4.12",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://github.com/symfony/translation.git",
  6915. "reference": "cf8360b8352b086be620fae8342c4d96e391a489"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://api.github.com/repos/symfony/translation/zipball/cf8360b8352b086be620fae8342c4d96e391a489",
  6920. "reference": "cf8360b8352b086be620fae8342c4d96e391a489",
  6921. "shasum": ""
  6922. },
  6923. "require": {
  6924. "php": ">=8.1",
  6925. "symfony/deprecation-contracts": "^2.5|^3",
  6926. "symfony/polyfill-mbstring": "~1.0",
  6927. "symfony/translation-contracts": "^2.5|^3.0"
  6928. },
  6929. "conflict": {
  6930. "symfony/config": "<5.4",
  6931. "symfony/console": "<5.4",
  6932. "symfony/dependency-injection": "<5.4",
  6933. "symfony/http-client-contracts": "<2.5",
  6934. "symfony/http-kernel": "<5.4",
  6935. "symfony/service-contracts": "<2.5",
  6936. "symfony/twig-bundle": "<5.4",
  6937. "symfony/yaml": "<5.4"
  6938. },
  6939. "provide": {
  6940. "symfony/translation-implementation": "2.3|3.0"
  6941. },
  6942. "require-dev": {
  6943. "nikic/php-parser": "^4.18|^5.0",
  6944. "psr/log": "^1|^2|^3",
  6945. "symfony/config": "^5.4|^6.0|^7.0",
  6946. "symfony/console": "^5.4|^6.0|^7.0",
  6947. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6948. "symfony/finder": "^5.4|^6.0|^7.0",
  6949. "symfony/http-client-contracts": "^2.5|^3.0",
  6950. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6951. "symfony/intl": "^5.4|^6.0|^7.0",
  6952. "symfony/polyfill-intl-icu": "^1.21",
  6953. "symfony/routing": "^5.4|^6.0|^7.0",
  6954. "symfony/service-contracts": "^2.5|^3",
  6955. "symfony/yaml": "^5.4|^6.0|^7.0"
  6956. },
  6957. "type": "library",
  6958. "autoload": {
  6959. "files": [
  6960. "Resources/functions.php"
  6961. ],
  6962. "psr-4": {
  6963. "Symfony\\Component\\Translation\\": ""
  6964. },
  6965. "exclude-from-classmap": [
  6966. "/Tests/"
  6967. ]
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Fabien Potencier",
  6976. "email": "fabien@symfony.com"
  6977. },
  6978. {
  6979. "name": "Symfony Community",
  6980. "homepage": "https://symfony.com/contributors"
  6981. }
  6982. ],
  6983. "description": "Provides tools to internationalize your application",
  6984. "homepage": "https://symfony.com",
  6985. "support": {
  6986. "source": "https://github.com/symfony/translation/tree/v6.4.12"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2024-09-16T06:02:54+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/translation-contracts",
  7006. "version": "v3.5.0",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/translation-contracts.git",
  7010. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7015. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=8.1"
  7020. },
  7021. "type": "library",
  7022. "extra": {
  7023. "branch-alias": {
  7024. "dev-main": "3.5-dev"
  7025. },
  7026. "thanks": {
  7027. "name": "symfony/contracts",
  7028. "url": "https://github.com/symfony/contracts"
  7029. }
  7030. },
  7031. "autoload": {
  7032. "psr-4": {
  7033. "Symfony\\Contracts\\Translation\\": ""
  7034. },
  7035. "exclude-from-classmap": [
  7036. "/Test/"
  7037. ]
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Nicolas Grekas",
  7046. "email": "p@tchwork.com"
  7047. },
  7048. {
  7049. "name": "Symfony Community",
  7050. "homepage": "https://symfony.com/contributors"
  7051. }
  7052. ],
  7053. "description": "Generic abstractions related to translation",
  7054. "homepage": "https://symfony.com",
  7055. "keywords": [
  7056. "abstractions",
  7057. "contracts",
  7058. "decoupling",
  7059. "interfaces",
  7060. "interoperability",
  7061. "standards"
  7062. ],
  7063. "support": {
  7064. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7065. },
  7066. "funding": [
  7067. {
  7068. "url": "https://symfony.com/sponsor",
  7069. "type": "custom"
  7070. },
  7071. {
  7072. "url": "https://github.com/fabpot",
  7073. "type": "github"
  7074. },
  7075. {
  7076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7077. "type": "tidelift"
  7078. }
  7079. ],
  7080. "time": "2024-04-18T09:32:20+00:00"
  7081. },
  7082. {
  7083. "name": "vlucas/phpdotenv",
  7084. "version": "v5.6.1",
  7085. "source": {
  7086. "type": "git",
  7087. "url": "https://github.com/vlucas/phpdotenv.git",
  7088. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7089. },
  7090. "dist": {
  7091. "type": "zip",
  7092. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7093. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7094. "shasum": ""
  7095. },
  7096. "require": {
  7097. "ext-pcre": "*",
  7098. "graham-campbell/result-type": "^1.1.3",
  7099. "php": "^7.2.5 || ^8.0",
  7100. "phpoption/phpoption": "^1.9.3",
  7101. "symfony/polyfill-ctype": "^1.24",
  7102. "symfony/polyfill-mbstring": "^1.24",
  7103. "symfony/polyfill-php80": "^1.24"
  7104. },
  7105. "require-dev": {
  7106. "bamarni/composer-bin-plugin": "^1.8.2",
  7107. "ext-filter": "*",
  7108. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7109. },
  7110. "suggest": {
  7111. "ext-filter": "Required to use the boolean validator."
  7112. },
  7113. "type": "library",
  7114. "extra": {
  7115. "bamarni-bin": {
  7116. "bin-links": true,
  7117. "forward-command": false
  7118. },
  7119. "branch-alias": {
  7120. "dev-master": "5.6-dev"
  7121. }
  7122. },
  7123. "autoload": {
  7124. "psr-4": {
  7125. "Dotenv\\": "src/"
  7126. }
  7127. },
  7128. "notification-url": "https://packagist.org/downloads/",
  7129. "license": [
  7130. "BSD-3-Clause"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Graham Campbell",
  7135. "email": "hello@gjcampbell.co.uk",
  7136. "homepage": "https://github.com/GrahamCampbell"
  7137. },
  7138. {
  7139. "name": "Vance Lucas",
  7140. "email": "vance@vancelucas.com",
  7141. "homepage": "https://github.com/vlucas"
  7142. }
  7143. ],
  7144. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7145. "keywords": [
  7146. "dotenv",
  7147. "env",
  7148. "environment"
  7149. ],
  7150. "support": {
  7151. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7152. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7153. },
  7154. "funding": [
  7155. {
  7156. "url": "https://github.com/GrahamCampbell",
  7157. "type": "github"
  7158. },
  7159. {
  7160. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7161. "type": "tidelift"
  7162. }
  7163. ],
  7164. "time": "2024-07-20T21:52:34+00:00"
  7165. }
  7166. ],
  7167. "packages-dev": [
  7168. {
  7169. "name": "clue/ndjson-react",
  7170. "version": "v1.3.0",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/clue/reactphp-ndjson.git",
  7174. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7179. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "php": ">=5.3",
  7184. "react/stream": "^1.2"
  7185. },
  7186. "require-dev": {
  7187. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7188. "react/event-loop": "^1.2"
  7189. },
  7190. "type": "library",
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Clue\\React\\NDJson\\": "src/"
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Christian Lück",
  7203. "email": "christian@clue.engineering"
  7204. }
  7205. ],
  7206. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7207. "homepage": "https://github.com/clue/reactphp-ndjson",
  7208. "keywords": [
  7209. "NDJSON",
  7210. "json",
  7211. "jsonlines",
  7212. "newline",
  7213. "reactphp",
  7214. "streaming"
  7215. ],
  7216. "support": {
  7217. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7218. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://clue.engineering/support",
  7223. "type": "custom"
  7224. },
  7225. {
  7226. "url": "https://github.com/clue",
  7227. "type": "github"
  7228. }
  7229. ],
  7230. "time": "2022-12-23T10:58:28+00:00"
  7231. },
  7232. {
  7233. "name": "composer/pcre",
  7234. "version": "3.3.1",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/composer/pcre.git",
  7238. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7243. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7244. "shasum": ""
  7245. },
  7246. "require": {
  7247. "php": "^7.4 || ^8.0"
  7248. },
  7249. "conflict": {
  7250. "phpstan/phpstan": "<1.11.10"
  7251. },
  7252. "require-dev": {
  7253. "phpstan/phpstan": "^1.11.10",
  7254. "phpstan/phpstan-strict-rules": "^1.1",
  7255. "phpunit/phpunit": "^8 || ^9"
  7256. },
  7257. "type": "library",
  7258. "extra": {
  7259. "branch-alias": {
  7260. "dev-main": "3.x-dev"
  7261. },
  7262. "phpstan": {
  7263. "includes": [
  7264. "extension.neon"
  7265. ]
  7266. }
  7267. },
  7268. "autoload": {
  7269. "psr-4": {
  7270. "Composer\\Pcre\\": "src"
  7271. }
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "MIT"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Jordi Boggiano",
  7280. "email": "j.boggiano@seld.be",
  7281. "homepage": "http://seld.be"
  7282. }
  7283. ],
  7284. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7285. "keywords": [
  7286. "PCRE",
  7287. "preg",
  7288. "regex",
  7289. "regular expression"
  7290. ],
  7291. "support": {
  7292. "issues": "https://github.com/composer/pcre/issues",
  7293. "source": "https://github.com/composer/pcre/tree/3.3.1"
  7294. },
  7295. "funding": [
  7296. {
  7297. "url": "https://packagist.com",
  7298. "type": "custom"
  7299. },
  7300. {
  7301. "url": "https://github.com/composer",
  7302. "type": "github"
  7303. },
  7304. {
  7305. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7306. "type": "tidelift"
  7307. }
  7308. ],
  7309. "time": "2024-08-27T18:44:43+00:00"
  7310. },
  7311. {
  7312. "name": "composer/semver",
  7313. "version": "3.4.3",
  7314. "source": {
  7315. "type": "git",
  7316. "url": "https://github.com/composer/semver.git",
  7317. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7318. },
  7319. "dist": {
  7320. "type": "zip",
  7321. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7322. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7323. "shasum": ""
  7324. },
  7325. "require": {
  7326. "php": "^5.3.2 || ^7.0 || ^8.0"
  7327. },
  7328. "require-dev": {
  7329. "phpstan/phpstan": "^1.11",
  7330. "symfony/phpunit-bridge": "^3 || ^7"
  7331. },
  7332. "type": "library",
  7333. "extra": {
  7334. "branch-alias": {
  7335. "dev-main": "3.x-dev"
  7336. }
  7337. },
  7338. "autoload": {
  7339. "psr-4": {
  7340. "Composer\\Semver\\": "src"
  7341. }
  7342. },
  7343. "notification-url": "https://packagist.org/downloads/",
  7344. "license": [
  7345. "MIT"
  7346. ],
  7347. "authors": [
  7348. {
  7349. "name": "Nils Adermann",
  7350. "email": "naderman@naderman.de",
  7351. "homepage": "http://www.naderman.de"
  7352. },
  7353. {
  7354. "name": "Jordi Boggiano",
  7355. "email": "j.boggiano@seld.be",
  7356. "homepage": "http://seld.be"
  7357. },
  7358. {
  7359. "name": "Rob Bast",
  7360. "email": "rob.bast@gmail.com",
  7361. "homepage": "http://robbast.nl"
  7362. }
  7363. ],
  7364. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7365. "keywords": [
  7366. "semantic",
  7367. "semver",
  7368. "validation",
  7369. "versioning"
  7370. ],
  7371. "support": {
  7372. "irc": "ircs://irc.libera.chat:6697/composer",
  7373. "issues": "https://github.com/composer/semver/issues",
  7374. "source": "https://github.com/composer/semver/tree/3.4.3"
  7375. },
  7376. "funding": [
  7377. {
  7378. "url": "https://packagist.com",
  7379. "type": "custom"
  7380. },
  7381. {
  7382. "url": "https://github.com/composer",
  7383. "type": "github"
  7384. },
  7385. {
  7386. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7387. "type": "tidelift"
  7388. }
  7389. ],
  7390. "time": "2024-09-19T14:15:21+00:00"
  7391. },
  7392. {
  7393. "name": "composer/xdebug-handler",
  7394. "version": "3.0.5",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/composer/xdebug-handler.git",
  7398. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7403. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "composer/pcre": "^1 || ^2 || ^3",
  7408. "php": "^7.2.5 || ^8.0",
  7409. "psr/log": "^1 || ^2 || ^3"
  7410. },
  7411. "require-dev": {
  7412. "phpstan/phpstan": "^1.0",
  7413. "phpstan/phpstan-strict-rules": "^1.1",
  7414. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7415. },
  7416. "type": "library",
  7417. "autoload": {
  7418. "psr-4": {
  7419. "Composer\\XdebugHandler\\": "src"
  7420. }
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "John Stevenson",
  7429. "email": "john-stevenson@blueyonder.co.uk"
  7430. }
  7431. ],
  7432. "description": "Restarts a process without Xdebug.",
  7433. "keywords": [
  7434. "Xdebug",
  7435. "performance"
  7436. ],
  7437. "support": {
  7438. "irc": "ircs://irc.libera.chat:6697/composer",
  7439. "issues": "https://github.com/composer/xdebug-handler/issues",
  7440. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7441. },
  7442. "funding": [
  7443. {
  7444. "url": "https://packagist.com",
  7445. "type": "custom"
  7446. },
  7447. {
  7448. "url": "https://github.com/composer",
  7449. "type": "github"
  7450. },
  7451. {
  7452. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7453. "type": "tidelift"
  7454. }
  7455. ],
  7456. "time": "2024-05-06T16:37:16+00:00"
  7457. },
  7458. {
  7459. "name": "evenement/evenement",
  7460. "version": "v3.0.2",
  7461. "source": {
  7462. "type": "git",
  7463. "url": "https://github.com/igorw/evenement.git",
  7464. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7465. },
  7466. "dist": {
  7467. "type": "zip",
  7468. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7469. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7470. "shasum": ""
  7471. },
  7472. "require": {
  7473. "php": ">=7.0"
  7474. },
  7475. "require-dev": {
  7476. "phpunit/phpunit": "^9 || ^6"
  7477. },
  7478. "type": "library",
  7479. "autoload": {
  7480. "psr-4": {
  7481. "Evenement\\": "src/"
  7482. }
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Igor Wiedler",
  7491. "email": "igor@wiedler.ch"
  7492. }
  7493. ],
  7494. "description": "Événement is a very simple event dispatching library for PHP",
  7495. "keywords": [
  7496. "event-dispatcher",
  7497. "event-emitter"
  7498. ],
  7499. "support": {
  7500. "issues": "https://github.com/igorw/evenement/issues",
  7501. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7502. },
  7503. "time": "2023-08-08T05:53:35+00:00"
  7504. },
  7505. {
  7506. "name": "fidry/cpu-core-counter",
  7507. "version": "1.2.0",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7511. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7516. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "php": "^7.2 || ^8.0"
  7521. },
  7522. "require-dev": {
  7523. "fidry/makefile": "^0.2.0",
  7524. "fidry/php-cs-fixer-config": "^1.1.2",
  7525. "phpstan/extension-installer": "^1.2.0",
  7526. "phpstan/phpstan": "^1.9.2",
  7527. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7528. "phpstan/phpstan-phpunit": "^1.2.2",
  7529. "phpstan/phpstan-strict-rules": "^1.4.4",
  7530. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7531. "webmozarts/strict-phpunit": "^7.5"
  7532. },
  7533. "type": "library",
  7534. "autoload": {
  7535. "psr-4": {
  7536. "Fidry\\CpuCoreCounter\\": "src/"
  7537. }
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "MIT"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Théo FIDRY",
  7546. "email": "theo.fidry@gmail.com"
  7547. }
  7548. ],
  7549. "description": "Tiny utility to get the number of CPU cores.",
  7550. "keywords": [
  7551. "CPU",
  7552. "core"
  7553. ],
  7554. "support": {
  7555. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7556. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7557. },
  7558. "funding": [
  7559. {
  7560. "url": "https://github.com/theofidry",
  7561. "type": "github"
  7562. }
  7563. ],
  7564. "time": "2024-08-06T10:04:20+00:00"
  7565. },
  7566. {
  7567. "name": "friendsofphp/php-cs-fixer",
  7568. "version": "v3.64.0",
  7569. "source": {
  7570. "type": "git",
  7571. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7572. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  7573. },
  7574. "dist": {
  7575. "type": "zip",
  7576. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  7577. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  7578. "shasum": ""
  7579. },
  7580. "require": {
  7581. "clue/ndjson-react": "^1.0",
  7582. "composer/semver": "^3.4",
  7583. "composer/xdebug-handler": "^3.0.3",
  7584. "ext-filter": "*",
  7585. "ext-json": "*",
  7586. "ext-tokenizer": "*",
  7587. "fidry/cpu-core-counter": "^1.0",
  7588. "php": "^7.4 || ^8.0",
  7589. "react/child-process": "^0.6.5",
  7590. "react/event-loop": "^1.0",
  7591. "react/promise": "^2.0 || ^3.0",
  7592. "react/socket": "^1.0",
  7593. "react/stream": "^1.0",
  7594. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7595. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7596. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7597. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7598. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7599. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7600. "symfony/polyfill-mbstring": "^1.28",
  7601. "symfony/polyfill-php80": "^1.28",
  7602. "symfony/polyfill-php81": "^1.28",
  7603. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7604. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7605. },
  7606. "require-dev": {
  7607. "facile-it/paraunit": "^1.3 || ^2.3",
  7608. "infection/infection": "^0.29.5",
  7609. "justinrainbow/json-schema": "^5.2",
  7610. "keradus/cli-executor": "^2.1",
  7611. "mikey179/vfsstream": "^1.6.11",
  7612. "php-coveralls/php-coveralls": "^2.7",
  7613. "php-cs-fixer/accessible-object": "^1.1",
  7614. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7615. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7616. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  7617. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7618. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7619. },
  7620. "suggest": {
  7621. "ext-dom": "For handling output formats in XML",
  7622. "ext-mbstring": "For handling non-UTF8 characters."
  7623. },
  7624. "bin": [
  7625. "php-cs-fixer"
  7626. ],
  7627. "type": "application",
  7628. "autoload": {
  7629. "psr-4": {
  7630. "PhpCsFixer\\": "src/"
  7631. },
  7632. "exclude-from-classmap": [
  7633. "src/Fixer/Internal/*"
  7634. ]
  7635. },
  7636. "notification-url": "https://packagist.org/downloads/",
  7637. "license": [
  7638. "MIT"
  7639. ],
  7640. "authors": [
  7641. {
  7642. "name": "Fabien Potencier",
  7643. "email": "fabien@symfony.com"
  7644. },
  7645. {
  7646. "name": "Dariusz Rumiński",
  7647. "email": "dariusz.ruminski@gmail.com"
  7648. }
  7649. ],
  7650. "description": "A tool to automatically fix PHP code style",
  7651. "keywords": [
  7652. "Static code analysis",
  7653. "fixer",
  7654. "standards",
  7655. "static analysis"
  7656. ],
  7657. "support": {
  7658. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7659. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  7660. },
  7661. "funding": [
  7662. {
  7663. "url": "https://github.com/keradus",
  7664. "type": "github"
  7665. }
  7666. ],
  7667. "time": "2024-08-30T23:09:38+00:00"
  7668. },
  7669. {
  7670. "name": "hamcrest/hamcrest-php",
  7671. "version": "v2.0.1",
  7672. "source": {
  7673. "type": "git",
  7674. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7675. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7676. },
  7677. "dist": {
  7678. "type": "zip",
  7679. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7680. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7681. "shasum": ""
  7682. },
  7683. "require": {
  7684. "php": "^5.3|^7.0|^8.0"
  7685. },
  7686. "replace": {
  7687. "cordoval/hamcrest-php": "*",
  7688. "davedevelopment/hamcrest-php": "*",
  7689. "kodova/hamcrest-php": "*"
  7690. },
  7691. "require-dev": {
  7692. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7693. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7694. },
  7695. "type": "library",
  7696. "extra": {
  7697. "branch-alias": {
  7698. "dev-master": "2.1-dev"
  7699. }
  7700. },
  7701. "autoload": {
  7702. "classmap": [
  7703. "hamcrest"
  7704. ]
  7705. },
  7706. "notification-url": "https://packagist.org/downloads/",
  7707. "license": [
  7708. "BSD-3-Clause"
  7709. ],
  7710. "description": "This is the PHP port of Hamcrest Matchers",
  7711. "keywords": [
  7712. "test"
  7713. ],
  7714. "support": {
  7715. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7716. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7717. },
  7718. "time": "2020-07-09T08:09:16+00:00"
  7719. },
  7720. {
  7721. "name": "hyperf/devtool",
  7722. "version": "v3.1.42",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/hyperf/devtool.git",
  7726. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7731. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "hyperf/code-parser": "~3.1.0",
  7736. "hyperf/command": "~3.1.0",
  7737. "hyperf/contract": "~3.1.0",
  7738. "hyperf/di": "~3.1.0",
  7739. "hyperf/support": "~3.1.0",
  7740. "hyperf/utils": "~3.1.0",
  7741. "php": ">=8.1"
  7742. },
  7743. "type": "library",
  7744. "extra": {
  7745. "branch-alias": {
  7746. "dev-master": "3.1-dev"
  7747. },
  7748. "hyperf": {
  7749. "config": "Hyperf\\Devtool\\ConfigProvider"
  7750. }
  7751. },
  7752. "autoload": {
  7753. "psr-4": {
  7754. "Hyperf\\Devtool\\": "src/"
  7755. }
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "MIT"
  7760. ],
  7761. "description": "A Devtool for Hyperf.",
  7762. "homepage": "https://hyperf.io",
  7763. "keywords": [
  7764. "dev",
  7765. "devtool",
  7766. "hyperf",
  7767. "php",
  7768. "swoole"
  7769. ],
  7770. "support": {
  7771. "docs": "https://hyperf.wiki",
  7772. "issues": "https://github.com/hyperf/hyperf/issues",
  7773. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7774. "source": "https://github.com/hyperf/hyperf"
  7775. },
  7776. "funding": [
  7777. {
  7778. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7779. "type": "custom"
  7780. },
  7781. {
  7782. "url": "https://opencollective.com/hyperf",
  7783. "type": "open_collective"
  7784. }
  7785. ],
  7786. "time": "2024-09-25T02:54:12+00:00"
  7787. },
  7788. {
  7789. "name": "hyperf/testing",
  7790. "version": "v3.1.44",
  7791. "source": {
  7792. "type": "git",
  7793. "url": "https://github.com/hyperf/testing.git",
  7794. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  7795. },
  7796. "dist": {
  7797. "type": "zip",
  7798. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7799. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7800. "shasum": ""
  7801. },
  7802. "require": {
  7803. "hyperf/codec": "~3.1.0",
  7804. "hyperf/collection": "~3.1.0",
  7805. "hyperf/contract": "~3.1.0",
  7806. "hyperf/coroutine": "~3.1.0",
  7807. "hyperf/http-message": "~3.1.0",
  7808. "hyperf/http-server": "~3.1.0",
  7809. "hyperf/support": "~3.1.0",
  7810. "hyperf/utils": "~3.1.0",
  7811. "php": ">=8.1",
  7812. "phpunit/phpunit": "^10.0",
  7813. "psr/container": "^1.0 || ^2.0",
  7814. "symfony/http-foundation": "^5.4 || ^6.0"
  7815. },
  7816. "suggest": {
  7817. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7818. },
  7819. "bin": [
  7820. "co-phpunit"
  7821. ],
  7822. "type": "library",
  7823. "extra": {
  7824. "branch-alias": {
  7825. "dev-master": "3.1-dev"
  7826. }
  7827. },
  7828. "autoload": {
  7829. "psr-4": {
  7830. "Hyperf\\Testing\\": "src/"
  7831. }
  7832. },
  7833. "notification-url": "https://packagist.org/downloads/",
  7834. "license": [
  7835. "MIT"
  7836. ],
  7837. "description": "Testing for hyperf",
  7838. "keywords": [
  7839. "dev",
  7840. "php",
  7841. "swoole",
  7842. "testing"
  7843. ],
  7844. "support": {
  7845. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  7846. },
  7847. "funding": [
  7848. {
  7849. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7850. "type": "custom"
  7851. },
  7852. {
  7853. "url": "https://opencollective.com/hyperf",
  7854. "type": "open_collective"
  7855. }
  7856. ],
  7857. "time": "2024-10-23T10:24:12+00:00"
  7858. },
  7859. {
  7860. "name": "hyperf/watcher",
  7861. "version": "v3.1.43",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/hyperf/watcher.git",
  7865. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7870. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7871. "shasum": ""
  7872. },
  7873. "require": {
  7874. "ext-posix": "*",
  7875. "hyperf/codec": "~3.1.0",
  7876. "hyperf/command": "~3.1.0",
  7877. "hyperf/di": "~3.1.0",
  7878. "hyperf/framework": "~3.1.0",
  7879. "hyperf/support": "~3.1.0",
  7880. "php": ">=8.1"
  7881. },
  7882. "type": "library",
  7883. "extra": {
  7884. "branch-alias": {
  7885. "dev-master": "3.1-dev"
  7886. },
  7887. "hyperf": {
  7888. "config": "Hyperf\\Watcher\\ConfigProvider"
  7889. }
  7890. },
  7891. "autoload": {
  7892. "files": [
  7893. "src/Functions.php"
  7894. ],
  7895. "psr-4": {
  7896. "Hyperf\\Watcher\\": "src/"
  7897. }
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "MIT"
  7902. ],
  7903. "description": "Hot reload watcher for Hyperf",
  7904. "keywords": [
  7905. "dev",
  7906. "hyperf",
  7907. "php"
  7908. ],
  7909. "support": {
  7910. "issues": "https://github.com/hyperf/watcher/issues",
  7911. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  7912. },
  7913. "funding": [
  7914. {
  7915. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7916. "type": "custom"
  7917. },
  7918. {
  7919. "url": "https://opencollective.com/hyperf",
  7920. "type": "open_collective"
  7921. }
  7922. ],
  7923. "time": "2024-10-06T12:33:12+00:00"
  7924. },
  7925. {
  7926. "name": "mockery/mockery",
  7927. "version": "1.6.12",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/mockery/mockery.git",
  7931. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7936. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "hamcrest/hamcrest-php": "^2.0.1",
  7941. "lib-pcre": ">=7.0",
  7942. "php": ">=7.3"
  7943. },
  7944. "conflict": {
  7945. "phpunit/phpunit": "<8.0"
  7946. },
  7947. "require-dev": {
  7948. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7949. "symplify/easy-coding-standard": "^12.1.14"
  7950. },
  7951. "type": "library",
  7952. "autoload": {
  7953. "files": [
  7954. "library/helpers.php",
  7955. "library/Mockery.php"
  7956. ],
  7957. "psr-4": {
  7958. "Mockery\\": "library/Mockery"
  7959. }
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "BSD-3-Clause"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Pádraic Brady",
  7968. "email": "padraic.brady@gmail.com",
  7969. "homepage": "https://github.com/padraic",
  7970. "role": "Author"
  7971. },
  7972. {
  7973. "name": "Dave Marshall",
  7974. "email": "dave.marshall@atstsolutions.co.uk",
  7975. "homepage": "https://davedevelopment.co.uk",
  7976. "role": "Developer"
  7977. },
  7978. {
  7979. "name": "Nathanael Esayeas",
  7980. "email": "nathanael.esayeas@protonmail.com",
  7981. "homepage": "https://github.com/ghostwriter",
  7982. "role": "Lead Developer"
  7983. }
  7984. ],
  7985. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7986. "homepage": "https://github.com/mockery/mockery",
  7987. "keywords": [
  7988. "BDD",
  7989. "TDD",
  7990. "library",
  7991. "mock",
  7992. "mock objects",
  7993. "mockery",
  7994. "stub",
  7995. "test",
  7996. "test double",
  7997. "testing"
  7998. ],
  7999. "support": {
  8000. "docs": "https://docs.mockery.io/",
  8001. "issues": "https://github.com/mockery/mockery/issues",
  8002. "rss": "https://github.com/mockery/mockery/releases.atom",
  8003. "security": "https://github.com/mockery/mockery/security/advisories",
  8004. "source": "https://github.com/mockery/mockery"
  8005. },
  8006. "time": "2024-05-16T03:13:13+00:00"
  8007. },
  8008. {
  8009. "name": "myclabs/deep-copy",
  8010. "version": "1.12.0",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/myclabs/DeepCopy.git",
  8014. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8019. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": "^7.1 || ^8.0"
  8024. },
  8025. "conflict": {
  8026. "doctrine/collections": "<1.6.8",
  8027. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8028. },
  8029. "require-dev": {
  8030. "doctrine/collections": "^1.6.8",
  8031. "doctrine/common": "^2.13.3 || ^3.2.2",
  8032. "phpspec/prophecy": "^1.10",
  8033. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8034. },
  8035. "type": "library",
  8036. "autoload": {
  8037. "files": [
  8038. "src/DeepCopy/deep_copy.php"
  8039. ],
  8040. "psr-4": {
  8041. "DeepCopy\\": "src/DeepCopy/"
  8042. }
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "MIT"
  8047. ],
  8048. "description": "Create deep copies (clones) of your objects",
  8049. "keywords": [
  8050. "clone",
  8051. "copy",
  8052. "duplicate",
  8053. "object",
  8054. "object graph"
  8055. ],
  8056. "support": {
  8057. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8058. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8059. },
  8060. "funding": [
  8061. {
  8062. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8063. "type": "tidelift"
  8064. }
  8065. ],
  8066. "time": "2024-06-12T14:39:25+00:00"
  8067. },
  8068. {
  8069. "name": "phar-io/manifest",
  8070. "version": "2.0.4",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/phar-io/manifest.git",
  8074. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8079. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "ext-dom": "*",
  8084. "ext-libxml": "*",
  8085. "ext-phar": "*",
  8086. "ext-xmlwriter": "*",
  8087. "phar-io/version": "^3.0.1",
  8088. "php": "^7.2 || ^8.0"
  8089. },
  8090. "type": "library",
  8091. "extra": {
  8092. "branch-alias": {
  8093. "dev-master": "2.0.x-dev"
  8094. }
  8095. },
  8096. "autoload": {
  8097. "classmap": [
  8098. "src/"
  8099. ]
  8100. },
  8101. "notification-url": "https://packagist.org/downloads/",
  8102. "license": [
  8103. "BSD-3-Clause"
  8104. ],
  8105. "authors": [
  8106. {
  8107. "name": "Arne Blankerts",
  8108. "email": "arne@blankerts.de",
  8109. "role": "Developer"
  8110. },
  8111. {
  8112. "name": "Sebastian Heuer",
  8113. "email": "sebastian@phpeople.de",
  8114. "role": "Developer"
  8115. },
  8116. {
  8117. "name": "Sebastian Bergmann",
  8118. "email": "sebastian@phpunit.de",
  8119. "role": "Developer"
  8120. }
  8121. ],
  8122. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8123. "support": {
  8124. "issues": "https://github.com/phar-io/manifest/issues",
  8125. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8126. },
  8127. "funding": [
  8128. {
  8129. "url": "https://github.com/theseer",
  8130. "type": "github"
  8131. }
  8132. ],
  8133. "time": "2024-03-03T12:33:53+00:00"
  8134. },
  8135. {
  8136. "name": "phar-io/version",
  8137. "version": "3.2.1",
  8138. "source": {
  8139. "type": "git",
  8140. "url": "https://github.com/phar-io/version.git",
  8141. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8142. },
  8143. "dist": {
  8144. "type": "zip",
  8145. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8146. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8147. "shasum": ""
  8148. },
  8149. "require": {
  8150. "php": "^7.2 || ^8.0"
  8151. },
  8152. "type": "library",
  8153. "autoload": {
  8154. "classmap": [
  8155. "src/"
  8156. ]
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "BSD-3-Clause"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Arne Blankerts",
  8165. "email": "arne@blankerts.de",
  8166. "role": "Developer"
  8167. },
  8168. {
  8169. "name": "Sebastian Heuer",
  8170. "email": "sebastian@phpeople.de",
  8171. "role": "Developer"
  8172. },
  8173. {
  8174. "name": "Sebastian Bergmann",
  8175. "email": "sebastian@phpunit.de",
  8176. "role": "Developer"
  8177. }
  8178. ],
  8179. "description": "Library for handling version information and constraints",
  8180. "support": {
  8181. "issues": "https://github.com/phar-io/version/issues",
  8182. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8183. },
  8184. "time": "2022-02-21T01:04:05+00:00"
  8185. },
  8186. {
  8187. "name": "phpstan/phpstan",
  8188. "version": "1.12.7",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/phpstan/phpstan.git",
  8192. "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dc2b9976bd8b0f84ec9b0e50cc35378551de7af0",
  8197. "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": "^7.2|^8.0"
  8202. },
  8203. "conflict": {
  8204. "phpstan/phpstan-shim": "*"
  8205. },
  8206. "bin": [
  8207. "phpstan",
  8208. "phpstan.phar"
  8209. ],
  8210. "type": "library",
  8211. "autoload": {
  8212. "files": [
  8213. "bootstrap.php"
  8214. ]
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "description": "PHPStan - PHP Static Analysis Tool",
  8221. "keywords": [
  8222. "dev",
  8223. "static analysis"
  8224. ],
  8225. "support": {
  8226. "docs": "https://phpstan.org/user-guide/getting-started",
  8227. "forum": "https://github.com/phpstan/phpstan/discussions",
  8228. "issues": "https://github.com/phpstan/phpstan/issues",
  8229. "security": "https://github.com/phpstan/phpstan/security/policy",
  8230. "source": "https://github.com/phpstan/phpstan-src"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://github.com/ondrejmirtes",
  8235. "type": "github"
  8236. },
  8237. {
  8238. "url": "https://github.com/phpstan",
  8239. "type": "github"
  8240. }
  8241. ],
  8242. "time": "2024-10-18T11:12:07+00:00"
  8243. },
  8244. {
  8245. "name": "phpunit/php-code-coverage",
  8246. "version": "10.1.16",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8250. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8255. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8256. "shasum": ""
  8257. },
  8258. "require": {
  8259. "ext-dom": "*",
  8260. "ext-libxml": "*",
  8261. "ext-xmlwriter": "*",
  8262. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8263. "php": ">=8.1",
  8264. "phpunit/php-file-iterator": "^4.1.0",
  8265. "phpunit/php-text-template": "^3.0.1",
  8266. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8267. "sebastian/complexity": "^3.2.0",
  8268. "sebastian/environment": "^6.1.0",
  8269. "sebastian/lines-of-code": "^2.0.2",
  8270. "sebastian/version": "^4.0.1",
  8271. "theseer/tokenizer": "^1.2.3"
  8272. },
  8273. "require-dev": {
  8274. "phpunit/phpunit": "^10.1"
  8275. },
  8276. "suggest": {
  8277. "ext-pcov": "PHP extension that provides line coverage",
  8278. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8279. },
  8280. "type": "library",
  8281. "extra": {
  8282. "branch-alias": {
  8283. "dev-main": "10.1.x-dev"
  8284. }
  8285. },
  8286. "autoload": {
  8287. "classmap": [
  8288. "src/"
  8289. ]
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "BSD-3-Clause"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Sebastian Bergmann",
  8298. "email": "sebastian@phpunit.de",
  8299. "role": "lead"
  8300. }
  8301. ],
  8302. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8303. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8304. "keywords": [
  8305. "coverage",
  8306. "testing",
  8307. "xunit"
  8308. ],
  8309. "support": {
  8310. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8311. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8312. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8313. },
  8314. "funding": [
  8315. {
  8316. "url": "https://github.com/sebastianbergmann",
  8317. "type": "github"
  8318. }
  8319. ],
  8320. "time": "2024-08-22T04:31:57+00:00"
  8321. },
  8322. {
  8323. "name": "phpunit/php-file-iterator",
  8324. "version": "4.1.0",
  8325. "source": {
  8326. "type": "git",
  8327. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8328. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8329. },
  8330. "dist": {
  8331. "type": "zip",
  8332. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8333. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8334. "shasum": ""
  8335. },
  8336. "require": {
  8337. "php": ">=8.1"
  8338. },
  8339. "require-dev": {
  8340. "phpunit/phpunit": "^10.0"
  8341. },
  8342. "type": "library",
  8343. "extra": {
  8344. "branch-alias": {
  8345. "dev-main": "4.0-dev"
  8346. }
  8347. },
  8348. "autoload": {
  8349. "classmap": [
  8350. "src/"
  8351. ]
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "BSD-3-Clause"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Sebastian Bergmann",
  8360. "email": "sebastian@phpunit.de",
  8361. "role": "lead"
  8362. }
  8363. ],
  8364. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8365. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8366. "keywords": [
  8367. "filesystem",
  8368. "iterator"
  8369. ],
  8370. "support": {
  8371. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8372. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8373. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8374. },
  8375. "funding": [
  8376. {
  8377. "url": "https://github.com/sebastianbergmann",
  8378. "type": "github"
  8379. }
  8380. ],
  8381. "time": "2023-08-31T06:24:48+00:00"
  8382. },
  8383. {
  8384. "name": "phpunit/php-invoker",
  8385. "version": "4.0.0",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8389. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8394. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8395. "shasum": ""
  8396. },
  8397. "require": {
  8398. "php": ">=8.1"
  8399. },
  8400. "require-dev": {
  8401. "ext-pcntl": "*",
  8402. "phpunit/phpunit": "^10.0"
  8403. },
  8404. "suggest": {
  8405. "ext-pcntl": "*"
  8406. },
  8407. "type": "library",
  8408. "extra": {
  8409. "branch-alias": {
  8410. "dev-main": "4.0-dev"
  8411. }
  8412. },
  8413. "autoload": {
  8414. "classmap": [
  8415. "src/"
  8416. ]
  8417. },
  8418. "notification-url": "https://packagist.org/downloads/",
  8419. "license": [
  8420. "BSD-3-Clause"
  8421. ],
  8422. "authors": [
  8423. {
  8424. "name": "Sebastian Bergmann",
  8425. "email": "sebastian@phpunit.de",
  8426. "role": "lead"
  8427. }
  8428. ],
  8429. "description": "Invoke callables with a timeout",
  8430. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8431. "keywords": [
  8432. "process"
  8433. ],
  8434. "support": {
  8435. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8436. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://github.com/sebastianbergmann",
  8441. "type": "github"
  8442. }
  8443. ],
  8444. "time": "2023-02-03T06:56:09+00:00"
  8445. },
  8446. {
  8447. "name": "phpunit/php-text-template",
  8448. "version": "3.0.1",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8452. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8457. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=8.1"
  8462. },
  8463. "require-dev": {
  8464. "phpunit/phpunit": "^10.0"
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-main": "3.0-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "classmap": [
  8474. "src/"
  8475. ]
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "BSD-3-Clause"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Sebastian Bergmann",
  8484. "email": "sebastian@phpunit.de",
  8485. "role": "lead"
  8486. }
  8487. ],
  8488. "description": "Simple template engine.",
  8489. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8490. "keywords": [
  8491. "template"
  8492. ],
  8493. "support": {
  8494. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8495. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8496. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8497. },
  8498. "funding": [
  8499. {
  8500. "url": "https://github.com/sebastianbergmann",
  8501. "type": "github"
  8502. }
  8503. ],
  8504. "time": "2023-08-31T14:07:24+00:00"
  8505. },
  8506. {
  8507. "name": "phpunit/php-timer",
  8508. "version": "6.0.0",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8512. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8517. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "php": ">=8.1"
  8522. },
  8523. "require-dev": {
  8524. "phpunit/phpunit": "^10.0"
  8525. },
  8526. "type": "library",
  8527. "extra": {
  8528. "branch-alias": {
  8529. "dev-main": "6.0-dev"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "classmap": [
  8534. "src/"
  8535. ]
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Sebastian Bergmann",
  8544. "email": "sebastian@phpunit.de",
  8545. "role": "lead"
  8546. }
  8547. ],
  8548. "description": "Utility class for timing",
  8549. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8550. "keywords": [
  8551. "timer"
  8552. ],
  8553. "support": {
  8554. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8555. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8556. },
  8557. "funding": [
  8558. {
  8559. "url": "https://github.com/sebastianbergmann",
  8560. "type": "github"
  8561. }
  8562. ],
  8563. "time": "2023-02-03T06:57:52+00:00"
  8564. },
  8565. {
  8566. "name": "phpunit/phpunit",
  8567. "version": "10.5.37",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8571. "reference": "c7cffa0efa2b70c22366523e6d804c9419eb2400"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c7cffa0efa2b70c22366523e6d804c9419eb2400",
  8576. "reference": "c7cffa0efa2b70c22366523e6d804c9419eb2400",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "ext-dom": "*",
  8581. "ext-json": "*",
  8582. "ext-libxml": "*",
  8583. "ext-mbstring": "*",
  8584. "ext-xml": "*",
  8585. "ext-xmlwriter": "*",
  8586. "myclabs/deep-copy": "^1.12.0",
  8587. "phar-io/manifest": "^2.0.4",
  8588. "phar-io/version": "^3.2.1",
  8589. "php": ">=8.1",
  8590. "phpunit/php-code-coverage": "^10.1.16",
  8591. "phpunit/php-file-iterator": "^4.1.0",
  8592. "phpunit/php-invoker": "^4.0.0",
  8593. "phpunit/php-text-template": "^3.0.1",
  8594. "phpunit/php-timer": "^6.0.0",
  8595. "sebastian/cli-parser": "^2.0.1",
  8596. "sebastian/code-unit": "^2.0.0",
  8597. "sebastian/comparator": "^5.0.3",
  8598. "sebastian/diff": "^5.1.1",
  8599. "sebastian/environment": "^6.1.0",
  8600. "sebastian/exporter": "^5.1.2",
  8601. "sebastian/global-state": "^6.0.2",
  8602. "sebastian/object-enumerator": "^5.0.0",
  8603. "sebastian/recursion-context": "^5.0.0",
  8604. "sebastian/type": "^4.0.0",
  8605. "sebastian/version": "^4.0.1"
  8606. },
  8607. "suggest": {
  8608. "ext-soap": "To be able to generate mocks based on WSDL files"
  8609. },
  8610. "bin": [
  8611. "phpunit"
  8612. ],
  8613. "type": "library",
  8614. "extra": {
  8615. "branch-alias": {
  8616. "dev-main": "10.5-dev"
  8617. }
  8618. },
  8619. "autoload": {
  8620. "files": [
  8621. "src/Framework/Assert/Functions.php"
  8622. ],
  8623. "classmap": [
  8624. "src/"
  8625. ]
  8626. },
  8627. "notification-url": "https://packagist.org/downloads/",
  8628. "license": [
  8629. "BSD-3-Clause"
  8630. ],
  8631. "authors": [
  8632. {
  8633. "name": "Sebastian Bergmann",
  8634. "email": "sebastian@phpunit.de",
  8635. "role": "lead"
  8636. }
  8637. ],
  8638. "description": "The PHP Unit Testing framework.",
  8639. "homepage": "https://phpunit.de/",
  8640. "keywords": [
  8641. "phpunit",
  8642. "testing",
  8643. "xunit"
  8644. ],
  8645. "support": {
  8646. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8647. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8648. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.37"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://phpunit.de/sponsors.html",
  8653. "type": "custom"
  8654. },
  8655. {
  8656. "url": "https://github.com/sebastianbergmann",
  8657. "type": "github"
  8658. },
  8659. {
  8660. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8661. "type": "tidelift"
  8662. }
  8663. ],
  8664. "time": "2024-10-19T13:03:41+00:00"
  8665. },
  8666. {
  8667. "name": "react/cache",
  8668. "version": "v1.2.0",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/reactphp/cache.git",
  8672. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8677. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=5.3.0",
  8682. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8683. },
  8684. "require-dev": {
  8685. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8686. },
  8687. "type": "library",
  8688. "autoload": {
  8689. "psr-4": {
  8690. "React\\Cache\\": "src/"
  8691. }
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "MIT"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Christian Lück",
  8700. "email": "christian@clue.engineering",
  8701. "homepage": "https://clue.engineering/"
  8702. },
  8703. {
  8704. "name": "Cees-Jan Kiewiet",
  8705. "email": "reactphp@ceesjankiewiet.nl",
  8706. "homepage": "https://wyrihaximus.net/"
  8707. },
  8708. {
  8709. "name": "Jan Sorgalla",
  8710. "email": "jsorgalla@gmail.com",
  8711. "homepage": "https://sorgalla.com/"
  8712. },
  8713. {
  8714. "name": "Chris Boden",
  8715. "email": "cboden@gmail.com",
  8716. "homepage": "https://cboden.dev/"
  8717. }
  8718. ],
  8719. "description": "Async, Promise-based cache interface for ReactPHP",
  8720. "keywords": [
  8721. "cache",
  8722. "caching",
  8723. "promise",
  8724. "reactphp"
  8725. ],
  8726. "support": {
  8727. "issues": "https://github.com/reactphp/cache/issues",
  8728. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8729. },
  8730. "funding": [
  8731. {
  8732. "url": "https://opencollective.com/reactphp",
  8733. "type": "open_collective"
  8734. }
  8735. ],
  8736. "time": "2022-11-30T15:59:55+00:00"
  8737. },
  8738. {
  8739. "name": "react/child-process",
  8740. "version": "v0.6.5",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/reactphp/child-process.git",
  8744. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8749. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8754. "php": ">=5.3.0",
  8755. "react/event-loop": "^1.2",
  8756. "react/stream": "^1.2"
  8757. },
  8758. "require-dev": {
  8759. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8760. "react/socket": "^1.8",
  8761. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8762. },
  8763. "type": "library",
  8764. "autoload": {
  8765. "psr-4": {
  8766. "React\\ChildProcess\\": "src"
  8767. }
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "MIT"
  8772. ],
  8773. "authors": [
  8774. {
  8775. "name": "Christian Lück",
  8776. "email": "christian@clue.engineering",
  8777. "homepage": "https://clue.engineering/"
  8778. },
  8779. {
  8780. "name": "Cees-Jan Kiewiet",
  8781. "email": "reactphp@ceesjankiewiet.nl",
  8782. "homepage": "https://wyrihaximus.net/"
  8783. },
  8784. {
  8785. "name": "Jan Sorgalla",
  8786. "email": "jsorgalla@gmail.com",
  8787. "homepage": "https://sorgalla.com/"
  8788. },
  8789. {
  8790. "name": "Chris Boden",
  8791. "email": "cboden@gmail.com",
  8792. "homepage": "https://cboden.dev/"
  8793. }
  8794. ],
  8795. "description": "Event-driven library for executing child processes with ReactPHP.",
  8796. "keywords": [
  8797. "event-driven",
  8798. "process",
  8799. "reactphp"
  8800. ],
  8801. "support": {
  8802. "issues": "https://github.com/reactphp/child-process/issues",
  8803. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8804. },
  8805. "funding": [
  8806. {
  8807. "url": "https://github.com/WyriHaximus",
  8808. "type": "github"
  8809. },
  8810. {
  8811. "url": "https://github.com/clue",
  8812. "type": "github"
  8813. }
  8814. ],
  8815. "time": "2022-09-16T13:41:56+00:00"
  8816. },
  8817. {
  8818. "name": "react/dns",
  8819. "version": "v1.13.0",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/reactphp/dns.git",
  8823. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8828. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": ">=5.3.0",
  8833. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8834. "react/event-loop": "^1.2",
  8835. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8836. },
  8837. "require-dev": {
  8838. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8839. "react/async": "^4.3 || ^3 || ^2",
  8840. "react/promise-timer": "^1.11"
  8841. },
  8842. "type": "library",
  8843. "autoload": {
  8844. "psr-4": {
  8845. "React\\Dns\\": "src/"
  8846. }
  8847. },
  8848. "notification-url": "https://packagist.org/downloads/",
  8849. "license": [
  8850. "MIT"
  8851. ],
  8852. "authors": [
  8853. {
  8854. "name": "Christian Lück",
  8855. "email": "christian@clue.engineering",
  8856. "homepage": "https://clue.engineering/"
  8857. },
  8858. {
  8859. "name": "Cees-Jan Kiewiet",
  8860. "email": "reactphp@ceesjankiewiet.nl",
  8861. "homepage": "https://wyrihaximus.net/"
  8862. },
  8863. {
  8864. "name": "Jan Sorgalla",
  8865. "email": "jsorgalla@gmail.com",
  8866. "homepage": "https://sorgalla.com/"
  8867. },
  8868. {
  8869. "name": "Chris Boden",
  8870. "email": "cboden@gmail.com",
  8871. "homepage": "https://cboden.dev/"
  8872. }
  8873. ],
  8874. "description": "Async DNS resolver for ReactPHP",
  8875. "keywords": [
  8876. "async",
  8877. "dns",
  8878. "dns-resolver",
  8879. "reactphp"
  8880. ],
  8881. "support": {
  8882. "issues": "https://github.com/reactphp/dns/issues",
  8883. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8884. },
  8885. "funding": [
  8886. {
  8887. "url": "https://opencollective.com/reactphp",
  8888. "type": "open_collective"
  8889. }
  8890. ],
  8891. "time": "2024-06-13T14:18:03+00:00"
  8892. },
  8893. {
  8894. "name": "react/event-loop",
  8895. "version": "v1.5.0",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/reactphp/event-loop.git",
  8899. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8904. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": ">=5.3.0"
  8909. },
  8910. "require-dev": {
  8911. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8912. },
  8913. "suggest": {
  8914. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8915. },
  8916. "type": "library",
  8917. "autoload": {
  8918. "psr-4": {
  8919. "React\\EventLoop\\": "src/"
  8920. }
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Christian Lück",
  8929. "email": "christian@clue.engineering",
  8930. "homepage": "https://clue.engineering/"
  8931. },
  8932. {
  8933. "name": "Cees-Jan Kiewiet",
  8934. "email": "reactphp@ceesjankiewiet.nl",
  8935. "homepage": "https://wyrihaximus.net/"
  8936. },
  8937. {
  8938. "name": "Jan Sorgalla",
  8939. "email": "jsorgalla@gmail.com",
  8940. "homepage": "https://sorgalla.com/"
  8941. },
  8942. {
  8943. "name": "Chris Boden",
  8944. "email": "cboden@gmail.com",
  8945. "homepage": "https://cboden.dev/"
  8946. }
  8947. ],
  8948. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8949. "keywords": [
  8950. "asynchronous",
  8951. "event-loop"
  8952. ],
  8953. "support": {
  8954. "issues": "https://github.com/reactphp/event-loop/issues",
  8955. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8956. },
  8957. "funding": [
  8958. {
  8959. "url": "https://opencollective.com/reactphp",
  8960. "type": "open_collective"
  8961. }
  8962. ],
  8963. "time": "2023-11-13T13:48:05+00:00"
  8964. },
  8965. {
  8966. "name": "react/socket",
  8967. "version": "v1.16.0",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/reactphp/socket.git",
  8971. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8976. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8981. "php": ">=5.3.0",
  8982. "react/dns": "^1.13",
  8983. "react/event-loop": "^1.2",
  8984. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8985. "react/stream": "^1.4"
  8986. },
  8987. "require-dev": {
  8988. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8989. "react/async": "^4.3 || ^3.3 || ^2",
  8990. "react/promise-stream": "^1.4",
  8991. "react/promise-timer": "^1.11"
  8992. },
  8993. "type": "library",
  8994. "autoload": {
  8995. "psr-4": {
  8996. "React\\Socket\\": "src/"
  8997. }
  8998. },
  8999. "notification-url": "https://packagist.org/downloads/",
  9000. "license": [
  9001. "MIT"
  9002. ],
  9003. "authors": [
  9004. {
  9005. "name": "Christian Lück",
  9006. "email": "christian@clue.engineering",
  9007. "homepage": "https://clue.engineering/"
  9008. },
  9009. {
  9010. "name": "Cees-Jan Kiewiet",
  9011. "email": "reactphp@ceesjankiewiet.nl",
  9012. "homepage": "https://wyrihaximus.net/"
  9013. },
  9014. {
  9015. "name": "Jan Sorgalla",
  9016. "email": "jsorgalla@gmail.com",
  9017. "homepage": "https://sorgalla.com/"
  9018. },
  9019. {
  9020. "name": "Chris Boden",
  9021. "email": "cboden@gmail.com",
  9022. "homepage": "https://cboden.dev/"
  9023. }
  9024. ],
  9025. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9026. "keywords": [
  9027. "Connection",
  9028. "Socket",
  9029. "async",
  9030. "reactphp",
  9031. "stream"
  9032. ],
  9033. "support": {
  9034. "issues": "https://github.com/reactphp/socket/issues",
  9035. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9036. },
  9037. "funding": [
  9038. {
  9039. "url": "https://opencollective.com/reactphp",
  9040. "type": "open_collective"
  9041. }
  9042. ],
  9043. "time": "2024-07-26T10:38:09+00:00"
  9044. },
  9045. {
  9046. "name": "react/stream",
  9047. "version": "v1.4.0",
  9048. "source": {
  9049. "type": "git",
  9050. "url": "https://github.com/reactphp/stream.git",
  9051. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9052. },
  9053. "dist": {
  9054. "type": "zip",
  9055. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9056. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9057. "shasum": ""
  9058. },
  9059. "require": {
  9060. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9061. "php": ">=5.3.8",
  9062. "react/event-loop": "^1.2"
  9063. },
  9064. "require-dev": {
  9065. "clue/stream-filter": "~1.2",
  9066. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9067. },
  9068. "type": "library",
  9069. "autoload": {
  9070. "psr-4": {
  9071. "React\\Stream\\": "src/"
  9072. }
  9073. },
  9074. "notification-url": "https://packagist.org/downloads/",
  9075. "license": [
  9076. "MIT"
  9077. ],
  9078. "authors": [
  9079. {
  9080. "name": "Christian Lück",
  9081. "email": "christian@clue.engineering",
  9082. "homepage": "https://clue.engineering/"
  9083. },
  9084. {
  9085. "name": "Cees-Jan Kiewiet",
  9086. "email": "reactphp@ceesjankiewiet.nl",
  9087. "homepage": "https://wyrihaximus.net/"
  9088. },
  9089. {
  9090. "name": "Jan Sorgalla",
  9091. "email": "jsorgalla@gmail.com",
  9092. "homepage": "https://sorgalla.com/"
  9093. },
  9094. {
  9095. "name": "Chris Boden",
  9096. "email": "cboden@gmail.com",
  9097. "homepage": "https://cboden.dev/"
  9098. }
  9099. ],
  9100. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9101. "keywords": [
  9102. "event-driven",
  9103. "io",
  9104. "non-blocking",
  9105. "pipe",
  9106. "reactphp",
  9107. "readable",
  9108. "stream",
  9109. "writable"
  9110. ],
  9111. "support": {
  9112. "issues": "https://github.com/reactphp/stream/issues",
  9113. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9114. },
  9115. "funding": [
  9116. {
  9117. "url": "https://opencollective.com/reactphp",
  9118. "type": "open_collective"
  9119. }
  9120. ],
  9121. "time": "2024-06-11T12:45:25+00:00"
  9122. },
  9123. {
  9124. "name": "sebastian/cli-parser",
  9125. "version": "2.0.1",
  9126. "source": {
  9127. "type": "git",
  9128. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9129. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9130. },
  9131. "dist": {
  9132. "type": "zip",
  9133. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9134. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9135. "shasum": ""
  9136. },
  9137. "require": {
  9138. "php": ">=8.1"
  9139. },
  9140. "require-dev": {
  9141. "phpunit/phpunit": "^10.0"
  9142. },
  9143. "type": "library",
  9144. "extra": {
  9145. "branch-alias": {
  9146. "dev-main": "2.0-dev"
  9147. }
  9148. },
  9149. "autoload": {
  9150. "classmap": [
  9151. "src/"
  9152. ]
  9153. },
  9154. "notification-url": "https://packagist.org/downloads/",
  9155. "license": [
  9156. "BSD-3-Clause"
  9157. ],
  9158. "authors": [
  9159. {
  9160. "name": "Sebastian Bergmann",
  9161. "email": "sebastian@phpunit.de",
  9162. "role": "lead"
  9163. }
  9164. ],
  9165. "description": "Library for parsing CLI options",
  9166. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9167. "support": {
  9168. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9169. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9170. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9171. },
  9172. "funding": [
  9173. {
  9174. "url": "https://github.com/sebastianbergmann",
  9175. "type": "github"
  9176. }
  9177. ],
  9178. "time": "2024-03-02T07:12:49+00:00"
  9179. },
  9180. {
  9181. "name": "sebastian/code-unit",
  9182. "version": "2.0.0",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9186. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9191. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "php": ">=8.1"
  9196. },
  9197. "require-dev": {
  9198. "phpunit/phpunit": "^10.0"
  9199. },
  9200. "type": "library",
  9201. "extra": {
  9202. "branch-alias": {
  9203. "dev-main": "2.0-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "classmap": [
  9208. "src/"
  9209. ]
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Sebastian Bergmann",
  9218. "email": "sebastian@phpunit.de",
  9219. "role": "lead"
  9220. }
  9221. ],
  9222. "description": "Collection of value objects that represent the PHP code units",
  9223. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9224. "support": {
  9225. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9226. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/sebastianbergmann",
  9231. "type": "github"
  9232. }
  9233. ],
  9234. "time": "2023-02-03T06:58:43+00:00"
  9235. },
  9236. {
  9237. "name": "sebastian/code-unit-reverse-lookup",
  9238. "version": "3.0.0",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9242. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9247. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9248. "shasum": ""
  9249. },
  9250. "require": {
  9251. "php": ">=8.1"
  9252. },
  9253. "require-dev": {
  9254. "phpunit/phpunit": "^10.0"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "branch-alias": {
  9259. "dev-main": "3.0-dev"
  9260. }
  9261. },
  9262. "autoload": {
  9263. "classmap": [
  9264. "src/"
  9265. ]
  9266. },
  9267. "notification-url": "https://packagist.org/downloads/",
  9268. "license": [
  9269. "BSD-3-Clause"
  9270. ],
  9271. "authors": [
  9272. {
  9273. "name": "Sebastian Bergmann",
  9274. "email": "sebastian@phpunit.de"
  9275. }
  9276. ],
  9277. "description": "Looks up which function or method a line of code belongs to",
  9278. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9279. "support": {
  9280. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9281. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9282. },
  9283. "funding": [
  9284. {
  9285. "url": "https://github.com/sebastianbergmann",
  9286. "type": "github"
  9287. }
  9288. ],
  9289. "time": "2023-02-03T06:59:15+00:00"
  9290. },
  9291. {
  9292. "name": "sebastian/comparator",
  9293. "version": "5.0.3",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/sebastianbergmann/comparator.git",
  9297. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9302. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "ext-dom": "*",
  9307. "ext-mbstring": "*",
  9308. "php": ">=8.1",
  9309. "sebastian/diff": "^5.0",
  9310. "sebastian/exporter": "^5.0"
  9311. },
  9312. "require-dev": {
  9313. "phpunit/phpunit": "^10.5"
  9314. },
  9315. "type": "library",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-main": "5.0-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "classmap": [
  9323. "src/"
  9324. ]
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "BSD-3-Clause"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Sebastian Bergmann",
  9333. "email": "sebastian@phpunit.de"
  9334. },
  9335. {
  9336. "name": "Jeff Welch",
  9337. "email": "whatthejeff@gmail.com"
  9338. },
  9339. {
  9340. "name": "Volker Dusch",
  9341. "email": "github@wallbash.com"
  9342. },
  9343. {
  9344. "name": "Bernhard Schussek",
  9345. "email": "bschussek@2bepublished.at"
  9346. }
  9347. ],
  9348. "description": "Provides the functionality to compare PHP values for equality",
  9349. "homepage": "https://github.com/sebastianbergmann/comparator",
  9350. "keywords": [
  9351. "comparator",
  9352. "compare",
  9353. "equality"
  9354. ],
  9355. "support": {
  9356. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9357. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9358. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9359. },
  9360. "funding": [
  9361. {
  9362. "url": "https://github.com/sebastianbergmann",
  9363. "type": "github"
  9364. }
  9365. ],
  9366. "time": "2024-10-18T14:56:07+00:00"
  9367. },
  9368. {
  9369. "name": "sebastian/complexity",
  9370. "version": "3.2.0",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/sebastianbergmann/complexity.git",
  9374. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9379. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "nikic/php-parser": "^4.18 || ^5.0",
  9384. "php": ">=8.1"
  9385. },
  9386. "require-dev": {
  9387. "phpunit/phpunit": "^10.0"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-main": "3.2-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "classmap": [
  9397. "src/"
  9398. ]
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "BSD-3-Clause"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Sebastian Bergmann",
  9407. "email": "sebastian@phpunit.de",
  9408. "role": "lead"
  9409. }
  9410. ],
  9411. "description": "Library for calculating the complexity of PHP code units",
  9412. "homepage": "https://github.com/sebastianbergmann/complexity",
  9413. "support": {
  9414. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9415. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9416. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9417. },
  9418. "funding": [
  9419. {
  9420. "url": "https://github.com/sebastianbergmann",
  9421. "type": "github"
  9422. }
  9423. ],
  9424. "time": "2023-12-21T08:37:17+00:00"
  9425. },
  9426. {
  9427. "name": "sebastian/diff",
  9428. "version": "5.1.1",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/sebastianbergmann/diff.git",
  9432. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9437. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9438. "shasum": ""
  9439. },
  9440. "require": {
  9441. "php": ">=8.1"
  9442. },
  9443. "require-dev": {
  9444. "phpunit/phpunit": "^10.0",
  9445. "symfony/process": "^6.4"
  9446. },
  9447. "type": "library",
  9448. "extra": {
  9449. "branch-alias": {
  9450. "dev-main": "5.1-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": "Kore Nordmann",
  9469. "email": "mail@kore-nordmann.de"
  9470. }
  9471. ],
  9472. "description": "Diff implementation",
  9473. "homepage": "https://github.com/sebastianbergmann/diff",
  9474. "keywords": [
  9475. "diff",
  9476. "udiff",
  9477. "unidiff",
  9478. "unified diff"
  9479. ],
  9480. "support": {
  9481. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9482. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9483. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9484. },
  9485. "funding": [
  9486. {
  9487. "url": "https://github.com/sebastianbergmann",
  9488. "type": "github"
  9489. }
  9490. ],
  9491. "time": "2024-03-02T07:15:17+00:00"
  9492. },
  9493. {
  9494. "name": "sebastian/environment",
  9495. "version": "6.1.0",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/sebastianbergmann/environment.git",
  9499. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9504. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9505. "shasum": ""
  9506. },
  9507. "require": {
  9508. "php": ">=8.1"
  9509. },
  9510. "require-dev": {
  9511. "phpunit/phpunit": "^10.0"
  9512. },
  9513. "suggest": {
  9514. "ext-posix": "*"
  9515. },
  9516. "type": "library",
  9517. "extra": {
  9518. "branch-alias": {
  9519. "dev-main": "6.1-dev"
  9520. }
  9521. },
  9522. "autoload": {
  9523. "classmap": [
  9524. "src/"
  9525. ]
  9526. },
  9527. "notification-url": "https://packagist.org/downloads/",
  9528. "license": [
  9529. "BSD-3-Clause"
  9530. ],
  9531. "authors": [
  9532. {
  9533. "name": "Sebastian Bergmann",
  9534. "email": "sebastian@phpunit.de"
  9535. }
  9536. ],
  9537. "description": "Provides functionality to handle HHVM/PHP environments",
  9538. "homepage": "https://github.com/sebastianbergmann/environment",
  9539. "keywords": [
  9540. "Xdebug",
  9541. "environment",
  9542. "hhvm"
  9543. ],
  9544. "support": {
  9545. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9546. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9547. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9548. },
  9549. "funding": [
  9550. {
  9551. "url": "https://github.com/sebastianbergmann",
  9552. "type": "github"
  9553. }
  9554. ],
  9555. "time": "2024-03-23T08:47:14+00:00"
  9556. },
  9557. {
  9558. "name": "sebastian/exporter",
  9559. "version": "5.1.2",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/sebastianbergmann/exporter.git",
  9563. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9568. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "ext-mbstring": "*",
  9573. "php": ">=8.1",
  9574. "sebastian/recursion-context": "^5.0"
  9575. },
  9576. "require-dev": {
  9577. "phpunit/phpunit": "^10.0"
  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": "Jeff Welch",
  9601. "email": "whatthejeff@gmail.com"
  9602. },
  9603. {
  9604. "name": "Volker Dusch",
  9605. "email": "github@wallbash.com"
  9606. },
  9607. {
  9608. "name": "Adam Harvey",
  9609. "email": "aharvey@php.net"
  9610. },
  9611. {
  9612. "name": "Bernhard Schussek",
  9613. "email": "bschussek@gmail.com"
  9614. }
  9615. ],
  9616. "description": "Provides the functionality to export PHP variables for visualization",
  9617. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9618. "keywords": [
  9619. "export",
  9620. "exporter"
  9621. ],
  9622. "support": {
  9623. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9624. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9625. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9626. },
  9627. "funding": [
  9628. {
  9629. "url": "https://github.com/sebastianbergmann",
  9630. "type": "github"
  9631. }
  9632. ],
  9633. "time": "2024-03-02T07:17:12+00:00"
  9634. },
  9635. {
  9636. "name": "sebastian/global-state",
  9637. "version": "6.0.2",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/global-state.git",
  9641. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9646. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": ">=8.1",
  9651. "sebastian/object-reflector": "^3.0",
  9652. "sebastian/recursion-context": "^5.0"
  9653. },
  9654. "require-dev": {
  9655. "ext-dom": "*",
  9656. "phpunit/phpunit": "^10.0"
  9657. },
  9658. "type": "library",
  9659. "extra": {
  9660. "branch-alias": {
  9661. "dev-main": "6.0-dev"
  9662. }
  9663. },
  9664. "autoload": {
  9665. "classmap": [
  9666. "src/"
  9667. ]
  9668. },
  9669. "notification-url": "https://packagist.org/downloads/",
  9670. "license": [
  9671. "BSD-3-Clause"
  9672. ],
  9673. "authors": [
  9674. {
  9675. "name": "Sebastian Bergmann",
  9676. "email": "sebastian@phpunit.de"
  9677. }
  9678. ],
  9679. "description": "Snapshotting of global state",
  9680. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9681. "keywords": [
  9682. "global state"
  9683. ],
  9684. "support": {
  9685. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9686. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9687. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9688. },
  9689. "funding": [
  9690. {
  9691. "url": "https://github.com/sebastianbergmann",
  9692. "type": "github"
  9693. }
  9694. ],
  9695. "time": "2024-03-02T07:19:19+00:00"
  9696. },
  9697. {
  9698. "name": "sebastian/lines-of-code",
  9699. "version": "2.0.2",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9703. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9708. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9709. "shasum": ""
  9710. },
  9711. "require": {
  9712. "nikic/php-parser": "^4.18 || ^5.0",
  9713. "php": ">=8.1"
  9714. },
  9715. "require-dev": {
  9716. "phpunit/phpunit": "^10.0"
  9717. },
  9718. "type": "library",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-main": "2.0-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "classmap": [
  9726. "src/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "BSD-3-Clause"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Sebastian Bergmann",
  9736. "email": "sebastian@phpunit.de",
  9737. "role": "lead"
  9738. }
  9739. ],
  9740. "description": "Library for counting the lines of code in PHP source code",
  9741. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9742. "support": {
  9743. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9744. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9745. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9746. },
  9747. "funding": [
  9748. {
  9749. "url": "https://github.com/sebastianbergmann",
  9750. "type": "github"
  9751. }
  9752. ],
  9753. "time": "2023-12-21T08:38:20+00:00"
  9754. },
  9755. {
  9756. "name": "sebastian/object-enumerator",
  9757. "version": "5.0.0",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9761. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9766. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "php": ">=8.1",
  9771. "sebastian/object-reflector": "^3.0",
  9772. "sebastian/recursion-context": "^5.0"
  9773. },
  9774. "require-dev": {
  9775. "phpunit/phpunit": "^10.0"
  9776. },
  9777. "type": "library",
  9778. "extra": {
  9779. "branch-alias": {
  9780. "dev-main": "5.0-dev"
  9781. }
  9782. },
  9783. "autoload": {
  9784. "classmap": [
  9785. "src/"
  9786. ]
  9787. },
  9788. "notification-url": "https://packagist.org/downloads/",
  9789. "license": [
  9790. "BSD-3-Clause"
  9791. ],
  9792. "authors": [
  9793. {
  9794. "name": "Sebastian Bergmann",
  9795. "email": "sebastian@phpunit.de"
  9796. }
  9797. ],
  9798. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9799. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9800. "support": {
  9801. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9802. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2023-02-03T07:08:32+00:00"
  9811. },
  9812. {
  9813. "name": "sebastian/object-reflector",
  9814. "version": "3.0.0",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9818. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9823. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "php": ">=8.1"
  9828. },
  9829. "require-dev": {
  9830. "phpunit/phpunit": "^10.0"
  9831. },
  9832. "type": "library",
  9833. "extra": {
  9834. "branch-alias": {
  9835. "dev-main": "3.0-dev"
  9836. }
  9837. },
  9838. "autoload": {
  9839. "classmap": [
  9840. "src/"
  9841. ]
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "BSD-3-Clause"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Sebastian Bergmann",
  9850. "email": "sebastian@phpunit.de"
  9851. }
  9852. ],
  9853. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9854. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9855. "support": {
  9856. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9857. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9858. },
  9859. "funding": [
  9860. {
  9861. "url": "https://github.com/sebastianbergmann",
  9862. "type": "github"
  9863. }
  9864. ],
  9865. "time": "2023-02-03T07:06:18+00:00"
  9866. },
  9867. {
  9868. "name": "sebastian/recursion-context",
  9869. "version": "5.0.0",
  9870. "source": {
  9871. "type": "git",
  9872. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9873. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9874. },
  9875. "dist": {
  9876. "type": "zip",
  9877. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9878. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9879. "shasum": ""
  9880. },
  9881. "require": {
  9882. "php": ">=8.1"
  9883. },
  9884. "require-dev": {
  9885. "phpunit/phpunit": "^10.0"
  9886. },
  9887. "type": "library",
  9888. "extra": {
  9889. "branch-alias": {
  9890. "dev-main": "5.0-dev"
  9891. }
  9892. },
  9893. "autoload": {
  9894. "classmap": [
  9895. "src/"
  9896. ]
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "license": [
  9900. "BSD-3-Clause"
  9901. ],
  9902. "authors": [
  9903. {
  9904. "name": "Sebastian Bergmann",
  9905. "email": "sebastian@phpunit.de"
  9906. },
  9907. {
  9908. "name": "Jeff Welch",
  9909. "email": "whatthejeff@gmail.com"
  9910. },
  9911. {
  9912. "name": "Adam Harvey",
  9913. "email": "aharvey@php.net"
  9914. }
  9915. ],
  9916. "description": "Provides functionality to recursively process PHP variables",
  9917. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9918. "support": {
  9919. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9920. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9921. },
  9922. "funding": [
  9923. {
  9924. "url": "https://github.com/sebastianbergmann",
  9925. "type": "github"
  9926. }
  9927. ],
  9928. "time": "2023-02-03T07:05:40+00:00"
  9929. },
  9930. {
  9931. "name": "sebastian/type",
  9932. "version": "4.0.0",
  9933. "source": {
  9934. "type": "git",
  9935. "url": "https://github.com/sebastianbergmann/type.git",
  9936. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9937. },
  9938. "dist": {
  9939. "type": "zip",
  9940. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9941. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9942. "shasum": ""
  9943. },
  9944. "require": {
  9945. "php": ">=8.1"
  9946. },
  9947. "require-dev": {
  9948. "phpunit/phpunit": "^10.0"
  9949. },
  9950. "type": "library",
  9951. "extra": {
  9952. "branch-alias": {
  9953. "dev-main": "4.0-dev"
  9954. }
  9955. },
  9956. "autoload": {
  9957. "classmap": [
  9958. "src/"
  9959. ]
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "BSD-3-Clause"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Sebastian Bergmann",
  9968. "email": "sebastian@phpunit.de",
  9969. "role": "lead"
  9970. }
  9971. ],
  9972. "description": "Collection of value objects that represent the types of the PHP type system",
  9973. "homepage": "https://github.com/sebastianbergmann/type",
  9974. "support": {
  9975. "issues": "https://github.com/sebastianbergmann/type/issues",
  9976. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9977. },
  9978. "funding": [
  9979. {
  9980. "url": "https://github.com/sebastianbergmann",
  9981. "type": "github"
  9982. }
  9983. ],
  9984. "time": "2023-02-03T07:10:45+00:00"
  9985. },
  9986. {
  9987. "name": "sebastian/version",
  9988. "version": "4.0.1",
  9989. "source": {
  9990. "type": "git",
  9991. "url": "https://github.com/sebastianbergmann/version.git",
  9992. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9993. },
  9994. "dist": {
  9995. "type": "zip",
  9996. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9997. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9998. "shasum": ""
  9999. },
  10000. "require": {
  10001. "php": ">=8.1"
  10002. },
  10003. "type": "library",
  10004. "extra": {
  10005. "branch-alias": {
  10006. "dev-main": "4.0-dev"
  10007. }
  10008. },
  10009. "autoload": {
  10010. "classmap": [
  10011. "src/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "BSD-3-Clause"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Sebastian Bergmann",
  10021. "email": "sebastian@phpunit.de",
  10022. "role": "lead"
  10023. }
  10024. ],
  10025. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10026. "homepage": "https://github.com/sebastianbergmann/version",
  10027. "support": {
  10028. "issues": "https://github.com/sebastianbergmann/version/issues",
  10029. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10030. },
  10031. "funding": [
  10032. {
  10033. "url": "https://github.com/sebastianbergmann",
  10034. "type": "github"
  10035. }
  10036. ],
  10037. "time": "2023-02-07T11:34:05+00:00"
  10038. },
  10039. {
  10040. "name": "swoole/ide-helper",
  10041. "version": "5.1.4",
  10042. "source": {
  10043. "type": "git",
  10044. "url": "https://github.com/swoole/ide-helper.git",
  10045. "reference": "e63299f488bf8332404ce4f80142a2ed1397edde"
  10046. },
  10047. "dist": {
  10048. "type": "zip",
  10049. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/e63299f488bf8332404ce4f80142a2ed1397edde",
  10050. "reference": "e63299f488bf8332404ce4f80142a2ed1397edde",
  10051. "shasum": ""
  10052. },
  10053. "type": "library",
  10054. "notification-url": "https://packagist.org/downloads/",
  10055. "license": [
  10056. "Apache-2.0"
  10057. ],
  10058. "authors": [
  10059. {
  10060. "name": "Team Swoole",
  10061. "email": "team@swoole.com"
  10062. }
  10063. ],
  10064. "description": "IDE help files for Swoole.",
  10065. "support": {
  10066. "issues": "https://github.com/swoole/ide-helper/issues",
  10067. "source": "https://github.com/swoole/ide-helper/tree/5.1.4"
  10068. },
  10069. "time": "2024-09-03T04:39:02+00:00"
  10070. },
  10071. {
  10072. "name": "symfony/event-dispatcher",
  10073. "version": "v6.4.8",
  10074. "source": {
  10075. "type": "git",
  10076. "url": "https://github.com/symfony/event-dispatcher.git",
  10077. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10078. },
  10079. "dist": {
  10080. "type": "zip",
  10081. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10082. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10083. "shasum": ""
  10084. },
  10085. "require": {
  10086. "php": ">=8.1",
  10087. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10088. },
  10089. "conflict": {
  10090. "symfony/dependency-injection": "<5.4",
  10091. "symfony/service-contracts": "<2.5"
  10092. },
  10093. "provide": {
  10094. "psr/event-dispatcher-implementation": "1.0",
  10095. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10096. },
  10097. "require-dev": {
  10098. "psr/log": "^1|^2|^3",
  10099. "symfony/config": "^5.4|^6.0|^7.0",
  10100. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10101. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10102. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10103. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10104. "symfony/service-contracts": "^2.5|^3",
  10105. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10106. },
  10107. "type": "library",
  10108. "autoload": {
  10109. "psr-4": {
  10110. "Symfony\\Component\\EventDispatcher\\": ""
  10111. },
  10112. "exclude-from-classmap": [
  10113. "/Tests/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "MIT"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Fabien Potencier",
  10123. "email": "fabien@symfony.com"
  10124. },
  10125. {
  10126. "name": "Symfony Community",
  10127. "homepage": "https://symfony.com/contributors"
  10128. }
  10129. ],
  10130. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10131. "homepage": "https://symfony.com",
  10132. "support": {
  10133. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10134. },
  10135. "funding": [
  10136. {
  10137. "url": "https://symfony.com/sponsor",
  10138. "type": "custom"
  10139. },
  10140. {
  10141. "url": "https://github.com/fabpot",
  10142. "type": "github"
  10143. },
  10144. {
  10145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10146. "type": "tidelift"
  10147. }
  10148. ],
  10149. "time": "2024-05-31T14:49:08+00:00"
  10150. },
  10151. {
  10152. "name": "symfony/event-dispatcher-contracts",
  10153. "version": "v3.5.0",
  10154. "source": {
  10155. "type": "git",
  10156. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10157. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10158. },
  10159. "dist": {
  10160. "type": "zip",
  10161. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10162. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10163. "shasum": ""
  10164. },
  10165. "require": {
  10166. "php": ">=8.1",
  10167. "psr/event-dispatcher": "^1"
  10168. },
  10169. "type": "library",
  10170. "extra": {
  10171. "branch-alias": {
  10172. "dev-main": "3.5-dev"
  10173. },
  10174. "thanks": {
  10175. "name": "symfony/contracts",
  10176. "url": "https://github.com/symfony/contracts"
  10177. }
  10178. },
  10179. "autoload": {
  10180. "psr-4": {
  10181. "Symfony\\Contracts\\EventDispatcher\\": ""
  10182. }
  10183. },
  10184. "notification-url": "https://packagist.org/downloads/",
  10185. "license": [
  10186. "MIT"
  10187. ],
  10188. "authors": [
  10189. {
  10190. "name": "Nicolas Grekas",
  10191. "email": "p@tchwork.com"
  10192. },
  10193. {
  10194. "name": "Symfony Community",
  10195. "homepage": "https://symfony.com/contributors"
  10196. }
  10197. ],
  10198. "description": "Generic abstractions related to dispatching event",
  10199. "homepage": "https://symfony.com",
  10200. "keywords": [
  10201. "abstractions",
  10202. "contracts",
  10203. "decoupling",
  10204. "interfaces",
  10205. "interoperability",
  10206. "standards"
  10207. ],
  10208. "support": {
  10209. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10210. },
  10211. "funding": [
  10212. {
  10213. "url": "https://symfony.com/sponsor",
  10214. "type": "custom"
  10215. },
  10216. {
  10217. "url": "https://github.com/fabpot",
  10218. "type": "github"
  10219. },
  10220. {
  10221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10222. "type": "tidelift"
  10223. }
  10224. ],
  10225. "time": "2024-04-18T09:32:20+00:00"
  10226. },
  10227. {
  10228. "name": "symfony/filesystem",
  10229. "version": "v6.4.12",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/symfony/filesystem.git",
  10233. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f810e3cbdf7fdc35983968523d09f349fa9ada12",
  10238. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "php": ">=8.1",
  10243. "symfony/polyfill-ctype": "~1.8",
  10244. "symfony/polyfill-mbstring": "~1.8"
  10245. },
  10246. "require-dev": {
  10247. "symfony/process": "^5.4|^6.4|^7.0"
  10248. },
  10249. "type": "library",
  10250. "autoload": {
  10251. "psr-4": {
  10252. "Symfony\\Component\\Filesystem\\": ""
  10253. },
  10254. "exclude-from-classmap": [
  10255. "/Tests/"
  10256. ]
  10257. },
  10258. "notification-url": "https://packagist.org/downloads/",
  10259. "license": [
  10260. "MIT"
  10261. ],
  10262. "authors": [
  10263. {
  10264. "name": "Fabien Potencier",
  10265. "email": "fabien@symfony.com"
  10266. },
  10267. {
  10268. "name": "Symfony Community",
  10269. "homepage": "https://symfony.com/contributors"
  10270. }
  10271. ],
  10272. "description": "Provides basic utilities for the filesystem",
  10273. "homepage": "https://symfony.com",
  10274. "support": {
  10275. "source": "https://github.com/symfony/filesystem/tree/v6.4.12"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://symfony.com/sponsor",
  10280. "type": "custom"
  10281. },
  10282. {
  10283. "url": "https://github.com/fabpot",
  10284. "type": "github"
  10285. },
  10286. {
  10287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10288. "type": "tidelift"
  10289. }
  10290. ],
  10291. "time": "2024-09-16T16:01:33+00:00"
  10292. },
  10293. {
  10294. "name": "symfony/http-foundation",
  10295. "version": "v6.4.12",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/symfony/http-foundation.git",
  10299. "reference": "133ac043875f59c26c55e79cf074562127cce4d2"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/133ac043875f59c26c55e79cf074562127cce4d2",
  10304. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "php": ">=8.1",
  10309. "symfony/deprecation-contracts": "^2.5|^3",
  10310. "symfony/polyfill-mbstring": "~1.1",
  10311. "symfony/polyfill-php83": "^1.27"
  10312. },
  10313. "conflict": {
  10314. "symfony/cache": "<6.3"
  10315. },
  10316. "require-dev": {
  10317. "doctrine/dbal": "^2.13.1|^3|^4",
  10318. "predis/predis": "^1.1|^2.0",
  10319. "symfony/cache": "^6.3|^7.0",
  10320. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10321. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10322. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10323. "symfony/mime": "^5.4|^6.0|^7.0",
  10324. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10325. },
  10326. "type": "library",
  10327. "autoload": {
  10328. "psr-4": {
  10329. "Symfony\\Component\\HttpFoundation\\": ""
  10330. },
  10331. "exclude-from-classmap": [
  10332. "/Tests/"
  10333. ]
  10334. },
  10335. "notification-url": "https://packagist.org/downloads/",
  10336. "license": [
  10337. "MIT"
  10338. ],
  10339. "authors": [
  10340. {
  10341. "name": "Fabien Potencier",
  10342. "email": "fabien@symfony.com"
  10343. },
  10344. {
  10345. "name": "Symfony Community",
  10346. "homepage": "https://symfony.com/contributors"
  10347. }
  10348. ],
  10349. "description": "Defines an object-oriented layer for the HTTP specification",
  10350. "homepage": "https://symfony.com",
  10351. "support": {
  10352. "source": "https://github.com/symfony/http-foundation/tree/v6.4.12"
  10353. },
  10354. "funding": [
  10355. {
  10356. "url": "https://symfony.com/sponsor",
  10357. "type": "custom"
  10358. },
  10359. {
  10360. "url": "https://github.com/fabpot",
  10361. "type": "github"
  10362. },
  10363. {
  10364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10365. "type": "tidelift"
  10366. }
  10367. ],
  10368. "time": "2024-09-20T08:18:25+00:00"
  10369. },
  10370. {
  10371. "name": "symfony/options-resolver",
  10372. "version": "v6.4.8",
  10373. "source": {
  10374. "type": "git",
  10375. "url": "https://github.com/symfony/options-resolver.git",
  10376. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10377. },
  10378. "dist": {
  10379. "type": "zip",
  10380. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10381. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10382. "shasum": ""
  10383. },
  10384. "require": {
  10385. "php": ">=8.1",
  10386. "symfony/deprecation-contracts": "^2.5|^3"
  10387. },
  10388. "type": "library",
  10389. "autoload": {
  10390. "psr-4": {
  10391. "Symfony\\Component\\OptionsResolver\\": ""
  10392. },
  10393. "exclude-from-classmap": [
  10394. "/Tests/"
  10395. ]
  10396. },
  10397. "notification-url": "https://packagist.org/downloads/",
  10398. "license": [
  10399. "MIT"
  10400. ],
  10401. "authors": [
  10402. {
  10403. "name": "Fabien Potencier",
  10404. "email": "fabien@symfony.com"
  10405. },
  10406. {
  10407. "name": "Symfony Community",
  10408. "homepage": "https://symfony.com/contributors"
  10409. }
  10410. ],
  10411. "description": "Provides an improved replacement for the array_replace PHP function",
  10412. "homepage": "https://symfony.com",
  10413. "keywords": [
  10414. "config",
  10415. "configuration",
  10416. "options"
  10417. ],
  10418. "support": {
  10419. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10420. },
  10421. "funding": [
  10422. {
  10423. "url": "https://symfony.com/sponsor",
  10424. "type": "custom"
  10425. },
  10426. {
  10427. "url": "https://github.com/fabpot",
  10428. "type": "github"
  10429. },
  10430. {
  10431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10432. "type": "tidelift"
  10433. }
  10434. ],
  10435. "time": "2024-05-31T14:49:08+00:00"
  10436. },
  10437. {
  10438. "name": "symfony/polyfill-php81",
  10439. "version": "v1.31.0",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/symfony/polyfill-php81.git",
  10443. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10448. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10449. "shasum": ""
  10450. },
  10451. "require": {
  10452. "php": ">=7.2"
  10453. },
  10454. "type": "library",
  10455. "extra": {
  10456. "thanks": {
  10457. "name": "symfony/polyfill",
  10458. "url": "https://github.com/symfony/polyfill"
  10459. }
  10460. },
  10461. "autoload": {
  10462. "files": [
  10463. "bootstrap.php"
  10464. ],
  10465. "psr-4": {
  10466. "Symfony\\Polyfill\\Php81\\": ""
  10467. },
  10468. "classmap": [
  10469. "Resources/stubs"
  10470. ]
  10471. },
  10472. "notification-url": "https://packagist.org/downloads/",
  10473. "license": [
  10474. "MIT"
  10475. ],
  10476. "authors": [
  10477. {
  10478. "name": "Nicolas Grekas",
  10479. "email": "p@tchwork.com"
  10480. },
  10481. {
  10482. "name": "Symfony Community",
  10483. "homepage": "https://symfony.com/contributors"
  10484. }
  10485. ],
  10486. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10487. "homepage": "https://symfony.com",
  10488. "keywords": [
  10489. "compatibility",
  10490. "polyfill",
  10491. "portable",
  10492. "shim"
  10493. ],
  10494. "support": {
  10495. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://symfony.com/sponsor",
  10500. "type": "custom"
  10501. },
  10502. {
  10503. "url": "https://github.com/fabpot",
  10504. "type": "github"
  10505. },
  10506. {
  10507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10508. "type": "tidelift"
  10509. }
  10510. ],
  10511. "time": "2024-09-09T11:45:10+00:00"
  10512. },
  10513. {
  10514. "name": "symfony/polyfill-php83",
  10515. "version": "v1.31.0",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/symfony/polyfill-php83.git",
  10519. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10524. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10525. "shasum": ""
  10526. },
  10527. "require": {
  10528. "php": ">=7.2"
  10529. },
  10530. "type": "library",
  10531. "extra": {
  10532. "thanks": {
  10533. "name": "symfony/polyfill",
  10534. "url": "https://github.com/symfony/polyfill"
  10535. }
  10536. },
  10537. "autoload": {
  10538. "files": [
  10539. "bootstrap.php"
  10540. ],
  10541. "psr-4": {
  10542. "Symfony\\Polyfill\\Php83\\": ""
  10543. },
  10544. "classmap": [
  10545. "Resources/stubs"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "MIT"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Nicolas Grekas",
  10555. "email": "p@tchwork.com"
  10556. },
  10557. {
  10558. "name": "Symfony Community",
  10559. "homepage": "https://symfony.com/contributors"
  10560. }
  10561. ],
  10562. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10563. "homepage": "https://symfony.com",
  10564. "keywords": [
  10565. "compatibility",
  10566. "polyfill",
  10567. "portable",
  10568. "shim"
  10569. ],
  10570. "support": {
  10571. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://symfony.com/sponsor",
  10576. "type": "custom"
  10577. },
  10578. {
  10579. "url": "https://github.com/fabpot",
  10580. "type": "github"
  10581. },
  10582. {
  10583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10584. "type": "tidelift"
  10585. }
  10586. ],
  10587. "time": "2024-09-09T11:45:10+00:00"
  10588. },
  10589. {
  10590. "name": "symfony/process",
  10591. "version": "v6.4.12",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/symfony/process.git",
  10595. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/symfony/process/zipball/3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  10600. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=8.1"
  10605. },
  10606. "type": "library",
  10607. "autoload": {
  10608. "psr-4": {
  10609. "Symfony\\Component\\Process\\": ""
  10610. },
  10611. "exclude-from-classmap": [
  10612. "/Tests/"
  10613. ]
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "MIT"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Fabien Potencier",
  10622. "email": "fabien@symfony.com"
  10623. },
  10624. {
  10625. "name": "Symfony Community",
  10626. "homepage": "https://symfony.com/contributors"
  10627. }
  10628. ],
  10629. "description": "Executes commands in sub-processes",
  10630. "homepage": "https://symfony.com",
  10631. "support": {
  10632. "source": "https://github.com/symfony/process/tree/v6.4.12"
  10633. },
  10634. "funding": [
  10635. {
  10636. "url": "https://symfony.com/sponsor",
  10637. "type": "custom"
  10638. },
  10639. {
  10640. "url": "https://github.com/fabpot",
  10641. "type": "github"
  10642. },
  10643. {
  10644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10645. "type": "tidelift"
  10646. }
  10647. ],
  10648. "time": "2024-09-17T12:47:12+00:00"
  10649. },
  10650. {
  10651. "name": "symfony/stopwatch",
  10652. "version": "v6.4.8",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/symfony/stopwatch.git",
  10656. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10661. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "php": ">=8.1",
  10666. "symfony/service-contracts": "^2.5|^3"
  10667. },
  10668. "type": "library",
  10669. "autoload": {
  10670. "psr-4": {
  10671. "Symfony\\Component\\Stopwatch\\": ""
  10672. },
  10673. "exclude-from-classmap": [
  10674. "/Tests/"
  10675. ]
  10676. },
  10677. "notification-url": "https://packagist.org/downloads/",
  10678. "license": [
  10679. "MIT"
  10680. ],
  10681. "authors": [
  10682. {
  10683. "name": "Fabien Potencier",
  10684. "email": "fabien@symfony.com"
  10685. },
  10686. {
  10687. "name": "Symfony Community",
  10688. "homepage": "https://symfony.com/contributors"
  10689. }
  10690. ],
  10691. "description": "Provides a way to profile code",
  10692. "homepage": "https://symfony.com",
  10693. "support": {
  10694. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10695. },
  10696. "funding": [
  10697. {
  10698. "url": "https://symfony.com/sponsor",
  10699. "type": "custom"
  10700. },
  10701. {
  10702. "url": "https://github.com/fabpot",
  10703. "type": "github"
  10704. },
  10705. {
  10706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10707. "type": "tidelift"
  10708. }
  10709. ],
  10710. "time": "2024-05-31T14:49:08+00:00"
  10711. },
  10712. {
  10713. "name": "theseer/tokenizer",
  10714. "version": "1.2.3",
  10715. "source": {
  10716. "type": "git",
  10717. "url": "https://github.com/theseer/tokenizer.git",
  10718. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10719. },
  10720. "dist": {
  10721. "type": "zip",
  10722. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10723. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10724. "shasum": ""
  10725. },
  10726. "require": {
  10727. "ext-dom": "*",
  10728. "ext-tokenizer": "*",
  10729. "ext-xmlwriter": "*",
  10730. "php": "^7.2 || ^8.0"
  10731. },
  10732. "type": "library",
  10733. "autoload": {
  10734. "classmap": [
  10735. "src/"
  10736. ]
  10737. },
  10738. "notification-url": "https://packagist.org/downloads/",
  10739. "license": [
  10740. "BSD-3-Clause"
  10741. ],
  10742. "authors": [
  10743. {
  10744. "name": "Arne Blankerts",
  10745. "email": "arne@blankerts.de",
  10746. "role": "Developer"
  10747. }
  10748. ],
  10749. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10750. "support": {
  10751. "issues": "https://github.com/theseer/tokenizer/issues",
  10752. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10753. },
  10754. "funding": [
  10755. {
  10756. "url": "https://github.com/theseer",
  10757. "type": "github"
  10758. }
  10759. ],
  10760. "time": "2024-03-03T12:36:25+00:00"
  10761. }
  10762. ],
  10763. "aliases": [],
  10764. "minimum-stability": "dev",
  10765. "stability-flags": [],
  10766. "prefer-stable": true,
  10767. "prefer-lowest": false,
  10768. "platform": {
  10769. "php": ">=8.1"
  10770. },
  10771. "platform-dev": [],
  10772. "plugin-api-version": "2.6.0"
  10773. }