composer.lock 365 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326
  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": "04eeed2b1b6a04f0539eaee477e8e0af",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  89. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.8.0",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6",
  104. "vimeo/psalm": "^4.10"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  151. },
  152. "time": "2023-02-02T22:02:53+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "fukuball/jieba-php",
  450. "version": "0.34",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/fukuball/jieba-php.git",
  454. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/44d62bda8b80fe07ff59e8fc654f477685109a66",
  459. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": ">= 5.3"
  464. },
  465. "require-dev": {
  466. "php-coveralls/php-coveralls": "dev-master",
  467. "phpunit/phpunit": "~9.0",
  468. "squizlabs/php_codesniffer": "4.0.x-dev"
  469. },
  470. "type": "library",
  471. "autoload": {
  472. "files": [
  473. "src/vendor/multi-array/MultiArray.php",
  474. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  475. ],
  476. "psr-4": {
  477. "Fukuball\\Jieba\\": "src/class/"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "fukuball",
  487. "email": "fukuball@gmail.com"
  488. }
  489. ],
  490. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  491. "keywords": [
  492. "Jieba",
  493. "php"
  494. ],
  495. "support": {
  496. "issues": "https://github.com/fukuball/jieba-php/issues",
  497. "source": "https://github.com/fukuball/jieba-php/tree/0.34"
  498. },
  499. "time": "2022-08-15T06:26:03+00:00"
  500. },
  501. {
  502. "name": "graham-campbell/result-type",
  503. "version": "v1.1.2",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  507. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  512. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  513. "shasum": ""
  514. },
  515. "require": {
  516. "php": "^7.2.5 || ^8.0",
  517. "phpoption/phpoption": "^1.9.2"
  518. },
  519. "require-dev": {
  520. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  521. },
  522. "type": "library",
  523. "autoload": {
  524. "psr-4": {
  525. "GrahamCampbell\\ResultType\\": "src/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "MIT"
  531. ],
  532. "authors": [
  533. {
  534. "name": "Graham Campbell",
  535. "email": "hello@gjcampbell.co.uk",
  536. "homepage": "https://github.com/GrahamCampbell"
  537. }
  538. ],
  539. "description": "An Implementation Of The Result Type",
  540. "keywords": [
  541. "Graham Campbell",
  542. "GrahamCampbell",
  543. "Result Type",
  544. "Result-Type",
  545. "result"
  546. ],
  547. "support": {
  548. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  549. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  550. },
  551. "funding": [
  552. {
  553. "url": "https://github.com/GrahamCampbell",
  554. "type": "github"
  555. },
  556. {
  557. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  558. "type": "tidelift"
  559. }
  560. ],
  561. "time": "2023-11-12T22:16:48+00:00"
  562. },
  563. {
  564. "name": "guzzlehttp/guzzle",
  565. "version": "7.8.1",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/guzzle/guzzle.git",
  569. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  574. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "ext-json": "*",
  579. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  580. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  581. "php": "^7.2.5 || ^8.0",
  582. "psr/http-client": "^1.0",
  583. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  584. },
  585. "provide": {
  586. "psr/http-client-implementation": "1.0"
  587. },
  588. "require-dev": {
  589. "bamarni/composer-bin-plugin": "^1.8.2",
  590. "ext-curl": "*",
  591. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  592. "php-http/message-factory": "^1.1",
  593. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  594. "psr/log": "^1.1 || ^2.0 || ^3.0"
  595. },
  596. "suggest": {
  597. "ext-curl": "Required for CURL handler support",
  598. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  599. "psr/log": "Required for using the Log middleware"
  600. },
  601. "type": "library",
  602. "extra": {
  603. "bamarni-bin": {
  604. "bin-links": true,
  605. "forward-command": false
  606. }
  607. },
  608. "autoload": {
  609. "files": [
  610. "src/functions_include.php"
  611. ],
  612. "psr-4": {
  613. "GuzzleHttp\\": "src/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Graham Campbell",
  623. "email": "hello@gjcampbell.co.uk",
  624. "homepage": "https://github.com/GrahamCampbell"
  625. },
  626. {
  627. "name": "Michael Dowling",
  628. "email": "mtdowling@gmail.com",
  629. "homepage": "https://github.com/mtdowling"
  630. },
  631. {
  632. "name": "Jeremy Lindblom",
  633. "email": "jeremeamia@gmail.com",
  634. "homepage": "https://github.com/jeremeamia"
  635. },
  636. {
  637. "name": "George Mponos",
  638. "email": "gmponos@gmail.com",
  639. "homepage": "https://github.com/gmponos"
  640. },
  641. {
  642. "name": "Tobias Nyholm",
  643. "email": "tobias.nyholm@gmail.com",
  644. "homepage": "https://github.com/Nyholm"
  645. },
  646. {
  647. "name": "Márk Sági-Kazár",
  648. "email": "mark.sagikazar@gmail.com",
  649. "homepage": "https://github.com/sagikazarmark"
  650. },
  651. {
  652. "name": "Tobias Schultze",
  653. "email": "webmaster@tubo-world.de",
  654. "homepage": "https://github.com/Tobion"
  655. }
  656. ],
  657. "description": "Guzzle is a PHP HTTP client library",
  658. "keywords": [
  659. "client",
  660. "curl",
  661. "framework",
  662. "http",
  663. "http client",
  664. "psr-18",
  665. "psr-7",
  666. "rest",
  667. "web service"
  668. ],
  669. "support": {
  670. "issues": "https://github.com/guzzle/guzzle/issues",
  671. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  672. },
  673. "funding": [
  674. {
  675. "url": "https://github.com/GrahamCampbell",
  676. "type": "github"
  677. },
  678. {
  679. "url": "https://github.com/Nyholm",
  680. "type": "github"
  681. },
  682. {
  683. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  684. "type": "tidelift"
  685. }
  686. ],
  687. "time": "2023-12-03T20:35:24+00:00"
  688. },
  689. {
  690. "name": "guzzlehttp/promises",
  691. "version": "2.0.2",
  692. "source": {
  693. "type": "git",
  694. "url": "https://github.com/guzzle/promises.git",
  695. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  696. },
  697. "dist": {
  698. "type": "zip",
  699. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  700. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  701. "shasum": ""
  702. },
  703. "require": {
  704. "php": "^7.2.5 || ^8.0"
  705. },
  706. "require-dev": {
  707. "bamarni/composer-bin-plugin": "^1.8.2",
  708. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  709. },
  710. "type": "library",
  711. "extra": {
  712. "bamarni-bin": {
  713. "bin-links": true,
  714. "forward-command": false
  715. }
  716. },
  717. "autoload": {
  718. "psr-4": {
  719. "GuzzleHttp\\Promise\\": "src/"
  720. }
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "MIT"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Graham Campbell",
  729. "email": "hello@gjcampbell.co.uk",
  730. "homepage": "https://github.com/GrahamCampbell"
  731. },
  732. {
  733. "name": "Michael Dowling",
  734. "email": "mtdowling@gmail.com",
  735. "homepage": "https://github.com/mtdowling"
  736. },
  737. {
  738. "name": "Tobias Nyholm",
  739. "email": "tobias.nyholm@gmail.com",
  740. "homepage": "https://github.com/Nyholm"
  741. },
  742. {
  743. "name": "Tobias Schultze",
  744. "email": "webmaster@tubo-world.de",
  745. "homepage": "https://github.com/Tobion"
  746. }
  747. ],
  748. "description": "Guzzle promises library",
  749. "keywords": [
  750. "promise"
  751. ],
  752. "support": {
  753. "issues": "https://github.com/guzzle/promises/issues",
  754. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  755. },
  756. "funding": [
  757. {
  758. "url": "https://github.com/GrahamCampbell",
  759. "type": "github"
  760. },
  761. {
  762. "url": "https://github.com/Nyholm",
  763. "type": "github"
  764. },
  765. {
  766. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  767. "type": "tidelift"
  768. }
  769. ],
  770. "time": "2023-12-03T20:19:20+00:00"
  771. },
  772. {
  773. "name": "guzzlehttp/psr7",
  774. "version": "2.6.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/guzzle/psr7.git",
  778. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  783. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "php": "^7.2.5 || ^8.0",
  788. "psr/http-factory": "^1.0",
  789. "psr/http-message": "^1.1 || ^2.0",
  790. "ralouphie/getallheaders": "^3.0"
  791. },
  792. "provide": {
  793. "psr/http-factory-implementation": "1.0",
  794. "psr/http-message-implementation": "1.0"
  795. },
  796. "require-dev": {
  797. "bamarni/composer-bin-plugin": "^1.8.2",
  798. "http-interop/http-factory-tests": "^0.9",
  799. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  800. },
  801. "suggest": {
  802. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "bamarni-bin": {
  807. "bin-links": true,
  808. "forward-command": false
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "GuzzleHttp\\Psr7\\": "src/"
  814. }
  815. },
  816. "notification-url": "https://packagist.org/downloads/",
  817. "license": [
  818. "MIT"
  819. ],
  820. "authors": [
  821. {
  822. "name": "Graham Campbell",
  823. "email": "hello@gjcampbell.co.uk",
  824. "homepage": "https://github.com/GrahamCampbell"
  825. },
  826. {
  827. "name": "Michael Dowling",
  828. "email": "mtdowling@gmail.com",
  829. "homepage": "https://github.com/mtdowling"
  830. },
  831. {
  832. "name": "George Mponos",
  833. "email": "gmponos@gmail.com",
  834. "homepage": "https://github.com/gmponos"
  835. },
  836. {
  837. "name": "Tobias Nyholm",
  838. "email": "tobias.nyholm@gmail.com",
  839. "homepage": "https://github.com/Nyholm"
  840. },
  841. {
  842. "name": "Márk Sági-Kazár",
  843. "email": "mark.sagikazar@gmail.com",
  844. "homepage": "https://github.com/sagikazarmark"
  845. },
  846. {
  847. "name": "Tobias Schultze",
  848. "email": "webmaster@tubo-world.de",
  849. "homepage": "https://github.com/Tobion"
  850. },
  851. {
  852. "name": "Márk Sági-Kazár",
  853. "email": "mark.sagikazar@gmail.com",
  854. "homepage": "https://sagikazarmark.hu"
  855. }
  856. ],
  857. "description": "PSR-7 message implementation that also provides common utility methods",
  858. "keywords": [
  859. "http",
  860. "message",
  861. "psr-7",
  862. "request",
  863. "response",
  864. "stream",
  865. "uri",
  866. "url"
  867. ],
  868. "support": {
  869. "issues": "https://github.com/guzzle/psr7/issues",
  870. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  871. },
  872. "funding": [
  873. {
  874. "url": "https://github.com/GrahamCampbell",
  875. "type": "github"
  876. },
  877. {
  878. "url": "https://github.com/Nyholm",
  879. "type": "github"
  880. },
  881. {
  882. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  883. "type": "tidelift"
  884. }
  885. ],
  886. "time": "2023-12-03T20:05:35+00:00"
  887. },
  888. {
  889. "name": "hyperf/cache",
  890. "version": "v3.1.23",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/hyperf/cache.git",
  894. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  899. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "hyperf/codec": "~3.1.0",
  904. "hyperf/collection": "~3.1.0",
  905. "hyperf/contract": "~3.1.0",
  906. "hyperf/support": "~3.1.0",
  907. "hyperf/utils": "~3.1.0",
  908. "php": ">=8.1",
  909. "psr/container": "^1.0|^2.0",
  910. "psr/simple-cache": "^1.0|^2.0|^3.0"
  911. },
  912. "suggest": {
  913. "hyperf/di": "Use cache annotations.",
  914. "hyperf/event": "Use listener to delete annotation cache."
  915. },
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "3.1-dev"
  920. },
  921. "hyperf": {
  922. "config": "Hyperf\\Cache\\ConfigProvider"
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Hyperf\\Cache\\": "src/"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "description": "A cache component for hyperf.",
  935. "homepage": "https://hyperf.io",
  936. "keywords": [
  937. "cache",
  938. "hyperf",
  939. "php"
  940. ],
  941. "support": {
  942. "docs": "https://hyperf.wiki",
  943. "issues": "https://github.com/hyperf/hyperf/issues",
  944. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  945. "source": "https://github.com/hyperf/hyperf"
  946. },
  947. "funding": [
  948. {
  949. "url": "https://hyperf.wiki/#/zh-cn/donate",
  950. "type": "custom"
  951. },
  952. {
  953. "url": "https://opencollective.com/hyperf",
  954. "type": "open_collective"
  955. }
  956. ],
  957. "time": "2024-05-23T03:43:58+00:00"
  958. },
  959. {
  960. "name": "hyperf/code-parser",
  961. "version": "v3.1.15",
  962. "source": {
  963. "type": "git",
  964. "url": "https://github.com/hyperf/code-parser.git",
  965. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  966. },
  967. "dist": {
  968. "type": "zip",
  969. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  970. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  971. "shasum": ""
  972. },
  973. "require": {
  974. "hyperf/collection": "~3.1.0",
  975. "hyperf/stringable": "~3.1.0",
  976. "hyperf/support": "~3.1.0",
  977. "php": ">=8.1"
  978. },
  979. "suggest": {
  980. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  981. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-master": "3.1-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "Hyperf\\CodeParser\\": "src/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "description": "A code parser component for Hyperf.",
  999. "homepage": "https://hyperf.io",
  1000. "keywords": [
  1001. "code-parser",
  1002. "hyperf",
  1003. "php",
  1004. "swoole"
  1005. ],
  1006. "support": {
  1007. "docs": "https://hyperf.wiki",
  1008. "issues": "https://github.com/hyperf/hyperf/issues",
  1009. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1010. "source": "https://github.com/hyperf/hyperf"
  1011. },
  1012. "funding": [
  1013. {
  1014. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1015. "type": "custom"
  1016. },
  1017. {
  1018. "url": "https://opencollective.com/hyperf",
  1019. "type": "open_collective"
  1020. }
  1021. ],
  1022. "time": "2024-03-23T11:28:51+00:00"
  1023. },
  1024. {
  1025. "name": "hyperf/codec",
  1026. "version": "v3.1.15",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/hyperf/codec.git",
  1030. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1035. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "ext-json": "*",
  1040. "ext-xml": "*",
  1041. "hyperf/contract": "~3.1.0",
  1042. "php": ">=8.1"
  1043. },
  1044. "suggest": {
  1045. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "3.1-dev"
  1051. }
  1052. },
  1053. "autoload": {
  1054. "psr-4": {
  1055. "Hyperf\\Codec\\": "src/"
  1056. }
  1057. },
  1058. "notification-url": "https://packagist.org/downloads/",
  1059. "license": [
  1060. "MIT"
  1061. ],
  1062. "description": "A codec component for Hyperf.",
  1063. "homepage": "https://hyperf.io",
  1064. "keywords": [
  1065. "codec",
  1066. "hyperf",
  1067. "php",
  1068. "swoole"
  1069. ],
  1070. "support": {
  1071. "docs": "https://hyperf.wiki",
  1072. "issues": "https://github.com/hyperf/hyperf/issues",
  1073. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1074. "source": "https://github.com/hyperf/hyperf"
  1075. },
  1076. "funding": [
  1077. {
  1078. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1079. "type": "custom"
  1080. },
  1081. {
  1082. "url": "https://opencollective.com/hyperf",
  1083. "type": "open_collective"
  1084. }
  1085. ],
  1086. "time": "2024-03-23T11:28:51+00:00"
  1087. },
  1088. {
  1089. "name": "hyperf/collection",
  1090. "version": "v3.1.23.2",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/hyperf/collection.git",
  1094. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1099. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "hyperf/conditionable": "~3.1.0",
  1104. "hyperf/contract": "~3.1.0",
  1105. "hyperf/macroable": "~3.1.0",
  1106. "hyperf/stringable": "~3.1.0",
  1107. "php": ">=8.1"
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "3.1-dev"
  1113. }
  1114. },
  1115. "autoload": {
  1116. "files": [
  1117. "src/Functions.php"
  1118. ],
  1119. "psr-4": {
  1120. "Hyperf\\Collection\\": "src/"
  1121. }
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "description": "Hyperf Collection package which come from illuminate/collections",
  1128. "homepage": "https://hyperf.io",
  1129. "keywords": [
  1130. "collection",
  1131. "hyperf",
  1132. "php",
  1133. "swoole"
  1134. ],
  1135. "support": {
  1136. "docs": "https://hyperf.wiki",
  1137. "issues": "https://github.com/hyperf/hyperf/issues",
  1138. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1139. "source": "https://github.com/hyperf/hyperf"
  1140. },
  1141. "funding": [
  1142. {
  1143. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1144. "type": "custom"
  1145. },
  1146. {
  1147. "url": "https://opencollective.com/hyperf",
  1148. "type": "open_collective"
  1149. }
  1150. ],
  1151. "time": "2024-05-24T08:33:42+00:00"
  1152. },
  1153. {
  1154. "name": "hyperf/command",
  1155. "version": "v3.1.24",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/hyperf/command.git",
  1159. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1164. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "hyperf/collection": "~3.1.0",
  1169. "hyperf/context": "~3.1.0",
  1170. "hyperf/contract": "~3.1.0",
  1171. "hyperf/coroutine": "~3.1.0",
  1172. "hyperf/di": "~3.1.0",
  1173. "hyperf/stringable": "~3.1.0",
  1174. "hyperf/support": "~3.1.0",
  1175. "hyperf/tappable": "~3.1.0",
  1176. "php": ">=8.1",
  1177. "psr/event-dispatcher": "^1.0",
  1178. "symfony/console": "^5.0|^6.0|^7.0"
  1179. },
  1180. "suggest": {
  1181. "hyperf/di": "Required to use annotations.",
  1182. "hyperf/event": "Required to use listeners."
  1183. },
  1184. "type": "library",
  1185. "extra": {
  1186. "branch-alias": {
  1187. "dev-master": "3.1-dev"
  1188. },
  1189. "hyperf": {
  1190. "config": "Hyperf\\Command\\ConfigProvider"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "Hyperf\\Command\\": "src/"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "description": "Command for hyperf",
  1203. "keywords": [
  1204. "command",
  1205. "php",
  1206. "swoole"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/hyperf/command/issues",
  1210. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1211. },
  1212. "funding": [
  1213. {
  1214. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1215. "type": "custom"
  1216. },
  1217. {
  1218. "url": "https://opencollective.com/hyperf",
  1219. "type": "open_collective"
  1220. }
  1221. ],
  1222. "time": "2024-05-27T12:37:07+00:00"
  1223. },
  1224. {
  1225. "name": "hyperf/conditionable",
  1226. "version": "v3.1.15",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/hyperf/conditionable.git",
  1230. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1235. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "php": ">=8.1"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "3.1-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Hyperf\\Conditionable\\": "src/"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1257. "homepage": "https://hyperf.io",
  1258. "keywords": [
  1259. "conditionable",
  1260. "hyperf",
  1261. "php",
  1262. "swoole"
  1263. ],
  1264. "support": {
  1265. "docs": "https://hyperf.wiki",
  1266. "issues": "https://github.com/hyperf/hyperf/issues",
  1267. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1268. "source": "https://github.com/hyperf/hyperf"
  1269. },
  1270. "funding": [
  1271. {
  1272. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1273. "type": "custom"
  1274. },
  1275. {
  1276. "url": "https://opencollective.com/hyperf",
  1277. "type": "open_collective"
  1278. }
  1279. ],
  1280. "time": "2024-03-23T11:28:51+00:00"
  1281. },
  1282. {
  1283. "name": "hyperf/config",
  1284. "version": "v3.1.15",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/hyperf/config.git",
  1288. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1293. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1294. "shasum": ""
  1295. },
  1296. "require": {
  1297. "hyperf/collection": "~3.1.0",
  1298. "hyperf/contract": "~3.1.0",
  1299. "hyperf/support": "~3.1.0",
  1300. "php": ">=8.1",
  1301. "psr/container": "^1.0|^2.0",
  1302. "symfony/finder": "^5.0|^6.0|^7.0"
  1303. },
  1304. "suggest": {
  1305. "hyperf/context": "Required to use config()",
  1306. "hyperf/di": "Allows using @Value annotation",
  1307. "hyperf/event": "Allows using @Value annotation",
  1308. "hyperf/framework": "Allows using @Value annotation",
  1309. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1310. },
  1311. "type": "library",
  1312. "extra": {
  1313. "branch-alias": {
  1314. "dev-master": "3.1-dev"
  1315. },
  1316. "hyperf": {
  1317. "config": "Hyperf\\Config\\ConfigProvider"
  1318. }
  1319. },
  1320. "autoload": {
  1321. "files": [
  1322. "./src/Functions.php"
  1323. ],
  1324. "psr-4": {
  1325. "Hyperf\\Config\\": "src/"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "description": "An independent component that provides configuration container.",
  1333. "homepage": "https://hyperf.io",
  1334. "keywords": [
  1335. "config",
  1336. "configuration",
  1337. "hyperf",
  1338. "php",
  1339. "swoole"
  1340. ],
  1341. "support": {
  1342. "docs": "https://hyperf.wiki",
  1343. "issues": "https://github.com/hyperf/hyperf/issues",
  1344. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1345. "source": "https://github.com/hyperf/hyperf"
  1346. },
  1347. "funding": [
  1348. {
  1349. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1350. "type": "custom"
  1351. },
  1352. {
  1353. "url": "https://opencollective.com/hyperf",
  1354. "type": "open_collective"
  1355. }
  1356. ],
  1357. "time": "2024-03-23T11:28:51+00:00"
  1358. },
  1359. {
  1360. "name": "hyperf/config-center",
  1361. "version": "v3.1.15",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/hyperf/config-center.git",
  1365. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1370. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "hyperf/support": "~3.1.0",
  1375. "php": ">=8.1"
  1376. },
  1377. "suggest": {
  1378. "hyperf/process": "^2.1"
  1379. },
  1380. "type": "library",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "3.1-dev"
  1384. },
  1385. "hyperf": {
  1386. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Hyperf\\ConfigCenter\\": "src/"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "description": "The abstraction component of config center",
  1399. "homepage": "https://hyperf.io",
  1400. "keywords": [
  1401. "config-center",
  1402. "hyperf",
  1403. "php"
  1404. ],
  1405. "support": {
  1406. "docs": "https://hyperf.wiki",
  1407. "issues": "https://github.com/hyperf/hyperf/issues",
  1408. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1409. "source": "https://github.com/hyperf/hyperf"
  1410. },
  1411. "funding": [
  1412. {
  1413. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1414. "type": "custom"
  1415. },
  1416. {
  1417. "url": "https://opencollective.com/hyperf",
  1418. "type": "open_collective"
  1419. }
  1420. ],
  1421. "time": "2024-03-23T11:28:51+00:00"
  1422. },
  1423. {
  1424. "name": "hyperf/config-nacos",
  1425. "version": "v3.1.15",
  1426. "source": {
  1427. "type": "git",
  1428. "url": "https://github.com/hyperf/config-nacos.git",
  1429. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1430. },
  1431. "dist": {
  1432. "type": "zip",
  1433. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1434. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1435. "shasum": ""
  1436. },
  1437. "require": {
  1438. "hyperf/codec": "~3.1.0",
  1439. "hyperf/config-center": "~3.1.0",
  1440. "hyperf/contract": "~3.1.0",
  1441. "hyperf/guzzle": "~3.1.0",
  1442. "hyperf/nacos": "~3.1.0",
  1443. "hyperf/support": "~3.1.0",
  1444. "hyperf/utils": "~3.1.0",
  1445. "jetbrains/phpstorm-attributes": "^1.0",
  1446. "php": ">=8.1"
  1447. },
  1448. "suggest": {
  1449. "ext-json": "*",
  1450. "ext-simplexml": "*",
  1451. "ext-yaml": "*",
  1452. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1453. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1454. "hyperf/process": "Required to use processes. (~2.2.0)"
  1455. },
  1456. "type": "library",
  1457. "extra": {
  1458. "branch-alias": {
  1459. "dev-master": "3.1-dev"
  1460. },
  1461. "hyperf": {
  1462. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-4": {
  1467. "Hyperf\\ConfigNacos\\": "src/"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "description": "A nacos adapter for config center component.",
  1475. "homepage": "https://hyperf.io",
  1476. "keywords": [
  1477. "hyperf",
  1478. "nacos",
  1479. "php",
  1480. "swoole"
  1481. ],
  1482. "support": {
  1483. "docs": "https://hyperf.wiki",
  1484. "issues": "https://github.com/hyperf/hyperf/issues",
  1485. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1486. "source": "https://github.com/hyperf/hyperf"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1491. "type": "custom"
  1492. },
  1493. {
  1494. "url": "https://opencollective.com/hyperf",
  1495. "type": "open_collective"
  1496. }
  1497. ],
  1498. "time": "2024-03-23T11:28:51+00:00"
  1499. },
  1500. {
  1501. "name": "hyperf/constants",
  1502. "version": "v3.1.16",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/hyperf/constants.git",
  1506. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1511. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "hyperf/di": "~3.1.0",
  1516. "hyperf/support": "~3.1.0",
  1517. "hyperf/utils": "~3.1.0",
  1518. "php": ">=8.1"
  1519. },
  1520. "suggest": {
  1521. "hyperf/translation": "Required to use translation."
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "3.1-dev"
  1527. },
  1528. "hyperf": {
  1529. "config": "Hyperf\\Constants\\ConfigProvider"
  1530. }
  1531. },
  1532. "autoload": {
  1533. "psr-4": {
  1534. "Hyperf\\Constants\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "description": "A constants component for hyperf.",
  1542. "homepage": "https://hyperf.io",
  1543. "keywords": [
  1544. "constants",
  1545. "hyperf",
  1546. "php"
  1547. ],
  1548. "support": {
  1549. "docs": "https://hyperf.wiki",
  1550. "issues": "https://github.com/hyperf/hyperf/issues",
  1551. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1552. "source": "https://github.com/hyperf/hyperf"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1557. "type": "custom"
  1558. },
  1559. {
  1560. "url": "https://opencollective.com/hyperf",
  1561. "type": "open_collective"
  1562. }
  1563. ],
  1564. "time": "2024-03-31T11:35:28+00:00"
  1565. },
  1566. {
  1567. "name": "hyperf/consul",
  1568. "version": "v3.1.22",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/hyperf/consul.git",
  1572. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1577. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "guzzlehttp/guzzle": "^6.3|^7.0",
  1582. "php": ">=8.1"
  1583. },
  1584. "require-dev": {
  1585. "hyperf/guzzle": "~3.1.0"
  1586. },
  1587. "type": "library",
  1588. "extra": {
  1589. "branch-alias": {
  1590. "dev-master": "3.1-dev"
  1591. },
  1592. "hyperf": {
  1593. "config": "Hyperf\\Consul\\ConfigProvider"
  1594. }
  1595. },
  1596. "autoload": {
  1597. "psr-4": {
  1598. "Hyperf\\Consul\\": "src/"
  1599. }
  1600. },
  1601. "notification-url": "https://packagist.org/downloads/",
  1602. "license": [
  1603. "MIT"
  1604. ],
  1605. "description": "A Consul Client for Hyperf.",
  1606. "homepage": "https://hyperf.io",
  1607. "keywords": [
  1608. "consul",
  1609. "consul-client",
  1610. "hyperf",
  1611. "php",
  1612. "swoole"
  1613. ],
  1614. "support": {
  1615. "docs": "https://hyperf.wiki",
  1616. "issues": "https://github.com/hyperf/hyperf/issues",
  1617. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1618. "source": "https://github.com/hyperf/hyperf"
  1619. },
  1620. "funding": [
  1621. {
  1622. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1623. "type": "custom"
  1624. },
  1625. {
  1626. "url": "https://opencollective.com/hyperf",
  1627. "type": "open_collective"
  1628. }
  1629. ],
  1630. "time": "2024-05-15T06:42:24+00:00"
  1631. },
  1632. {
  1633. "name": "hyperf/context",
  1634. "version": "v3.1.15",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/hyperf/context.git",
  1638. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1643. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "hyperf/engine": "^2.0",
  1648. "php": ">=8.1"
  1649. },
  1650. "suggest": {
  1651. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-master": "3.1-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Hyperf\\Context\\": "src/"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "description": "A coroutine/application context library.",
  1669. "homepage": "https://hyperf.io",
  1670. "keywords": [
  1671. "Context",
  1672. "hyperf",
  1673. "php",
  1674. "swoole"
  1675. ],
  1676. "support": {
  1677. "docs": "https://hyperf.wiki",
  1678. "issues": "https://github.com/hyperf/hyperf/issues",
  1679. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1680. "source": "https://github.com/hyperf/hyperf"
  1681. },
  1682. "funding": [
  1683. {
  1684. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1685. "type": "custom"
  1686. },
  1687. {
  1688. "url": "https://opencollective.com/hyperf",
  1689. "type": "open_collective"
  1690. }
  1691. ],
  1692. "time": "2024-03-23T11:28:51+00:00"
  1693. },
  1694. {
  1695. "name": "hyperf/contract",
  1696. "version": "v3.1.15",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/hyperf/contract.git",
  1700. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1705. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "php": ">=8.1"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "3.1-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Hyperf\\Contract\\": "src/"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "description": "The contracts of Hyperf.",
  1727. "homepage": "https://hyperf.io",
  1728. "keywords": [
  1729. "hyperf",
  1730. "php",
  1731. "swoole"
  1732. ],
  1733. "support": {
  1734. "docs": "https://hyperf.wiki",
  1735. "issues": "https://github.com/hyperf/hyperf/issues",
  1736. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1737. "source": "https://github.com/hyperf/hyperf"
  1738. },
  1739. "funding": [
  1740. {
  1741. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1742. "type": "custom"
  1743. },
  1744. {
  1745. "url": "https://opencollective.com/hyperf",
  1746. "type": "open_collective"
  1747. }
  1748. ],
  1749. "time": "2024-03-23T11:28:51+00:00"
  1750. },
  1751. {
  1752. "name": "hyperf/coordinator",
  1753. "version": "v3.1.21",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/hyperf/coordinator.git",
  1757. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1762. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "hyperf/engine": "^2.0",
  1767. "php": ">=8.1"
  1768. },
  1769. "type": "library",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "3.1-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "files": [
  1777. "src/Functions.php"
  1778. ],
  1779. "psr-4": {
  1780. "Hyperf\\Coordinator\\": "src/"
  1781. }
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "description": "Hyperf Coordinator",
  1788. "homepage": "https://hyperf.io",
  1789. "keywords": [
  1790. "Coordinator",
  1791. "hyperf",
  1792. "php",
  1793. "swoole"
  1794. ],
  1795. "support": {
  1796. "docs": "https://hyperf.wiki",
  1797. "issues": "https://github.com/hyperf/hyperf/issues",
  1798. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1799. "source": "https://github.com/hyperf/hyperf"
  1800. },
  1801. "funding": [
  1802. {
  1803. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1804. "type": "custom"
  1805. },
  1806. {
  1807. "url": "https://opencollective.com/hyperf",
  1808. "type": "open_collective"
  1809. }
  1810. ],
  1811. "time": "2024-05-09T02:35:08+00:00"
  1812. },
  1813. {
  1814. "name": "hyperf/coroutine",
  1815. "version": "v3.1.15",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/hyperf/coroutine.git",
  1819. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1824. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "hyperf/context": "~3.1.0",
  1829. "hyperf/contract": "~3.1.0",
  1830. "hyperf/engine": "^2.0",
  1831. "php": ">=8.1"
  1832. },
  1833. "type": "library",
  1834. "extra": {
  1835. "branch-alias": {
  1836. "dev-master": "3.1-dev"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "files": [
  1841. "src/Functions.php"
  1842. ],
  1843. "psr-4": {
  1844. "Hyperf\\Coroutine\\": "src/"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "description": "Hyperf Coroutine",
  1852. "homepage": "https://hyperf.io",
  1853. "keywords": [
  1854. "coroutine",
  1855. "hyperf",
  1856. "php",
  1857. "swoole"
  1858. ],
  1859. "support": {
  1860. "docs": "https://hyperf.wiki",
  1861. "issues": "https://github.com/hyperf/hyperf/issues",
  1862. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1863. "source": "https://github.com/hyperf/hyperf"
  1864. },
  1865. "funding": [
  1866. {
  1867. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1868. "type": "custom"
  1869. },
  1870. {
  1871. "url": "https://opencollective.com/hyperf",
  1872. "type": "open_collective"
  1873. }
  1874. ],
  1875. "time": "2024-03-23T11:28:51+00:00"
  1876. },
  1877. {
  1878. "name": "hyperf/database",
  1879. "version": "v3.1.24",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/hyperf/database.git",
  1883. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1888. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "hyperf/code-parser": "~3.1.0",
  1893. "hyperf/collection": "~3.1.0",
  1894. "hyperf/macroable": "~3.1.0",
  1895. "hyperf/support": "~3.1.0",
  1896. "hyperf/tappable": "~3.1.0",
  1897. "hyperf/utils": "~3.1.0",
  1898. "nesbot/carbon": "^2.0",
  1899. "php": ">=8.1",
  1900. "psr/container": "^1.0|^2.0",
  1901. "psr/event-dispatcher": "^1.0"
  1902. },
  1903. "suggest": {
  1904. "doctrine/dbal": "Required to rename columns (^3.0).",
  1905. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1906. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1907. },
  1908. "type": "library",
  1909. "extra": {
  1910. "branch-alias": {
  1911. "dev-master": "3.1-dev"
  1912. }
  1913. },
  1914. "autoload": {
  1915. "psr-4": {
  1916. "Hyperf\\Database\\": "src/"
  1917. }
  1918. },
  1919. "notification-url": "https://packagist.org/downloads/",
  1920. "license": [
  1921. "MIT"
  1922. ],
  1923. "description": "A flexible database library.",
  1924. "homepage": "https://hyperf.io",
  1925. "keywords": [
  1926. "database",
  1927. "hyperf",
  1928. "php"
  1929. ],
  1930. "support": {
  1931. "docs": "https://hyperf.wiki",
  1932. "issues": "https://github.com/hyperf/hyperf/issues",
  1933. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1934. "source": "https://github.com/hyperf/hyperf"
  1935. },
  1936. "funding": [
  1937. {
  1938. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1939. "type": "custom"
  1940. },
  1941. {
  1942. "url": "https://opencollective.com/hyperf",
  1943. "type": "open_collective"
  1944. }
  1945. ],
  1946. "time": "2024-05-24T06:14:27+00:00"
  1947. },
  1948. {
  1949. "name": "hyperf/db-connection",
  1950. "version": "v3.1.15",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/hyperf/db-connection.git",
  1954. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  1959. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "hyperf/database": "~3.1.0",
  1964. "hyperf/di": "~3.1.0",
  1965. "hyperf/framework": "~3.1.0",
  1966. "hyperf/model-listener": "~3.1.0",
  1967. "hyperf/pool": "~3.1.0",
  1968. "hyperf/support": "~3.1.0",
  1969. "hyperf/utils": "~3.1.0",
  1970. "php": ">=8.1",
  1971. "psr/container": "^1.0|^2.0"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "3.1-dev"
  1977. },
  1978. "hyperf": {
  1979. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1980. }
  1981. },
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Hyperf\\DbConnection\\": "src/"
  1985. }
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "description": "A hyperf db connection handler for hyperf/database.",
  1992. "homepage": "https://hyperf.io",
  1993. "keywords": [
  1994. "Connection",
  1995. "database",
  1996. "hyperf",
  1997. "php"
  1998. ],
  1999. "support": {
  2000. "docs": "https://hyperf.wiki",
  2001. "issues": "https://github.com/hyperf/hyperf/issues",
  2002. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2003. "source": "https://github.com/hyperf/hyperf"
  2004. },
  2005. "funding": [
  2006. {
  2007. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2008. "type": "custom"
  2009. },
  2010. {
  2011. "url": "https://opencollective.com/hyperf",
  2012. "type": "open_collective"
  2013. }
  2014. ],
  2015. "time": "2024-03-23T11:28:51+00:00"
  2016. },
  2017. {
  2018. "name": "hyperf/di",
  2019. "version": "v3.1.28",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/hyperf/di.git",
  2023. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2028. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "doctrine/instantiator": "^1.0",
  2033. "hyperf/code-parser": "~3.1.0",
  2034. "hyperf/pipeline": "~3.1.0",
  2035. "hyperf/stdlib": "~3.1.0",
  2036. "hyperf/support": "~3.1.0",
  2037. "nikic/php-parser": "^4.1",
  2038. "php": ">=8.1",
  2039. "php-di/phpdoc-reader": "^2.2",
  2040. "psr/container": "^1.0 || ^2.0",
  2041. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2042. "vlucas/phpdotenv": "^5.0"
  2043. },
  2044. "suggest": {
  2045. "ext-pcntl": "Required to scan annotations.",
  2046. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "3.1-dev"
  2052. },
  2053. "hyperf": {
  2054. "config": "Hyperf\\Di\\ConfigProvider"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "Hyperf\\Di\\": "src/"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "description": "A DI for Hyperf.",
  2067. "homepage": "https://hyperf.io",
  2068. "keywords": [
  2069. "annotation",
  2070. "di",
  2071. "hyperf",
  2072. "php",
  2073. "swoole"
  2074. ],
  2075. "support": {
  2076. "docs": "https://hyperf.wiki",
  2077. "issues": "https://github.com/hyperf/hyperf/issues",
  2078. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2079. "source": "https://github.com/hyperf/hyperf"
  2080. },
  2081. "funding": [
  2082. {
  2083. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2084. "type": "custom"
  2085. },
  2086. {
  2087. "url": "https://opencollective.com/hyperf",
  2088. "type": "open_collective"
  2089. }
  2090. ],
  2091. "time": "2024-06-26T03:31:21+00:00"
  2092. },
  2093. {
  2094. "name": "hyperf/dispatcher",
  2095. "version": "v3.1.15",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/hyperf/dispatcher.git",
  2099. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2104. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "hyperf/contract": "~3.1.0",
  2109. "php": ">=8.1",
  2110. "psr/container": "^1.0|^2.0",
  2111. "psr/http-message": "^1.0|^2.0",
  2112. "psr/http-server-middleware": "^1.0"
  2113. },
  2114. "type": "library",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-master": "3.1-dev"
  2118. },
  2119. "hyperf": {
  2120. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2121. }
  2122. },
  2123. "autoload": {
  2124. "psr-4": {
  2125. "Hyperf\\Dispatcher\\": "src/"
  2126. }
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "description": "A HTTP Server for Hyperf.",
  2133. "homepage": "https://hyperf.io",
  2134. "keywords": [
  2135. "dispatcher",
  2136. "filter",
  2137. "hyperf",
  2138. "middleware",
  2139. "php",
  2140. "swoole"
  2141. ],
  2142. "support": {
  2143. "docs": "https://hyperf.wiki",
  2144. "issues": "https://github.com/hyperf/hyperf/issues",
  2145. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2146. "source": "https://github.com/hyperf/hyperf"
  2147. },
  2148. "funding": [
  2149. {
  2150. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2151. "type": "custom"
  2152. },
  2153. {
  2154. "url": "https://opencollective.com/hyperf",
  2155. "type": "open_collective"
  2156. }
  2157. ],
  2158. "time": "2024-03-23T11:28:51+00:00"
  2159. },
  2160. {
  2161. "name": "hyperf/engine",
  2162. "version": "v2.11.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/hyperf/engine.git",
  2166. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2171. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "hyperf/engine-contract": "~1.10.0",
  2176. "php": ">=8.0"
  2177. },
  2178. "conflict": {
  2179. "ext-swoole": "<5.0"
  2180. },
  2181. "require-dev": {
  2182. "friendsofphp/php-cs-fixer": "^3.0",
  2183. "hyperf/guzzle": "^3.0",
  2184. "hyperf/http-message": "^3.0",
  2185. "mockery/mockery": "^1.5",
  2186. "phpstan/phpstan": "^1.0",
  2187. "phpunit/phpunit": "^9.4",
  2188. "swoole/ide-helper": "5.*"
  2189. },
  2190. "suggest": {
  2191. "ext-sockets": "*",
  2192. "ext-swoole": ">=5.0",
  2193. "hyperf/http-message": "Required to use ResponseEmitter.",
  2194. "psr/http-message": "Required to use WebSocket Frame."
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-master": "2.11-dev"
  2200. },
  2201. "hyperf": {
  2202. "config": "Hyperf\\Engine\\ConfigProvider"
  2203. }
  2204. },
  2205. "autoload": {
  2206. "files": [
  2207. "src/Functions.php"
  2208. ],
  2209. "psr-4": {
  2210. "Hyperf\\Engine\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "description": "Coroutine engine provided by swoole.",
  2218. "keywords": [
  2219. "engine",
  2220. "hyperf",
  2221. "php",
  2222. "swoole"
  2223. ],
  2224. "support": {
  2225. "issues": "https://github.com/hyperf/engine/issues",
  2226. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2227. },
  2228. "funding": [
  2229. {
  2230. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2231. "type": "custom"
  2232. },
  2233. {
  2234. "url": "https://opencollective.com/hyperf",
  2235. "type": "open_collective"
  2236. }
  2237. ],
  2238. "time": "2024-04-17T13:36:28+00:00"
  2239. },
  2240. {
  2241. "name": "hyperf/engine-contract",
  2242. "version": "v1.10.1",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/hyperf/engine-contract.git",
  2246. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2251. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2252. "shasum": ""
  2253. },
  2254. "require": {
  2255. "php": ">=8.0"
  2256. },
  2257. "require-dev": {
  2258. "friendsofphp/php-cs-fixer": "^3.0",
  2259. "mockery/mockery": "^1.0",
  2260. "phpstan/phpstan": "^1.0",
  2261. "phpunit/phpunit": ">=7.0",
  2262. "psr/http-message": "^1.0",
  2263. "swoole/ide-helper": "^4.5"
  2264. },
  2265. "suggest": {
  2266. "psr/http-message": "Required to use WebSocket Frame."
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-master": "1.9-dev"
  2272. }
  2273. },
  2274. "autoload": {
  2275. "psr-4": {
  2276. "Hyperf\\Engine\\Contract\\": "src/"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "description": "Contract for Coroutine Engine",
  2284. "keywords": [
  2285. "contract",
  2286. "coroutine",
  2287. "engine",
  2288. "hyperf",
  2289. "php"
  2290. ],
  2291. "support": {
  2292. "issues": "https://github.com/hyperf/engine-contract/issues",
  2293. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2294. },
  2295. "funding": [
  2296. {
  2297. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2298. "type": "custom"
  2299. },
  2300. {
  2301. "url": "https://opencollective.com/hyperf",
  2302. "type": "open_collective"
  2303. }
  2304. ],
  2305. "time": "2024-04-17T13:34:51+00:00"
  2306. },
  2307. {
  2308. "name": "hyperf/event",
  2309. "version": "v3.1.15",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/hyperf/event.git",
  2313. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2318. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "hyperf/contract": "~3.1.0",
  2323. "hyperf/stdlib": "~3.1.0",
  2324. "php": ">=8.1",
  2325. "psr/event-dispatcher": "^1.0"
  2326. },
  2327. "suggest": {
  2328. "hyperf/di": "Required to use annotatioins."
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "branch-alias": {
  2333. "dev-master": "3.1-dev"
  2334. },
  2335. "hyperf": {
  2336. "config": "Hyperf\\Event\\ConfigProvider"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Hyperf\\Event\\": "src/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "description": "an event manager that implements PSR-14.",
  2349. "homepage": "https://hyperf.io",
  2350. "keywords": [
  2351. "event",
  2352. "hyperf",
  2353. "php",
  2354. "swoole"
  2355. ],
  2356. "support": {
  2357. "docs": "https://hyperf.wiki",
  2358. "issues": "https://github.com/hyperf/hyperf/issues",
  2359. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2360. "source": "https://github.com/hyperf/hyperf"
  2361. },
  2362. "funding": [
  2363. {
  2364. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2365. "type": "custom"
  2366. },
  2367. {
  2368. "url": "https://opencollective.com/hyperf",
  2369. "type": "open_collective"
  2370. }
  2371. ],
  2372. "time": "2024-03-23T11:28:51+00:00"
  2373. },
  2374. {
  2375. "name": "hyperf/exception-handler",
  2376. "version": "v3.1.22",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/hyperf/exception-handler.git",
  2380. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2385. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "hyperf/context": "~3.1.0",
  2390. "hyperf/contract": "~3.1.0",
  2391. "hyperf/dispatcher": "~3.1.0",
  2392. "hyperf/http-message": "~3.1.0",
  2393. "hyperf/stdlib": "~3.1.0",
  2394. "hyperf/support": "~3.1.0",
  2395. "php": ">=8.1",
  2396. "psr/container": "^1.0|^2.0",
  2397. "psr/http-message": "^1.0|^2.0",
  2398. "swow/psr7-plus": "^1.0"
  2399. },
  2400. "suggest": {
  2401. "hyperf/di": "Required to use #[ExceptionHandler]",
  2402. "hyperf/event": "Required to use listeners",
  2403. "hyperf/framework": "Required to use listeners",
  2404. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2405. },
  2406. "type": "library",
  2407. "extra": {
  2408. "branch-alias": {
  2409. "dev-master": "3.1-dev"
  2410. },
  2411. "hyperf": {
  2412. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "psr-4": {
  2417. "Hyperf\\ExceptionHandler\\": "src/"
  2418. }
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "MIT"
  2423. ],
  2424. "description": "Exception handler for hyperf",
  2425. "homepage": "https://hyperf.io",
  2426. "keywords": [
  2427. "exception-handler",
  2428. "php",
  2429. "swoole"
  2430. ],
  2431. "support": {
  2432. "docs": "https://hyperf.wiki",
  2433. "issues": "https://github.com/hyperf/hyperf/issues",
  2434. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2435. "source": "https://github.com/hyperf/hyperf"
  2436. },
  2437. "funding": [
  2438. {
  2439. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2440. "type": "custom"
  2441. },
  2442. {
  2443. "url": "https://opencollective.com/hyperf",
  2444. "type": "open_collective"
  2445. }
  2446. ],
  2447. "time": "2024-05-15T07:12:41+00:00"
  2448. },
  2449. {
  2450. "name": "hyperf/framework",
  2451. "version": "v3.1.23",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/hyperf/framework.git",
  2455. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2460. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "fig/http-message-util": "^1.1.2",
  2465. "hyperf/contract": "~3.1.0",
  2466. "hyperf/coordinator": "~3.1.0",
  2467. "hyperf/coroutine": "~3.1.0",
  2468. "php": ">=8.1",
  2469. "psr/container": "^1.0|^2.0",
  2470. "psr/event-dispatcher": "^1.0",
  2471. "psr/log": "^1.0|^2.0|^3.0"
  2472. },
  2473. "suggest": {
  2474. "ext-swoole": "Required to use swoole engine.",
  2475. "hyperf/command": "Required to use Command annotation.",
  2476. "hyperf/di": "Required to use Command annotation.",
  2477. "hyperf/dispatcher": "Required to use BootApplication event.",
  2478. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2479. },
  2480. "type": "library",
  2481. "extra": {
  2482. "branch-alias": {
  2483. "dev-master": "3.1-dev"
  2484. },
  2485. "hyperf": {
  2486. "config": "Hyperf\\Framework\\ConfigProvider"
  2487. }
  2488. },
  2489. "autoload": {
  2490. "psr-4": {
  2491. "Hyperf\\Framework\\": "src/"
  2492. }
  2493. },
  2494. "notification-url": "https://packagist.org/downloads/",
  2495. "license": [
  2496. "MIT"
  2497. ],
  2498. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2499. "homepage": "https://hyperf.io",
  2500. "keywords": [
  2501. "Microservice",
  2502. "framework",
  2503. "hyperf",
  2504. "middleware",
  2505. "php",
  2506. "swoole"
  2507. ],
  2508. "support": {
  2509. "docs": "https://hyperf.wiki",
  2510. "issues": "https://github.com/hyperf/hyperf/issues",
  2511. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2512. "source": "https://github.com/hyperf/hyperf"
  2513. },
  2514. "funding": [
  2515. {
  2516. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2517. "type": "custom"
  2518. },
  2519. {
  2520. "url": "https://opencollective.com/hyperf",
  2521. "type": "open_collective"
  2522. }
  2523. ],
  2524. "time": "2024-05-21T05:43:48+00:00"
  2525. },
  2526. {
  2527. "name": "hyperf/guzzle",
  2528. "version": "v3.1.15",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/hyperf/guzzle.git",
  2532. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2537. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2538. "shasum": ""
  2539. },
  2540. "require": {
  2541. "guzzlehttp/guzzle": "^6.3|^7.0",
  2542. "php": ">=8.1",
  2543. "psr/container": "^1.0|^2.0",
  2544. "psr/http-message": "^1.0|^2.0"
  2545. },
  2546. "suggest": {
  2547. "ext-curl": "Required for CURL handler support",
  2548. "hyperf/pool": "Required to use pool handler."
  2549. },
  2550. "type": "library",
  2551. "extra": {
  2552. "branch-alias": {
  2553. "dev-master": "3.1-dev"
  2554. },
  2555. "hyperf": {
  2556. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2557. }
  2558. },
  2559. "autoload": {
  2560. "psr-4": {
  2561. "Hyperf\\Guzzle\\": "src/"
  2562. }
  2563. },
  2564. "notification-url": "https://packagist.org/downloads/",
  2565. "license": [
  2566. "MIT"
  2567. ],
  2568. "description": "Swoole coroutine handler for guzzle",
  2569. "keywords": [
  2570. "Guzzle",
  2571. "handler",
  2572. "php",
  2573. "swoole"
  2574. ],
  2575. "support": {
  2576. "issues": "https://github.com/hyperf/guzzle/issues",
  2577. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2578. },
  2579. "funding": [
  2580. {
  2581. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2582. "type": "custom"
  2583. },
  2584. {
  2585. "url": "https://opencollective.com/hyperf",
  2586. "type": "open_collective"
  2587. }
  2588. ],
  2589. "time": "2024-03-23T11:28:51+00:00"
  2590. },
  2591. {
  2592. "name": "hyperf/http-message",
  2593. "version": "v3.1.19",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/hyperf/http-message.git",
  2597. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2602. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2603. "shasum": ""
  2604. },
  2605. "require": {
  2606. "hyperf/codec": "~3.1.0",
  2607. "hyperf/engine": "^2.11",
  2608. "hyperf/support": "~3.1.0",
  2609. "laminas/laminas-mime": "^2.7",
  2610. "php": ">=8.1",
  2611. "psr/http-message": "^1.0|^2.0",
  2612. "swow/psr7-plus": "^1.0"
  2613. },
  2614. "suggest": {
  2615. "psr/container": "Required to replace RequestParserInterface."
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "branch-alias": {
  2620. "dev-master": "3.1-dev"
  2621. },
  2622. "hyperf": {
  2623. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2624. }
  2625. },
  2626. "autoload": {
  2627. "psr-4": {
  2628. "Hyperf\\HttpMessage\\": "src/"
  2629. }
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "description": "microservice framework base on swoole",
  2636. "keywords": [
  2637. "http-message",
  2638. "hyperf",
  2639. "php",
  2640. "swoole"
  2641. ],
  2642. "support": {
  2643. "issues": "https://github.com/hyperf/http-message/issues",
  2644. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2649. "type": "custom"
  2650. },
  2651. {
  2652. "url": "https://opencollective.com/hyperf",
  2653. "type": "open_collective"
  2654. }
  2655. ],
  2656. "time": "2024-04-17T13:55:51+00:00"
  2657. },
  2658. {
  2659. "name": "hyperf/http-server",
  2660. "version": "v3.1.17",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/hyperf/http-server.git",
  2664. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2669. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2670. "shasum": ""
  2671. },
  2672. "require": {
  2673. "hyperf/codec": "~3.1.0",
  2674. "hyperf/collection": "~3.1.0",
  2675. "hyperf/context": "~3.1.0",
  2676. "hyperf/contract": "~3.1.0",
  2677. "hyperf/coroutine": "~3.1.0",
  2678. "hyperf/dispatcher": "~3.1.0",
  2679. "hyperf/event": "~3.1.0",
  2680. "hyperf/exception-handler": "~3.1.0",
  2681. "hyperf/http-message": "~3.1.0",
  2682. "hyperf/macroable": "~3.1.0",
  2683. "hyperf/serializer": "~3.1.0",
  2684. "hyperf/server": "~3.1.0",
  2685. "hyperf/stdlib": "~3.1.0",
  2686. "hyperf/support": "~3.1.0",
  2687. "nikic/fast-route": "^1.3",
  2688. "php": ">=8.1",
  2689. "psr/container": "^1.0|^2.0",
  2690. "swow/psr7-plus": "^1.0"
  2691. },
  2692. "suggest": {
  2693. "hyperf/di": "Required to use annotations."
  2694. },
  2695. "type": "library",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "3.1-dev"
  2699. },
  2700. "hyperf": {
  2701. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2702. }
  2703. },
  2704. "autoload": {
  2705. "psr-4": {
  2706. "Hyperf\\HttpServer\\": "src/"
  2707. }
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "MIT"
  2712. ],
  2713. "description": "A HTTP Server for Hyperf.",
  2714. "homepage": "https://hyperf.io",
  2715. "keywords": [
  2716. "http",
  2717. "http-server",
  2718. "hyperf",
  2719. "php",
  2720. "swoole"
  2721. ],
  2722. "support": {
  2723. "docs": "https://hyperf.wiki",
  2724. "issues": "https://github.com/hyperf/hyperf/issues",
  2725. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2726. "source": "https://github.com/hyperf/hyperf"
  2727. },
  2728. "funding": [
  2729. {
  2730. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2731. "type": "custom"
  2732. },
  2733. {
  2734. "url": "https://opencollective.com/hyperf",
  2735. "type": "open_collective"
  2736. }
  2737. ],
  2738. "time": "2024-04-08T07:53:54+00:00"
  2739. },
  2740. {
  2741. "name": "hyperf/json-rpc",
  2742. "version": "v3.1.23",
  2743. "source": {
  2744. "type": "git",
  2745. "url": "https://github.com/hyperf/json-rpc.git",
  2746. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2747. },
  2748. "dist": {
  2749. "type": "zip",
  2750. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2751. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2752. "shasum": ""
  2753. },
  2754. "require": {
  2755. "hyperf/codec": "~3.1.0",
  2756. "hyperf/context": "~3.1.0",
  2757. "hyperf/contract": "~3.1.0",
  2758. "hyperf/engine": "^2.0",
  2759. "hyperf/http-message": "~3.1.0",
  2760. "hyperf/load-balancer": "~3.1.0",
  2761. "hyperf/rpc": "~3.1.0",
  2762. "hyperf/serializer": "~3.1.0",
  2763. "hyperf/support": "~3.1.0",
  2764. "hyperf/utils": "~3.1.0",
  2765. "php": ">=8.1",
  2766. "psr/container": "^1.0|^2.0",
  2767. "swow/psr7-plus": "^1.0"
  2768. },
  2769. "suggest": {
  2770. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2771. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2772. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2773. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2774. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2775. },
  2776. "type": "library",
  2777. "extra": {
  2778. "branch-alias": {
  2779. "dev-master": "3.1-dev"
  2780. },
  2781. "hyperf": {
  2782. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Hyperf\\JsonRpc\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2795. "homepage": "https://hyperf.io",
  2796. "keywords": [
  2797. "hyperf",
  2798. "json-rpc",
  2799. "php",
  2800. "swoole"
  2801. ],
  2802. "support": {
  2803. "docs": "https://hyperf.wiki",
  2804. "issues": "https://github.com/hyperf/hyperf/issues",
  2805. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2806. "source": "https://github.com/hyperf/hyperf"
  2807. },
  2808. "funding": [
  2809. {
  2810. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2811. "type": "custom"
  2812. },
  2813. {
  2814. "url": "https://opencollective.com/hyperf",
  2815. "type": "open_collective"
  2816. }
  2817. ],
  2818. "time": "2024-05-23T03:43:58+00:00"
  2819. },
  2820. {
  2821. "name": "hyperf/load-balancer",
  2822. "version": "v3.1.15",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/hyperf/load-balancer.git",
  2826. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2831. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "hyperf/coordinator": "~3.1.0",
  2836. "hyperf/coroutine": "~3.1.0",
  2837. "markrogoyski/math-php": "^2.0",
  2838. "php": ">=8.1",
  2839. "psr/log": "^1.0|^2.0|^3.0"
  2840. },
  2841. "type": "library",
  2842. "extra": {
  2843. "branch-alias": {
  2844. "dev-master": "3.1-dev"
  2845. },
  2846. "hyperf": {
  2847. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Hyperf\\LoadBalancer\\": "src/"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "description": "A load balancer library for Hyperf.",
  2860. "homepage": "https://hyperf.io",
  2861. "keywords": [
  2862. "hyperf",
  2863. "load-balancer",
  2864. "php",
  2865. "swoole"
  2866. ],
  2867. "support": {
  2868. "docs": "https://hyperf.wiki",
  2869. "issues": "https://github.com/hyperf/hyperf/issues",
  2870. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2871. "source": "https://github.com/hyperf/hyperf"
  2872. },
  2873. "funding": [
  2874. {
  2875. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2876. "type": "custom"
  2877. },
  2878. {
  2879. "url": "https://opencollective.com/hyperf",
  2880. "type": "open_collective"
  2881. }
  2882. ],
  2883. "time": "2024-03-23T11:28:51+00:00"
  2884. },
  2885. {
  2886. "name": "hyperf/logger",
  2887. "version": "v3.1.15",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/hyperf/logger.git",
  2891. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2896. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "hyperf/contract": "~3.1.0",
  2901. "hyperf/support": "~3.1.0",
  2902. "hyperf/utils": "~3.1.0",
  2903. "monolog/monolog": "^2.7|^3.1",
  2904. "php": ">=8.1",
  2905. "psr/container": "^1.0|^2.0",
  2906. "psr/log": "^1.0|^2.0|^3.0"
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "3.1-dev"
  2912. },
  2913. "hyperf": {
  2914. "config": "Hyperf\\Logger\\ConfigProvider"
  2915. }
  2916. },
  2917. "autoload": {
  2918. "psr-4": {
  2919. "Hyperf\\Logger\\": "src/"
  2920. }
  2921. },
  2922. "notification-url": "https://packagist.org/downloads/",
  2923. "license": [
  2924. "MIT"
  2925. ],
  2926. "description": "A logger component for hyperf.",
  2927. "homepage": "https://hyperf.io",
  2928. "keywords": [
  2929. "hyperf",
  2930. "logger",
  2931. "php"
  2932. ],
  2933. "support": {
  2934. "docs": "https://hyperf.wiki",
  2935. "issues": "https://github.com/hyperf/hyperf/issues",
  2936. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2937. "source": "https://github.com/hyperf/hyperf"
  2938. },
  2939. "funding": [
  2940. {
  2941. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2942. "type": "custom"
  2943. },
  2944. {
  2945. "url": "https://opencollective.com/hyperf",
  2946. "type": "open_collective"
  2947. }
  2948. ],
  2949. "time": "2024-03-23T11:28:51+00:00"
  2950. },
  2951. {
  2952. "name": "hyperf/macroable",
  2953. "version": "v3.1.23",
  2954. "source": {
  2955. "type": "git",
  2956. "url": "https://github.com/hyperf/macroable.git",
  2957. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  2958. },
  2959. "dist": {
  2960. "type": "zip",
  2961. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2962. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2963. "shasum": ""
  2964. },
  2965. "require": {
  2966. "php": ">=8.1"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "3.1-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "psr-4": {
  2976. "Hyperf\\Macroable\\": "src/"
  2977. }
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "MIT"
  2982. ],
  2983. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2984. "homepage": "https://hyperf.io",
  2985. "keywords": [
  2986. "hyperf",
  2987. "macroable",
  2988. "php",
  2989. "swoole"
  2990. ],
  2991. "support": {
  2992. "docs": "https://hyperf.wiki",
  2993. "issues": "https://github.com/hyperf/hyperf/issues",
  2994. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2995. "source": "https://github.com/hyperf/hyperf"
  2996. },
  2997. "funding": [
  2998. {
  2999. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3000. "type": "custom"
  3001. },
  3002. {
  3003. "url": "https://opencollective.com/hyperf",
  3004. "type": "open_collective"
  3005. }
  3006. ],
  3007. "time": "2024-05-20T09:55:40+00:00"
  3008. },
  3009. {
  3010. "name": "hyperf/memory",
  3011. "version": "v3.1.15",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/hyperf/memory.git",
  3015. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3020. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": ">=8.1"
  3025. },
  3026. "type": "library",
  3027. "extra": {
  3028. "branch-alias": {
  3029. "dev-master": "3.1-dev"
  3030. },
  3031. "hyperf": {
  3032. "config": "Hyperf\\Memory\\ConfigProvider"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "psr-4": {
  3037. "Hyperf\\Memory\\": "src/"
  3038. }
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "MIT"
  3043. ],
  3044. "description": "An independent component that use to operate and manage memory.",
  3045. "homepage": "https://hyperf.io",
  3046. "keywords": [
  3047. "hyperf",
  3048. "memory",
  3049. "php",
  3050. "swoole"
  3051. ],
  3052. "support": {
  3053. "docs": "https://hyperf.wiki",
  3054. "issues": "https://github.com/hyperf/hyperf/issues",
  3055. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3056. "source": "https://github.com/hyperf/hyperf"
  3057. },
  3058. "funding": [
  3059. {
  3060. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3061. "type": "custom"
  3062. },
  3063. {
  3064. "url": "https://opencollective.com/hyperf",
  3065. "type": "open_collective"
  3066. }
  3067. ],
  3068. "time": "2024-03-23T11:28:51+00:00"
  3069. },
  3070. {
  3071. "name": "hyperf/model-listener",
  3072. "version": "v3.1.15",
  3073. "source": {
  3074. "type": "git",
  3075. "url": "https://github.com/hyperf/model-listener.git",
  3076. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3077. },
  3078. "dist": {
  3079. "type": "zip",
  3080. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3081. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3082. "shasum": ""
  3083. },
  3084. "require": {
  3085. "hyperf/contract": "~3.1.0",
  3086. "hyperf/database": "~3.1.0",
  3087. "hyperf/di": "~3.1.0",
  3088. "hyperf/event": "~3.1.0",
  3089. "hyperf/support": "~3.1.0",
  3090. "hyperf/utils": "~3.1.0",
  3091. "php": ">=8.1",
  3092. "psr/container": "^1.0|^2.0"
  3093. },
  3094. "type": "library",
  3095. "extra": {
  3096. "branch-alias": {
  3097. "dev-master": "3.1-dev"
  3098. },
  3099. "hyperf": {
  3100. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Hyperf\\ModelListener\\": "src/"
  3106. }
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "description": "A model listener for Hyperf.",
  3113. "homepage": "https://hyperf.io",
  3114. "keywords": [
  3115. "hyperf",
  3116. "model-listener",
  3117. "php",
  3118. "swoole"
  3119. ],
  3120. "support": {
  3121. "docs": "https://hyperf.wiki",
  3122. "issues": "https://github.com/hyperf/hyperf/issues",
  3123. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3124. "source": "https://github.com/hyperf/hyperf"
  3125. },
  3126. "funding": [
  3127. {
  3128. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3129. "type": "custom"
  3130. },
  3131. {
  3132. "url": "https://opencollective.com/hyperf",
  3133. "type": "open_collective"
  3134. }
  3135. ],
  3136. "time": "2024-03-23T11:28:51+00:00"
  3137. },
  3138. {
  3139. "name": "hyperf/nacos",
  3140. "version": "v3.1.15",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/hyperf/nacos.git",
  3144. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3149. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "guzzlehttp/guzzle": "^6.5|^7.0",
  3154. "hyperf/codec": "~3.1.0",
  3155. "hyperf/contract": "~3.1.0",
  3156. "hyperf/support": "~3.1.0",
  3157. "hyperf/utils": "~3.1.0",
  3158. "jetbrains/phpstorm-attributes": "^1.0",
  3159. "php": ">=8.1"
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "branch-alias": {
  3164. "dev-master": "3.1-dev"
  3165. },
  3166. "hyperf": {
  3167. "config": "Hyperf\\Nacos\\ConfigProvider"
  3168. }
  3169. },
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Hyperf\\Nacos\\": "src/"
  3173. }
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "description": "Nacos SDK",
  3180. "keywords": [
  3181. "hyperf",
  3182. "nacos",
  3183. "php"
  3184. ],
  3185. "support": {
  3186. "issues": "https://github.com/hyperf/nacos/issues",
  3187. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3188. },
  3189. "funding": [
  3190. {
  3191. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3192. "type": "custom"
  3193. },
  3194. {
  3195. "url": "https://opencollective.com/hyperf",
  3196. "type": "open_collective"
  3197. }
  3198. ],
  3199. "time": "2024-03-23T11:28:51+00:00"
  3200. },
  3201. {
  3202. "name": "hyperf/pipeline",
  3203. "version": "v3.1.15",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/hyperf/pipeline.git",
  3207. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3212. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "php": ">=8.1",
  3217. "psr/container": "^1.0|^2.0"
  3218. },
  3219. "type": "library",
  3220. "extra": {
  3221. "branch-alias": {
  3222. "dev-master": "3.1-dev"
  3223. }
  3224. },
  3225. "autoload": {
  3226. "psr-4": {
  3227. "Hyperf\\Pipeline\\": "src/"
  3228. }
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "MIT"
  3233. ],
  3234. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3235. "homepage": "https://hyperf.io",
  3236. "keywords": [
  3237. "hyperf",
  3238. "php",
  3239. "pipeline",
  3240. "swoole"
  3241. ],
  3242. "support": {
  3243. "docs": "https://hyperf.wiki",
  3244. "issues": "https://github.com/hyperf/hyperf/issues",
  3245. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3246. "source": "https://github.com/hyperf/hyperf"
  3247. },
  3248. "funding": [
  3249. {
  3250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3251. "type": "custom"
  3252. },
  3253. {
  3254. "url": "https://opencollective.com/hyperf",
  3255. "type": "open_collective"
  3256. }
  3257. ],
  3258. "time": "2024-03-23T11:28:51+00:00"
  3259. },
  3260. {
  3261. "name": "hyperf/pool",
  3262. "version": "v3.1.15",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/hyperf/pool.git",
  3266. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3271. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3272. "shasum": ""
  3273. },
  3274. "require": {
  3275. "hyperf/contract": "~3.1.0",
  3276. "hyperf/support": "~3.1.0",
  3277. "hyperf/utils": "~3.1.0",
  3278. "php": ">=8.1",
  3279. "psr/container": "^1.0|^2.0"
  3280. },
  3281. "suggest": {
  3282. "psr/event-dispatcher": "Required to use events."
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "branch-alias": {
  3287. "dev-master": "3.1-dev"
  3288. },
  3289. "hyperf": {
  3290. "config": "Hyperf\\Pool\\ConfigProvider"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Hyperf\\Pool\\": "src/"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "description": "An independent universal connection pool component.",
  3303. "homepage": "https://hyperf.io",
  3304. "keywords": [
  3305. "connection-pool",
  3306. "hyperf",
  3307. "php",
  3308. "swoole"
  3309. ],
  3310. "support": {
  3311. "docs": "https://hyperf.wiki",
  3312. "issues": "https://github.com/hyperf/hyperf/issues",
  3313. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3314. "source": "https://github.com/hyperf/hyperf"
  3315. },
  3316. "funding": [
  3317. {
  3318. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3319. "type": "custom"
  3320. },
  3321. {
  3322. "url": "https://opencollective.com/hyperf",
  3323. "type": "open_collective"
  3324. }
  3325. ],
  3326. "time": "2024-03-23T11:28:51+00:00"
  3327. },
  3328. {
  3329. "name": "hyperf/process",
  3330. "version": "v3.1.15",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/hyperf/process.git",
  3334. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3339. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "hyperf/contract": "~3.1.0",
  3344. "hyperf/support": "~3.1.0",
  3345. "hyperf/utils": "~3.1.0",
  3346. "php": ">=8.1",
  3347. "psr/container": "^1.0|^2.0",
  3348. "psr/event-dispatcher": "^1.0"
  3349. },
  3350. "suggest": {
  3351. "hyperf/di": "Required to use annotations.",
  3352. "hyperf/event": "Required to dump the message before and after process.",
  3353. "hyperf/framework": "Required to use BootProcessListener."
  3354. },
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "3.1-dev"
  3359. },
  3360. "hyperf": {
  3361. "config": "Hyperf\\Process\\ConfigProvider"
  3362. }
  3363. },
  3364. "autoload": {
  3365. "psr-4": {
  3366. "Hyperf\\Process\\": "src/"
  3367. }
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "description": "A process component for hyperf.",
  3374. "homepage": "https://hyperf.io",
  3375. "keywords": [
  3376. "hyperf",
  3377. "php",
  3378. "process"
  3379. ],
  3380. "support": {
  3381. "docs": "https://hyperf.wiki",
  3382. "issues": "https://github.com/hyperf/hyperf/issues",
  3383. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3384. "source": "https://github.com/hyperf/hyperf"
  3385. },
  3386. "funding": [
  3387. {
  3388. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3389. "type": "custom"
  3390. },
  3391. {
  3392. "url": "https://opencollective.com/hyperf",
  3393. "type": "open_collective"
  3394. }
  3395. ],
  3396. "time": "2024-03-23T11:28:51+00:00"
  3397. },
  3398. {
  3399. "name": "hyperf/redis",
  3400. "version": "v3.1.18",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://github.com/hyperf/redis.git",
  3404. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3409. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3410. "shasum": ""
  3411. },
  3412. "require": {
  3413. "ext-redis": "^5.0|^6.0",
  3414. "hyperf/contract": "~3.1.0",
  3415. "hyperf/pool": "~3.1.0",
  3416. "hyperf/support": "~3.1.0",
  3417. "hyperf/tappable": "~3.1.0",
  3418. "hyperf/utils": "~3.1.0",
  3419. "php": ">=8.1",
  3420. "psr/container": "^1.0|^2.0"
  3421. },
  3422. "suggest": {
  3423. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3424. "hyperf/di": "Create the RedisPool via dependency injection."
  3425. },
  3426. "type": "library",
  3427. "extra": {
  3428. "branch-alias": {
  3429. "dev-master": "3.1-dev"
  3430. },
  3431. "hyperf": {
  3432. "config": "Hyperf\\Redis\\ConfigProvider"
  3433. }
  3434. },
  3435. "autoload": {
  3436. "psr-4": {
  3437. "Hyperf\\Redis\\": "src/"
  3438. }
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "MIT"
  3443. ],
  3444. "description": "A redis component for hyperf.",
  3445. "homepage": "https://hyperf.io",
  3446. "keywords": [
  3447. "hyperf",
  3448. "php",
  3449. "pool",
  3450. "redis"
  3451. ],
  3452. "support": {
  3453. "docs": "https://hyperf.wiki",
  3454. "issues": "https://github.com/hyperf/hyperf/issues",
  3455. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3456. "source": "https://github.com/hyperf/hyperf"
  3457. },
  3458. "funding": [
  3459. {
  3460. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3461. "type": "custom"
  3462. },
  3463. {
  3464. "url": "https://opencollective.com/hyperf",
  3465. "type": "open_collective"
  3466. }
  3467. ],
  3468. "time": "2024-04-11T10:18:35+00:00"
  3469. },
  3470. {
  3471. "name": "hyperf/rpc",
  3472. "version": "v3.1.15",
  3473. "source": {
  3474. "type": "git",
  3475. "url": "https://github.com/hyperf/rpc.git",
  3476. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3477. },
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3481. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3482. "shasum": ""
  3483. },
  3484. "require": {
  3485. "hyperf/codec": "~3.1.0",
  3486. "hyperf/contract": "~3.1.0",
  3487. "hyperf/support": "~3.1.0",
  3488. "jetbrains/phpstorm-attributes": "^1.0",
  3489. "php": ">=8.1"
  3490. },
  3491. "type": "library",
  3492. "extra": {
  3493. "branch-alias": {
  3494. "dev-master": "3.1-dev"
  3495. },
  3496. "hyperf": []
  3497. },
  3498. "autoload": {
  3499. "psr-4": {
  3500. "Hyperf\\Rpc\\": "src/"
  3501. }
  3502. },
  3503. "notification-url": "https://packagist.org/downloads/",
  3504. "license": [
  3505. "MIT"
  3506. ],
  3507. "description": "A rpc basic library for Hyperf.",
  3508. "homepage": "https://hyperf.io",
  3509. "keywords": [
  3510. "hyperf",
  3511. "php",
  3512. "rpc",
  3513. "swoole"
  3514. ],
  3515. "support": {
  3516. "docs": "https://hyperf.wiki",
  3517. "issues": "https://github.com/hyperf/hyperf/issues",
  3518. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3519. "source": "https://github.com/hyperf/hyperf"
  3520. },
  3521. "funding": [
  3522. {
  3523. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3524. "type": "custom"
  3525. },
  3526. {
  3527. "url": "https://opencollective.com/hyperf",
  3528. "type": "open_collective"
  3529. }
  3530. ],
  3531. "time": "2024-03-23T11:28:51+00:00"
  3532. },
  3533. {
  3534. "name": "hyperf/rpc-server",
  3535. "version": "v3.1.20",
  3536. "source": {
  3537. "type": "git",
  3538. "url": "https://github.com/hyperf/rpc-server.git",
  3539. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3540. },
  3541. "dist": {
  3542. "type": "zip",
  3543. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3544. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3545. "shasum": ""
  3546. },
  3547. "require": {
  3548. "hyperf/http-server": "~3.1.0",
  3549. "hyperf/rpc": "~3.1.0",
  3550. "php": ">=8.1"
  3551. },
  3552. "suggest": {
  3553. "hyperf/di": "Required to use annotations."
  3554. },
  3555. "type": "library",
  3556. "extra": {
  3557. "branch-alias": {
  3558. "dev-master": "3.1-dev"
  3559. },
  3560. "hyperf": {
  3561. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3562. }
  3563. },
  3564. "autoload": {
  3565. "psr-4": {
  3566. "Hyperf\\RpcServer\\": "src/"
  3567. }
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "description": "An abstract rpc server component for Hyperf.",
  3574. "homepage": "https://hyperf.io",
  3575. "keywords": [
  3576. "hyperf",
  3577. "php",
  3578. "rpc",
  3579. "rpc-server",
  3580. "swoole"
  3581. ],
  3582. "support": {
  3583. "docs": "https://hyperf.wiki",
  3584. "issues": "https://github.com/hyperf/hyperf/issues",
  3585. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3586. "source": "https://github.com/hyperf/hyperf"
  3587. },
  3588. "funding": [
  3589. {
  3590. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3591. "type": "custom"
  3592. },
  3593. {
  3594. "url": "https://opencollective.com/hyperf",
  3595. "type": "open_collective"
  3596. }
  3597. ],
  3598. "time": "2024-04-22T01:46:29+00:00"
  3599. },
  3600. {
  3601. "name": "hyperf/serializer",
  3602. "version": "v3.1.23",
  3603. "source": {
  3604. "type": "git",
  3605. "url": "https://github.com/hyperf/serializer.git",
  3606. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3607. },
  3608. "dist": {
  3609. "type": "zip",
  3610. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3611. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3612. "shasum": ""
  3613. },
  3614. "require": {
  3615. "hyperf/contract": "~3.1.0",
  3616. "php": ">=8.1"
  3617. },
  3618. "suggest": {
  3619. "hyperf/di": "Required to use ExceptionNormalizer",
  3620. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3621. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3622. },
  3623. "type": "library",
  3624. "extra": {
  3625. "branch-alias": {
  3626. "dev-master": "3.1-dev"
  3627. },
  3628. "hyperf": {
  3629. "config": "Hyperf\\Serializer\\ConfigProvider"
  3630. }
  3631. },
  3632. "autoload": {
  3633. "psr-4": {
  3634. "Hyperf\\Serializer\\": "src/"
  3635. }
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "MIT"
  3640. ],
  3641. "description": "A serializer component for Hyperf.",
  3642. "homepage": "https://hyperf.io",
  3643. "keywords": [
  3644. "hyperf",
  3645. "php",
  3646. "swoole",
  3647. "tappable"
  3648. ],
  3649. "support": {
  3650. "docs": "https://hyperf.wiki",
  3651. "issues": "https://github.com/hyperf/hyperf/issues",
  3652. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3653. "source": "https://github.com/hyperf/hyperf"
  3654. },
  3655. "funding": [
  3656. {
  3657. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3658. "type": "custom"
  3659. },
  3660. {
  3661. "url": "https://opencollective.com/hyperf",
  3662. "type": "open_collective"
  3663. }
  3664. ],
  3665. "time": "2024-05-23T03:43:58+00:00"
  3666. },
  3667. {
  3668. "name": "hyperf/server",
  3669. "version": "v3.1.23",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/hyperf/server.git",
  3673. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3678. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3679. "shasum": ""
  3680. },
  3681. "require": {
  3682. "hyperf/contract": "~3.1.0",
  3683. "hyperf/coordinator": "~3.1.0",
  3684. "hyperf/engine": "^2.8",
  3685. "hyperf/support": "~3.1.0",
  3686. "hyperf/tappable": "~3.1.0",
  3687. "php": ">=8.1",
  3688. "psr/container": "^1.0|^2.0",
  3689. "psr/event-dispatcher": "^1.0",
  3690. "psr/log": "^1.0|^2.0|^3.0",
  3691. "symfony/console": "^5.0|^6.0|^7.0"
  3692. },
  3693. "suggest": {
  3694. "hyperf/event": "Dump the info after server start.",
  3695. "hyperf/framework": "Dump the info after server start."
  3696. },
  3697. "type": "library",
  3698. "extra": {
  3699. "branch-alias": {
  3700. "dev-master": "3.1-dev"
  3701. },
  3702. "hyperf": {
  3703. "config": "Hyperf\\Server\\ConfigProvider"
  3704. }
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "Hyperf\\Server\\": "src/"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "MIT"
  3714. ],
  3715. "description": "A base server library for Hyperf.",
  3716. "homepage": "https://hyperf.io",
  3717. "keywords": [
  3718. "hyperf",
  3719. "php",
  3720. "server",
  3721. "swoole"
  3722. ],
  3723. "support": {
  3724. "docs": "https://hyperf.wiki",
  3725. "issues": "https://github.com/hyperf/hyperf/issues",
  3726. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3727. "source": "https://github.com/hyperf/hyperf"
  3728. },
  3729. "funding": [
  3730. {
  3731. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3732. "type": "custom"
  3733. },
  3734. {
  3735. "url": "https://opencollective.com/hyperf",
  3736. "type": "open_collective"
  3737. }
  3738. ],
  3739. "time": "2024-05-23T03:43:58+00:00"
  3740. },
  3741. {
  3742. "name": "hyperf/service-governance",
  3743. "version": "v3.1.15",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/hyperf/service-governance.git",
  3747. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3752. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "hyperf/contract": "~3.1.0",
  3757. "hyperf/support": "~3.1.0",
  3758. "jetbrains/phpstorm-attributes": "^1.0",
  3759. "php": ">=8.1"
  3760. },
  3761. "suggest": {
  3762. "hyperf/event": "Required to use RegisterServiceListener.",
  3763. "hyperf/framework": "Required to use RegisterServiceListener.",
  3764. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3765. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3766. },
  3767. "type": "library",
  3768. "extra": {
  3769. "branch-alias": {
  3770. "dev-master": "3.1-dev"
  3771. },
  3772. "hyperf": {
  3773. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3774. }
  3775. },
  3776. "autoload": {
  3777. "psr-4": {
  3778. "Hyperf\\ServiceGovernance\\": "src/"
  3779. }
  3780. },
  3781. "notification-url": "https://packagist.org/downloads/",
  3782. "license": [
  3783. "MIT"
  3784. ],
  3785. "description": "A service governance component for Hyperf.",
  3786. "homepage": "https://hyperf.io",
  3787. "keywords": [
  3788. "hyperf",
  3789. "php",
  3790. "service-governance",
  3791. "swoole"
  3792. ],
  3793. "support": {
  3794. "docs": "https://hyperf.wiki",
  3795. "issues": "https://github.com/hyperf/hyperf/issues",
  3796. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3797. "source": "https://github.com/hyperf/hyperf"
  3798. },
  3799. "funding": [
  3800. {
  3801. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3802. "type": "custom"
  3803. },
  3804. {
  3805. "url": "https://opencollective.com/hyperf",
  3806. "type": "open_collective"
  3807. }
  3808. ],
  3809. "time": "2024-03-23T11:28:51+00:00"
  3810. },
  3811. {
  3812. "name": "hyperf/service-governance-consul",
  3813. "version": "v3.1.15",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://github.com/hyperf/service-governance-consul.git",
  3817. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3822. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3823. "shasum": ""
  3824. },
  3825. "require": {
  3826. "hyperf/consul": "~3.1.0",
  3827. "hyperf/contract": "~3.1.0",
  3828. "hyperf/service-governance": "~3.1.0",
  3829. "hyperf/support": "~3.1.0",
  3830. "hyperf/utils": "~3.1.0",
  3831. "php": ">=8.1"
  3832. },
  3833. "type": "library",
  3834. "extra": {
  3835. "branch-alias": {
  3836. "dev-master": "3.1-dev"
  3837. },
  3838. "hyperf": {
  3839. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3840. }
  3841. },
  3842. "autoload": {
  3843. "psr-4": {
  3844. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3845. }
  3846. },
  3847. "notification-url": "https://packagist.org/downloads/",
  3848. "license": [
  3849. "MIT"
  3850. ],
  3851. "description": "A consul adapter for service governance.",
  3852. "homepage": "https://hyperf.io",
  3853. "keywords": [
  3854. "consul-adapter",
  3855. "hyperf",
  3856. "php",
  3857. "service-governance",
  3858. "swoole"
  3859. ],
  3860. "support": {
  3861. "docs": "https://hyperf.wiki",
  3862. "issues": "https://github.com/hyperf/hyperf/issues",
  3863. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3864. "source": "https://github.com/hyperf/hyperf"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3869. "type": "custom"
  3870. },
  3871. {
  3872. "url": "https://opencollective.com/hyperf",
  3873. "type": "open_collective"
  3874. }
  3875. ],
  3876. "time": "2024-03-23T11:28:51+00:00"
  3877. },
  3878. {
  3879. "name": "hyperf/service-governance-nacos",
  3880. "version": "v3.1.15",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3884. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3889. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "hyperf/codec": "~3.1.0",
  3894. "hyperf/contract": "~3.1.0",
  3895. "hyperf/nacos": "~3.1.0",
  3896. "hyperf/service-governance": "~3.1.0",
  3897. "hyperf/support": "~3.1.0",
  3898. "hyperf/utils": "~3.1.0",
  3899. "php": ">=8.1"
  3900. },
  3901. "type": "library",
  3902. "extra": {
  3903. "branch-alias": {
  3904. "dev-master": "3.1-dev"
  3905. },
  3906. "hyperf": {
  3907. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3908. }
  3909. },
  3910. "autoload": {
  3911. "psr-4": {
  3912. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3913. }
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "MIT"
  3918. ],
  3919. "description": "A nacos adapter for service governance.",
  3920. "homepage": "https://hyperf.io",
  3921. "keywords": [
  3922. "hyperf",
  3923. "nacos-adapter",
  3924. "php",
  3925. "service-governance",
  3926. "swoole"
  3927. ],
  3928. "support": {
  3929. "docs": "https://hyperf.wiki",
  3930. "issues": "https://github.com/hyperf/hyperf/issues",
  3931. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3932. "source": "https://github.com/hyperf/hyperf"
  3933. },
  3934. "funding": [
  3935. {
  3936. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3937. "type": "custom"
  3938. },
  3939. {
  3940. "url": "https://opencollective.com/hyperf",
  3941. "type": "open_collective"
  3942. }
  3943. ],
  3944. "time": "2024-03-23T11:28:51+00:00"
  3945. },
  3946. {
  3947. "name": "hyperf/stdlib",
  3948. "version": "v3.1.15",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/hyperf/stdlib.git",
  3952. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  3957. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  3958. "shasum": ""
  3959. },
  3960. "require": {
  3961. "php": ">=8.1"
  3962. },
  3963. "type": "library",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-master": "3.1-dev"
  3967. }
  3968. },
  3969. "autoload": {
  3970. "psr-4": {
  3971. "Hyperf\\Stdlib\\": "src/"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "description": "A stdlib component for Hyperf.",
  3979. "homepage": "https://hyperf.io",
  3980. "keywords": [
  3981. "hyperf",
  3982. "php",
  3983. "stdlib",
  3984. "swoole"
  3985. ],
  3986. "support": {
  3987. "docs": "https://hyperf.wiki",
  3988. "issues": "https://github.com/hyperf/hyperf/issues",
  3989. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3990. "source": "https://github.com/hyperf/hyperf"
  3991. },
  3992. "funding": [
  3993. {
  3994. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3995. "type": "custom"
  3996. },
  3997. {
  3998. "url": "https://opencollective.com/hyperf",
  3999. "type": "open_collective"
  4000. }
  4001. ],
  4002. "time": "2024-03-23T11:28:51+00:00"
  4003. },
  4004. {
  4005. "name": "hyperf/stringable",
  4006. "version": "v3.1.24",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/hyperf/stringable.git",
  4010. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4015. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "ext-mbstring": "*",
  4020. "hyperf/collection": "~3.1.0",
  4021. "hyperf/conditionable": "~3.1.0",
  4022. "hyperf/macroable": "~3.1.0",
  4023. "hyperf/tappable": "~3.1.0",
  4024. "php": ">=8.1"
  4025. },
  4026. "suggest": {
  4027. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4028. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4029. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4030. },
  4031. "type": "library",
  4032. "extra": {
  4033. "branch-alias": {
  4034. "dev-master": "3.1-dev"
  4035. }
  4036. },
  4037. "autoload": {
  4038. "files": [
  4039. "src/Functions.php"
  4040. ],
  4041. "psr-4": {
  4042. "Hyperf\\Stringable\\": "src/"
  4043. }
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "MIT"
  4048. ],
  4049. "description": "Hyperf Stringable package which come from illuminate/support",
  4050. "homepage": "https://hyperf.io",
  4051. "keywords": [
  4052. "hyperf",
  4053. "php",
  4054. "stringable",
  4055. "swoole"
  4056. ],
  4057. "support": {
  4058. "docs": "https://hyperf.wiki",
  4059. "issues": "https://github.com/hyperf/hyperf/issues",
  4060. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4061. "source": "https://github.com/hyperf/hyperf"
  4062. },
  4063. "funding": [
  4064. {
  4065. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4066. "type": "custom"
  4067. },
  4068. {
  4069. "url": "https://opencollective.com/hyperf",
  4070. "type": "open_collective"
  4071. }
  4072. ],
  4073. "time": "2024-05-27T03:20:24+00:00"
  4074. },
  4075. {
  4076. "name": "hyperf/support",
  4077. "version": "v3.1.15",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/hyperf/support.git",
  4081. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4086. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "hyperf/collection": "~3.1.0",
  4091. "hyperf/context": "~3.1.0",
  4092. "hyperf/contract": "~3.1.0",
  4093. "hyperf/coroutine": "~3.1.0",
  4094. "hyperf/macroable": "~3.1.0",
  4095. "hyperf/stringable": "~3.1.0",
  4096. "php": ">=8.1"
  4097. },
  4098. "suggest": {
  4099. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-master": "3.1-dev"
  4105. }
  4106. },
  4107. "autoload": {
  4108. "files": [
  4109. "src/Functions.php"
  4110. ],
  4111. "psr-4": {
  4112. "Hyperf\\Support\\": "src/"
  4113. }
  4114. },
  4115. "notification-url": "https://packagist.org/downloads/",
  4116. "license": [
  4117. "MIT"
  4118. ],
  4119. "description": "A support component for Hyperf.",
  4120. "homepage": "https://hyperf.io",
  4121. "keywords": [
  4122. "hyperf",
  4123. "php",
  4124. "support",
  4125. "swoole"
  4126. ],
  4127. "support": {
  4128. "docs": "https://hyperf.wiki",
  4129. "issues": "https://github.com/hyperf/hyperf/issues",
  4130. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4131. "source": "https://github.com/hyperf/hyperf"
  4132. },
  4133. "funding": [
  4134. {
  4135. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4136. "type": "custom"
  4137. },
  4138. {
  4139. "url": "https://opencollective.com/hyperf",
  4140. "type": "open_collective"
  4141. }
  4142. ],
  4143. "time": "2024-03-23T11:28:51+00:00"
  4144. },
  4145. {
  4146. "name": "hyperf/tappable",
  4147. "version": "v3.1.15",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://github.com/hyperf/tappable.git",
  4151. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4156. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4157. "shasum": ""
  4158. },
  4159. "require": {
  4160. "php": ">=8.1"
  4161. },
  4162. "type": "library",
  4163. "extra": {
  4164. "branch-alias": {
  4165. "dev-master": "3.1-dev"
  4166. }
  4167. },
  4168. "autoload": {
  4169. "files": [
  4170. "src/Functions.php"
  4171. ],
  4172. "psr-4": {
  4173. "Hyperf\\Tappable\\": "src/"
  4174. }
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "MIT"
  4179. ],
  4180. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4181. "homepage": "https://hyperf.io",
  4182. "keywords": [
  4183. "hyperf",
  4184. "php",
  4185. "swoole",
  4186. "tappable"
  4187. ],
  4188. "support": {
  4189. "docs": "https://hyperf.wiki",
  4190. "issues": "https://github.com/hyperf/hyperf/issues",
  4191. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4192. "source": "https://github.com/hyperf/hyperf"
  4193. },
  4194. "funding": [
  4195. {
  4196. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4197. "type": "custom"
  4198. },
  4199. {
  4200. "url": "https://opencollective.com/hyperf",
  4201. "type": "open_collective"
  4202. }
  4203. ],
  4204. "time": "2024-03-23T11:28:51+00:00"
  4205. },
  4206. {
  4207. "name": "hyperf/utils",
  4208. "version": "v3.1.0",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/hyperf/utils.git",
  4212. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4217. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4218. "shasum": ""
  4219. },
  4220. "require": {
  4221. "doctrine/inflector": "^2.0",
  4222. "hyperf/code-parser": "~3.1.0",
  4223. "hyperf/codec": "~3.1.0",
  4224. "hyperf/collection": "~3.1.0",
  4225. "hyperf/context": "~3.1.0",
  4226. "hyperf/contract": "~3.1.0",
  4227. "hyperf/coordinator": "~3.1.0",
  4228. "hyperf/coroutine": "~3.1.0",
  4229. "hyperf/engine": "^2.0",
  4230. "hyperf/macroable": "~3.1.0",
  4231. "hyperf/serializer": "~3.1.0",
  4232. "hyperf/stringable": "~3.1.0",
  4233. "hyperf/support": "~3.1.0",
  4234. "php": ">=8.1"
  4235. },
  4236. "type": "library",
  4237. "extra": {
  4238. "branch-alias": {
  4239. "dev-master": "3.1-dev"
  4240. }
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "MIT"
  4245. ],
  4246. "description": "A tools package that could help developer solved the problem quickly.",
  4247. "homepage": "https://hyperf.io",
  4248. "keywords": [
  4249. "hyperf",
  4250. "php",
  4251. "swoole",
  4252. "utils"
  4253. ],
  4254. "support": {
  4255. "docs": "https://hyperf.wiki",
  4256. "issues": "https://github.com/hyperf/hyperf/issues",
  4257. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4258. "source": "https://github.com/hyperf/hyperf"
  4259. },
  4260. "funding": [
  4261. {
  4262. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4263. "type": "custom"
  4264. },
  4265. {
  4266. "url": "https://opencollective.com/hyperf",
  4267. "type": "open_collective"
  4268. }
  4269. ],
  4270. "time": "2023-11-24T03:10:53+00:00"
  4271. },
  4272. {
  4273. "name": "jetbrains/phpstorm-attributes",
  4274. "version": "1.1",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4278. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4283. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4284. "shasum": ""
  4285. },
  4286. "type": "library",
  4287. "autoload": {
  4288. "psr-4": {
  4289. "JetBrains\\PhpStorm\\": "src/"
  4290. }
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "Apache-2.0"
  4295. ],
  4296. "authors": [
  4297. {
  4298. "name": "JetBrains",
  4299. "homepage": "https://www.jetbrains.com"
  4300. }
  4301. ],
  4302. "description": "PhpStorm specific attributes",
  4303. "keywords": [
  4304. "attributes",
  4305. "jetbrains",
  4306. "phpstorm"
  4307. ],
  4308. "support": {
  4309. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4310. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4311. },
  4312. "time": "2023-09-01T08:50:25+00:00"
  4313. },
  4314. {
  4315. "name": "laminas/laminas-mime",
  4316. "version": "2.12.0",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://github.com/laminas/laminas-mime.git",
  4320. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4325. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4326. "shasum": ""
  4327. },
  4328. "require": {
  4329. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4330. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4331. },
  4332. "conflict": {
  4333. "zendframework/zend-mime": "*"
  4334. },
  4335. "require-dev": {
  4336. "laminas/laminas-coding-standard": "~2.4.0",
  4337. "laminas/laminas-mail": "^2.19.0",
  4338. "phpunit/phpunit": "~9.5.25"
  4339. },
  4340. "suggest": {
  4341. "laminas/laminas-mail": "Laminas\\Mail component"
  4342. },
  4343. "type": "library",
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Laminas\\Mime\\": "src/"
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "BSD-3-Clause"
  4352. ],
  4353. "description": "Create and parse MIME messages and parts",
  4354. "homepage": "https://laminas.dev",
  4355. "keywords": [
  4356. "laminas",
  4357. "mime"
  4358. ],
  4359. "support": {
  4360. "chat": "https://laminas.dev/chat",
  4361. "docs": "https://docs.laminas.dev/laminas-mime/",
  4362. "forum": "https://discourse.laminas.dev",
  4363. "issues": "https://github.com/laminas/laminas-mime/issues",
  4364. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4365. "source": "https://github.com/laminas/laminas-mime"
  4366. },
  4367. "funding": [
  4368. {
  4369. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4370. "type": "community_bridge"
  4371. }
  4372. ],
  4373. "time": "2023-11-02T16:47:19+00:00"
  4374. },
  4375. {
  4376. "name": "laminas/laminas-stdlib",
  4377. "version": "3.19.0",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/laminas/laminas-stdlib.git",
  4381. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4386. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4387. "shasum": ""
  4388. },
  4389. "require": {
  4390. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4391. },
  4392. "conflict": {
  4393. "zendframework/zend-stdlib": "*"
  4394. },
  4395. "require-dev": {
  4396. "laminas/laminas-coding-standard": "^2.5",
  4397. "phpbench/phpbench": "^1.2.15",
  4398. "phpunit/phpunit": "^10.5.8",
  4399. "psalm/plugin-phpunit": "^0.18.4",
  4400. "vimeo/psalm": "^5.20.0"
  4401. },
  4402. "type": "library",
  4403. "autoload": {
  4404. "psr-4": {
  4405. "Laminas\\Stdlib\\": "src/"
  4406. }
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "BSD-3-Clause"
  4411. ],
  4412. "description": "SPL extensions, array utilities, error handlers, and more",
  4413. "homepage": "https://laminas.dev",
  4414. "keywords": [
  4415. "laminas",
  4416. "stdlib"
  4417. ],
  4418. "support": {
  4419. "chat": "https://laminas.dev/chat",
  4420. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4421. "forum": "https://discourse.laminas.dev",
  4422. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4423. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4424. "source": "https://github.com/laminas/laminas-stdlib"
  4425. },
  4426. "funding": [
  4427. {
  4428. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4429. "type": "community_bridge"
  4430. }
  4431. ],
  4432. "time": "2024-01-19T12:39:49+00:00"
  4433. },
  4434. {
  4435. "name": "markrogoyski/math-php",
  4436. "version": "v2.10.0",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/markrogoyski/math-php.git",
  4440. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4445. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "ext-json": "*",
  4450. "php": ">=7.2.0"
  4451. },
  4452. "require-dev": {
  4453. "php-coveralls/php-coveralls": "^2.0",
  4454. "php-parallel-lint/php-parallel-lint": "^1.2",
  4455. "phploc/phploc": "*",
  4456. "phpmd/phpmd": "^2.6",
  4457. "phpstan/phpstan": "^1.10",
  4458. "phpunit/phpunit": "^8.5",
  4459. "squizlabs/php_codesniffer": "3.*"
  4460. },
  4461. "type": "library",
  4462. "autoload": {
  4463. "psr-4": {
  4464. "MathPHP\\": "src/"
  4465. }
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "Mark Rogoyski",
  4474. "email": "mark@rogoyski.com",
  4475. "homepage": "https://github.com/markrogoyski",
  4476. "role": "Lead developer"
  4477. },
  4478. {
  4479. "name": "Kevin Nowaczyk",
  4480. "homepage": "https://github.com/Beakerboy",
  4481. "role": "Developer"
  4482. },
  4483. {
  4484. "name": "MathPHP Community of Contributors",
  4485. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4486. }
  4487. ],
  4488. "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",
  4489. "homepage": "https://github.com/markrogoyski/math-php/",
  4490. "keywords": [
  4491. "algebra",
  4492. "combinatorics",
  4493. "distributions",
  4494. "linear algebra",
  4495. "math",
  4496. "mathematics",
  4497. "matrix",
  4498. "numerical analysis",
  4499. "probability",
  4500. "regressions",
  4501. "statistics"
  4502. ],
  4503. "support": {
  4504. "issues": "https://github.com/markrogoyski/math-php/issues",
  4505. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4506. },
  4507. "time": "2024-04-17T00:09:51+00:00"
  4508. },
  4509. {
  4510. "name": "monolog/monolog",
  4511. "version": "3.6.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/Seldaek/monolog.git",
  4515. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4520. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "php": ">=8.1",
  4525. "psr/log": "^2.0 || ^3.0"
  4526. },
  4527. "provide": {
  4528. "psr/log-implementation": "3.0.0"
  4529. },
  4530. "require-dev": {
  4531. "aws/aws-sdk-php": "^3.0",
  4532. "doctrine/couchdb": "~1.0@dev",
  4533. "elasticsearch/elasticsearch": "^7 || ^8",
  4534. "ext-json": "*",
  4535. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4536. "guzzlehttp/guzzle": "^7.4.5",
  4537. "guzzlehttp/psr7": "^2.2",
  4538. "mongodb/mongodb": "^1.8",
  4539. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4540. "phpstan/phpstan": "^1.9",
  4541. "phpstan/phpstan-deprecation-rules": "^1.0",
  4542. "phpstan/phpstan-strict-rules": "^1.4",
  4543. "phpunit/phpunit": "^10.5.17",
  4544. "predis/predis": "^1.1 || ^2",
  4545. "ruflin/elastica": "^7",
  4546. "symfony/mailer": "^5.4 || ^6",
  4547. "symfony/mime": "^5.4 || ^6"
  4548. },
  4549. "suggest": {
  4550. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4551. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4552. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4553. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4554. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4555. "ext-mbstring": "Allow to work properly with unicode symbols",
  4556. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4557. "ext-openssl": "Required to send log messages using SSL",
  4558. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4559. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4560. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4561. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4562. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4563. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4564. },
  4565. "type": "library",
  4566. "extra": {
  4567. "branch-alias": {
  4568. "dev-main": "3.x-dev"
  4569. }
  4570. },
  4571. "autoload": {
  4572. "psr-4": {
  4573. "Monolog\\": "src/Monolog"
  4574. }
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "MIT"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Jordi Boggiano",
  4583. "email": "j.boggiano@seld.be",
  4584. "homepage": "https://seld.be"
  4585. }
  4586. ],
  4587. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4588. "homepage": "https://github.com/Seldaek/monolog",
  4589. "keywords": [
  4590. "log",
  4591. "logging",
  4592. "psr-3"
  4593. ],
  4594. "support": {
  4595. "issues": "https://github.com/Seldaek/monolog/issues",
  4596. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4597. },
  4598. "funding": [
  4599. {
  4600. "url": "https://github.com/Seldaek",
  4601. "type": "github"
  4602. },
  4603. {
  4604. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4605. "type": "tidelift"
  4606. }
  4607. ],
  4608. "time": "2024-04-12T21:02:21+00:00"
  4609. },
  4610. {
  4611. "name": "nesbot/carbon",
  4612. "version": "2.72.5",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/briannesbitt/Carbon.git",
  4616. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4621. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4622. "shasum": ""
  4623. },
  4624. "require": {
  4625. "carbonphp/carbon-doctrine-types": "*",
  4626. "ext-json": "*",
  4627. "php": "^7.1.8 || ^8.0",
  4628. "psr/clock": "^1.0",
  4629. "symfony/polyfill-mbstring": "^1.0",
  4630. "symfony/polyfill-php80": "^1.16",
  4631. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4632. },
  4633. "provide": {
  4634. "psr/clock-implementation": "1.0"
  4635. },
  4636. "require-dev": {
  4637. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4638. "doctrine/orm": "^2.7 || ^3.0",
  4639. "friendsofphp/php-cs-fixer": "^3.0",
  4640. "kylekatarnls/multi-tester": "^2.0",
  4641. "ondrejmirtes/better-reflection": "*",
  4642. "phpmd/phpmd": "^2.9",
  4643. "phpstan/extension-installer": "^1.0",
  4644. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4645. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4646. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4647. "squizlabs/php_codesniffer": "^3.4"
  4648. },
  4649. "bin": [
  4650. "bin/carbon"
  4651. ],
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "3.x-dev",
  4656. "dev-2.x": "2.x-dev"
  4657. },
  4658. "laravel": {
  4659. "providers": [
  4660. "Carbon\\Laravel\\ServiceProvider"
  4661. ]
  4662. },
  4663. "phpstan": {
  4664. "includes": [
  4665. "extension.neon"
  4666. ]
  4667. }
  4668. },
  4669. "autoload": {
  4670. "psr-4": {
  4671. "Carbon\\": "src/Carbon/"
  4672. }
  4673. },
  4674. "notification-url": "https://packagist.org/downloads/",
  4675. "license": [
  4676. "MIT"
  4677. ],
  4678. "authors": [
  4679. {
  4680. "name": "Brian Nesbitt",
  4681. "email": "brian@nesbot.com",
  4682. "homepage": "https://markido.com"
  4683. },
  4684. {
  4685. "name": "kylekatarnls",
  4686. "homepage": "https://github.com/kylekatarnls"
  4687. }
  4688. ],
  4689. "description": "An API extension for DateTime that supports 281 different languages.",
  4690. "homepage": "https://carbon.nesbot.com",
  4691. "keywords": [
  4692. "date",
  4693. "datetime",
  4694. "time"
  4695. ],
  4696. "support": {
  4697. "docs": "https://carbon.nesbot.com/docs",
  4698. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4699. "source": "https://github.com/briannesbitt/Carbon"
  4700. },
  4701. "funding": [
  4702. {
  4703. "url": "https://github.com/sponsors/kylekatarnls",
  4704. "type": "github"
  4705. },
  4706. {
  4707. "url": "https://opencollective.com/Carbon#sponsor",
  4708. "type": "opencollective"
  4709. },
  4710. {
  4711. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4712. "type": "tidelift"
  4713. }
  4714. ],
  4715. "time": "2024-06-03T19:18:41+00:00"
  4716. },
  4717. {
  4718. "name": "nikic/fast-route",
  4719. "version": "v1.3.0",
  4720. "source": {
  4721. "type": "git",
  4722. "url": "https://github.com/nikic/FastRoute.git",
  4723. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4724. },
  4725. "dist": {
  4726. "type": "zip",
  4727. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4728. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4729. "shasum": ""
  4730. },
  4731. "require": {
  4732. "php": ">=5.4.0"
  4733. },
  4734. "require-dev": {
  4735. "phpunit/phpunit": "^4.8.35|~5.7"
  4736. },
  4737. "type": "library",
  4738. "autoload": {
  4739. "files": [
  4740. "src/functions.php"
  4741. ],
  4742. "psr-4": {
  4743. "FastRoute\\": "src/"
  4744. }
  4745. },
  4746. "notification-url": "https://packagist.org/downloads/",
  4747. "license": [
  4748. "BSD-3-Clause"
  4749. ],
  4750. "authors": [
  4751. {
  4752. "name": "Nikita Popov",
  4753. "email": "nikic@php.net"
  4754. }
  4755. ],
  4756. "description": "Fast request router for PHP",
  4757. "keywords": [
  4758. "router",
  4759. "routing"
  4760. ],
  4761. "support": {
  4762. "issues": "https://github.com/nikic/FastRoute/issues",
  4763. "source": "https://github.com/nikic/FastRoute/tree/master"
  4764. },
  4765. "time": "2018-02-13T20:26:39+00:00"
  4766. },
  4767. {
  4768. "name": "nikic/php-parser",
  4769. "version": "v4.19.1",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/nikic/PHP-Parser.git",
  4773. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  4778. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  4779. "shasum": ""
  4780. },
  4781. "require": {
  4782. "ext-tokenizer": "*",
  4783. "php": ">=7.1"
  4784. },
  4785. "require-dev": {
  4786. "ircmaxell/php-yacc": "^0.0.7",
  4787. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4788. },
  4789. "bin": [
  4790. "bin/php-parse"
  4791. ],
  4792. "type": "library",
  4793. "extra": {
  4794. "branch-alias": {
  4795. "dev-master": "4.9-dev"
  4796. }
  4797. },
  4798. "autoload": {
  4799. "psr-4": {
  4800. "PhpParser\\": "lib/PhpParser"
  4801. }
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "BSD-3-Clause"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "Nikita Popov"
  4810. }
  4811. ],
  4812. "description": "A PHP parser written in PHP",
  4813. "keywords": [
  4814. "parser",
  4815. "php"
  4816. ],
  4817. "support": {
  4818. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4819. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  4820. },
  4821. "time": "2024-03-17T08:10:35+00:00"
  4822. },
  4823. {
  4824. "name": "php-di/phpdoc-reader",
  4825. "version": "2.2.1",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4829. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4834. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4835. "shasum": ""
  4836. },
  4837. "require": {
  4838. "php": ">=7.2.0"
  4839. },
  4840. "require-dev": {
  4841. "mnapoli/hard-mode": "~0.3.0",
  4842. "phpunit/phpunit": "^8.5|^9.0"
  4843. },
  4844. "type": "library",
  4845. "autoload": {
  4846. "psr-4": {
  4847. "PhpDocReader\\": "src/PhpDocReader"
  4848. }
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4855. "keywords": [
  4856. "phpdoc",
  4857. "reflection"
  4858. ],
  4859. "support": {
  4860. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4861. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4862. },
  4863. "time": "2020-10-12T12:39:22+00:00"
  4864. },
  4865. {
  4866. "name": "phpoption/phpoption",
  4867. "version": "1.9.2",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://github.com/schmittjoh/php-option.git",
  4871. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4876. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4877. "shasum": ""
  4878. },
  4879. "require": {
  4880. "php": "^7.2.5 || ^8.0"
  4881. },
  4882. "require-dev": {
  4883. "bamarni/composer-bin-plugin": "^1.8.2",
  4884. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4885. },
  4886. "type": "library",
  4887. "extra": {
  4888. "bamarni-bin": {
  4889. "bin-links": true,
  4890. "forward-command": true
  4891. },
  4892. "branch-alias": {
  4893. "dev-master": "1.9-dev"
  4894. }
  4895. },
  4896. "autoload": {
  4897. "psr-4": {
  4898. "PhpOption\\": "src/PhpOption/"
  4899. }
  4900. },
  4901. "notification-url": "https://packagist.org/downloads/",
  4902. "license": [
  4903. "Apache-2.0"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Johannes M. Schmitt",
  4908. "email": "schmittjoh@gmail.com",
  4909. "homepage": "https://github.com/schmittjoh"
  4910. },
  4911. {
  4912. "name": "Graham Campbell",
  4913. "email": "hello@gjcampbell.co.uk",
  4914. "homepage": "https://github.com/GrahamCampbell"
  4915. }
  4916. ],
  4917. "description": "Option Type for PHP",
  4918. "keywords": [
  4919. "language",
  4920. "option",
  4921. "php",
  4922. "type"
  4923. ],
  4924. "support": {
  4925. "issues": "https://github.com/schmittjoh/php-option/issues",
  4926. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://github.com/GrahamCampbell",
  4931. "type": "github"
  4932. },
  4933. {
  4934. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4935. "type": "tidelift"
  4936. }
  4937. ],
  4938. "time": "2023-11-12T21:59:55+00:00"
  4939. },
  4940. {
  4941. "name": "psr/cache",
  4942. "version": "3.0.0",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/php-fig/cache.git",
  4946. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4951. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4952. "shasum": ""
  4953. },
  4954. "require": {
  4955. "php": ">=8.0.0"
  4956. },
  4957. "type": "library",
  4958. "extra": {
  4959. "branch-alias": {
  4960. "dev-master": "1.0.x-dev"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Psr\\Cache\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "PHP-FIG",
  4975. "homepage": "https://www.php-fig.org/"
  4976. }
  4977. ],
  4978. "description": "Common interface for caching libraries",
  4979. "keywords": [
  4980. "cache",
  4981. "psr",
  4982. "psr-6"
  4983. ],
  4984. "support": {
  4985. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4986. },
  4987. "time": "2021-02-03T23:26:27+00:00"
  4988. },
  4989. {
  4990. "name": "psr/clock",
  4991. "version": "1.0.0",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/php-fig/clock.git",
  4995. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5000. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5001. "shasum": ""
  5002. },
  5003. "require": {
  5004. "php": "^7.0 || ^8.0"
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Psr\\Clock\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "PHP-FIG",
  5019. "homepage": "https://www.php-fig.org/"
  5020. }
  5021. ],
  5022. "description": "Common interface for reading the clock.",
  5023. "homepage": "https://github.com/php-fig/clock",
  5024. "keywords": [
  5025. "clock",
  5026. "now",
  5027. "psr",
  5028. "psr-20",
  5029. "time"
  5030. ],
  5031. "support": {
  5032. "issues": "https://github.com/php-fig/clock/issues",
  5033. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5034. },
  5035. "time": "2022-11-25T14:36:26+00:00"
  5036. },
  5037. {
  5038. "name": "psr/container",
  5039. "version": "2.0.2",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://github.com/php-fig/container.git",
  5043. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5048. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5049. "shasum": ""
  5050. },
  5051. "require": {
  5052. "php": ">=7.4.0"
  5053. },
  5054. "type": "library",
  5055. "extra": {
  5056. "branch-alias": {
  5057. "dev-master": "2.0.x-dev"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "psr-4": {
  5062. "Psr\\Container\\": "src/"
  5063. }
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "MIT"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "PHP-FIG",
  5072. "homepage": "https://www.php-fig.org/"
  5073. }
  5074. ],
  5075. "description": "Common Container Interface (PHP FIG PSR-11)",
  5076. "homepage": "https://github.com/php-fig/container",
  5077. "keywords": [
  5078. "PSR-11",
  5079. "container",
  5080. "container-interface",
  5081. "container-interop",
  5082. "psr"
  5083. ],
  5084. "support": {
  5085. "issues": "https://github.com/php-fig/container/issues",
  5086. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5087. },
  5088. "time": "2021-11-05T16:47:00+00:00"
  5089. },
  5090. {
  5091. "name": "psr/event-dispatcher",
  5092. "version": "1.0.0",
  5093. "source": {
  5094. "type": "git",
  5095. "url": "https://github.com/php-fig/event-dispatcher.git",
  5096. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5097. },
  5098. "dist": {
  5099. "type": "zip",
  5100. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5101. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5102. "shasum": ""
  5103. },
  5104. "require": {
  5105. "php": ">=7.2.0"
  5106. },
  5107. "type": "library",
  5108. "extra": {
  5109. "branch-alias": {
  5110. "dev-master": "1.0.x-dev"
  5111. }
  5112. },
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Psr\\EventDispatcher\\": "src/"
  5116. }
  5117. },
  5118. "notification-url": "https://packagist.org/downloads/",
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "PHP-FIG",
  5125. "homepage": "http://www.php-fig.org/"
  5126. }
  5127. ],
  5128. "description": "Standard interfaces for event handling.",
  5129. "keywords": [
  5130. "events",
  5131. "psr",
  5132. "psr-14"
  5133. ],
  5134. "support": {
  5135. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5136. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5137. },
  5138. "time": "2019-01-08T18:20:26+00:00"
  5139. },
  5140. {
  5141. "name": "psr/http-client",
  5142. "version": "1.0.3",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/php-fig/http-client.git",
  5146. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5151. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5152. "shasum": ""
  5153. },
  5154. "require": {
  5155. "php": "^7.0 || ^8.0",
  5156. "psr/http-message": "^1.0 || ^2.0"
  5157. },
  5158. "type": "library",
  5159. "extra": {
  5160. "branch-alias": {
  5161. "dev-master": "1.0.x-dev"
  5162. }
  5163. },
  5164. "autoload": {
  5165. "psr-4": {
  5166. "Psr\\Http\\Client\\": "src/"
  5167. }
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "PHP-FIG",
  5176. "homepage": "https://www.php-fig.org/"
  5177. }
  5178. ],
  5179. "description": "Common interface for HTTP clients",
  5180. "homepage": "https://github.com/php-fig/http-client",
  5181. "keywords": [
  5182. "http",
  5183. "http-client",
  5184. "psr",
  5185. "psr-18"
  5186. ],
  5187. "support": {
  5188. "source": "https://github.com/php-fig/http-client"
  5189. },
  5190. "time": "2023-09-23T14:17:50+00:00"
  5191. },
  5192. {
  5193. "name": "psr/http-factory",
  5194. "version": "1.1.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/php-fig/http-factory.git",
  5198. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5203. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": ">=7.1",
  5208. "psr/http-message": "^1.0 || ^2.0"
  5209. },
  5210. "type": "library",
  5211. "extra": {
  5212. "branch-alias": {
  5213. "dev-master": "1.0.x-dev"
  5214. }
  5215. },
  5216. "autoload": {
  5217. "psr-4": {
  5218. "Psr\\Http\\Message\\": "src/"
  5219. }
  5220. },
  5221. "notification-url": "https://packagist.org/downloads/",
  5222. "license": [
  5223. "MIT"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "PHP-FIG",
  5228. "homepage": "https://www.php-fig.org/"
  5229. }
  5230. ],
  5231. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5232. "keywords": [
  5233. "factory",
  5234. "http",
  5235. "message",
  5236. "psr",
  5237. "psr-17",
  5238. "psr-7",
  5239. "request",
  5240. "response"
  5241. ],
  5242. "support": {
  5243. "source": "https://github.com/php-fig/http-factory"
  5244. },
  5245. "time": "2024-04-15T12:06:14+00:00"
  5246. },
  5247. {
  5248. "name": "psr/http-message",
  5249. "version": "2.0",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/php-fig/http-message.git",
  5253. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5258. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5259. "shasum": ""
  5260. },
  5261. "require": {
  5262. "php": "^7.2 || ^8.0"
  5263. },
  5264. "type": "library",
  5265. "extra": {
  5266. "branch-alias": {
  5267. "dev-master": "2.0.x-dev"
  5268. }
  5269. },
  5270. "autoload": {
  5271. "psr-4": {
  5272. "Psr\\Http\\Message\\": "src/"
  5273. }
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "PHP-FIG",
  5282. "homepage": "https://www.php-fig.org/"
  5283. }
  5284. ],
  5285. "description": "Common interface for HTTP messages",
  5286. "homepage": "https://github.com/php-fig/http-message",
  5287. "keywords": [
  5288. "http",
  5289. "http-message",
  5290. "psr",
  5291. "psr-7",
  5292. "request",
  5293. "response"
  5294. ],
  5295. "support": {
  5296. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5297. },
  5298. "time": "2023-04-04T09:54:51+00:00"
  5299. },
  5300. {
  5301. "name": "psr/http-server-handler",
  5302. "version": "1.0.2",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/php-fig/http-server-handler.git",
  5306. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5311. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5312. "shasum": ""
  5313. },
  5314. "require": {
  5315. "php": ">=7.0",
  5316. "psr/http-message": "^1.0 || ^2.0"
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "branch-alias": {
  5321. "dev-master": "1.0.x-dev"
  5322. }
  5323. },
  5324. "autoload": {
  5325. "psr-4": {
  5326. "Psr\\Http\\Server\\": "src/"
  5327. }
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "PHP-FIG",
  5336. "homepage": "https://www.php-fig.org/"
  5337. }
  5338. ],
  5339. "description": "Common interface for HTTP server-side request handler",
  5340. "keywords": [
  5341. "handler",
  5342. "http",
  5343. "http-interop",
  5344. "psr",
  5345. "psr-15",
  5346. "psr-7",
  5347. "request",
  5348. "response",
  5349. "server"
  5350. ],
  5351. "support": {
  5352. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5353. },
  5354. "time": "2023-04-10T20:06:20+00:00"
  5355. },
  5356. {
  5357. "name": "psr/http-server-middleware",
  5358. "version": "1.0.2",
  5359. "source": {
  5360. "type": "git",
  5361. "url": "https://github.com/php-fig/http-server-middleware.git",
  5362. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5363. },
  5364. "dist": {
  5365. "type": "zip",
  5366. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5367. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5368. "shasum": ""
  5369. },
  5370. "require": {
  5371. "php": ">=7.0",
  5372. "psr/http-message": "^1.0 || ^2.0",
  5373. "psr/http-server-handler": "^1.0"
  5374. },
  5375. "type": "library",
  5376. "extra": {
  5377. "branch-alias": {
  5378. "dev-master": "1.0.x-dev"
  5379. }
  5380. },
  5381. "autoload": {
  5382. "psr-4": {
  5383. "Psr\\Http\\Server\\": "src/"
  5384. }
  5385. },
  5386. "notification-url": "https://packagist.org/downloads/",
  5387. "license": [
  5388. "MIT"
  5389. ],
  5390. "authors": [
  5391. {
  5392. "name": "PHP-FIG",
  5393. "homepage": "https://www.php-fig.org/"
  5394. }
  5395. ],
  5396. "description": "Common interface for HTTP server-side middleware",
  5397. "keywords": [
  5398. "http",
  5399. "http-interop",
  5400. "middleware",
  5401. "psr",
  5402. "psr-15",
  5403. "psr-7",
  5404. "request",
  5405. "response"
  5406. ],
  5407. "support": {
  5408. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5409. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5410. },
  5411. "time": "2023-04-11T06:14:47+00:00"
  5412. },
  5413. {
  5414. "name": "psr/log",
  5415. "version": "3.0.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/php-fig/log.git",
  5419. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5424. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5425. "shasum": ""
  5426. },
  5427. "require": {
  5428. "php": ">=8.0.0"
  5429. },
  5430. "type": "library",
  5431. "extra": {
  5432. "branch-alias": {
  5433. "dev-master": "3.x-dev"
  5434. }
  5435. },
  5436. "autoload": {
  5437. "psr-4": {
  5438. "Psr\\Log\\": "src"
  5439. }
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "PHP-FIG",
  5448. "homepage": "https://www.php-fig.org/"
  5449. }
  5450. ],
  5451. "description": "Common interface for logging libraries",
  5452. "homepage": "https://github.com/php-fig/log",
  5453. "keywords": [
  5454. "log",
  5455. "psr",
  5456. "psr-3"
  5457. ],
  5458. "support": {
  5459. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5460. },
  5461. "time": "2021-07-14T16:46:02+00:00"
  5462. },
  5463. {
  5464. "name": "psr/simple-cache",
  5465. "version": "3.0.0",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/php-fig/simple-cache.git",
  5469. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5474. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5475. "shasum": ""
  5476. },
  5477. "require": {
  5478. "php": ">=8.0.0"
  5479. },
  5480. "type": "library",
  5481. "extra": {
  5482. "branch-alias": {
  5483. "dev-master": "3.0.x-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Psr\\SimpleCache\\": "src/"
  5489. }
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "PHP-FIG",
  5498. "homepage": "https://www.php-fig.org/"
  5499. }
  5500. ],
  5501. "description": "Common interfaces for simple caching",
  5502. "keywords": [
  5503. "cache",
  5504. "caching",
  5505. "psr",
  5506. "psr-16",
  5507. "simple-cache"
  5508. ],
  5509. "support": {
  5510. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5511. },
  5512. "time": "2021-10-29T13:26:27+00:00"
  5513. },
  5514. {
  5515. "name": "ralouphie/getallheaders",
  5516. "version": "3.0.3",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/ralouphie/getallheaders.git",
  5520. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5525. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5526. "shasum": ""
  5527. },
  5528. "require": {
  5529. "php": ">=5.6"
  5530. },
  5531. "require-dev": {
  5532. "php-coveralls/php-coveralls": "^2.1",
  5533. "phpunit/phpunit": "^5 || ^6.5"
  5534. },
  5535. "type": "library",
  5536. "autoload": {
  5537. "files": [
  5538. "src/getallheaders.php"
  5539. ]
  5540. },
  5541. "notification-url": "https://packagist.org/downloads/",
  5542. "license": [
  5543. "MIT"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Ralph Khattar",
  5548. "email": "ralph.khattar@gmail.com"
  5549. }
  5550. ],
  5551. "description": "A polyfill for getallheaders.",
  5552. "support": {
  5553. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5554. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5555. },
  5556. "time": "2019-03-08T08:55:37+00:00"
  5557. },
  5558. {
  5559. "name": "swow/psr7-plus",
  5560. "version": "v1.1.2",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/swow/psr7-plus.git",
  5564. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5569. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5570. "shasum": ""
  5571. },
  5572. "require": {
  5573. "php": ">=8.0",
  5574. "psr/http-client": "^1.0",
  5575. "psr/http-factory": "^1.0",
  5576. "psr/http-message": "^1.1|^2.0"
  5577. },
  5578. "type": "library",
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Swow\\Psr7\\Message\\": "src/Message/"
  5582. }
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "Apache-2.0"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "twose",
  5591. "email": "twosee@php.net"
  5592. }
  5593. ],
  5594. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5595. "keywords": [
  5596. "http",
  5597. "psr17",
  5598. "psr7",
  5599. "swow",
  5600. "websocket"
  5601. ],
  5602. "support": {
  5603. "issues": "https://github.com/swow/swow",
  5604. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5605. },
  5606. "time": "2023-06-15T09:18:11+00:00"
  5607. },
  5608. {
  5609. "name": "symfony/console",
  5610. "version": "v6.4.8",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/symfony/console.git",
  5614. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5619. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=8.1",
  5624. "symfony/deprecation-contracts": "^2.5|^3",
  5625. "symfony/polyfill-mbstring": "~1.0",
  5626. "symfony/service-contracts": "^2.5|^3",
  5627. "symfony/string": "^5.4|^6.0|^7.0"
  5628. },
  5629. "conflict": {
  5630. "symfony/dependency-injection": "<5.4",
  5631. "symfony/dotenv": "<5.4",
  5632. "symfony/event-dispatcher": "<5.4",
  5633. "symfony/lock": "<5.4",
  5634. "symfony/process": "<5.4"
  5635. },
  5636. "provide": {
  5637. "psr/log-implementation": "1.0|2.0|3.0"
  5638. },
  5639. "require-dev": {
  5640. "psr/log": "^1|^2|^3",
  5641. "symfony/config": "^5.4|^6.0|^7.0",
  5642. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5643. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5644. "symfony/http-foundation": "^6.4|^7.0",
  5645. "symfony/http-kernel": "^6.4|^7.0",
  5646. "symfony/lock": "^5.4|^6.0|^7.0",
  5647. "symfony/messenger": "^5.4|^6.0|^7.0",
  5648. "symfony/process": "^5.4|^6.0|^7.0",
  5649. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5650. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5651. },
  5652. "type": "library",
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Symfony\\Component\\Console\\": ""
  5656. },
  5657. "exclude-from-classmap": [
  5658. "/Tests/"
  5659. ]
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Fabien Potencier",
  5668. "email": "fabien@symfony.com"
  5669. },
  5670. {
  5671. "name": "Symfony Community",
  5672. "homepage": "https://symfony.com/contributors"
  5673. }
  5674. ],
  5675. "description": "Eases the creation of beautiful and testable command line interfaces",
  5676. "homepage": "https://symfony.com",
  5677. "keywords": [
  5678. "cli",
  5679. "command-line",
  5680. "console",
  5681. "terminal"
  5682. ],
  5683. "support": {
  5684. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5685. },
  5686. "funding": [
  5687. {
  5688. "url": "https://symfony.com/sponsor",
  5689. "type": "custom"
  5690. },
  5691. {
  5692. "url": "https://github.com/fabpot",
  5693. "type": "github"
  5694. },
  5695. {
  5696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5697. "type": "tidelift"
  5698. }
  5699. ],
  5700. "time": "2024-05-31T14:49:08+00:00"
  5701. },
  5702. {
  5703. "name": "symfony/deprecation-contracts",
  5704. "version": "v3.5.0",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/symfony/deprecation-contracts.git",
  5708. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5713. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": ">=8.1"
  5718. },
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-main": "3.5-dev"
  5723. },
  5724. "thanks": {
  5725. "name": "symfony/contracts",
  5726. "url": "https://github.com/symfony/contracts"
  5727. }
  5728. },
  5729. "autoload": {
  5730. "files": [
  5731. "function.php"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Nicolas Grekas",
  5741. "email": "p@tchwork.com"
  5742. },
  5743. {
  5744. "name": "Symfony Community",
  5745. "homepage": "https://symfony.com/contributors"
  5746. }
  5747. ],
  5748. "description": "A generic function and convention to trigger deprecation notices",
  5749. "homepage": "https://symfony.com",
  5750. "support": {
  5751. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5752. },
  5753. "funding": [
  5754. {
  5755. "url": "https://symfony.com/sponsor",
  5756. "type": "custom"
  5757. },
  5758. {
  5759. "url": "https://github.com/fabpot",
  5760. "type": "github"
  5761. },
  5762. {
  5763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5764. "type": "tidelift"
  5765. }
  5766. ],
  5767. "time": "2024-04-18T09:32:20+00:00"
  5768. },
  5769. {
  5770. "name": "symfony/finder",
  5771. "version": "v6.4.8",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/symfony/finder.git",
  5775. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  5780. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "php": ">=8.1"
  5785. },
  5786. "require-dev": {
  5787. "symfony/filesystem": "^6.0|^7.0"
  5788. },
  5789. "type": "library",
  5790. "autoload": {
  5791. "psr-4": {
  5792. "Symfony\\Component\\Finder\\": ""
  5793. },
  5794. "exclude-from-classmap": [
  5795. "/Tests/"
  5796. ]
  5797. },
  5798. "notification-url": "https://packagist.org/downloads/",
  5799. "license": [
  5800. "MIT"
  5801. ],
  5802. "authors": [
  5803. {
  5804. "name": "Fabien Potencier",
  5805. "email": "fabien@symfony.com"
  5806. },
  5807. {
  5808. "name": "Symfony Community",
  5809. "homepage": "https://symfony.com/contributors"
  5810. }
  5811. ],
  5812. "description": "Finds files and directories via an intuitive fluent interface",
  5813. "homepage": "https://symfony.com",
  5814. "support": {
  5815. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  5816. },
  5817. "funding": [
  5818. {
  5819. "url": "https://symfony.com/sponsor",
  5820. "type": "custom"
  5821. },
  5822. {
  5823. "url": "https://github.com/fabpot",
  5824. "type": "github"
  5825. },
  5826. {
  5827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5828. "type": "tidelift"
  5829. }
  5830. ],
  5831. "time": "2024-05-31T14:49:08+00:00"
  5832. },
  5833. {
  5834. "name": "symfony/polyfill-ctype",
  5835. "version": "v1.29.0",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://github.com/symfony/polyfill-ctype.git",
  5839. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5840. },
  5841. "dist": {
  5842. "type": "zip",
  5843. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5844. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5845. "shasum": ""
  5846. },
  5847. "require": {
  5848. "php": ">=7.1"
  5849. },
  5850. "provide": {
  5851. "ext-ctype": "*"
  5852. },
  5853. "suggest": {
  5854. "ext-ctype": "For best performance"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "thanks": {
  5859. "name": "symfony/polyfill",
  5860. "url": "https://github.com/symfony/polyfill"
  5861. }
  5862. },
  5863. "autoload": {
  5864. "files": [
  5865. "bootstrap.php"
  5866. ],
  5867. "psr-4": {
  5868. "Symfony\\Polyfill\\Ctype\\": ""
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "MIT"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Gert de Pagter",
  5878. "email": "BackEndTea@gmail.com"
  5879. },
  5880. {
  5881. "name": "Symfony Community",
  5882. "homepage": "https://symfony.com/contributors"
  5883. }
  5884. ],
  5885. "description": "Symfony polyfill for ctype functions",
  5886. "homepage": "https://symfony.com",
  5887. "keywords": [
  5888. "compatibility",
  5889. "ctype",
  5890. "polyfill",
  5891. "portable"
  5892. ],
  5893. "support": {
  5894. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5895. },
  5896. "funding": [
  5897. {
  5898. "url": "https://symfony.com/sponsor",
  5899. "type": "custom"
  5900. },
  5901. {
  5902. "url": "https://github.com/fabpot",
  5903. "type": "github"
  5904. },
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2024-01-29T20:11:03+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/polyfill-intl-grapheme",
  5914. "version": "v1.29.0",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5918. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5923. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "php": ">=7.1"
  5928. },
  5929. "suggest": {
  5930. "ext-intl": "For best performance"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "thanks": {
  5935. "name": "symfony/polyfill",
  5936. "url": "https://github.com/symfony/polyfill"
  5937. }
  5938. },
  5939. "autoload": {
  5940. "files": [
  5941. "bootstrap.php"
  5942. ],
  5943. "psr-4": {
  5944. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5945. }
  5946. },
  5947. "notification-url": "https://packagist.org/downloads/",
  5948. "license": [
  5949. "MIT"
  5950. ],
  5951. "authors": [
  5952. {
  5953. "name": "Nicolas Grekas",
  5954. "email": "p@tchwork.com"
  5955. },
  5956. {
  5957. "name": "Symfony Community",
  5958. "homepage": "https://symfony.com/contributors"
  5959. }
  5960. ],
  5961. "description": "Symfony polyfill for intl's grapheme_* functions",
  5962. "homepage": "https://symfony.com",
  5963. "keywords": [
  5964. "compatibility",
  5965. "grapheme",
  5966. "intl",
  5967. "polyfill",
  5968. "portable",
  5969. "shim"
  5970. ],
  5971. "support": {
  5972. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5973. },
  5974. "funding": [
  5975. {
  5976. "url": "https://symfony.com/sponsor",
  5977. "type": "custom"
  5978. },
  5979. {
  5980. "url": "https://github.com/fabpot",
  5981. "type": "github"
  5982. },
  5983. {
  5984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5985. "type": "tidelift"
  5986. }
  5987. ],
  5988. "time": "2024-01-29T20:11:03+00:00"
  5989. },
  5990. {
  5991. "name": "symfony/polyfill-intl-normalizer",
  5992. "version": "v1.29.0",
  5993. "source": {
  5994. "type": "git",
  5995. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5996. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5997. },
  5998. "dist": {
  5999. "type": "zip",
  6000. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6001. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6002. "shasum": ""
  6003. },
  6004. "require": {
  6005. "php": ">=7.1"
  6006. },
  6007. "suggest": {
  6008. "ext-intl": "For best performance"
  6009. },
  6010. "type": "library",
  6011. "extra": {
  6012. "thanks": {
  6013. "name": "symfony/polyfill",
  6014. "url": "https://github.com/symfony/polyfill"
  6015. }
  6016. },
  6017. "autoload": {
  6018. "files": [
  6019. "bootstrap.php"
  6020. ],
  6021. "psr-4": {
  6022. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6023. },
  6024. "classmap": [
  6025. "Resources/stubs"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Nicolas Grekas",
  6035. "email": "p@tchwork.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6043. "homepage": "https://symfony.com",
  6044. "keywords": [
  6045. "compatibility",
  6046. "intl",
  6047. "normalizer",
  6048. "polyfill",
  6049. "portable",
  6050. "shim"
  6051. ],
  6052. "support": {
  6053. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2024-01-29T20:11:03+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/polyfill-mbstring",
  6073. "version": "v1.29.0",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6077. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6082. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=7.1"
  6087. },
  6088. "provide": {
  6089. "ext-mbstring": "*"
  6090. },
  6091. "suggest": {
  6092. "ext-mbstring": "For best performance"
  6093. },
  6094. "type": "library",
  6095. "extra": {
  6096. "thanks": {
  6097. "name": "symfony/polyfill",
  6098. "url": "https://github.com/symfony/polyfill"
  6099. }
  6100. },
  6101. "autoload": {
  6102. "files": [
  6103. "bootstrap.php"
  6104. ],
  6105. "psr-4": {
  6106. "Symfony\\Polyfill\\Mbstring\\": ""
  6107. }
  6108. },
  6109. "notification-url": "https://packagist.org/downloads/",
  6110. "license": [
  6111. "MIT"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "Nicolas Grekas",
  6116. "email": "p@tchwork.com"
  6117. },
  6118. {
  6119. "name": "Symfony Community",
  6120. "homepage": "https://symfony.com/contributors"
  6121. }
  6122. ],
  6123. "description": "Symfony polyfill for the Mbstring extension",
  6124. "homepage": "https://symfony.com",
  6125. "keywords": [
  6126. "compatibility",
  6127. "mbstring",
  6128. "polyfill",
  6129. "portable",
  6130. "shim"
  6131. ],
  6132. "support": {
  6133. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6134. },
  6135. "funding": [
  6136. {
  6137. "url": "https://symfony.com/sponsor",
  6138. "type": "custom"
  6139. },
  6140. {
  6141. "url": "https://github.com/fabpot",
  6142. "type": "github"
  6143. },
  6144. {
  6145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6146. "type": "tidelift"
  6147. }
  6148. ],
  6149. "time": "2024-01-29T20:11:03+00:00"
  6150. },
  6151. {
  6152. "name": "symfony/polyfill-php80",
  6153. "version": "v1.29.0",
  6154. "source": {
  6155. "type": "git",
  6156. "url": "https://github.com/symfony/polyfill-php80.git",
  6157. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6158. },
  6159. "dist": {
  6160. "type": "zip",
  6161. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6162. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6163. "shasum": ""
  6164. },
  6165. "require": {
  6166. "php": ">=7.1"
  6167. },
  6168. "type": "library",
  6169. "extra": {
  6170. "thanks": {
  6171. "name": "symfony/polyfill",
  6172. "url": "https://github.com/symfony/polyfill"
  6173. }
  6174. },
  6175. "autoload": {
  6176. "files": [
  6177. "bootstrap.php"
  6178. ],
  6179. "psr-4": {
  6180. "Symfony\\Polyfill\\Php80\\": ""
  6181. },
  6182. "classmap": [
  6183. "Resources/stubs"
  6184. ]
  6185. },
  6186. "notification-url": "https://packagist.org/downloads/",
  6187. "license": [
  6188. "MIT"
  6189. ],
  6190. "authors": [
  6191. {
  6192. "name": "Ion Bazan",
  6193. "email": "ion.bazan@gmail.com"
  6194. },
  6195. {
  6196. "name": "Nicolas Grekas",
  6197. "email": "p@tchwork.com"
  6198. },
  6199. {
  6200. "name": "Symfony Community",
  6201. "homepage": "https://symfony.com/contributors"
  6202. }
  6203. ],
  6204. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6205. "homepage": "https://symfony.com",
  6206. "keywords": [
  6207. "compatibility",
  6208. "polyfill",
  6209. "portable",
  6210. "shim"
  6211. ],
  6212. "support": {
  6213. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6214. },
  6215. "funding": [
  6216. {
  6217. "url": "https://symfony.com/sponsor",
  6218. "type": "custom"
  6219. },
  6220. {
  6221. "url": "https://github.com/fabpot",
  6222. "type": "github"
  6223. },
  6224. {
  6225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6226. "type": "tidelift"
  6227. }
  6228. ],
  6229. "time": "2024-01-29T20:11:03+00:00"
  6230. },
  6231. {
  6232. "name": "symfony/service-contracts",
  6233. "version": "v3.5.0",
  6234. "source": {
  6235. "type": "git",
  6236. "url": "https://github.com/symfony/service-contracts.git",
  6237. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6238. },
  6239. "dist": {
  6240. "type": "zip",
  6241. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6242. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6243. "shasum": ""
  6244. },
  6245. "require": {
  6246. "php": ">=8.1",
  6247. "psr/container": "^1.1|^2.0",
  6248. "symfony/deprecation-contracts": "^2.5|^3"
  6249. },
  6250. "conflict": {
  6251. "ext-psr": "<1.1|>=2"
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "branch-alias": {
  6256. "dev-main": "3.5-dev"
  6257. },
  6258. "thanks": {
  6259. "name": "symfony/contracts",
  6260. "url": "https://github.com/symfony/contracts"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Symfony\\Contracts\\Service\\": ""
  6266. },
  6267. "exclude-from-classmap": [
  6268. "/Test/"
  6269. ]
  6270. },
  6271. "notification-url": "https://packagist.org/downloads/",
  6272. "license": [
  6273. "MIT"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Nicolas Grekas",
  6278. "email": "p@tchwork.com"
  6279. },
  6280. {
  6281. "name": "Symfony Community",
  6282. "homepage": "https://symfony.com/contributors"
  6283. }
  6284. ],
  6285. "description": "Generic abstractions related to writing services",
  6286. "homepage": "https://symfony.com",
  6287. "keywords": [
  6288. "abstractions",
  6289. "contracts",
  6290. "decoupling",
  6291. "interfaces",
  6292. "interoperability",
  6293. "standards"
  6294. ],
  6295. "support": {
  6296. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6297. },
  6298. "funding": [
  6299. {
  6300. "url": "https://symfony.com/sponsor",
  6301. "type": "custom"
  6302. },
  6303. {
  6304. "url": "https://github.com/fabpot",
  6305. "type": "github"
  6306. },
  6307. {
  6308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6309. "type": "tidelift"
  6310. }
  6311. ],
  6312. "time": "2024-04-18T09:32:20+00:00"
  6313. },
  6314. {
  6315. "name": "symfony/string",
  6316. "version": "v6.4.8",
  6317. "source": {
  6318. "type": "git",
  6319. "url": "https://github.com/symfony/string.git",
  6320. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6321. },
  6322. "dist": {
  6323. "type": "zip",
  6324. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6325. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6326. "shasum": ""
  6327. },
  6328. "require": {
  6329. "php": ">=8.1",
  6330. "symfony/polyfill-ctype": "~1.8",
  6331. "symfony/polyfill-intl-grapheme": "~1.0",
  6332. "symfony/polyfill-intl-normalizer": "~1.0",
  6333. "symfony/polyfill-mbstring": "~1.0"
  6334. },
  6335. "conflict": {
  6336. "symfony/translation-contracts": "<2.5"
  6337. },
  6338. "require-dev": {
  6339. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6340. "symfony/http-client": "^5.4|^6.0|^7.0",
  6341. "symfony/intl": "^6.2|^7.0",
  6342. "symfony/translation-contracts": "^2.5|^3.0",
  6343. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6344. },
  6345. "type": "library",
  6346. "autoload": {
  6347. "files": [
  6348. "Resources/functions.php"
  6349. ],
  6350. "psr-4": {
  6351. "Symfony\\Component\\String\\": ""
  6352. },
  6353. "exclude-from-classmap": [
  6354. "/Tests/"
  6355. ]
  6356. },
  6357. "notification-url": "https://packagist.org/downloads/",
  6358. "license": [
  6359. "MIT"
  6360. ],
  6361. "authors": [
  6362. {
  6363. "name": "Nicolas Grekas",
  6364. "email": "p@tchwork.com"
  6365. },
  6366. {
  6367. "name": "Symfony Community",
  6368. "homepage": "https://symfony.com/contributors"
  6369. }
  6370. ],
  6371. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6372. "homepage": "https://symfony.com",
  6373. "keywords": [
  6374. "grapheme",
  6375. "i18n",
  6376. "string",
  6377. "unicode",
  6378. "utf-8",
  6379. "utf8"
  6380. ],
  6381. "support": {
  6382. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6383. },
  6384. "funding": [
  6385. {
  6386. "url": "https://symfony.com/sponsor",
  6387. "type": "custom"
  6388. },
  6389. {
  6390. "url": "https://github.com/fabpot",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6395. "type": "tidelift"
  6396. }
  6397. ],
  6398. "time": "2024-05-31T14:49:08+00:00"
  6399. },
  6400. {
  6401. "name": "symfony/translation",
  6402. "version": "v6.4.8",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/symfony/translation.git",
  6406. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6411. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "php": ">=8.1",
  6416. "symfony/deprecation-contracts": "^2.5|^3",
  6417. "symfony/polyfill-mbstring": "~1.0",
  6418. "symfony/translation-contracts": "^2.5|^3.0"
  6419. },
  6420. "conflict": {
  6421. "symfony/config": "<5.4",
  6422. "symfony/console": "<5.4",
  6423. "symfony/dependency-injection": "<5.4",
  6424. "symfony/http-client-contracts": "<2.5",
  6425. "symfony/http-kernel": "<5.4",
  6426. "symfony/service-contracts": "<2.5",
  6427. "symfony/twig-bundle": "<5.4",
  6428. "symfony/yaml": "<5.4"
  6429. },
  6430. "provide": {
  6431. "symfony/translation-implementation": "2.3|3.0"
  6432. },
  6433. "require-dev": {
  6434. "nikic/php-parser": "^4.18|^5.0",
  6435. "psr/log": "^1|^2|^3",
  6436. "symfony/config": "^5.4|^6.0|^7.0",
  6437. "symfony/console": "^5.4|^6.0|^7.0",
  6438. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6439. "symfony/finder": "^5.4|^6.0|^7.0",
  6440. "symfony/http-client-contracts": "^2.5|^3.0",
  6441. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6442. "symfony/intl": "^5.4|^6.0|^7.0",
  6443. "symfony/polyfill-intl-icu": "^1.21",
  6444. "symfony/routing": "^5.4|^6.0|^7.0",
  6445. "symfony/service-contracts": "^2.5|^3",
  6446. "symfony/yaml": "^5.4|^6.0|^7.0"
  6447. },
  6448. "type": "library",
  6449. "autoload": {
  6450. "files": [
  6451. "Resources/functions.php"
  6452. ],
  6453. "psr-4": {
  6454. "Symfony\\Component\\Translation\\": ""
  6455. },
  6456. "exclude-from-classmap": [
  6457. "/Tests/"
  6458. ]
  6459. },
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Fabien Potencier",
  6467. "email": "fabien@symfony.com"
  6468. },
  6469. {
  6470. "name": "Symfony Community",
  6471. "homepage": "https://symfony.com/contributors"
  6472. }
  6473. ],
  6474. "description": "Provides tools to internationalize your application",
  6475. "homepage": "https://symfony.com",
  6476. "support": {
  6477. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6478. },
  6479. "funding": [
  6480. {
  6481. "url": "https://symfony.com/sponsor",
  6482. "type": "custom"
  6483. },
  6484. {
  6485. "url": "https://github.com/fabpot",
  6486. "type": "github"
  6487. },
  6488. {
  6489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6490. "type": "tidelift"
  6491. }
  6492. ],
  6493. "time": "2024-05-31T14:49:08+00:00"
  6494. },
  6495. {
  6496. "name": "symfony/translation-contracts",
  6497. "version": "v3.5.0",
  6498. "source": {
  6499. "type": "git",
  6500. "url": "https://github.com/symfony/translation-contracts.git",
  6501. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6502. },
  6503. "dist": {
  6504. "type": "zip",
  6505. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6506. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6507. "shasum": ""
  6508. },
  6509. "require": {
  6510. "php": ">=8.1"
  6511. },
  6512. "type": "library",
  6513. "extra": {
  6514. "branch-alias": {
  6515. "dev-main": "3.5-dev"
  6516. },
  6517. "thanks": {
  6518. "name": "symfony/contracts",
  6519. "url": "https://github.com/symfony/contracts"
  6520. }
  6521. },
  6522. "autoload": {
  6523. "psr-4": {
  6524. "Symfony\\Contracts\\Translation\\": ""
  6525. },
  6526. "exclude-from-classmap": [
  6527. "/Test/"
  6528. ]
  6529. },
  6530. "notification-url": "https://packagist.org/downloads/",
  6531. "license": [
  6532. "MIT"
  6533. ],
  6534. "authors": [
  6535. {
  6536. "name": "Nicolas Grekas",
  6537. "email": "p@tchwork.com"
  6538. },
  6539. {
  6540. "name": "Symfony Community",
  6541. "homepage": "https://symfony.com/contributors"
  6542. }
  6543. ],
  6544. "description": "Generic abstractions related to translation",
  6545. "homepage": "https://symfony.com",
  6546. "keywords": [
  6547. "abstractions",
  6548. "contracts",
  6549. "decoupling",
  6550. "interfaces",
  6551. "interoperability",
  6552. "standards"
  6553. ],
  6554. "support": {
  6555. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6556. },
  6557. "funding": [
  6558. {
  6559. "url": "https://symfony.com/sponsor",
  6560. "type": "custom"
  6561. },
  6562. {
  6563. "url": "https://github.com/fabpot",
  6564. "type": "github"
  6565. },
  6566. {
  6567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6568. "type": "tidelift"
  6569. }
  6570. ],
  6571. "time": "2024-04-18T09:32:20+00:00"
  6572. },
  6573. {
  6574. "name": "vlucas/phpdotenv",
  6575. "version": "v5.6.0",
  6576. "source": {
  6577. "type": "git",
  6578. "url": "https://github.com/vlucas/phpdotenv.git",
  6579. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6580. },
  6581. "dist": {
  6582. "type": "zip",
  6583. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6584. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6585. "shasum": ""
  6586. },
  6587. "require": {
  6588. "ext-pcre": "*",
  6589. "graham-campbell/result-type": "^1.1.2",
  6590. "php": "^7.2.5 || ^8.0",
  6591. "phpoption/phpoption": "^1.9.2",
  6592. "symfony/polyfill-ctype": "^1.24",
  6593. "symfony/polyfill-mbstring": "^1.24",
  6594. "symfony/polyfill-php80": "^1.24"
  6595. },
  6596. "require-dev": {
  6597. "bamarni/composer-bin-plugin": "^1.8.2",
  6598. "ext-filter": "*",
  6599. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6600. },
  6601. "suggest": {
  6602. "ext-filter": "Required to use the boolean validator."
  6603. },
  6604. "type": "library",
  6605. "extra": {
  6606. "bamarni-bin": {
  6607. "bin-links": true,
  6608. "forward-command": true
  6609. },
  6610. "branch-alias": {
  6611. "dev-master": "5.6-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-4": {
  6616. "Dotenv\\": "src/"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "BSD-3-Clause"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Graham Campbell",
  6626. "email": "hello@gjcampbell.co.uk",
  6627. "homepage": "https://github.com/GrahamCampbell"
  6628. },
  6629. {
  6630. "name": "Vance Lucas",
  6631. "email": "vance@vancelucas.com",
  6632. "homepage": "https://github.com/vlucas"
  6633. }
  6634. ],
  6635. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6636. "keywords": [
  6637. "dotenv",
  6638. "env",
  6639. "environment"
  6640. ],
  6641. "support": {
  6642. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6643. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6644. },
  6645. "funding": [
  6646. {
  6647. "url": "https://github.com/GrahamCampbell",
  6648. "type": "github"
  6649. },
  6650. {
  6651. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6652. "type": "tidelift"
  6653. }
  6654. ],
  6655. "time": "2023-11-12T22:43:29+00:00"
  6656. }
  6657. ],
  6658. "packages-dev": [
  6659. {
  6660. "name": "clue/ndjson-react",
  6661. "version": "v1.3.0",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/clue/reactphp-ndjson.git",
  6665. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6670. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "php": ">=5.3",
  6675. "react/stream": "^1.2"
  6676. },
  6677. "require-dev": {
  6678. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6679. "react/event-loop": "^1.2"
  6680. },
  6681. "type": "library",
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Clue\\React\\NDJson\\": "src/"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Christian Lück",
  6694. "email": "christian@clue.engineering"
  6695. }
  6696. ],
  6697. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6698. "homepage": "https://github.com/clue/reactphp-ndjson",
  6699. "keywords": [
  6700. "NDJSON",
  6701. "json",
  6702. "jsonlines",
  6703. "newline",
  6704. "reactphp",
  6705. "streaming"
  6706. ],
  6707. "support": {
  6708. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6709. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6710. },
  6711. "funding": [
  6712. {
  6713. "url": "https://clue.engineering/support",
  6714. "type": "custom"
  6715. },
  6716. {
  6717. "url": "https://github.com/clue",
  6718. "type": "github"
  6719. }
  6720. ],
  6721. "time": "2022-12-23T10:58:28+00:00"
  6722. },
  6723. {
  6724. "name": "composer/pcre",
  6725. "version": "3.1.4",
  6726. "source": {
  6727. "type": "git",
  6728. "url": "https://github.com/composer/pcre.git",
  6729. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6730. },
  6731. "dist": {
  6732. "type": "zip",
  6733. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6734. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6735. "shasum": ""
  6736. },
  6737. "require": {
  6738. "php": "^7.4 || ^8.0"
  6739. },
  6740. "require-dev": {
  6741. "phpstan/phpstan": "^1.3",
  6742. "phpstan/phpstan-strict-rules": "^1.1",
  6743. "symfony/phpunit-bridge": "^5"
  6744. },
  6745. "type": "library",
  6746. "extra": {
  6747. "branch-alias": {
  6748. "dev-main": "3.x-dev"
  6749. }
  6750. },
  6751. "autoload": {
  6752. "psr-4": {
  6753. "Composer\\Pcre\\": "src"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "MIT"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "Jordi Boggiano",
  6763. "email": "j.boggiano@seld.be",
  6764. "homepage": "http://seld.be"
  6765. }
  6766. ],
  6767. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6768. "keywords": [
  6769. "PCRE",
  6770. "preg",
  6771. "regex",
  6772. "regular expression"
  6773. ],
  6774. "support": {
  6775. "issues": "https://github.com/composer/pcre/issues",
  6776. "source": "https://github.com/composer/pcre/tree/3.1.4"
  6777. },
  6778. "funding": [
  6779. {
  6780. "url": "https://packagist.com",
  6781. "type": "custom"
  6782. },
  6783. {
  6784. "url": "https://github.com/composer",
  6785. "type": "github"
  6786. },
  6787. {
  6788. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6789. "type": "tidelift"
  6790. }
  6791. ],
  6792. "time": "2024-05-27T13:40:54+00:00"
  6793. },
  6794. {
  6795. "name": "composer/semver",
  6796. "version": "3.4.0",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://github.com/composer/semver.git",
  6800. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6801. },
  6802. "dist": {
  6803. "type": "zip",
  6804. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6805. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6806. "shasum": ""
  6807. },
  6808. "require": {
  6809. "php": "^5.3.2 || ^7.0 || ^8.0"
  6810. },
  6811. "require-dev": {
  6812. "phpstan/phpstan": "^1.4",
  6813. "symfony/phpunit-bridge": "^4.2 || ^5"
  6814. },
  6815. "type": "library",
  6816. "extra": {
  6817. "branch-alias": {
  6818. "dev-main": "3.x-dev"
  6819. }
  6820. },
  6821. "autoload": {
  6822. "psr-4": {
  6823. "Composer\\Semver\\": "src"
  6824. }
  6825. },
  6826. "notification-url": "https://packagist.org/downloads/",
  6827. "license": [
  6828. "MIT"
  6829. ],
  6830. "authors": [
  6831. {
  6832. "name": "Nils Adermann",
  6833. "email": "naderman@naderman.de",
  6834. "homepage": "http://www.naderman.de"
  6835. },
  6836. {
  6837. "name": "Jordi Boggiano",
  6838. "email": "j.boggiano@seld.be",
  6839. "homepage": "http://seld.be"
  6840. },
  6841. {
  6842. "name": "Rob Bast",
  6843. "email": "rob.bast@gmail.com",
  6844. "homepage": "http://robbast.nl"
  6845. }
  6846. ],
  6847. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6848. "keywords": [
  6849. "semantic",
  6850. "semver",
  6851. "validation",
  6852. "versioning"
  6853. ],
  6854. "support": {
  6855. "irc": "ircs://irc.libera.chat:6697/composer",
  6856. "issues": "https://github.com/composer/semver/issues",
  6857. "source": "https://github.com/composer/semver/tree/3.4.0"
  6858. },
  6859. "funding": [
  6860. {
  6861. "url": "https://packagist.com",
  6862. "type": "custom"
  6863. },
  6864. {
  6865. "url": "https://github.com/composer",
  6866. "type": "github"
  6867. },
  6868. {
  6869. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6870. "type": "tidelift"
  6871. }
  6872. ],
  6873. "time": "2023-08-31T09:50:34+00:00"
  6874. },
  6875. {
  6876. "name": "composer/xdebug-handler",
  6877. "version": "3.0.5",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://github.com/composer/xdebug-handler.git",
  6881. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6886. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6887. "shasum": ""
  6888. },
  6889. "require": {
  6890. "composer/pcre": "^1 || ^2 || ^3",
  6891. "php": "^7.2.5 || ^8.0",
  6892. "psr/log": "^1 || ^2 || ^3"
  6893. },
  6894. "require-dev": {
  6895. "phpstan/phpstan": "^1.0",
  6896. "phpstan/phpstan-strict-rules": "^1.1",
  6897. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6898. },
  6899. "type": "library",
  6900. "autoload": {
  6901. "psr-4": {
  6902. "Composer\\XdebugHandler\\": "src"
  6903. }
  6904. },
  6905. "notification-url": "https://packagist.org/downloads/",
  6906. "license": [
  6907. "MIT"
  6908. ],
  6909. "authors": [
  6910. {
  6911. "name": "John Stevenson",
  6912. "email": "john-stevenson@blueyonder.co.uk"
  6913. }
  6914. ],
  6915. "description": "Restarts a process without Xdebug.",
  6916. "keywords": [
  6917. "Xdebug",
  6918. "performance"
  6919. ],
  6920. "support": {
  6921. "irc": "ircs://irc.libera.chat:6697/composer",
  6922. "issues": "https://github.com/composer/xdebug-handler/issues",
  6923. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6924. },
  6925. "funding": [
  6926. {
  6927. "url": "https://packagist.com",
  6928. "type": "custom"
  6929. },
  6930. {
  6931. "url": "https://github.com/composer",
  6932. "type": "github"
  6933. },
  6934. {
  6935. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6936. "type": "tidelift"
  6937. }
  6938. ],
  6939. "time": "2024-05-06T16:37:16+00:00"
  6940. },
  6941. {
  6942. "name": "evenement/evenement",
  6943. "version": "v3.0.2",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/igorw/evenement.git",
  6947. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6952. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6953. "shasum": ""
  6954. },
  6955. "require": {
  6956. "php": ">=7.0"
  6957. },
  6958. "require-dev": {
  6959. "phpunit/phpunit": "^9 || ^6"
  6960. },
  6961. "type": "library",
  6962. "autoload": {
  6963. "psr-4": {
  6964. "Evenement\\": "src/"
  6965. }
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "Igor Wiedler",
  6974. "email": "igor@wiedler.ch"
  6975. }
  6976. ],
  6977. "description": "Événement is a very simple event dispatching library for PHP",
  6978. "keywords": [
  6979. "event-dispatcher",
  6980. "event-emitter"
  6981. ],
  6982. "support": {
  6983. "issues": "https://github.com/igorw/evenement/issues",
  6984. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  6985. },
  6986. "time": "2023-08-08T05:53:35+00:00"
  6987. },
  6988. {
  6989. "name": "fidry/cpu-core-counter",
  6990. "version": "1.1.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/theofidry/cpu-core-counter.git",
  6994. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  6999. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": "^7.2 || ^8.0"
  7004. },
  7005. "require-dev": {
  7006. "fidry/makefile": "^0.2.0",
  7007. "fidry/php-cs-fixer-config": "^1.1.2",
  7008. "phpstan/extension-installer": "^1.2.0",
  7009. "phpstan/phpstan": "^1.9.2",
  7010. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7011. "phpstan/phpstan-phpunit": "^1.2.2",
  7012. "phpstan/phpstan-strict-rules": "^1.4.4",
  7013. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7014. "webmozarts/strict-phpunit": "^7.5"
  7015. },
  7016. "type": "library",
  7017. "autoload": {
  7018. "psr-4": {
  7019. "Fidry\\CpuCoreCounter\\": "src/"
  7020. }
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Théo FIDRY",
  7029. "email": "theo.fidry@gmail.com"
  7030. }
  7031. ],
  7032. "description": "Tiny utility to get the number of CPU cores.",
  7033. "keywords": [
  7034. "CPU",
  7035. "core"
  7036. ],
  7037. "support": {
  7038. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7039. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7040. },
  7041. "funding": [
  7042. {
  7043. "url": "https://github.com/theofidry",
  7044. "type": "github"
  7045. }
  7046. ],
  7047. "time": "2024-02-07T09:43:46+00:00"
  7048. },
  7049. {
  7050. "name": "friendsofphp/php-cs-fixer",
  7051. "version": "v3.58.1",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7055. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7060. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "clue/ndjson-react": "^1.0",
  7065. "composer/semver": "^3.4",
  7066. "composer/xdebug-handler": "^3.0.3",
  7067. "ext-filter": "*",
  7068. "ext-json": "*",
  7069. "ext-tokenizer": "*",
  7070. "fidry/cpu-core-counter": "^1.0",
  7071. "php": "^7.4 || ^8.0",
  7072. "react/child-process": "^0.6.5",
  7073. "react/event-loop": "^1.0",
  7074. "react/promise": "^2.0 || ^3.0",
  7075. "react/socket": "^1.0",
  7076. "react/stream": "^1.0",
  7077. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7078. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7079. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7080. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7081. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7082. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7083. "symfony/polyfill-mbstring": "^1.28",
  7084. "symfony/polyfill-php80": "^1.28",
  7085. "symfony/polyfill-php81": "^1.28",
  7086. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7087. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7088. },
  7089. "require-dev": {
  7090. "facile-it/paraunit": "^1.3 || ^2.0",
  7091. "infection/infection": "^0.27.11",
  7092. "justinrainbow/json-schema": "^5.2",
  7093. "keradus/cli-executor": "^2.1",
  7094. "mikey179/vfsstream": "^1.6.11",
  7095. "php-coveralls/php-coveralls": "^2.7",
  7096. "php-cs-fixer/accessible-object": "^1.1",
  7097. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7098. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7099. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7100. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7101. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7102. },
  7103. "suggest": {
  7104. "ext-dom": "For handling output formats in XML",
  7105. "ext-mbstring": "For handling non-UTF8 characters."
  7106. },
  7107. "bin": [
  7108. "php-cs-fixer"
  7109. ],
  7110. "type": "application",
  7111. "autoload": {
  7112. "psr-4": {
  7113. "PhpCsFixer\\": "src/"
  7114. }
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "MIT"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "Fabien Potencier",
  7123. "email": "fabien@symfony.com"
  7124. },
  7125. {
  7126. "name": "Dariusz Rumiński",
  7127. "email": "dariusz.ruminski@gmail.com"
  7128. }
  7129. ],
  7130. "description": "A tool to automatically fix PHP code style",
  7131. "keywords": [
  7132. "Static code analysis",
  7133. "fixer",
  7134. "standards",
  7135. "static analysis"
  7136. ],
  7137. "support": {
  7138. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7139. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7140. },
  7141. "funding": [
  7142. {
  7143. "url": "https://github.com/keradus",
  7144. "type": "github"
  7145. }
  7146. ],
  7147. "time": "2024-05-29T16:39:07+00:00"
  7148. },
  7149. {
  7150. "name": "hamcrest/hamcrest-php",
  7151. "version": "v2.0.1",
  7152. "source": {
  7153. "type": "git",
  7154. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7155. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7156. },
  7157. "dist": {
  7158. "type": "zip",
  7159. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7160. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7161. "shasum": ""
  7162. },
  7163. "require": {
  7164. "php": "^5.3|^7.0|^8.0"
  7165. },
  7166. "replace": {
  7167. "cordoval/hamcrest-php": "*",
  7168. "davedevelopment/hamcrest-php": "*",
  7169. "kodova/hamcrest-php": "*"
  7170. },
  7171. "require-dev": {
  7172. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7173. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7174. },
  7175. "type": "library",
  7176. "extra": {
  7177. "branch-alias": {
  7178. "dev-master": "2.1-dev"
  7179. }
  7180. },
  7181. "autoload": {
  7182. "classmap": [
  7183. "hamcrest"
  7184. ]
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "BSD-3-Clause"
  7189. ],
  7190. "description": "This is the PHP port of Hamcrest Matchers",
  7191. "keywords": [
  7192. "test"
  7193. ],
  7194. "support": {
  7195. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7196. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7197. },
  7198. "time": "2020-07-09T08:09:16+00:00"
  7199. },
  7200. {
  7201. "name": "hyperf/devtool",
  7202. "version": "v3.1.19",
  7203. "source": {
  7204. "type": "git",
  7205. "url": "https://github.com/hyperf/devtool.git",
  7206. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7207. },
  7208. "dist": {
  7209. "type": "zip",
  7210. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7211. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7212. "shasum": ""
  7213. },
  7214. "require": {
  7215. "hyperf/code-parser": "~3.1.0",
  7216. "hyperf/command": "~3.1.0",
  7217. "hyperf/contract": "~3.1.0",
  7218. "hyperf/di": "~3.1.0",
  7219. "hyperf/support": "~3.1.0",
  7220. "hyperf/utils": "~3.1.0",
  7221. "php": ">=8.1"
  7222. },
  7223. "type": "library",
  7224. "extra": {
  7225. "branch-alias": {
  7226. "dev-master": "3.1-dev"
  7227. },
  7228. "hyperf": {
  7229. "config": "Hyperf\\Devtool\\ConfigProvider"
  7230. }
  7231. },
  7232. "autoload": {
  7233. "psr-4": {
  7234. "Hyperf\\Devtool\\": "src/"
  7235. }
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "MIT"
  7240. ],
  7241. "description": "A Devtool for Hyperf.",
  7242. "homepage": "https://hyperf.io",
  7243. "keywords": [
  7244. "dev",
  7245. "devtool",
  7246. "hyperf",
  7247. "php",
  7248. "swoole"
  7249. ],
  7250. "support": {
  7251. "docs": "https://hyperf.wiki",
  7252. "issues": "https://github.com/hyperf/hyperf/issues",
  7253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7254. "source": "https://github.com/hyperf/hyperf"
  7255. },
  7256. "funding": [
  7257. {
  7258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7259. "type": "custom"
  7260. },
  7261. {
  7262. "url": "https://opencollective.com/hyperf",
  7263. "type": "open_collective"
  7264. }
  7265. ],
  7266. "time": "2024-04-13T06:53:08+00:00"
  7267. },
  7268. {
  7269. "name": "hyperf/testing",
  7270. "version": "v3.1.21",
  7271. "source": {
  7272. "type": "git",
  7273. "url": "https://github.com/hyperf/testing.git",
  7274. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7275. },
  7276. "dist": {
  7277. "type": "zip",
  7278. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7279. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7280. "shasum": ""
  7281. },
  7282. "require": {
  7283. "hyperf/codec": "~3.1.0",
  7284. "hyperf/collection": "~3.1.0",
  7285. "hyperf/contract": "~3.1.0",
  7286. "hyperf/coroutine": "~3.1.0",
  7287. "hyperf/http-message": "~3.1.0",
  7288. "hyperf/http-server": "~3.1.0",
  7289. "hyperf/support": "~3.1.0",
  7290. "hyperf/utils": "~3.1.0",
  7291. "php": ">=8.1",
  7292. "phpunit/phpunit": "^10.0",
  7293. "psr/container": "^1.0|^2.0",
  7294. "symfony/http-foundation": "^5.4|^6.0"
  7295. },
  7296. "suggest": {
  7297. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7298. },
  7299. "bin": [
  7300. "co-phpunit"
  7301. ],
  7302. "type": "library",
  7303. "extra": {
  7304. "branch-alias": {
  7305. "dev-master": "3.1-dev"
  7306. }
  7307. },
  7308. "autoload": {
  7309. "psr-4": {
  7310. "Hyperf\\Testing\\": "src/"
  7311. }
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "description": "Testing for hyperf",
  7318. "keywords": [
  7319. "dev",
  7320. "php",
  7321. "swoole",
  7322. "testing"
  7323. ],
  7324. "support": {
  7325. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7326. },
  7327. "funding": [
  7328. {
  7329. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7330. "type": "custom"
  7331. },
  7332. {
  7333. "url": "https://opencollective.com/hyperf",
  7334. "type": "open_collective"
  7335. }
  7336. ],
  7337. "time": "2024-05-07T05:34:51+00:00"
  7338. },
  7339. {
  7340. "name": "hyperf/watcher",
  7341. "version": "v3.1.21",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/hyperf/watcher.git",
  7345. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7350. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "ext-posix": "*",
  7355. "hyperf/codec": "~3.1.0",
  7356. "hyperf/command": "~3.1.0",
  7357. "hyperf/di": "~3.1.0",
  7358. "hyperf/framework": "~3.1.0",
  7359. "hyperf/support": "~3.1.0",
  7360. "php": ">=8.1"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "3.1-dev"
  7366. },
  7367. "hyperf": {
  7368. "config": "Hyperf\\Watcher\\ConfigProvider"
  7369. }
  7370. },
  7371. "autoload": {
  7372. "files": [
  7373. "src/Functions.php"
  7374. ],
  7375. "psr-4": {
  7376. "Hyperf\\Watcher\\": "src/"
  7377. }
  7378. },
  7379. "notification-url": "https://packagist.org/downloads/",
  7380. "license": [
  7381. "MIT"
  7382. ],
  7383. "description": "Hot reload watcher for Hyperf",
  7384. "keywords": [
  7385. "dev",
  7386. "hyperf",
  7387. "php"
  7388. ],
  7389. "support": {
  7390. "issues": "https://github.com/hyperf/watcher/issues",
  7391. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7392. },
  7393. "funding": [
  7394. {
  7395. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7396. "type": "custom"
  7397. },
  7398. {
  7399. "url": "https://opencollective.com/hyperf",
  7400. "type": "open_collective"
  7401. }
  7402. ],
  7403. "time": "2024-05-09T13:40:44+00:00"
  7404. },
  7405. {
  7406. "name": "mockery/mockery",
  7407. "version": "1.6.12",
  7408. "source": {
  7409. "type": "git",
  7410. "url": "https://github.com/mockery/mockery.git",
  7411. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7412. },
  7413. "dist": {
  7414. "type": "zip",
  7415. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7416. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7417. "shasum": ""
  7418. },
  7419. "require": {
  7420. "hamcrest/hamcrest-php": "^2.0.1",
  7421. "lib-pcre": ">=7.0",
  7422. "php": ">=7.3"
  7423. },
  7424. "conflict": {
  7425. "phpunit/phpunit": "<8.0"
  7426. },
  7427. "require-dev": {
  7428. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7429. "symplify/easy-coding-standard": "^12.1.14"
  7430. },
  7431. "type": "library",
  7432. "autoload": {
  7433. "files": [
  7434. "library/helpers.php",
  7435. "library/Mockery.php"
  7436. ],
  7437. "psr-4": {
  7438. "Mockery\\": "library/Mockery"
  7439. }
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "BSD-3-Clause"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Pádraic Brady",
  7448. "email": "padraic.brady@gmail.com",
  7449. "homepage": "https://github.com/padraic",
  7450. "role": "Author"
  7451. },
  7452. {
  7453. "name": "Dave Marshall",
  7454. "email": "dave.marshall@atstsolutions.co.uk",
  7455. "homepage": "https://davedevelopment.co.uk",
  7456. "role": "Developer"
  7457. },
  7458. {
  7459. "name": "Nathanael Esayeas",
  7460. "email": "nathanael.esayeas@protonmail.com",
  7461. "homepage": "https://github.com/ghostwriter",
  7462. "role": "Lead Developer"
  7463. }
  7464. ],
  7465. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7466. "homepage": "https://github.com/mockery/mockery",
  7467. "keywords": [
  7468. "BDD",
  7469. "TDD",
  7470. "library",
  7471. "mock",
  7472. "mock objects",
  7473. "mockery",
  7474. "stub",
  7475. "test",
  7476. "test double",
  7477. "testing"
  7478. ],
  7479. "support": {
  7480. "docs": "https://docs.mockery.io/",
  7481. "issues": "https://github.com/mockery/mockery/issues",
  7482. "rss": "https://github.com/mockery/mockery/releases.atom",
  7483. "security": "https://github.com/mockery/mockery/security/advisories",
  7484. "source": "https://github.com/mockery/mockery"
  7485. },
  7486. "time": "2024-05-16T03:13:13+00:00"
  7487. },
  7488. {
  7489. "name": "myclabs/deep-copy",
  7490. "version": "1.11.1",
  7491. "source": {
  7492. "type": "git",
  7493. "url": "https://github.com/myclabs/DeepCopy.git",
  7494. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7495. },
  7496. "dist": {
  7497. "type": "zip",
  7498. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7499. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7500. "shasum": ""
  7501. },
  7502. "require": {
  7503. "php": "^7.1 || ^8.0"
  7504. },
  7505. "conflict": {
  7506. "doctrine/collections": "<1.6.8",
  7507. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7508. },
  7509. "require-dev": {
  7510. "doctrine/collections": "^1.6.8",
  7511. "doctrine/common": "^2.13.3 || ^3.2.2",
  7512. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7513. },
  7514. "type": "library",
  7515. "autoload": {
  7516. "files": [
  7517. "src/DeepCopy/deep_copy.php"
  7518. ],
  7519. "psr-4": {
  7520. "DeepCopy\\": "src/DeepCopy/"
  7521. }
  7522. },
  7523. "notification-url": "https://packagist.org/downloads/",
  7524. "license": [
  7525. "MIT"
  7526. ],
  7527. "description": "Create deep copies (clones) of your objects",
  7528. "keywords": [
  7529. "clone",
  7530. "copy",
  7531. "duplicate",
  7532. "object",
  7533. "object graph"
  7534. ],
  7535. "support": {
  7536. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7537. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7538. },
  7539. "funding": [
  7540. {
  7541. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7542. "type": "tidelift"
  7543. }
  7544. ],
  7545. "time": "2023-03-08T13:26:56+00:00"
  7546. },
  7547. {
  7548. "name": "phar-io/manifest",
  7549. "version": "2.0.4",
  7550. "source": {
  7551. "type": "git",
  7552. "url": "https://github.com/phar-io/manifest.git",
  7553. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7554. },
  7555. "dist": {
  7556. "type": "zip",
  7557. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7558. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7559. "shasum": ""
  7560. },
  7561. "require": {
  7562. "ext-dom": "*",
  7563. "ext-libxml": "*",
  7564. "ext-phar": "*",
  7565. "ext-xmlwriter": "*",
  7566. "phar-io/version": "^3.0.1",
  7567. "php": "^7.2 || ^8.0"
  7568. },
  7569. "type": "library",
  7570. "extra": {
  7571. "branch-alias": {
  7572. "dev-master": "2.0.x-dev"
  7573. }
  7574. },
  7575. "autoload": {
  7576. "classmap": [
  7577. "src/"
  7578. ]
  7579. },
  7580. "notification-url": "https://packagist.org/downloads/",
  7581. "license": [
  7582. "BSD-3-Clause"
  7583. ],
  7584. "authors": [
  7585. {
  7586. "name": "Arne Blankerts",
  7587. "email": "arne@blankerts.de",
  7588. "role": "Developer"
  7589. },
  7590. {
  7591. "name": "Sebastian Heuer",
  7592. "email": "sebastian@phpeople.de",
  7593. "role": "Developer"
  7594. },
  7595. {
  7596. "name": "Sebastian Bergmann",
  7597. "email": "sebastian@phpunit.de",
  7598. "role": "Developer"
  7599. }
  7600. ],
  7601. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7602. "support": {
  7603. "issues": "https://github.com/phar-io/manifest/issues",
  7604. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7605. },
  7606. "funding": [
  7607. {
  7608. "url": "https://github.com/theseer",
  7609. "type": "github"
  7610. }
  7611. ],
  7612. "time": "2024-03-03T12:33:53+00:00"
  7613. },
  7614. {
  7615. "name": "phar-io/version",
  7616. "version": "3.2.1",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/phar-io/version.git",
  7620. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7625. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "php": "^7.2 || ^8.0"
  7630. },
  7631. "type": "library",
  7632. "autoload": {
  7633. "classmap": [
  7634. "src/"
  7635. ]
  7636. },
  7637. "notification-url": "https://packagist.org/downloads/",
  7638. "license": [
  7639. "BSD-3-Clause"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "Arne Blankerts",
  7644. "email": "arne@blankerts.de",
  7645. "role": "Developer"
  7646. },
  7647. {
  7648. "name": "Sebastian Heuer",
  7649. "email": "sebastian@phpeople.de",
  7650. "role": "Developer"
  7651. },
  7652. {
  7653. "name": "Sebastian Bergmann",
  7654. "email": "sebastian@phpunit.de",
  7655. "role": "Developer"
  7656. }
  7657. ],
  7658. "description": "Library for handling version information and constraints",
  7659. "support": {
  7660. "issues": "https://github.com/phar-io/version/issues",
  7661. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7662. },
  7663. "time": "2022-02-21T01:04:05+00:00"
  7664. },
  7665. {
  7666. "name": "phpstan/phpstan",
  7667. "version": "1.11.3",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://github.com/phpstan/phpstan.git",
  7671. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7676. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7677. "shasum": ""
  7678. },
  7679. "require": {
  7680. "php": "^7.2|^8.0"
  7681. },
  7682. "conflict": {
  7683. "phpstan/phpstan-shim": "*"
  7684. },
  7685. "bin": [
  7686. "phpstan",
  7687. "phpstan.phar"
  7688. ],
  7689. "type": "library",
  7690. "autoload": {
  7691. "files": [
  7692. "bootstrap.php"
  7693. ]
  7694. },
  7695. "notification-url": "https://packagist.org/downloads/",
  7696. "license": [
  7697. "MIT"
  7698. ],
  7699. "description": "PHPStan - PHP Static Analysis Tool",
  7700. "keywords": [
  7701. "dev",
  7702. "static analysis"
  7703. ],
  7704. "support": {
  7705. "docs": "https://phpstan.org/user-guide/getting-started",
  7706. "forum": "https://github.com/phpstan/phpstan/discussions",
  7707. "issues": "https://github.com/phpstan/phpstan/issues",
  7708. "security": "https://github.com/phpstan/phpstan/security/policy",
  7709. "source": "https://github.com/phpstan/phpstan-src"
  7710. },
  7711. "funding": [
  7712. {
  7713. "url": "https://github.com/ondrejmirtes",
  7714. "type": "github"
  7715. },
  7716. {
  7717. "url": "https://github.com/phpstan",
  7718. "type": "github"
  7719. }
  7720. ],
  7721. "time": "2024-05-31T13:53:37+00:00"
  7722. },
  7723. {
  7724. "name": "phpunit/php-code-coverage",
  7725. "version": "10.1.14",
  7726. "source": {
  7727. "type": "git",
  7728. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7729. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7730. },
  7731. "dist": {
  7732. "type": "zip",
  7733. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7734. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7735. "shasum": ""
  7736. },
  7737. "require": {
  7738. "ext-dom": "*",
  7739. "ext-libxml": "*",
  7740. "ext-xmlwriter": "*",
  7741. "nikic/php-parser": "^4.18 || ^5.0",
  7742. "php": ">=8.1",
  7743. "phpunit/php-file-iterator": "^4.0",
  7744. "phpunit/php-text-template": "^3.0",
  7745. "sebastian/code-unit-reverse-lookup": "^3.0",
  7746. "sebastian/complexity": "^3.0",
  7747. "sebastian/environment": "^6.0",
  7748. "sebastian/lines-of-code": "^2.0",
  7749. "sebastian/version": "^4.0",
  7750. "theseer/tokenizer": "^1.2.0"
  7751. },
  7752. "require-dev": {
  7753. "phpunit/phpunit": "^10.1"
  7754. },
  7755. "suggest": {
  7756. "ext-pcov": "PHP extension that provides line coverage",
  7757. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-main": "10.1-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "classmap": [
  7767. "src/"
  7768. ]
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "BSD-3-Clause"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "Sebastian Bergmann",
  7777. "email": "sebastian@phpunit.de",
  7778. "role": "lead"
  7779. }
  7780. ],
  7781. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7782. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7783. "keywords": [
  7784. "coverage",
  7785. "testing",
  7786. "xunit"
  7787. ],
  7788. "support": {
  7789. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7790. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7791. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  7792. },
  7793. "funding": [
  7794. {
  7795. "url": "https://github.com/sebastianbergmann",
  7796. "type": "github"
  7797. }
  7798. ],
  7799. "time": "2024-03-12T15:33:41+00:00"
  7800. },
  7801. {
  7802. "name": "phpunit/php-file-iterator",
  7803. "version": "4.1.0",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7807. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7812. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7813. "shasum": ""
  7814. },
  7815. "require": {
  7816. "php": ">=8.1"
  7817. },
  7818. "require-dev": {
  7819. "phpunit/phpunit": "^10.0"
  7820. },
  7821. "type": "library",
  7822. "extra": {
  7823. "branch-alias": {
  7824. "dev-main": "4.0-dev"
  7825. }
  7826. },
  7827. "autoload": {
  7828. "classmap": [
  7829. "src/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "BSD-3-Clause"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Sebastian Bergmann",
  7839. "email": "sebastian@phpunit.de",
  7840. "role": "lead"
  7841. }
  7842. ],
  7843. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7844. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7845. "keywords": [
  7846. "filesystem",
  7847. "iterator"
  7848. ],
  7849. "support": {
  7850. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7851. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7852. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7853. },
  7854. "funding": [
  7855. {
  7856. "url": "https://github.com/sebastianbergmann",
  7857. "type": "github"
  7858. }
  7859. ],
  7860. "time": "2023-08-31T06:24:48+00:00"
  7861. },
  7862. {
  7863. "name": "phpunit/php-invoker",
  7864. "version": "4.0.0",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7868. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7873. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "php": ">=8.1"
  7878. },
  7879. "require-dev": {
  7880. "ext-pcntl": "*",
  7881. "phpunit/phpunit": "^10.0"
  7882. },
  7883. "suggest": {
  7884. "ext-pcntl": "*"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "branch-alias": {
  7889. "dev-main": "4.0-dev"
  7890. }
  7891. },
  7892. "autoload": {
  7893. "classmap": [
  7894. "src/"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "BSD-3-Clause"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Sebastian Bergmann",
  7904. "email": "sebastian@phpunit.de",
  7905. "role": "lead"
  7906. }
  7907. ],
  7908. "description": "Invoke callables with a timeout",
  7909. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7910. "keywords": [
  7911. "process"
  7912. ],
  7913. "support": {
  7914. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7915. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7916. },
  7917. "funding": [
  7918. {
  7919. "url": "https://github.com/sebastianbergmann",
  7920. "type": "github"
  7921. }
  7922. ],
  7923. "time": "2023-02-03T06:56:09+00:00"
  7924. },
  7925. {
  7926. "name": "phpunit/php-text-template",
  7927. "version": "3.0.1",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7931. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7936. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "php": ">=8.1"
  7941. },
  7942. "require-dev": {
  7943. "phpunit/phpunit": "^10.0"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "branch-alias": {
  7948. "dev-main": "3.0-dev"
  7949. }
  7950. },
  7951. "autoload": {
  7952. "classmap": [
  7953. "src/"
  7954. ]
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "BSD-3-Clause"
  7959. ],
  7960. "authors": [
  7961. {
  7962. "name": "Sebastian Bergmann",
  7963. "email": "sebastian@phpunit.de",
  7964. "role": "lead"
  7965. }
  7966. ],
  7967. "description": "Simple template engine.",
  7968. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7969. "keywords": [
  7970. "template"
  7971. ],
  7972. "support": {
  7973. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7974. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7975. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7976. },
  7977. "funding": [
  7978. {
  7979. "url": "https://github.com/sebastianbergmann",
  7980. "type": "github"
  7981. }
  7982. ],
  7983. "time": "2023-08-31T14:07:24+00:00"
  7984. },
  7985. {
  7986. "name": "phpunit/php-timer",
  7987. "version": "6.0.0",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7991. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7996. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7997. "shasum": ""
  7998. },
  7999. "require": {
  8000. "php": ">=8.1"
  8001. },
  8002. "require-dev": {
  8003. "phpunit/phpunit": "^10.0"
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-main": "6.0-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "classmap": [
  8013. "src/"
  8014. ]
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "BSD-3-Clause"
  8019. ],
  8020. "authors": [
  8021. {
  8022. "name": "Sebastian Bergmann",
  8023. "email": "sebastian@phpunit.de",
  8024. "role": "lead"
  8025. }
  8026. ],
  8027. "description": "Utility class for timing",
  8028. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8029. "keywords": [
  8030. "timer"
  8031. ],
  8032. "support": {
  8033. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8034. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8035. },
  8036. "funding": [
  8037. {
  8038. "url": "https://github.com/sebastianbergmann",
  8039. "type": "github"
  8040. }
  8041. ],
  8042. "time": "2023-02-03T06:57:52+00:00"
  8043. },
  8044. {
  8045. "name": "phpunit/phpunit",
  8046. "version": "10.5.20",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8050. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8055. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8056. "shasum": ""
  8057. },
  8058. "require": {
  8059. "ext-dom": "*",
  8060. "ext-json": "*",
  8061. "ext-libxml": "*",
  8062. "ext-mbstring": "*",
  8063. "ext-xml": "*",
  8064. "ext-xmlwriter": "*",
  8065. "myclabs/deep-copy": "^1.10.1",
  8066. "phar-io/manifest": "^2.0.3",
  8067. "phar-io/version": "^3.0.2",
  8068. "php": ">=8.1",
  8069. "phpunit/php-code-coverage": "^10.1.5",
  8070. "phpunit/php-file-iterator": "^4.0",
  8071. "phpunit/php-invoker": "^4.0",
  8072. "phpunit/php-text-template": "^3.0",
  8073. "phpunit/php-timer": "^6.0",
  8074. "sebastian/cli-parser": "^2.0",
  8075. "sebastian/code-unit": "^2.0",
  8076. "sebastian/comparator": "^5.0",
  8077. "sebastian/diff": "^5.0",
  8078. "sebastian/environment": "^6.0",
  8079. "sebastian/exporter": "^5.1",
  8080. "sebastian/global-state": "^6.0.1",
  8081. "sebastian/object-enumerator": "^5.0",
  8082. "sebastian/recursion-context": "^5.0",
  8083. "sebastian/type": "^4.0",
  8084. "sebastian/version": "^4.0"
  8085. },
  8086. "suggest": {
  8087. "ext-soap": "To be able to generate mocks based on WSDL files"
  8088. },
  8089. "bin": [
  8090. "phpunit"
  8091. ],
  8092. "type": "library",
  8093. "extra": {
  8094. "branch-alias": {
  8095. "dev-main": "10.5-dev"
  8096. }
  8097. },
  8098. "autoload": {
  8099. "files": [
  8100. "src/Framework/Assert/Functions.php"
  8101. ],
  8102. "classmap": [
  8103. "src/"
  8104. ]
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "BSD-3-Clause"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Sebastian Bergmann",
  8113. "email": "sebastian@phpunit.de",
  8114. "role": "lead"
  8115. }
  8116. ],
  8117. "description": "The PHP Unit Testing framework.",
  8118. "homepage": "https://phpunit.de/",
  8119. "keywords": [
  8120. "phpunit",
  8121. "testing",
  8122. "xunit"
  8123. ],
  8124. "support": {
  8125. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8126. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8127. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8128. },
  8129. "funding": [
  8130. {
  8131. "url": "https://phpunit.de/sponsors.html",
  8132. "type": "custom"
  8133. },
  8134. {
  8135. "url": "https://github.com/sebastianbergmann",
  8136. "type": "github"
  8137. },
  8138. {
  8139. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8140. "type": "tidelift"
  8141. }
  8142. ],
  8143. "time": "2024-04-24T06:32:35+00:00"
  8144. },
  8145. {
  8146. "name": "react/cache",
  8147. "version": "v1.2.0",
  8148. "source": {
  8149. "type": "git",
  8150. "url": "https://github.com/reactphp/cache.git",
  8151. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8152. },
  8153. "dist": {
  8154. "type": "zip",
  8155. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8156. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8157. "shasum": ""
  8158. },
  8159. "require": {
  8160. "php": ">=5.3.0",
  8161. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8162. },
  8163. "require-dev": {
  8164. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8165. },
  8166. "type": "library",
  8167. "autoload": {
  8168. "psr-4": {
  8169. "React\\Cache\\": "src/"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Christian Lück",
  8179. "email": "christian@clue.engineering",
  8180. "homepage": "https://clue.engineering/"
  8181. },
  8182. {
  8183. "name": "Cees-Jan Kiewiet",
  8184. "email": "reactphp@ceesjankiewiet.nl",
  8185. "homepage": "https://wyrihaximus.net/"
  8186. },
  8187. {
  8188. "name": "Jan Sorgalla",
  8189. "email": "jsorgalla@gmail.com",
  8190. "homepage": "https://sorgalla.com/"
  8191. },
  8192. {
  8193. "name": "Chris Boden",
  8194. "email": "cboden@gmail.com",
  8195. "homepage": "https://cboden.dev/"
  8196. }
  8197. ],
  8198. "description": "Async, Promise-based cache interface for ReactPHP",
  8199. "keywords": [
  8200. "cache",
  8201. "caching",
  8202. "promise",
  8203. "reactphp"
  8204. ],
  8205. "support": {
  8206. "issues": "https://github.com/reactphp/cache/issues",
  8207. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8208. },
  8209. "funding": [
  8210. {
  8211. "url": "https://opencollective.com/reactphp",
  8212. "type": "open_collective"
  8213. }
  8214. ],
  8215. "time": "2022-11-30T15:59:55+00:00"
  8216. },
  8217. {
  8218. "name": "react/child-process",
  8219. "version": "v0.6.5",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/reactphp/child-process.git",
  8223. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8228. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8229. "shasum": ""
  8230. },
  8231. "require": {
  8232. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8233. "php": ">=5.3.0",
  8234. "react/event-loop": "^1.2",
  8235. "react/stream": "^1.2"
  8236. },
  8237. "require-dev": {
  8238. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8239. "react/socket": "^1.8",
  8240. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8241. },
  8242. "type": "library",
  8243. "autoload": {
  8244. "psr-4": {
  8245. "React\\ChildProcess\\": "src"
  8246. }
  8247. },
  8248. "notification-url": "https://packagist.org/downloads/",
  8249. "license": [
  8250. "MIT"
  8251. ],
  8252. "authors": [
  8253. {
  8254. "name": "Christian Lück",
  8255. "email": "christian@clue.engineering",
  8256. "homepage": "https://clue.engineering/"
  8257. },
  8258. {
  8259. "name": "Cees-Jan Kiewiet",
  8260. "email": "reactphp@ceesjankiewiet.nl",
  8261. "homepage": "https://wyrihaximus.net/"
  8262. },
  8263. {
  8264. "name": "Jan Sorgalla",
  8265. "email": "jsorgalla@gmail.com",
  8266. "homepage": "https://sorgalla.com/"
  8267. },
  8268. {
  8269. "name": "Chris Boden",
  8270. "email": "cboden@gmail.com",
  8271. "homepage": "https://cboden.dev/"
  8272. }
  8273. ],
  8274. "description": "Event-driven library for executing child processes with ReactPHP.",
  8275. "keywords": [
  8276. "event-driven",
  8277. "process",
  8278. "reactphp"
  8279. ],
  8280. "support": {
  8281. "issues": "https://github.com/reactphp/child-process/issues",
  8282. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8283. },
  8284. "funding": [
  8285. {
  8286. "url": "https://github.com/WyriHaximus",
  8287. "type": "github"
  8288. },
  8289. {
  8290. "url": "https://github.com/clue",
  8291. "type": "github"
  8292. }
  8293. ],
  8294. "time": "2022-09-16T13:41:56+00:00"
  8295. },
  8296. {
  8297. "name": "react/dns",
  8298. "version": "v1.12.0",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/reactphp/dns.git",
  8302. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8307. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8308. "shasum": ""
  8309. },
  8310. "require": {
  8311. "php": ">=5.3.0",
  8312. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8313. "react/event-loop": "^1.2",
  8314. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8315. },
  8316. "require-dev": {
  8317. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8318. "react/async": "^4 || ^3 || ^2",
  8319. "react/promise-timer": "^1.9"
  8320. },
  8321. "type": "library",
  8322. "autoload": {
  8323. "psr-4": {
  8324. "React\\Dns\\": "src/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "Christian Lück",
  8334. "email": "christian@clue.engineering",
  8335. "homepage": "https://clue.engineering/"
  8336. },
  8337. {
  8338. "name": "Cees-Jan Kiewiet",
  8339. "email": "reactphp@ceesjankiewiet.nl",
  8340. "homepage": "https://wyrihaximus.net/"
  8341. },
  8342. {
  8343. "name": "Jan Sorgalla",
  8344. "email": "jsorgalla@gmail.com",
  8345. "homepage": "https://sorgalla.com/"
  8346. },
  8347. {
  8348. "name": "Chris Boden",
  8349. "email": "cboden@gmail.com",
  8350. "homepage": "https://cboden.dev/"
  8351. }
  8352. ],
  8353. "description": "Async DNS resolver for ReactPHP",
  8354. "keywords": [
  8355. "async",
  8356. "dns",
  8357. "dns-resolver",
  8358. "reactphp"
  8359. ],
  8360. "support": {
  8361. "issues": "https://github.com/reactphp/dns/issues",
  8362. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8363. },
  8364. "funding": [
  8365. {
  8366. "url": "https://opencollective.com/reactphp",
  8367. "type": "open_collective"
  8368. }
  8369. ],
  8370. "time": "2023-11-29T12:41:06+00:00"
  8371. },
  8372. {
  8373. "name": "react/event-loop",
  8374. "version": "v1.5.0",
  8375. "source": {
  8376. "type": "git",
  8377. "url": "https://github.com/reactphp/event-loop.git",
  8378. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8379. },
  8380. "dist": {
  8381. "type": "zip",
  8382. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8383. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8384. "shasum": ""
  8385. },
  8386. "require": {
  8387. "php": ">=5.3.0"
  8388. },
  8389. "require-dev": {
  8390. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8391. },
  8392. "suggest": {
  8393. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8394. },
  8395. "type": "library",
  8396. "autoload": {
  8397. "psr-4": {
  8398. "React\\EventLoop\\": "src/"
  8399. }
  8400. },
  8401. "notification-url": "https://packagist.org/downloads/",
  8402. "license": [
  8403. "MIT"
  8404. ],
  8405. "authors": [
  8406. {
  8407. "name": "Christian Lück",
  8408. "email": "christian@clue.engineering",
  8409. "homepage": "https://clue.engineering/"
  8410. },
  8411. {
  8412. "name": "Cees-Jan Kiewiet",
  8413. "email": "reactphp@ceesjankiewiet.nl",
  8414. "homepage": "https://wyrihaximus.net/"
  8415. },
  8416. {
  8417. "name": "Jan Sorgalla",
  8418. "email": "jsorgalla@gmail.com",
  8419. "homepage": "https://sorgalla.com/"
  8420. },
  8421. {
  8422. "name": "Chris Boden",
  8423. "email": "cboden@gmail.com",
  8424. "homepage": "https://cboden.dev/"
  8425. }
  8426. ],
  8427. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8428. "keywords": [
  8429. "asynchronous",
  8430. "event-loop"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/reactphp/event-loop/issues",
  8434. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://opencollective.com/reactphp",
  8439. "type": "open_collective"
  8440. }
  8441. ],
  8442. "time": "2023-11-13T13:48:05+00:00"
  8443. },
  8444. {
  8445. "name": "react/promise",
  8446. "version": "v3.2.0",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/reactphp/promise.git",
  8450. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8455. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "php": ">=7.1.0"
  8460. },
  8461. "require-dev": {
  8462. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8463. "phpunit/phpunit": "^9.6 || ^7.5"
  8464. },
  8465. "type": "library",
  8466. "autoload": {
  8467. "files": [
  8468. "src/functions_include.php"
  8469. ],
  8470. "psr-4": {
  8471. "React\\Promise\\": "src/"
  8472. }
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "MIT"
  8477. ],
  8478. "authors": [
  8479. {
  8480. "name": "Jan Sorgalla",
  8481. "email": "jsorgalla@gmail.com",
  8482. "homepage": "https://sorgalla.com/"
  8483. },
  8484. {
  8485. "name": "Christian Lück",
  8486. "email": "christian@clue.engineering",
  8487. "homepage": "https://clue.engineering/"
  8488. },
  8489. {
  8490. "name": "Cees-Jan Kiewiet",
  8491. "email": "reactphp@ceesjankiewiet.nl",
  8492. "homepage": "https://wyrihaximus.net/"
  8493. },
  8494. {
  8495. "name": "Chris Boden",
  8496. "email": "cboden@gmail.com",
  8497. "homepage": "https://cboden.dev/"
  8498. }
  8499. ],
  8500. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8501. "keywords": [
  8502. "promise",
  8503. "promises"
  8504. ],
  8505. "support": {
  8506. "issues": "https://github.com/reactphp/promise/issues",
  8507. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8508. },
  8509. "funding": [
  8510. {
  8511. "url": "https://opencollective.com/reactphp",
  8512. "type": "open_collective"
  8513. }
  8514. ],
  8515. "time": "2024-05-24T10:39:05+00:00"
  8516. },
  8517. {
  8518. "name": "react/socket",
  8519. "version": "v1.15.0",
  8520. "source": {
  8521. "type": "git",
  8522. "url": "https://github.com/reactphp/socket.git",
  8523. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8524. },
  8525. "dist": {
  8526. "type": "zip",
  8527. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8528. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8529. "shasum": ""
  8530. },
  8531. "require": {
  8532. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8533. "php": ">=5.3.0",
  8534. "react/dns": "^1.11",
  8535. "react/event-loop": "^1.2",
  8536. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8537. "react/stream": "^1.2"
  8538. },
  8539. "require-dev": {
  8540. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8541. "react/async": "^4 || ^3 || ^2",
  8542. "react/promise-stream": "^1.4",
  8543. "react/promise-timer": "^1.10"
  8544. },
  8545. "type": "library",
  8546. "autoload": {
  8547. "psr-4": {
  8548. "React\\Socket\\": "src/"
  8549. }
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Christian Lück",
  8558. "email": "christian@clue.engineering",
  8559. "homepage": "https://clue.engineering/"
  8560. },
  8561. {
  8562. "name": "Cees-Jan Kiewiet",
  8563. "email": "reactphp@ceesjankiewiet.nl",
  8564. "homepage": "https://wyrihaximus.net/"
  8565. },
  8566. {
  8567. "name": "Jan Sorgalla",
  8568. "email": "jsorgalla@gmail.com",
  8569. "homepage": "https://sorgalla.com/"
  8570. },
  8571. {
  8572. "name": "Chris Boden",
  8573. "email": "cboden@gmail.com",
  8574. "homepage": "https://cboden.dev/"
  8575. }
  8576. ],
  8577. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8578. "keywords": [
  8579. "Connection",
  8580. "Socket",
  8581. "async",
  8582. "reactphp",
  8583. "stream"
  8584. ],
  8585. "support": {
  8586. "issues": "https://github.com/reactphp/socket/issues",
  8587. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8588. },
  8589. "funding": [
  8590. {
  8591. "url": "https://opencollective.com/reactphp",
  8592. "type": "open_collective"
  8593. }
  8594. ],
  8595. "time": "2023-12-15T11:02:10+00:00"
  8596. },
  8597. {
  8598. "name": "react/stream",
  8599. "version": "v1.3.0",
  8600. "source": {
  8601. "type": "git",
  8602. "url": "https://github.com/reactphp/stream.git",
  8603. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8604. },
  8605. "dist": {
  8606. "type": "zip",
  8607. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8608. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8609. "shasum": ""
  8610. },
  8611. "require": {
  8612. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8613. "php": ">=5.3.8",
  8614. "react/event-loop": "^1.2"
  8615. },
  8616. "require-dev": {
  8617. "clue/stream-filter": "~1.2",
  8618. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8619. },
  8620. "type": "library",
  8621. "autoload": {
  8622. "psr-4": {
  8623. "React\\Stream\\": "src/"
  8624. }
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "MIT"
  8629. ],
  8630. "authors": [
  8631. {
  8632. "name": "Christian Lück",
  8633. "email": "christian@clue.engineering",
  8634. "homepage": "https://clue.engineering/"
  8635. },
  8636. {
  8637. "name": "Cees-Jan Kiewiet",
  8638. "email": "reactphp@ceesjankiewiet.nl",
  8639. "homepage": "https://wyrihaximus.net/"
  8640. },
  8641. {
  8642. "name": "Jan Sorgalla",
  8643. "email": "jsorgalla@gmail.com",
  8644. "homepage": "https://sorgalla.com/"
  8645. },
  8646. {
  8647. "name": "Chris Boden",
  8648. "email": "cboden@gmail.com",
  8649. "homepage": "https://cboden.dev/"
  8650. }
  8651. ],
  8652. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8653. "keywords": [
  8654. "event-driven",
  8655. "io",
  8656. "non-blocking",
  8657. "pipe",
  8658. "reactphp",
  8659. "readable",
  8660. "stream",
  8661. "writable"
  8662. ],
  8663. "support": {
  8664. "issues": "https://github.com/reactphp/stream/issues",
  8665. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8666. },
  8667. "funding": [
  8668. {
  8669. "url": "https://opencollective.com/reactphp",
  8670. "type": "open_collective"
  8671. }
  8672. ],
  8673. "time": "2023-06-16T10:52:11+00:00"
  8674. },
  8675. {
  8676. "name": "sebastian/cli-parser",
  8677. "version": "2.0.1",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8681. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8686. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=8.1"
  8691. },
  8692. "require-dev": {
  8693. "phpunit/phpunit": "^10.0"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-main": "2.0-dev"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "classmap": [
  8703. "src/"
  8704. ]
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "BSD-3-Clause"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Sebastian Bergmann",
  8713. "email": "sebastian@phpunit.de",
  8714. "role": "lead"
  8715. }
  8716. ],
  8717. "description": "Library for parsing CLI options",
  8718. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8719. "support": {
  8720. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8721. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8722. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8723. },
  8724. "funding": [
  8725. {
  8726. "url": "https://github.com/sebastianbergmann",
  8727. "type": "github"
  8728. }
  8729. ],
  8730. "time": "2024-03-02T07:12:49+00:00"
  8731. },
  8732. {
  8733. "name": "sebastian/code-unit",
  8734. "version": "2.0.0",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8738. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8743. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8744. "shasum": ""
  8745. },
  8746. "require": {
  8747. "php": ">=8.1"
  8748. },
  8749. "require-dev": {
  8750. "phpunit/phpunit": "^10.0"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-main": "2.0-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "classmap": [
  8760. "src/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "BSD-3-Clause"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Sebastian Bergmann",
  8770. "email": "sebastian@phpunit.de",
  8771. "role": "lead"
  8772. }
  8773. ],
  8774. "description": "Collection of value objects that represent the PHP code units",
  8775. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8776. "support": {
  8777. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8778. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8779. },
  8780. "funding": [
  8781. {
  8782. "url": "https://github.com/sebastianbergmann",
  8783. "type": "github"
  8784. }
  8785. ],
  8786. "time": "2023-02-03T06:58:43+00:00"
  8787. },
  8788. {
  8789. "name": "sebastian/code-unit-reverse-lookup",
  8790. "version": "3.0.0",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8794. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8799. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": ">=8.1"
  8804. },
  8805. "require-dev": {
  8806. "phpunit/phpunit": "^10.0"
  8807. },
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-main": "3.0-dev"
  8812. }
  8813. },
  8814. "autoload": {
  8815. "classmap": [
  8816. "src/"
  8817. ]
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "BSD-3-Clause"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Sebastian Bergmann",
  8826. "email": "sebastian@phpunit.de"
  8827. }
  8828. ],
  8829. "description": "Looks up which function or method a line of code belongs to",
  8830. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8831. "support": {
  8832. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8833. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8834. },
  8835. "funding": [
  8836. {
  8837. "url": "https://github.com/sebastianbergmann",
  8838. "type": "github"
  8839. }
  8840. ],
  8841. "time": "2023-02-03T06:59:15+00:00"
  8842. },
  8843. {
  8844. "name": "sebastian/comparator",
  8845. "version": "5.0.1",
  8846. "source": {
  8847. "type": "git",
  8848. "url": "https://github.com/sebastianbergmann/comparator.git",
  8849. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8850. },
  8851. "dist": {
  8852. "type": "zip",
  8853. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8854. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8855. "shasum": ""
  8856. },
  8857. "require": {
  8858. "ext-dom": "*",
  8859. "ext-mbstring": "*",
  8860. "php": ">=8.1",
  8861. "sebastian/diff": "^5.0",
  8862. "sebastian/exporter": "^5.0"
  8863. },
  8864. "require-dev": {
  8865. "phpunit/phpunit": "^10.3"
  8866. },
  8867. "type": "library",
  8868. "extra": {
  8869. "branch-alias": {
  8870. "dev-main": "5.0-dev"
  8871. }
  8872. },
  8873. "autoload": {
  8874. "classmap": [
  8875. "src/"
  8876. ]
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "license": [
  8880. "BSD-3-Clause"
  8881. ],
  8882. "authors": [
  8883. {
  8884. "name": "Sebastian Bergmann",
  8885. "email": "sebastian@phpunit.de"
  8886. },
  8887. {
  8888. "name": "Jeff Welch",
  8889. "email": "whatthejeff@gmail.com"
  8890. },
  8891. {
  8892. "name": "Volker Dusch",
  8893. "email": "github@wallbash.com"
  8894. },
  8895. {
  8896. "name": "Bernhard Schussek",
  8897. "email": "bschussek@2bepublished.at"
  8898. }
  8899. ],
  8900. "description": "Provides the functionality to compare PHP values for equality",
  8901. "homepage": "https://github.com/sebastianbergmann/comparator",
  8902. "keywords": [
  8903. "comparator",
  8904. "compare",
  8905. "equality"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8909. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8910. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/sebastianbergmann",
  8915. "type": "github"
  8916. }
  8917. ],
  8918. "time": "2023-08-14T13:18:12+00:00"
  8919. },
  8920. {
  8921. "name": "sebastian/complexity",
  8922. "version": "3.2.0",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/sebastianbergmann/complexity.git",
  8926. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8931. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "nikic/php-parser": "^4.18 || ^5.0",
  8936. "php": ">=8.1"
  8937. },
  8938. "require-dev": {
  8939. "phpunit/phpunit": "^10.0"
  8940. },
  8941. "type": "library",
  8942. "extra": {
  8943. "branch-alias": {
  8944. "dev-main": "3.2-dev"
  8945. }
  8946. },
  8947. "autoload": {
  8948. "classmap": [
  8949. "src/"
  8950. ]
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "BSD-3-Clause"
  8955. ],
  8956. "authors": [
  8957. {
  8958. "name": "Sebastian Bergmann",
  8959. "email": "sebastian@phpunit.de",
  8960. "role": "lead"
  8961. }
  8962. ],
  8963. "description": "Library for calculating the complexity of PHP code units",
  8964. "homepage": "https://github.com/sebastianbergmann/complexity",
  8965. "support": {
  8966. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8967. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8968. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8969. },
  8970. "funding": [
  8971. {
  8972. "url": "https://github.com/sebastianbergmann",
  8973. "type": "github"
  8974. }
  8975. ],
  8976. "time": "2023-12-21T08:37:17+00:00"
  8977. },
  8978. {
  8979. "name": "sebastian/diff",
  8980. "version": "5.1.1",
  8981. "source": {
  8982. "type": "git",
  8983. "url": "https://github.com/sebastianbergmann/diff.git",
  8984. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8985. },
  8986. "dist": {
  8987. "type": "zip",
  8988. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8989. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8990. "shasum": ""
  8991. },
  8992. "require": {
  8993. "php": ">=8.1"
  8994. },
  8995. "require-dev": {
  8996. "phpunit/phpunit": "^10.0",
  8997. "symfony/process": "^6.4"
  8998. },
  8999. "type": "library",
  9000. "extra": {
  9001. "branch-alias": {
  9002. "dev-main": "5.1-dev"
  9003. }
  9004. },
  9005. "autoload": {
  9006. "classmap": [
  9007. "src/"
  9008. ]
  9009. },
  9010. "notification-url": "https://packagist.org/downloads/",
  9011. "license": [
  9012. "BSD-3-Clause"
  9013. ],
  9014. "authors": [
  9015. {
  9016. "name": "Sebastian Bergmann",
  9017. "email": "sebastian@phpunit.de"
  9018. },
  9019. {
  9020. "name": "Kore Nordmann",
  9021. "email": "mail@kore-nordmann.de"
  9022. }
  9023. ],
  9024. "description": "Diff implementation",
  9025. "homepage": "https://github.com/sebastianbergmann/diff",
  9026. "keywords": [
  9027. "diff",
  9028. "udiff",
  9029. "unidiff",
  9030. "unified diff"
  9031. ],
  9032. "support": {
  9033. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9034. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9035. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9036. },
  9037. "funding": [
  9038. {
  9039. "url": "https://github.com/sebastianbergmann",
  9040. "type": "github"
  9041. }
  9042. ],
  9043. "time": "2024-03-02T07:15:17+00:00"
  9044. },
  9045. {
  9046. "name": "sebastian/environment",
  9047. "version": "6.1.0",
  9048. "source": {
  9049. "type": "git",
  9050. "url": "https://github.com/sebastianbergmann/environment.git",
  9051. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9052. },
  9053. "dist": {
  9054. "type": "zip",
  9055. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9056. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9057. "shasum": ""
  9058. },
  9059. "require": {
  9060. "php": ">=8.1"
  9061. },
  9062. "require-dev": {
  9063. "phpunit/phpunit": "^10.0"
  9064. },
  9065. "suggest": {
  9066. "ext-posix": "*"
  9067. },
  9068. "type": "library",
  9069. "extra": {
  9070. "branch-alias": {
  9071. "dev-main": "6.1-dev"
  9072. }
  9073. },
  9074. "autoload": {
  9075. "classmap": [
  9076. "src/"
  9077. ]
  9078. },
  9079. "notification-url": "https://packagist.org/downloads/",
  9080. "license": [
  9081. "BSD-3-Clause"
  9082. ],
  9083. "authors": [
  9084. {
  9085. "name": "Sebastian Bergmann",
  9086. "email": "sebastian@phpunit.de"
  9087. }
  9088. ],
  9089. "description": "Provides functionality to handle HHVM/PHP environments",
  9090. "homepage": "https://github.com/sebastianbergmann/environment",
  9091. "keywords": [
  9092. "Xdebug",
  9093. "environment",
  9094. "hhvm"
  9095. ],
  9096. "support": {
  9097. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9098. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9099. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9100. },
  9101. "funding": [
  9102. {
  9103. "url": "https://github.com/sebastianbergmann",
  9104. "type": "github"
  9105. }
  9106. ],
  9107. "time": "2024-03-23T08:47:14+00:00"
  9108. },
  9109. {
  9110. "name": "sebastian/exporter",
  9111. "version": "5.1.2",
  9112. "source": {
  9113. "type": "git",
  9114. "url": "https://github.com/sebastianbergmann/exporter.git",
  9115. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9116. },
  9117. "dist": {
  9118. "type": "zip",
  9119. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9120. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9121. "shasum": ""
  9122. },
  9123. "require": {
  9124. "ext-mbstring": "*",
  9125. "php": ">=8.1",
  9126. "sebastian/recursion-context": "^5.0"
  9127. },
  9128. "require-dev": {
  9129. "phpunit/phpunit": "^10.0"
  9130. },
  9131. "type": "library",
  9132. "extra": {
  9133. "branch-alias": {
  9134. "dev-main": "5.1-dev"
  9135. }
  9136. },
  9137. "autoload": {
  9138. "classmap": [
  9139. "src/"
  9140. ]
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "BSD-3-Clause"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Sebastian Bergmann",
  9149. "email": "sebastian@phpunit.de"
  9150. },
  9151. {
  9152. "name": "Jeff Welch",
  9153. "email": "whatthejeff@gmail.com"
  9154. },
  9155. {
  9156. "name": "Volker Dusch",
  9157. "email": "github@wallbash.com"
  9158. },
  9159. {
  9160. "name": "Adam Harvey",
  9161. "email": "aharvey@php.net"
  9162. },
  9163. {
  9164. "name": "Bernhard Schussek",
  9165. "email": "bschussek@gmail.com"
  9166. }
  9167. ],
  9168. "description": "Provides the functionality to export PHP variables for visualization",
  9169. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9170. "keywords": [
  9171. "export",
  9172. "exporter"
  9173. ],
  9174. "support": {
  9175. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9176. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9177. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9178. },
  9179. "funding": [
  9180. {
  9181. "url": "https://github.com/sebastianbergmann",
  9182. "type": "github"
  9183. }
  9184. ],
  9185. "time": "2024-03-02T07:17:12+00:00"
  9186. },
  9187. {
  9188. "name": "sebastian/global-state",
  9189. "version": "6.0.2",
  9190. "source": {
  9191. "type": "git",
  9192. "url": "https://github.com/sebastianbergmann/global-state.git",
  9193. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9194. },
  9195. "dist": {
  9196. "type": "zip",
  9197. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9198. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9199. "shasum": ""
  9200. },
  9201. "require": {
  9202. "php": ">=8.1",
  9203. "sebastian/object-reflector": "^3.0",
  9204. "sebastian/recursion-context": "^5.0"
  9205. },
  9206. "require-dev": {
  9207. "ext-dom": "*",
  9208. "phpunit/phpunit": "^10.0"
  9209. },
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-main": "6.0-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "classmap": [
  9218. "src/"
  9219. ]
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "BSD-3-Clause"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Sebastian Bergmann",
  9228. "email": "sebastian@phpunit.de"
  9229. }
  9230. ],
  9231. "description": "Snapshotting of global state",
  9232. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9233. "keywords": [
  9234. "global state"
  9235. ],
  9236. "support": {
  9237. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9238. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9239. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2024-03-02T07:19:19+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/lines-of-code",
  9251. "version": "2.0.2",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9255. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9260. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "nikic/php-parser": "^4.18 || ^5.0",
  9265. "php": ">=8.1"
  9266. },
  9267. "require-dev": {
  9268. "phpunit/phpunit": "^10.0"
  9269. },
  9270. "type": "library",
  9271. "extra": {
  9272. "branch-alias": {
  9273. "dev-main": "2.0-dev"
  9274. }
  9275. },
  9276. "autoload": {
  9277. "classmap": [
  9278. "src/"
  9279. ]
  9280. },
  9281. "notification-url": "https://packagist.org/downloads/",
  9282. "license": [
  9283. "BSD-3-Clause"
  9284. ],
  9285. "authors": [
  9286. {
  9287. "name": "Sebastian Bergmann",
  9288. "email": "sebastian@phpunit.de",
  9289. "role": "lead"
  9290. }
  9291. ],
  9292. "description": "Library for counting the lines of code in PHP source code",
  9293. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9294. "support": {
  9295. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9296. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9297. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9298. },
  9299. "funding": [
  9300. {
  9301. "url": "https://github.com/sebastianbergmann",
  9302. "type": "github"
  9303. }
  9304. ],
  9305. "time": "2023-12-21T08:38:20+00:00"
  9306. },
  9307. {
  9308. "name": "sebastian/object-enumerator",
  9309. "version": "5.0.0",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9313. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9318. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "php": ">=8.1",
  9323. "sebastian/object-reflector": "^3.0",
  9324. "sebastian/recursion-context": "^5.0"
  9325. },
  9326. "require-dev": {
  9327. "phpunit/phpunit": "^10.0"
  9328. },
  9329. "type": "library",
  9330. "extra": {
  9331. "branch-alias": {
  9332. "dev-main": "5.0-dev"
  9333. }
  9334. },
  9335. "autoload": {
  9336. "classmap": [
  9337. "src/"
  9338. ]
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "BSD-3-Clause"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Sebastian Bergmann",
  9347. "email": "sebastian@phpunit.de"
  9348. }
  9349. ],
  9350. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9351. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9352. "support": {
  9353. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9354. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9355. },
  9356. "funding": [
  9357. {
  9358. "url": "https://github.com/sebastianbergmann",
  9359. "type": "github"
  9360. }
  9361. ],
  9362. "time": "2023-02-03T07:08:32+00:00"
  9363. },
  9364. {
  9365. "name": "sebastian/object-reflector",
  9366. "version": "3.0.0",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9370. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9375. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": ">=8.1"
  9380. },
  9381. "require-dev": {
  9382. "phpunit/phpunit": "^10.0"
  9383. },
  9384. "type": "library",
  9385. "extra": {
  9386. "branch-alias": {
  9387. "dev-main": "3.0-dev"
  9388. }
  9389. },
  9390. "autoload": {
  9391. "classmap": [
  9392. "src/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "BSD-3-Clause"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Sebastian Bergmann",
  9402. "email": "sebastian@phpunit.de"
  9403. }
  9404. ],
  9405. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9406. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9407. "support": {
  9408. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9409. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2023-02-03T07:06:18+00:00"
  9418. },
  9419. {
  9420. "name": "sebastian/recursion-context",
  9421. "version": "5.0.0",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9425. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9430. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "php": ">=8.1"
  9435. },
  9436. "require-dev": {
  9437. "phpunit/phpunit": "^10.0"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-main": "5.0-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "classmap": [
  9447. "src/"
  9448. ]
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "BSD-3-Clause"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "Sebastian Bergmann",
  9457. "email": "sebastian@phpunit.de"
  9458. },
  9459. {
  9460. "name": "Jeff Welch",
  9461. "email": "whatthejeff@gmail.com"
  9462. },
  9463. {
  9464. "name": "Adam Harvey",
  9465. "email": "aharvey@php.net"
  9466. }
  9467. ],
  9468. "description": "Provides functionality to recursively process PHP variables",
  9469. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9470. "support": {
  9471. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9472. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9473. },
  9474. "funding": [
  9475. {
  9476. "url": "https://github.com/sebastianbergmann",
  9477. "type": "github"
  9478. }
  9479. ],
  9480. "time": "2023-02-03T07:05:40+00:00"
  9481. },
  9482. {
  9483. "name": "sebastian/type",
  9484. "version": "4.0.0",
  9485. "source": {
  9486. "type": "git",
  9487. "url": "https://github.com/sebastianbergmann/type.git",
  9488. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9489. },
  9490. "dist": {
  9491. "type": "zip",
  9492. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9493. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9494. "shasum": ""
  9495. },
  9496. "require": {
  9497. "php": ">=8.1"
  9498. },
  9499. "require-dev": {
  9500. "phpunit/phpunit": "^10.0"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "branch-alias": {
  9505. "dev-main": "4.0-dev"
  9506. }
  9507. },
  9508. "autoload": {
  9509. "classmap": [
  9510. "src/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "BSD-3-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Sebastian Bergmann",
  9520. "email": "sebastian@phpunit.de",
  9521. "role": "lead"
  9522. }
  9523. ],
  9524. "description": "Collection of value objects that represent the types of the PHP type system",
  9525. "homepage": "https://github.com/sebastianbergmann/type",
  9526. "support": {
  9527. "issues": "https://github.com/sebastianbergmann/type/issues",
  9528. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9529. },
  9530. "funding": [
  9531. {
  9532. "url": "https://github.com/sebastianbergmann",
  9533. "type": "github"
  9534. }
  9535. ],
  9536. "time": "2023-02-03T07:10:45+00:00"
  9537. },
  9538. {
  9539. "name": "sebastian/version",
  9540. "version": "4.0.1",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/sebastianbergmann/version.git",
  9544. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9549. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9550. "shasum": ""
  9551. },
  9552. "require": {
  9553. "php": ">=8.1"
  9554. },
  9555. "type": "library",
  9556. "extra": {
  9557. "branch-alias": {
  9558. "dev-main": "4.0-dev"
  9559. }
  9560. },
  9561. "autoload": {
  9562. "classmap": [
  9563. "src/"
  9564. ]
  9565. },
  9566. "notification-url": "https://packagist.org/downloads/",
  9567. "license": [
  9568. "BSD-3-Clause"
  9569. ],
  9570. "authors": [
  9571. {
  9572. "name": "Sebastian Bergmann",
  9573. "email": "sebastian@phpunit.de",
  9574. "role": "lead"
  9575. }
  9576. ],
  9577. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9578. "homepage": "https://github.com/sebastianbergmann/version",
  9579. "support": {
  9580. "issues": "https://github.com/sebastianbergmann/version/issues",
  9581. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://github.com/sebastianbergmann",
  9586. "type": "github"
  9587. }
  9588. ],
  9589. "time": "2023-02-07T11:34:05+00:00"
  9590. },
  9591. {
  9592. "name": "swoole/ide-helper",
  9593. "version": "5.1.2",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/swoole/ide-helper.git",
  9597. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9602. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9603. "shasum": ""
  9604. },
  9605. "type": "library",
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "Apache-2.0"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Team Swoole",
  9613. "email": "team@swoole.com"
  9614. }
  9615. ],
  9616. "description": "IDE help files for Swoole.",
  9617. "support": {
  9618. "issues": "https://github.com/swoole/ide-helper/issues",
  9619. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9620. },
  9621. "time": "2024-02-01T22:28:11+00:00"
  9622. },
  9623. {
  9624. "name": "symfony/event-dispatcher",
  9625. "version": "v6.4.8",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/symfony/event-dispatcher.git",
  9629. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9634. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "php": ">=8.1",
  9639. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9640. },
  9641. "conflict": {
  9642. "symfony/dependency-injection": "<5.4",
  9643. "symfony/service-contracts": "<2.5"
  9644. },
  9645. "provide": {
  9646. "psr/event-dispatcher-implementation": "1.0",
  9647. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9648. },
  9649. "require-dev": {
  9650. "psr/log": "^1|^2|^3",
  9651. "symfony/config": "^5.4|^6.0|^7.0",
  9652. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9653. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9654. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9655. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9656. "symfony/service-contracts": "^2.5|^3",
  9657. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9658. },
  9659. "type": "library",
  9660. "autoload": {
  9661. "psr-4": {
  9662. "Symfony\\Component\\EventDispatcher\\": ""
  9663. },
  9664. "exclude-from-classmap": [
  9665. "/Tests/"
  9666. ]
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "MIT"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Fabien Potencier",
  9675. "email": "fabien@symfony.com"
  9676. },
  9677. {
  9678. "name": "Symfony Community",
  9679. "homepage": "https://symfony.com/contributors"
  9680. }
  9681. ],
  9682. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9683. "homepage": "https://symfony.com",
  9684. "support": {
  9685. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9686. },
  9687. "funding": [
  9688. {
  9689. "url": "https://symfony.com/sponsor",
  9690. "type": "custom"
  9691. },
  9692. {
  9693. "url": "https://github.com/fabpot",
  9694. "type": "github"
  9695. },
  9696. {
  9697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9698. "type": "tidelift"
  9699. }
  9700. ],
  9701. "time": "2024-05-31T14:49:08+00:00"
  9702. },
  9703. {
  9704. "name": "symfony/event-dispatcher-contracts",
  9705. "version": "v3.5.0",
  9706. "source": {
  9707. "type": "git",
  9708. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9709. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9710. },
  9711. "dist": {
  9712. "type": "zip",
  9713. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9714. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9715. "shasum": ""
  9716. },
  9717. "require": {
  9718. "php": ">=8.1",
  9719. "psr/event-dispatcher": "^1"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "branch-alias": {
  9724. "dev-main": "3.5-dev"
  9725. },
  9726. "thanks": {
  9727. "name": "symfony/contracts",
  9728. "url": "https://github.com/symfony/contracts"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Symfony\\Contracts\\EventDispatcher\\": ""
  9734. }
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "MIT"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Nicolas Grekas",
  9743. "email": "p@tchwork.com"
  9744. },
  9745. {
  9746. "name": "Symfony Community",
  9747. "homepage": "https://symfony.com/contributors"
  9748. }
  9749. ],
  9750. "description": "Generic abstractions related to dispatching event",
  9751. "homepage": "https://symfony.com",
  9752. "keywords": [
  9753. "abstractions",
  9754. "contracts",
  9755. "decoupling",
  9756. "interfaces",
  9757. "interoperability",
  9758. "standards"
  9759. ],
  9760. "support": {
  9761. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9762. },
  9763. "funding": [
  9764. {
  9765. "url": "https://symfony.com/sponsor",
  9766. "type": "custom"
  9767. },
  9768. {
  9769. "url": "https://github.com/fabpot",
  9770. "type": "github"
  9771. },
  9772. {
  9773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9774. "type": "tidelift"
  9775. }
  9776. ],
  9777. "time": "2024-04-18T09:32:20+00:00"
  9778. },
  9779. {
  9780. "name": "symfony/filesystem",
  9781. "version": "v6.4.8",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/symfony/filesystem.git",
  9785. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9790. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9791. "shasum": ""
  9792. },
  9793. "require": {
  9794. "php": ">=8.1",
  9795. "symfony/polyfill-ctype": "~1.8",
  9796. "symfony/polyfill-mbstring": "~1.8"
  9797. },
  9798. "require-dev": {
  9799. "symfony/process": "^5.4|^6.4|^7.0"
  9800. },
  9801. "type": "library",
  9802. "autoload": {
  9803. "psr-4": {
  9804. "Symfony\\Component\\Filesystem\\": ""
  9805. },
  9806. "exclude-from-classmap": [
  9807. "/Tests/"
  9808. ]
  9809. },
  9810. "notification-url": "https://packagist.org/downloads/",
  9811. "license": [
  9812. "MIT"
  9813. ],
  9814. "authors": [
  9815. {
  9816. "name": "Fabien Potencier",
  9817. "email": "fabien@symfony.com"
  9818. },
  9819. {
  9820. "name": "Symfony Community",
  9821. "homepage": "https://symfony.com/contributors"
  9822. }
  9823. ],
  9824. "description": "Provides basic utilities for the filesystem",
  9825. "homepage": "https://symfony.com",
  9826. "support": {
  9827. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  9828. },
  9829. "funding": [
  9830. {
  9831. "url": "https://symfony.com/sponsor",
  9832. "type": "custom"
  9833. },
  9834. {
  9835. "url": "https://github.com/fabpot",
  9836. "type": "github"
  9837. },
  9838. {
  9839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9840. "type": "tidelift"
  9841. }
  9842. ],
  9843. "time": "2024-05-31T14:49:08+00:00"
  9844. },
  9845. {
  9846. "name": "symfony/http-foundation",
  9847. "version": "v6.4.8",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/symfony/http-foundation.git",
  9851. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  9856. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=8.1",
  9861. "symfony/deprecation-contracts": "^2.5|^3",
  9862. "symfony/polyfill-mbstring": "~1.1",
  9863. "symfony/polyfill-php83": "^1.27"
  9864. },
  9865. "conflict": {
  9866. "symfony/cache": "<6.3"
  9867. },
  9868. "require-dev": {
  9869. "doctrine/dbal": "^2.13.1|^3|^4",
  9870. "predis/predis": "^1.1|^2.0",
  9871. "symfony/cache": "^6.3|^7.0",
  9872. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9873. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9874. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9875. "symfony/mime": "^5.4|^6.0|^7.0",
  9876. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9877. },
  9878. "type": "library",
  9879. "autoload": {
  9880. "psr-4": {
  9881. "Symfony\\Component\\HttpFoundation\\": ""
  9882. },
  9883. "exclude-from-classmap": [
  9884. "/Tests/"
  9885. ]
  9886. },
  9887. "notification-url": "https://packagist.org/downloads/",
  9888. "license": [
  9889. "MIT"
  9890. ],
  9891. "authors": [
  9892. {
  9893. "name": "Fabien Potencier",
  9894. "email": "fabien@symfony.com"
  9895. },
  9896. {
  9897. "name": "Symfony Community",
  9898. "homepage": "https://symfony.com/contributors"
  9899. }
  9900. ],
  9901. "description": "Defines an object-oriented layer for the HTTP specification",
  9902. "homepage": "https://symfony.com",
  9903. "support": {
  9904. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://symfony.com/sponsor",
  9909. "type": "custom"
  9910. },
  9911. {
  9912. "url": "https://github.com/fabpot",
  9913. "type": "github"
  9914. },
  9915. {
  9916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9917. "type": "tidelift"
  9918. }
  9919. ],
  9920. "time": "2024-05-31T14:49:08+00:00"
  9921. },
  9922. {
  9923. "name": "symfony/options-resolver",
  9924. "version": "v6.4.8",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/symfony/options-resolver.git",
  9928. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  9933. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=8.1",
  9938. "symfony/deprecation-contracts": "^2.5|^3"
  9939. },
  9940. "type": "library",
  9941. "autoload": {
  9942. "psr-4": {
  9943. "Symfony\\Component\\OptionsResolver\\": ""
  9944. },
  9945. "exclude-from-classmap": [
  9946. "/Tests/"
  9947. ]
  9948. },
  9949. "notification-url": "https://packagist.org/downloads/",
  9950. "license": [
  9951. "MIT"
  9952. ],
  9953. "authors": [
  9954. {
  9955. "name": "Fabien Potencier",
  9956. "email": "fabien@symfony.com"
  9957. },
  9958. {
  9959. "name": "Symfony Community",
  9960. "homepage": "https://symfony.com/contributors"
  9961. }
  9962. ],
  9963. "description": "Provides an improved replacement for the array_replace PHP function",
  9964. "homepage": "https://symfony.com",
  9965. "keywords": [
  9966. "config",
  9967. "configuration",
  9968. "options"
  9969. ],
  9970. "support": {
  9971. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  9972. },
  9973. "funding": [
  9974. {
  9975. "url": "https://symfony.com/sponsor",
  9976. "type": "custom"
  9977. },
  9978. {
  9979. "url": "https://github.com/fabpot",
  9980. "type": "github"
  9981. },
  9982. {
  9983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9984. "type": "tidelift"
  9985. }
  9986. ],
  9987. "time": "2024-05-31T14:49:08+00:00"
  9988. },
  9989. {
  9990. "name": "symfony/polyfill-php81",
  9991. "version": "v1.29.0",
  9992. "source": {
  9993. "type": "git",
  9994. "url": "https://github.com/symfony/polyfill-php81.git",
  9995. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  9996. },
  9997. "dist": {
  9998. "type": "zip",
  9999. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10000. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10001. "shasum": ""
  10002. },
  10003. "require": {
  10004. "php": ">=7.1"
  10005. },
  10006. "type": "library",
  10007. "extra": {
  10008. "thanks": {
  10009. "name": "symfony/polyfill",
  10010. "url": "https://github.com/symfony/polyfill"
  10011. }
  10012. },
  10013. "autoload": {
  10014. "files": [
  10015. "bootstrap.php"
  10016. ],
  10017. "psr-4": {
  10018. "Symfony\\Polyfill\\Php81\\": ""
  10019. },
  10020. "classmap": [
  10021. "Resources/stubs"
  10022. ]
  10023. },
  10024. "notification-url": "https://packagist.org/downloads/",
  10025. "license": [
  10026. "MIT"
  10027. ],
  10028. "authors": [
  10029. {
  10030. "name": "Nicolas Grekas",
  10031. "email": "p@tchwork.com"
  10032. },
  10033. {
  10034. "name": "Symfony Community",
  10035. "homepage": "https://symfony.com/contributors"
  10036. }
  10037. ],
  10038. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10039. "homepage": "https://symfony.com",
  10040. "keywords": [
  10041. "compatibility",
  10042. "polyfill",
  10043. "portable",
  10044. "shim"
  10045. ],
  10046. "support": {
  10047. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10048. },
  10049. "funding": [
  10050. {
  10051. "url": "https://symfony.com/sponsor",
  10052. "type": "custom"
  10053. },
  10054. {
  10055. "url": "https://github.com/fabpot",
  10056. "type": "github"
  10057. },
  10058. {
  10059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10060. "type": "tidelift"
  10061. }
  10062. ],
  10063. "time": "2024-01-29T20:11:03+00:00"
  10064. },
  10065. {
  10066. "name": "symfony/polyfill-php83",
  10067. "version": "v1.29.0",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/symfony/polyfill-php83.git",
  10071. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10076. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10077. "shasum": ""
  10078. },
  10079. "require": {
  10080. "php": ">=7.1",
  10081. "symfony/polyfill-php80": "^1.14"
  10082. },
  10083. "type": "library",
  10084. "extra": {
  10085. "thanks": {
  10086. "name": "symfony/polyfill",
  10087. "url": "https://github.com/symfony/polyfill"
  10088. }
  10089. },
  10090. "autoload": {
  10091. "files": [
  10092. "bootstrap.php"
  10093. ],
  10094. "psr-4": {
  10095. "Symfony\\Polyfill\\Php83\\": ""
  10096. },
  10097. "classmap": [
  10098. "Resources/stubs"
  10099. ]
  10100. },
  10101. "notification-url": "https://packagist.org/downloads/",
  10102. "license": [
  10103. "MIT"
  10104. ],
  10105. "authors": [
  10106. {
  10107. "name": "Nicolas Grekas",
  10108. "email": "p@tchwork.com"
  10109. },
  10110. {
  10111. "name": "Symfony Community",
  10112. "homepage": "https://symfony.com/contributors"
  10113. }
  10114. ],
  10115. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10116. "homepage": "https://symfony.com",
  10117. "keywords": [
  10118. "compatibility",
  10119. "polyfill",
  10120. "portable",
  10121. "shim"
  10122. ],
  10123. "support": {
  10124. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://symfony.com/sponsor",
  10129. "type": "custom"
  10130. },
  10131. {
  10132. "url": "https://github.com/fabpot",
  10133. "type": "github"
  10134. },
  10135. {
  10136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10137. "type": "tidelift"
  10138. }
  10139. ],
  10140. "time": "2024-01-29T20:11:03+00:00"
  10141. },
  10142. {
  10143. "name": "symfony/process",
  10144. "version": "v6.4.8",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/symfony/process.git",
  10148. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10153. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10154. "shasum": ""
  10155. },
  10156. "require": {
  10157. "php": ">=8.1"
  10158. },
  10159. "type": "library",
  10160. "autoload": {
  10161. "psr-4": {
  10162. "Symfony\\Component\\Process\\": ""
  10163. },
  10164. "exclude-from-classmap": [
  10165. "/Tests/"
  10166. ]
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "MIT"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "Fabien Potencier",
  10175. "email": "fabien@symfony.com"
  10176. },
  10177. {
  10178. "name": "Symfony Community",
  10179. "homepage": "https://symfony.com/contributors"
  10180. }
  10181. ],
  10182. "description": "Executes commands in sub-processes",
  10183. "homepage": "https://symfony.com",
  10184. "support": {
  10185. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10186. },
  10187. "funding": [
  10188. {
  10189. "url": "https://symfony.com/sponsor",
  10190. "type": "custom"
  10191. },
  10192. {
  10193. "url": "https://github.com/fabpot",
  10194. "type": "github"
  10195. },
  10196. {
  10197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10198. "type": "tidelift"
  10199. }
  10200. ],
  10201. "time": "2024-05-31T14:49:08+00:00"
  10202. },
  10203. {
  10204. "name": "symfony/stopwatch",
  10205. "version": "v6.4.8",
  10206. "source": {
  10207. "type": "git",
  10208. "url": "https://github.com/symfony/stopwatch.git",
  10209. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10210. },
  10211. "dist": {
  10212. "type": "zip",
  10213. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10214. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10215. "shasum": ""
  10216. },
  10217. "require": {
  10218. "php": ">=8.1",
  10219. "symfony/service-contracts": "^2.5|^3"
  10220. },
  10221. "type": "library",
  10222. "autoload": {
  10223. "psr-4": {
  10224. "Symfony\\Component\\Stopwatch\\": ""
  10225. },
  10226. "exclude-from-classmap": [
  10227. "/Tests/"
  10228. ]
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "MIT"
  10233. ],
  10234. "authors": [
  10235. {
  10236. "name": "Fabien Potencier",
  10237. "email": "fabien@symfony.com"
  10238. },
  10239. {
  10240. "name": "Symfony Community",
  10241. "homepage": "https://symfony.com/contributors"
  10242. }
  10243. ],
  10244. "description": "Provides a way to profile code",
  10245. "homepage": "https://symfony.com",
  10246. "support": {
  10247. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10248. },
  10249. "funding": [
  10250. {
  10251. "url": "https://symfony.com/sponsor",
  10252. "type": "custom"
  10253. },
  10254. {
  10255. "url": "https://github.com/fabpot",
  10256. "type": "github"
  10257. },
  10258. {
  10259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10260. "type": "tidelift"
  10261. }
  10262. ],
  10263. "time": "2024-05-31T14:49:08+00:00"
  10264. },
  10265. {
  10266. "name": "theseer/tokenizer",
  10267. "version": "1.2.3",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/theseer/tokenizer.git",
  10271. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10276. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10277. "shasum": ""
  10278. },
  10279. "require": {
  10280. "ext-dom": "*",
  10281. "ext-tokenizer": "*",
  10282. "ext-xmlwriter": "*",
  10283. "php": "^7.2 || ^8.0"
  10284. },
  10285. "type": "library",
  10286. "autoload": {
  10287. "classmap": [
  10288. "src/"
  10289. ]
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "BSD-3-Clause"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Arne Blankerts",
  10298. "email": "arne@blankerts.de",
  10299. "role": "Developer"
  10300. }
  10301. ],
  10302. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10303. "support": {
  10304. "issues": "https://github.com/theseer/tokenizer/issues",
  10305. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10306. },
  10307. "funding": [
  10308. {
  10309. "url": "https://github.com/theseer",
  10310. "type": "github"
  10311. }
  10312. ],
  10313. "time": "2024-03-03T12:36:25+00:00"
  10314. }
  10315. ],
  10316. "aliases": [],
  10317. "minimum-stability": "dev",
  10318. "stability-flags": {},
  10319. "prefer-stable": true,
  10320. "prefer-lowest": false,
  10321. "platform": {
  10322. "php": ">=8.1"
  10323. },
  10324. "platform-dev": {},
  10325. "plugin-api-version": "2.6.0"
  10326. }