composer.lock 397 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205
  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": "9ca8016d57cfc223d0b85a820c0fc8bb",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  20. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^10.1",
  29. "vimeo/psalm": "5.16.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.12.1"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2023-11-29T23:19:16+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "doctrine/annotations",
  140. "version": "2.0.1",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/doctrine/annotations.git",
  144. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "doctrine/lexer": "^2 || ^3",
  154. "ext-tokenizer": "*",
  155. "php": "^7.2 || ^8.0",
  156. "psr/cache": "^1 || ^2 || ^3"
  157. },
  158. "require-dev": {
  159. "doctrine/cache": "^2.0",
  160. "doctrine/coding-standard": "^10",
  161. "phpstan/phpstan": "^1.8.0",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  163. "symfony/cache": "^5.4 || ^6",
  164. "vimeo/psalm": "^4.10"
  165. },
  166. "suggest": {
  167. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "Docblock Annotations Parser",
  202. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  203. "keywords": [
  204. "annotations",
  205. "docblock",
  206. "parser"
  207. ],
  208. "support": {
  209. "issues": "https://github.com/doctrine/annotations/issues",
  210. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  211. },
  212. "time": "2023-02-02T22:02:53+00:00"
  213. },
  214. {
  215. "name": "doctrine/inflector",
  216. "version": "2.0.10",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/doctrine/inflector.git",
  220. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  225. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "doctrine/coding-standard": "^11.0",
  233. "phpstan/phpstan": "^1.8",
  234. "phpstan/phpstan-phpunit": "^1.1",
  235. "phpstan/phpstan-strict-rules": "^1.3",
  236. "phpunit/phpunit": "^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.25 || ^5.4"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com"
  265. },
  266. {
  267. "name": "Johannes Schmitt",
  268. "email": "schmittjoh@gmail.com"
  269. }
  270. ],
  271. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  272. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  273. "keywords": [
  274. "inflection",
  275. "inflector",
  276. "lowercase",
  277. "manipulation",
  278. "php",
  279. "plural",
  280. "singular",
  281. "strings",
  282. "uppercase",
  283. "words"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/inflector/issues",
  287. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2024-02-18T20:23:39+00:00"
  304. },
  305. {
  306. "name": "doctrine/instantiator",
  307. "version": "1.5.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/instantiator.git",
  311. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  316. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^11",
  324. "ext-pdo": "*",
  325. "ext-phar": "*",
  326. "phpbench/phpbench": "^0.16 || ^1",
  327. "phpstan/phpstan": "^1.4",
  328. "phpstan/phpstan-phpunit": "^1",
  329. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  330. "vimeo/psalm": "^4.30 || ^5.4"
  331. },
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Marco Pivetta",
  345. "email": "ocramius@gmail.com",
  346. "homepage": "https://ocramius.github.io/"
  347. }
  348. ],
  349. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  350. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  351. "keywords": [
  352. "constructor",
  353. "instantiate"
  354. ],
  355. "support": {
  356. "issues": "https://github.com/doctrine/instantiator/issues",
  357. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  358. },
  359. "funding": [
  360. {
  361. "url": "https://www.doctrine-project.org/sponsorship.html",
  362. "type": "custom"
  363. },
  364. {
  365. "url": "https://www.patreon.com/phpdoctrine",
  366. "type": "patreon"
  367. },
  368. {
  369. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  370. "type": "tidelift"
  371. }
  372. ],
  373. "time": "2022-12-30T00:15:36+00:00"
  374. },
  375. {
  376. "name": "doctrine/lexer",
  377. "version": "3.0.1",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/doctrine/lexer.git",
  381. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  386. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "php": "^8.1"
  391. },
  392. "require-dev": {
  393. "doctrine/coding-standard": "^12",
  394. "phpstan/phpstan": "^1.10",
  395. "phpunit/phpunit": "^10.5",
  396. "psalm/plugin-phpunit": "^0.18.3",
  397. "vimeo/psalm": "^5.21"
  398. },
  399. "type": "library",
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/doctrine/lexer/issues",
  434. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://www.doctrine-project.org/sponsorship.html",
  439. "type": "custom"
  440. },
  441. {
  442. "url": "https://www.patreon.com/phpdoctrine",
  443. "type": "patreon"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2024-02-05T11:56:58+00:00"
  451. },
  452. {
  453. "name": "fig/http-message-util",
  454. "version": "1.1.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/php-fig/http-message-util.git",
  458. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  463. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^5.3 || ^7.0 || ^8.0"
  468. },
  469. "suggest": {
  470. "psr/http-message": "The package containing the PSR-7 interfaces"
  471. },
  472. "type": "library",
  473. "extra": {
  474. "branch-alias": {
  475. "dev-master": "1.1.x-dev"
  476. }
  477. },
  478. "autoload": {
  479. "psr-4": {
  480. "Fig\\Http\\Message\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "PHP-FIG",
  490. "homepage": "https://www.php-fig.org/"
  491. }
  492. ],
  493. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  494. "keywords": [
  495. "http",
  496. "http-message",
  497. "psr",
  498. "psr-7",
  499. "request",
  500. "response"
  501. ],
  502. "support": {
  503. "issues": "https://github.com/php-fig/http-message-util/issues",
  504. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  505. },
  506. "time": "2020-11-24T22:02:12+00:00"
  507. },
  508. {
  509. "name": "graham-campbell/result-type",
  510. "version": "v1.1.2",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  514. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  519. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": "^7.2.5 || ^8.0",
  524. "phpoption/phpoption": "^1.9.2"
  525. },
  526. "require-dev": {
  527. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  528. },
  529. "type": "library",
  530. "autoload": {
  531. "psr-4": {
  532. "GrahamCampbell\\ResultType\\": "src/"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Graham Campbell",
  542. "email": "hello@gjcampbell.co.uk",
  543. "homepage": "https://github.com/GrahamCampbell"
  544. }
  545. ],
  546. "description": "An Implementation Of The Result Type",
  547. "keywords": [
  548. "Graham Campbell",
  549. "GrahamCampbell",
  550. "Result Type",
  551. "Result-Type",
  552. "result"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  556. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  557. },
  558. "funding": [
  559. {
  560. "url": "https://github.com/GrahamCampbell",
  561. "type": "github"
  562. },
  563. {
  564. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  565. "type": "tidelift"
  566. }
  567. ],
  568. "time": "2023-11-12T22:16:48+00:00"
  569. },
  570. {
  571. "name": "guzzlehttp/guzzle",
  572. "version": "7.8.1",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/guzzle/guzzle.git",
  576. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  581. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "ext-json": "*",
  586. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  587. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  588. "php": "^7.2.5 || ^8.0",
  589. "psr/http-client": "^1.0",
  590. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  591. },
  592. "provide": {
  593. "psr/http-client-implementation": "1.0"
  594. },
  595. "require-dev": {
  596. "bamarni/composer-bin-plugin": "^1.8.2",
  597. "ext-curl": "*",
  598. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  599. "php-http/message-factory": "^1.1",
  600. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  601. "psr/log": "^1.1 || ^2.0 || ^3.0"
  602. },
  603. "suggest": {
  604. "ext-curl": "Required for CURL handler support",
  605. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  606. "psr/log": "Required for using the Log middleware"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "bamarni-bin": {
  611. "bin-links": true,
  612. "forward-command": false
  613. }
  614. },
  615. "autoload": {
  616. "files": [
  617. "src/functions_include.php"
  618. ],
  619. "psr-4": {
  620. "GuzzleHttp\\": "src/"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "Graham Campbell",
  630. "email": "hello@gjcampbell.co.uk",
  631. "homepage": "https://github.com/GrahamCampbell"
  632. },
  633. {
  634. "name": "Michael Dowling",
  635. "email": "mtdowling@gmail.com",
  636. "homepage": "https://github.com/mtdowling"
  637. },
  638. {
  639. "name": "Jeremy Lindblom",
  640. "email": "jeremeamia@gmail.com",
  641. "homepage": "https://github.com/jeremeamia"
  642. },
  643. {
  644. "name": "George Mponos",
  645. "email": "gmponos@gmail.com",
  646. "homepage": "https://github.com/gmponos"
  647. },
  648. {
  649. "name": "Tobias Nyholm",
  650. "email": "tobias.nyholm@gmail.com",
  651. "homepage": "https://github.com/Nyholm"
  652. },
  653. {
  654. "name": "Márk Sági-Kazár",
  655. "email": "mark.sagikazar@gmail.com",
  656. "homepage": "https://github.com/sagikazarmark"
  657. },
  658. {
  659. "name": "Tobias Schultze",
  660. "email": "webmaster@tubo-world.de",
  661. "homepage": "https://github.com/Tobion"
  662. }
  663. ],
  664. "description": "Guzzle is a PHP HTTP client library",
  665. "keywords": [
  666. "client",
  667. "curl",
  668. "framework",
  669. "http",
  670. "http client",
  671. "psr-18",
  672. "psr-7",
  673. "rest",
  674. "web service"
  675. ],
  676. "support": {
  677. "issues": "https://github.com/guzzle/guzzle/issues",
  678. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  679. },
  680. "funding": [
  681. {
  682. "url": "https://github.com/GrahamCampbell",
  683. "type": "github"
  684. },
  685. {
  686. "url": "https://github.com/Nyholm",
  687. "type": "github"
  688. },
  689. {
  690. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  691. "type": "tidelift"
  692. }
  693. ],
  694. "time": "2023-12-03T20:35:24+00:00"
  695. },
  696. {
  697. "name": "guzzlehttp/promises",
  698. "version": "2.0.2",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/guzzle/promises.git",
  702. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  707. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  708. "shasum": ""
  709. },
  710. "require": {
  711. "php": "^7.2.5 || ^8.0"
  712. },
  713. "require-dev": {
  714. "bamarni/composer-bin-plugin": "^1.8.2",
  715. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  716. },
  717. "type": "library",
  718. "extra": {
  719. "bamarni-bin": {
  720. "bin-links": true,
  721. "forward-command": false
  722. }
  723. },
  724. "autoload": {
  725. "psr-4": {
  726. "GuzzleHttp\\Promise\\": "src/"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "MIT"
  732. ],
  733. "authors": [
  734. {
  735. "name": "Graham Campbell",
  736. "email": "hello@gjcampbell.co.uk",
  737. "homepage": "https://github.com/GrahamCampbell"
  738. },
  739. {
  740. "name": "Michael Dowling",
  741. "email": "mtdowling@gmail.com",
  742. "homepage": "https://github.com/mtdowling"
  743. },
  744. {
  745. "name": "Tobias Nyholm",
  746. "email": "tobias.nyholm@gmail.com",
  747. "homepage": "https://github.com/Nyholm"
  748. },
  749. {
  750. "name": "Tobias Schultze",
  751. "email": "webmaster@tubo-world.de",
  752. "homepage": "https://github.com/Tobion"
  753. }
  754. ],
  755. "description": "Guzzle promises library",
  756. "keywords": [
  757. "promise"
  758. ],
  759. "support": {
  760. "issues": "https://github.com/guzzle/promises/issues",
  761. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  762. },
  763. "funding": [
  764. {
  765. "url": "https://github.com/GrahamCampbell",
  766. "type": "github"
  767. },
  768. {
  769. "url": "https://github.com/Nyholm",
  770. "type": "github"
  771. },
  772. {
  773. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  774. "type": "tidelift"
  775. }
  776. ],
  777. "time": "2023-12-03T20:19:20+00:00"
  778. },
  779. {
  780. "name": "guzzlehttp/psr7",
  781. "version": "2.6.2",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/guzzle/psr7.git",
  785. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  790. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": "^7.2.5 || ^8.0",
  795. "psr/http-factory": "^1.0",
  796. "psr/http-message": "^1.1 || ^2.0",
  797. "ralouphie/getallheaders": "^3.0"
  798. },
  799. "provide": {
  800. "psr/http-factory-implementation": "1.0",
  801. "psr/http-message-implementation": "1.0"
  802. },
  803. "require-dev": {
  804. "bamarni/composer-bin-plugin": "^1.8.2",
  805. "http-interop/http-factory-tests": "^0.9",
  806. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  807. },
  808. "suggest": {
  809. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "bamarni-bin": {
  814. "bin-links": true,
  815. "forward-command": false
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "GuzzleHttp\\Psr7\\": "src/"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Graham Campbell",
  830. "email": "hello@gjcampbell.co.uk",
  831. "homepage": "https://github.com/GrahamCampbell"
  832. },
  833. {
  834. "name": "Michael Dowling",
  835. "email": "mtdowling@gmail.com",
  836. "homepage": "https://github.com/mtdowling"
  837. },
  838. {
  839. "name": "George Mponos",
  840. "email": "gmponos@gmail.com",
  841. "homepage": "https://github.com/gmponos"
  842. },
  843. {
  844. "name": "Tobias Nyholm",
  845. "email": "tobias.nyholm@gmail.com",
  846. "homepage": "https://github.com/Nyholm"
  847. },
  848. {
  849. "name": "Márk Sági-Kazár",
  850. "email": "mark.sagikazar@gmail.com",
  851. "homepage": "https://github.com/sagikazarmark"
  852. },
  853. {
  854. "name": "Tobias Schultze",
  855. "email": "webmaster@tubo-world.de",
  856. "homepage": "https://github.com/Tobion"
  857. },
  858. {
  859. "name": "Márk Sági-Kazár",
  860. "email": "mark.sagikazar@gmail.com",
  861. "homepage": "https://sagikazarmark.hu"
  862. }
  863. ],
  864. "description": "PSR-7 message implementation that also provides common utility methods",
  865. "keywords": [
  866. "http",
  867. "message",
  868. "psr-7",
  869. "request",
  870. "response",
  871. "stream",
  872. "uri",
  873. "url"
  874. ],
  875. "support": {
  876. "issues": "https://github.com/guzzle/psr7/issues",
  877. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  878. },
  879. "funding": [
  880. {
  881. "url": "https://github.com/GrahamCampbell",
  882. "type": "github"
  883. },
  884. {
  885. "url": "https://github.com/Nyholm",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  890. "type": "tidelift"
  891. }
  892. ],
  893. "time": "2023-12-03T20:05:35+00:00"
  894. },
  895. {
  896. "name": "hyperf/amqp",
  897. "version": "v3.1.58",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/hyperf/amqp.git",
  901. "reference": "15ed5c2e39d35e1b28be9afad635c3fd9f93841b"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/hyperf/amqp/zipball/15ed5c2e39d35e1b28be9afad635c3fd9f93841b",
  906. "reference": "15ed5c2e39d35e1b28be9afad635c3fd9f93841b",
  907. "shasum": "",
  908. "mirrors": [
  909. {
  910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  911. "preferred": true
  912. }
  913. ]
  914. },
  915. "require": {
  916. "doctrine/instantiator": "^1.2.0",
  917. "hyperf/codec": "~3.1.0",
  918. "hyperf/collection": "~3.1.0",
  919. "hyperf/context": "~3.1.0",
  920. "hyperf/contract": "~3.1.0",
  921. "hyperf/coordinator": "~3.1.0",
  922. "hyperf/coroutine": "~3.1.0",
  923. "hyperf/engine": "^2.0",
  924. "hyperf/pool": "~3.1.0",
  925. "hyperf/process": "~3.1.0",
  926. "hyperf/support": "~3.1.0",
  927. "php": ">=8.1",
  928. "php-amqplib/php-amqplib": "^3.5",
  929. "psr/container": "^1.0 || ^2.0",
  930. "psr/event-dispatcher": "^1.0",
  931. "psr/log": "^1.0 || ^2.0 || ^3.0"
  932. },
  933. "suggest": {
  934. "hyperf/di": "Required to use annotations.",
  935. "hyperf/event": "Declare queue and start consumers automatically."
  936. },
  937. "type": "library",
  938. "extra": {
  939. "hyperf": {
  940. "config": "Hyperf\\Amqp\\ConfigProvider"
  941. },
  942. "branch-alias": {
  943. "dev-master": "3.1-dev"
  944. }
  945. },
  946. "autoload": {
  947. "psr-4": {
  948. "Hyperf\\Amqp\\": "src/"
  949. }
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "description": "A amqplib for hyperf.",
  956. "homepage": "https://hyperf.io",
  957. "keywords": [
  958. "AMQP",
  959. "hyperf",
  960. "php"
  961. ],
  962. "support": {
  963. "docs": "https://hyperf.wiki",
  964. "issues": "https://github.com/hyperf/hyperf/issues",
  965. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  966. "source": "https://github.com/hyperf/hyperf"
  967. },
  968. "funding": [
  969. {
  970. "url": "https://hyperf.wiki/#/zh-cn/donate",
  971. "type": "custom"
  972. },
  973. {
  974. "url": "https://opencollective.com/hyperf",
  975. "type": "open_collective"
  976. }
  977. ],
  978. "time": "2025-06-23T03:55:31+00:00"
  979. },
  980. {
  981. "name": "hyperf/cache",
  982. "version": "v3.1.23",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/hyperf/cache.git",
  986. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  991. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  992. "shasum": ""
  993. },
  994. "require": {
  995. "hyperf/codec": "~3.1.0",
  996. "hyperf/collection": "~3.1.0",
  997. "hyperf/contract": "~3.1.0",
  998. "hyperf/support": "~3.1.0",
  999. "hyperf/utils": "~3.1.0",
  1000. "php": ">=8.1",
  1001. "psr/container": "^1.0|^2.0",
  1002. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1003. },
  1004. "suggest": {
  1005. "hyperf/di": "Use cache annotations.",
  1006. "hyperf/event": "Use listener to delete annotation cache."
  1007. },
  1008. "type": "library",
  1009. "extra": {
  1010. "branch-alias": {
  1011. "dev-master": "3.1-dev"
  1012. },
  1013. "hyperf": {
  1014. "config": "Hyperf\\Cache\\ConfigProvider"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Hyperf\\Cache\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "description": "A cache component for hyperf.",
  1027. "homepage": "https://hyperf.io",
  1028. "keywords": [
  1029. "cache",
  1030. "hyperf",
  1031. "php"
  1032. ],
  1033. "support": {
  1034. "docs": "https://hyperf.wiki",
  1035. "issues": "https://github.com/hyperf/hyperf/issues",
  1036. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1037. "source": "https://github.com/hyperf/hyperf"
  1038. },
  1039. "funding": [
  1040. {
  1041. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1042. "type": "custom"
  1043. },
  1044. {
  1045. "url": "https://opencollective.com/hyperf",
  1046. "type": "open_collective"
  1047. }
  1048. ],
  1049. "time": "2024-05-23T03:43:58+00:00"
  1050. },
  1051. {
  1052. "name": "hyperf/code-parser",
  1053. "version": "v3.1.15",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/hyperf/code-parser.git",
  1057. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1062. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "hyperf/collection": "~3.1.0",
  1067. "hyperf/stringable": "~3.1.0",
  1068. "hyperf/support": "~3.1.0",
  1069. "php": ">=8.1"
  1070. },
  1071. "suggest": {
  1072. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1073. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1074. },
  1075. "type": "library",
  1076. "extra": {
  1077. "branch-alias": {
  1078. "dev-master": "3.1-dev"
  1079. }
  1080. },
  1081. "autoload": {
  1082. "psr-4": {
  1083. "Hyperf\\CodeParser\\": "src/"
  1084. }
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "MIT"
  1089. ],
  1090. "description": "A code parser component for Hyperf.",
  1091. "homepage": "https://hyperf.io",
  1092. "keywords": [
  1093. "code-parser",
  1094. "hyperf",
  1095. "php",
  1096. "swoole"
  1097. ],
  1098. "support": {
  1099. "docs": "https://hyperf.wiki",
  1100. "issues": "https://github.com/hyperf/hyperf/issues",
  1101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1102. "source": "https://github.com/hyperf/hyperf"
  1103. },
  1104. "funding": [
  1105. {
  1106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1107. "type": "custom"
  1108. },
  1109. {
  1110. "url": "https://opencollective.com/hyperf",
  1111. "type": "open_collective"
  1112. }
  1113. ],
  1114. "time": "2024-03-23T11:28:51+00:00"
  1115. },
  1116. {
  1117. "name": "hyperf/codec",
  1118. "version": "v3.1.15",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/hyperf/codec.git",
  1122. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1127. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1128. "shasum": ""
  1129. },
  1130. "require": {
  1131. "ext-json": "*",
  1132. "ext-xml": "*",
  1133. "hyperf/contract": "~3.1.0",
  1134. "php": ">=8.1"
  1135. },
  1136. "suggest": {
  1137. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1138. },
  1139. "type": "library",
  1140. "extra": {
  1141. "branch-alias": {
  1142. "dev-master": "3.1-dev"
  1143. }
  1144. },
  1145. "autoload": {
  1146. "psr-4": {
  1147. "Hyperf\\Codec\\": "src/"
  1148. }
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "MIT"
  1153. ],
  1154. "description": "A codec component for Hyperf.",
  1155. "homepage": "https://hyperf.io",
  1156. "keywords": [
  1157. "codec",
  1158. "hyperf",
  1159. "php",
  1160. "swoole"
  1161. ],
  1162. "support": {
  1163. "docs": "https://hyperf.wiki",
  1164. "issues": "https://github.com/hyperf/hyperf/issues",
  1165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1166. "source": "https://github.com/hyperf/hyperf"
  1167. },
  1168. "funding": [
  1169. {
  1170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1171. "type": "custom"
  1172. },
  1173. {
  1174. "url": "https://opencollective.com/hyperf",
  1175. "type": "open_collective"
  1176. }
  1177. ],
  1178. "time": "2024-03-23T11:28:51+00:00"
  1179. },
  1180. {
  1181. "name": "hyperf/collection",
  1182. "version": "v3.1.23.2",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/hyperf/collection.git",
  1186. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1191. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1192. "shasum": ""
  1193. },
  1194. "require": {
  1195. "hyperf/conditionable": "~3.1.0",
  1196. "hyperf/contract": "~3.1.0",
  1197. "hyperf/macroable": "~3.1.0",
  1198. "hyperf/stringable": "~3.1.0",
  1199. "php": ">=8.1"
  1200. },
  1201. "type": "library",
  1202. "extra": {
  1203. "branch-alias": {
  1204. "dev-master": "3.1-dev"
  1205. }
  1206. },
  1207. "autoload": {
  1208. "files": [
  1209. "src/Functions.php"
  1210. ],
  1211. "psr-4": {
  1212. "Hyperf\\Collection\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "Hyperf Collection package which come from illuminate/collections",
  1220. "homepage": "https://hyperf.io",
  1221. "keywords": [
  1222. "collection",
  1223. "hyperf",
  1224. "php",
  1225. "swoole"
  1226. ],
  1227. "support": {
  1228. "docs": "https://hyperf.wiki",
  1229. "issues": "https://github.com/hyperf/hyperf/issues",
  1230. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1231. "source": "https://github.com/hyperf/hyperf"
  1232. },
  1233. "funding": [
  1234. {
  1235. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1236. "type": "custom"
  1237. },
  1238. {
  1239. "url": "https://opencollective.com/hyperf",
  1240. "type": "open_collective"
  1241. }
  1242. ],
  1243. "time": "2024-05-24T08:33:42+00:00"
  1244. },
  1245. {
  1246. "name": "hyperf/command",
  1247. "version": "v3.1.24",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "https://github.com/hyperf/command.git",
  1251. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1256. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1257. "shasum": ""
  1258. },
  1259. "require": {
  1260. "hyperf/collection": "~3.1.0",
  1261. "hyperf/context": "~3.1.0",
  1262. "hyperf/contract": "~3.1.0",
  1263. "hyperf/coroutine": "~3.1.0",
  1264. "hyperf/di": "~3.1.0",
  1265. "hyperf/stringable": "~3.1.0",
  1266. "hyperf/support": "~3.1.0",
  1267. "hyperf/tappable": "~3.1.0",
  1268. "php": ">=8.1",
  1269. "psr/event-dispatcher": "^1.0",
  1270. "symfony/console": "^5.0|^6.0|^7.0"
  1271. },
  1272. "suggest": {
  1273. "hyperf/di": "Required to use annotations.",
  1274. "hyperf/event": "Required to use listeners."
  1275. },
  1276. "type": "library",
  1277. "extra": {
  1278. "branch-alias": {
  1279. "dev-master": "3.1-dev"
  1280. },
  1281. "hyperf": {
  1282. "config": "Hyperf\\Command\\ConfigProvider"
  1283. }
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Hyperf\\Command\\": "src/"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "MIT"
  1293. ],
  1294. "description": "Command for hyperf",
  1295. "keywords": [
  1296. "command",
  1297. "php",
  1298. "swoole"
  1299. ],
  1300. "support": {
  1301. "issues": "https://github.com/hyperf/command/issues",
  1302. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1303. },
  1304. "funding": [
  1305. {
  1306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1307. "type": "custom"
  1308. },
  1309. {
  1310. "url": "https://opencollective.com/hyperf",
  1311. "type": "open_collective"
  1312. }
  1313. ],
  1314. "time": "2024-05-27T12:37:07+00:00"
  1315. },
  1316. {
  1317. "name": "hyperf/conditionable",
  1318. "version": "v3.1.15",
  1319. "source": {
  1320. "type": "git",
  1321. "url": "https://github.com/hyperf/conditionable.git",
  1322. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1323. },
  1324. "dist": {
  1325. "type": "zip",
  1326. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1327. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1328. "shasum": ""
  1329. },
  1330. "require": {
  1331. "php": ">=8.1"
  1332. },
  1333. "type": "library",
  1334. "extra": {
  1335. "branch-alias": {
  1336. "dev-master": "3.1-dev"
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Hyperf\\Conditionable\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1349. "homepage": "https://hyperf.io",
  1350. "keywords": [
  1351. "conditionable",
  1352. "hyperf",
  1353. "php",
  1354. "swoole"
  1355. ],
  1356. "support": {
  1357. "docs": "https://hyperf.wiki",
  1358. "issues": "https://github.com/hyperf/hyperf/issues",
  1359. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1360. "source": "https://github.com/hyperf/hyperf"
  1361. },
  1362. "funding": [
  1363. {
  1364. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1365. "type": "custom"
  1366. },
  1367. {
  1368. "url": "https://opencollective.com/hyperf",
  1369. "type": "open_collective"
  1370. }
  1371. ],
  1372. "time": "2024-03-23T11:28:51+00:00"
  1373. },
  1374. {
  1375. "name": "hyperf/config",
  1376. "version": "v3.1.15",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/hyperf/config.git",
  1380. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1385. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "hyperf/collection": "~3.1.0",
  1390. "hyperf/contract": "~3.1.0",
  1391. "hyperf/support": "~3.1.0",
  1392. "php": ">=8.1",
  1393. "psr/container": "^1.0|^2.0",
  1394. "symfony/finder": "^5.0|^6.0|^7.0"
  1395. },
  1396. "suggest": {
  1397. "hyperf/context": "Required to use config()",
  1398. "hyperf/di": "Allows using @Value annotation",
  1399. "hyperf/event": "Allows using @Value annotation",
  1400. "hyperf/framework": "Allows using @Value annotation",
  1401. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\Config\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "files": [
  1414. "./src/Functions.php"
  1415. ],
  1416. "psr-4": {
  1417. "Hyperf\\Config\\": "src/"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "description": "An independent component that provides configuration container.",
  1425. "homepage": "https://hyperf.io",
  1426. "keywords": [
  1427. "config",
  1428. "configuration",
  1429. "hyperf",
  1430. "php",
  1431. "swoole"
  1432. ],
  1433. "support": {
  1434. "docs": "https://hyperf.wiki",
  1435. "issues": "https://github.com/hyperf/hyperf/issues",
  1436. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1437. "source": "https://github.com/hyperf/hyperf"
  1438. },
  1439. "funding": [
  1440. {
  1441. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1442. "type": "custom"
  1443. },
  1444. {
  1445. "url": "https://opencollective.com/hyperf",
  1446. "type": "open_collective"
  1447. }
  1448. ],
  1449. "time": "2024-03-23T11:28:51+00:00"
  1450. },
  1451. {
  1452. "name": "hyperf/config-center",
  1453. "version": "v3.1.15",
  1454. "source": {
  1455. "type": "git",
  1456. "url": "https://github.com/hyperf/config-center.git",
  1457. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1458. },
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1462. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1463. "shasum": ""
  1464. },
  1465. "require": {
  1466. "hyperf/support": "~3.1.0",
  1467. "php": ">=8.1"
  1468. },
  1469. "suggest": {
  1470. "hyperf/process": "^2.1"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "3.1-dev"
  1476. },
  1477. "hyperf": {
  1478. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Hyperf\\ConfigCenter\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "description": "The abstraction component of config center",
  1491. "homepage": "https://hyperf.io",
  1492. "keywords": [
  1493. "config-center",
  1494. "hyperf",
  1495. "php"
  1496. ],
  1497. "support": {
  1498. "docs": "https://hyperf.wiki",
  1499. "issues": "https://github.com/hyperf/hyperf/issues",
  1500. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1501. "source": "https://github.com/hyperf/hyperf"
  1502. },
  1503. "funding": [
  1504. {
  1505. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1506. "type": "custom"
  1507. },
  1508. {
  1509. "url": "https://opencollective.com/hyperf",
  1510. "type": "open_collective"
  1511. }
  1512. ],
  1513. "time": "2024-03-23T11:28:51+00:00"
  1514. },
  1515. {
  1516. "name": "hyperf/config-nacos",
  1517. "version": "v3.1.15",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/hyperf/config-nacos.git",
  1521. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1526. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1527. "shasum": ""
  1528. },
  1529. "require": {
  1530. "hyperf/codec": "~3.1.0",
  1531. "hyperf/config-center": "~3.1.0",
  1532. "hyperf/contract": "~3.1.0",
  1533. "hyperf/guzzle": "~3.1.0",
  1534. "hyperf/nacos": "~3.1.0",
  1535. "hyperf/support": "~3.1.0",
  1536. "hyperf/utils": "~3.1.0",
  1537. "jetbrains/phpstorm-attributes": "^1.0",
  1538. "php": ">=8.1"
  1539. },
  1540. "suggest": {
  1541. "ext-json": "*",
  1542. "ext-simplexml": "*",
  1543. "ext-yaml": "*",
  1544. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1545. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1546. "hyperf/process": "Required to use processes. (~2.2.0)"
  1547. },
  1548. "type": "library",
  1549. "extra": {
  1550. "branch-alias": {
  1551. "dev-master": "3.1-dev"
  1552. },
  1553. "hyperf": {
  1554. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "Hyperf\\ConfigNacos\\": "src/"
  1560. }
  1561. },
  1562. "notification-url": "https://packagist.org/downloads/",
  1563. "license": [
  1564. "MIT"
  1565. ],
  1566. "description": "A nacos adapter for config center component.",
  1567. "homepage": "https://hyperf.io",
  1568. "keywords": [
  1569. "hyperf",
  1570. "nacos",
  1571. "php",
  1572. "swoole"
  1573. ],
  1574. "support": {
  1575. "docs": "https://hyperf.wiki",
  1576. "issues": "https://github.com/hyperf/hyperf/issues",
  1577. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1578. "source": "https://github.com/hyperf/hyperf"
  1579. },
  1580. "funding": [
  1581. {
  1582. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1583. "type": "custom"
  1584. },
  1585. {
  1586. "url": "https://opencollective.com/hyperf",
  1587. "type": "open_collective"
  1588. }
  1589. ],
  1590. "time": "2024-03-23T11:28:51+00:00"
  1591. },
  1592. {
  1593. "name": "hyperf/constants",
  1594. "version": "v3.1.16",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/hyperf/constants.git",
  1598. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1603. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "hyperf/di": "~3.1.0",
  1608. "hyperf/support": "~3.1.0",
  1609. "hyperf/utils": "~3.1.0",
  1610. "php": ">=8.1"
  1611. },
  1612. "suggest": {
  1613. "hyperf/translation": "Required to use translation."
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "3.1-dev"
  1619. },
  1620. "hyperf": {
  1621. "config": "Hyperf\\Constants\\ConfigProvider"
  1622. }
  1623. },
  1624. "autoload": {
  1625. "psr-4": {
  1626. "Hyperf\\Constants\\": "src/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "MIT"
  1632. ],
  1633. "description": "A constants component for hyperf.",
  1634. "homepage": "https://hyperf.io",
  1635. "keywords": [
  1636. "constants",
  1637. "hyperf",
  1638. "php"
  1639. ],
  1640. "support": {
  1641. "docs": "https://hyperf.wiki",
  1642. "issues": "https://github.com/hyperf/hyperf/issues",
  1643. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1644. "source": "https://github.com/hyperf/hyperf"
  1645. },
  1646. "funding": [
  1647. {
  1648. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1649. "type": "custom"
  1650. },
  1651. {
  1652. "url": "https://opencollective.com/hyperf",
  1653. "type": "open_collective"
  1654. }
  1655. ],
  1656. "time": "2024-03-31T11:35:28+00:00"
  1657. },
  1658. {
  1659. "name": "hyperf/consul",
  1660. "version": "v3.1.22",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/hyperf/consul.git",
  1664. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1669. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "guzzlehttp/guzzle": "^6.3|^7.0",
  1674. "php": ">=8.1"
  1675. },
  1676. "require-dev": {
  1677. "hyperf/guzzle": "~3.1.0"
  1678. },
  1679. "type": "library",
  1680. "extra": {
  1681. "branch-alias": {
  1682. "dev-master": "3.1-dev"
  1683. },
  1684. "hyperf": {
  1685. "config": "Hyperf\\Consul\\ConfigProvider"
  1686. }
  1687. },
  1688. "autoload": {
  1689. "psr-4": {
  1690. "Hyperf\\Consul\\": "src/"
  1691. }
  1692. },
  1693. "notification-url": "https://packagist.org/downloads/",
  1694. "license": [
  1695. "MIT"
  1696. ],
  1697. "description": "A Consul Client for Hyperf.",
  1698. "homepage": "https://hyperf.io",
  1699. "keywords": [
  1700. "consul",
  1701. "consul-client",
  1702. "hyperf",
  1703. "php",
  1704. "swoole"
  1705. ],
  1706. "support": {
  1707. "docs": "https://hyperf.wiki",
  1708. "issues": "https://github.com/hyperf/hyperf/issues",
  1709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1710. "source": "https://github.com/hyperf/hyperf"
  1711. },
  1712. "funding": [
  1713. {
  1714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1715. "type": "custom"
  1716. },
  1717. {
  1718. "url": "https://opencollective.com/hyperf",
  1719. "type": "open_collective"
  1720. }
  1721. ],
  1722. "time": "2024-05-15T06:42:24+00:00"
  1723. },
  1724. {
  1725. "name": "hyperf/context",
  1726. "version": "v3.1.15",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/hyperf/context.git",
  1730. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1735. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "hyperf/engine": "^2.0",
  1740. "php": ">=8.1"
  1741. },
  1742. "suggest": {
  1743. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1744. },
  1745. "type": "library",
  1746. "extra": {
  1747. "branch-alias": {
  1748. "dev-master": "3.1-dev"
  1749. }
  1750. },
  1751. "autoload": {
  1752. "psr-4": {
  1753. "Hyperf\\Context\\": "src/"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "description": "A coroutine/application context library.",
  1761. "homepage": "https://hyperf.io",
  1762. "keywords": [
  1763. "Context",
  1764. "hyperf",
  1765. "php",
  1766. "swoole"
  1767. ],
  1768. "support": {
  1769. "docs": "https://hyperf.wiki",
  1770. "issues": "https://github.com/hyperf/hyperf/issues",
  1771. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1772. "source": "https://github.com/hyperf/hyperf"
  1773. },
  1774. "funding": [
  1775. {
  1776. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1777. "type": "custom"
  1778. },
  1779. {
  1780. "url": "https://opencollective.com/hyperf",
  1781. "type": "open_collective"
  1782. }
  1783. ],
  1784. "time": "2024-03-23T11:28:51+00:00"
  1785. },
  1786. {
  1787. "name": "hyperf/contract",
  1788. "version": "v3.1.15",
  1789. "source": {
  1790. "type": "git",
  1791. "url": "https://github.com/hyperf/contract.git",
  1792. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1793. },
  1794. "dist": {
  1795. "type": "zip",
  1796. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1797. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1798. "shasum": ""
  1799. },
  1800. "require": {
  1801. "php": ">=8.1"
  1802. },
  1803. "type": "library",
  1804. "extra": {
  1805. "branch-alias": {
  1806. "dev-master": "3.1-dev"
  1807. }
  1808. },
  1809. "autoload": {
  1810. "psr-4": {
  1811. "Hyperf\\Contract\\": "src/"
  1812. }
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "MIT"
  1817. ],
  1818. "description": "The contracts of Hyperf.",
  1819. "homepage": "https://hyperf.io",
  1820. "keywords": [
  1821. "hyperf",
  1822. "php",
  1823. "swoole"
  1824. ],
  1825. "support": {
  1826. "docs": "https://hyperf.wiki",
  1827. "issues": "https://github.com/hyperf/hyperf/issues",
  1828. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1829. "source": "https://github.com/hyperf/hyperf"
  1830. },
  1831. "funding": [
  1832. {
  1833. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1834. "type": "custom"
  1835. },
  1836. {
  1837. "url": "https://opencollective.com/hyperf",
  1838. "type": "open_collective"
  1839. }
  1840. ],
  1841. "time": "2024-03-23T11:28:51+00:00"
  1842. },
  1843. {
  1844. "name": "hyperf/coordinator",
  1845. "version": "v3.1.21",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/hyperf/coordinator.git",
  1849. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1854. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "hyperf/engine": "^2.0",
  1859. "php": ">=8.1"
  1860. },
  1861. "type": "library",
  1862. "extra": {
  1863. "branch-alias": {
  1864. "dev-master": "3.1-dev"
  1865. }
  1866. },
  1867. "autoload": {
  1868. "files": [
  1869. "src/Functions.php"
  1870. ],
  1871. "psr-4": {
  1872. "Hyperf\\Coordinator\\": "src/"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "description": "Hyperf Coordinator",
  1880. "homepage": "https://hyperf.io",
  1881. "keywords": [
  1882. "Coordinator",
  1883. "hyperf",
  1884. "php",
  1885. "swoole"
  1886. ],
  1887. "support": {
  1888. "docs": "https://hyperf.wiki",
  1889. "issues": "https://github.com/hyperf/hyperf/issues",
  1890. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1891. "source": "https://github.com/hyperf/hyperf"
  1892. },
  1893. "funding": [
  1894. {
  1895. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1896. "type": "custom"
  1897. },
  1898. {
  1899. "url": "https://opencollective.com/hyperf",
  1900. "type": "open_collective"
  1901. }
  1902. ],
  1903. "time": "2024-05-09T02:35:08+00:00"
  1904. },
  1905. {
  1906. "name": "hyperf/coroutine",
  1907. "version": "v3.1.15",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/hyperf/coroutine.git",
  1911. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1916. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1917. "shasum": ""
  1918. },
  1919. "require": {
  1920. "hyperf/context": "~3.1.0",
  1921. "hyperf/contract": "~3.1.0",
  1922. "hyperf/engine": "^2.0",
  1923. "php": ">=8.1"
  1924. },
  1925. "type": "library",
  1926. "extra": {
  1927. "branch-alias": {
  1928. "dev-master": "3.1-dev"
  1929. }
  1930. },
  1931. "autoload": {
  1932. "files": [
  1933. "src/Functions.php"
  1934. ],
  1935. "psr-4": {
  1936. "Hyperf\\Coroutine\\": "src/"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "MIT"
  1942. ],
  1943. "description": "Hyperf Coroutine",
  1944. "homepage": "https://hyperf.io",
  1945. "keywords": [
  1946. "coroutine",
  1947. "hyperf",
  1948. "php",
  1949. "swoole"
  1950. ],
  1951. "support": {
  1952. "docs": "https://hyperf.wiki",
  1953. "issues": "https://github.com/hyperf/hyperf/issues",
  1954. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1955. "source": "https://github.com/hyperf/hyperf"
  1956. },
  1957. "funding": [
  1958. {
  1959. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1960. "type": "custom"
  1961. },
  1962. {
  1963. "url": "https://opencollective.com/hyperf",
  1964. "type": "open_collective"
  1965. }
  1966. ],
  1967. "time": "2024-03-23T11:28:51+00:00"
  1968. },
  1969. {
  1970. "name": "hyperf/database",
  1971. "version": "v3.1.24",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/hyperf/database.git",
  1975. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1980. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "hyperf/code-parser": "~3.1.0",
  1985. "hyperf/collection": "~3.1.0",
  1986. "hyperf/macroable": "~3.1.0",
  1987. "hyperf/support": "~3.1.0",
  1988. "hyperf/tappable": "~3.1.0",
  1989. "hyperf/utils": "~3.1.0",
  1990. "nesbot/carbon": "^2.0",
  1991. "php": ">=8.1",
  1992. "psr/container": "^1.0|^2.0",
  1993. "psr/event-dispatcher": "^1.0"
  1994. },
  1995. "suggest": {
  1996. "doctrine/dbal": "Required to rename columns (^3.0).",
  1997. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1998. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "3.1-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Hyperf\\Database\\": "src/"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "description": "A flexible database library.",
  2016. "homepage": "https://hyperf.io",
  2017. "keywords": [
  2018. "database",
  2019. "hyperf",
  2020. "php"
  2021. ],
  2022. "support": {
  2023. "docs": "https://hyperf.wiki",
  2024. "issues": "https://github.com/hyperf/hyperf/issues",
  2025. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2026. "source": "https://github.com/hyperf/hyperf"
  2027. },
  2028. "funding": [
  2029. {
  2030. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2031. "type": "custom"
  2032. },
  2033. {
  2034. "url": "https://opencollective.com/hyperf",
  2035. "type": "open_collective"
  2036. }
  2037. ],
  2038. "time": "2024-05-24T06:14:27+00:00"
  2039. },
  2040. {
  2041. "name": "hyperf/db-connection",
  2042. "version": "v3.1.15",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/hyperf/db-connection.git",
  2046. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2051. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "hyperf/database": "~3.1.0",
  2056. "hyperf/di": "~3.1.0",
  2057. "hyperf/framework": "~3.1.0",
  2058. "hyperf/model-listener": "~3.1.0",
  2059. "hyperf/pool": "~3.1.0",
  2060. "hyperf/support": "~3.1.0",
  2061. "hyperf/utils": "~3.1.0",
  2062. "php": ">=8.1",
  2063. "psr/container": "^1.0|^2.0"
  2064. },
  2065. "type": "library",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "3.1-dev"
  2069. },
  2070. "hyperf": {
  2071. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "psr-4": {
  2076. "Hyperf\\DbConnection\\": "src/"
  2077. }
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "MIT"
  2082. ],
  2083. "description": "A hyperf db connection handler for hyperf/database.",
  2084. "homepage": "https://hyperf.io",
  2085. "keywords": [
  2086. "Connection",
  2087. "database",
  2088. "hyperf",
  2089. "php"
  2090. ],
  2091. "support": {
  2092. "docs": "https://hyperf.wiki",
  2093. "issues": "https://github.com/hyperf/hyperf/issues",
  2094. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2095. "source": "https://github.com/hyperf/hyperf"
  2096. },
  2097. "funding": [
  2098. {
  2099. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2100. "type": "custom"
  2101. },
  2102. {
  2103. "url": "https://opencollective.com/hyperf",
  2104. "type": "open_collective"
  2105. }
  2106. ],
  2107. "time": "2024-03-23T11:28:51+00:00"
  2108. },
  2109. {
  2110. "name": "hyperf/di",
  2111. "version": "v3.1.15",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/hyperf/di.git",
  2115. "reference": "681120f158739bde07dc5c761e11be56e8d07109"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/hyperf/di/zipball/681120f158739bde07dc5c761e11be56e8d07109",
  2120. "reference": "681120f158739bde07dc5c761e11be56e8d07109",
  2121. "shasum": "",
  2122. "mirrors": [
  2123. {
  2124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2125. "preferred": true
  2126. }
  2127. ]
  2128. },
  2129. "require": {
  2130. "doctrine/instantiator": "^1.0",
  2131. "hyperf/code-parser": "~3.1.0",
  2132. "hyperf/pipeline": "~3.1.0",
  2133. "hyperf/stdlib": "~3.1.0",
  2134. "hyperf/support": "~3.1.0",
  2135. "nikic/php-parser": "^4.1",
  2136. "php": ">=8.1",
  2137. "php-di/phpdoc-reader": "^2.2",
  2138. "psr/container": "^1.0|^2.0",
  2139. "symfony/finder": "^5.0|^6.0|^7.0",
  2140. "vlucas/phpdotenv": "^5.0"
  2141. },
  2142. "suggest": {
  2143. "ext-pcntl": "Required to scan annotations.",
  2144. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-master": "3.1-dev"
  2150. },
  2151. "hyperf": {
  2152. "config": "Hyperf\\Di\\ConfigProvider"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "psr-4": {
  2157. "Hyperf\\Di\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "description": "A DI for Hyperf.",
  2165. "homepage": "https://hyperf.io",
  2166. "keywords": [
  2167. "annotation",
  2168. "di",
  2169. "hyperf",
  2170. "php",
  2171. "swoole"
  2172. ],
  2173. "support": {
  2174. "docs": "https://hyperf.wiki",
  2175. "issues": "https://github.com/hyperf/hyperf/issues",
  2176. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2177. "source": "https://github.com/hyperf/hyperf"
  2178. },
  2179. "funding": [
  2180. {
  2181. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2182. "type": "custom"
  2183. },
  2184. {
  2185. "url": "https://opencollective.com/hyperf",
  2186. "type": "open_collective"
  2187. }
  2188. ],
  2189. "time": "2024-03-23T11:28:51+00:00"
  2190. },
  2191. {
  2192. "name": "hyperf/dispatcher",
  2193. "version": "v3.1.15",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/hyperf/dispatcher.git",
  2197. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2202. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2203. "shasum": ""
  2204. },
  2205. "require": {
  2206. "hyperf/contract": "~3.1.0",
  2207. "php": ">=8.1",
  2208. "psr/container": "^1.0|^2.0",
  2209. "psr/http-message": "^1.0|^2.0",
  2210. "psr/http-server-middleware": "^1.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-master": "3.1-dev"
  2216. },
  2217. "hyperf": {
  2218. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2219. }
  2220. },
  2221. "autoload": {
  2222. "psr-4": {
  2223. "Hyperf\\Dispatcher\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "description": "A HTTP Server for Hyperf.",
  2231. "homepage": "https://hyperf.io",
  2232. "keywords": [
  2233. "dispatcher",
  2234. "filter",
  2235. "hyperf",
  2236. "middleware",
  2237. "php",
  2238. "swoole"
  2239. ],
  2240. "support": {
  2241. "docs": "https://hyperf.wiki",
  2242. "issues": "https://github.com/hyperf/hyperf/issues",
  2243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2244. "source": "https://github.com/hyperf/hyperf"
  2245. },
  2246. "funding": [
  2247. {
  2248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2249. "type": "custom"
  2250. },
  2251. {
  2252. "url": "https://opencollective.com/hyperf",
  2253. "type": "open_collective"
  2254. }
  2255. ],
  2256. "time": "2024-03-23T11:28:51+00:00"
  2257. },
  2258. {
  2259. "name": "hyperf/engine",
  2260. "version": "v2.11.0",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/hyperf/engine.git",
  2264. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2269. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "hyperf/engine-contract": "~1.10.0",
  2274. "php": ">=8.0"
  2275. },
  2276. "conflict": {
  2277. "ext-swoole": "<5.0"
  2278. },
  2279. "require-dev": {
  2280. "friendsofphp/php-cs-fixer": "^3.0",
  2281. "hyperf/guzzle": "^3.0",
  2282. "hyperf/http-message": "^3.0",
  2283. "mockery/mockery": "^1.5",
  2284. "phpstan/phpstan": "^1.0",
  2285. "phpunit/phpunit": "^9.4",
  2286. "swoole/ide-helper": "5.*"
  2287. },
  2288. "suggest": {
  2289. "ext-sockets": "*",
  2290. "ext-swoole": ">=5.0",
  2291. "hyperf/http-message": "Required to use ResponseEmitter.",
  2292. "psr/http-message": "Required to use WebSocket Frame."
  2293. },
  2294. "type": "library",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-master": "2.11-dev"
  2298. },
  2299. "hyperf": {
  2300. "config": "Hyperf\\Engine\\ConfigProvider"
  2301. }
  2302. },
  2303. "autoload": {
  2304. "files": [
  2305. "src/Functions.php"
  2306. ],
  2307. "psr-4": {
  2308. "Hyperf\\Engine\\": "src/"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "description": "Coroutine engine provided by swoole.",
  2316. "keywords": [
  2317. "engine",
  2318. "hyperf",
  2319. "php",
  2320. "swoole"
  2321. ],
  2322. "support": {
  2323. "issues": "https://github.com/hyperf/engine/issues",
  2324. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2325. },
  2326. "funding": [
  2327. {
  2328. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2329. "type": "custom"
  2330. },
  2331. {
  2332. "url": "https://opencollective.com/hyperf",
  2333. "type": "open_collective"
  2334. }
  2335. ],
  2336. "time": "2024-04-17T13:36:28+00:00"
  2337. },
  2338. {
  2339. "name": "hyperf/engine-contract",
  2340. "version": "v1.10.1",
  2341. "source": {
  2342. "type": "git",
  2343. "url": "https://github.com/hyperf/engine-contract.git",
  2344. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2345. },
  2346. "dist": {
  2347. "type": "zip",
  2348. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2349. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2350. "shasum": ""
  2351. },
  2352. "require": {
  2353. "php": ">=8.0"
  2354. },
  2355. "require-dev": {
  2356. "friendsofphp/php-cs-fixer": "^3.0",
  2357. "mockery/mockery": "^1.0",
  2358. "phpstan/phpstan": "^1.0",
  2359. "phpunit/phpunit": ">=7.0",
  2360. "psr/http-message": "^1.0",
  2361. "swoole/ide-helper": "^4.5"
  2362. },
  2363. "suggest": {
  2364. "psr/http-message": "Required to use WebSocket Frame."
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.9-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "Hyperf\\Engine\\Contract\\": "src/"
  2375. }
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "description": "Contract for Coroutine Engine",
  2382. "keywords": [
  2383. "contract",
  2384. "coroutine",
  2385. "engine",
  2386. "hyperf",
  2387. "php"
  2388. ],
  2389. "support": {
  2390. "issues": "https://github.com/hyperf/engine-contract/issues",
  2391. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2392. },
  2393. "funding": [
  2394. {
  2395. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2396. "type": "custom"
  2397. },
  2398. {
  2399. "url": "https://opencollective.com/hyperf",
  2400. "type": "open_collective"
  2401. }
  2402. ],
  2403. "time": "2024-04-17T13:34:51+00:00"
  2404. },
  2405. {
  2406. "name": "hyperf/event",
  2407. "version": "v3.1.15",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/hyperf/event.git",
  2411. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2416. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "hyperf/contract": "~3.1.0",
  2421. "hyperf/stdlib": "~3.1.0",
  2422. "php": ">=8.1",
  2423. "psr/event-dispatcher": "^1.0"
  2424. },
  2425. "suggest": {
  2426. "hyperf/di": "Required to use annotatioins."
  2427. },
  2428. "type": "library",
  2429. "extra": {
  2430. "branch-alias": {
  2431. "dev-master": "3.1-dev"
  2432. },
  2433. "hyperf": {
  2434. "config": "Hyperf\\Event\\ConfigProvider"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "psr-4": {
  2439. "Hyperf\\Event\\": "src/"
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "description": "an event manager that implements PSR-14.",
  2447. "homepage": "https://hyperf.io",
  2448. "keywords": [
  2449. "event",
  2450. "hyperf",
  2451. "php",
  2452. "swoole"
  2453. ],
  2454. "support": {
  2455. "docs": "https://hyperf.wiki",
  2456. "issues": "https://github.com/hyperf/hyperf/issues",
  2457. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2458. "source": "https://github.com/hyperf/hyperf"
  2459. },
  2460. "funding": [
  2461. {
  2462. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2463. "type": "custom"
  2464. },
  2465. {
  2466. "url": "https://opencollective.com/hyperf",
  2467. "type": "open_collective"
  2468. }
  2469. ],
  2470. "time": "2024-03-23T11:28:51+00:00"
  2471. },
  2472. {
  2473. "name": "hyperf/exception-handler",
  2474. "version": "v3.1.22",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/hyperf/exception-handler.git",
  2478. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2483. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2484. "shasum": ""
  2485. },
  2486. "require": {
  2487. "hyperf/context": "~3.1.0",
  2488. "hyperf/contract": "~3.1.0",
  2489. "hyperf/dispatcher": "~3.1.0",
  2490. "hyperf/http-message": "~3.1.0",
  2491. "hyperf/stdlib": "~3.1.0",
  2492. "hyperf/support": "~3.1.0",
  2493. "php": ">=8.1",
  2494. "psr/container": "^1.0|^2.0",
  2495. "psr/http-message": "^1.0|^2.0",
  2496. "swow/psr7-plus": "^1.0"
  2497. },
  2498. "suggest": {
  2499. "hyperf/di": "Required to use #[ExceptionHandler]",
  2500. "hyperf/event": "Required to use listeners",
  2501. "hyperf/framework": "Required to use listeners",
  2502. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2503. },
  2504. "type": "library",
  2505. "extra": {
  2506. "branch-alias": {
  2507. "dev-master": "3.1-dev"
  2508. },
  2509. "hyperf": {
  2510. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2511. }
  2512. },
  2513. "autoload": {
  2514. "psr-4": {
  2515. "Hyperf\\ExceptionHandler\\": "src/"
  2516. }
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "description": "Exception handler for hyperf",
  2523. "homepage": "https://hyperf.io",
  2524. "keywords": [
  2525. "exception-handler",
  2526. "php",
  2527. "swoole"
  2528. ],
  2529. "support": {
  2530. "docs": "https://hyperf.wiki",
  2531. "issues": "https://github.com/hyperf/hyperf/issues",
  2532. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2533. "source": "https://github.com/hyperf/hyperf"
  2534. },
  2535. "funding": [
  2536. {
  2537. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2538. "type": "custom"
  2539. },
  2540. {
  2541. "url": "https://opencollective.com/hyperf",
  2542. "type": "open_collective"
  2543. }
  2544. ],
  2545. "time": "2024-05-15T07:12:41+00:00"
  2546. },
  2547. {
  2548. "name": "hyperf/framework",
  2549. "version": "v3.1.23",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/hyperf/framework.git",
  2553. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2558. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "fig/http-message-util": "^1.1.2",
  2563. "hyperf/contract": "~3.1.0",
  2564. "hyperf/coordinator": "~3.1.0",
  2565. "hyperf/coroutine": "~3.1.0",
  2566. "php": ">=8.1",
  2567. "psr/container": "^1.0|^2.0",
  2568. "psr/event-dispatcher": "^1.0",
  2569. "psr/log": "^1.0|^2.0|^3.0"
  2570. },
  2571. "suggest": {
  2572. "ext-swoole": "Required to use swoole engine.",
  2573. "hyperf/command": "Required to use Command annotation.",
  2574. "hyperf/di": "Required to use Command annotation.",
  2575. "hyperf/dispatcher": "Required to use BootApplication event.",
  2576. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-master": "3.1-dev"
  2582. },
  2583. "hyperf": {
  2584. "config": "Hyperf\\Framework\\ConfigProvider"
  2585. }
  2586. },
  2587. "autoload": {
  2588. "psr-4": {
  2589. "Hyperf\\Framework\\": "src/"
  2590. }
  2591. },
  2592. "notification-url": "https://packagist.org/downloads/",
  2593. "license": [
  2594. "MIT"
  2595. ],
  2596. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2597. "homepage": "https://hyperf.io",
  2598. "keywords": [
  2599. "Microservice",
  2600. "framework",
  2601. "hyperf",
  2602. "middleware",
  2603. "php",
  2604. "swoole"
  2605. ],
  2606. "support": {
  2607. "docs": "https://hyperf.wiki",
  2608. "issues": "https://github.com/hyperf/hyperf/issues",
  2609. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2610. "source": "https://github.com/hyperf/hyperf"
  2611. },
  2612. "funding": [
  2613. {
  2614. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2615. "type": "custom"
  2616. },
  2617. {
  2618. "url": "https://opencollective.com/hyperf",
  2619. "type": "open_collective"
  2620. }
  2621. ],
  2622. "time": "2024-05-21T05:43:48+00:00"
  2623. },
  2624. {
  2625. "name": "hyperf/guzzle",
  2626. "version": "v3.1.15",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://github.com/hyperf/guzzle.git",
  2630. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2635. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2636. "shasum": ""
  2637. },
  2638. "require": {
  2639. "guzzlehttp/guzzle": "^6.3|^7.0",
  2640. "php": ">=8.1",
  2641. "psr/container": "^1.0|^2.0",
  2642. "psr/http-message": "^1.0|^2.0"
  2643. },
  2644. "suggest": {
  2645. "ext-curl": "Required for CURL handler support",
  2646. "hyperf/pool": "Required to use pool handler."
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "branch-alias": {
  2651. "dev-master": "3.1-dev"
  2652. },
  2653. "hyperf": {
  2654. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Hyperf\\Guzzle\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "description": "Swoole coroutine handler for guzzle",
  2667. "keywords": [
  2668. "Guzzle",
  2669. "handler",
  2670. "php",
  2671. "swoole"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/hyperf/guzzle/issues",
  2675. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2680. "type": "custom"
  2681. },
  2682. {
  2683. "url": "https://opencollective.com/hyperf",
  2684. "type": "open_collective"
  2685. }
  2686. ],
  2687. "time": "2024-03-23T11:28:51+00:00"
  2688. },
  2689. {
  2690. "name": "hyperf/http-message",
  2691. "version": "v3.1.19",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/hyperf/http-message.git",
  2695. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2700. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2701. "shasum": ""
  2702. },
  2703. "require": {
  2704. "hyperf/codec": "~3.1.0",
  2705. "hyperf/engine": "^2.11",
  2706. "hyperf/support": "~3.1.0",
  2707. "laminas/laminas-mime": "^2.7",
  2708. "php": ">=8.1",
  2709. "psr/http-message": "^1.0|^2.0",
  2710. "swow/psr7-plus": "^1.0"
  2711. },
  2712. "suggest": {
  2713. "psr/container": "Required to replace RequestParserInterface."
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "branch-alias": {
  2718. "dev-master": "3.1-dev"
  2719. },
  2720. "hyperf": {
  2721. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Hyperf\\HttpMessage\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "description": "microservice framework base on swoole",
  2734. "keywords": [
  2735. "http-message",
  2736. "hyperf",
  2737. "php",
  2738. "swoole"
  2739. ],
  2740. "support": {
  2741. "issues": "https://github.com/hyperf/http-message/issues",
  2742. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2743. },
  2744. "funding": [
  2745. {
  2746. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2747. "type": "custom"
  2748. },
  2749. {
  2750. "url": "https://opencollective.com/hyperf",
  2751. "type": "open_collective"
  2752. }
  2753. ],
  2754. "time": "2024-04-17T13:55:51+00:00"
  2755. },
  2756. {
  2757. "name": "hyperf/http-server",
  2758. "version": "v3.1.17",
  2759. "source": {
  2760. "type": "git",
  2761. "url": "https://github.com/hyperf/http-server.git",
  2762. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2763. },
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2767. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2768. "shasum": ""
  2769. },
  2770. "require": {
  2771. "hyperf/codec": "~3.1.0",
  2772. "hyperf/collection": "~3.1.0",
  2773. "hyperf/context": "~3.1.0",
  2774. "hyperf/contract": "~3.1.0",
  2775. "hyperf/coroutine": "~3.1.0",
  2776. "hyperf/dispatcher": "~3.1.0",
  2777. "hyperf/event": "~3.1.0",
  2778. "hyperf/exception-handler": "~3.1.0",
  2779. "hyperf/http-message": "~3.1.0",
  2780. "hyperf/macroable": "~3.1.0",
  2781. "hyperf/serializer": "~3.1.0",
  2782. "hyperf/server": "~3.1.0",
  2783. "hyperf/stdlib": "~3.1.0",
  2784. "hyperf/support": "~3.1.0",
  2785. "nikic/fast-route": "^1.3",
  2786. "php": ">=8.1",
  2787. "psr/container": "^1.0|^2.0",
  2788. "swow/psr7-plus": "^1.0"
  2789. },
  2790. "suggest": {
  2791. "hyperf/di": "Required to use annotations."
  2792. },
  2793. "type": "library",
  2794. "extra": {
  2795. "branch-alias": {
  2796. "dev-master": "3.1-dev"
  2797. },
  2798. "hyperf": {
  2799. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2800. }
  2801. },
  2802. "autoload": {
  2803. "psr-4": {
  2804. "Hyperf\\HttpServer\\": "src/"
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "description": "A HTTP Server for Hyperf.",
  2812. "homepage": "https://hyperf.io",
  2813. "keywords": [
  2814. "http",
  2815. "http-server",
  2816. "hyperf",
  2817. "php",
  2818. "swoole"
  2819. ],
  2820. "support": {
  2821. "docs": "https://hyperf.wiki",
  2822. "issues": "https://github.com/hyperf/hyperf/issues",
  2823. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2824. "source": "https://github.com/hyperf/hyperf"
  2825. },
  2826. "funding": [
  2827. {
  2828. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2829. "type": "custom"
  2830. },
  2831. {
  2832. "url": "https://opencollective.com/hyperf",
  2833. "type": "open_collective"
  2834. }
  2835. ],
  2836. "time": "2024-04-08T07:53:54+00:00"
  2837. },
  2838. {
  2839. "name": "hyperf/json-rpc",
  2840. "version": "v3.1.23",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/hyperf/json-rpc.git",
  2844. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2849. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "hyperf/codec": "~3.1.0",
  2854. "hyperf/context": "~3.1.0",
  2855. "hyperf/contract": "~3.1.0",
  2856. "hyperf/engine": "^2.0",
  2857. "hyperf/http-message": "~3.1.0",
  2858. "hyperf/load-balancer": "~3.1.0",
  2859. "hyperf/rpc": "~3.1.0",
  2860. "hyperf/serializer": "~3.1.0",
  2861. "hyperf/support": "~3.1.0",
  2862. "hyperf/utils": "~3.1.0",
  2863. "php": ">=8.1",
  2864. "psr/container": "^1.0|^2.0",
  2865. "swow/psr7-plus": "^1.0"
  2866. },
  2867. "suggest": {
  2868. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2869. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2870. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2871. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2872. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2873. },
  2874. "type": "library",
  2875. "extra": {
  2876. "branch-alias": {
  2877. "dev-master": "3.1-dev"
  2878. },
  2879. "hyperf": {
  2880. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2881. }
  2882. },
  2883. "autoload": {
  2884. "psr-4": {
  2885. "Hyperf\\JsonRpc\\": "src/"
  2886. }
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2893. "homepage": "https://hyperf.io",
  2894. "keywords": [
  2895. "hyperf",
  2896. "json-rpc",
  2897. "php",
  2898. "swoole"
  2899. ],
  2900. "support": {
  2901. "docs": "https://hyperf.wiki",
  2902. "issues": "https://github.com/hyperf/hyperf/issues",
  2903. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2904. "source": "https://github.com/hyperf/hyperf"
  2905. },
  2906. "funding": [
  2907. {
  2908. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2909. "type": "custom"
  2910. },
  2911. {
  2912. "url": "https://opencollective.com/hyperf",
  2913. "type": "open_collective"
  2914. }
  2915. ],
  2916. "time": "2024-05-23T03:43:58+00:00"
  2917. },
  2918. {
  2919. "name": "hyperf/load-balancer",
  2920. "version": "v3.1.15",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/hyperf/load-balancer.git",
  2924. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2929. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "hyperf/coordinator": "~3.1.0",
  2934. "hyperf/coroutine": "~3.1.0",
  2935. "markrogoyski/math-php": "^2.0",
  2936. "php": ">=8.1",
  2937. "psr/log": "^1.0|^2.0|^3.0"
  2938. },
  2939. "type": "library",
  2940. "extra": {
  2941. "branch-alias": {
  2942. "dev-master": "3.1-dev"
  2943. },
  2944. "hyperf": {
  2945. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Hyperf\\LoadBalancer\\": "src/"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "description": "A load balancer library for Hyperf.",
  2958. "homepage": "https://hyperf.io",
  2959. "keywords": [
  2960. "hyperf",
  2961. "load-balancer",
  2962. "php",
  2963. "swoole"
  2964. ],
  2965. "support": {
  2966. "docs": "https://hyperf.wiki",
  2967. "issues": "https://github.com/hyperf/hyperf/issues",
  2968. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2969. "source": "https://github.com/hyperf/hyperf"
  2970. },
  2971. "funding": [
  2972. {
  2973. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2974. "type": "custom"
  2975. },
  2976. {
  2977. "url": "https://opencollective.com/hyperf",
  2978. "type": "open_collective"
  2979. }
  2980. ],
  2981. "time": "2024-03-23T11:28:51+00:00"
  2982. },
  2983. {
  2984. "name": "hyperf/logger",
  2985. "version": "v3.1.15",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/hyperf/logger.git",
  2989. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2994. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2995. "shasum": ""
  2996. },
  2997. "require": {
  2998. "hyperf/contract": "~3.1.0",
  2999. "hyperf/support": "~3.1.0",
  3000. "hyperf/utils": "~3.1.0",
  3001. "monolog/monolog": "^2.7|^3.1",
  3002. "php": ">=8.1",
  3003. "psr/container": "^1.0|^2.0",
  3004. "psr/log": "^1.0|^2.0|^3.0"
  3005. },
  3006. "type": "library",
  3007. "extra": {
  3008. "branch-alias": {
  3009. "dev-master": "3.1-dev"
  3010. },
  3011. "hyperf": {
  3012. "config": "Hyperf\\Logger\\ConfigProvider"
  3013. }
  3014. },
  3015. "autoload": {
  3016. "psr-4": {
  3017. "Hyperf\\Logger\\": "src/"
  3018. }
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "MIT"
  3023. ],
  3024. "description": "A logger component for hyperf.",
  3025. "homepage": "https://hyperf.io",
  3026. "keywords": [
  3027. "hyperf",
  3028. "logger",
  3029. "php"
  3030. ],
  3031. "support": {
  3032. "docs": "https://hyperf.wiki",
  3033. "issues": "https://github.com/hyperf/hyperf/issues",
  3034. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3035. "source": "https://github.com/hyperf/hyperf"
  3036. },
  3037. "funding": [
  3038. {
  3039. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3040. "type": "custom"
  3041. },
  3042. {
  3043. "url": "https://opencollective.com/hyperf",
  3044. "type": "open_collective"
  3045. }
  3046. ],
  3047. "time": "2024-03-23T11:28:51+00:00"
  3048. },
  3049. {
  3050. "name": "hyperf/macroable",
  3051. "version": "v3.1.23",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/hyperf/macroable.git",
  3055. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3060. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3061. "shasum": ""
  3062. },
  3063. "require": {
  3064. "php": ">=8.1"
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "branch-alias": {
  3069. "dev-master": "3.1-dev"
  3070. }
  3071. },
  3072. "autoload": {
  3073. "psr-4": {
  3074. "Hyperf\\Macroable\\": "src/"
  3075. }
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3082. "homepage": "https://hyperf.io",
  3083. "keywords": [
  3084. "hyperf",
  3085. "macroable",
  3086. "php",
  3087. "swoole"
  3088. ],
  3089. "support": {
  3090. "docs": "https://hyperf.wiki",
  3091. "issues": "https://github.com/hyperf/hyperf/issues",
  3092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3093. "source": "https://github.com/hyperf/hyperf"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3098. "type": "custom"
  3099. },
  3100. {
  3101. "url": "https://opencollective.com/hyperf",
  3102. "type": "open_collective"
  3103. }
  3104. ],
  3105. "time": "2024-05-20T09:55:40+00:00"
  3106. },
  3107. {
  3108. "name": "hyperf/memory",
  3109. "version": "v3.1.15",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/hyperf/memory.git",
  3113. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3118. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3119. "shasum": ""
  3120. },
  3121. "require": {
  3122. "php": ">=8.1"
  3123. },
  3124. "type": "library",
  3125. "extra": {
  3126. "branch-alias": {
  3127. "dev-master": "3.1-dev"
  3128. },
  3129. "hyperf": {
  3130. "config": "Hyperf\\Memory\\ConfigProvider"
  3131. }
  3132. },
  3133. "autoload": {
  3134. "psr-4": {
  3135. "Hyperf\\Memory\\": "src/"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "description": "An independent component that use to operate and manage memory.",
  3143. "homepage": "https://hyperf.io",
  3144. "keywords": [
  3145. "hyperf",
  3146. "memory",
  3147. "php",
  3148. "swoole"
  3149. ],
  3150. "support": {
  3151. "docs": "https://hyperf.wiki",
  3152. "issues": "https://github.com/hyperf/hyperf/issues",
  3153. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3154. "source": "https://github.com/hyperf/hyperf"
  3155. },
  3156. "funding": [
  3157. {
  3158. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3159. "type": "custom"
  3160. },
  3161. {
  3162. "url": "https://opencollective.com/hyperf",
  3163. "type": "open_collective"
  3164. }
  3165. ],
  3166. "time": "2024-03-23T11:28:51+00:00"
  3167. },
  3168. {
  3169. "name": "hyperf/model-listener",
  3170. "version": "v3.1.15",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/hyperf/model-listener.git",
  3174. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3179. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "hyperf/contract": "~3.1.0",
  3184. "hyperf/database": "~3.1.0",
  3185. "hyperf/di": "~3.1.0",
  3186. "hyperf/event": "~3.1.0",
  3187. "hyperf/support": "~3.1.0",
  3188. "hyperf/utils": "~3.1.0",
  3189. "php": ">=8.1",
  3190. "psr/container": "^1.0|^2.0"
  3191. },
  3192. "type": "library",
  3193. "extra": {
  3194. "branch-alias": {
  3195. "dev-master": "3.1-dev"
  3196. },
  3197. "hyperf": {
  3198. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3199. }
  3200. },
  3201. "autoload": {
  3202. "psr-4": {
  3203. "Hyperf\\ModelListener\\": "src/"
  3204. }
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "MIT"
  3209. ],
  3210. "description": "A model listener for Hyperf.",
  3211. "homepage": "https://hyperf.io",
  3212. "keywords": [
  3213. "hyperf",
  3214. "model-listener",
  3215. "php",
  3216. "swoole"
  3217. ],
  3218. "support": {
  3219. "docs": "https://hyperf.wiki",
  3220. "issues": "https://github.com/hyperf/hyperf/issues",
  3221. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3222. "source": "https://github.com/hyperf/hyperf"
  3223. },
  3224. "funding": [
  3225. {
  3226. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3227. "type": "custom"
  3228. },
  3229. {
  3230. "url": "https://opencollective.com/hyperf",
  3231. "type": "open_collective"
  3232. }
  3233. ],
  3234. "time": "2024-03-23T11:28:51+00:00"
  3235. },
  3236. {
  3237. "name": "hyperf/nacos",
  3238. "version": "v3.1.15",
  3239. "source": {
  3240. "type": "git",
  3241. "url": "https://github.com/hyperf/nacos.git",
  3242. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3243. },
  3244. "dist": {
  3245. "type": "zip",
  3246. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3247. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3248. "shasum": ""
  3249. },
  3250. "require": {
  3251. "guzzlehttp/guzzle": "^6.5|^7.0",
  3252. "hyperf/codec": "~3.1.0",
  3253. "hyperf/contract": "~3.1.0",
  3254. "hyperf/support": "~3.1.0",
  3255. "hyperf/utils": "~3.1.0",
  3256. "jetbrains/phpstorm-attributes": "^1.0",
  3257. "php": ">=8.1"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "branch-alias": {
  3262. "dev-master": "3.1-dev"
  3263. },
  3264. "hyperf": {
  3265. "config": "Hyperf\\Nacos\\ConfigProvider"
  3266. }
  3267. },
  3268. "autoload": {
  3269. "psr-4": {
  3270. "Hyperf\\Nacos\\": "src/"
  3271. }
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "description": "Nacos SDK",
  3278. "keywords": [
  3279. "hyperf",
  3280. "nacos",
  3281. "php"
  3282. ],
  3283. "support": {
  3284. "issues": "https://github.com/hyperf/nacos/issues",
  3285. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3286. },
  3287. "funding": [
  3288. {
  3289. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3290. "type": "custom"
  3291. },
  3292. {
  3293. "url": "https://opencollective.com/hyperf",
  3294. "type": "open_collective"
  3295. }
  3296. ],
  3297. "time": "2024-03-23T11:28:51+00:00"
  3298. },
  3299. {
  3300. "name": "hyperf/paginator",
  3301. "version": "v3.1.42",
  3302. "source": {
  3303. "type": "git",
  3304. "url": "https://github.com/hyperf/paginator.git",
  3305. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3306. },
  3307. "dist": {
  3308. "type": "zip",
  3309. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3310. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3311. "shasum": ""
  3312. },
  3313. "require": {
  3314. "hyperf/contract": "~3.1.0",
  3315. "hyperf/support": "~3.1.0",
  3316. "hyperf/utils": "~3.1.0",
  3317. "php": ">=8.1"
  3318. },
  3319. "suggest": {
  3320. "hyperf/event": "Reqiured to use PageResolverListener.",
  3321. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3322. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3323. },
  3324. "type": "library",
  3325. "extra": {
  3326. "branch-alias": {
  3327. "dev-master": "3.1-dev"
  3328. },
  3329. "hyperf": {
  3330. "config": "Hyperf\\Paginator\\ConfigProvider"
  3331. }
  3332. },
  3333. "autoload": {
  3334. "psr-4": {
  3335. "Hyperf\\Paginator\\": "src/"
  3336. }
  3337. },
  3338. "notification-url": "https://packagist.org/downloads/",
  3339. "license": [
  3340. "MIT"
  3341. ],
  3342. "description": "A paginator component for hyperf.",
  3343. "homepage": "https://hyperf.io",
  3344. "keywords": [
  3345. "hyperf",
  3346. "paginator",
  3347. "php"
  3348. ],
  3349. "support": {
  3350. "docs": "https://hyperf.wiki",
  3351. "issues": "https://github.com/hyperf/hyperf/issues",
  3352. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3353. "source": "https://github.com/hyperf/hyperf"
  3354. },
  3355. "funding": [
  3356. {
  3357. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3358. "type": "custom"
  3359. },
  3360. {
  3361. "url": "https://opencollective.com/hyperf",
  3362. "type": "open_collective"
  3363. }
  3364. ],
  3365. "time": "2024-09-25T02:54:12+00:00"
  3366. },
  3367. {
  3368. "name": "hyperf/pipeline",
  3369. "version": "v3.1.15",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/hyperf/pipeline.git",
  3373. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3378. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "php": ">=8.1",
  3383. "psr/container": "^1.0|^2.0"
  3384. },
  3385. "type": "library",
  3386. "extra": {
  3387. "branch-alias": {
  3388. "dev-master": "3.1-dev"
  3389. }
  3390. },
  3391. "autoload": {
  3392. "psr-4": {
  3393. "Hyperf\\Pipeline\\": "src/"
  3394. }
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "MIT"
  3399. ],
  3400. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3401. "homepage": "https://hyperf.io",
  3402. "keywords": [
  3403. "hyperf",
  3404. "php",
  3405. "pipeline",
  3406. "swoole"
  3407. ],
  3408. "support": {
  3409. "docs": "https://hyperf.wiki",
  3410. "issues": "https://github.com/hyperf/hyperf/issues",
  3411. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3412. "source": "https://github.com/hyperf/hyperf"
  3413. },
  3414. "funding": [
  3415. {
  3416. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3417. "type": "custom"
  3418. },
  3419. {
  3420. "url": "https://opencollective.com/hyperf",
  3421. "type": "open_collective"
  3422. }
  3423. ],
  3424. "time": "2024-03-23T11:28:51+00:00"
  3425. },
  3426. {
  3427. "name": "hyperf/pool",
  3428. "version": "v3.1.15",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/hyperf/pool.git",
  3432. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3437. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "hyperf/contract": "~3.1.0",
  3442. "hyperf/support": "~3.1.0",
  3443. "hyperf/utils": "~3.1.0",
  3444. "php": ">=8.1",
  3445. "psr/container": "^1.0|^2.0"
  3446. },
  3447. "suggest": {
  3448. "psr/event-dispatcher": "Required to use events."
  3449. },
  3450. "type": "library",
  3451. "extra": {
  3452. "branch-alias": {
  3453. "dev-master": "3.1-dev"
  3454. },
  3455. "hyperf": {
  3456. "config": "Hyperf\\Pool\\ConfigProvider"
  3457. }
  3458. },
  3459. "autoload": {
  3460. "psr-4": {
  3461. "Hyperf\\Pool\\": "src/"
  3462. }
  3463. },
  3464. "notification-url": "https://packagist.org/downloads/",
  3465. "license": [
  3466. "MIT"
  3467. ],
  3468. "description": "An independent universal connection pool component.",
  3469. "homepage": "https://hyperf.io",
  3470. "keywords": [
  3471. "connection-pool",
  3472. "hyperf",
  3473. "php",
  3474. "swoole"
  3475. ],
  3476. "support": {
  3477. "docs": "https://hyperf.wiki",
  3478. "issues": "https://github.com/hyperf/hyperf/issues",
  3479. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3480. "source": "https://github.com/hyperf/hyperf"
  3481. },
  3482. "funding": [
  3483. {
  3484. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3485. "type": "custom"
  3486. },
  3487. {
  3488. "url": "https://opencollective.com/hyperf",
  3489. "type": "open_collective"
  3490. }
  3491. ],
  3492. "time": "2024-03-23T11:28:51+00:00"
  3493. },
  3494. {
  3495. "name": "hyperf/process",
  3496. "version": "v3.1.15",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/hyperf/process.git",
  3500. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3505. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3506. "shasum": ""
  3507. },
  3508. "require": {
  3509. "hyperf/contract": "~3.1.0",
  3510. "hyperf/support": "~3.1.0",
  3511. "hyperf/utils": "~3.1.0",
  3512. "php": ">=8.1",
  3513. "psr/container": "^1.0|^2.0",
  3514. "psr/event-dispatcher": "^1.0"
  3515. },
  3516. "suggest": {
  3517. "hyperf/di": "Required to use annotations.",
  3518. "hyperf/event": "Required to dump the message before and after process.",
  3519. "hyperf/framework": "Required to use BootProcessListener."
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-master": "3.1-dev"
  3525. },
  3526. "hyperf": {
  3527. "config": "Hyperf\\Process\\ConfigProvider"
  3528. }
  3529. },
  3530. "autoload": {
  3531. "psr-4": {
  3532. "Hyperf\\Process\\": "src/"
  3533. }
  3534. },
  3535. "notification-url": "https://packagist.org/downloads/",
  3536. "license": [
  3537. "MIT"
  3538. ],
  3539. "description": "A process component for hyperf.",
  3540. "homepage": "https://hyperf.io",
  3541. "keywords": [
  3542. "hyperf",
  3543. "php",
  3544. "process"
  3545. ],
  3546. "support": {
  3547. "docs": "https://hyperf.wiki",
  3548. "issues": "https://github.com/hyperf/hyperf/issues",
  3549. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3550. "source": "https://github.com/hyperf/hyperf"
  3551. },
  3552. "funding": [
  3553. {
  3554. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3555. "type": "custom"
  3556. },
  3557. {
  3558. "url": "https://opencollective.com/hyperf",
  3559. "type": "open_collective"
  3560. }
  3561. ],
  3562. "time": "2024-03-23T11:28:51+00:00"
  3563. },
  3564. {
  3565. "name": "hyperf/redis",
  3566. "version": "v3.1.27",
  3567. "source": {
  3568. "type": "git",
  3569. "url": "https://github.com/hyperf/redis.git",
  3570. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194"
  3571. },
  3572. "dist": {
  3573. "type": "zip",
  3574. "url": "https://api.github.com/repos/hyperf/redis/zipball/535f5f107b6d531b56fabe017a5f544cc53fc194",
  3575. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194",
  3576. "shasum": "",
  3577. "mirrors": [
  3578. {
  3579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3580. "preferred": true
  3581. }
  3582. ]
  3583. },
  3584. "require": {
  3585. "ext-redis": "^5.0 || ^6.0",
  3586. "hyperf/contract": "~3.1.0",
  3587. "hyperf/pool": "~3.1.0",
  3588. "hyperf/support": "~3.1.0",
  3589. "hyperf/tappable": "~3.1.0",
  3590. "hyperf/utils": "~3.1.0",
  3591. "php": ">=8.1",
  3592. "psr/container": "^1.0 || ^2.0"
  3593. },
  3594. "suggest": {
  3595. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3596. "hyperf/di": "Create the RedisPool via dependency injection."
  3597. },
  3598. "type": "library",
  3599. "extra": {
  3600. "branch-alias": {
  3601. "dev-master": "3.1-dev"
  3602. },
  3603. "hyperf": {
  3604. "config": "Hyperf\\Redis\\ConfigProvider"
  3605. }
  3606. },
  3607. "autoload": {
  3608. "psr-4": {
  3609. "Hyperf\\Redis\\": "src/"
  3610. }
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "MIT"
  3615. ],
  3616. "description": "A redis component for hyperf.",
  3617. "homepage": "https://hyperf.io",
  3618. "keywords": [
  3619. "hyperf",
  3620. "php",
  3621. "pool",
  3622. "redis"
  3623. ],
  3624. "support": {
  3625. "docs": "https://hyperf.wiki",
  3626. "issues": "https://github.com/hyperf/hyperf/issues",
  3627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3628. "source": "https://github.com/hyperf/hyperf"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://opencollective.com/hyperf",
  3637. "type": "open_collective"
  3638. }
  3639. ],
  3640. "time": "2024-06-17T01:51:06+00:00"
  3641. },
  3642. {
  3643. "name": "hyperf/rpc",
  3644. "version": "v3.1.15",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/hyperf/rpc.git",
  3648. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3653. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "hyperf/codec": "~3.1.0",
  3658. "hyperf/contract": "~3.1.0",
  3659. "hyperf/support": "~3.1.0",
  3660. "jetbrains/phpstorm-attributes": "^1.0",
  3661. "php": ">=8.1"
  3662. },
  3663. "type": "library",
  3664. "extra": {
  3665. "branch-alias": {
  3666. "dev-master": "3.1-dev"
  3667. },
  3668. "hyperf": []
  3669. },
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Hyperf\\Rpc\\": "src/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "description": "A rpc basic library for Hyperf.",
  3680. "homepage": "https://hyperf.io",
  3681. "keywords": [
  3682. "hyperf",
  3683. "php",
  3684. "rpc",
  3685. "swoole"
  3686. ],
  3687. "support": {
  3688. "docs": "https://hyperf.wiki",
  3689. "issues": "https://github.com/hyperf/hyperf/issues",
  3690. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3691. "source": "https://github.com/hyperf/hyperf"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3696. "type": "custom"
  3697. },
  3698. {
  3699. "url": "https://opencollective.com/hyperf",
  3700. "type": "open_collective"
  3701. }
  3702. ],
  3703. "time": "2024-03-23T11:28:51+00:00"
  3704. },
  3705. {
  3706. "name": "hyperf/rpc-server",
  3707. "version": "v3.1.20",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/hyperf/rpc-server.git",
  3711. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3716. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3717. "shasum": ""
  3718. },
  3719. "require": {
  3720. "hyperf/http-server": "~3.1.0",
  3721. "hyperf/rpc": "~3.1.0",
  3722. "php": ">=8.1"
  3723. },
  3724. "suggest": {
  3725. "hyperf/di": "Required to use annotations."
  3726. },
  3727. "type": "library",
  3728. "extra": {
  3729. "branch-alias": {
  3730. "dev-master": "3.1-dev"
  3731. },
  3732. "hyperf": {
  3733. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3734. }
  3735. },
  3736. "autoload": {
  3737. "psr-4": {
  3738. "Hyperf\\RpcServer\\": "src/"
  3739. }
  3740. },
  3741. "notification-url": "https://packagist.org/downloads/",
  3742. "license": [
  3743. "MIT"
  3744. ],
  3745. "description": "An abstract rpc server component for Hyperf.",
  3746. "homepage": "https://hyperf.io",
  3747. "keywords": [
  3748. "hyperf",
  3749. "php",
  3750. "rpc",
  3751. "rpc-server",
  3752. "swoole"
  3753. ],
  3754. "support": {
  3755. "docs": "https://hyperf.wiki",
  3756. "issues": "https://github.com/hyperf/hyperf/issues",
  3757. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3758. "source": "https://github.com/hyperf/hyperf"
  3759. },
  3760. "funding": [
  3761. {
  3762. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3763. "type": "custom"
  3764. },
  3765. {
  3766. "url": "https://opencollective.com/hyperf",
  3767. "type": "open_collective"
  3768. }
  3769. ],
  3770. "time": "2024-04-22T01:46:29+00:00"
  3771. },
  3772. {
  3773. "name": "hyperf/serializer",
  3774. "version": "v3.1.23",
  3775. "source": {
  3776. "type": "git",
  3777. "url": "https://github.com/hyperf/serializer.git",
  3778. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3779. },
  3780. "dist": {
  3781. "type": "zip",
  3782. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3783. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3784. "shasum": ""
  3785. },
  3786. "require": {
  3787. "hyperf/contract": "~3.1.0",
  3788. "php": ">=8.1"
  3789. },
  3790. "suggest": {
  3791. "hyperf/di": "Required to use ExceptionNormalizer",
  3792. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3793. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-master": "3.1-dev"
  3799. },
  3800. "hyperf": {
  3801. "config": "Hyperf\\Serializer\\ConfigProvider"
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "Hyperf\\Serializer\\": "src/"
  3807. }
  3808. },
  3809. "notification-url": "https://packagist.org/downloads/",
  3810. "license": [
  3811. "MIT"
  3812. ],
  3813. "description": "A serializer component for Hyperf.",
  3814. "homepage": "https://hyperf.io",
  3815. "keywords": [
  3816. "hyperf",
  3817. "php",
  3818. "swoole",
  3819. "tappable"
  3820. ],
  3821. "support": {
  3822. "docs": "https://hyperf.wiki",
  3823. "issues": "https://github.com/hyperf/hyperf/issues",
  3824. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3825. "source": "https://github.com/hyperf/hyperf"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3830. "type": "custom"
  3831. },
  3832. {
  3833. "url": "https://opencollective.com/hyperf",
  3834. "type": "open_collective"
  3835. }
  3836. ],
  3837. "time": "2024-05-23T03:43:58+00:00"
  3838. },
  3839. {
  3840. "name": "hyperf/server",
  3841. "version": "v3.1.23",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/hyperf/server.git",
  3845. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3850. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3851. "shasum": ""
  3852. },
  3853. "require": {
  3854. "hyperf/contract": "~3.1.0",
  3855. "hyperf/coordinator": "~3.1.0",
  3856. "hyperf/engine": "^2.8",
  3857. "hyperf/support": "~3.1.0",
  3858. "hyperf/tappable": "~3.1.0",
  3859. "php": ">=8.1",
  3860. "psr/container": "^1.0|^2.0",
  3861. "psr/event-dispatcher": "^1.0",
  3862. "psr/log": "^1.0|^2.0|^3.0",
  3863. "symfony/console": "^5.0|^6.0|^7.0"
  3864. },
  3865. "suggest": {
  3866. "hyperf/event": "Dump the info after server start.",
  3867. "hyperf/framework": "Dump the info after server start."
  3868. },
  3869. "type": "library",
  3870. "extra": {
  3871. "branch-alias": {
  3872. "dev-master": "3.1-dev"
  3873. },
  3874. "hyperf": {
  3875. "config": "Hyperf\\Server\\ConfigProvider"
  3876. }
  3877. },
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Hyperf\\Server\\": "src/"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "MIT"
  3886. ],
  3887. "description": "A base server library for Hyperf.",
  3888. "homepage": "https://hyperf.io",
  3889. "keywords": [
  3890. "hyperf",
  3891. "php",
  3892. "server",
  3893. "swoole"
  3894. ],
  3895. "support": {
  3896. "docs": "https://hyperf.wiki",
  3897. "issues": "https://github.com/hyperf/hyperf/issues",
  3898. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3899. "source": "https://github.com/hyperf/hyperf"
  3900. },
  3901. "funding": [
  3902. {
  3903. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3904. "type": "custom"
  3905. },
  3906. {
  3907. "url": "https://opencollective.com/hyperf",
  3908. "type": "open_collective"
  3909. }
  3910. ],
  3911. "time": "2024-05-23T03:43:58+00:00"
  3912. },
  3913. {
  3914. "name": "hyperf/service-governance",
  3915. "version": "v3.1.15",
  3916. "source": {
  3917. "type": "git",
  3918. "url": "https://github.com/hyperf/service-governance.git",
  3919. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3920. },
  3921. "dist": {
  3922. "type": "zip",
  3923. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3924. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3925. "shasum": ""
  3926. },
  3927. "require": {
  3928. "hyperf/contract": "~3.1.0",
  3929. "hyperf/support": "~3.1.0",
  3930. "jetbrains/phpstorm-attributes": "^1.0",
  3931. "php": ">=8.1"
  3932. },
  3933. "suggest": {
  3934. "hyperf/event": "Required to use RegisterServiceListener.",
  3935. "hyperf/framework": "Required to use RegisterServiceListener.",
  3936. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3937. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3938. },
  3939. "type": "library",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-master": "3.1-dev"
  3943. },
  3944. "hyperf": {
  3945. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3946. }
  3947. },
  3948. "autoload": {
  3949. "psr-4": {
  3950. "Hyperf\\ServiceGovernance\\": "src/"
  3951. }
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "description": "A service governance component for Hyperf.",
  3958. "homepage": "https://hyperf.io",
  3959. "keywords": [
  3960. "hyperf",
  3961. "php",
  3962. "service-governance",
  3963. "swoole"
  3964. ],
  3965. "support": {
  3966. "docs": "https://hyperf.wiki",
  3967. "issues": "https://github.com/hyperf/hyperf/issues",
  3968. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3969. "source": "https://github.com/hyperf/hyperf"
  3970. },
  3971. "funding": [
  3972. {
  3973. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3974. "type": "custom"
  3975. },
  3976. {
  3977. "url": "https://opencollective.com/hyperf",
  3978. "type": "open_collective"
  3979. }
  3980. ],
  3981. "time": "2024-03-23T11:28:51+00:00"
  3982. },
  3983. {
  3984. "name": "hyperf/service-governance-consul",
  3985. "version": "v3.1.15",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://github.com/hyperf/service-governance-consul.git",
  3989. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3994. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3995. "shasum": ""
  3996. },
  3997. "require": {
  3998. "hyperf/consul": "~3.1.0",
  3999. "hyperf/contract": "~3.1.0",
  4000. "hyperf/service-governance": "~3.1.0",
  4001. "hyperf/support": "~3.1.0",
  4002. "hyperf/utils": "~3.1.0",
  4003. "php": ">=8.1"
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "branch-alias": {
  4008. "dev-master": "3.1-dev"
  4009. },
  4010. "hyperf": {
  4011. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4012. }
  4013. },
  4014. "autoload": {
  4015. "psr-4": {
  4016. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4017. }
  4018. },
  4019. "notification-url": "https://packagist.org/downloads/",
  4020. "license": [
  4021. "MIT"
  4022. ],
  4023. "description": "A consul adapter for service governance.",
  4024. "homepage": "https://hyperf.io",
  4025. "keywords": [
  4026. "consul-adapter",
  4027. "hyperf",
  4028. "php",
  4029. "service-governance",
  4030. "swoole"
  4031. ],
  4032. "support": {
  4033. "docs": "https://hyperf.wiki",
  4034. "issues": "https://github.com/hyperf/hyperf/issues",
  4035. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4036. "source": "https://github.com/hyperf/hyperf"
  4037. },
  4038. "funding": [
  4039. {
  4040. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4041. "type": "custom"
  4042. },
  4043. {
  4044. "url": "https://opencollective.com/hyperf",
  4045. "type": "open_collective"
  4046. }
  4047. ],
  4048. "time": "2024-03-23T11:28:51+00:00"
  4049. },
  4050. {
  4051. "name": "hyperf/service-governance-nacos",
  4052. "version": "v3.1.15",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4056. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4061. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4062. "shasum": ""
  4063. },
  4064. "require": {
  4065. "hyperf/codec": "~3.1.0",
  4066. "hyperf/contract": "~3.1.0",
  4067. "hyperf/nacos": "~3.1.0",
  4068. "hyperf/service-governance": "~3.1.0",
  4069. "hyperf/support": "~3.1.0",
  4070. "hyperf/utils": "~3.1.0",
  4071. "php": ">=8.1"
  4072. },
  4073. "type": "library",
  4074. "extra": {
  4075. "branch-alias": {
  4076. "dev-master": "3.1-dev"
  4077. },
  4078. "hyperf": {
  4079. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4080. }
  4081. },
  4082. "autoload": {
  4083. "psr-4": {
  4084. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4085. }
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "description": "A nacos adapter for service governance.",
  4092. "homepage": "https://hyperf.io",
  4093. "keywords": [
  4094. "hyperf",
  4095. "nacos-adapter",
  4096. "php",
  4097. "service-governance",
  4098. "swoole"
  4099. ],
  4100. "support": {
  4101. "docs": "https://hyperf.wiki",
  4102. "issues": "https://github.com/hyperf/hyperf/issues",
  4103. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4104. "source": "https://github.com/hyperf/hyperf"
  4105. },
  4106. "funding": [
  4107. {
  4108. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4109. "type": "custom"
  4110. },
  4111. {
  4112. "url": "https://opencollective.com/hyperf",
  4113. "type": "open_collective"
  4114. }
  4115. ],
  4116. "time": "2024-03-23T11:28:51+00:00"
  4117. },
  4118. {
  4119. "name": "hyperf/snowflake",
  4120. "version": "v3.1.15",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/hyperf/snowflake.git",
  4124. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  4129. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "hyperf/contract": "~3.1.0",
  4140. "php": ">=8.1"
  4141. },
  4142. "suggest": {
  4143. "hyperf/config": "Required to read snowflake config.",
  4144. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4145. "psr/container": "Required to use MetaGeneratorFactory."
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-master": "3.1-dev"
  4151. },
  4152. "hyperf": {
  4153. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Hyperf\\Snowflake\\": "src/"
  4159. }
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "MIT"
  4164. ],
  4165. "description": "A snowflake library",
  4166. "homepage": "https://hyperf.io",
  4167. "keywords": [
  4168. "php",
  4169. "snowflake"
  4170. ],
  4171. "support": {
  4172. "docs": "https://hyperf.wiki",
  4173. "issues": "https://github.com/hyperf/hyperf/issues",
  4174. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4175. "source": "https://github.com/hyperf/hyperf"
  4176. },
  4177. "funding": [
  4178. {
  4179. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4180. "type": "custom"
  4181. },
  4182. {
  4183. "url": "https://opencollective.com/hyperf",
  4184. "type": "open_collective"
  4185. }
  4186. ],
  4187. "time": "2024-03-23T11:28:51+00:00"
  4188. },
  4189. {
  4190. "name": "hyperf/socketio-server",
  4191. "version": "v3.1.27",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/hyperf/socketio-server.git",
  4195. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/hyperf/socketio-server/zipball/e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4200. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4201. "shasum": ""
  4202. },
  4203. "require": {
  4204. "ext-json": "*",
  4205. "ext-redis": "*",
  4206. "hyperf/codec": "~3.1.0",
  4207. "hyperf/collection": "~3.1.0",
  4208. "hyperf/di": "~3.1.0",
  4209. "hyperf/redis": "~3.1.0",
  4210. "hyperf/websocket-server": "~3.1.0",
  4211. "php": ">=8.1",
  4212. "psr/container": "^1.0 || ^2.0"
  4213. },
  4214. "conflict": {
  4215. "mix/redis-subscriber": "<3.0.4"
  4216. },
  4217. "suggest": {
  4218. "hyperf/command": "Required to use RemoveRedisGarbage command",
  4219. "hyperf/nsq": "Required to use RedisNsqAdapter",
  4220. "hyperf/session": "Required to use session",
  4221. "mix/redis-subscriber": "Suggest to use RedisAdapter (^3.0.4)"
  4222. },
  4223. "type": "library",
  4224. "extra": {
  4225. "branch-alias": {
  4226. "dev-master": "3.1-dev"
  4227. },
  4228. "hyperf": {
  4229. "config": "Hyperf\\SocketIOServer\\ConfigProvider"
  4230. }
  4231. },
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Hyperf\\SocketIOServer\\": "src/"
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "description": "Socket.io implementation for hyperf",
  4242. "keywords": [
  4243. "hyperf",
  4244. "php"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/hyperf/socketio-server/issues",
  4248. "source": "https://github.com/hyperf/socketio-server/tree/v3.1.27"
  4249. },
  4250. "funding": [
  4251. {
  4252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4253. "type": "custom"
  4254. },
  4255. {
  4256. "url": "https://opencollective.com/hyperf",
  4257. "type": "open_collective"
  4258. }
  4259. ],
  4260. "time": "2024-06-17T01:51:06+00:00"
  4261. },
  4262. {
  4263. "name": "hyperf/stdlib",
  4264. "version": "v3.1.15",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/hyperf/stdlib.git",
  4268. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4273. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4274. "shasum": ""
  4275. },
  4276. "require": {
  4277. "php": ">=8.1"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-master": "3.1-dev"
  4283. }
  4284. },
  4285. "autoload": {
  4286. "psr-4": {
  4287. "Hyperf\\Stdlib\\": "src/"
  4288. }
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "description": "A stdlib component for Hyperf.",
  4295. "homepage": "https://hyperf.io",
  4296. "keywords": [
  4297. "hyperf",
  4298. "php",
  4299. "stdlib",
  4300. "swoole"
  4301. ],
  4302. "support": {
  4303. "docs": "https://hyperf.wiki",
  4304. "issues": "https://github.com/hyperf/hyperf/issues",
  4305. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4306. "source": "https://github.com/hyperf/hyperf"
  4307. },
  4308. "funding": [
  4309. {
  4310. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4311. "type": "custom"
  4312. },
  4313. {
  4314. "url": "https://opencollective.com/hyperf",
  4315. "type": "open_collective"
  4316. }
  4317. ],
  4318. "time": "2024-03-23T11:28:51+00:00"
  4319. },
  4320. {
  4321. "name": "hyperf/stringable",
  4322. "version": "v3.1.24",
  4323. "source": {
  4324. "type": "git",
  4325. "url": "https://github.com/hyperf/stringable.git",
  4326. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4327. },
  4328. "dist": {
  4329. "type": "zip",
  4330. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4331. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4332. "shasum": ""
  4333. },
  4334. "require": {
  4335. "ext-mbstring": "*",
  4336. "hyperf/collection": "~3.1.0",
  4337. "hyperf/conditionable": "~3.1.0",
  4338. "hyperf/macroable": "~3.1.0",
  4339. "hyperf/tappable": "~3.1.0",
  4340. "php": ">=8.1"
  4341. },
  4342. "suggest": {
  4343. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4344. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4345. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-master": "3.1-dev"
  4351. }
  4352. },
  4353. "autoload": {
  4354. "files": [
  4355. "src/Functions.php"
  4356. ],
  4357. "psr-4": {
  4358. "Hyperf\\Stringable\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "description": "Hyperf Stringable package which come from illuminate/support",
  4366. "homepage": "https://hyperf.io",
  4367. "keywords": [
  4368. "hyperf",
  4369. "php",
  4370. "stringable",
  4371. "swoole"
  4372. ],
  4373. "support": {
  4374. "docs": "https://hyperf.wiki",
  4375. "issues": "https://github.com/hyperf/hyperf/issues",
  4376. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4377. "source": "https://github.com/hyperf/hyperf"
  4378. },
  4379. "funding": [
  4380. {
  4381. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4382. "type": "custom"
  4383. },
  4384. {
  4385. "url": "https://opencollective.com/hyperf",
  4386. "type": "open_collective"
  4387. }
  4388. ],
  4389. "time": "2024-05-27T03:20:24+00:00"
  4390. },
  4391. {
  4392. "name": "hyperf/support",
  4393. "version": "v3.1.15",
  4394. "source": {
  4395. "type": "git",
  4396. "url": "https://github.com/hyperf/support.git",
  4397. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4398. },
  4399. "dist": {
  4400. "type": "zip",
  4401. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4402. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4403. "shasum": ""
  4404. },
  4405. "require": {
  4406. "hyperf/collection": "~3.1.0",
  4407. "hyperf/context": "~3.1.0",
  4408. "hyperf/contract": "~3.1.0",
  4409. "hyperf/coroutine": "~3.1.0",
  4410. "hyperf/macroable": "~3.1.0",
  4411. "hyperf/stringable": "~3.1.0",
  4412. "php": ">=8.1"
  4413. },
  4414. "suggest": {
  4415. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. }
  4422. },
  4423. "autoload": {
  4424. "files": [
  4425. "src/Functions.php"
  4426. ],
  4427. "psr-4": {
  4428. "Hyperf\\Support\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A support component for Hyperf.",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "hyperf",
  4439. "php",
  4440. "support",
  4441. "swoole"
  4442. ],
  4443. "support": {
  4444. "docs": "https://hyperf.wiki",
  4445. "issues": "https://github.com/hyperf/hyperf/issues",
  4446. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4447. "source": "https://github.com/hyperf/hyperf"
  4448. },
  4449. "funding": [
  4450. {
  4451. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4452. "type": "custom"
  4453. },
  4454. {
  4455. "url": "https://opencollective.com/hyperf",
  4456. "type": "open_collective"
  4457. }
  4458. ],
  4459. "time": "2024-03-23T11:28:51+00:00"
  4460. },
  4461. {
  4462. "name": "hyperf/tappable",
  4463. "version": "v3.1.15",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/hyperf/tappable.git",
  4467. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4472. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4473. "shasum": ""
  4474. },
  4475. "require": {
  4476. "php": ">=8.1"
  4477. },
  4478. "type": "library",
  4479. "extra": {
  4480. "branch-alias": {
  4481. "dev-master": "3.1-dev"
  4482. }
  4483. },
  4484. "autoload": {
  4485. "files": [
  4486. "src/Functions.php"
  4487. ],
  4488. "psr-4": {
  4489. "Hyperf\\Tappable\\": "src/"
  4490. }
  4491. },
  4492. "notification-url": "https://packagist.org/downloads/",
  4493. "license": [
  4494. "MIT"
  4495. ],
  4496. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4497. "homepage": "https://hyperf.io",
  4498. "keywords": [
  4499. "hyperf",
  4500. "php",
  4501. "swoole",
  4502. "tappable"
  4503. ],
  4504. "support": {
  4505. "docs": "https://hyperf.wiki",
  4506. "issues": "https://github.com/hyperf/hyperf/issues",
  4507. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4508. "source": "https://github.com/hyperf/hyperf"
  4509. },
  4510. "funding": [
  4511. {
  4512. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4513. "type": "custom"
  4514. },
  4515. {
  4516. "url": "https://opencollective.com/hyperf",
  4517. "type": "open_collective"
  4518. }
  4519. ],
  4520. "time": "2024-03-23T11:28:51+00:00"
  4521. },
  4522. {
  4523. "name": "hyperf/utils",
  4524. "version": "v3.1.27",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/hyperf/utils.git",
  4528. "reference": "05cbe18451813d843df419eabdf6c69843796f20"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/hyperf/utils/zipball/05cbe18451813d843df419eabdf6c69843796f20",
  4533. "reference": "05cbe18451813d843df419eabdf6c69843796f20",
  4534. "shasum": "",
  4535. "mirrors": [
  4536. {
  4537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4538. "preferred": true
  4539. }
  4540. ]
  4541. },
  4542. "require": {
  4543. "doctrine/inflector": "^2.0",
  4544. "hyperf/code-parser": "~3.1.0",
  4545. "hyperf/codec": "~3.1.0",
  4546. "hyperf/collection": "~3.1.0",
  4547. "hyperf/context": "~3.1.0",
  4548. "hyperf/contract": "~3.1.0",
  4549. "hyperf/coordinator": "~3.1.0",
  4550. "hyperf/coroutine": "~3.1.0",
  4551. "hyperf/engine": "^2.0",
  4552. "hyperf/macroable": "~3.1.0",
  4553. "hyperf/serializer": "~3.1.0",
  4554. "hyperf/stringable": "~3.1.0",
  4555. "hyperf/support": "~3.1.0",
  4556. "php": ">=8.1"
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "branch-alias": {
  4561. "dev-master": "3.1-dev"
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "description": "A tools package that could help developer solved the problem quickly.",
  4569. "homepage": "https://hyperf.io",
  4570. "keywords": [
  4571. "hyperf",
  4572. "php",
  4573. "swoole",
  4574. "utils"
  4575. ],
  4576. "support": {
  4577. "docs": "https://hyperf.wiki",
  4578. "issues": "https://github.com/hyperf/hyperf/issues",
  4579. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4580. "source": "https://github.com/hyperf/hyperf"
  4581. },
  4582. "funding": [
  4583. {
  4584. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4585. "type": "custom"
  4586. },
  4587. {
  4588. "url": "https://opencollective.com/hyperf",
  4589. "type": "open_collective"
  4590. }
  4591. ],
  4592. "time": "2024-06-17T01:51:06+00:00"
  4593. },
  4594. {
  4595. "name": "hyperf/websocket-server",
  4596. "version": "v3.1.16",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/hyperf/websocket-server.git",
  4600. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4605. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4606. "shasum": "",
  4607. "mirrors": [
  4608. {
  4609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4610. "preferred": true
  4611. }
  4612. ]
  4613. },
  4614. "require": {
  4615. "hyperf/collection": "~3.1.0",
  4616. "hyperf/contract": "~3.1.0",
  4617. "hyperf/exception-handler": "~3.1.0",
  4618. "hyperf/http-server": "~3.1.0",
  4619. "hyperf/support": "~3.1.0",
  4620. "hyperf/utils": "~3.1.0",
  4621. "php": ">=8.1",
  4622. "psr/container": "^1.0|^2.0",
  4623. "psr/event-dispatcher": "^1.0"
  4624. },
  4625. "type": "library",
  4626. "extra": {
  4627. "branch-alias": {
  4628. "dev-master": "3.1-dev"
  4629. },
  4630. "hyperf": {
  4631. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4632. }
  4633. },
  4634. "autoload": {
  4635. "psr-4": {
  4636. "Hyperf\\WebSocketServer\\": "src/"
  4637. }
  4638. },
  4639. "notification-url": "https://packagist.org/downloads/",
  4640. "license": [
  4641. "MIT"
  4642. ],
  4643. "description": "A websocket server library for Hyperf.",
  4644. "homepage": "https://hyperf.io",
  4645. "keywords": [
  4646. "hyperf",
  4647. "php",
  4648. "swoole",
  4649. "websocket"
  4650. ],
  4651. "support": {
  4652. "docs": "https://hyperf.wiki",
  4653. "issues": "https://github.com/hyperf/hyperf/issues",
  4654. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4655. "source": "https://github.com/hyperf/hyperf"
  4656. },
  4657. "funding": [
  4658. {
  4659. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4660. "type": "custom"
  4661. },
  4662. {
  4663. "url": "https://opencollective.com/hyperf",
  4664. "type": "open_collective"
  4665. }
  4666. ],
  4667. "time": "2024-04-02T02:40:09+00:00"
  4668. },
  4669. {
  4670. "name": "jetbrains/phpstorm-attributes",
  4671. "version": "1.1",
  4672. "source": {
  4673. "type": "git",
  4674. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4675. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4676. },
  4677. "dist": {
  4678. "type": "zip",
  4679. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4680. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4681. "shasum": ""
  4682. },
  4683. "type": "library",
  4684. "autoload": {
  4685. "psr-4": {
  4686. "JetBrains\\PhpStorm\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "Apache-2.0"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "JetBrains",
  4696. "homepage": "https://www.jetbrains.com"
  4697. }
  4698. ],
  4699. "description": "PhpStorm specific attributes",
  4700. "keywords": [
  4701. "attributes",
  4702. "jetbrains",
  4703. "phpstorm"
  4704. ],
  4705. "support": {
  4706. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4707. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4708. },
  4709. "time": "2023-09-01T08:50:25+00:00"
  4710. },
  4711. {
  4712. "name": "laminas/laminas-mime",
  4713. "version": "2.12.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/laminas/laminas-mime.git",
  4717. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4722. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4727. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4728. },
  4729. "conflict": {
  4730. "zendframework/zend-mime": "*"
  4731. },
  4732. "require-dev": {
  4733. "laminas/laminas-coding-standard": "~2.4.0",
  4734. "laminas/laminas-mail": "^2.19.0",
  4735. "phpunit/phpunit": "~9.5.25"
  4736. },
  4737. "suggest": {
  4738. "laminas/laminas-mail": "Laminas\\Mail component"
  4739. },
  4740. "type": "library",
  4741. "autoload": {
  4742. "psr-4": {
  4743. "Laminas\\Mime\\": "src/"
  4744. }
  4745. },
  4746. "notification-url": "https://packagist.org/downloads/",
  4747. "license": [
  4748. "BSD-3-Clause"
  4749. ],
  4750. "description": "Create and parse MIME messages and parts",
  4751. "homepage": "https://laminas.dev",
  4752. "keywords": [
  4753. "laminas",
  4754. "mime"
  4755. ],
  4756. "support": {
  4757. "chat": "https://laminas.dev/chat",
  4758. "docs": "https://docs.laminas.dev/laminas-mime/",
  4759. "forum": "https://discourse.laminas.dev",
  4760. "issues": "https://github.com/laminas/laminas-mime/issues",
  4761. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4762. "source": "https://github.com/laminas/laminas-mime"
  4763. },
  4764. "funding": [
  4765. {
  4766. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4767. "type": "community_bridge"
  4768. }
  4769. ],
  4770. "time": "2023-11-02T16:47:19+00:00"
  4771. },
  4772. {
  4773. "name": "laminas/laminas-stdlib",
  4774. "version": "3.19.0",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/laminas/laminas-stdlib.git",
  4778. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4783. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4788. },
  4789. "conflict": {
  4790. "zendframework/zend-stdlib": "*"
  4791. },
  4792. "require-dev": {
  4793. "laminas/laminas-coding-standard": "^2.5",
  4794. "phpbench/phpbench": "^1.2.15",
  4795. "phpunit/phpunit": "^10.5.8",
  4796. "psalm/plugin-phpunit": "^0.18.4",
  4797. "vimeo/psalm": "^5.20.0"
  4798. },
  4799. "type": "library",
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Laminas\\Stdlib\\": "src/"
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "BSD-3-Clause"
  4808. ],
  4809. "description": "SPL extensions, array utilities, error handlers, and more",
  4810. "homepage": "https://laminas.dev",
  4811. "keywords": [
  4812. "laminas",
  4813. "stdlib"
  4814. ],
  4815. "support": {
  4816. "chat": "https://laminas.dev/chat",
  4817. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4818. "forum": "https://discourse.laminas.dev",
  4819. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4820. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4821. "source": "https://github.com/laminas/laminas-stdlib"
  4822. },
  4823. "funding": [
  4824. {
  4825. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4826. "type": "community_bridge"
  4827. }
  4828. ],
  4829. "time": "2024-01-19T12:39:49+00:00"
  4830. },
  4831. {
  4832. "name": "markrogoyski/math-php",
  4833. "version": "v2.10.0",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/markrogoyski/math-php.git",
  4837. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4842. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "ext-json": "*",
  4847. "php": ">=7.2.0"
  4848. },
  4849. "require-dev": {
  4850. "php-coveralls/php-coveralls": "^2.0",
  4851. "php-parallel-lint/php-parallel-lint": "^1.2",
  4852. "phploc/phploc": "*",
  4853. "phpmd/phpmd": "^2.6",
  4854. "phpstan/phpstan": "^1.10",
  4855. "phpunit/phpunit": "^8.5",
  4856. "squizlabs/php_codesniffer": "3.*"
  4857. },
  4858. "type": "library",
  4859. "autoload": {
  4860. "psr-4": {
  4861. "MathPHP\\": "src/"
  4862. }
  4863. },
  4864. "notification-url": "https://packagist.org/downloads/",
  4865. "license": [
  4866. "MIT"
  4867. ],
  4868. "authors": [
  4869. {
  4870. "name": "Mark Rogoyski",
  4871. "email": "mark@rogoyski.com",
  4872. "homepage": "https://github.com/markrogoyski",
  4873. "role": "Lead developer"
  4874. },
  4875. {
  4876. "name": "Kevin Nowaczyk",
  4877. "homepage": "https://github.com/Beakerboy",
  4878. "role": "Developer"
  4879. },
  4880. {
  4881. "name": "MathPHP Community of Contributors",
  4882. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4883. }
  4884. ],
  4885. "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",
  4886. "homepage": "https://github.com/markrogoyski/math-php/",
  4887. "keywords": [
  4888. "algebra",
  4889. "combinatorics",
  4890. "distributions",
  4891. "linear algebra",
  4892. "math",
  4893. "mathematics",
  4894. "matrix",
  4895. "numerical analysis",
  4896. "probability",
  4897. "regressions",
  4898. "statistics"
  4899. ],
  4900. "support": {
  4901. "issues": "https://github.com/markrogoyski/math-php/issues",
  4902. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4903. },
  4904. "time": "2024-04-17T00:09:51+00:00"
  4905. },
  4906. {
  4907. "name": "monolog/monolog",
  4908. "version": "3.6.0",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/Seldaek/monolog.git",
  4912. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4917. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "php": ">=8.1",
  4922. "psr/log": "^2.0 || ^3.0"
  4923. },
  4924. "provide": {
  4925. "psr/log-implementation": "3.0.0"
  4926. },
  4927. "require-dev": {
  4928. "aws/aws-sdk-php": "^3.0",
  4929. "doctrine/couchdb": "~1.0@dev",
  4930. "elasticsearch/elasticsearch": "^7 || ^8",
  4931. "ext-json": "*",
  4932. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4933. "guzzlehttp/guzzle": "^7.4.5",
  4934. "guzzlehttp/psr7": "^2.2",
  4935. "mongodb/mongodb": "^1.8",
  4936. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4937. "phpstan/phpstan": "^1.9",
  4938. "phpstan/phpstan-deprecation-rules": "^1.0",
  4939. "phpstan/phpstan-strict-rules": "^1.4",
  4940. "phpunit/phpunit": "^10.5.17",
  4941. "predis/predis": "^1.1 || ^2",
  4942. "ruflin/elastica": "^7",
  4943. "symfony/mailer": "^5.4 || ^6",
  4944. "symfony/mime": "^5.4 || ^6"
  4945. },
  4946. "suggest": {
  4947. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4948. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4949. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4950. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4951. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4952. "ext-mbstring": "Allow to work properly with unicode symbols",
  4953. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4954. "ext-openssl": "Required to send log messages using SSL",
  4955. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4956. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4957. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4958. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4959. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4960. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4961. },
  4962. "type": "library",
  4963. "extra": {
  4964. "branch-alias": {
  4965. "dev-main": "3.x-dev"
  4966. }
  4967. },
  4968. "autoload": {
  4969. "psr-4": {
  4970. "Monolog\\": "src/Monolog"
  4971. }
  4972. },
  4973. "notification-url": "https://packagist.org/downloads/",
  4974. "license": [
  4975. "MIT"
  4976. ],
  4977. "authors": [
  4978. {
  4979. "name": "Jordi Boggiano",
  4980. "email": "j.boggiano@seld.be",
  4981. "homepage": "https://seld.be"
  4982. }
  4983. ],
  4984. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4985. "homepage": "https://github.com/Seldaek/monolog",
  4986. "keywords": [
  4987. "log",
  4988. "logging",
  4989. "psr-3"
  4990. ],
  4991. "support": {
  4992. "issues": "https://github.com/Seldaek/monolog/issues",
  4993. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4994. },
  4995. "funding": [
  4996. {
  4997. "url": "https://github.com/Seldaek",
  4998. "type": "github"
  4999. },
  5000. {
  5001. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5002. "type": "tidelift"
  5003. }
  5004. ],
  5005. "time": "2024-04-12T21:02:21+00:00"
  5006. },
  5007. {
  5008. "name": "nesbot/carbon",
  5009. "version": "2.72.5",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/briannesbitt/Carbon.git",
  5013. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5018. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "carbonphp/carbon-doctrine-types": "*",
  5023. "ext-json": "*",
  5024. "php": "^7.1.8 || ^8.0",
  5025. "psr/clock": "^1.0",
  5026. "symfony/polyfill-mbstring": "^1.0",
  5027. "symfony/polyfill-php80": "^1.16",
  5028. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5029. },
  5030. "provide": {
  5031. "psr/clock-implementation": "1.0"
  5032. },
  5033. "require-dev": {
  5034. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5035. "doctrine/orm": "^2.7 || ^3.0",
  5036. "friendsofphp/php-cs-fixer": "^3.0",
  5037. "kylekatarnls/multi-tester": "^2.0",
  5038. "ondrejmirtes/better-reflection": "*",
  5039. "phpmd/phpmd": "^2.9",
  5040. "phpstan/extension-installer": "^1.0",
  5041. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5042. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5043. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5044. "squizlabs/php_codesniffer": "^3.4"
  5045. },
  5046. "bin": [
  5047. "bin/carbon"
  5048. ],
  5049. "type": "library",
  5050. "extra": {
  5051. "branch-alias": {
  5052. "dev-master": "3.x-dev",
  5053. "dev-2.x": "2.x-dev"
  5054. },
  5055. "laravel": {
  5056. "providers": [
  5057. "Carbon\\Laravel\\ServiceProvider"
  5058. ]
  5059. },
  5060. "phpstan": {
  5061. "includes": [
  5062. "extension.neon"
  5063. ]
  5064. }
  5065. },
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Carbon\\": "src/Carbon/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Brian Nesbitt",
  5078. "email": "brian@nesbot.com",
  5079. "homepage": "https://markido.com"
  5080. },
  5081. {
  5082. "name": "kylekatarnls",
  5083. "homepage": "https://github.com/kylekatarnls"
  5084. }
  5085. ],
  5086. "description": "An API extension for DateTime that supports 281 different languages.",
  5087. "homepage": "https://carbon.nesbot.com",
  5088. "keywords": [
  5089. "date",
  5090. "datetime",
  5091. "time"
  5092. ],
  5093. "support": {
  5094. "docs": "https://carbon.nesbot.com/docs",
  5095. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5096. "source": "https://github.com/briannesbitt/Carbon"
  5097. },
  5098. "funding": [
  5099. {
  5100. "url": "https://github.com/sponsors/kylekatarnls",
  5101. "type": "github"
  5102. },
  5103. {
  5104. "url": "https://opencollective.com/Carbon#sponsor",
  5105. "type": "opencollective"
  5106. },
  5107. {
  5108. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5109. "type": "tidelift"
  5110. }
  5111. ],
  5112. "time": "2024-06-03T19:18:41+00:00"
  5113. },
  5114. {
  5115. "name": "nikic/fast-route",
  5116. "version": "v1.3.0",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/nikic/FastRoute.git",
  5120. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5125. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5126. "shasum": ""
  5127. },
  5128. "require": {
  5129. "php": ">=5.4.0"
  5130. },
  5131. "require-dev": {
  5132. "phpunit/phpunit": "^4.8.35|~5.7"
  5133. },
  5134. "type": "library",
  5135. "autoload": {
  5136. "files": [
  5137. "src/functions.php"
  5138. ],
  5139. "psr-4": {
  5140. "FastRoute\\": "src/"
  5141. }
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "BSD-3-Clause"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Nikita Popov",
  5150. "email": "nikic@php.net"
  5151. }
  5152. ],
  5153. "description": "Fast request router for PHP",
  5154. "keywords": [
  5155. "router",
  5156. "routing"
  5157. ],
  5158. "support": {
  5159. "issues": "https://github.com/nikic/FastRoute/issues",
  5160. "source": "https://github.com/nikic/FastRoute/tree/master"
  5161. },
  5162. "time": "2018-02-13T20:26:39+00:00"
  5163. },
  5164. {
  5165. "name": "nikic/php-parser",
  5166. "version": "v4.19.1",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/nikic/PHP-Parser.git",
  5170. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5175. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "ext-tokenizer": "*",
  5180. "php": ">=7.1"
  5181. },
  5182. "require-dev": {
  5183. "ircmaxell/php-yacc": "^0.0.7",
  5184. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5185. },
  5186. "bin": [
  5187. "bin/php-parse"
  5188. ],
  5189. "type": "library",
  5190. "extra": {
  5191. "branch-alias": {
  5192. "dev-master": "4.9-dev"
  5193. }
  5194. },
  5195. "autoload": {
  5196. "psr-4": {
  5197. "PhpParser\\": "lib/PhpParser"
  5198. }
  5199. },
  5200. "notification-url": "https://packagist.org/downloads/",
  5201. "license": [
  5202. "BSD-3-Clause"
  5203. ],
  5204. "authors": [
  5205. {
  5206. "name": "Nikita Popov"
  5207. }
  5208. ],
  5209. "description": "A PHP parser written in PHP",
  5210. "keywords": [
  5211. "parser",
  5212. "php"
  5213. ],
  5214. "support": {
  5215. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5216. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5217. },
  5218. "time": "2024-03-17T08:10:35+00:00"
  5219. },
  5220. {
  5221. "name": "paragonie/constant_time_encoding",
  5222. "version": "v3.0.0",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5226. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5231. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5232. "shasum": ""
  5233. },
  5234. "require": {
  5235. "php": "^8"
  5236. },
  5237. "require-dev": {
  5238. "phpunit/phpunit": "^9",
  5239. "vimeo/psalm": "^4|^5"
  5240. },
  5241. "type": "library",
  5242. "autoload": {
  5243. "psr-4": {
  5244. "ParagonIE\\ConstantTime\\": "src/"
  5245. }
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Paragon Initiative Enterprises",
  5254. "email": "security@paragonie.com",
  5255. "homepage": "https://paragonie.com",
  5256. "role": "Maintainer"
  5257. },
  5258. {
  5259. "name": "Steve 'Sc00bz' Thomas",
  5260. "email": "steve@tobtu.com",
  5261. "homepage": "https://www.tobtu.com",
  5262. "role": "Original Developer"
  5263. }
  5264. ],
  5265. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5266. "keywords": [
  5267. "base16",
  5268. "base32",
  5269. "base32_decode",
  5270. "base32_encode",
  5271. "base64",
  5272. "base64_decode",
  5273. "base64_encode",
  5274. "bin2hex",
  5275. "encoding",
  5276. "hex",
  5277. "hex2bin",
  5278. "rfc4648"
  5279. ],
  5280. "support": {
  5281. "email": "info@paragonie.com",
  5282. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5283. "source": "https://github.com/paragonie/constant_time_encoding"
  5284. },
  5285. "time": "2024-05-08T12:36:18+00:00"
  5286. },
  5287. {
  5288. "name": "paragonie/random_compat",
  5289. "version": "v9.99.100",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/paragonie/random_compat.git",
  5293. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5298. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5299. "shasum": ""
  5300. },
  5301. "require": {
  5302. "php": ">= 7"
  5303. },
  5304. "require-dev": {
  5305. "phpunit/phpunit": "4.*|5.*",
  5306. "vimeo/psalm": "^1"
  5307. },
  5308. "suggest": {
  5309. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5310. },
  5311. "type": "library",
  5312. "notification-url": "https://packagist.org/downloads/",
  5313. "license": [
  5314. "MIT"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Paragon Initiative Enterprises",
  5319. "email": "security@paragonie.com",
  5320. "homepage": "https://paragonie.com"
  5321. }
  5322. ],
  5323. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5324. "keywords": [
  5325. "csprng",
  5326. "polyfill",
  5327. "pseudorandom",
  5328. "random"
  5329. ],
  5330. "support": {
  5331. "email": "info@paragonie.com",
  5332. "issues": "https://github.com/paragonie/random_compat/issues",
  5333. "source": "https://github.com/paragonie/random_compat"
  5334. },
  5335. "time": "2020-10-15T08:29:30+00:00"
  5336. },
  5337. {
  5338. "name": "php-amqplib/php-amqplib",
  5339. "version": "v3.7.0",
  5340. "source": {
  5341. "type": "git",
  5342. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5343. "reference": "91fd00e74cd2eea624fd50a321d926b1c124bb99"
  5344. },
  5345. "dist": {
  5346. "type": "zip",
  5347. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/91fd00e74cd2eea624fd50a321d926b1c124bb99",
  5348. "reference": "91fd00e74cd2eea624fd50a321d926b1c124bb99",
  5349. "shasum": ""
  5350. },
  5351. "require": {
  5352. "ext-mbstring": "*",
  5353. "ext-sockets": "*",
  5354. "php": "^7.2||^8.0",
  5355. "phpseclib/phpseclib": "^2.0|^3.0"
  5356. },
  5357. "conflict": {
  5358. "php": "7.4.0 - 7.4.1"
  5359. },
  5360. "replace": {
  5361. "videlalvaro/php-amqplib": "self.version"
  5362. },
  5363. "require-dev": {
  5364. "ext-curl": "*",
  5365. "nategood/httpful": "^0.2.20",
  5366. "phpunit/phpunit": "^7.5|^9.5",
  5367. "squizlabs/php_codesniffer": "^3.6"
  5368. },
  5369. "type": "library",
  5370. "extra": {
  5371. "branch-alias": {
  5372. "dev-master": "3.0-dev"
  5373. }
  5374. },
  5375. "autoload": {
  5376. "psr-4": {
  5377. "PhpAmqpLib\\": "PhpAmqpLib/"
  5378. }
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "LGPL-2.1-or-later"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Alvaro Videla",
  5387. "role": "Original Maintainer"
  5388. },
  5389. {
  5390. "name": "Raúl Araya",
  5391. "email": "nubeiro@gmail.com",
  5392. "role": "Maintainer"
  5393. },
  5394. {
  5395. "name": "Luke Bakken",
  5396. "email": "luke@bakken.io",
  5397. "role": "Maintainer"
  5398. },
  5399. {
  5400. "name": "Ramūnas Dronga",
  5401. "email": "github@ramuno.lt",
  5402. "role": "Maintainer"
  5403. }
  5404. ],
  5405. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5406. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5407. "keywords": [
  5408. "message",
  5409. "queue",
  5410. "rabbitmq"
  5411. ],
  5412. "support": {
  5413. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5414. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.0"
  5415. },
  5416. "time": "2024-07-09T21:10:28+00:00"
  5417. },
  5418. {
  5419. "name": "php-di/phpdoc-reader",
  5420. "version": "2.2.1",
  5421. "source": {
  5422. "type": "git",
  5423. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5424. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5425. },
  5426. "dist": {
  5427. "type": "zip",
  5428. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5429. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5430. "shasum": ""
  5431. },
  5432. "require": {
  5433. "php": ">=7.2.0"
  5434. },
  5435. "require-dev": {
  5436. "mnapoli/hard-mode": "~0.3.0",
  5437. "phpunit/phpunit": "^8.5|^9.0"
  5438. },
  5439. "type": "library",
  5440. "autoload": {
  5441. "psr-4": {
  5442. "PhpDocReader\\": "src/PhpDocReader"
  5443. }
  5444. },
  5445. "notification-url": "https://packagist.org/downloads/",
  5446. "license": [
  5447. "MIT"
  5448. ],
  5449. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5450. "keywords": [
  5451. "phpdoc",
  5452. "reflection"
  5453. ],
  5454. "support": {
  5455. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5456. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5457. },
  5458. "time": "2020-10-12T12:39:22+00:00"
  5459. },
  5460. {
  5461. "name": "phpoption/phpoption",
  5462. "version": "1.9.2",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/schmittjoh/php-option.git",
  5466. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5471. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": "^7.2.5 || ^8.0"
  5476. },
  5477. "require-dev": {
  5478. "bamarni/composer-bin-plugin": "^1.8.2",
  5479. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5480. },
  5481. "type": "library",
  5482. "extra": {
  5483. "bamarni-bin": {
  5484. "bin-links": true,
  5485. "forward-command": true
  5486. },
  5487. "branch-alias": {
  5488. "dev-master": "1.9-dev"
  5489. }
  5490. },
  5491. "autoload": {
  5492. "psr-4": {
  5493. "PhpOption\\": "src/PhpOption/"
  5494. }
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "Apache-2.0"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Johannes M. Schmitt",
  5503. "email": "schmittjoh@gmail.com",
  5504. "homepage": "https://github.com/schmittjoh"
  5505. },
  5506. {
  5507. "name": "Graham Campbell",
  5508. "email": "hello@gjcampbell.co.uk",
  5509. "homepage": "https://github.com/GrahamCampbell"
  5510. }
  5511. ],
  5512. "description": "Option Type for PHP",
  5513. "keywords": [
  5514. "language",
  5515. "option",
  5516. "php",
  5517. "type"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/schmittjoh/php-option/issues",
  5521. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://github.com/GrahamCampbell",
  5526. "type": "github"
  5527. },
  5528. {
  5529. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5530. "type": "tidelift"
  5531. }
  5532. ],
  5533. "time": "2023-11-12T21:59:55+00:00"
  5534. },
  5535. {
  5536. "name": "phpseclib/phpseclib",
  5537. "version": "3.0.41",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/phpseclib/phpseclib.git",
  5541. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5546. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5547. "shasum": ""
  5548. },
  5549. "require": {
  5550. "paragonie/constant_time_encoding": "^1|^2|^3",
  5551. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5552. "php": ">=5.6.1"
  5553. },
  5554. "require-dev": {
  5555. "phpunit/phpunit": "*"
  5556. },
  5557. "suggest": {
  5558. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5559. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5560. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5561. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5562. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5563. },
  5564. "type": "library",
  5565. "autoload": {
  5566. "files": [
  5567. "phpseclib/bootstrap.php"
  5568. ],
  5569. "psr-4": {
  5570. "phpseclib3\\": "phpseclib/"
  5571. }
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Jim Wigginton",
  5580. "email": "terrafrost@php.net",
  5581. "role": "Lead Developer"
  5582. },
  5583. {
  5584. "name": "Patrick Monnerat",
  5585. "email": "pm@datasphere.ch",
  5586. "role": "Developer"
  5587. },
  5588. {
  5589. "name": "Andreas Fischer",
  5590. "email": "bantu@phpbb.com",
  5591. "role": "Developer"
  5592. },
  5593. {
  5594. "name": "Hans-Jürgen Petrich",
  5595. "email": "petrich@tronic-media.com",
  5596. "role": "Developer"
  5597. },
  5598. {
  5599. "name": "Graham Campbell",
  5600. "email": "graham@alt-three.com",
  5601. "role": "Developer"
  5602. }
  5603. ],
  5604. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5605. "homepage": "http://phpseclib.sourceforge.net",
  5606. "keywords": [
  5607. "BigInteger",
  5608. "aes",
  5609. "asn.1",
  5610. "asn1",
  5611. "blowfish",
  5612. "crypto",
  5613. "cryptography",
  5614. "encryption",
  5615. "rsa",
  5616. "security",
  5617. "sftp",
  5618. "signature",
  5619. "signing",
  5620. "ssh",
  5621. "twofish",
  5622. "x.509",
  5623. "x509"
  5624. ],
  5625. "support": {
  5626. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5627. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.41"
  5628. },
  5629. "funding": [
  5630. {
  5631. "url": "https://github.com/terrafrost",
  5632. "type": "github"
  5633. },
  5634. {
  5635. "url": "https://www.patreon.com/phpseclib",
  5636. "type": "patreon"
  5637. },
  5638. {
  5639. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5640. "type": "tidelift"
  5641. }
  5642. ],
  5643. "time": "2024-08-12T00:13:54+00:00"
  5644. },
  5645. {
  5646. "name": "psr/cache",
  5647. "version": "3.0.0",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/php-fig/cache.git",
  5651. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5656. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5657. "shasum": ""
  5658. },
  5659. "require": {
  5660. "php": ">=8.0.0"
  5661. },
  5662. "type": "library",
  5663. "extra": {
  5664. "branch-alias": {
  5665. "dev-master": "1.0.x-dev"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Psr\\Cache\\": "src/"
  5671. }
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "MIT"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "PHP-FIG",
  5680. "homepage": "https://www.php-fig.org/"
  5681. }
  5682. ],
  5683. "description": "Common interface for caching libraries",
  5684. "keywords": [
  5685. "cache",
  5686. "psr",
  5687. "psr-6"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5691. },
  5692. "time": "2021-02-03T23:26:27+00:00"
  5693. },
  5694. {
  5695. "name": "psr/clock",
  5696. "version": "1.0.0",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/php-fig/clock.git",
  5700. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5705. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "php": "^7.0 || ^8.0"
  5710. },
  5711. "type": "library",
  5712. "autoload": {
  5713. "psr-4": {
  5714. "Psr\\Clock\\": "src/"
  5715. }
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "license": [
  5719. "MIT"
  5720. ],
  5721. "authors": [
  5722. {
  5723. "name": "PHP-FIG",
  5724. "homepage": "https://www.php-fig.org/"
  5725. }
  5726. ],
  5727. "description": "Common interface for reading the clock.",
  5728. "homepage": "https://github.com/php-fig/clock",
  5729. "keywords": [
  5730. "clock",
  5731. "now",
  5732. "psr",
  5733. "psr-20",
  5734. "time"
  5735. ],
  5736. "support": {
  5737. "issues": "https://github.com/php-fig/clock/issues",
  5738. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5739. },
  5740. "time": "2022-11-25T14:36:26+00:00"
  5741. },
  5742. {
  5743. "name": "psr/container",
  5744. "version": "2.0.2",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/php-fig/container.git",
  5748. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5753. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=7.4.0"
  5758. },
  5759. "type": "library",
  5760. "extra": {
  5761. "branch-alias": {
  5762. "dev-master": "2.0.x-dev"
  5763. }
  5764. },
  5765. "autoload": {
  5766. "psr-4": {
  5767. "Psr\\Container\\": "src/"
  5768. }
  5769. },
  5770. "notification-url": "https://packagist.org/downloads/",
  5771. "license": [
  5772. "MIT"
  5773. ],
  5774. "authors": [
  5775. {
  5776. "name": "PHP-FIG",
  5777. "homepage": "https://www.php-fig.org/"
  5778. }
  5779. ],
  5780. "description": "Common Container Interface (PHP FIG PSR-11)",
  5781. "homepage": "https://github.com/php-fig/container",
  5782. "keywords": [
  5783. "PSR-11",
  5784. "container",
  5785. "container-interface",
  5786. "container-interop",
  5787. "psr"
  5788. ],
  5789. "support": {
  5790. "issues": "https://github.com/php-fig/container/issues",
  5791. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5792. },
  5793. "time": "2021-11-05T16:47:00+00:00"
  5794. },
  5795. {
  5796. "name": "psr/event-dispatcher",
  5797. "version": "1.0.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/php-fig/event-dispatcher.git",
  5801. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5806. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "php": ">=7.2.0"
  5811. },
  5812. "type": "library",
  5813. "extra": {
  5814. "branch-alias": {
  5815. "dev-master": "1.0.x-dev"
  5816. }
  5817. },
  5818. "autoload": {
  5819. "psr-4": {
  5820. "Psr\\EventDispatcher\\": "src/"
  5821. }
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "MIT"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "PHP-FIG",
  5830. "homepage": "http://www.php-fig.org/"
  5831. }
  5832. ],
  5833. "description": "Standard interfaces for event handling.",
  5834. "keywords": [
  5835. "events",
  5836. "psr",
  5837. "psr-14"
  5838. ],
  5839. "support": {
  5840. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5841. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5842. },
  5843. "time": "2019-01-08T18:20:26+00:00"
  5844. },
  5845. {
  5846. "name": "psr/http-client",
  5847. "version": "1.0.3",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://github.com/php-fig/http-client.git",
  5851. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5856. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5857. "shasum": ""
  5858. },
  5859. "require": {
  5860. "php": "^7.0 || ^8.0",
  5861. "psr/http-message": "^1.0 || ^2.0"
  5862. },
  5863. "type": "library",
  5864. "extra": {
  5865. "branch-alias": {
  5866. "dev-master": "1.0.x-dev"
  5867. }
  5868. },
  5869. "autoload": {
  5870. "psr-4": {
  5871. "Psr\\Http\\Client\\": "src/"
  5872. }
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "PHP-FIG",
  5881. "homepage": "https://www.php-fig.org/"
  5882. }
  5883. ],
  5884. "description": "Common interface for HTTP clients",
  5885. "homepage": "https://github.com/php-fig/http-client",
  5886. "keywords": [
  5887. "http",
  5888. "http-client",
  5889. "psr",
  5890. "psr-18"
  5891. ],
  5892. "support": {
  5893. "source": "https://github.com/php-fig/http-client"
  5894. },
  5895. "time": "2023-09-23T14:17:50+00:00"
  5896. },
  5897. {
  5898. "name": "psr/http-factory",
  5899. "version": "1.1.0",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/php-fig/http-factory.git",
  5903. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5908. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5909. "shasum": ""
  5910. },
  5911. "require": {
  5912. "php": ">=7.1",
  5913. "psr/http-message": "^1.0 || ^2.0"
  5914. },
  5915. "type": "library",
  5916. "extra": {
  5917. "branch-alias": {
  5918. "dev-master": "1.0.x-dev"
  5919. }
  5920. },
  5921. "autoload": {
  5922. "psr-4": {
  5923. "Psr\\Http\\Message\\": "src/"
  5924. }
  5925. },
  5926. "notification-url": "https://packagist.org/downloads/",
  5927. "license": [
  5928. "MIT"
  5929. ],
  5930. "authors": [
  5931. {
  5932. "name": "PHP-FIG",
  5933. "homepage": "https://www.php-fig.org/"
  5934. }
  5935. ],
  5936. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5937. "keywords": [
  5938. "factory",
  5939. "http",
  5940. "message",
  5941. "psr",
  5942. "psr-17",
  5943. "psr-7",
  5944. "request",
  5945. "response"
  5946. ],
  5947. "support": {
  5948. "source": "https://github.com/php-fig/http-factory"
  5949. },
  5950. "time": "2024-04-15T12:06:14+00:00"
  5951. },
  5952. {
  5953. "name": "psr/http-message",
  5954. "version": "2.0",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/php-fig/http-message.git",
  5958. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5963. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": "^7.2 || ^8.0"
  5968. },
  5969. "type": "library",
  5970. "extra": {
  5971. "branch-alias": {
  5972. "dev-master": "2.0.x-dev"
  5973. }
  5974. },
  5975. "autoload": {
  5976. "psr-4": {
  5977. "Psr\\Http\\Message\\": "src/"
  5978. }
  5979. },
  5980. "notification-url": "https://packagist.org/downloads/",
  5981. "license": [
  5982. "MIT"
  5983. ],
  5984. "authors": [
  5985. {
  5986. "name": "PHP-FIG",
  5987. "homepage": "https://www.php-fig.org/"
  5988. }
  5989. ],
  5990. "description": "Common interface for HTTP messages",
  5991. "homepage": "https://github.com/php-fig/http-message",
  5992. "keywords": [
  5993. "http",
  5994. "http-message",
  5995. "psr",
  5996. "psr-7",
  5997. "request",
  5998. "response"
  5999. ],
  6000. "support": {
  6001. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6002. },
  6003. "time": "2023-04-04T09:54:51+00:00"
  6004. },
  6005. {
  6006. "name": "psr/http-server-handler",
  6007. "version": "1.0.2",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/php-fig/http-server-handler.git",
  6011. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6016. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": ">=7.0",
  6021. "psr/http-message": "^1.0 || ^2.0"
  6022. },
  6023. "type": "library",
  6024. "extra": {
  6025. "branch-alias": {
  6026. "dev-master": "1.0.x-dev"
  6027. }
  6028. },
  6029. "autoload": {
  6030. "psr-4": {
  6031. "Psr\\Http\\Server\\": "src/"
  6032. }
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "PHP-FIG",
  6041. "homepage": "https://www.php-fig.org/"
  6042. }
  6043. ],
  6044. "description": "Common interface for HTTP server-side request handler",
  6045. "keywords": [
  6046. "handler",
  6047. "http",
  6048. "http-interop",
  6049. "psr",
  6050. "psr-15",
  6051. "psr-7",
  6052. "request",
  6053. "response",
  6054. "server"
  6055. ],
  6056. "support": {
  6057. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6058. },
  6059. "time": "2023-04-10T20:06:20+00:00"
  6060. },
  6061. {
  6062. "name": "psr/http-server-middleware",
  6063. "version": "1.0.2",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/php-fig/http-server-middleware.git",
  6067. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6072. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6073. "shasum": ""
  6074. },
  6075. "require": {
  6076. "php": ">=7.0",
  6077. "psr/http-message": "^1.0 || ^2.0",
  6078. "psr/http-server-handler": "^1.0"
  6079. },
  6080. "type": "library",
  6081. "extra": {
  6082. "branch-alias": {
  6083. "dev-master": "1.0.x-dev"
  6084. }
  6085. },
  6086. "autoload": {
  6087. "psr-4": {
  6088. "Psr\\Http\\Server\\": "src/"
  6089. }
  6090. },
  6091. "notification-url": "https://packagist.org/downloads/",
  6092. "license": [
  6093. "MIT"
  6094. ],
  6095. "authors": [
  6096. {
  6097. "name": "PHP-FIG",
  6098. "homepage": "https://www.php-fig.org/"
  6099. }
  6100. ],
  6101. "description": "Common interface for HTTP server-side middleware",
  6102. "keywords": [
  6103. "http",
  6104. "http-interop",
  6105. "middleware",
  6106. "psr",
  6107. "psr-15",
  6108. "psr-7",
  6109. "request",
  6110. "response"
  6111. ],
  6112. "support": {
  6113. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6114. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6115. },
  6116. "time": "2023-04-11T06:14:47+00:00"
  6117. },
  6118. {
  6119. "name": "psr/log",
  6120. "version": "3.0.0",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/php-fig/log.git",
  6124. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6129. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6130. "shasum": ""
  6131. },
  6132. "require": {
  6133. "php": ">=8.0.0"
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "3.x-dev"
  6139. }
  6140. },
  6141. "autoload": {
  6142. "psr-4": {
  6143. "Psr\\Log\\": "src"
  6144. }
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "MIT"
  6149. ],
  6150. "authors": [
  6151. {
  6152. "name": "PHP-FIG",
  6153. "homepage": "https://www.php-fig.org/"
  6154. }
  6155. ],
  6156. "description": "Common interface for logging libraries",
  6157. "homepage": "https://github.com/php-fig/log",
  6158. "keywords": [
  6159. "log",
  6160. "psr",
  6161. "psr-3"
  6162. ],
  6163. "support": {
  6164. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6165. },
  6166. "time": "2021-07-14T16:46:02+00:00"
  6167. },
  6168. {
  6169. "name": "psr/simple-cache",
  6170. "version": "3.0.0",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://github.com/php-fig/simple-cache.git",
  6174. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6179. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6180. "shasum": ""
  6181. },
  6182. "require": {
  6183. "php": ">=8.0.0"
  6184. },
  6185. "type": "library",
  6186. "extra": {
  6187. "branch-alias": {
  6188. "dev-master": "3.0.x-dev"
  6189. }
  6190. },
  6191. "autoload": {
  6192. "psr-4": {
  6193. "Psr\\SimpleCache\\": "src/"
  6194. }
  6195. },
  6196. "notification-url": "https://packagist.org/downloads/",
  6197. "license": [
  6198. "MIT"
  6199. ],
  6200. "authors": [
  6201. {
  6202. "name": "PHP-FIG",
  6203. "homepage": "https://www.php-fig.org/"
  6204. }
  6205. ],
  6206. "description": "Common interfaces for simple caching",
  6207. "keywords": [
  6208. "cache",
  6209. "caching",
  6210. "psr",
  6211. "psr-16",
  6212. "simple-cache"
  6213. ],
  6214. "support": {
  6215. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6216. },
  6217. "time": "2021-10-29T13:26:27+00:00"
  6218. },
  6219. {
  6220. "name": "ralouphie/getallheaders",
  6221. "version": "3.0.3",
  6222. "source": {
  6223. "type": "git",
  6224. "url": "https://github.com/ralouphie/getallheaders.git",
  6225. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6226. },
  6227. "dist": {
  6228. "type": "zip",
  6229. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6230. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6231. "shasum": ""
  6232. },
  6233. "require": {
  6234. "php": ">=5.6"
  6235. },
  6236. "require-dev": {
  6237. "php-coveralls/php-coveralls": "^2.1",
  6238. "phpunit/phpunit": "^5 || ^6.5"
  6239. },
  6240. "type": "library",
  6241. "autoload": {
  6242. "files": [
  6243. "src/getallheaders.php"
  6244. ]
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Ralph Khattar",
  6253. "email": "ralph.khattar@gmail.com"
  6254. }
  6255. ],
  6256. "description": "A polyfill for getallheaders.",
  6257. "support": {
  6258. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6259. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6260. },
  6261. "time": "2019-03-08T08:55:37+00:00"
  6262. },
  6263. {
  6264. "name": "ramsey/collection",
  6265. "version": "2.0.0",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/ramsey/collection.git",
  6269. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6274. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "php": "^8.1"
  6279. },
  6280. "require-dev": {
  6281. "captainhook/plugin-composer": "^5.3",
  6282. "ergebnis/composer-normalize": "^2.28.3",
  6283. "fakerphp/faker": "^1.21",
  6284. "hamcrest/hamcrest-php": "^2.0",
  6285. "jangregor/phpstan-prophecy": "^1.0",
  6286. "mockery/mockery": "^1.5",
  6287. "php-parallel-lint/php-console-highlighter": "^1.0",
  6288. "php-parallel-lint/php-parallel-lint": "^1.3",
  6289. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6290. "phpspec/prophecy-phpunit": "^2.0",
  6291. "phpstan/extension-installer": "^1.2",
  6292. "phpstan/phpstan": "^1.9",
  6293. "phpstan/phpstan-mockery": "^1.1",
  6294. "phpstan/phpstan-phpunit": "^1.3",
  6295. "phpunit/phpunit": "^9.5",
  6296. "psalm/plugin-mockery": "^1.1",
  6297. "psalm/plugin-phpunit": "^0.18.4",
  6298. "ramsey/coding-standard": "^2.0.3",
  6299. "ramsey/conventional-commits": "^1.3",
  6300. "vimeo/psalm": "^5.4"
  6301. },
  6302. "type": "library",
  6303. "extra": {
  6304. "captainhook": {
  6305. "force-install": true
  6306. },
  6307. "ramsey/conventional-commits": {
  6308. "configFile": "conventional-commits.json"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "psr-4": {
  6313. "Ramsey\\Collection\\": "src/"
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Ben Ramsey",
  6323. "email": "ben@benramsey.com",
  6324. "homepage": "https://benramsey.com"
  6325. }
  6326. ],
  6327. "description": "A PHP library for representing and manipulating collections.",
  6328. "keywords": [
  6329. "array",
  6330. "collection",
  6331. "hash",
  6332. "map",
  6333. "queue",
  6334. "set"
  6335. ],
  6336. "support": {
  6337. "issues": "https://github.com/ramsey/collection/issues",
  6338. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6339. },
  6340. "funding": [
  6341. {
  6342. "url": "https://github.com/ramsey",
  6343. "type": "github"
  6344. },
  6345. {
  6346. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6347. "type": "tidelift"
  6348. }
  6349. ],
  6350. "time": "2022-12-31T21:50:55+00:00"
  6351. },
  6352. {
  6353. "name": "ramsey/uuid",
  6354. "version": "4.8.1",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/ramsey/uuid.git",
  6358. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6363. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6364. "shasum": "",
  6365. "mirrors": [
  6366. {
  6367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6368. "preferred": true
  6369. }
  6370. ]
  6371. },
  6372. "require": {
  6373. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  6374. "ext-json": "*",
  6375. "php": "^8.0",
  6376. "ramsey/collection": "^1.2 || ^2.0"
  6377. },
  6378. "replace": {
  6379. "rhumsaa/uuid": "self.version"
  6380. },
  6381. "require-dev": {
  6382. "captainhook/captainhook": "^5.25",
  6383. "captainhook/plugin-composer": "^5.3",
  6384. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6385. "ergebnis/composer-normalize": "^2.47",
  6386. "mockery/mockery": "^1.6",
  6387. "paragonie/random-lib": "^2",
  6388. "php-mock/php-mock": "^2.6",
  6389. "php-mock/php-mock-mockery": "^1.5",
  6390. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6391. "phpbench/phpbench": "^1.2.14",
  6392. "phpstan/extension-installer": "^1.4",
  6393. "phpstan/phpstan": "^2.1",
  6394. "phpstan/phpstan-mockery": "^2.0",
  6395. "phpstan/phpstan-phpunit": "^2.0",
  6396. "phpunit/phpunit": "^9.6",
  6397. "slevomat/coding-standard": "^8.18",
  6398. "squizlabs/php_codesniffer": "^3.13"
  6399. },
  6400. "suggest": {
  6401. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6402. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6403. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6404. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6405. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6406. },
  6407. "type": "library",
  6408. "extra": {
  6409. "captainhook": {
  6410. "force-install": true
  6411. }
  6412. },
  6413. "autoload": {
  6414. "files": [
  6415. "src/functions.php"
  6416. ],
  6417. "psr-4": {
  6418. "Ramsey\\Uuid\\": "src/"
  6419. }
  6420. },
  6421. "notification-url": "https://packagist.org/downloads/",
  6422. "license": [
  6423. "MIT"
  6424. ],
  6425. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6426. "keywords": [
  6427. "guid",
  6428. "identifier",
  6429. "uuid"
  6430. ],
  6431. "support": {
  6432. "issues": "https://github.com/ramsey/uuid/issues",
  6433. "source": "https://github.com/ramsey/uuid/tree/4.8.1"
  6434. },
  6435. "time": "2025-06-01T06:28:46+00:00"
  6436. },
  6437. {
  6438. "name": "swow/psr7-plus",
  6439. "version": "v1.1.2",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/swow/psr7-plus.git",
  6443. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6448. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6449. "shasum": ""
  6450. },
  6451. "require": {
  6452. "php": ">=8.0",
  6453. "psr/http-client": "^1.0",
  6454. "psr/http-factory": "^1.0",
  6455. "psr/http-message": "^1.1|^2.0"
  6456. },
  6457. "type": "library",
  6458. "autoload": {
  6459. "psr-4": {
  6460. "Swow\\Psr7\\Message\\": "src/Message/"
  6461. }
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "Apache-2.0"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "twose",
  6470. "email": "twosee@php.net"
  6471. }
  6472. ],
  6473. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6474. "keywords": [
  6475. "http",
  6476. "psr17",
  6477. "psr7",
  6478. "swow",
  6479. "websocket"
  6480. ],
  6481. "support": {
  6482. "issues": "https://github.com/swow/swow",
  6483. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6484. },
  6485. "time": "2023-06-15T09:18:11+00:00"
  6486. },
  6487. {
  6488. "name": "symfony/console",
  6489. "version": "v6.4.8",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/symfony/console.git",
  6493. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6498. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6499. "shasum": ""
  6500. },
  6501. "require": {
  6502. "php": ">=8.1",
  6503. "symfony/deprecation-contracts": "^2.5|^3",
  6504. "symfony/polyfill-mbstring": "~1.0",
  6505. "symfony/service-contracts": "^2.5|^3",
  6506. "symfony/string": "^5.4|^6.0|^7.0"
  6507. },
  6508. "conflict": {
  6509. "symfony/dependency-injection": "<5.4",
  6510. "symfony/dotenv": "<5.4",
  6511. "symfony/event-dispatcher": "<5.4",
  6512. "symfony/lock": "<5.4",
  6513. "symfony/process": "<5.4"
  6514. },
  6515. "provide": {
  6516. "psr/log-implementation": "1.0|2.0|3.0"
  6517. },
  6518. "require-dev": {
  6519. "psr/log": "^1|^2|^3",
  6520. "symfony/config": "^5.4|^6.0|^7.0",
  6521. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6522. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6523. "symfony/http-foundation": "^6.4|^7.0",
  6524. "symfony/http-kernel": "^6.4|^7.0",
  6525. "symfony/lock": "^5.4|^6.0|^7.0",
  6526. "symfony/messenger": "^5.4|^6.0|^7.0",
  6527. "symfony/process": "^5.4|^6.0|^7.0",
  6528. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6529. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6530. },
  6531. "type": "library",
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Symfony\\Component\\Console\\": ""
  6535. },
  6536. "exclude-from-classmap": [
  6537. "/Tests/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Fabien Potencier",
  6547. "email": "fabien@symfony.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Eases the creation of beautiful and testable command line interfaces",
  6555. "homepage": "https://symfony.com",
  6556. "keywords": [
  6557. "cli",
  6558. "command-line",
  6559. "console",
  6560. "terminal"
  6561. ],
  6562. "support": {
  6563. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6564. },
  6565. "funding": [
  6566. {
  6567. "url": "https://symfony.com/sponsor",
  6568. "type": "custom"
  6569. },
  6570. {
  6571. "url": "https://github.com/fabpot",
  6572. "type": "github"
  6573. },
  6574. {
  6575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6576. "type": "tidelift"
  6577. }
  6578. ],
  6579. "time": "2024-05-31T14:49:08+00:00"
  6580. },
  6581. {
  6582. "name": "symfony/deprecation-contracts",
  6583. "version": "v3.5.0",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://github.com/symfony/deprecation-contracts.git",
  6587. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6592. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6593. "shasum": ""
  6594. },
  6595. "require": {
  6596. "php": ">=8.1"
  6597. },
  6598. "type": "library",
  6599. "extra": {
  6600. "branch-alias": {
  6601. "dev-main": "3.5-dev"
  6602. },
  6603. "thanks": {
  6604. "name": "symfony/contracts",
  6605. "url": "https://github.com/symfony/contracts"
  6606. }
  6607. },
  6608. "autoload": {
  6609. "files": [
  6610. "function.php"
  6611. ]
  6612. },
  6613. "notification-url": "https://packagist.org/downloads/",
  6614. "license": [
  6615. "MIT"
  6616. ],
  6617. "authors": [
  6618. {
  6619. "name": "Nicolas Grekas",
  6620. "email": "p@tchwork.com"
  6621. },
  6622. {
  6623. "name": "Symfony Community",
  6624. "homepage": "https://symfony.com/contributors"
  6625. }
  6626. ],
  6627. "description": "A generic function and convention to trigger deprecation notices",
  6628. "homepage": "https://symfony.com",
  6629. "support": {
  6630. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6631. },
  6632. "funding": [
  6633. {
  6634. "url": "https://symfony.com/sponsor",
  6635. "type": "custom"
  6636. },
  6637. {
  6638. "url": "https://github.com/fabpot",
  6639. "type": "github"
  6640. },
  6641. {
  6642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6643. "type": "tidelift"
  6644. }
  6645. ],
  6646. "time": "2024-04-18T09:32:20+00:00"
  6647. },
  6648. {
  6649. "name": "symfony/finder",
  6650. "version": "v6.4.8",
  6651. "source": {
  6652. "type": "git",
  6653. "url": "https://github.com/symfony/finder.git",
  6654. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6655. },
  6656. "dist": {
  6657. "type": "zip",
  6658. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6659. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6660. "shasum": ""
  6661. },
  6662. "require": {
  6663. "php": ">=8.1"
  6664. },
  6665. "require-dev": {
  6666. "symfony/filesystem": "^6.0|^7.0"
  6667. },
  6668. "type": "library",
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Symfony\\Component\\Finder\\": ""
  6672. },
  6673. "exclude-from-classmap": [
  6674. "/Tests/"
  6675. ]
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "Fabien Potencier",
  6684. "email": "fabien@symfony.com"
  6685. },
  6686. {
  6687. "name": "Symfony Community",
  6688. "homepage": "https://symfony.com/contributors"
  6689. }
  6690. ],
  6691. "description": "Finds files and directories via an intuitive fluent interface",
  6692. "homepage": "https://symfony.com",
  6693. "support": {
  6694. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2024-05-31T14:49:08+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/polyfill-ctype",
  6714. "version": "v1.29.0",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/polyfill-ctype.git",
  6718. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6723. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": ">=7.1"
  6728. },
  6729. "provide": {
  6730. "ext-ctype": "*"
  6731. },
  6732. "suggest": {
  6733. "ext-ctype": "For best performance"
  6734. },
  6735. "type": "library",
  6736. "extra": {
  6737. "thanks": {
  6738. "name": "symfony/polyfill",
  6739. "url": "https://github.com/symfony/polyfill"
  6740. }
  6741. },
  6742. "autoload": {
  6743. "files": [
  6744. "bootstrap.php"
  6745. ],
  6746. "psr-4": {
  6747. "Symfony\\Polyfill\\Ctype\\": ""
  6748. }
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "license": [
  6752. "MIT"
  6753. ],
  6754. "authors": [
  6755. {
  6756. "name": "Gert de Pagter",
  6757. "email": "BackEndTea@gmail.com"
  6758. },
  6759. {
  6760. "name": "Symfony Community",
  6761. "homepage": "https://symfony.com/contributors"
  6762. }
  6763. ],
  6764. "description": "Symfony polyfill for ctype functions",
  6765. "homepage": "https://symfony.com",
  6766. "keywords": [
  6767. "compatibility",
  6768. "ctype",
  6769. "polyfill",
  6770. "portable"
  6771. ],
  6772. "support": {
  6773. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6774. },
  6775. "funding": [
  6776. {
  6777. "url": "https://symfony.com/sponsor",
  6778. "type": "custom"
  6779. },
  6780. {
  6781. "url": "https://github.com/fabpot",
  6782. "type": "github"
  6783. },
  6784. {
  6785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6786. "type": "tidelift"
  6787. }
  6788. ],
  6789. "time": "2024-01-29T20:11:03+00:00"
  6790. },
  6791. {
  6792. "name": "symfony/polyfill-intl-grapheme",
  6793. "version": "v1.29.0",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6797. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6802. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "php": ">=7.1"
  6807. },
  6808. "suggest": {
  6809. "ext-intl": "For best performance"
  6810. },
  6811. "type": "library",
  6812. "extra": {
  6813. "thanks": {
  6814. "name": "symfony/polyfill",
  6815. "url": "https://github.com/symfony/polyfill"
  6816. }
  6817. },
  6818. "autoload": {
  6819. "files": [
  6820. "bootstrap.php"
  6821. ],
  6822. "psr-4": {
  6823. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6824. }
  6825. },
  6826. "notification-url": "https://packagist.org/downloads/",
  6827. "license": [
  6828. "MIT"
  6829. ],
  6830. "authors": [
  6831. {
  6832. "name": "Nicolas Grekas",
  6833. "email": "p@tchwork.com"
  6834. },
  6835. {
  6836. "name": "Symfony Community",
  6837. "homepage": "https://symfony.com/contributors"
  6838. }
  6839. ],
  6840. "description": "Symfony polyfill for intl's grapheme_* functions",
  6841. "homepage": "https://symfony.com",
  6842. "keywords": [
  6843. "compatibility",
  6844. "grapheme",
  6845. "intl",
  6846. "polyfill",
  6847. "portable",
  6848. "shim"
  6849. ],
  6850. "support": {
  6851. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6852. },
  6853. "funding": [
  6854. {
  6855. "url": "https://symfony.com/sponsor",
  6856. "type": "custom"
  6857. },
  6858. {
  6859. "url": "https://github.com/fabpot",
  6860. "type": "github"
  6861. },
  6862. {
  6863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6864. "type": "tidelift"
  6865. }
  6866. ],
  6867. "time": "2024-01-29T20:11:03+00:00"
  6868. },
  6869. {
  6870. "name": "symfony/polyfill-intl-normalizer",
  6871. "version": "v1.29.0",
  6872. "source": {
  6873. "type": "git",
  6874. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6875. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6876. },
  6877. "dist": {
  6878. "type": "zip",
  6879. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6880. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6881. "shasum": ""
  6882. },
  6883. "require": {
  6884. "php": ">=7.1"
  6885. },
  6886. "suggest": {
  6887. "ext-intl": "For best performance"
  6888. },
  6889. "type": "library",
  6890. "extra": {
  6891. "thanks": {
  6892. "name": "symfony/polyfill",
  6893. "url": "https://github.com/symfony/polyfill"
  6894. }
  6895. },
  6896. "autoload": {
  6897. "files": [
  6898. "bootstrap.php"
  6899. ],
  6900. "psr-4": {
  6901. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6902. },
  6903. "classmap": [
  6904. "Resources/stubs"
  6905. ]
  6906. },
  6907. "notification-url": "https://packagist.org/downloads/",
  6908. "license": [
  6909. "MIT"
  6910. ],
  6911. "authors": [
  6912. {
  6913. "name": "Nicolas Grekas",
  6914. "email": "p@tchwork.com"
  6915. },
  6916. {
  6917. "name": "Symfony Community",
  6918. "homepage": "https://symfony.com/contributors"
  6919. }
  6920. ],
  6921. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6922. "homepage": "https://symfony.com",
  6923. "keywords": [
  6924. "compatibility",
  6925. "intl",
  6926. "normalizer",
  6927. "polyfill",
  6928. "portable",
  6929. "shim"
  6930. ],
  6931. "support": {
  6932. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://symfony.com/sponsor",
  6937. "type": "custom"
  6938. },
  6939. {
  6940. "url": "https://github.com/fabpot",
  6941. "type": "github"
  6942. },
  6943. {
  6944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6945. "type": "tidelift"
  6946. }
  6947. ],
  6948. "time": "2024-01-29T20:11:03+00:00"
  6949. },
  6950. {
  6951. "name": "symfony/polyfill-mbstring",
  6952. "version": "v1.29.0",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6956. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6961. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "php": ">=7.1"
  6966. },
  6967. "provide": {
  6968. "ext-mbstring": "*"
  6969. },
  6970. "suggest": {
  6971. "ext-mbstring": "For best performance"
  6972. },
  6973. "type": "library",
  6974. "extra": {
  6975. "thanks": {
  6976. "name": "symfony/polyfill",
  6977. "url": "https://github.com/symfony/polyfill"
  6978. }
  6979. },
  6980. "autoload": {
  6981. "files": [
  6982. "bootstrap.php"
  6983. ],
  6984. "psr-4": {
  6985. "Symfony\\Polyfill\\Mbstring\\": ""
  6986. }
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "MIT"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "Nicolas Grekas",
  6995. "email": "p@tchwork.com"
  6996. },
  6997. {
  6998. "name": "Symfony Community",
  6999. "homepage": "https://symfony.com/contributors"
  7000. }
  7001. ],
  7002. "description": "Symfony polyfill for the Mbstring extension",
  7003. "homepage": "https://symfony.com",
  7004. "keywords": [
  7005. "compatibility",
  7006. "mbstring",
  7007. "polyfill",
  7008. "portable",
  7009. "shim"
  7010. ],
  7011. "support": {
  7012. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  7013. },
  7014. "funding": [
  7015. {
  7016. "url": "https://symfony.com/sponsor",
  7017. "type": "custom"
  7018. },
  7019. {
  7020. "url": "https://github.com/fabpot",
  7021. "type": "github"
  7022. },
  7023. {
  7024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7025. "type": "tidelift"
  7026. }
  7027. ],
  7028. "time": "2024-01-29T20:11:03+00:00"
  7029. },
  7030. {
  7031. "name": "symfony/polyfill-php80",
  7032. "version": "v1.29.0",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/symfony/polyfill-php80.git",
  7036. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7041. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7042. "shasum": ""
  7043. },
  7044. "require": {
  7045. "php": ">=7.1"
  7046. },
  7047. "type": "library",
  7048. "extra": {
  7049. "thanks": {
  7050. "name": "symfony/polyfill",
  7051. "url": "https://github.com/symfony/polyfill"
  7052. }
  7053. },
  7054. "autoload": {
  7055. "files": [
  7056. "bootstrap.php"
  7057. ],
  7058. "psr-4": {
  7059. "Symfony\\Polyfill\\Php80\\": ""
  7060. },
  7061. "classmap": [
  7062. "Resources/stubs"
  7063. ]
  7064. },
  7065. "notification-url": "https://packagist.org/downloads/",
  7066. "license": [
  7067. "MIT"
  7068. ],
  7069. "authors": [
  7070. {
  7071. "name": "Ion Bazan",
  7072. "email": "ion.bazan@gmail.com"
  7073. },
  7074. {
  7075. "name": "Nicolas Grekas",
  7076. "email": "p@tchwork.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7084. "homepage": "https://symfony.com",
  7085. "keywords": [
  7086. "compatibility",
  7087. "polyfill",
  7088. "portable",
  7089. "shim"
  7090. ],
  7091. "support": {
  7092. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7093. },
  7094. "funding": [
  7095. {
  7096. "url": "https://symfony.com/sponsor",
  7097. "type": "custom"
  7098. },
  7099. {
  7100. "url": "https://github.com/fabpot",
  7101. "type": "github"
  7102. },
  7103. {
  7104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7105. "type": "tidelift"
  7106. }
  7107. ],
  7108. "time": "2024-01-29T20:11:03+00:00"
  7109. },
  7110. {
  7111. "name": "symfony/service-contracts",
  7112. "version": "v3.5.0",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/symfony/service-contracts.git",
  7116. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7121. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7122. "shasum": ""
  7123. },
  7124. "require": {
  7125. "php": ">=8.1",
  7126. "psr/container": "^1.1|^2.0",
  7127. "symfony/deprecation-contracts": "^2.5|^3"
  7128. },
  7129. "conflict": {
  7130. "ext-psr": "<1.1|>=2"
  7131. },
  7132. "type": "library",
  7133. "extra": {
  7134. "branch-alias": {
  7135. "dev-main": "3.5-dev"
  7136. },
  7137. "thanks": {
  7138. "name": "symfony/contracts",
  7139. "url": "https://github.com/symfony/contracts"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "psr-4": {
  7144. "Symfony\\Contracts\\Service\\": ""
  7145. },
  7146. "exclude-from-classmap": [
  7147. "/Test/"
  7148. ]
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Nicolas Grekas",
  7157. "email": "p@tchwork.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Generic abstractions related to writing services",
  7165. "homepage": "https://symfony.com",
  7166. "keywords": [
  7167. "abstractions",
  7168. "contracts",
  7169. "decoupling",
  7170. "interfaces",
  7171. "interoperability",
  7172. "standards"
  7173. ],
  7174. "support": {
  7175. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7176. },
  7177. "funding": [
  7178. {
  7179. "url": "https://symfony.com/sponsor",
  7180. "type": "custom"
  7181. },
  7182. {
  7183. "url": "https://github.com/fabpot",
  7184. "type": "github"
  7185. },
  7186. {
  7187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7188. "type": "tidelift"
  7189. }
  7190. ],
  7191. "time": "2024-04-18T09:32:20+00:00"
  7192. },
  7193. {
  7194. "name": "symfony/string",
  7195. "version": "v6.4.8",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://github.com/symfony/string.git",
  7199. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7200. },
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7204. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7205. "shasum": ""
  7206. },
  7207. "require": {
  7208. "php": ">=8.1",
  7209. "symfony/polyfill-ctype": "~1.8",
  7210. "symfony/polyfill-intl-grapheme": "~1.0",
  7211. "symfony/polyfill-intl-normalizer": "~1.0",
  7212. "symfony/polyfill-mbstring": "~1.0"
  7213. },
  7214. "conflict": {
  7215. "symfony/translation-contracts": "<2.5"
  7216. },
  7217. "require-dev": {
  7218. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7219. "symfony/http-client": "^5.4|^6.0|^7.0",
  7220. "symfony/intl": "^6.2|^7.0",
  7221. "symfony/translation-contracts": "^2.5|^3.0",
  7222. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7223. },
  7224. "type": "library",
  7225. "autoload": {
  7226. "files": [
  7227. "Resources/functions.php"
  7228. ],
  7229. "psr-4": {
  7230. "Symfony\\Component\\String\\": ""
  7231. },
  7232. "exclude-from-classmap": [
  7233. "/Tests/"
  7234. ]
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "license": [
  7238. "MIT"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Nicolas Grekas",
  7243. "email": "p@tchwork.com"
  7244. },
  7245. {
  7246. "name": "Symfony Community",
  7247. "homepage": "https://symfony.com/contributors"
  7248. }
  7249. ],
  7250. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7251. "homepage": "https://symfony.com",
  7252. "keywords": [
  7253. "grapheme",
  7254. "i18n",
  7255. "string",
  7256. "unicode",
  7257. "utf-8",
  7258. "utf8"
  7259. ],
  7260. "support": {
  7261. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7262. },
  7263. "funding": [
  7264. {
  7265. "url": "https://symfony.com/sponsor",
  7266. "type": "custom"
  7267. },
  7268. {
  7269. "url": "https://github.com/fabpot",
  7270. "type": "github"
  7271. },
  7272. {
  7273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7274. "type": "tidelift"
  7275. }
  7276. ],
  7277. "time": "2024-05-31T14:49:08+00:00"
  7278. },
  7279. {
  7280. "name": "symfony/translation",
  7281. "version": "v6.4.8",
  7282. "source": {
  7283. "type": "git",
  7284. "url": "https://github.com/symfony/translation.git",
  7285. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7286. },
  7287. "dist": {
  7288. "type": "zip",
  7289. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7290. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7291. "shasum": ""
  7292. },
  7293. "require": {
  7294. "php": ">=8.1",
  7295. "symfony/deprecation-contracts": "^2.5|^3",
  7296. "symfony/polyfill-mbstring": "~1.0",
  7297. "symfony/translation-contracts": "^2.5|^3.0"
  7298. },
  7299. "conflict": {
  7300. "symfony/config": "<5.4",
  7301. "symfony/console": "<5.4",
  7302. "symfony/dependency-injection": "<5.4",
  7303. "symfony/http-client-contracts": "<2.5",
  7304. "symfony/http-kernel": "<5.4",
  7305. "symfony/service-contracts": "<2.5",
  7306. "symfony/twig-bundle": "<5.4",
  7307. "symfony/yaml": "<5.4"
  7308. },
  7309. "provide": {
  7310. "symfony/translation-implementation": "2.3|3.0"
  7311. },
  7312. "require-dev": {
  7313. "nikic/php-parser": "^4.18|^5.0",
  7314. "psr/log": "^1|^2|^3",
  7315. "symfony/config": "^5.4|^6.0|^7.0",
  7316. "symfony/console": "^5.4|^6.0|^7.0",
  7317. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7318. "symfony/finder": "^5.4|^6.0|^7.0",
  7319. "symfony/http-client-contracts": "^2.5|^3.0",
  7320. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7321. "symfony/intl": "^5.4|^6.0|^7.0",
  7322. "symfony/polyfill-intl-icu": "^1.21",
  7323. "symfony/routing": "^5.4|^6.0|^7.0",
  7324. "symfony/service-contracts": "^2.5|^3",
  7325. "symfony/yaml": "^5.4|^6.0|^7.0"
  7326. },
  7327. "type": "library",
  7328. "autoload": {
  7329. "files": [
  7330. "Resources/functions.php"
  7331. ],
  7332. "psr-4": {
  7333. "Symfony\\Component\\Translation\\": ""
  7334. },
  7335. "exclude-from-classmap": [
  7336. "/Tests/"
  7337. ]
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Fabien Potencier",
  7346. "email": "fabien@symfony.com"
  7347. },
  7348. {
  7349. "name": "Symfony Community",
  7350. "homepage": "https://symfony.com/contributors"
  7351. }
  7352. ],
  7353. "description": "Provides tools to internationalize your application",
  7354. "homepage": "https://symfony.com",
  7355. "support": {
  7356. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7357. },
  7358. "funding": [
  7359. {
  7360. "url": "https://symfony.com/sponsor",
  7361. "type": "custom"
  7362. },
  7363. {
  7364. "url": "https://github.com/fabpot",
  7365. "type": "github"
  7366. },
  7367. {
  7368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7369. "type": "tidelift"
  7370. }
  7371. ],
  7372. "time": "2024-05-31T14:49:08+00:00"
  7373. },
  7374. {
  7375. "name": "symfony/translation-contracts",
  7376. "version": "v3.5.0",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://github.com/symfony/translation-contracts.git",
  7380. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7385. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7386. "shasum": ""
  7387. },
  7388. "require": {
  7389. "php": ">=8.1"
  7390. },
  7391. "type": "library",
  7392. "extra": {
  7393. "branch-alias": {
  7394. "dev-main": "3.5-dev"
  7395. },
  7396. "thanks": {
  7397. "name": "symfony/contracts",
  7398. "url": "https://github.com/symfony/contracts"
  7399. }
  7400. },
  7401. "autoload": {
  7402. "psr-4": {
  7403. "Symfony\\Contracts\\Translation\\": ""
  7404. },
  7405. "exclude-from-classmap": [
  7406. "/Test/"
  7407. ]
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "MIT"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Nicolas Grekas",
  7416. "email": "p@tchwork.com"
  7417. },
  7418. {
  7419. "name": "Symfony Community",
  7420. "homepage": "https://symfony.com/contributors"
  7421. }
  7422. ],
  7423. "description": "Generic abstractions related to translation",
  7424. "homepage": "https://symfony.com",
  7425. "keywords": [
  7426. "abstractions",
  7427. "contracts",
  7428. "decoupling",
  7429. "interfaces",
  7430. "interoperability",
  7431. "standards"
  7432. ],
  7433. "support": {
  7434. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7435. },
  7436. "funding": [
  7437. {
  7438. "url": "https://symfony.com/sponsor",
  7439. "type": "custom"
  7440. },
  7441. {
  7442. "url": "https://github.com/fabpot",
  7443. "type": "github"
  7444. },
  7445. {
  7446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7447. "type": "tidelift"
  7448. }
  7449. ],
  7450. "time": "2024-04-18T09:32:20+00:00"
  7451. },
  7452. {
  7453. "name": "vlucas/phpdotenv",
  7454. "version": "v5.6.0",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/vlucas/phpdotenv.git",
  7458. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7463. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "ext-pcre": "*",
  7468. "graham-campbell/result-type": "^1.1.2",
  7469. "php": "^7.2.5 || ^8.0",
  7470. "phpoption/phpoption": "^1.9.2",
  7471. "symfony/polyfill-ctype": "^1.24",
  7472. "symfony/polyfill-mbstring": "^1.24",
  7473. "symfony/polyfill-php80": "^1.24"
  7474. },
  7475. "require-dev": {
  7476. "bamarni/composer-bin-plugin": "^1.8.2",
  7477. "ext-filter": "*",
  7478. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7479. },
  7480. "suggest": {
  7481. "ext-filter": "Required to use the boolean validator."
  7482. },
  7483. "type": "library",
  7484. "extra": {
  7485. "bamarni-bin": {
  7486. "bin-links": true,
  7487. "forward-command": true
  7488. },
  7489. "branch-alias": {
  7490. "dev-master": "5.6-dev"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Dotenv\\": "src/"
  7496. }
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "BSD-3-Clause"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Graham Campbell",
  7505. "email": "hello@gjcampbell.co.uk",
  7506. "homepage": "https://github.com/GrahamCampbell"
  7507. },
  7508. {
  7509. "name": "Vance Lucas",
  7510. "email": "vance@vancelucas.com",
  7511. "homepage": "https://github.com/vlucas"
  7512. }
  7513. ],
  7514. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7515. "keywords": [
  7516. "dotenv",
  7517. "env",
  7518. "environment"
  7519. ],
  7520. "support": {
  7521. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7522. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7523. },
  7524. "funding": [
  7525. {
  7526. "url": "https://github.com/GrahamCampbell",
  7527. "type": "github"
  7528. },
  7529. {
  7530. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7531. "type": "tidelift"
  7532. }
  7533. ],
  7534. "time": "2023-11-12T22:43:29+00:00"
  7535. }
  7536. ],
  7537. "packages-dev": [
  7538. {
  7539. "name": "clue/ndjson-react",
  7540. "version": "v1.3.0",
  7541. "source": {
  7542. "type": "git",
  7543. "url": "https://github.com/clue/reactphp-ndjson.git",
  7544. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7545. },
  7546. "dist": {
  7547. "type": "zip",
  7548. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7549. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7550. "shasum": ""
  7551. },
  7552. "require": {
  7553. "php": ">=5.3",
  7554. "react/stream": "^1.2"
  7555. },
  7556. "require-dev": {
  7557. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7558. "react/event-loop": "^1.2"
  7559. },
  7560. "type": "library",
  7561. "autoload": {
  7562. "psr-4": {
  7563. "Clue\\React\\NDJson\\": "src/"
  7564. }
  7565. },
  7566. "notification-url": "https://packagist.org/downloads/",
  7567. "license": [
  7568. "MIT"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "Christian Lück",
  7573. "email": "christian@clue.engineering"
  7574. }
  7575. ],
  7576. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7577. "homepage": "https://github.com/clue/reactphp-ndjson",
  7578. "keywords": [
  7579. "NDJSON",
  7580. "json",
  7581. "jsonlines",
  7582. "newline",
  7583. "reactphp",
  7584. "streaming"
  7585. ],
  7586. "support": {
  7587. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7588. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7589. },
  7590. "funding": [
  7591. {
  7592. "url": "https://clue.engineering/support",
  7593. "type": "custom"
  7594. },
  7595. {
  7596. "url": "https://github.com/clue",
  7597. "type": "github"
  7598. }
  7599. ],
  7600. "time": "2022-12-23T10:58:28+00:00"
  7601. },
  7602. {
  7603. "name": "composer/pcre",
  7604. "version": "3.1.4",
  7605. "source": {
  7606. "type": "git",
  7607. "url": "https://github.com/composer/pcre.git",
  7608. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7609. },
  7610. "dist": {
  7611. "type": "zip",
  7612. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7613. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7614. "shasum": ""
  7615. },
  7616. "require": {
  7617. "php": "^7.4 || ^8.0"
  7618. },
  7619. "require-dev": {
  7620. "phpstan/phpstan": "^1.3",
  7621. "phpstan/phpstan-strict-rules": "^1.1",
  7622. "symfony/phpunit-bridge": "^5"
  7623. },
  7624. "type": "library",
  7625. "extra": {
  7626. "branch-alias": {
  7627. "dev-main": "3.x-dev"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "Composer\\Pcre\\": "src"
  7633. }
  7634. },
  7635. "notification-url": "https://packagist.org/downloads/",
  7636. "license": [
  7637. "MIT"
  7638. ],
  7639. "authors": [
  7640. {
  7641. "name": "Jordi Boggiano",
  7642. "email": "j.boggiano@seld.be",
  7643. "homepage": "http://seld.be"
  7644. }
  7645. ],
  7646. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7647. "keywords": [
  7648. "PCRE",
  7649. "preg",
  7650. "regex",
  7651. "regular expression"
  7652. ],
  7653. "support": {
  7654. "issues": "https://github.com/composer/pcre/issues",
  7655. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7656. },
  7657. "funding": [
  7658. {
  7659. "url": "https://packagist.com",
  7660. "type": "custom"
  7661. },
  7662. {
  7663. "url": "https://github.com/composer",
  7664. "type": "github"
  7665. },
  7666. {
  7667. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7668. "type": "tidelift"
  7669. }
  7670. ],
  7671. "time": "2024-05-27T13:40:54+00:00"
  7672. },
  7673. {
  7674. "name": "composer/semver",
  7675. "version": "3.4.0",
  7676. "source": {
  7677. "type": "git",
  7678. "url": "https://github.com/composer/semver.git",
  7679. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7680. },
  7681. "dist": {
  7682. "type": "zip",
  7683. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7684. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7685. "shasum": ""
  7686. },
  7687. "require": {
  7688. "php": "^5.3.2 || ^7.0 || ^8.0"
  7689. },
  7690. "require-dev": {
  7691. "phpstan/phpstan": "^1.4",
  7692. "symfony/phpunit-bridge": "^4.2 || ^5"
  7693. },
  7694. "type": "library",
  7695. "extra": {
  7696. "branch-alias": {
  7697. "dev-main": "3.x-dev"
  7698. }
  7699. },
  7700. "autoload": {
  7701. "psr-4": {
  7702. "Composer\\Semver\\": "src"
  7703. }
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Nils Adermann",
  7712. "email": "naderman@naderman.de",
  7713. "homepage": "http://www.naderman.de"
  7714. },
  7715. {
  7716. "name": "Jordi Boggiano",
  7717. "email": "j.boggiano@seld.be",
  7718. "homepage": "http://seld.be"
  7719. },
  7720. {
  7721. "name": "Rob Bast",
  7722. "email": "rob.bast@gmail.com",
  7723. "homepage": "http://robbast.nl"
  7724. }
  7725. ],
  7726. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7727. "keywords": [
  7728. "semantic",
  7729. "semver",
  7730. "validation",
  7731. "versioning"
  7732. ],
  7733. "support": {
  7734. "irc": "ircs://irc.libera.chat:6697/composer",
  7735. "issues": "https://github.com/composer/semver/issues",
  7736. "source": "https://github.com/composer/semver/tree/3.4.0"
  7737. },
  7738. "funding": [
  7739. {
  7740. "url": "https://packagist.com",
  7741. "type": "custom"
  7742. },
  7743. {
  7744. "url": "https://github.com/composer",
  7745. "type": "github"
  7746. },
  7747. {
  7748. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7749. "type": "tidelift"
  7750. }
  7751. ],
  7752. "time": "2023-08-31T09:50:34+00:00"
  7753. },
  7754. {
  7755. "name": "composer/xdebug-handler",
  7756. "version": "3.0.5",
  7757. "source": {
  7758. "type": "git",
  7759. "url": "https://github.com/composer/xdebug-handler.git",
  7760. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7761. },
  7762. "dist": {
  7763. "type": "zip",
  7764. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7765. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7766. "shasum": ""
  7767. },
  7768. "require": {
  7769. "composer/pcre": "^1 || ^2 || ^3",
  7770. "php": "^7.2.5 || ^8.0",
  7771. "psr/log": "^1 || ^2 || ^3"
  7772. },
  7773. "require-dev": {
  7774. "phpstan/phpstan": "^1.0",
  7775. "phpstan/phpstan-strict-rules": "^1.1",
  7776. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7777. },
  7778. "type": "library",
  7779. "autoload": {
  7780. "psr-4": {
  7781. "Composer\\XdebugHandler\\": "src"
  7782. }
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "MIT"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "John Stevenson",
  7791. "email": "john-stevenson@blueyonder.co.uk"
  7792. }
  7793. ],
  7794. "description": "Restarts a process without Xdebug.",
  7795. "keywords": [
  7796. "Xdebug",
  7797. "performance"
  7798. ],
  7799. "support": {
  7800. "irc": "ircs://irc.libera.chat:6697/composer",
  7801. "issues": "https://github.com/composer/xdebug-handler/issues",
  7802. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7803. },
  7804. "funding": [
  7805. {
  7806. "url": "https://packagist.com",
  7807. "type": "custom"
  7808. },
  7809. {
  7810. "url": "https://github.com/composer",
  7811. "type": "github"
  7812. },
  7813. {
  7814. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7815. "type": "tidelift"
  7816. }
  7817. ],
  7818. "time": "2024-05-06T16:37:16+00:00"
  7819. },
  7820. {
  7821. "name": "evenement/evenement",
  7822. "version": "v3.0.2",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/igorw/evenement.git",
  7826. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7831. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "php": ">=7.0"
  7836. },
  7837. "require-dev": {
  7838. "phpunit/phpunit": "^9 || ^6"
  7839. },
  7840. "type": "library",
  7841. "autoload": {
  7842. "psr-4": {
  7843. "Evenement\\": "src/"
  7844. }
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "MIT"
  7849. ],
  7850. "authors": [
  7851. {
  7852. "name": "Igor Wiedler",
  7853. "email": "igor@wiedler.ch"
  7854. }
  7855. ],
  7856. "description": "Événement is a very simple event dispatching library for PHP",
  7857. "keywords": [
  7858. "event-dispatcher",
  7859. "event-emitter"
  7860. ],
  7861. "support": {
  7862. "issues": "https://github.com/igorw/evenement/issues",
  7863. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7864. },
  7865. "time": "2023-08-08T05:53:35+00:00"
  7866. },
  7867. {
  7868. "name": "fidry/cpu-core-counter",
  7869. "version": "1.1.0",
  7870. "source": {
  7871. "type": "git",
  7872. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7873. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7874. },
  7875. "dist": {
  7876. "type": "zip",
  7877. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7878. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7879. "shasum": ""
  7880. },
  7881. "require": {
  7882. "php": "^7.2 || ^8.0"
  7883. },
  7884. "require-dev": {
  7885. "fidry/makefile": "^0.2.0",
  7886. "fidry/php-cs-fixer-config": "^1.1.2",
  7887. "phpstan/extension-installer": "^1.2.0",
  7888. "phpstan/phpstan": "^1.9.2",
  7889. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7890. "phpstan/phpstan-phpunit": "^1.2.2",
  7891. "phpstan/phpstan-strict-rules": "^1.4.4",
  7892. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7893. "webmozarts/strict-phpunit": "^7.5"
  7894. },
  7895. "type": "library",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Fidry\\CpuCoreCounter\\": "src/"
  7899. }
  7900. },
  7901. "notification-url": "https://packagist.org/downloads/",
  7902. "license": [
  7903. "MIT"
  7904. ],
  7905. "authors": [
  7906. {
  7907. "name": "Théo FIDRY",
  7908. "email": "theo.fidry@gmail.com"
  7909. }
  7910. ],
  7911. "description": "Tiny utility to get the number of CPU cores.",
  7912. "keywords": [
  7913. "CPU",
  7914. "core"
  7915. ],
  7916. "support": {
  7917. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7918. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7919. },
  7920. "funding": [
  7921. {
  7922. "url": "https://github.com/theofidry",
  7923. "type": "github"
  7924. }
  7925. ],
  7926. "time": "2024-02-07T09:43:46+00:00"
  7927. },
  7928. {
  7929. "name": "friendsofphp/php-cs-fixer",
  7930. "version": "v3.58.1",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7934. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7939. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "clue/ndjson-react": "^1.0",
  7944. "composer/semver": "^3.4",
  7945. "composer/xdebug-handler": "^3.0.3",
  7946. "ext-filter": "*",
  7947. "ext-json": "*",
  7948. "ext-tokenizer": "*",
  7949. "fidry/cpu-core-counter": "^1.0",
  7950. "php": "^7.4 || ^8.0",
  7951. "react/child-process": "^0.6.5",
  7952. "react/event-loop": "^1.0",
  7953. "react/promise": "^2.0 || ^3.0",
  7954. "react/socket": "^1.0",
  7955. "react/stream": "^1.0",
  7956. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7957. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7958. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7959. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7960. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7961. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7962. "symfony/polyfill-mbstring": "^1.28",
  7963. "symfony/polyfill-php80": "^1.28",
  7964. "symfony/polyfill-php81": "^1.28",
  7965. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7966. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7967. },
  7968. "require-dev": {
  7969. "facile-it/paraunit": "^1.3 || ^2.0",
  7970. "infection/infection": "^0.27.11",
  7971. "justinrainbow/json-schema": "^5.2",
  7972. "keradus/cli-executor": "^2.1",
  7973. "mikey179/vfsstream": "^1.6.11",
  7974. "php-coveralls/php-coveralls": "^2.7",
  7975. "php-cs-fixer/accessible-object": "^1.1",
  7976. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7977. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7978. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7979. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7980. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7981. },
  7982. "suggest": {
  7983. "ext-dom": "For handling output formats in XML",
  7984. "ext-mbstring": "For handling non-UTF8 characters."
  7985. },
  7986. "bin": [
  7987. "php-cs-fixer"
  7988. ],
  7989. "type": "application",
  7990. "autoload": {
  7991. "psr-4": {
  7992. "PhpCsFixer\\": "src/"
  7993. }
  7994. },
  7995. "notification-url": "https://packagist.org/downloads/",
  7996. "license": [
  7997. "MIT"
  7998. ],
  7999. "authors": [
  8000. {
  8001. "name": "Fabien Potencier",
  8002. "email": "fabien@symfony.com"
  8003. },
  8004. {
  8005. "name": "Dariusz Rumiński",
  8006. "email": "dariusz.ruminski@gmail.com"
  8007. }
  8008. ],
  8009. "description": "A tool to automatically fix PHP code style",
  8010. "keywords": [
  8011. "Static code analysis",
  8012. "fixer",
  8013. "standards",
  8014. "static analysis"
  8015. ],
  8016. "support": {
  8017. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8018. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://github.com/keradus",
  8023. "type": "github"
  8024. }
  8025. ],
  8026. "time": "2024-05-29T16:39:07+00:00"
  8027. },
  8028. {
  8029. "name": "hamcrest/hamcrest-php",
  8030. "version": "v2.0.1",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8034. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8039. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": "^5.3|^7.0|^8.0"
  8044. },
  8045. "replace": {
  8046. "cordoval/hamcrest-php": "*",
  8047. "davedevelopment/hamcrest-php": "*",
  8048. "kodova/hamcrest-php": "*"
  8049. },
  8050. "require-dev": {
  8051. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8052. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8053. },
  8054. "type": "library",
  8055. "extra": {
  8056. "branch-alias": {
  8057. "dev-master": "2.1-dev"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "classmap": [
  8062. "hamcrest"
  8063. ]
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "BSD-3-Clause"
  8068. ],
  8069. "description": "This is the PHP port of Hamcrest Matchers",
  8070. "keywords": [
  8071. "test"
  8072. ],
  8073. "support": {
  8074. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8075. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8076. },
  8077. "time": "2020-07-09T08:09:16+00:00"
  8078. },
  8079. {
  8080. "name": "hyperf/devtool",
  8081. "version": "v3.1.19",
  8082. "source": {
  8083. "type": "git",
  8084. "url": "https://github.com/hyperf/devtool.git",
  8085. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  8086. },
  8087. "dist": {
  8088. "type": "zip",
  8089. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8090. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8091. "shasum": ""
  8092. },
  8093. "require": {
  8094. "hyperf/code-parser": "~3.1.0",
  8095. "hyperf/command": "~3.1.0",
  8096. "hyperf/contract": "~3.1.0",
  8097. "hyperf/di": "~3.1.0",
  8098. "hyperf/support": "~3.1.0",
  8099. "hyperf/utils": "~3.1.0",
  8100. "php": ">=8.1"
  8101. },
  8102. "type": "library",
  8103. "extra": {
  8104. "branch-alias": {
  8105. "dev-master": "3.1-dev"
  8106. },
  8107. "hyperf": {
  8108. "config": "Hyperf\\Devtool\\ConfigProvider"
  8109. }
  8110. },
  8111. "autoload": {
  8112. "psr-4": {
  8113. "Hyperf\\Devtool\\": "src/"
  8114. }
  8115. },
  8116. "notification-url": "https://packagist.org/downloads/",
  8117. "license": [
  8118. "MIT"
  8119. ],
  8120. "description": "A Devtool for Hyperf.",
  8121. "homepage": "https://hyperf.io",
  8122. "keywords": [
  8123. "dev",
  8124. "devtool",
  8125. "hyperf",
  8126. "php",
  8127. "swoole"
  8128. ],
  8129. "support": {
  8130. "docs": "https://hyperf.wiki",
  8131. "issues": "https://github.com/hyperf/hyperf/issues",
  8132. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8133. "source": "https://github.com/hyperf/hyperf"
  8134. },
  8135. "funding": [
  8136. {
  8137. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8138. "type": "custom"
  8139. },
  8140. {
  8141. "url": "https://opencollective.com/hyperf",
  8142. "type": "open_collective"
  8143. }
  8144. ],
  8145. "time": "2024-04-13T06:53:08+00:00"
  8146. },
  8147. {
  8148. "name": "hyperf/testing",
  8149. "version": "v3.1.21",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/hyperf/testing.git",
  8153. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8158. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "hyperf/codec": "~3.1.0",
  8163. "hyperf/collection": "~3.1.0",
  8164. "hyperf/contract": "~3.1.0",
  8165. "hyperf/coroutine": "~3.1.0",
  8166. "hyperf/http-message": "~3.1.0",
  8167. "hyperf/http-server": "~3.1.0",
  8168. "hyperf/support": "~3.1.0",
  8169. "hyperf/utils": "~3.1.0",
  8170. "php": ">=8.1",
  8171. "phpunit/phpunit": "^10.0",
  8172. "psr/container": "^1.0|^2.0",
  8173. "symfony/http-foundation": "^5.4|^6.0"
  8174. },
  8175. "suggest": {
  8176. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8177. },
  8178. "bin": [
  8179. "co-phpunit"
  8180. ],
  8181. "type": "library",
  8182. "extra": {
  8183. "branch-alias": {
  8184. "dev-master": "3.1-dev"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "psr-4": {
  8189. "Hyperf\\Testing\\": "src/"
  8190. }
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "description": "Testing for hyperf",
  8197. "keywords": [
  8198. "dev",
  8199. "php",
  8200. "swoole",
  8201. "testing"
  8202. ],
  8203. "support": {
  8204. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8205. },
  8206. "funding": [
  8207. {
  8208. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8209. "type": "custom"
  8210. },
  8211. {
  8212. "url": "https://opencollective.com/hyperf",
  8213. "type": "open_collective"
  8214. }
  8215. ],
  8216. "time": "2024-05-07T05:34:51+00:00"
  8217. },
  8218. {
  8219. "name": "hyperf/watcher",
  8220. "version": "v3.1.21",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/hyperf/watcher.git",
  8224. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8229. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8230. "shasum": ""
  8231. },
  8232. "require": {
  8233. "ext-posix": "*",
  8234. "hyperf/codec": "~3.1.0",
  8235. "hyperf/command": "~3.1.0",
  8236. "hyperf/di": "~3.1.0",
  8237. "hyperf/framework": "~3.1.0",
  8238. "hyperf/support": "~3.1.0",
  8239. "php": ">=8.1"
  8240. },
  8241. "type": "library",
  8242. "extra": {
  8243. "branch-alias": {
  8244. "dev-master": "3.1-dev"
  8245. },
  8246. "hyperf": {
  8247. "config": "Hyperf\\Watcher\\ConfigProvider"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "files": [
  8252. "src/Functions.php"
  8253. ],
  8254. "psr-4": {
  8255. "Hyperf\\Watcher\\": "src/"
  8256. }
  8257. },
  8258. "notification-url": "https://packagist.org/downloads/",
  8259. "license": [
  8260. "MIT"
  8261. ],
  8262. "description": "Hot reload watcher for Hyperf",
  8263. "keywords": [
  8264. "dev",
  8265. "hyperf",
  8266. "php"
  8267. ],
  8268. "support": {
  8269. "issues": "https://github.com/hyperf/watcher/issues",
  8270. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8271. },
  8272. "funding": [
  8273. {
  8274. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8275. "type": "custom"
  8276. },
  8277. {
  8278. "url": "https://opencollective.com/hyperf",
  8279. "type": "open_collective"
  8280. }
  8281. ],
  8282. "time": "2024-05-09T13:40:44+00:00"
  8283. },
  8284. {
  8285. "name": "mockery/mockery",
  8286. "version": "1.6.12",
  8287. "source": {
  8288. "type": "git",
  8289. "url": "https://github.com/mockery/mockery.git",
  8290. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8291. },
  8292. "dist": {
  8293. "type": "zip",
  8294. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8295. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8296. "shasum": ""
  8297. },
  8298. "require": {
  8299. "hamcrest/hamcrest-php": "^2.0.1",
  8300. "lib-pcre": ">=7.0",
  8301. "php": ">=7.3"
  8302. },
  8303. "conflict": {
  8304. "phpunit/phpunit": "<8.0"
  8305. },
  8306. "require-dev": {
  8307. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8308. "symplify/easy-coding-standard": "^12.1.14"
  8309. },
  8310. "type": "library",
  8311. "autoload": {
  8312. "files": [
  8313. "library/helpers.php",
  8314. "library/Mockery.php"
  8315. ],
  8316. "psr-4": {
  8317. "Mockery\\": "library/Mockery"
  8318. }
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "BSD-3-Clause"
  8323. ],
  8324. "authors": [
  8325. {
  8326. "name": "Pádraic Brady",
  8327. "email": "padraic.brady@gmail.com",
  8328. "homepage": "https://github.com/padraic",
  8329. "role": "Author"
  8330. },
  8331. {
  8332. "name": "Dave Marshall",
  8333. "email": "dave.marshall@atstsolutions.co.uk",
  8334. "homepage": "https://davedevelopment.co.uk",
  8335. "role": "Developer"
  8336. },
  8337. {
  8338. "name": "Nathanael Esayeas",
  8339. "email": "nathanael.esayeas@protonmail.com",
  8340. "homepage": "https://github.com/ghostwriter",
  8341. "role": "Lead Developer"
  8342. }
  8343. ],
  8344. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8345. "homepage": "https://github.com/mockery/mockery",
  8346. "keywords": [
  8347. "BDD",
  8348. "TDD",
  8349. "library",
  8350. "mock",
  8351. "mock objects",
  8352. "mockery",
  8353. "stub",
  8354. "test",
  8355. "test double",
  8356. "testing"
  8357. ],
  8358. "support": {
  8359. "docs": "https://docs.mockery.io/",
  8360. "issues": "https://github.com/mockery/mockery/issues",
  8361. "rss": "https://github.com/mockery/mockery/releases.atom",
  8362. "security": "https://github.com/mockery/mockery/security/advisories",
  8363. "source": "https://github.com/mockery/mockery"
  8364. },
  8365. "time": "2024-05-16T03:13:13+00:00"
  8366. },
  8367. {
  8368. "name": "myclabs/deep-copy",
  8369. "version": "1.11.1",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/myclabs/DeepCopy.git",
  8373. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8378. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8379. "shasum": ""
  8380. },
  8381. "require": {
  8382. "php": "^7.1 || ^8.0"
  8383. },
  8384. "conflict": {
  8385. "doctrine/collections": "<1.6.8",
  8386. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8387. },
  8388. "require-dev": {
  8389. "doctrine/collections": "^1.6.8",
  8390. "doctrine/common": "^2.13.3 || ^3.2.2",
  8391. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8392. },
  8393. "type": "library",
  8394. "autoload": {
  8395. "files": [
  8396. "src/DeepCopy/deep_copy.php"
  8397. ],
  8398. "psr-4": {
  8399. "DeepCopy\\": "src/DeepCopy/"
  8400. }
  8401. },
  8402. "notification-url": "https://packagist.org/downloads/",
  8403. "license": [
  8404. "MIT"
  8405. ],
  8406. "description": "Create deep copies (clones) of your objects",
  8407. "keywords": [
  8408. "clone",
  8409. "copy",
  8410. "duplicate",
  8411. "object",
  8412. "object graph"
  8413. ],
  8414. "support": {
  8415. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8416. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8417. },
  8418. "funding": [
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2023-03-08T13:26:56+00:00"
  8425. },
  8426. {
  8427. "name": "phar-io/manifest",
  8428. "version": "2.0.4",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/phar-io/manifest.git",
  8432. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8437. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "ext-dom": "*",
  8442. "ext-libxml": "*",
  8443. "ext-phar": "*",
  8444. "ext-xmlwriter": "*",
  8445. "phar-io/version": "^3.0.1",
  8446. "php": "^7.2 || ^8.0"
  8447. },
  8448. "type": "library",
  8449. "extra": {
  8450. "branch-alias": {
  8451. "dev-master": "2.0.x-dev"
  8452. }
  8453. },
  8454. "autoload": {
  8455. "classmap": [
  8456. "src/"
  8457. ]
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "BSD-3-Clause"
  8462. ],
  8463. "authors": [
  8464. {
  8465. "name": "Arne Blankerts",
  8466. "email": "arne@blankerts.de",
  8467. "role": "Developer"
  8468. },
  8469. {
  8470. "name": "Sebastian Heuer",
  8471. "email": "sebastian@phpeople.de",
  8472. "role": "Developer"
  8473. },
  8474. {
  8475. "name": "Sebastian Bergmann",
  8476. "email": "sebastian@phpunit.de",
  8477. "role": "Developer"
  8478. }
  8479. ],
  8480. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8481. "support": {
  8482. "issues": "https://github.com/phar-io/manifest/issues",
  8483. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8484. },
  8485. "funding": [
  8486. {
  8487. "url": "https://github.com/theseer",
  8488. "type": "github"
  8489. }
  8490. ],
  8491. "time": "2024-03-03T12:33:53+00:00"
  8492. },
  8493. {
  8494. "name": "phar-io/version",
  8495. "version": "3.2.1",
  8496. "source": {
  8497. "type": "git",
  8498. "url": "https://github.com/phar-io/version.git",
  8499. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8500. },
  8501. "dist": {
  8502. "type": "zip",
  8503. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8504. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8505. "shasum": ""
  8506. },
  8507. "require": {
  8508. "php": "^7.2 || ^8.0"
  8509. },
  8510. "type": "library",
  8511. "autoload": {
  8512. "classmap": [
  8513. "src/"
  8514. ]
  8515. },
  8516. "notification-url": "https://packagist.org/downloads/",
  8517. "license": [
  8518. "BSD-3-Clause"
  8519. ],
  8520. "authors": [
  8521. {
  8522. "name": "Arne Blankerts",
  8523. "email": "arne@blankerts.de",
  8524. "role": "Developer"
  8525. },
  8526. {
  8527. "name": "Sebastian Heuer",
  8528. "email": "sebastian@phpeople.de",
  8529. "role": "Developer"
  8530. },
  8531. {
  8532. "name": "Sebastian Bergmann",
  8533. "email": "sebastian@phpunit.de",
  8534. "role": "Developer"
  8535. }
  8536. ],
  8537. "description": "Library for handling version information and constraints",
  8538. "support": {
  8539. "issues": "https://github.com/phar-io/version/issues",
  8540. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8541. },
  8542. "time": "2022-02-21T01:04:05+00:00"
  8543. },
  8544. {
  8545. "name": "phpstan/phpstan",
  8546. "version": "1.11.3",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/phpstan/phpstan.git",
  8550. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8555. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "php": "^7.2|^8.0"
  8560. },
  8561. "conflict": {
  8562. "phpstan/phpstan-shim": "*"
  8563. },
  8564. "bin": [
  8565. "phpstan",
  8566. "phpstan.phar"
  8567. ],
  8568. "type": "library",
  8569. "autoload": {
  8570. "files": [
  8571. "bootstrap.php"
  8572. ]
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "MIT"
  8577. ],
  8578. "description": "PHPStan - PHP Static Analysis Tool",
  8579. "keywords": [
  8580. "dev",
  8581. "static analysis"
  8582. ],
  8583. "support": {
  8584. "docs": "https://phpstan.org/user-guide/getting-started",
  8585. "forum": "https://github.com/phpstan/phpstan/discussions",
  8586. "issues": "https://github.com/phpstan/phpstan/issues",
  8587. "security": "https://github.com/phpstan/phpstan/security/policy",
  8588. "source": "https://github.com/phpstan/phpstan-src"
  8589. },
  8590. "funding": [
  8591. {
  8592. "url": "https://github.com/ondrejmirtes",
  8593. "type": "github"
  8594. },
  8595. {
  8596. "url": "https://github.com/phpstan",
  8597. "type": "github"
  8598. }
  8599. ],
  8600. "time": "2024-05-31T13:53:37+00:00"
  8601. },
  8602. {
  8603. "name": "phpunit/php-code-coverage",
  8604. "version": "10.1.14",
  8605. "source": {
  8606. "type": "git",
  8607. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8608. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8609. },
  8610. "dist": {
  8611. "type": "zip",
  8612. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8613. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8614. "shasum": ""
  8615. },
  8616. "require": {
  8617. "ext-dom": "*",
  8618. "ext-libxml": "*",
  8619. "ext-xmlwriter": "*",
  8620. "nikic/php-parser": "^4.18 || ^5.0",
  8621. "php": ">=8.1",
  8622. "phpunit/php-file-iterator": "^4.0",
  8623. "phpunit/php-text-template": "^3.0",
  8624. "sebastian/code-unit-reverse-lookup": "^3.0",
  8625. "sebastian/complexity": "^3.0",
  8626. "sebastian/environment": "^6.0",
  8627. "sebastian/lines-of-code": "^2.0",
  8628. "sebastian/version": "^4.0",
  8629. "theseer/tokenizer": "^1.2.0"
  8630. },
  8631. "require-dev": {
  8632. "phpunit/phpunit": "^10.1"
  8633. },
  8634. "suggest": {
  8635. "ext-pcov": "PHP extension that provides line coverage",
  8636. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8637. },
  8638. "type": "library",
  8639. "extra": {
  8640. "branch-alias": {
  8641. "dev-main": "10.1-dev"
  8642. }
  8643. },
  8644. "autoload": {
  8645. "classmap": [
  8646. "src/"
  8647. ]
  8648. },
  8649. "notification-url": "https://packagist.org/downloads/",
  8650. "license": [
  8651. "BSD-3-Clause"
  8652. ],
  8653. "authors": [
  8654. {
  8655. "name": "Sebastian Bergmann",
  8656. "email": "sebastian@phpunit.de",
  8657. "role": "lead"
  8658. }
  8659. ],
  8660. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8661. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8662. "keywords": [
  8663. "coverage",
  8664. "testing",
  8665. "xunit"
  8666. ],
  8667. "support": {
  8668. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8669. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8670. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8671. },
  8672. "funding": [
  8673. {
  8674. "url": "https://github.com/sebastianbergmann",
  8675. "type": "github"
  8676. }
  8677. ],
  8678. "time": "2024-03-12T15:33:41+00:00"
  8679. },
  8680. {
  8681. "name": "phpunit/php-file-iterator",
  8682. "version": "4.1.0",
  8683. "source": {
  8684. "type": "git",
  8685. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8686. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8687. },
  8688. "dist": {
  8689. "type": "zip",
  8690. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8691. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8692. "shasum": ""
  8693. },
  8694. "require": {
  8695. "php": ">=8.1"
  8696. },
  8697. "require-dev": {
  8698. "phpunit/phpunit": "^10.0"
  8699. },
  8700. "type": "library",
  8701. "extra": {
  8702. "branch-alias": {
  8703. "dev-main": "4.0-dev"
  8704. }
  8705. },
  8706. "autoload": {
  8707. "classmap": [
  8708. "src/"
  8709. ]
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "BSD-3-Clause"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Sebastian Bergmann",
  8718. "email": "sebastian@phpunit.de",
  8719. "role": "lead"
  8720. }
  8721. ],
  8722. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8723. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8724. "keywords": [
  8725. "filesystem",
  8726. "iterator"
  8727. ],
  8728. "support": {
  8729. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8730. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8731. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://github.com/sebastianbergmann",
  8736. "type": "github"
  8737. }
  8738. ],
  8739. "time": "2023-08-31T06:24:48+00:00"
  8740. },
  8741. {
  8742. "name": "phpunit/php-invoker",
  8743. "version": "4.0.0",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8747. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8752. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "php": ">=8.1"
  8757. },
  8758. "require-dev": {
  8759. "ext-pcntl": "*",
  8760. "phpunit/phpunit": "^10.0"
  8761. },
  8762. "suggest": {
  8763. "ext-pcntl": "*"
  8764. },
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-main": "4.0-dev"
  8769. }
  8770. },
  8771. "autoload": {
  8772. "classmap": [
  8773. "src/"
  8774. ]
  8775. },
  8776. "notification-url": "https://packagist.org/downloads/",
  8777. "license": [
  8778. "BSD-3-Clause"
  8779. ],
  8780. "authors": [
  8781. {
  8782. "name": "Sebastian Bergmann",
  8783. "email": "sebastian@phpunit.de",
  8784. "role": "lead"
  8785. }
  8786. ],
  8787. "description": "Invoke callables with a timeout",
  8788. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8789. "keywords": [
  8790. "process"
  8791. ],
  8792. "support": {
  8793. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8794. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://github.com/sebastianbergmann",
  8799. "type": "github"
  8800. }
  8801. ],
  8802. "time": "2023-02-03T06:56:09+00:00"
  8803. },
  8804. {
  8805. "name": "phpunit/php-text-template",
  8806. "version": "3.0.1",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8810. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8815. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "php": ">=8.1"
  8820. },
  8821. "require-dev": {
  8822. "phpunit/phpunit": "^10.0"
  8823. },
  8824. "type": "library",
  8825. "extra": {
  8826. "branch-alias": {
  8827. "dev-main": "3.0-dev"
  8828. }
  8829. },
  8830. "autoload": {
  8831. "classmap": [
  8832. "src/"
  8833. ]
  8834. },
  8835. "notification-url": "https://packagist.org/downloads/",
  8836. "license": [
  8837. "BSD-3-Clause"
  8838. ],
  8839. "authors": [
  8840. {
  8841. "name": "Sebastian Bergmann",
  8842. "email": "sebastian@phpunit.de",
  8843. "role": "lead"
  8844. }
  8845. ],
  8846. "description": "Simple template engine.",
  8847. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8848. "keywords": [
  8849. "template"
  8850. ],
  8851. "support": {
  8852. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8853. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8854. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8855. },
  8856. "funding": [
  8857. {
  8858. "url": "https://github.com/sebastianbergmann",
  8859. "type": "github"
  8860. }
  8861. ],
  8862. "time": "2023-08-31T14:07:24+00:00"
  8863. },
  8864. {
  8865. "name": "phpunit/php-timer",
  8866. "version": "6.0.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8870. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8875. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=8.1"
  8880. },
  8881. "require-dev": {
  8882. "phpunit/phpunit": "^10.0"
  8883. },
  8884. "type": "library",
  8885. "extra": {
  8886. "branch-alias": {
  8887. "dev-main": "6.0-dev"
  8888. }
  8889. },
  8890. "autoload": {
  8891. "classmap": [
  8892. "src/"
  8893. ]
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "BSD-3-Clause"
  8898. ],
  8899. "authors": [
  8900. {
  8901. "name": "Sebastian Bergmann",
  8902. "email": "sebastian@phpunit.de",
  8903. "role": "lead"
  8904. }
  8905. ],
  8906. "description": "Utility class for timing",
  8907. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8908. "keywords": [
  8909. "timer"
  8910. ],
  8911. "support": {
  8912. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8913. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8914. },
  8915. "funding": [
  8916. {
  8917. "url": "https://github.com/sebastianbergmann",
  8918. "type": "github"
  8919. }
  8920. ],
  8921. "time": "2023-02-03T06:57:52+00:00"
  8922. },
  8923. {
  8924. "name": "phpunit/phpunit",
  8925. "version": "10.5.20",
  8926. "source": {
  8927. "type": "git",
  8928. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8929. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8930. },
  8931. "dist": {
  8932. "type": "zip",
  8933. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8934. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8935. "shasum": ""
  8936. },
  8937. "require": {
  8938. "ext-dom": "*",
  8939. "ext-json": "*",
  8940. "ext-libxml": "*",
  8941. "ext-mbstring": "*",
  8942. "ext-xml": "*",
  8943. "ext-xmlwriter": "*",
  8944. "myclabs/deep-copy": "^1.10.1",
  8945. "phar-io/manifest": "^2.0.3",
  8946. "phar-io/version": "^3.0.2",
  8947. "php": ">=8.1",
  8948. "phpunit/php-code-coverage": "^10.1.5",
  8949. "phpunit/php-file-iterator": "^4.0",
  8950. "phpunit/php-invoker": "^4.0",
  8951. "phpunit/php-text-template": "^3.0",
  8952. "phpunit/php-timer": "^6.0",
  8953. "sebastian/cli-parser": "^2.0",
  8954. "sebastian/code-unit": "^2.0",
  8955. "sebastian/comparator": "^5.0",
  8956. "sebastian/diff": "^5.0",
  8957. "sebastian/environment": "^6.0",
  8958. "sebastian/exporter": "^5.1",
  8959. "sebastian/global-state": "^6.0.1",
  8960. "sebastian/object-enumerator": "^5.0",
  8961. "sebastian/recursion-context": "^5.0",
  8962. "sebastian/type": "^4.0",
  8963. "sebastian/version": "^4.0"
  8964. },
  8965. "suggest": {
  8966. "ext-soap": "To be able to generate mocks based on WSDL files"
  8967. },
  8968. "bin": [
  8969. "phpunit"
  8970. ],
  8971. "type": "library",
  8972. "extra": {
  8973. "branch-alias": {
  8974. "dev-main": "10.5-dev"
  8975. }
  8976. },
  8977. "autoload": {
  8978. "files": [
  8979. "src/Framework/Assert/Functions.php"
  8980. ],
  8981. "classmap": [
  8982. "src/"
  8983. ]
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "BSD-3-Clause"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Sebastian Bergmann",
  8992. "email": "sebastian@phpunit.de",
  8993. "role": "lead"
  8994. }
  8995. ],
  8996. "description": "The PHP Unit Testing framework.",
  8997. "homepage": "https://phpunit.de/",
  8998. "keywords": [
  8999. "phpunit",
  9000. "testing",
  9001. "xunit"
  9002. ],
  9003. "support": {
  9004. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9005. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9006. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  9007. },
  9008. "funding": [
  9009. {
  9010. "url": "https://phpunit.de/sponsors.html",
  9011. "type": "custom"
  9012. },
  9013. {
  9014. "url": "https://github.com/sebastianbergmann",
  9015. "type": "github"
  9016. },
  9017. {
  9018. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9019. "type": "tidelift"
  9020. }
  9021. ],
  9022. "time": "2024-04-24T06:32:35+00:00"
  9023. },
  9024. {
  9025. "name": "react/cache",
  9026. "version": "v1.2.0",
  9027. "source": {
  9028. "type": "git",
  9029. "url": "https://github.com/reactphp/cache.git",
  9030. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9031. },
  9032. "dist": {
  9033. "type": "zip",
  9034. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9035. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9036. "shasum": ""
  9037. },
  9038. "require": {
  9039. "php": ">=5.3.0",
  9040. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9041. },
  9042. "require-dev": {
  9043. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9044. },
  9045. "type": "library",
  9046. "autoload": {
  9047. "psr-4": {
  9048. "React\\Cache\\": "src/"
  9049. }
  9050. },
  9051. "notification-url": "https://packagist.org/downloads/",
  9052. "license": [
  9053. "MIT"
  9054. ],
  9055. "authors": [
  9056. {
  9057. "name": "Christian Lück",
  9058. "email": "christian@clue.engineering",
  9059. "homepage": "https://clue.engineering/"
  9060. },
  9061. {
  9062. "name": "Cees-Jan Kiewiet",
  9063. "email": "reactphp@ceesjankiewiet.nl",
  9064. "homepage": "https://wyrihaximus.net/"
  9065. },
  9066. {
  9067. "name": "Jan Sorgalla",
  9068. "email": "jsorgalla@gmail.com",
  9069. "homepage": "https://sorgalla.com/"
  9070. },
  9071. {
  9072. "name": "Chris Boden",
  9073. "email": "cboden@gmail.com",
  9074. "homepage": "https://cboden.dev/"
  9075. }
  9076. ],
  9077. "description": "Async, Promise-based cache interface for ReactPHP",
  9078. "keywords": [
  9079. "cache",
  9080. "caching",
  9081. "promise",
  9082. "reactphp"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/reactphp/cache/issues",
  9086. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://opencollective.com/reactphp",
  9091. "type": "open_collective"
  9092. }
  9093. ],
  9094. "time": "2022-11-30T15:59:55+00:00"
  9095. },
  9096. {
  9097. "name": "react/child-process",
  9098. "version": "v0.6.5",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/reactphp/child-process.git",
  9102. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9107. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9112. "php": ">=5.3.0",
  9113. "react/event-loop": "^1.2",
  9114. "react/stream": "^1.2"
  9115. },
  9116. "require-dev": {
  9117. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9118. "react/socket": "^1.8",
  9119. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9120. },
  9121. "type": "library",
  9122. "autoload": {
  9123. "psr-4": {
  9124. "React\\ChildProcess\\": "src"
  9125. }
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "MIT"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Christian Lück",
  9134. "email": "christian@clue.engineering",
  9135. "homepage": "https://clue.engineering/"
  9136. },
  9137. {
  9138. "name": "Cees-Jan Kiewiet",
  9139. "email": "reactphp@ceesjankiewiet.nl",
  9140. "homepage": "https://wyrihaximus.net/"
  9141. },
  9142. {
  9143. "name": "Jan Sorgalla",
  9144. "email": "jsorgalla@gmail.com",
  9145. "homepage": "https://sorgalla.com/"
  9146. },
  9147. {
  9148. "name": "Chris Boden",
  9149. "email": "cboden@gmail.com",
  9150. "homepage": "https://cboden.dev/"
  9151. }
  9152. ],
  9153. "description": "Event-driven library for executing child processes with ReactPHP.",
  9154. "keywords": [
  9155. "event-driven",
  9156. "process",
  9157. "reactphp"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/reactphp/child-process/issues",
  9161. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9162. },
  9163. "funding": [
  9164. {
  9165. "url": "https://github.com/WyriHaximus",
  9166. "type": "github"
  9167. },
  9168. {
  9169. "url": "https://github.com/clue",
  9170. "type": "github"
  9171. }
  9172. ],
  9173. "time": "2022-09-16T13:41:56+00:00"
  9174. },
  9175. {
  9176. "name": "react/dns",
  9177. "version": "v1.12.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/reactphp/dns.git",
  9181. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9186. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=5.3.0",
  9191. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9192. "react/event-loop": "^1.2",
  9193. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9194. },
  9195. "require-dev": {
  9196. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9197. "react/async": "^4 || ^3 || ^2",
  9198. "react/promise-timer": "^1.9"
  9199. },
  9200. "type": "library",
  9201. "autoload": {
  9202. "psr-4": {
  9203. "React\\Dns\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Christian Lück",
  9213. "email": "christian@clue.engineering",
  9214. "homepage": "https://clue.engineering/"
  9215. },
  9216. {
  9217. "name": "Cees-Jan Kiewiet",
  9218. "email": "reactphp@ceesjankiewiet.nl",
  9219. "homepage": "https://wyrihaximus.net/"
  9220. },
  9221. {
  9222. "name": "Jan Sorgalla",
  9223. "email": "jsorgalla@gmail.com",
  9224. "homepage": "https://sorgalla.com/"
  9225. },
  9226. {
  9227. "name": "Chris Boden",
  9228. "email": "cboden@gmail.com",
  9229. "homepage": "https://cboden.dev/"
  9230. }
  9231. ],
  9232. "description": "Async DNS resolver for ReactPHP",
  9233. "keywords": [
  9234. "async",
  9235. "dns",
  9236. "dns-resolver",
  9237. "reactphp"
  9238. ],
  9239. "support": {
  9240. "issues": "https://github.com/reactphp/dns/issues",
  9241. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9242. },
  9243. "funding": [
  9244. {
  9245. "url": "https://opencollective.com/reactphp",
  9246. "type": "open_collective"
  9247. }
  9248. ],
  9249. "time": "2023-11-29T12:41:06+00:00"
  9250. },
  9251. {
  9252. "name": "react/event-loop",
  9253. "version": "v1.5.0",
  9254. "source": {
  9255. "type": "git",
  9256. "url": "https://github.com/reactphp/event-loop.git",
  9257. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9258. },
  9259. "dist": {
  9260. "type": "zip",
  9261. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9262. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9263. "shasum": ""
  9264. },
  9265. "require": {
  9266. "php": ">=5.3.0"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9270. },
  9271. "suggest": {
  9272. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9273. },
  9274. "type": "library",
  9275. "autoload": {
  9276. "psr-4": {
  9277. "React\\EventLoop\\": "src/"
  9278. }
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "MIT"
  9283. ],
  9284. "authors": [
  9285. {
  9286. "name": "Christian Lück",
  9287. "email": "christian@clue.engineering",
  9288. "homepage": "https://clue.engineering/"
  9289. },
  9290. {
  9291. "name": "Cees-Jan Kiewiet",
  9292. "email": "reactphp@ceesjankiewiet.nl",
  9293. "homepage": "https://wyrihaximus.net/"
  9294. },
  9295. {
  9296. "name": "Jan Sorgalla",
  9297. "email": "jsorgalla@gmail.com",
  9298. "homepage": "https://sorgalla.com/"
  9299. },
  9300. {
  9301. "name": "Chris Boden",
  9302. "email": "cboden@gmail.com",
  9303. "homepage": "https://cboden.dev/"
  9304. }
  9305. ],
  9306. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9307. "keywords": [
  9308. "asynchronous",
  9309. "event-loop"
  9310. ],
  9311. "support": {
  9312. "issues": "https://github.com/reactphp/event-loop/issues",
  9313. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9314. },
  9315. "funding": [
  9316. {
  9317. "url": "https://opencollective.com/reactphp",
  9318. "type": "open_collective"
  9319. }
  9320. ],
  9321. "time": "2023-11-13T13:48:05+00:00"
  9322. },
  9323. {
  9324. "name": "react/promise",
  9325. "version": "v3.2.0",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/reactphp/promise.git",
  9329. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9334. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "php": ">=7.1.0"
  9339. },
  9340. "require-dev": {
  9341. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9342. "phpunit/phpunit": "^9.6 || ^7.5"
  9343. },
  9344. "type": "library",
  9345. "autoload": {
  9346. "files": [
  9347. "src/functions_include.php"
  9348. ],
  9349. "psr-4": {
  9350. "React\\Promise\\": "src/"
  9351. }
  9352. },
  9353. "notification-url": "https://packagist.org/downloads/",
  9354. "license": [
  9355. "MIT"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Jan Sorgalla",
  9360. "email": "jsorgalla@gmail.com",
  9361. "homepage": "https://sorgalla.com/"
  9362. },
  9363. {
  9364. "name": "Christian Lück",
  9365. "email": "christian@clue.engineering",
  9366. "homepage": "https://clue.engineering/"
  9367. },
  9368. {
  9369. "name": "Cees-Jan Kiewiet",
  9370. "email": "reactphp@ceesjankiewiet.nl",
  9371. "homepage": "https://wyrihaximus.net/"
  9372. },
  9373. {
  9374. "name": "Chris Boden",
  9375. "email": "cboden@gmail.com",
  9376. "homepage": "https://cboden.dev/"
  9377. }
  9378. ],
  9379. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9380. "keywords": [
  9381. "promise",
  9382. "promises"
  9383. ],
  9384. "support": {
  9385. "issues": "https://github.com/reactphp/promise/issues",
  9386. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9387. },
  9388. "funding": [
  9389. {
  9390. "url": "https://opencollective.com/reactphp",
  9391. "type": "open_collective"
  9392. }
  9393. ],
  9394. "time": "2024-05-24T10:39:05+00:00"
  9395. },
  9396. {
  9397. "name": "react/socket",
  9398. "version": "v1.15.0",
  9399. "source": {
  9400. "type": "git",
  9401. "url": "https://github.com/reactphp/socket.git",
  9402. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9403. },
  9404. "dist": {
  9405. "type": "zip",
  9406. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9407. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9408. "shasum": ""
  9409. },
  9410. "require": {
  9411. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9412. "php": ">=5.3.0",
  9413. "react/dns": "^1.11",
  9414. "react/event-loop": "^1.2",
  9415. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9416. "react/stream": "^1.2"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9420. "react/async": "^4 || ^3 || ^2",
  9421. "react/promise-stream": "^1.4",
  9422. "react/promise-timer": "^1.10"
  9423. },
  9424. "type": "library",
  9425. "autoload": {
  9426. "psr-4": {
  9427. "React\\Socket\\": "src/"
  9428. }
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Christian Lück",
  9437. "email": "christian@clue.engineering",
  9438. "homepage": "https://clue.engineering/"
  9439. },
  9440. {
  9441. "name": "Cees-Jan Kiewiet",
  9442. "email": "reactphp@ceesjankiewiet.nl",
  9443. "homepage": "https://wyrihaximus.net/"
  9444. },
  9445. {
  9446. "name": "Jan Sorgalla",
  9447. "email": "jsorgalla@gmail.com",
  9448. "homepage": "https://sorgalla.com/"
  9449. },
  9450. {
  9451. "name": "Chris Boden",
  9452. "email": "cboden@gmail.com",
  9453. "homepage": "https://cboden.dev/"
  9454. }
  9455. ],
  9456. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9457. "keywords": [
  9458. "Connection",
  9459. "Socket",
  9460. "async",
  9461. "reactphp",
  9462. "stream"
  9463. ],
  9464. "support": {
  9465. "issues": "https://github.com/reactphp/socket/issues",
  9466. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9467. },
  9468. "funding": [
  9469. {
  9470. "url": "https://opencollective.com/reactphp",
  9471. "type": "open_collective"
  9472. }
  9473. ],
  9474. "time": "2023-12-15T11:02:10+00:00"
  9475. },
  9476. {
  9477. "name": "react/stream",
  9478. "version": "v1.3.0",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/reactphp/stream.git",
  9482. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9487. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9492. "php": ">=5.3.8",
  9493. "react/event-loop": "^1.2"
  9494. },
  9495. "require-dev": {
  9496. "clue/stream-filter": "~1.2",
  9497. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9498. },
  9499. "type": "library",
  9500. "autoload": {
  9501. "psr-4": {
  9502. "React\\Stream\\": "src/"
  9503. }
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "MIT"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Christian Lück",
  9512. "email": "christian@clue.engineering",
  9513. "homepage": "https://clue.engineering/"
  9514. },
  9515. {
  9516. "name": "Cees-Jan Kiewiet",
  9517. "email": "reactphp@ceesjankiewiet.nl",
  9518. "homepage": "https://wyrihaximus.net/"
  9519. },
  9520. {
  9521. "name": "Jan Sorgalla",
  9522. "email": "jsorgalla@gmail.com",
  9523. "homepage": "https://sorgalla.com/"
  9524. },
  9525. {
  9526. "name": "Chris Boden",
  9527. "email": "cboden@gmail.com",
  9528. "homepage": "https://cboden.dev/"
  9529. }
  9530. ],
  9531. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9532. "keywords": [
  9533. "event-driven",
  9534. "io",
  9535. "non-blocking",
  9536. "pipe",
  9537. "reactphp",
  9538. "readable",
  9539. "stream",
  9540. "writable"
  9541. ],
  9542. "support": {
  9543. "issues": "https://github.com/reactphp/stream/issues",
  9544. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9545. },
  9546. "funding": [
  9547. {
  9548. "url": "https://opencollective.com/reactphp",
  9549. "type": "open_collective"
  9550. }
  9551. ],
  9552. "time": "2023-06-16T10:52:11+00:00"
  9553. },
  9554. {
  9555. "name": "sebastian/cli-parser",
  9556. "version": "2.0.1",
  9557. "source": {
  9558. "type": "git",
  9559. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9560. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9561. },
  9562. "dist": {
  9563. "type": "zip",
  9564. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9565. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9566. "shasum": ""
  9567. },
  9568. "require": {
  9569. "php": ">=8.1"
  9570. },
  9571. "require-dev": {
  9572. "phpunit/phpunit": "^10.0"
  9573. },
  9574. "type": "library",
  9575. "extra": {
  9576. "branch-alias": {
  9577. "dev-main": "2.0-dev"
  9578. }
  9579. },
  9580. "autoload": {
  9581. "classmap": [
  9582. "src/"
  9583. ]
  9584. },
  9585. "notification-url": "https://packagist.org/downloads/",
  9586. "license": [
  9587. "BSD-3-Clause"
  9588. ],
  9589. "authors": [
  9590. {
  9591. "name": "Sebastian Bergmann",
  9592. "email": "sebastian@phpunit.de",
  9593. "role": "lead"
  9594. }
  9595. ],
  9596. "description": "Library for parsing CLI options",
  9597. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9598. "support": {
  9599. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9600. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9601. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9602. },
  9603. "funding": [
  9604. {
  9605. "url": "https://github.com/sebastianbergmann",
  9606. "type": "github"
  9607. }
  9608. ],
  9609. "time": "2024-03-02T07:12:49+00:00"
  9610. },
  9611. {
  9612. "name": "sebastian/code-unit",
  9613. "version": "2.0.0",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9617. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9622. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "php": ">=8.1"
  9627. },
  9628. "require-dev": {
  9629. "phpunit/phpunit": "^10.0"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-main": "2.0-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "classmap": [
  9639. "src/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "BSD-3-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Sebastian Bergmann",
  9649. "email": "sebastian@phpunit.de",
  9650. "role": "lead"
  9651. }
  9652. ],
  9653. "description": "Collection of value objects that represent the PHP code units",
  9654. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9655. "support": {
  9656. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9657. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9658. },
  9659. "funding": [
  9660. {
  9661. "url": "https://github.com/sebastianbergmann",
  9662. "type": "github"
  9663. }
  9664. ],
  9665. "time": "2023-02-03T06:58:43+00:00"
  9666. },
  9667. {
  9668. "name": "sebastian/code-unit-reverse-lookup",
  9669. "version": "3.0.0",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9673. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9678. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9679. "shasum": ""
  9680. },
  9681. "require": {
  9682. "php": ">=8.1"
  9683. },
  9684. "require-dev": {
  9685. "phpunit/phpunit": "^10.0"
  9686. },
  9687. "type": "library",
  9688. "extra": {
  9689. "branch-alias": {
  9690. "dev-main": "3.0-dev"
  9691. }
  9692. },
  9693. "autoload": {
  9694. "classmap": [
  9695. "src/"
  9696. ]
  9697. },
  9698. "notification-url": "https://packagist.org/downloads/",
  9699. "license": [
  9700. "BSD-3-Clause"
  9701. ],
  9702. "authors": [
  9703. {
  9704. "name": "Sebastian Bergmann",
  9705. "email": "sebastian@phpunit.de"
  9706. }
  9707. ],
  9708. "description": "Looks up which function or method a line of code belongs to",
  9709. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9710. "support": {
  9711. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9712. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9713. },
  9714. "funding": [
  9715. {
  9716. "url": "https://github.com/sebastianbergmann",
  9717. "type": "github"
  9718. }
  9719. ],
  9720. "time": "2023-02-03T06:59:15+00:00"
  9721. },
  9722. {
  9723. "name": "sebastian/comparator",
  9724. "version": "5.0.1",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/sebastianbergmann/comparator.git",
  9728. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9733. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "ext-dom": "*",
  9738. "ext-mbstring": "*",
  9739. "php": ">=8.1",
  9740. "sebastian/diff": "^5.0",
  9741. "sebastian/exporter": "^5.0"
  9742. },
  9743. "require-dev": {
  9744. "phpunit/phpunit": "^10.3"
  9745. },
  9746. "type": "library",
  9747. "extra": {
  9748. "branch-alias": {
  9749. "dev-main": "5.0-dev"
  9750. }
  9751. },
  9752. "autoload": {
  9753. "classmap": [
  9754. "src/"
  9755. ]
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "BSD-3-Clause"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Sebastian Bergmann",
  9764. "email": "sebastian@phpunit.de"
  9765. },
  9766. {
  9767. "name": "Jeff Welch",
  9768. "email": "whatthejeff@gmail.com"
  9769. },
  9770. {
  9771. "name": "Volker Dusch",
  9772. "email": "github@wallbash.com"
  9773. },
  9774. {
  9775. "name": "Bernhard Schussek",
  9776. "email": "bschussek@2bepublished.at"
  9777. }
  9778. ],
  9779. "description": "Provides the functionality to compare PHP values for equality",
  9780. "homepage": "https://github.com/sebastianbergmann/comparator",
  9781. "keywords": [
  9782. "comparator",
  9783. "compare",
  9784. "equality"
  9785. ],
  9786. "support": {
  9787. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9788. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9789. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9790. },
  9791. "funding": [
  9792. {
  9793. "url": "https://github.com/sebastianbergmann",
  9794. "type": "github"
  9795. }
  9796. ],
  9797. "time": "2023-08-14T13:18:12+00:00"
  9798. },
  9799. {
  9800. "name": "sebastian/complexity",
  9801. "version": "3.2.0",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/sebastianbergmann/complexity.git",
  9805. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9810. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "nikic/php-parser": "^4.18 || ^5.0",
  9815. "php": ">=8.1"
  9816. },
  9817. "require-dev": {
  9818. "phpunit/phpunit": "^10.0"
  9819. },
  9820. "type": "library",
  9821. "extra": {
  9822. "branch-alias": {
  9823. "dev-main": "3.2-dev"
  9824. }
  9825. },
  9826. "autoload": {
  9827. "classmap": [
  9828. "src/"
  9829. ]
  9830. },
  9831. "notification-url": "https://packagist.org/downloads/",
  9832. "license": [
  9833. "BSD-3-Clause"
  9834. ],
  9835. "authors": [
  9836. {
  9837. "name": "Sebastian Bergmann",
  9838. "email": "sebastian@phpunit.de",
  9839. "role": "lead"
  9840. }
  9841. ],
  9842. "description": "Library for calculating the complexity of PHP code units",
  9843. "homepage": "https://github.com/sebastianbergmann/complexity",
  9844. "support": {
  9845. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9846. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9847. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9848. },
  9849. "funding": [
  9850. {
  9851. "url": "https://github.com/sebastianbergmann",
  9852. "type": "github"
  9853. }
  9854. ],
  9855. "time": "2023-12-21T08:37:17+00:00"
  9856. },
  9857. {
  9858. "name": "sebastian/diff",
  9859. "version": "5.1.1",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/sebastianbergmann/diff.git",
  9863. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9868. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9869. "shasum": ""
  9870. },
  9871. "require": {
  9872. "php": ">=8.1"
  9873. },
  9874. "require-dev": {
  9875. "phpunit/phpunit": "^10.0",
  9876. "symfony/process": "^6.4"
  9877. },
  9878. "type": "library",
  9879. "extra": {
  9880. "branch-alias": {
  9881. "dev-main": "5.1-dev"
  9882. }
  9883. },
  9884. "autoload": {
  9885. "classmap": [
  9886. "src/"
  9887. ]
  9888. },
  9889. "notification-url": "https://packagist.org/downloads/",
  9890. "license": [
  9891. "BSD-3-Clause"
  9892. ],
  9893. "authors": [
  9894. {
  9895. "name": "Sebastian Bergmann",
  9896. "email": "sebastian@phpunit.de"
  9897. },
  9898. {
  9899. "name": "Kore Nordmann",
  9900. "email": "mail@kore-nordmann.de"
  9901. }
  9902. ],
  9903. "description": "Diff implementation",
  9904. "homepage": "https://github.com/sebastianbergmann/diff",
  9905. "keywords": [
  9906. "diff",
  9907. "udiff",
  9908. "unidiff",
  9909. "unified diff"
  9910. ],
  9911. "support": {
  9912. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9913. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9914. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9915. },
  9916. "funding": [
  9917. {
  9918. "url": "https://github.com/sebastianbergmann",
  9919. "type": "github"
  9920. }
  9921. ],
  9922. "time": "2024-03-02T07:15:17+00:00"
  9923. },
  9924. {
  9925. "name": "sebastian/environment",
  9926. "version": "6.1.0",
  9927. "source": {
  9928. "type": "git",
  9929. "url": "https://github.com/sebastianbergmann/environment.git",
  9930. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9931. },
  9932. "dist": {
  9933. "type": "zip",
  9934. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9935. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9936. "shasum": ""
  9937. },
  9938. "require": {
  9939. "php": ">=8.1"
  9940. },
  9941. "require-dev": {
  9942. "phpunit/phpunit": "^10.0"
  9943. },
  9944. "suggest": {
  9945. "ext-posix": "*"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-main": "6.1-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "classmap": [
  9955. "src/"
  9956. ]
  9957. },
  9958. "notification-url": "https://packagist.org/downloads/",
  9959. "license": [
  9960. "BSD-3-Clause"
  9961. ],
  9962. "authors": [
  9963. {
  9964. "name": "Sebastian Bergmann",
  9965. "email": "sebastian@phpunit.de"
  9966. }
  9967. ],
  9968. "description": "Provides functionality to handle HHVM/PHP environments",
  9969. "homepage": "https://github.com/sebastianbergmann/environment",
  9970. "keywords": [
  9971. "Xdebug",
  9972. "environment",
  9973. "hhvm"
  9974. ],
  9975. "support": {
  9976. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9977. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9978. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9979. },
  9980. "funding": [
  9981. {
  9982. "url": "https://github.com/sebastianbergmann",
  9983. "type": "github"
  9984. }
  9985. ],
  9986. "time": "2024-03-23T08:47:14+00:00"
  9987. },
  9988. {
  9989. "name": "sebastian/exporter",
  9990. "version": "5.1.2",
  9991. "source": {
  9992. "type": "git",
  9993. "url": "https://github.com/sebastianbergmann/exporter.git",
  9994. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9995. },
  9996. "dist": {
  9997. "type": "zip",
  9998. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9999. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10000. "shasum": ""
  10001. },
  10002. "require": {
  10003. "ext-mbstring": "*",
  10004. "php": ">=8.1",
  10005. "sebastian/recursion-context": "^5.0"
  10006. },
  10007. "require-dev": {
  10008. "phpunit/phpunit": "^10.0"
  10009. },
  10010. "type": "library",
  10011. "extra": {
  10012. "branch-alias": {
  10013. "dev-main": "5.1-dev"
  10014. }
  10015. },
  10016. "autoload": {
  10017. "classmap": [
  10018. "src/"
  10019. ]
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "BSD-3-Clause"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Sebastian Bergmann",
  10028. "email": "sebastian@phpunit.de"
  10029. },
  10030. {
  10031. "name": "Jeff Welch",
  10032. "email": "whatthejeff@gmail.com"
  10033. },
  10034. {
  10035. "name": "Volker Dusch",
  10036. "email": "github@wallbash.com"
  10037. },
  10038. {
  10039. "name": "Adam Harvey",
  10040. "email": "aharvey@php.net"
  10041. },
  10042. {
  10043. "name": "Bernhard Schussek",
  10044. "email": "bschussek@gmail.com"
  10045. }
  10046. ],
  10047. "description": "Provides the functionality to export PHP variables for visualization",
  10048. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10049. "keywords": [
  10050. "export",
  10051. "exporter"
  10052. ],
  10053. "support": {
  10054. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10055. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10056. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10057. },
  10058. "funding": [
  10059. {
  10060. "url": "https://github.com/sebastianbergmann",
  10061. "type": "github"
  10062. }
  10063. ],
  10064. "time": "2024-03-02T07:17:12+00:00"
  10065. },
  10066. {
  10067. "name": "sebastian/global-state",
  10068. "version": "6.0.2",
  10069. "source": {
  10070. "type": "git",
  10071. "url": "https://github.com/sebastianbergmann/global-state.git",
  10072. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10073. },
  10074. "dist": {
  10075. "type": "zip",
  10076. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10077. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10078. "shasum": ""
  10079. },
  10080. "require": {
  10081. "php": ">=8.1",
  10082. "sebastian/object-reflector": "^3.0",
  10083. "sebastian/recursion-context": "^5.0"
  10084. },
  10085. "require-dev": {
  10086. "ext-dom": "*",
  10087. "phpunit/phpunit": "^10.0"
  10088. },
  10089. "type": "library",
  10090. "extra": {
  10091. "branch-alias": {
  10092. "dev-main": "6.0-dev"
  10093. }
  10094. },
  10095. "autoload": {
  10096. "classmap": [
  10097. "src/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "BSD-3-Clause"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Sebastian Bergmann",
  10107. "email": "sebastian@phpunit.de"
  10108. }
  10109. ],
  10110. "description": "Snapshotting of global state",
  10111. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10112. "keywords": [
  10113. "global state"
  10114. ],
  10115. "support": {
  10116. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10117. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10118. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10119. },
  10120. "funding": [
  10121. {
  10122. "url": "https://github.com/sebastianbergmann",
  10123. "type": "github"
  10124. }
  10125. ],
  10126. "time": "2024-03-02T07:19:19+00:00"
  10127. },
  10128. {
  10129. "name": "sebastian/lines-of-code",
  10130. "version": "2.0.2",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10134. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10139. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "nikic/php-parser": "^4.18 || ^5.0",
  10144. "php": ">=8.1"
  10145. },
  10146. "require-dev": {
  10147. "phpunit/phpunit": "^10.0"
  10148. },
  10149. "type": "library",
  10150. "extra": {
  10151. "branch-alias": {
  10152. "dev-main": "2.0-dev"
  10153. }
  10154. },
  10155. "autoload": {
  10156. "classmap": [
  10157. "src/"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "BSD-3-Clause"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Sebastian Bergmann",
  10167. "email": "sebastian@phpunit.de",
  10168. "role": "lead"
  10169. }
  10170. ],
  10171. "description": "Library for counting the lines of code in PHP source code",
  10172. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10173. "support": {
  10174. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10175. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10176. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10177. },
  10178. "funding": [
  10179. {
  10180. "url": "https://github.com/sebastianbergmann",
  10181. "type": "github"
  10182. }
  10183. ],
  10184. "time": "2023-12-21T08:38:20+00:00"
  10185. },
  10186. {
  10187. "name": "sebastian/object-enumerator",
  10188. "version": "5.0.0",
  10189. "source": {
  10190. "type": "git",
  10191. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10192. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10193. },
  10194. "dist": {
  10195. "type": "zip",
  10196. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10197. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10198. "shasum": ""
  10199. },
  10200. "require": {
  10201. "php": ">=8.1",
  10202. "sebastian/object-reflector": "^3.0",
  10203. "sebastian/recursion-context": "^5.0"
  10204. },
  10205. "require-dev": {
  10206. "phpunit/phpunit": "^10.0"
  10207. },
  10208. "type": "library",
  10209. "extra": {
  10210. "branch-alias": {
  10211. "dev-main": "5.0-dev"
  10212. }
  10213. },
  10214. "autoload": {
  10215. "classmap": [
  10216. "src/"
  10217. ]
  10218. },
  10219. "notification-url": "https://packagist.org/downloads/",
  10220. "license": [
  10221. "BSD-3-Clause"
  10222. ],
  10223. "authors": [
  10224. {
  10225. "name": "Sebastian Bergmann",
  10226. "email": "sebastian@phpunit.de"
  10227. }
  10228. ],
  10229. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10230. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10231. "support": {
  10232. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10233. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10234. },
  10235. "funding": [
  10236. {
  10237. "url": "https://github.com/sebastianbergmann",
  10238. "type": "github"
  10239. }
  10240. ],
  10241. "time": "2023-02-03T07:08:32+00:00"
  10242. },
  10243. {
  10244. "name": "sebastian/object-reflector",
  10245. "version": "3.0.0",
  10246. "source": {
  10247. "type": "git",
  10248. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10249. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10250. },
  10251. "dist": {
  10252. "type": "zip",
  10253. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10254. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10255. "shasum": ""
  10256. },
  10257. "require": {
  10258. "php": ">=8.1"
  10259. },
  10260. "require-dev": {
  10261. "phpunit/phpunit": "^10.0"
  10262. },
  10263. "type": "library",
  10264. "extra": {
  10265. "branch-alias": {
  10266. "dev-main": "3.0-dev"
  10267. }
  10268. },
  10269. "autoload": {
  10270. "classmap": [
  10271. "src/"
  10272. ]
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "BSD-3-Clause"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Sebastian Bergmann",
  10281. "email": "sebastian@phpunit.de"
  10282. }
  10283. ],
  10284. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10285. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10286. "support": {
  10287. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10288. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10289. },
  10290. "funding": [
  10291. {
  10292. "url": "https://github.com/sebastianbergmann",
  10293. "type": "github"
  10294. }
  10295. ],
  10296. "time": "2023-02-03T07:06:18+00:00"
  10297. },
  10298. {
  10299. "name": "sebastian/recursion-context",
  10300. "version": "5.0.0",
  10301. "source": {
  10302. "type": "git",
  10303. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10304. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10305. },
  10306. "dist": {
  10307. "type": "zip",
  10308. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10309. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10310. "shasum": ""
  10311. },
  10312. "require": {
  10313. "php": ">=8.1"
  10314. },
  10315. "require-dev": {
  10316. "phpunit/phpunit": "^10.0"
  10317. },
  10318. "type": "library",
  10319. "extra": {
  10320. "branch-alias": {
  10321. "dev-main": "5.0-dev"
  10322. }
  10323. },
  10324. "autoload": {
  10325. "classmap": [
  10326. "src/"
  10327. ]
  10328. },
  10329. "notification-url": "https://packagist.org/downloads/",
  10330. "license": [
  10331. "BSD-3-Clause"
  10332. ],
  10333. "authors": [
  10334. {
  10335. "name": "Sebastian Bergmann",
  10336. "email": "sebastian@phpunit.de"
  10337. },
  10338. {
  10339. "name": "Jeff Welch",
  10340. "email": "whatthejeff@gmail.com"
  10341. },
  10342. {
  10343. "name": "Adam Harvey",
  10344. "email": "aharvey@php.net"
  10345. }
  10346. ],
  10347. "description": "Provides functionality to recursively process PHP variables",
  10348. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10349. "support": {
  10350. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10351. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10352. },
  10353. "funding": [
  10354. {
  10355. "url": "https://github.com/sebastianbergmann",
  10356. "type": "github"
  10357. }
  10358. ],
  10359. "time": "2023-02-03T07:05:40+00:00"
  10360. },
  10361. {
  10362. "name": "sebastian/type",
  10363. "version": "4.0.0",
  10364. "source": {
  10365. "type": "git",
  10366. "url": "https://github.com/sebastianbergmann/type.git",
  10367. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10368. },
  10369. "dist": {
  10370. "type": "zip",
  10371. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10372. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10373. "shasum": ""
  10374. },
  10375. "require": {
  10376. "php": ">=8.1"
  10377. },
  10378. "require-dev": {
  10379. "phpunit/phpunit": "^10.0"
  10380. },
  10381. "type": "library",
  10382. "extra": {
  10383. "branch-alias": {
  10384. "dev-main": "4.0-dev"
  10385. }
  10386. },
  10387. "autoload": {
  10388. "classmap": [
  10389. "src/"
  10390. ]
  10391. },
  10392. "notification-url": "https://packagist.org/downloads/",
  10393. "license": [
  10394. "BSD-3-Clause"
  10395. ],
  10396. "authors": [
  10397. {
  10398. "name": "Sebastian Bergmann",
  10399. "email": "sebastian@phpunit.de",
  10400. "role": "lead"
  10401. }
  10402. ],
  10403. "description": "Collection of value objects that represent the types of the PHP type system",
  10404. "homepage": "https://github.com/sebastianbergmann/type",
  10405. "support": {
  10406. "issues": "https://github.com/sebastianbergmann/type/issues",
  10407. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10408. },
  10409. "funding": [
  10410. {
  10411. "url": "https://github.com/sebastianbergmann",
  10412. "type": "github"
  10413. }
  10414. ],
  10415. "time": "2023-02-03T07:10:45+00:00"
  10416. },
  10417. {
  10418. "name": "sebastian/version",
  10419. "version": "4.0.1",
  10420. "source": {
  10421. "type": "git",
  10422. "url": "https://github.com/sebastianbergmann/version.git",
  10423. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10424. },
  10425. "dist": {
  10426. "type": "zip",
  10427. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10428. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10429. "shasum": ""
  10430. },
  10431. "require": {
  10432. "php": ">=8.1"
  10433. },
  10434. "type": "library",
  10435. "extra": {
  10436. "branch-alias": {
  10437. "dev-main": "4.0-dev"
  10438. }
  10439. },
  10440. "autoload": {
  10441. "classmap": [
  10442. "src/"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "BSD-3-Clause"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Sebastian Bergmann",
  10452. "email": "sebastian@phpunit.de",
  10453. "role": "lead"
  10454. }
  10455. ],
  10456. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10457. "homepage": "https://github.com/sebastianbergmann/version",
  10458. "support": {
  10459. "issues": "https://github.com/sebastianbergmann/version/issues",
  10460. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://github.com/sebastianbergmann",
  10465. "type": "github"
  10466. }
  10467. ],
  10468. "time": "2023-02-07T11:34:05+00:00"
  10469. },
  10470. {
  10471. "name": "swoole/ide-helper",
  10472. "version": "5.1.2",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/swoole/ide-helper.git",
  10476. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10481. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10482. "shasum": ""
  10483. },
  10484. "type": "library",
  10485. "notification-url": "https://packagist.org/downloads/",
  10486. "license": [
  10487. "Apache-2.0"
  10488. ],
  10489. "authors": [
  10490. {
  10491. "name": "Team Swoole",
  10492. "email": "team@swoole.com"
  10493. }
  10494. ],
  10495. "description": "IDE help files for Swoole.",
  10496. "support": {
  10497. "issues": "https://github.com/swoole/ide-helper/issues",
  10498. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10499. },
  10500. "time": "2024-02-01T22:28:11+00:00"
  10501. },
  10502. {
  10503. "name": "symfony/event-dispatcher",
  10504. "version": "v6.4.8",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/symfony/event-dispatcher.git",
  10508. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10513. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10514. "shasum": ""
  10515. },
  10516. "require": {
  10517. "php": ">=8.1",
  10518. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10519. },
  10520. "conflict": {
  10521. "symfony/dependency-injection": "<5.4",
  10522. "symfony/service-contracts": "<2.5"
  10523. },
  10524. "provide": {
  10525. "psr/event-dispatcher-implementation": "1.0",
  10526. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10527. },
  10528. "require-dev": {
  10529. "psr/log": "^1|^2|^3",
  10530. "symfony/config": "^5.4|^6.0|^7.0",
  10531. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10532. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10533. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10534. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10535. "symfony/service-contracts": "^2.5|^3",
  10536. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10537. },
  10538. "type": "library",
  10539. "autoload": {
  10540. "psr-4": {
  10541. "Symfony\\Component\\EventDispatcher\\": ""
  10542. },
  10543. "exclude-from-classmap": [
  10544. "/Tests/"
  10545. ]
  10546. },
  10547. "notification-url": "https://packagist.org/downloads/",
  10548. "license": [
  10549. "MIT"
  10550. ],
  10551. "authors": [
  10552. {
  10553. "name": "Fabien Potencier",
  10554. "email": "fabien@symfony.com"
  10555. },
  10556. {
  10557. "name": "Symfony Community",
  10558. "homepage": "https://symfony.com/contributors"
  10559. }
  10560. ],
  10561. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10562. "homepage": "https://symfony.com",
  10563. "support": {
  10564. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10565. },
  10566. "funding": [
  10567. {
  10568. "url": "https://symfony.com/sponsor",
  10569. "type": "custom"
  10570. },
  10571. {
  10572. "url": "https://github.com/fabpot",
  10573. "type": "github"
  10574. },
  10575. {
  10576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10577. "type": "tidelift"
  10578. }
  10579. ],
  10580. "time": "2024-05-31T14:49:08+00:00"
  10581. },
  10582. {
  10583. "name": "symfony/event-dispatcher-contracts",
  10584. "version": "v3.5.0",
  10585. "source": {
  10586. "type": "git",
  10587. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10588. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10589. },
  10590. "dist": {
  10591. "type": "zip",
  10592. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10593. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10594. "shasum": ""
  10595. },
  10596. "require": {
  10597. "php": ">=8.1",
  10598. "psr/event-dispatcher": "^1"
  10599. },
  10600. "type": "library",
  10601. "extra": {
  10602. "branch-alias": {
  10603. "dev-main": "3.5-dev"
  10604. },
  10605. "thanks": {
  10606. "name": "symfony/contracts",
  10607. "url": "https://github.com/symfony/contracts"
  10608. }
  10609. },
  10610. "autoload": {
  10611. "psr-4": {
  10612. "Symfony\\Contracts\\EventDispatcher\\": ""
  10613. }
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "MIT"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Nicolas Grekas",
  10622. "email": "p@tchwork.com"
  10623. },
  10624. {
  10625. "name": "Symfony Community",
  10626. "homepage": "https://symfony.com/contributors"
  10627. }
  10628. ],
  10629. "description": "Generic abstractions related to dispatching event",
  10630. "homepage": "https://symfony.com",
  10631. "keywords": [
  10632. "abstractions",
  10633. "contracts",
  10634. "decoupling",
  10635. "interfaces",
  10636. "interoperability",
  10637. "standards"
  10638. ],
  10639. "support": {
  10640. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10641. },
  10642. "funding": [
  10643. {
  10644. "url": "https://symfony.com/sponsor",
  10645. "type": "custom"
  10646. },
  10647. {
  10648. "url": "https://github.com/fabpot",
  10649. "type": "github"
  10650. },
  10651. {
  10652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10653. "type": "tidelift"
  10654. }
  10655. ],
  10656. "time": "2024-04-18T09:32:20+00:00"
  10657. },
  10658. {
  10659. "name": "symfony/filesystem",
  10660. "version": "v6.4.8",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/symfony/filesystem.git",
  10664. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10669. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "php": ">=8.1",
  10674. "symfony/polyfill-ctype": "~1.8",
  10675. "symfony/polyfill-mbstring": "~1.8"
  10676. },
  10677. "require-dev": {
  10678. "symfony/process": "^5.4|^6.4|^7.0"
  10679. },
  10680. "type": "library",
  10681. "autoload": {
  10682. "psr-4": {
  10683. "Symfony\\Component\\Filesystem\\": ""
  10684. },
  10685. "exclude-from-classmap": [
  10686. "/Tests/"
  10687. ]
  10688. },
  10689. "notification-url": "https://packagist.org/downloads/",
  10690. "license": [
  10691. "MIT"
  10692. ],
  10693. "authors": [
  10694. {
  10695. "name": "Fabien Potencier",
  10696. "email": "fabien@symfony.com"
  10697. },
  10698. {
  10699. "name": "Symfony Community",
  10700. "homepage": "https://symfony.com/contributors"
  10701. }
  10702. ],
  10703. "description": "Provides basic utilities for the filesystem",
  10704. "homepage": "https://symfony.com",
  10705. "support": {
  10706. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10707. },
  10708. "funding": [
  10709. {
  10710. "url": "https://symfony.com/sponsor",
  10711. "type": "custom"
  10712. },
  10713. {
  10714. "url": "https://github.com/fabpot",
  10715. "type": "github"
  10716. },
  10717. {
  10718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10719. "type": "tidelift"
  10720. }
  10721. ],
  10722. "time": "2024-05-31T14:49:08+00:00"
  10723. },
  10724. {
  10725. "name": "symfony/http-foundation",
  10726. "version": "v6.4.8",
  10727. "source": {
  10728. "type": "git",
  10729. "url": "https://github.com/symfony/http-foundation.git",
  10730. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10731. },
  10732. "dist": {
  10733. "type": "zip",
  10734. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10735. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10736. "shasum": ""
  10737. },
  10738. "require": {
  10739. "php": ">=8.1",
  10740. "symfony/deprecation-contracts": "^2.5|^3",
  10741. "symfony/polyfill-mbstring": "~1.1",
  10742. "symfony/polyfill-php83": "^1.27"
  10743. },
  10744. "conflict": {
  10745. "symfony/cache": "<6.3"
  10746. },
  10747. "require-dev": {
  10748. "doctrine/dbal": "^2.13.1|^3|^4",
  10749. "predis/predis": "^1.1|^2.0",
  10750. "symfony/cache": "^6.3|^7.0",
  10751. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10752. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10753. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10754. "symfony/mime": "^5.4|^6.0|^7.0",
  10755. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10756. },
  10757. "type": "library",
  10758. "autoload": {
  10759. "psr-4": {
  10760. "Symfony\\Component\\HttpFoundation\\": ""
  10761. },
  10762. "exclude-from-classmap": [
  10763. "/Tests/"
  10764. ]
  10765. },
  10766. "notification-url": "https://packagist.org/downloads/",
  10767. "license": [
  10768. "MIT"
  10769. ],
  10770. "authors": [
  10771. {
  10772. "name": "Fabien Potencier",
  10773. "email": "fabien@symfony.com"
  10774. },
  10775. {
  10776. "name": "Symfony Community",
  10777. "homepage": "https://symfony.com/contributors"
  10778. }
  10779. ],
  10780. "description": "Defines an object-oriented layer for the HTTP specification",
  10781. "homepage": "https://symfony.com",
  10782. "support": {
  10783. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10784. },
  10785. "funding": [
  10786. {
  10787. "url": "https://symfony.com/sponsor",
  10788. "type": "custom"
  10789. },
  10790. {
  10791. "url": "https://github.com/fabpot",
  10792. "type": "github"
  10793. },
  10794. {
  10795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10796. "type": "tidelift"
  10797. }
  10798. ],
  10799. "time": "2024-05-31T14:49:08+00:00"
  10800. },
  10801. {
  10802. "name": "symfony/options-resolver",
  10803. "version": "v6.4.8",
  10804. "source": {
  10805. "type": "git",
  10806. "url": "https://github.com/symfony/options-resolver.git",
  10807. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10808. },
  10809. "dist": {
  10810. "type": "zip",
  10811. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10812. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10813. "shasum": ""
  10814. },
  10815. "require": {
  10816. "php": ">=8.1",
  10817. "symfony/deprecation-contracts": "^2.5|^3"
  10818. },
  10819. "type": "library",
  10820. "autoload": {
  10821. "psr-4": {
  10822. "Symfony\\Component\\OptionsResolver\\": ""
  10823. },
  10824. "exclude-from-classmap": [
  10825. "/Tests/"
  10826. ]
  10827. },
  10828. "notification-url": "https://packagist.org/downloads/",
  10829. "license": [
  10830. "MIT"
  10831. ],
  10832. "authors": [
  10833. {
  10834. "name": "Fabien Potencier",
  10835. "email": "fabien@symfony.com"
  10836. },
  10837. {
  10838. "name": "Symfony Community",
  10839. "homepage": "https://symfony.com/contributors"
  10840. }
  10841. ],
  10842. "description": "Provides an improved replacement for the array_replace PHP function",
  10843. "homepage": "https://symfony.com",
  10844. "keywords": [
  10845. "config",
  10846. "configuration",
  10847. "options"
  10848. ],
  10849. "support": {
  10850. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10851. },
  10852. "funding": [
  10853. {
  10854. "url": "https://symfony.com/sponsor",
  10855. "type": "custom"
  10856. },
  10857. {
  10858. "url": "https://github.com/fabpot",
  10859. "type": "github"
  10860. },
  10861. {
  10862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10863. "type": "tidelift"
  10864. }
  10865. ],
  10866. "time": "2024-05-31T14:49:08+00:00"
  10867. },
  10868. {
  10869. "name": "symfony/polyfill-php81",
  10870. "version": "v1.29.0",
  10871. "source": {
  10872. "type": "git",
  10873. "url": "https://github.com/symfony/polyfill-php81.git",
  10874. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10875. },
  10876. "dist": {
  10877. "type": "zip",
  10878. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10879. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10880. "shasum": ""
  10881. },
  10882. "require": {
  10883. "php": ">=7.1"
  10884. },
  10885. "type": "library",
  10886. "extra": {
  10887. "thanks": {
  10888. "name": "symfony/polyfill",
  10889. "url": "https://github.com/symfony/polyfill"
  10890. }
  10891. },
  10892. "autoload": {
  10893. "files": [
  10894. "bootstrap.php"
  10895. ],
  10896. "psr-4": {
  10897. "Symfony\\Polyfill\\Php81\\": ""
  10898. },
  10899. "classmap": [
  10900. "Resources/stubs"
  10901. ]
  10902. },
  10903. "notification-url": "https://packagist.org/downloads/",
  10904. "license": [
  10905. "MIT"
  10906. ],
  10907. "authors": [
  10908. {
  10909. "name": "Nicolas Grekas",
  10910. "email": "p@tchwork.com"
  10911. },
  10912. {
  10913. "name": "Symfony Community",
  10914. "homepage": "https://symfony.com/contributors"
  10915. }
  10916. ],
  10917. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10918. "homepage": "https://symfony.com",
  10919. "keywords": [
  10920. "compatibility",
  10921. "polyfill",
  10922. "portable",
  10923. "shim"
  10924. ],
  10925. "support": {
  10926. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10927. },
  10928. "funding": [
  10929. {
  10930. "url": "https://symfony.com/sponsor",
  10931. "type": "custom"
  10932. },
  10933. {
  10934. "url": "https://github.com/fabpot",
  10935. "type": "github"
  10936. },
  10937. {
  10938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10939. "type": "tidelift"
  10940. }
  10941. ],
  10942. "time": "2024-01-29T20:11:03+00:00"
  10943. },
  10944. {
  10945. "name": "symfony/polyfill-php83",
  10946. "version": "v1.29.0",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/symfony/polyfill-php83.git",
  10950. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10955. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": ">=7.1",
  10960. "symfony/polyfill-php80": "^1.14"
  10961. },
  10962. "type": "library",
  10963. "extra": {
  10964. "thanks": {
  10965. "name": "symfony/polyfill",
  10966. "url": "https://github.com/symfony/polyfill"
  10967. }
  10968. },
  10969. "autoload": {
  10970. "files": [
  10971. "bootstrap.php"
  10972. ],
  10973. "psr-4": {
  10974. "Symfony\\Polyfill\\Php83\\": ""
  10975. },
  10976. "classmap": [
  10977. "Resources/stubs"
  10978. ]
  10979. },
  10980. "notification-url": "https://packagist.org/downloads/",
  10981. "license": [
  10982. "MIT"
  10983. ],
  10984. "authors": [
  10985. {
  10986. "name": "Nicolas Grekas",
  10987. "email": "p@tchwork.com"
  10988. },
  10989. {
  10990. "name": "Symfony Community",
  10991. "homepage": "https://symfony.com/contributors"
  10992. }
  10993. ],
  10994. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10995. "homepage": "https://symfony.com",
  10996. "keywords": [
  10997. "compatibility",
  10998. "polyfill",
  10999. "portable",
  11000. "shim"
  11001. ],
  11002. "support": {
  11003. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  11004. },
  11005. "funding": [
  11006. {
  11007. "url": "https://symfony.com/sponsor",
  11008. "type": "custom"
  11009. },
  11010. {
  11011. "url": "https://github.com/fabpot",
  11012. "type": "github"
  11013. },
  11014. {
  11015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11016. "type": "tidelift"
  11017. }
  11018. ],
  11019. "time": "2024-01-29T20:11:03+00:00"
  11020. },
  11021. {
  11022. "name": "symfony/process",
  11023. "version": "v6.4.8",
  11024. "source": {
  11025. "type": "git",
  11026. "url": "https://github.com/symfony/process.git",
  11027. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  11028. },
  11029. "dist": {
  11030. "type": "zip",
  11031. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11032. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11033. "shasum": ""
  11034. },
  11035. "require": {
  11036. "php": ">=8.1"
  11037. },
  11038. "type": "library",
  11039. "autoload": {
  11040. "psr-4": {
  11041. "Symfony\\Component\\Process\\": ""
  11042. },
  11043. "exclude-from-classmap": [
  11044. "/Tests/"
  11045. ]
  11046. },
  11047. "notification-url": "https://packagist.org/downloads/",
  11048. "license": [
  11049. "MIT"
  11050. ],
  11051. "authors": [
  11052. {
  11053. "name": "Fabien Potencier",
  11054. "email": "fabien@symfony.com"
  11055. },
  11056. {
  11057. "name": "Symfony Community",
  11058. "homepage": "https://symfony.com/contributors"
  11059. }
  11060. ],
  11061. "description": "Executes commands in sub-processes",
  11062. "homepage": "https://symfony.com",
  11063. "support": {
  11064. "source": "https://github.com/symfony/process/tree/v6.4.8"
  11065. },
  11066. "funding": [
  11067. {
  11068. "url": "https://symfony.com/sponsor",
  11069. "type": "custom"
  11070. },
  11071. {
  11072. "url": "https://github.com/fabpot",
  11073. "type": "github"
  11074. },
  11075. {
  11076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11077. "type": "tidelift"
  11078. }
  11079. ],
  11080. "time": "2024-05-31T14:49:08+00:00"
  11081. },
  11082. {
  11083. "name": "symfony/stopwatch",
  11084. "version": "v6.4.8",
  11085. "source": {
  11086. "type": "git",
  11087. "url": "https://github.com/symfony/stopwatch.git",
  11088. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11089. },
  11090. "dist": {
  11091. "type": "zip",
  11092. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11093. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11094. "shasum": ""
  11095. },
  11096. "require": {
  11097. "php": ">=8.1",
  11098. "symfony/service-contracts": "^2.5|^3"
  11099. },
  11100. "type": "library",
  11101. "autoload": {
  11102. "psr-4": {
  11103. "Symfony\\Component\\Stopwatch\\": ""
  11104. },
  11105. "exclude-from-classmap": [
  11106. "/Tests/"
  11107. ]
  11108. },
  11109. "notification-url": "https://packagist.org/downloads/",
  11110. "license": [
  11111. "MIT"
  11112. ],
  11113. "authors": [
  11114. {
  11115. "name": "Fabien Potencier",
  11116. "email": "fabien@symfony.com"
  11117. },
  11118. {
  11119. "name": "Symfony Community",
  11120. "homepage": "https://symfony.com/contributors"
  11121. }
  11122. ],
  11123. "description": "Provides a way to profile code",
  11124. "homepage": "https://symfony.com",
  11125. "support": {
  11126. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11127. },
  11128. "funding": [
  11129. {
  11130. "url": "https://symfony.com/sponsor",
  11131. "type": "custom"
  11132. },
  11133. {
  11134. "url": "https://github.com/fabpot",
  11135. "type": "github"
  11136. },
  11137. {
  11138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11139. "type": "tidelift"
  11140. }
  11141. ],
  11142. "time": "2024-05-31T14:49:08+00:00"
  11143. },
  11144. {
  11145. "name": "theseer/tokenizer",
  11146. "version": "1.2.3",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/theseer/tokenizer.git",
  11150. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11155. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "ext-dom": "*",
  11160. "ext-tokenizer": "*",
  11161. "ext-xmlwriter": "*",
  11162. "php": "^7.2 || ^8.0"
  11163. },
  11164. "type": "library",
  11165. "autoload": {
  11166. "classmap": [
  11167. "src/"
  11168. ]
  11169. },
  11170. "notification-url": "https://packagist.org/downloads/",
  11171. "license": [
  11172. "BSD-3-Clause"
  11173. ],
  11174. "authors": [
  11175. {
  11176. "name": "Arne Blankerts",
  11177. "email": "arne@blankerts.de",
  11178. "role": "Developer"
  11179. }
  11180. ],
  11181. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11182. "support": {
  11183. "issues": "https://github.com/theseer/tokenizer/issues",
  11184. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11185. },
  11186. "funding": [
  11187. {
  11188. "url": "https://github.com/theseer",
  11189. "type": "github"
  11190. }
  11191. ],
  11192. "time": "2024-03-03T12:36:25+00:00"
  11193. }
  11194. ],
  11195. "aliases": [],
  11196. "minimum-stability": "dev",
  11197. "stability-flags": {},
  11198. "prefer-stable": true,
  11199. "prefer-lowest": false,
  11200. "platform": {
  11201. "php": ">=8.1"
  11202. },
  11203. "platform-dev": {},
  11204. "plugin-api-version": "2.6.0"
  11205. }