composer.lock 365 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341
  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": "e1c0d5614a20cf9b42168ead47cafc3d",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  89. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.8.0",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6",
  104. "vimeo/psalm": "^4.10"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  151. },
  152. "time": "2023-02-02T22:02:53+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.2",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  459. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.2"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2023-11-12T22:16:48+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.8.1",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  521. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  527. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2023-12-03T20:35:24+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  647. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2023-12-03T20:19:20+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.6.2",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  730. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "^0.9",
  746. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2023-12-03T20:05:35+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.23",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  846. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0|^2.0",
  857. "psr/simple-cache": "^1.0|^2.0|^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-05-23T03:43:58+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.15",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  917. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-03-23T11:28:51+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.15",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  982. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-03-23T11:28:51+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.23.2",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1046. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-05-24T08:33:42+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.24",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1111. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0|^6.0|^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-05-27T12:37:07+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.15",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1182. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-03-23T11:28:51+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.15",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1240. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0|^2.0",
  1249. "symfony/finder": "^5.0|^6.0|^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-03-23T11:28:51+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.15",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1317. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-03-23T11:28:51+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.15",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1381. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-03-23T11:28:51+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.16",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1458. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-03-31T11:35:28+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.22",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1524. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3|^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "require-dev": {
  1532. "hyperf/guzzle": "~3.1.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "3.1-dev"
  1538. },
  1539. "hyperf": {
  1540. "config": "Hyperf\\Consul\\ConfigProvider"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Hyperf\\Consul\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "description": "A Consul Client for Hyperf.",
  1553. "homepage": "https://hyperf.io",
  1554. "keywords": [
  1555. "consul",
  1556. "consul-client",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-05-15T06:42:24+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/context",
  1581. "version": "v3.1.15",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/context.git",
  1585. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1590. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/engine": "^2.0",
  1595. "php": ">=8.1"
  1596. },
  1597. "suggest": {
  1598. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "3.1-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Hyperf\\Context\\": "src/"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "MIT"
  1614. ],
  1615. "description": "A coroutine/application context library.",
  1616. "homepage": "https://hyperf.io",
  1617. "keywords": [
  1618. "Context",
  1619. "hyperf",
  1620. "php",
  1621. "swoole"
  1622. ],
  1623. "support": {
  1624. "docs": "https://hyperf.wiki",
  1625. "issues": "https://github.com/hyperf/hyperf/issues",
  1626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1627. "source": "https://github.com/hyperf/hyperf"
  1628. },
  1629. "funding": [
  1630. {
  1631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1632. "type": "custom"
  1633. },
  1634. {
  1635. "url": "https://opencollective.com/hyperf",
  1636. "type": "open_collective"
  1637. }
  1638. ],
  1639. "time": "2024-03-23T11:28:51+00:00"
  1640. },
  1641. {
  1642. "name": "hyperf/contract",
  1643. "version": "v3.1.15",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/hyperf/contract.git",
  1647. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1652. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "php": ">=8.1"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "3.1-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "Hyperf\\Contract\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "MIT"
  1672. ],
  1673. "description": "The contracts of Hyperf.",
  1674. "homepage": "https://hyperf.io",
  1675. "keywords": [
  1676. "hyperf",
  1677. "php",
  1678. "swoole"
  1679. ],
  1680. "support": {
  1681. "docs": "https://hyperf.wiki",
  1682. "issues": "https://github.com/hyperf/hyperf/issues",
  1683. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1684. "source": "https://github.com/hyperf/hyperf"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1689. "type": "custom"
  1690. },
  1691. {
  1692. "url": "https://opencollective.com/hyperf",
  1693. "type": "open_collective"
  1694. }
  1695. ],
  1696. "time": "2024-03-23T11:28:51+00:00"
  1697. },
  1698. {
  1699. "name": "hyperf/coordinator",
  1700. "version": "v3.1.21",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/hyperf/coordinator.git",
  1704. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1709. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "hyperf/engine": "^2.0",
  1714. "php": ">=8.1"
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "branch-alias": {
  1719. "dev-master": "3.1-dev"
  1720. }
  1721. },
  1722. "autoload": {
  1723. "files": [
  1724. "src/Functions.php"
  1725. ],
  1726. "psr-4": {
  1727. "Hyperf\\Coordinator\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "Hyperf Coordinator",
  1735. "homepage": "https://hyperf.io",
  1736. "keywords": [
  1737. "Coordinator",
  1738. "hyperf",
  1739. "php",
  1740. "swoole"
  1741. ],
  1742. "support": {
  1743. "docs": "https://hyperf.wiki",
  1744. "issues": "https://github.com/hyperf/hyperf/issues",
  1745. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1746. "source": "https://github.com/hyperf/hyperf"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1751. "type": "custom"
  1752. },
  1753. {
  1754. "url": "https://opencollective.com/hyperf",
  1755. "type": "open_collective"
  1756. }
  1757. ],
  1758. "time": "2024-05-09T02:35:08+00:00"
  1759. },
  1760. {
  1761. "name": "hyperf/coroutine",
  1762. "version": "v3.1.15",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/hyperf/coroutine.git",
  1766. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1771. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1772. "shasum": ""
  1773. },
  1774. "require": {
  1775. "hyperf/context": "~3.1.0",
  1776. "hyperf/contract": "~3.1.0",
  1777. "hyperf/engine": "^2.0",
  1778. "php": ">=8.1"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "3.1-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "files": [
  1788. "src/Functions.php"
  1789. ],
  1790. "psr-4": {
  1791. "Hyperf\\Coroutine\\": "src/"
  1792. }
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "description": "Hyperf Coroutine",
  1799. "homepage": "https://hyperf.io",
  1800. "keywords": [
  1801. "coroutine",
  1802. "hyperf",
  1803. "php",
  1804. "swoole"
  1805. ],
  1806. "support": {
  1807. "docs": "https://hyperf.wiki",
  1808. "issues": "https://github.com/hyperf/hyperf/issues",
  1809. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1810. "source": "https://github.com/hyperf/hyperf"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1815. "type": "custom"
  1816. },
  1817. {
  1818. "url": "https://opencollective.com/hyperf",
  1819. "type": "open_collective"
  1820. }
  1821. ],
  1822. "time": "2024-03-23T11:28:51+00:00"
  1823. },
  1824. {
  1825. "name": "hyperf/database",
  1826. "version": "v3.1.24",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/hyperf/database.git",
  1830. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1835. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "hyperf/code-parser": "~3.1.0",
  1840. "hyperf/collection": "~3.1.0",
  1841. "hyperf/macroable": "~3.1.0",
  1842. "hyperf/support": "~3.1.0",
  1843. "hyperf/tappable": "~3.1.0",
  1844. "hyperf/utils": "~3.1.0",
  1845. "nesbot/carbon": "^2.0",
  1846. "php": ">=8.1",
  1847. "psr/container": "^1.0|^2.0",
  1848. "psr/event-dispatcher": "^1.0"
  1849. },
  1850. "suggest": {
  1851. "doctrine/dbal": "Required to rename columns (^3.0).",
  1852. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1853. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "3.1-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Hyperf\\Database\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "A flexible database library.",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "database",
  1874. "hyperf",
  1875. "php"
  1876. ],
  1877. "support": {
  1878. "docs": "https://hyperf.wiki",
  1879. "issues": "https://github.com/hyperf/hyperf/issues",
  1880. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1881. "source": "https://github.com/hyperf/hyperf"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1886. "type": "custom"
  1887. },
  1888. {
  1889. "url": "https://opencollective.com/hyperf",
  1890. "type": "open_collective"
  1891. }
  1892. ],
  1893. "time": "2024-05-24T06:14:27+00:00"
  1894. },
  1895. {
  1896. "name": "hyperf/db-connection",
  1897. "version": "v3.1.15",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/hyperf/db-connection.git",
  1901. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  1906. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "hyperf/database": "~3.1.0",
  1911. "hyperf/di": "~3.1.0",
  1912. "hyperf/framework": "~3.1.0",
  1913. "hyperf/model-listener": "~3.1.0",
  1914. "hyperf/pool": "~3.1.0",
  1915. "hyperf/support": "~3.1.0",
  1916. "hyperf/utils": "~3.1.0",
  1917. "php": ">=8.1",
  1918. "psr/container": "^1.0|^2.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "3.1-dev"
  1924. },
  1925. "hyperf": {
  1926. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Hyperf\\DbConnection\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "description": "A hyperf db connection handler for hyperf/database.",
  1939. "homepage": "https://hyperf.io",
  1940. "keywords": [
  1941. "Connection",
  1942. "database",
  1943. "hyperf",
  1944. "php"
  1945. ],
  1946. "support": {
  1947. "docs": "https://hyperf.wiki",
  1948. "issues": "https://github.com/hyperf/hyperf/issues",
  1949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1950. "source": "https://github.com/hyperf/hyperf"
  1951. },
  1952. "funding": [
  1953. {
  1954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1955. "type": "custom"
  1956. },
  1957. {
  1958. "url": "https://opencollective.com/hyperf",
  1959. "type": "open_collective"
  1960. }
  1961. ],
  1962. "time": "2024-03-23T11:28:51+00:00"
  1963. },
  1964. {
  1965. "name": "hyperf/di",
  1966. "version": "v3.1.28",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/hyperf/di.git",
  1970. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  1975. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "doctrine/instantiator": "^1.0",
  1980. "hyperf/code-parser": "~3.1.0",
  1981. "hyperf/pipeline": "~3.1.0",
  1982. "hyperf/stdlib": "~3.1.0",
  1983. "hyperf/support": "~3.1.0",
  1984. "nikic/php-parser": "^4.1",
  1985. "php": ">=8.1",
  1986. "php-di/phpdoc-reader": "^2.2",
  1987. "psr/container": "^1.0 || ^2.0",
  1988. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  1989. "vlucas/phpdotenv": "^5.0"
  1990. },
  1991. "suggest": {
  1992. "ext-pcntl": "Required to scan annotations.",
  1993. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-master": "3.1-dev"
  1999. },
  2000. "hyperf": {
  2001. "config": "Hyperf\\Di\\ConfigProvider"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Hyperf\\Di\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "description": "A DI for Hyperf.",
  2014. "homepage": "https://hyperf.io",
  2015. "keywords": [
  2016. "annotation",
  2017. "di",
  2018. "hyperf",
  2019. "php",
  2020. "swoole"
  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-06-26T03:31:21+00:00"
  2039. },
  2040. {
  2041. "name": "hyperf/dispatcher",
  2042. "version": "v3.1.15",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/hyperf/dispatcher.git",
  2046. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2051. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "hyperf/contract": "~3.1.0",
  2056. "php": ">=8.1",
  2057. "psr/container": "^1.0|^2.0",
  2058. "psr/http-message": "^1.0|^2.0",
  2059. "psr/http-server-middleware": "^1.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.1-dev"
  2065. },
  2066. "hyperf": {
  2067. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Hyperf\\Dispatcher\\": "src/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "description": "A HTTP Server for Hyperf.",
  2080. "homepage": "https://hyperf.io",
  2081. "keywords": [
  2082. "dispatcher",
  2083. "filter",
  2084. "hyperf",
  2085. "middleware",
  2086. "php",
  2087. "swoole"
  2088. ],
  2089. "support": {
  2090. "docs": "https://hyperf.wiki",
  2091. "issues": "https://github.com/hyperf/hyperf/issues",
  2092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2093. "source": "https://github.com/hyperf/hyperf"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2098. "type": "custom"
  2099. },
  2100. {
  2101. "url": "https://opencollective.com/hyperf",
  2102. "type": "open_collective"
  2103. }
  2104. ],
  2105. "time": "2024-03-23T11:28:51+00:00"
  2106. },
  2107. {
  2108. "name": "hyperf/engine",
  2109. "version": "v2.11.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/hyperf/engine.git",
  2113. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2118. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "hyperf/engine-contract": "~1.10.0",
  2123. "php": ">=8.0"
  2124. },
  2125. "conflict": {
  2126. "ext-swoole": "<5.0"
  2127. },
  2128. "require-dev": {
  2129. "friendsofphp/php-cs-fixer": "^3.0",
  2130. "hyperf/guzzle": "^3.0",
  2131. "hyperf/http-message": "^3.0",
  2132. "mockery/mockery": "^1.5",
  2133. "phpstan/phpstan": "^1.0",
  2134. "phpunit/phpunit": "^9.4",
  2135. "swoole/ide-helper": "5.*"
  2136. },
  2137. "suggest": {
  2138. "ext-sockets": "*",
  2139. "ext-swoole": ">=5.0",
  2140. "hyperf/http-message": "Required to use ResponseEmitter.",
  2141. "psr/http-message": "Required to use WebSocket Frame."
  2142. },
  2143. "type": "library",
  2144. "extra": {
  2145. "branch-alias": {
  2146. "dev-master": "2.11-dev"
  2147. },
  2148. "hyperf": {
  2149. "config": "Hyperf\\Engine\\ConfigProvider"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "files": [
  2154. "src/Functions.php"
  2155. ],
  2156. "psr-4": {
  2157. "Hyperf\\Engine\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "description": "Coroutine engine provided by swoole.",
  2165. "keywords": [
  2166. "engine",
  2167. "hyperf",
  2168. "php",
  2169. "swoole"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/hyperf/engine/issues",
  2173. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2178. "type": "custom"
  2179. },
  2180. {
  2181. "url": "https://opencollective.com/hyperf",
  2182. "type": "open_collective"
  2183. }
  2184. ],
  2185. "time": "2024-04-17T13:36:28+00:00"
  2186. },
  2187. {
  2188. "name": "hyperf/engine-contract",
  2189. "version": "v1.10.1",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/hyperf/engine-contract.git",
  2193. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2198. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2199. "shasum": ""
  2200. },
  2201. "require": {
  2202. "php": ">=8.0"
  2203. },
  2204. "require-dev": {
  2205. "friendsofphp/php-cs-fixer": "^3.0",
  2206. "mockery/mockery": "^1.0",
  2207. "phpstan/phpstan": "^1.0",
  2208. "phpunit/phpunit": ">=7.0",
  2209. "psr/http-message": "^1.0",
  2210. "swoole/ide-helper": "^4.5"
  2211. },
  2212. "suggest": {
  2213. "psr/http-message": "Required to use WebSocket Frame."
  2214. },
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-master": "1.9-dev"
  2219. }
  2220. },
  2221. "autoload": {
  2222. "psr-4": {
  2223. "Hyperf\\Engine\\Contract\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "description": "Contract for Coroutine Engine",
  2231. "keywords": [
  2232. "contract",
  2233. "coroutine",
  2234. "engine",
  2235. "hyperf",
  2236. "php"
  2237. ],
  2238. "support": {
  2239. "issues": "https://github.com/hyperf/engine-contract/issues",
  2240. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2241. },
  2242. "funding": [
  2243. {
  2244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2245. "type": "custom"
  2246. },
  2247. {
  2248. "url": "https://opencollective.com/hyperf",
  2249. "type": "open_collective"
  2250. }
  2251. ],
  2252. "time": "2024-04-17T13:34:51+00:00"
  2253. },
  2254. {
  2255. "name": "hyperf/event",
  2256. "version": "v3.1.15",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://github.com/hyperf/event.git",
  2260. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2265. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2266. "shasum": ""
  2267. },
  2268. "require": {
  2269. "hyperf/contract": "~3.1.0",
  2270. "hyperf/stdlib": "~3.1.0",
  2271. "php": ">=8.1",
  2272. "psr/event-dispatcher": "^1.0"
  2273. },
  2274. "suggest": {
  2275. "hyperf/di": "Required to use annotatioins."
  2276. },
  2277. "type": "library",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-master": "3.1-dev"
  2281. },
  2282. "hyperf": {
  2283. "config": "Hyperf\\Event\\ConfigProvider"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-4": {
  2288. "Hyperf\\Event\\": "src/"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "description": "an event manager that implements PSR-14.",
  2296. "homepage": "https://hyperf.io",
  2297. "keywords": [
  2298. "event",
  2299. "hyperf",
  2300. "php",
  2301. "swoole"
  2302. ],
  2303. "support": {
  2304. "docs": "https://hyperf.wiki",
  2305. "issues": "https://github.com/hyperf/hyperf/issues",
  2306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2307. "source": "https://github.com/hyperf/hyperf"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://opencollective.com/hyperf",
  2316. "type": "open_collective"
  2317. }
  2318. ],
  2319. "time": "2024-03-23T11:28:51+00:00"
  2320. },
  2321. {
  2322. "name": "hyperf/exception-handler",
  2323. "version": "v3.1.22",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/hyperf/exception-handler.git",
  2327. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2332. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "hyperf/context": "~3.1.0",
  2337. "hyperf/contract": "~3.1.0",
  2338. "hyperf/dispatcher": "~3.1.0",
  2339. "hyperf/http-message": "~3.1.0",
  2340. "hyperf/stdlib": "~3.1.0",
  2341. "hyperf/support": "~3.1.0",
  2342. "php": ">=8.1",
  2343. "psr/container": "^1.0|^2.0",
  2344. "psr/http-message": "^1.0|^2.0",
  2345. "swow/psr7-plus": "^1.0"
  2346. },
  2347. "suggest": {
  2348. "hyperf/di": "Required to use #[ExceptionHandler]",
  2349. "hyperf/event": "Required to use listeners",
  2350. "hyperf/framework": "Required to use listeners",
  2351. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2352. },
  2353. "type": "library",
  2354. "extra": {
  2355. "branch-alias": {
  2356. "dev-master": "3.1-dev"
  2357. },
  2358. "hyperf": {
  2359. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "Hyperf\\ExceptionHandler\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "description": "Exception handler for hyperf",
  2372. "homepage": "https://hyperf.io",
  2373. "keywords": [
  2374. "exception-handler",
  2375. "php",
  2376. "swoole"
  2377. ],
  2378. "support": {
  2379. "docs": "https://hyperf.wiki",
  2380. "issues": "https://github.com/hyperf/hyperf/issues",
  2381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2382. "source": "https://github.com/hyperf/hyperf"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://opencollective.com/hyperf",
  2391. "type": "open_collective"
  2392. }
  2393. ],
  2394. "time": "2024-05-15T07:12:41+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/framework",
  2398. "version": "v3.1.23",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/framework.git",
  2402. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2407. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "fig/http-message-util": "^1.1.2",
  2412. "hyperf/contract": "~3.1.0",
  2413. "hyperf/coordinator": "~3.1.0",
  2414. "hyperf/coroutine": "~3.1.0",
  2415. "php": ">=8.1",
  2416. "psr/container": "^1.0|^2.0",
  2417. "psr/event-dispatcher": "^1.0",
  2418. "psr/log": "^1.0|^2.0|^3.0"
  2419. },
  2420. "suggest": {
  2421. "ext-swoole": "Required to use swoole engine.",
  2422. "hyperf/command": "Required to use Command annotation.",
  2423. "hyperf/di": "Required to use Command annotation.",
  2424. "hyperf/dispatcher": "Required to use BootApplication event.",
  2425. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2426. },
  2427. "type": "library",
  2428. "extra": {
  2429. "branch-alias": {
  2430. "dev-master": "3.1-dev"
  2431. },
  2432. "hyperf": {
  2433. "config": "Hyperf\\Framework\\ConfigProvider"
  2434. }
  2435. },
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Hyperf\\Framework\\": "src/"
  2439. }
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "MIT"
  2444. ],
  2445. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2446. "homepage": "https://hyperf.io",
  2447. "keywords": [
  2448. "Microservice",
  2449. "framework",
  2450. "hyperf",
  2451. "middleware",
  2452. "php",
  2453. "swoole"
  2454. ],
  2455. "support": {
  2456. "docs": "https://hyperf.wiki",
  2457. "issues": "https://github.com/hyperf/hyperf/issues",
  2458. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2459. "source": "https://github.com/hyperf/hyperf"
  2460. },
  2461. "funding": [
  2462. {
  2463. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2464. "type": "custom"
  2465. },
  2466. {
  2467. "url": "https://opencollective.com/hyperf",
  2468. "type": "open_collective"
  2469. }
  2470. ],
  2471. "time": "2024-05-21T05:43:48+00:00"
  2472. },
  2473. {
  2474. "name": "hyperf/guzzle",
  2475. "version": "v3.1.15",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/hyperf/guzzle.git",
  2479. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2484. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "guzzlehttp/guzzle": "^6.3|^7.0",
  2489. "php": ">=8.1",
  2490. "psr/container": "^1.0|^2.0",
  2491. "psr/http-message": "^1.0|^2.0"
  2492. },
  2493. "suggest": {
  2494. "ext-curl": "Required for CURL handler support",
  2495. "hyperf/pool": "Required to use pool handler."
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "3.1-dev"
  2501. },
  2502. "hyperf": {
  2503. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "Hyperf\\Guzzle\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "description": "Swoole coroutine handler for guzzle",
  2516. "keywords": [
  2517. "Guzzle",
  2518. "handler",
  2519. "php",
  2520. "swoole"
  2521. ],
  2522. "support": {
  2523. "issues": "https://github.com/hyperf/guzzle/issues",
  2524. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2525. },
  2526. "funding": [
  2527. {
  2528. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2529. "type": "custom"
  2530. },
  2531. {
  2532. "url": "https://opencollective.com/hyperf",
  2533. "type": "open_collective"
  2534. }
  2535. ],
  2536. "time": "2024-03-23T11:28:51+00:00"
  2537. },
  2538. {
  2539. "name": "hyperf/http-message",
  2540. "version": "v3.1.19",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/hyperf/http-message.git",
  2544. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2549. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2550. "shasum": ""
  2551. },
  2552. "require": {
  2553. "hyperf/codec": "~3.1.0",
  2554. "hyperf/engine": "^2.11",
  2555. "hyperf/support": "~3.1.0",
  2556. "laminas/laminas-mime": "^2.7",
  2557. "php": ">=8.1",
  2558. "psr/http-message": "^1.0|^2.0",
  2559. "swow/psr7-plus": "^1.0"
  2560. },
  2561. "suggest": {
  2562. "psr/container": "Required to replace RequestParserInterface."
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "3.1-dev"
  2568. },
  2569. "hyperf": {
  2570. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2571. }
  2572. },
  2573. "autoload": {
  2574. "psr-4": {
  2575. "Hyperf\\HttpMessage\\": "src/"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "description": "microservice framework base on swoole",
  2583. "keywords": [
  2584. "http-message",
  2585. "hyperf",
  2586. "php",
  2587. "swoole"
  2588. ],
  2589. "support": {
  2590. "issues": "https://github.com/hyperf/http-message/issues",
  2591. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2592. },
  2593. "funding": [
  2594. {
  2595. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2596. "type": "custom"
  2597. },
  2598. {
  2599. "url": "https://opencollective.com/hyperf",
  2600. "type": "open_collective"
  2601. }
  2602. ],
  2603. "time": "2024-04-17T13:55:51+00:00"
  2604. },
  2605. {
  2606. "name": "hyperf/http-server",
  2607. "version": "v3.1.17",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/hyperf/http-server.git",
  2611. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2616. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "hyperf/codec": "~3.1.0",
  2621. "hyperf/collection": "~3.1.0",
  2622. "hyperf/context": "~3.1.0",
  2623. "hyperf/contract": "~3.1.0",
  2624. "hyperf/coroutine": "~3.1.0",
  2625. "hyperf/dispatcher": "~3.1.0",
  2626. "hyperf/event": "~3.1.0",
  2627. "hyperf/exception-handler": "~3.1.0",
  2628. "hyperf/http-message": "~3.1.0",
  2629. "hyperf/macroable": "~3.1.0",
  2630. "hyperf/serializer": "~3.1.0",
  2631. "hyperf/server": "~3.1.0",
  2632. "hyperf/stdlib": "~3.1.0",
  2633. "hyperf/support": "~3.1.0",
  2634. "nikic/fast-route": "^1.3",
  2635. "php": ">=8.1",
  2636. "psr/container": "^1.0|^2.0",
  2637. "swow/psr7-plus": "^1.0"
  2638. },
  2639. "suggest": {
  2640. "hyperf/di": "Required to use annotations."
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-master": "3.1-dev"
  2646. },
  2647. "hyperf": {
  2648. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "psr-4": {
  2653. "Hyperf\\HttpServer\\": "src/"
  2654. }
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "MIT"
  2659. ],
  2660. "description": "A HTTP Server for Hyperf.",
  2661. "homepage": "https://hyperf.io",
  2662. "keywords": [
  2663. "http",
  2664. "http-server",
  2665. "hyperf",
  2666. "php",
  2667. "swoole"
  2668. ],
  2669. "support": {
  2670. "docs": "https://hyperf.wiki",
  2671. "issues": "https://github.com/hyperf/hyperf/issues",
  2672. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2673. "source": "https://github.com/hyperf/hyperf"
  2674. },
  2675. "funding": [
  2676. {
  2677. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2678. "type": "custom"
  2679. },
  2680. {
  2681. "url": "https://opencollective.com/hyperf",
  2682. "type": "open_collective"
  2683. }
  2684. ],
  2685. "time": "2024-04-08T07:53:54+00:00"
  2686. },
  2687. {
  2688. "name": "hyperf/json-rpc",
  2689. "version": "v3.1.23",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/hyperf/json-rpc.git",
  2693. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2698. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "hyperf/codec": "~3.1.0",
  2703. "hyperf/context": "~3.1.0",
  2704. "hyperf/contract": "~3.1.0",
  2705. "hyperf/engine": "^2.0",
  2706. "hyperf/http-message": "~3.1.0",
  2707. "hyperf/load-balancer": "~3.1.0",
  2708. "hyperf/rpc": "~3.1.0",
  2709. "hyperf/serializer": "~3.1.0",
  2710. "hyperf/support": "~3.1.0",
  2711. "hyperf/utils": "~3.1.0",
  2712. "php": ">=8.1",
  2713. "psr/container": "^1.0|^2.0",
  2714. "swow/psr7-plus": "^1.0"
  2715. },
  2716. "suggest": {
  2717. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2718. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2719. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2720. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2721. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2722. },
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-master": "3.1-dev"
  2727. },
  2728. "hyperf": {
  2729. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2730. }
  2731. },
  2732. "autoload": {
  2733. "psr-4": {
  2734. "Hyperf\\JsonRpc\\": "src/"
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2742. "homepage": "https://hyperf.io",
  2743. "keywords": [
  2744. "hyperf",
  2745. "json-rpc",
  2746. "php",
  2747. "swoole"
  2748. ],
  2749. "support": {
  2750. "docs": "https://hyperf.wiki",
  2751. "issues": "https://github.com/hyperf/hyperf/issues",
  2752. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2753. "source": "https://github.com/hyperf/hyperf"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://opencollective.com/hyperf",
  2762. "type": "open_collective"
  2763. }
  2764. ],
  2765. "time": "2024-05-23T03:43:58+00:00"
  2766. },
  2767. {
  2768. "name": "hyperf/load-balancer",
  2769. "version": "v3.1.15",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/hyperf/load-balancer.git",
  2773. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2778. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "hyperf/coordinator": "~3.1.0",
  2783. "hyperf/coroutine": "~3.1.0",
  2784. "markrogoyski/math-php": "^2.0",
  2785. "php": ">=8.1",
  2786. "psr/log": "^1.0|^2.0|^3.0"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "3.1-dev"
  2792. },
  2793. "hyperf": {
  2794. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2795. }
  2796. },
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Hyperf\\LoadBalancer\\": "src/"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "description": "A load balancer library for Hyperf.",
  2807. "homepage": "https://hyperf.io",
  2808. "keywords": [
  2809. "hyperf",
  2810. "load-balancer",
  2811. "php",
  2812. "swoole"
  2813. ],
  2814. "support": {
  2815. "docs": "https://hyperf.wiki",
  2816. "issues": "https://github.com/hyperf/hyperf/issues",
  2817. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2818. "source": "https://github.com/hyperf/hyperf"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2823. "type": "custom"
  2824. },
  2825. {
  2826. "url": "https://opencollective.com/hyperf",
  2827. "type": "open_collective"
  2828. }
  2829. ],
  2830. "time": "2024-03-23T11:28:51+00:00"
  2831. },
  2832. {
  2833. "name": "hyperf/logger",
  2834. "version": "v3.1.15",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/hyperf/logger.git",
  2838. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2843. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "hyperf/contract": "~3.1.0",
  2848. "hyperf/support": "~3.1.0",
  2849. "hyperf/utils": "~3.1.0",
  2850. "monolog/monolog": "^2.7|^3.1",
  2851. "php": ">=8.1",
  2852. "psr/container": "^1.0|^2.0",
  2853. "psr/log": "^1.0|^2.0|^3.0"
  2854. },
  2855. "type": "library",
  2856. "extra": {
  2857. "branch-alias": {
  2858. "dev-master": "3.1-dev"
  2859. },
  2860. "hyperf": {
  2861. "config": "Hyperf\\Logger\\ConfigProvider"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "psr-4": {
  2866. "Hyperf\\Logger\\": "src/"
  2867. }
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "description": "A logger component for hyperf.",
  2874. "homepage": "https://hyperf.io",
  2875. "keywords": [
  2876. "hyperf",
  2877. "logger",
  2878. "php"
  2879. ],
  2880. "support": {
  2881. "docs": "https://hyperf.wiki",
  2882. "issues": "https://github.com/hyperf/hyperf/issues",
  2883. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2884. "source": "https://github.com/hyperf/hyperf"
  2885. },
  2886. "funding": [
  2887. {
  2888. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2889. "type": "custom"
  2890. },
  2891. {
  2892. "url": "https://opencollective.com/hyperf",
  2893. "type": "open_collective"
  2894. }
  2895. ],
  2896. "time": "2024-03-23T11:28:51+00:00"
  2897. },
  2898. {
  2899. "name": "hyperf/macroable",
  2900. "version": "v3.1.23",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/hyperf/macroable.git",
  2904. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2909. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2910. "shasum": ""
  2911. },
  2912. "require": {
  2913. "php": ">=8.1"
  2914. },
  2915. "type": "library",
  2916. "extra": {
  2917. "branch-alias": {
  2918. "dev-master": "3.1-dev"
  2919. }
  2920. },
  2921. "autoload": {
  2922. "psr-4": {
  2923. "Hyperf\\Macroable\\": "src/"
  2924. }
  2925. },
  2926. "notification-url": "https://packagist.org/downloads/",
  2927. "license": [
  2928. "MIT"
  2929. ],
  2930. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2931. "homepage": "https://hyperf.io",
  2932. "keywords": [
  2933. "hyperf",
  2934. "macroable",
  2935. "php",
  2936. "swoole"
  2937. ],
  2938. "support": {
  2939. "docs": "https://hyperf.wiki",
  2940. "issues": "https://github.com/hyperf/hyperf/issues",
  2941. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2942. "source": "https://github.com/hyperf/hyperf"
  2943. },
  2944. "funding": [
  2945. {
  2946. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2947. "type": "custom"
  2948. },
  2949. {
  2950. "url": "https://opencollective.com/hyperf",
  2951. "type": "open_collective"
  2952. }
  2953. ],
  2954. "time": "2024-05-20T09:55:40+00:00"
  2955. },
  2956. {
  2957. "name": "hyperf/memory",
  2958. "version": "v3.1.15",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/hyperf/memory.git",
  2962. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  2967. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": ">=8.1"
  2972. },
  2973. "type": "library",
  2974. "extra": {
  2975. "branch-alias": {
  2976. "dev-master": "3.1-dev"
  2977. },
  2978. "hyperf": {
  2979. "config": "Hyperf\\Memory\\ConfigProvider"
  2980. }
  2981. },
  2982. "autoload": {
  2983. "psr-4": {
  2984. "Hyperf\\Memory\\": "src/"
  2985. }
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "description": "An independent component that use to operate and manage memory.",
  2992. "homepage": "https://hyperf.io",
  2993. "keywords": [
  2994. "hyperf",
  2995. "memory",
  2996. "php",
  2997. "swoole"
  2998. ],
  2999. "support": {
  3000. "docs": "https://hyperf.wiki",
  3001. "issues": "https://github.com/hyperf/hyperf/issues",
  3002. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3003. "source": "https://github.com/hyperf/hyperf"
  3004. },
  3005. "funding": [
  3006. {
  3007. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3008. "type": "custom"
  3009. },
  3010. {
  3011. "url": "https://opencollective.com/hyperf",
  3012. "type": "open_collective"
  3013. }
  3014. ],
  3015. "time": "2024-03-23T11:28:51+00:00"
  3016. },
  3017. {
  3018. "name": "hyperf/model-listener",
  3019. "version": "v3.1.15",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/hyperf/model-listener.git",
  3023. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3028. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "hyperf/contract": "~3.1.0",
  3033. "hyperf/database": "~3.1.0",
  3034. "hyperf/di": "~3.1.0",
  3035. "hyperf/event": "~3.1.0",
  3036. "hyperf/support": "~3.1.0",
  3037. "hyperf/utils": "~3.1.0",
  3038. "php": ">=8.1",
  3039. "psr/container": "^1.0|^2.0"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-master": "3.1-dev"
  3045. },
  3046. "hyperf": {
  3047. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Hyperf\\ModelListener\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "description": "A model listener for Hyperf.",
  3060. "homepage": "https://hyperf.io",
  3061. "keywords": [
  3062. "hyperf",
  3063. "model-listener",
  3064. "php",
  3065. "swoole"
  3066. ],
  3067. "support": {
  3068. "docs": "https://hyperf.wiki",
  3069. "issues": "https://github.com/hyperf/hyperf/issues",
  3070. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3071. "source": "https://github.com/hyperf/hyperf"
  3072. },
  3073. "funding": [
  3074. {
  3075. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3076. "type": "custom"
  3077. },
  3078. {
  3079. "url": "https://opencollective.com/hyperf",
  3080. "type": "open_collective"
  3081. }
  3082. ],
  3083. "time": "2024-03-23T11:28:51+00:00"
  3084. },
  3085. {
  3086. "name": "hyperf/nacos",
  3087. "version": "v3.1.15",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/hyperf/nacos.git",
  3091. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3096. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3097. "shasum": ""
  3098. },
  3099. "require": {
  3100. "guzzlehttp/guzzle": "^6.5|^7.0",
  3101. "hyperf/codec": "~3.1.0",
  3102. "hyperf/contract": "~3.1.0",
  3103. "hyperf/support": "~3.1.0",
  3104. "hyperf/utils": "~3.1.0",
  3105. "jetbrains/phpstorm-attributes": "^1.0",
  3106. "php": ">=8.1"
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "3.1-dev"
  3112. },
  3113. "hyperf": {
  3114. "config": "Hyperf\\Nacos\\ConfigProvider"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "psr-4": {
  3119. "Hyperf\\Nacos\\": "src/"
  3120. }
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "description": "Nacos SDK",
  3127. "keywords": [
  3128. "hyperf",
  3129. "nacos",
  3130. "php"
  3131. ],
  3132. "support": {
  3133. "issues": "https://github.com/hyperf/nacos/issues",
  3134. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3135. },
  3136. "funding": [
  3137. {
  3138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3139. "type": "custom"
  3140. },
  3141. {
  3142. "url": "https://opencollective.com/hyperf",
  3143. "type": "open_collective"
  3144. }
  3145. ],
  3146. "time": "2024-03-23T11:28:51+00:00"
  3147. },
  3148. {
  3149. "name": "hyperf/paginator",
  3150. "version": "v3.1.42",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/hyperf/paginator.git",
  3154. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3159. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "hyperf/contract": "~3.1.0",
  3164. "hyperf/support": "~3.1.0",
  3165. "hyperf/utils": "~3.1.0",
  3166. "php": ">=8.1"
  3167. },
  3168. "suggest": {
  3169. "hyperf/event": "Reqiured to use PageResolverListener.",
  3170. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3171. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3172. },
  3173. "type": "library",
  3174. "extra": {
  3175. "branch-alias": {
  3176. "dev-master": "3.1-dev"
  3177. },
  3178. "hyperf": {
  3179. "config": "Hyperf\\Paginator\\ConfigProvider"
  3180. }
  3181. },
  3182. "autoload": {
  3183. "psr-4": {
  3184. "Hyperf\\Paginator\\": "src/"
  3185. }
  3186. },
  3187. "notification-url": "https://packagist.org/downloads/",
  3188. "license": [
  3189. "MIT"
  3190. ],
  3191. "description": "A paginator component for hyperf.",
  3192. "homepage": "https://hyperf.io",
  3193. "keywords": [
  3194. "hyperf",
  3195. "paginator",
  3196. "php"
  3197. ],
  3198. "support": {
  3199. "docs": "https://hyperf.wiki",
  3200. "issues": "https://github.com/hyperf/hyperf/issues",
  3201. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3202. "source": "https://github.com/hyperf/hyperf"
  3203. },
  3204. "funding": [
  3205. {
  3206. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3207. "type": "custom"
  3208. },
  3209. {
  3210. "url": "https://opencollective.com/hyperf",
  3211. "type": "open_collective"
  3212. }
  3213. ],
  3214. "time": "2024-09-25T02:54:12+00:00"
  3215. },
  3216. {
  3217. "name": "hyperf/pipeline",
  3218. "version": "v3.1.15",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/hyperf/pipeline.git",
  3222. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3227. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "php": ">=8.1",
  3232. "psr/container": "^1.0|^2.0"
  3233. },
  3234. "type": "library",
  3235. "extra": {
  3236. "branch-alias": {
  3237. "dev-master": "3.1-dev"
  3238. }
  3239. },
  3240. "autoload": {
  3241. "psr-4": {
  3242. "Hyperf\\Pipeline\\": "src/"
  3243. }
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "MIT"
  3248. ],
  3249. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3250. "homepage": "https://hyperf.io",
  3251. "keywords": [
  3252. "hyperf",
  3253. "php",
  3254. "pipeline",
  3255. "swoole"
  3256. ],
  3257. "support": {
  3258. "docs": "https://hyperf.wiki",
  3259. "issues": "https://github.com/hyperf/hyperf/issues",
  3260. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3261. "source": "https://github.com/hyperf/hyperf"
  3262. },
  3263. "funding": [
  3264. {
  3265. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3266. "type": "custom"
  3267. },
  3268. {
  3269. "url": "https://opencollective.com/hyperf",
  3270. "type": "open_collective"
  3271. }
  3272. ],
  3273. "time": "2024-03-23T11:28:51+00:00"
  3274. },
  3275. {
  3276. "name": "hyperf/pool",
  3277. "version": "v3.1.15",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://github.com/hyperf/pool.git",
  3281. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3286. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "hyperf/contract": "~3.1.0",
  3291. "hyperf/support": "~3.1.0",
  3292. "hyperf/utils": "~3.1.0",
  3293. "php": ">=8.1",
  3294. "psr/container": "^1.0|^2.0"
  3295. },
  3296. "suggest": {
  3297. "psr/event-dispatcher": "Required to use events."
  3298. },
  3299. "type": "library",
  3300. "extra": {
  3301. "branch-alias": {
  3302. "dev-master": "3.1-dev"
  3303. },
  3304. "hyperf": {
  3305. "config": "Hyperf\\Pool\\ConfigProvider"
  3306. }
  3307. },
  3308. "autoload": {
  3309. "psr-4": {
  3310. "Hyperf\\Pool\\": "src/"
  3311. }
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "MIT"
  3316. ],
  3317. "description": "An independent universal connection pool component.",
  3318. "homepage": "https://hyperf.io",
  3319. "keywords": [
  3320. "connection-pool",
  3321. "hyperf",
  3322. "php",
  3323. "swoole"
  3324. ],
  3325. "support": {
  3326. "docs": "https://hyperf.wiki",
  3327. "issues": "https://github.com/hyperf/hyperf/issues",
  3328. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3329. "source": "https://github.com/hyperf/hyperf"
  3330. },
  3331. "funding": [
  3332. {
  3333. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3334. "type": "custom"
  3335. },
  3336. {
  3337. "url": "https://opencollective.com/hyperf",
  3338. "type": "open_collective"
  3339. }
  3340. ],
  3341. "time": "2024-03-23T11:28:51+00:00"
  3342. },
  3343. {
  3344. "name": "hyperf/process",
  3345. "version": "v3.1.15",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/hyperf/process.git",
  3349. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3354. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "hyperf/contract": "~3.1.0",
  3359. "hyperf/support": "~3.1.0",
  3360. "hyperf/utils": "~3.1.0",
  3361. "php": ">=8.1",
  3362. "psr/container": "^1.0|^2.0",
  3363. "psr/event-dispatcher": "^1.0"
  3364. },
  3365. "suggest": {
  3366. "hyperf/di": "Required to use annotations.",
  3367. "hyperf/event": "Required to dump the message before and after process.",
  3368. "hyperf/framework": "Required to use BootProcessListener."
  3369. },
  3370. "type": "library",
  3371. "extra": {
  3372. "branch-alias": {
  3373. "dev-master": "3.1-dev"
  3374. },
  3375. "hyperf": {
  3376. "config": "Hyperf\\Process\\ConfigProvider"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "psr-4": {
  3381. "Hyperf\\Process\\": "src/"
  3382. }
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "description": "A process component for hyperf.",
  3389. "homepage": "https://hyperf.io",
  3390. "keywords": [
  3391. "hyperf",
  3392. "php",
  3393. "process"
  3394. ],
  3395. "support": {
  3396. "docs": "https://hyperf.wiki",
  3397. "issues": "https://github.com/hyperf/hyperf/issues",
  3398. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3399. "source": "https://github.com/hyperf/hyperf"
  3400. },
  3401. "funding": [
  3402. {
  3403. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3404. "type": "custom"
  3405. },
  3406. {
  3407. "url": "https://opencollective.com/hyperf",
  3408. "type": "open_collective"
  3409. }
  3410. ],
  3411. "time": "2024-03-23T11:28:51+00:00"
  3412. },
  3413. {
  3414. "name": "hyperf/redis",
  3415. "version": "v3.1.18",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/hyperf/redis.git",
  3419. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3424. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3425. "shasum": ""
  3426. },
  3427. "require": {
  3428. "ext-redis": "^5.0|^6.0",
  3429. "hyperf/contract": "~3.1.0",
  3430. "hyperf/pool": "~3.1.0",
  3431. "hyperf/support": "~3.1.0",
  3432. "hyperf/tappable": "~3.1.0",
  3433. "hyperf/utils": "~3.1.0",
  3434. "php": ">=8.1",
  3435. "psr/container": "^1.0|^2.0"
  3436. },
  3437. "suggest": {
  3438. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3439. "hyperf/di": "Create the RedisPool via dependency injection."
  3440. },
  3441. "type": "library",
  3442. "extra": {
  3443. "branch-alias": {
  3444. "dev-master": "3.1-dev"
  3445. },
  3446. "hyperf": {
  3447. "config": "Hyperf\\Redis\\ConfigProvider"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Hyperf\\Redis\\": "src/"
  3453. }
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "description": "A redis component for hyperf.",
  3460. "homepage": "https://hyperf.io",
  3461. "keywords": [
  3462. "hyperf",
  3463. "php",
  3464. "pool",
  3465. "redis"
  3466. ],
  3467. "support": {
  3468. "docs": "https://hyperf.wiki",
  3469. "issues": "https://github.com/hyperf/hyperf/issues",
  3470. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3471. "source": "https://github.com/hyperf/hyperf"
  3472. },
  3473. "funding": [
  3474. {
  3475. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3476. "type": "custom"
  3477. },
  3478. {
  3479. "url": "https://opencollective.com/hyperf",
  3480. "type": "open_collective"
  3481. }
  3482. ],
  3483. "time": "2024-04-11T10:18:35+00:00"
  3484. },
  3485. {
  3486. "name": "hyperf/rpc",
  3487. "version": "v3.1.15",
  3488. "source": {
  3489. "type": "git",
  3490. "url": "https://github.com/hyperf/rpc.git",
  3491. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3492. },
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3496. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "hyperf/codec": "~3.1.0",
  3501. "hyperf/contract": "~3.1.0",
  3502. "hyperf/support": "~3.1.0",
  3503. "jetbrains/phpstorm-attributes": "^1.0",
  3504. "php": ">=8.1"
  3505. },
  3506. "type": "library",
  3507. "extra": {
  3508. "branch-alias": {
  3509. "dev-master": "3.1-dev"
  3510. },
  3511. "hyperf": []
  3512. },
  3513. "autoload": {
  3514. "psr-4": {
  3515. "Hyperf\\Rpc\\": "src/"
  3516. }
  3517. },
  3518. "notification-url": "https://packagist.org/downloads/",
  3519. "license": [
  3520. "MIT"
  3521. ],
  3522. "description": "A rpc basic library for Hyperf.",
  3523. "homepage": "https://hyperf.io",
  3524. "keywords": [
  3525. "hyperf",
  3526. "php",
  3527. "rpc",
  3528. "swoole"
  3529. ],
  3530. "support": {
  3531. "docs": "https://hyperf.wiki",
  3532. "issues": "https://github.com/hyperf/hyperf/issues",
  3533. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3534. "source": "https://github.com/hyperf/hyperf"
  3535. },
  3536. "funding": [
  3537. {
  3538. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3539. "type": "custom"
  3540. },
  3541. {
  3542. "url": "https://opencollective.com/hyperf",
  3543. "type": "open_collective"
  3544. }
  3545. ],
  3546. "time": "2024-03-23T11:28:51+00:00"
  3547. },
  3548. {
  3549. "name": "hyperf/rpc-server",
  3550. "version": "v3.1.20",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/hyperf/rpc-server.git",
  3554. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3559. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "hyperf/http-server": "~3.1.0",
  3564. "hyperf/rpc": "~3.1.0",
  3565. "php": ">=8.1"
  3566. },
  3567. "suggest": {
  3568. "hyperf/di": "Required to use annotations."
  3569. },
  3570. "type": "library",
  3571. "extra": {
  3572. "branch-alias": {
  3573. "dev-master": "3.1-dev"
  3574. },
  3575. "hyperf": {
  3576. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Hyperf\\RpcServer\\": "src/"
  3582. }
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "description": "An abstract rpc server component for Hyperf.",
  3589. "homepage": "https://hyperf.io",
  3590. "keywords": [
  3591. "hyperf",
  3592. "php",
  3593. "rpc",
  3594. "rpc-server",
  3595. "swoole"
  3596. ],
  3597. "support": {
  3598. "docs": "https://hyperf.wiki",
  3599. "issues": "https://github.com/hyperf/hyperf/issues",
  3600. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3601. "source": "https://github.com/hyperf/hyperf"
  3602. },
  3603. "funding": [
  3604. {
  3605. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3606. "type": "custom"
  3607. },
  3608. {
  3609. "url": "https://opencollective.com/hyperf",
  3610. "type": "open_collective"
  3611. }
  3612. ],
  3613. "time": "2024-04-22T01:46:29+00:00"
  3614. },
  3615. {
  3616. "name": "hyperf/serializer",
  3617. "version": "v3.1.23",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/hyperf/serializer.git",
  3621. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3626. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "hyperf/contract": "~3.1.0",
  3631. "php": ">=8.1"
  3632. },
  3633. "suggest": {
  3634. "hyperf/di": "Required to use ExceptionNormalizer",
  3635. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3636. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3637. },
  3638. "type": "library",
  3639. "extra": {
  3640. "branch-alias": {
  3641. "dev-master": "3.1-dev"
  3642. },
  3643. "hyperf": {
  3644. "config": "Hyperf\\Serializer\\ConfigProvider"
  3645. }
  3646. },
  3647. "autoload": {
  3648. "psr-4": {
  3649. "Hyperf\\Serializer\\": "src/"
  3650. }
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "description": "A serializer component for Hyperf.",
  3657. "homepage": "https://hyperf.io",
  3658. "keywords": [
  3659. "hyperf",
  3660. "php",
  3661. "swoole",
  3662. "tappable"
  3663. ],
  3664. "support": {
  3665. "docs": "https://hyperf.wiki",
  3666. "issues": "https://github.com/hyperf/hyperf/issues",
  3667. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3668. "source": "https://github.com/hyperf/hyperf"
  3669. },
  3670. "funding": [
  3671. {
  3672. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3673. "type": "custom"
  3674. },
  3675. {
  3676. "url": "https://opencollective.com/hyperf",
  3677. "type": "open_collective"
  3678. }
  3679. ],
  3680. "time": "2024-05-23T03:43:58+00:00"
  3681. },
  3682. {
  3683. "name": "hyperf/server",
  3684. "version": "v3.1.23",
  3685. "source": {
  3686. "type": "git",
  3687. "url": "https://github.com/hyperf/server.git",
  3688. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3689. },
  3690. "dist": {
  3691. "type": "zip",
  3692. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3693. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3694. "shasum": ""
  3695. },
  3696. "require": {
  3697. "hyperf/contract": "~3.1.0",
  3698. "hyperf/coordinator": "~3.1.0",
  3699. "hyperf/engine": "^2.8",
  3700. "hyperf/support": "~3.1.0",
  3701. "hyperf/tappable": "~3.1.0",
  3702. "php": ">=8.1",
  3703. "psr/container": "^1.0|^2.0",
  3704. "psr/event-dispatcher": "^1.0",
  3705. "psr/log": "^1.0|^2.0|^3.0",
  3706. "symfony/console": "^5.0|^6.0|^7.0"
  3707. },
  3708. "suggest": {
  3709. "hyperf/event": "Dump the info after server start.",
  3710. "hyperf/framework": "Dump the info after server start."
  3711. },
  3712. "type": "library",
  3713. "extra": {
  3714. "branch-alias": {
  3715. "dev-master": "3.1-dev"
  3716. },
  3717. "hyperf": {
  3718. "config": "Hyperf\\Server\\ConfigProvider"
  3719. }
  3720. },
  3721. "autoload": {
  3722. "psr-4": {
  3723. "Hyperf\\Server\\": "src/"
  3724. }
  3725. },
  3726. "notification-url": "https://packagist.org/downloads/",
  3727. "license": [
  3728. "MIT"
  3729. ],
  3730. "description": "A base server library for Hyperf.",
  3731. "homepage": "https://hyperf.io",
  3732. "keywords": [
  3733. "hyperf",
  3734. "php",
  3735. "server",
  3736. "swoole"
  3737. ],
  3738. "support": {
  3739. "docs": "https://hyperf.wiki",
  3740. "issues": "https://github.com/hyperf/hyperf/issues",
  3741. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3742. "source": "https://github.com/hyperf/hyperf"
  3743. },
  3744. "funding": [
  3745. {
  3746. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3747. "type": "custom"
  3748. },
  3749. {
  3750. "url": "https://opencollective.com/hyperf",
  3751. "type": "open_collective"
  3752. }
  3753. ],
  3754. "time": "2024-05-23T03:43:58+00:00"
  3755. },
  3756. {
  3757. "name": "hyperf/service-governance",
  3758. "version": "v3.1.15",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/hyperf/service-governance.git",
  3762. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3767. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3768. "shasum": ""
  3769. },
  3770. "require": {
  3771. "hyperf/contract": "~3.1.0",
  3772. "hyperf/support": "~3.1.0",
  3773. "jetbrains/phpstorm-attributes": "^1.0",
  3774. "php": ">=8.1"
  3775. },
  3776. "suggest": {
  3777. "hyperf/event": "Required to use RegisterServiceListener.",
  3778. "hyperf/framework": "Required to use RegisterServiceListener.",
  3779. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3780. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3781. },
  3782. "type": "library",
  3783. "extra": {
  3784. "branch-alias": {
  3785. "dev-master": "3.1-dev"
  3786. },
  3787. "hyperf": {
  3788. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3789. }
  3790. },
  3791. "autoload": {
  3792. "psr-4": {
  3793. "Hyperf\\ServiceGovernance\\": "src/"
  3794. }
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "MIT"
  3799. ],
  3800. "description": "A service governance component for Hyperf.",
  3801. "homepage": "https://hyperf.io",
  3802. "keywords": [
  3803. "hyperf",
  3804. "php",
  3805. "service-governance",
  3806. "swoole"
  3807. ],
  3808. "support": {
  3809. "docs": "https://hyperf.wiki",
  3810. "issues": "https://github.com/hyperf/hyperf/issues",
  3811. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3812. "source": "https://github.com/hyperf/hyperf"
  3813. },
  3814. "funding": [
  3815. {
  3816. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3817. "type": "custom"
  3818. },
  3819. {
  3820. "url": "https://opencollective.com/hyperf",
  3821. "type": "open_collective"
  3822. }
  3823. ],
  3824. "time": "2024-03-23T11:28:51+00:00"
  3825. },
  3826. {
  3827. "name": "hyperf/service-governance-consul",
  3828. "version": "v3.1.15",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/hyperf/service-governance-consul.git",
  3832. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3837. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3838. "shasum": ""
  3839. },
  3840. "require": {
  3841. "hyperf/consul": "~3.1.0",
  3842. "hyperf/contract": "~3.1.0",
  3843. "hyperf/service-governance": "~3.1.0",
  3844. "hyperf/support": "~3.1.0",
  3845. "hyperf/utils": "~3.1.0",
  3846. "php": ">=8.1"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-master": "3.1-dev"
  3852. },
  3853. "hyperf": {
  3854. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3855. }
  3856. },
  3857. "autoload": {
  3858. "psr-4": {
  3859. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3860. }
  3861. },
  3862. "notification-url": "https://packagist.org/downloads/",
  3863. "license": [
  3864. "MIT"
  3865. ],
  3866. "description": "A consul adapter for service governance.",
  3867. "homepage": "https://hyperf.io",
  3868. "keywords": [
  3869. "consul-adapter",
  3870. "hyperf",
  3871. "php",
  3872. "service-governance",
  3873. "swoole"
  3874. ],
  3875. "support": {
  3876. "docs": "https://hyperf.wiki",
  3877. "issues": "https://github.com/hyperf/hyperf/issues",
  3878. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3879. "source": "https://github.com/hyperf/hyperf"
  3880. },
  3881. "funding": [
  3882. {
  3883. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3884. "type": "custom"
  3885. },
  3886. {
  3887. "url": "https://opencollective.com/hyperf",
  3888. "type": "open_collective"
  3889. }
  3890. ],
  3891. "time": "2024-03-23T11:28:51+00:00"
  3892. },
  3893. {
  3894. "name": "hyperf/service-governance-nacos",
  3895. "version": "v3.1.15",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3899. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3904. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3905. "shasum": ""
  3906. },
  3907. "require": {
  3908. "hyperf/codec": "~3.1.0",
  3909. "hyperf/contract": "~3.1.0",
  3910. "hyperf/nacos": "~3.1.0",
  3911. "hyperf/service-governance": "~3.1.0",
  3912. "hyperf/support": "~3.1.0",
  3913. "hyperf/utils": "~3.1.0",
  3914. "php": ">=8.1"
  3915. },
  3916. "type": "library",
  3917. "extra": {
  3918. "branch-alias": {
  3919. "dev-master": "3.1-dev"
  3920. },
  3921. "hyperf": {
  3922. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3923. }
  3924. },
  3925. "autoload": {
  3926. "psr-4": {
  3927. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3928. }
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "description": "A nacos adapter for service governance.",
  3935. "homepage": "https://hyperf.io",
  3936. "keywords": [
  3937. "hyperf",
  3938. "nacos-adapter",
  3939. "php",
  3940. "service-governance",
  3941. "swoole"
  3942. ],
  3943. "support": {
  3944. "docs": "https://hyperf.wiki",
  3945. "issues": "https://github.com/hyperf/hyperf/issues",
  3946. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3947. "source": "https://github.com/hyperf/hyperf"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3952. "type": "custom"
  3953. },
  3954. {
  3955. "url": "https://opencollective.com/hyperf",
  3956. "type": "open_collective"
  3957. }
  3958. ],
  3959. "time": "2024-03-23T11:28:51+00:00"
  3960. },
  3961. {
  3962. "name": "hyperf/stdlib",
  3963. "version": "v3.1.15",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/hyperf/stdlib.git",
  3967. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  3972. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  3973. "shasum": ""
  3974. },
  3975. "require": {
  3976. "php": ">=8.1"
  3977. },
  3978. "type": "library",
  3979. "extra": {
  3980. "branch-alias": {
  3981. "dev-master": "3.1-dev"
  3982. }
  3983. },
  3984. "autoload": {
  3985. "psr-4": {
  3986. "Hyperf\\Stdlib\\": "src/"
  3987. }
  3988. },
  3989. "notification-url": "https://packagist.org/downloads/",
  3990. "license": [
  3991. "MIT"
  3992. ],
  3993. "description": "A stdlib component for Hyperf.",
  3994. "homepage": "https://hyperf.io",
  3995. "keywords": [
  3996. "hyperf",
  3997. "php",
  3998. "stdlib",
  3999. "swoole"
  4000. ],
  4001. "support": {
  4002. "docs": "https://hyperf.wiki",
  4003. "issues": "https://github.com/hyperf/hyperf/issues",
  4004. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4005. "source": "https://github.com/hyperf/hyperf"
  4006. },
  4007. "funding": [
  4008. {
  4009. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4010. "type": "custom"
  4011. },
  4012. {
  4013. "url": "https://opencollective.com/hyperf",
  4014. "type": "open_collective"
  4015. }
  4016. ],
  4017. "time": "2024-03-23T11:28:51+00:00"
  4018. },
  4019. {
  4020. "name": "hyperf/stringable",
  4021. "version": "v3.1.24",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/hyperf/stringable.git",
  4025. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4030. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "ext-mbstring": "*",
  4035. "hyperf/collection": "~3.1.0",
  4036. "hyperf/conditionable": "~3.1.0",
  4037. "hyperf/macroable": "~3.1.0",
  4038. "hyperf/tappable": "~3.1.0",
  4039. "php": ">=8.1"
  4040. },
  4041. "suggest": {
  4042. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4043. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4044. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-master": "3.1-dev"
  4050. }
  4051. },
  4052. "autoload": {
  4053. "files": [
  4054. "src/Functions.php"
  4055. ],
  4056. "psr-4": {
  4057. "Hyperf\\Stringable\\": "src/"
  4058. }
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "description": "Hyperf Stringable package which come from illuminate/support",
  4065. "homepage": "https://hyperf.io",
  4066. "keywords": [
  4067. "hyperf",
  4068. "php",
  4069. "stringable",
  4070. "swoole"
  4071. ],
  4072. "support": {
  4073. "docs": "https://hyperf.wiki",
  4074. "issues": "https://github.com/hyperf/hyperf/issues",
  4075. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4076. "source": "https://github.com/hyperf/hyperf"
  4077. },
  4078. "funding": [
  4079. {
  4080. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4081. "type": "custom"
  4082. },
  4083. {
  4084. "url": "https://opencollective.com/hyperf",
  4085. "type": "open_collective"
  4086. }
  4087. ],
  4088. "time": "2024-05-27T03:20:24+00:00"
  4089. },
  4090. {
  4091. "name": "hyperf/support",
  4092. "version": "v3.1.15",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/hyperf/support.git",
  4096. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4101. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4102. "shasum": ""
  4103. },
  4104. "require": {
  4105. "hyperf/collection": "~3.1.0",
  4106. "hyperf/context": "~3.1.0",
  4107. "hyperf/contract": "~3.1.0",
  4108. "hyperf/coroutine": "~3.1.0",
  4109. "hyperf/macroable": "~3.1.0",
  4110. "hyperf/stringable": "~3.1.0",
  4111. "php": ">=8.1"
  4112. },
  4113. "suggest": {
  4114. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "3.1-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "files": [
  4124. "src/Functions.php"
  4125. ],
  4126. "psr-4": {
  4127. "Hyperf\\Support\\": "src/"
  4128. }
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "MIT"
  4133. ],
  4134. "description": "A support component for Hyperf.",
  4135. "homepage": "https://hyperf.io",
  4136. "keywords": [
  4137. "hyperf",
  4138. "php",
  4139. "support",
  4140. "swoole"
  4141. ],
  4142. "support": {
  4143. "docs": "https://hyperf.wiki",
  4144. "issues": "https://github.com/hyperf/hyperf/issues",
  4145. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4146. "source": "https://github.com/hyperf/hyperf"
  4147. },
  4148. "funding": [
  4149. {
  4150. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4151. "type": "custom"
  4152. },
  4153. {
  4154. "url": "https://opencollective.com/hyperf",
  4155. "type": "open_collective"
  4156. }
  4157. ],
  4158. "time": "2024-03-23T11:28:51+00:00"
  4159. },
  4160. {
  4161. "name": "hyperf/tappable",
  4162. "version": "v3.1.15",
  4163. "source": {
  4164. "type": "git",
  4165. "url": "https://github.com/hyperf/tappable.git",
  4166. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4167. },
  4168. "dist": {
  4169. "type": "zip",
  4170. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4171. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4172. "shasum": ""
  4173. },
  4174. "require": {
  4175. "php": ">=8.1"
  4176. },
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-master": "3.1-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "files": [
  4185. "src/Functions.php"
  4186. ],
  4187. "psr-4": {
  4188. "Hyperf\\Tappable\\": "src/"
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "MIT"
  4194. ],
  4195. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4196. "homepage": "https://hyperf.io",
  4197. "keywords": [
  4198. "hyperf",
  4199. "php",
  4200. "swoole",
  4201. "tappable"
  4202. ],
  4203. "support": {
  4204. "docs": "https://hyperf.wiki",
  4205. "issues": "https://github.com/hyperf/hyperf/issues",
  4206. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4207. "source": "https://github.com/hyperf/hyperf"
  4208. },
  4209. "funding": [
  4210. {
  4211. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4212. "type": "custom"
  4213. },
  4214. {
  4215. "url": "https://opencollective.com/hyperf",
  4216. "type": "open_collective"
  4217. }
  4218. ],
  4219. "time": "2024-03-23T11:28:51+00:00"
  4220. },
  4221. {
  4222. "name": "hyperf/utils",
  4223. "version": "v3.1.0",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://github.com/hyperf/utils.git",
  4227. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4232. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4233. "shasum": ""
  4234. },
  4235. "require": {
  4236. "doctrine/inflector": "^2.0",
  4237. "hyperf/code-parser": "~3.1.0",
  4238. "hyperf/codec": "~3.1.0",
  4239. "hyperf/collection": "~3.1.0",
  4240. "hyperf/context": "~3.1.0",
  4241. "hyperf/contract": "~3.1.0",
  4242. "hyperf/coordinator": "~3.1.0",
  4243. "hyperf/coroutine": "~3.1.0",
  4244. "hyperf/engine": "^2.0",
  4245. "hyperf/macroable": "~3.1.0",
  4246. "hyperf/serializer": "~3.1.0",
  4247. "hyperf/stringable": "~3.1.0",
  4248. "hyperf/support": "~3.1.0",
  4249. "php": ">=8.1"
  4250. },
  4251. "type": "library",
  4252. "extra": {
  4253. "branch-alias": {
  4254. "dev-master": "3.1-dev"
  4255. }
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "MIT"
  4260. ],
  4261. "description": "A tools package that could help developer solved the problem quickly.",
  4262. "homepage": "https://hyperf.io",
  4263. "keywords": [
  4264. "hyperf",
  4265. "php",
  4266. "swoole",
  4267. "utils"
  4268. ],
  4269. "support": {
  4270. "docs": "https://hyperf.wiki",
  4271. "issues": "https://github.com/hyperf/hyperf/issues",
  4272. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4273. "source": "https://github.com/hyperf/hyperf"
  4274. },
  4275. "funding": [
  4276. {
  4277. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4278. "type": "custom"
  4279. },
  4280. {
  4281. "url": "https://opencollective.com/hyperf",
  4282. "type": "open_collective"
  4283. }
  4284. ],
  4285. "time": "2023-11-24T03:10:53+00:00"
  4286. },
  4287. {
  4288. "name": "jetbrains/phpstorm-attributes",
  4289. "version": "1.1",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4293. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4298. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4299. "shasum": ""
  4300. },
  4301. "type": "library",
  4302. "autoload": {
  4303. "psr-4": {
  4304. "JetBrains\\PhpStorm\\": "src/"
  4305. }
  4306. },
  4307. "notification-url": "https://packagist.org/downloads/",
  4308. "license": [
  4309. "Apache-2.0"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "JetBrains",
  4314. "homepage": "https://www.jetbrains.com"
  4315. }
  4316. ],
  4317. "description": "PhpStorm specific attributes",
  4318. "keywords": [
  4319. "attributes",
  4320. "jetbrains",
  4321. "phpstorm"
  4322. ],
  4323. "support": {
  4324. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4325. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4326. },
  4327. "time": "2023-09-01T08:50:25+00:00"
  4328. },
  4329. {
  4330. "name": "laminas/laminas-mime",
  4331. "version": "2.12.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/laminas/laminas-mime.git",
  4335. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4340. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4345. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4346. },
  4347. "conflict": {
  4348. "zendframework/zend-mime": "*"
  4349. },
  4350. "require-dev": {
  4351. "laminas/laminas-coding-standard": "~2.4.0",
  4352. "laminas/laminas-mail": "^2.19.0",
  4353. "phpunit/phpunit": "~9.5.25"
  4354. },
  4355. "suggest": {
  4356. "laminas/laminas-mail": "Laminas\\Mail component"
  4357. },
  4358. "type": "library",
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Laminas\\Mime\\": "src/"
  4362. }
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "BSD-3-Clause"
  4367. ],
  4368. "description": "Create and parse MIME messages and parts",
  4369. "homepage": "https://laminas.dev",
  4370. "keywords": [
  4371. "laminas",
  4372. "mime"
  4373. ],
  4374. "support": {
  4375. "chat": "https://laminas.dev/chat",
  4376. "docs": "https://docs.laminas.dev/laminas-mime/",
  4377. "forum": "https://discourse.laminas.dev",
  4378. "issues": "https://github.com/laminas/laminas-mime/issues",
  4379. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4380. "source": "https://github.com/laminas/laminas-mime"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4385. "type": "community_bridge"
  4386. }
  4387. ],
  4388. "time": "2023-11-02T16:47:19+00:00"
  4389. },
  4390. {
  4391. "name": "laminas/laminas-stdlib",
  4392. "version": "3.19.0",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/laminas/laminas-stdlib.git",
  4396. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4401. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4402. "shasum": ""
  4403. },
  4404. "require": {
  4405. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4406. },
  4407. "conflict": {
  4408. "zendframework/zend-stdlib": "*"
  4409. },
  4410. "require-dev": {
  4411. "laminas/laminas-coding-standard": "^2.5",
  4412. "phpbench/phpbench": "^1.2.15",
  4413. "phpunit/phpunit": "^10.5.8",
  4414. "psalm/plugin-phpunit": "^0.18.4",
  4415. "vimeo/psalm": "^5.20.0"
  4416. },
  4417. "type": "library",
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Laminas\\Stdlib\\": "src/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "BSD-3-Clause"
  4426. ],
  4427. "description": "SPL extensions, array utilities, error handlers, and more",
  4428. "homepage": "https://laminas.dev",
  4429. "keywords": [
  4430. "laminas",
  4431. "stdlib"
  4432. ],
  4433. "support": {
  4434. "chat": "https://laminas.dev/chat",
  4435. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4436. "forum": "https://discourse.laminas.dev",
  4437. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4438. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4439. "source": "https://github.com/laminas/laminas-stdlib"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4444. "type": "community_bridge"
  4445. }
  4446. ],
  4447. "time": "2024-01-19T12:39:49+00:00"
  4448. },
  4449. {
  4450. "name": "markrogoyski/math-php",
  4451. "version": "v2.10.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/markrogoyski/math-php.git",
  4455. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4460. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "ext-json": "*",
  4465. "php": ">=7.2.0"
  4466. },
  4467. "require-dev": {
  4468. "php-coveralls/php-coveralls": "^2.0",
  4469. "php-parallel-lint/php-parallel-lint": "^1.2",
  4470. "phploc/phploc": "*",
  4471. "phpmd/phpmd": "^2.6",
  4472. "phpstan/phpstan": "^1.10",
  4473. "phpunit/phpunit": "^8.5",
  4474. "squizlabs/php_codesniffer": "3.*"
  4475. },
  4476. "type": "library",
  4477. "autoload": {
  4478. "psr-4": {
  4479. "MathPHP\\": "src/"
  4480. }
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "MIT"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Mark Rogoyski",
  4489. "email": "mark@rogoyski.com",
  4490. "homepage": "https://github.com/markrogoyski",
  4491. "role": "Lead developer"
  4492. },
  4493. {
  4494. "name": "Kevin Nowaczyk",
  4495. "homepage": "https://github.com/Beakerboy",
  4496. "role": "Developer"
  4497. },
  4498. {
  4499. "name": "MathPHP Community of Contributors",
  4500. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4501. }
  4502. ],
  4503. "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",
  4504. "homepage": "https://github.com/markrogoyski/math-php/",
  4505. "keywords": [
  4506. "algebra",
  4507. "combinatorics",
  4508. "distributions",
  4509. "linear algebra",
  4510. "math",
  4511. "mathematics",
  4512. "matrix",
  4513. "numerical analysis",
  4514. "probability",
  4515. "regressions",
  4516. "statistics"
  4517. ],
  4518. "support": {
  4519. "issues": "https://github.com/markrogoyski/math-php/issues",
  4520. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4521. },
  4522. "time": "2024-04-17T00:09:51+00:00"
  4523. },
  4524. {
  4525. "name": "monolog/monolog",
  4526. "version": "3.6.0",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/Seldaek/monolog.git",
  4530. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4535. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "php": ">=8.1",
  4540. "psr/log": "^2.0 || ^3.0"
  4541. },
  4542. "provide": {
  4543. "psr/log-implementation": "3.0.0"
  4544. },
  4545. "require-dev": {
  4546. "aws/aws-sdk-php": "^3.0",
  4547. "doctrine/couchdb": "~1.0@dev",
  4548. "elasticsearch/elasticsearch": "^7 || ^8",
  4549. "ext-json": "*",
  4550. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4551. "guzzlehttp/guzzle": "^7.4.5",
  4552. "guzzlehttp/psr7": "^2.2",
  4553. "mongodb/mongodb": "^1.8",
  4554. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4555. "phpstan/phpstan": "^1.9",
  4556. "phpstan/phpstan-deprecation-rules": "^1.0",
  4557. "phpstan/phpstan-strict-rules": "^1.4",
  4558. "phpunit/phpunit": "^10.5.17",
  4559. "predis/predis": "^1.1 || ^2",
  4560. "ruflin/elastica": "^7",
  4561. "symfony/mailer": "^5.4 || ^6",
  4562. "symfony/mime": "^5.4 || ^6"
  4563. },
  4564. "suggest": {
  4565. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4566. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4567. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4568. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4569. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4570. "ext-mbstring": "Allow to work properly with unicode symbols",
  4571. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4572. "ext-openssl": "Required to send log messages using SSL",
  4573. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4574. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4575. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4576. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4577. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4578. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4579. },
  4580. "type": "library",
  4581. "extra": {
  4582. "branch-alias": {
  4583. "dev-main": "3.x-dev"
  4584. }
  4585. },
  4586. "autoload": {
  4587. "psr-4": {
  4588. "Monolog\\": "src/Monolog"
  4589. }
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "Jordi Boggiano",
  4598. "email": "j.boggiano@seld.be",
  4599. "homepage": "https://seld.be"
  4600. }
  4601. ],
  4602. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4603. "homepage": "https://github.com/Seldaek/monolog",
  4604. "keywords": [
  4605. "log",
  4606. "logging",
  4607. "psr-3"
  4608. ],
  4609. "support": {
  4610. "issues": "https://github.com/Seldaek/monolog/issues",
  4611. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://github.com/Seldaek",
  4616. "type": "github"
  4617. },
  4618. {
  4619. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4620. "type": "tidelift"
  4621. }
  4622. ],
  4623. "time": "2024-04-12T21:02:21+00:00"
  4624. },
  4625. {
  4626. "name": "nesbot/carbon",
  4627. "version": "2.72.5",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/briannesbitt/Carbon.git",
  4631. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4636. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "carbonphp/carbon-doctrine-types": "*",
  4641. "ext-json": "*",
  4642. "php": "^7.1.8 || ^8.0",
  4643. "psr/clock": "^1.0",
  4644. "symfony/polyfill-mbstring": "^1.0",
  4645. "symfony/polyfill-php80": "^1.16",
  4646. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4647. },
  4648. "provide": {
  4649. "psr/clock-implementation": "1.0"
  4650. },
  4651. "require-dev": {
  4652. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4653. "doctrine/orm": "^2.7 || ^3.0",
  4654. "friendsofphp/php-cs-fixer": "^3.0",
  4655. "kylekatarnls/multi-tester": "^2.0",
  4656. "ondrejmirtes/better-reflection": "*",
  4657. "phpmd/phpmd": "^2.9",
  4658. "phpstan/extension-installer": "^1.0",
  4659. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4660. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4661. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4662. "squizlabs/php_codesniffer": "^3.4"
  4663. },
  4664. "bin": [
  4665. "bin/carbon"
  4666. ],
  4667. "type": "library",
  4668. "extra": {
  4669. "branch-alias": {
  4670. "dev-master": "3.x-dev",
  4671. "dev-2.x": "2.x-dev"
  4672. },
  4673. "laravel": {
  4674. "providers": [
  4675. "Carbon\\Laravel\\ServiceProvider"
  4676. ]
  4677. },
  4678. "phpstan": {
  4679. "includes": [
  4680. "extension.neon"
  4681. ]
  4682. }
  4683. },
  4684. "autoload": {
  4685. "psr-4": {
  4686. "Carbon\\": "src/Carbon/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Brian Nesbitt",
  4696. "email": "brian@nesbot.com",
  4697. "homepage": "https://markido.com"
  4698. },
  4699. {
  4700. "name": "kylekatarnls",
  4701. "homepage": "https://github.com/kylekatarnls"
  4702. }
  4703. ],
  4704. "description": "An API extension for DateTime that supports 281 different languages.",
  4705. "homepage": "https://carbon.nesbot.com",
  4706. "keywords": [
  4707. "date",
  4708. "datetime",
  4709. "time"
  4710. ],
  4711. "support": {
  4712. "docs": "https://carbon.nesbot.com/docs",
  4713. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4714. "source": "https://github.com/briannesbitt/Carbon"
  4715. },
  4716. "funding": [
  4717. {
  4718. "url": "https://github.com/sponsors/kylekatarnls",
  4719. "type": "github"
  4720. },
  4721. {
  4722. "url": "https://opencollective.com/Carbon#sponsor",
  4723. "type": "opencollective"
  4724. },
  4725. {
  4726. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4727. "type": "tidelift"
  4728. }
  4729. ],
  4730. "time": "2024-06-03T19:18:41+00:00"
  4731. },
  4732. {
  4733. "name": "nikic/fast-route",
  4734. "version": "v1.3.0",
  4735. "source": {
  4736. "type": "git",
  4737. "url": "https://github.com/nikic/FastRoute.git",
  4738. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4739. },
  4740. "dist": {
  4741. "type": "zip",
  4742. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4743. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4744. "shasum": ""
  4745. },
  4746. "require": {
  4747. "php": ">=5.4.0"
  4748. },
  4749. "require-dev": {
  4750. "phpunit/phpunit": "^4.8.35|~5.7"
  4751. },
  4752. "type": "library",
  4753. "autoload": {
  4754. "files": [
  4755. "src/functions.php"
  4756. ],
  4757. "psr-4": {
  4758. "FastRoute\\": "src/"
  4759. }
  4760. },
  4761. "notification-url": "https://packagist.org/downloads/",
  4762. "license": [
  4763. "BSD-3-Clause"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "Nikita Popov",
  4768. "email": "nikic@php.net"
  4769. }
  4770. ],
  4771. "description": "Fast request router for PHP",
  4772. "keywords": [
  4773. "router",
  4774. "routing"
  4775. ],
  4776. "support": {
  4777. "issues": "https://github.com/nikic/FastRoute/issues",
  4778. "source": "https://github.com/nikic/FastRoute/tree/master"
  4779. },
  4780. "time": "2018-02-13T20:26:39+00:00"
  4781. },
  4782. {
  4783. "name": "nikic/php-parser",
  4784. "version": "v4.19.1",
  4785. "source": {
  4786. "type": "git",
  4787. "url": "https://github.com/nikic/PHP-Parser.git",
  4788. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  4789. },
  4790. "dist": {
  4791. "type": "zip",
  4792. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  4793. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  4794. "shasum": ""
  4795. },
  4796. "require": {
  4797. "ext-tokenizer": "*",
  4798. "php": ">=7.1"
  4799. },
  4800. "require-dev": {
  4801. "ircmaxell/php-yacc": "^0.0.7",
  4802. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4803. },
  4804. "bin": [
  4805. "bin/php-parse"
  4806. ],
  4807. "type": "library",
  4808. "extra": {
  4809. "branch-alias": {
  4810. "dev-master": "4.9-dev"
  4811. }
  4812. },
  4813. "autoload": {
  4814. "psr-4": {
  4815. "PhpParser\\": "lib/PhpParser"
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "BSD-3-Clause"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Nikita Popov"
  4825. }
  4826. ],
  4827. "description": "A PHP parser written in PHP",
  4828. "keywords": [
  4829. "parser",
  4830. "php"
  4831. ],
  4832. "support": {
  4833. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4834. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  4835. },
  4836. "time": "2024-03-17T08:10:35+00:00"
  4837. },
  4838. {
  4839. "name": "php-di/phpdoc-reader",
  4840. "version": "2.2.1",
  4841. "source": {
  4842. "type": "git",
  4843. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4844. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4845. },
  4846. "dist": {
  4847. "type": "zip",
  4848. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4849. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4850. "shasum": ""
  4851. },
  4852. "require": {
  4853. "php": ">=7.2.0"
  4854. },
  4855. "require-dev": {
  4856. "mnapoli/hard-mode": "~0.3.0",
  4857. "phpunit/phpunit": "^8.5|^9.0"
  4858. },
  4859. "type": "library",
  4860. "autoload": {
  4861. "psr-4": {
  4862. "PhpDocReader\\": "src/PhpDocReader"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4870. "keywords": [
  4871. "phpdoc",
  4872. "reflection"
  4873. ],
  4874. "support": {
  4875. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4876. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4877. },
  4878. "time": "2020-10-12T12:39:22+00:00"
  4879. },
  4880. {
  4881. "name": "phpoption/phpoption",
  4882. "version": "1.9.2",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/schmittjoh/php-option.git",
  4886. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4891. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "php": "^7.2.5 || ^8.0"
  4896. },
  4897. "require-dev": {
  4898. "bamarni/composer-bin-plugin": "^1.8.2",
  4899. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4900. },
  4901. "type": "library",
  4902. "extra": {
  4903. "bamarni-bin": {
  4904. "bin-links": true,
  4905. "forward-command": true
  4906. },
  4907. "branch-alias": {
  4908. "dev-master": "1.9-dev"
  4909. }
  4910. },
  4911. "autoload": {
  4912. "psr-4": {
  4913. "PhpOption\\": "src/PhpOption/"
  4914. }
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "Apache-2.0"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Johannes M. Schmitt",
  4923. "email": "schmittjoh@gmail.com",
  4924. "homepage": "https://github.com/schmittjoh"
  4925. },
  4926. {
  4927. "name": "Graham Campbell",
  4928. "email": "hello@gjcampbell.co.uk",
  4929. "homepage": "https://github.com/GrahamCampbell"
  4930. }
  4931. ],
  4932. "description": "Option Type for PHP",
  4933. "keywords": [
  4934. "language",
  4935. "option",
  4936. "php",
  4937. "type"
  4938. ],
  4939. "support": {
  4940. "issues": "https://github.com/schmittjoh/php-option/issues",
  4941. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4942. },
  4943. "funding": [
  4944. {
  4945. "url": "https://github.com/GrahamCampbell",
  4946. "type": "github"
  4947. },
  4948. {
  4949. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4950. "type": "tidelift"
  4951. }
  4952. ],
  4953. "time": "2023-11-12T21:59:55+00:00"
  4954. },
  4955. {
  4956. "name": "psr/cache",
  4957. "version": "3.0.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/php-fig/cache.git",
  4961. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4966. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4967. "shasum": ""
  4968. },
  4969. "require": {
  4970. "php": ">=8.0.0"
  4971. },
  4972. "type": "library",
  4973. "extra": {
  4974. "branch-alias": {
  4975. "dev-master": "1.0.x-dev"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "psr-4": {
  4980. "Psr\\Cache\\": "src/"
  4981. }
  4982. },
  4983. "notification-url": "https://packagist.org/downloads/",
  4984. "license": [
  4985. "MIT"
  4986. ],
  4987. "authors": [
  4988. {
  4989. "name": "PHP-FIG",
  4990. "homepage": "https://www.php-fig.org/"
  4991. }
  4992. ],
  4993. "description": "Common interface for caching libraries",
  4994. "keywords": [
  4995. "cache",
  4996. "psr",
  4997. "psr-6"
  4998. ],
  4999. "support": {
  5000. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5001. },
  5002. "time": "2021-02-03T23:26:27+00:00"
  5003. },
  5004. {
  5005. "name": "psr/clock",
  5006. "version": "1.0.0",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/php-fig/clock.git",
  5010. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5015. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5016. "shasum": ""
  5017. },
  5018. "require": {
  5019. "php": "^7.0 || ^8.0"
  5020. },
  5021. "type": "library",
  5022. "autoload": {
  5023. "psr-4": {
  5024. "Psr\\Clock\\": "src/"
  5025. }
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "PHP-FIG",
  5034. "homepage": "https://www.php-fig.org/"
  5035. }
  5036. ],
  5037. "description": "Common interface for reading the clock.",
  5038. "homepage": "https://github.com/php-fig/clock",
  5039. "keywords": [
  5040. "clock",
  5041. "now",
  5042. "psr",
  5043. "psr-20",
  5044. "time"
  5045. ],
  5046. "support": {
  5047. "issues": "https://github.com/php-fig/clock/issues",
  5048. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5049. },
  5050. "time": "2022-11-25T14:36:26+00:00"
  5051. },
  5052. {
  5053. "name": "psr/container",
  5054. "version": "2.0.2",
  5055. "source": {
  5056. "type": "git",
  5057. "url": "https://github.com/php-fig/container.git",
  5058. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5059. },
  5060. "dist": {
  5061. "type": "zip",
  5062. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5063. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5064. "shasum": ""
  5065. },
  5066. "require": {
  5067. "php": ">=7.4.0"
  5068. },
  5069. "type": "library",
  5070. "extra": {
  5071. "branch-alias": {
  5072. "dev-master": "2.0.x-dev"
  5073. }
  5074. },
  5075. "autoload": {
  5076. "psr-4": {
  5077. "Psr\\Container\\": "src/"
  5078. }
  5079. },
  5080. "notification-url": "https://packagist.org/downloads/",
  5081. "license": [
  5082. "MIT"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "PHP-FIG",
  5087. "homepage": "https://www.php-fig.org/"
  5088. }
  5089. ],
  5090. "description": "Common Container Interface (PHP FIG PSR-11)",
  5091. "homepage": "https://github.com/php-fig/container",
  5092. "keywords": [
  5093. "PSR-11",
  5094. "container",
  5095. "container-interface",
  5096. "container-interop",
  5097. "psr"
  5098. ],
  5099. "support": {
  5100. "issues": "https://github.com/php-fig/container/issues",
  5101. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5102. },
  5103. "time": "2021-11-05T16:47:00+00:00"
  5104. },
  5105. {
  5106. "name": "psr/event-dispatcher",
  5107. "version": "1.0.0",
  5108. "source": {
  5109. "type": "git",
  5110. "url": "https://github.com/php-fig/event-dispatcher.git",
  5111. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5112. },
  5113. "dist": {
  5114. "type": "zip",
  5115. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5116. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5117. "shasum": ""
  5118. },
  5119. "require": {
  5120. "php": ">=7.2.0"
  5121. },
  5122. "type": "library",
  5123. "extra": {
  5124. "branch-alias": {
  5125. "dev-master": "1.0.x-dev"
  5126. }
  5127. },
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Psr\\EventDispatcher\\": "src/"
  5131. }
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "MIT"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "PHP-FIG",
  5140. "homepage": "http://www.php-fig.org/"
  5141. }
  5142. ],
  5143. "description": "Standard interfaces for event handling.",
  5144. "keywords": [
  5145. "events",
  5146. "psr",
  5147. "psr-14"
  5148. ],
  5149. "support": {
  5150. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5151. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5152. },
  5153. "time": "2019-01-08T18:20:26+00:00"
  5154. },
  5155. {
  5156. "name": "psr/http-client",
  5157. "version": "1.0.3",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/php-fig/http-client.git",
  5161. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5166. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "php": "^7.0 || ^8.0",
  5171. "psr/http-message": "^1.0 || ^2.0"
  5172. },
  5173. "type": "library",
  5174. "extra": {
  5175. "branch-alias": {
  5176. "dev-master": "1.0.x-dev"
  5177. }
  5178. },
  5179. "autoload": {
  5180. "psr-4": {
  5181. "Psr\\Http\\Client\\": "src/"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "MIT"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "PHP-FIG",
  5191. "homepage": "https://www.php-fig.org/"
  5192. }
  5193. ],
  5194. "description": "Common interface for HTTP clients",
  5195. "homepage": "https://github.com/php-fig/http-client",
  5196. "keywords": [
  5197. "http",
  5198. "http-client",
  5199. "psr",
  5200. "psr-18"
  5201. ],
  5202. "support": {
  5203. "source": "https://github.com/php-fig/http-client"
  5204. },
  5205. "time": "2023-09-23T14:17:50+00:00"
  5206. },
  5207. {
  5208. "name": "psr/http-factory",
  5209. "version": "1.1.0",
  5210. "source": {
  5211. "type": "git",
  5212. "url": "https://github.com/php-fig/http-factory.git",
  5213. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5214. },
  5215. "dist": {
  5216. "type": "zip",
  5217. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5218. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5219. "shasum": ""
  5220. },
  5221. "require": {
  5222. "php": ">=7.1",
  5223. "psr/http-message": "^1.0 || ^2.0"
  5224. },
  5225. "type": "library",
  5226. "extra": {
  5227. "branch-alias": {
  5228. "dev-master": "1.0.x-dev"
  5229. }
  5230. },
  5231. "autoload": {
  5232. "psr-4": {
  5233. "Psr\\Http\\Message\\": "src/"
  5234. }
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "PHP-FIG",
  5243. "homepage": "https://www.php-fig.org/"
  5244. }
  5245. ],
  5246. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5247. "keywords": [
  5248. "factory",
  5249. "http",
  5250. "message",
  5251. "psr",
  5252. "psr-17",
  5253. "psr-7",
  5254. "request",
  5255. "response"
  5256. ],
  5257. "support": {
  5258. "source": "https://github.com/php-fig/http-factory"
  5259. },
  5260. "time": "2024-04-15T12:06:14+00:00"
  5261. },
  5262. {
  5263. "name": "psr/http-message",
  5264. "version": "2.0",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://github.com/php-fig/http-message.git",
  5268. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5273. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5274. "shasum": ""
  5275. },
  5276. "require": {
  5277. "php": "^7.2 || ^8.0"
  5278. },
  5279. "type": "library",
  5280. "extra": {
  5281. "branch-alias": {
  5282. "dev-master": "2.0.x-dev"
  5283. }
  5284. },
  5285. "autoload": {
  5286. "psr-4": {
  5287. "Psr\\Http\\Message\\": "src/"
  5288. }
  5289. },
  5290. "notification-url": "https://packagist.org/downloads/",
  5291. "license": [
  5292. "MIT"
  5293. ],
  5294. "authors": [
  5295. {
  5296. "name": "PHP-FIG",
  5297. "homepage": "https://www.php-fig.org/"
  5298. }
  5299. ],
  5300. "description": "Common interface for HTTP messages",
  5301. "homepage": "https://github.com/php-fig/http-message",
  5302. "keywords": [
  5303. "http",
  5304. "http-message",
  5305. "psr",
  5306. "psr-7",
  5307. "request",
  5308. "response"
  5309. ],
  5310. "support": {
  5311. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5312. },
  5313. "time": "2023-04-04T09:54:51+00:00"
  5314. },
  5315. {
  5316. "name": "psr/http-server-handler",
  5317. "version": "1.0.2",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/php-fig/http-server-handler.git",
  5321. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5326. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5327. "shasum": ""
  5328. },
  5329. "require": {
  5330. "php": ">=7.0",
  5331. "psr/http-message": "^1.0 || ^2.0"
  5332. },
  5333. "type": "library",
  5334. "extra": {
  5335. "branch-alias": {
  5336. "dev-master": "1.0.x-dev"
  5337. }
  5338. },
  5339. "autoload": {
  5340. "psr-4": {
  5341. "Psr\\Http\\Server\\": "src/"
  5342. }
  5343. },
  5344. "notification-url": "https://packagist.org/downloads/",
  5345. "license": [
  5346. "MIT"
  5347. ],
  5348. "authors": [
  5349. {
  5350. "name": "PHP-FIG",
  5351. "homepage": "https://www.php-fig.org/"
  5352. }
  5353. ],
  5354. "description": "Common interface for HTTP server-side request handler",
  5355. "keywords": [
  5356. "handler",
  5357. "http",
  5358. "http-interop",
  5359. "psr",
  5360. "psr-15",
  5361. "psr-7",
  5362. "request",
  5363. "response",
  5364. "server"
  5365. ],
  5366. "support": {
  5367. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5368. },
  5369. "time": "2023-04-10T20:06:20+00:00"
  5370. },
  5371. {
  5372. "name": "psr/http-server-middleware",
  5373. "version": "1.0.2",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/php-fig/http-server-middleware.git",
  5377. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5382. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5383. "shasum": ""
  5384. },
  5385. "require": {
  5386. "php": ">=7.0",
  5387. "psr/http-message": "^1.0 || ^2.0",
  5388. "psr/http-server-handler": "^1.0"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-master": "1.0.x-dev"
  5394. }
  5395. },
  5396. "autoload": {
  5397. "psr-4": {
  5398. "Psr\\Http\\Server\\": "src/"
  5399. }
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "PHP-FIG",
  5408. "homepage": "https://www.php-fig.org/"
  5409. }
  5410. ],
  5411. "description": "Common interface for HTTP server-side middleware",
  5412. "keywords": [
  5413. "http",
  5414. "http-interop",
  5415. "middleware",
  5416. "psr",
  5417. "psr-15",
  5418. "psr-7",
  5419. "request",
  5420. "response"
  5421. ],
  5422. "support": {
  5423. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5424. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5425. },
  5426. "time": "2023-04-11T06:14:47+00:00"
  5427. },
  5428. {
  5429. "name": "psr/log",
  5430. "version": "3.0.0",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://github.com/php-fig/log.git",
  5434. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5439. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5440. "shasum": ""
  5441. },
  5442. "require": {
  5443. "php": ">=8.0.0"
  5444. },
  5445. "type": "library",
  5446. "extra": {
  5447. "branch-alias": {
  5448. "dev-master": "3.x-dev"
  5449. }
  5450. },
  5451. "autoload": {
  5452. "psr-4": {
  5453. "Psr\\Log\\": "src"
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "MIT"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "PHP-FIG",
  5463. "homepage": "https://www.php-fig.org/"
  5464. }
  5465. ],
  5466. "description": "Common interface for logging libraries",
  5467. "homepage": "https://github.com/php-fig/log",
  5468. "keywords": [
  5469. "log",
  5470. "psr",
  5471. "psr-3"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5475. },
  5476. "time": "2021-07-14T16:46:02+00:00"
  5477. },
  5478. {
  5479. "name": "psr/simple-cache",
  5480. "version": "3.0.0",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/php-fig/simple-cache.git",
  5484. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5489. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "php": ">=8.0.0"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-master": "3.0.x-dev"
  5499. }
  5500. },
  5501. "autoload": {
  5502. "psr-4": {
  5503. "Psr\\SimpleCache\\": "src/"
  5504. }
  5505. },
  5506. "notification-url": "https://packagist.org/downloads/",
  5507. "license": [
  5508. "MIT"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "PHP-FIG",
  5513. "homepage": "https://www.php-fig.org/"
  5514. }
  5515. ],
  5516. "description": "Common interfaces for simple caching",
  5517. "keywords": [
  5518. "cache",
  5519. "caching",
  5520. "psr",
  5521. "psr-16",
  5522. "simple-cache"
  5523. ],
  5524. "support": {
  5525. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5526. },
  5527. "time": "2021-10-29T13:26:27+00:00"
  5528. },
  5529. {
  5530. "name": "ralouphie/getallheaders",
  5531. "version": "3.0.3",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/ralouphie/getallheaders.git",
  5535. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5540. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5541. "shasum": ""
  5542. },
  5543. "require": {
  5544. "php": ">=5.6"
  5545. },
  5546. "require-dev": {
  5547. "php-coveralls/php-coveralls": "^2.1",
  5548. "phpunit/phpunit": "^5 || ^6.5"
  5549. },
  5550. "type": "library",
  5551. "autoload": {
  5552. "files": [
  5553. "src/getallheaders.php"
  5554. ]
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Ralph Khattar",
  5563. "email": "ralph.khattar@gmail.com"
  5564. }
  5565. ],
  5566. "description": "A polyfill for getallheaders.",
  5567. "support": {
  5568. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5569. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5570. },
  5571. "time": "2019-03-08T08:55:37+00:00"
  5572. },
  5573. {
  5574. "name": "swow/psr7-plus",
  5575. "version": "v1.1.2",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/swow/psr7-plus.git",
  5579. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5584. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=8.0",
  5589. "psr/http-client": "^1.0",
  5590. "psr/http-factory": "^1.0",
  5591. "psr/http-message": "^1.1|^2.0"
  5592. },
  5593. "type": "library",
  5594. "autoload": {
  5595. "psr-4": {
  5596. "Swow\\Psr7\\Message\\": "src/Message/"
  5597. }
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "Apache-2.0"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "twose",
  5606. "email": "twosee@php.net"
  5607. }
  5608. ],
  5609. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5610. "keywords": [
  5611. "http",
  5612. "psr17",
  5613. "psr7",
  5614. "swow",
  5615. "websocket"
  5616. ],
  5617. "support": {
  5618. "issues": "https://github.com/swow/swow",
  5619. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5620. },
  5621. "time": "2023-06-15T09:18:11+00:00"
  5622. },
  5623. {
  5624. "name": "symfony/console",
  5625. "version": "v6.4.8",
  5626. "source": {
  5627. "type": "git",
  5628. "url": "https://github.com/symfony/console.git",
  5629. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5630. },
  5631. "dist": {
  5632. "type": "zip",
  5633. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5634. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5635. "shasum": ""
  5636. },
  5637. "require": {
  5638. "php": ">=8.1",
  5639. "symfony/deprecation-contracts": "^2.5|^3",
  5640. "symfony/polyfill-mbstring": "~1.0",
  5641. "symfony/service-contracts": "^2.5|^3",
  5642. "symfony/string": "^5.4|^6.0|^7.0"
  5643. },
  5644. "conflict": {
  5645. "symfony/dependency-injection": "<5.4",
  5646. "symfony/dotenv": "<5.4",
  5647. "symfony/event-dispatcher": "<5.4",
  5648. "symfony/lock": "<5.4",
  5649. "symfony/process": "<5.4"
  5650. },
  5651. "provide": {
  5652. "psr/log-implementation": "1.0|2.0|3.0"
  5653. },
  5654. "require-dev": {
  5655. "psr/log": "^1|^2|^3",
  5656. "symfony/config": "^5.4|^6.0|^7.0",
  5657. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5658. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5659. "symfony/http-foundation": "^6.4|^7.0",
  5660. "symfony/http-kernel": "^6.4|^7.0",
  5661. "symfony/lock": "^5.4|^6.0|^7.0",
  5662. "symfony/messenger": "^5.4|^6.0|^7.0",
  5663. "symfony/process": "^5.4|^6.0|^7.0",
  5664. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5665. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5666. },
  5667. "type": "library",
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Symfony\\Component\\Console\\": ""
  5671. },
  5672. "exclude-from-classmap": [
  5673. "/Tests/"
  5674. ]
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "MIT"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Fabien Potencier",
  5683. "email": "fabien@symfony.com"
  5684. },
  5685. {
  5686. "name": "Symfony Community",
  5687. "homepage": "https://symfony.com/contributors"
  5688. }
  5689. ],
  5690. "description": "Eases the creation of beautiful and testable command line interfaces",
  5691. "homepage": "https://symfony.com",
  5692. "keywords": [
  5693. "cli",
  5694. "command-line",
  5695. "console",
  5696. "terminal"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://symfony.com/sponsor",
  5704. "type": "custom"
  5705. },
  5706. {
  5707. "url": "https://github.com/fabpot",
  5708. "type": "github"
  5709. },
  5710. {
  5711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5712. "type": "tidelift"
  5713. }
  5714. ],
  5715. "time": "2024-05-31T14:49:08+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/deprecation-contracts",
  5719. "version": "v3.5.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/deprecation-contracts.git",
  5723. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5728. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=8.1"
  5733. },
  5734. "type": "library",
  5735. "extra": {
  5736. "branch-alias": {
  5737. "dev-main": "3.5-dev"
  5738. },
  5739. "thanks": {
  5740. "name": "symfony/contracts",
  5741. "url": "https://github.com/symfony/contracts"
  5742. }
  5743. },
  5744. "autoload": {
  5745. "files": [
  5746. "function.php"
  5747. ]
  5748. },
  5749. "notification-url": "https://packagist.org/downloads/",
  5750. "license": [
  5751. "MIT"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "Nicolas Grekas",
  5756. "email": "p@tchwork.com"
  5757. },
  5758. {
  5759. "name": "Symfony Community",
  5760. "homepage": "https://symfony.com/contributors"
  5761. }
  5762. ],
  5763. "description": "A generic function and convention to trigger deprecation notices",
  5764. "homepage": "https://symfony.com",
  5765. "support": {
  5766. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5767. },
  5768. "funding": [
  5769. {
  5770. "url": "https://symfony.com/sponsor",
  5771. "type": "custom"
  5772. },
  5773. {
  5774. "url": "https://github.com/fabpot",
  5775. "type": "github"
  5776. },
  5777. {
  5778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5779. "type": "tidelift"
  5780. }
  5781. ],
  5782. "time": "2024-04-18T09:32:20+00:00"
  5783. },
  5784. {
  5785. "name": "symfony/finder",
  5786. "version": "v6.4.8",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/symfony/finder.git",
  5790. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  5795. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  5796. "shasum": ""
  5797. },
  5798. "require": {
  5799. "php": ">=8.1"
  5800. },
  5801. "require-dev": {
  5802. "symfony/filesystem": "^6.0|^7.0"
  5803. },
  5804. "type": "library",
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Symfony\\Component\\Finder\\": ""
  5808. },
  5809. "exclude-from-classmap": [
  5810. "/Tests/"
  5811. ]
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Fabien Potencier",
  5820. "email": "fabien@symfony.com"
  5821. },
  5822. {
  5823. "name": "Symfony Community",
  5824. "homepage": "https://symfony.com/contributors"
  5825. }
  5826. ],
  5827. "description": "Finds files and directories via an intuitive fluent interface",
  5828. "homepage": "https://symfony.com",
  5829. "support": {
  5830. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  5831. },
  5832. "funding": [
  5833. {
  5834. "url": "https://symfony.com/sponsor",
  5835. "type": "custom"
  5836. },
  5837. {
  5838. "url": "https://github.com/fabpot",
  5839. "type": "github"
  5840. },
  5841. {
  5842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5843. "type": "tidelift"
  5844. }
  5845. ],
  5846. "time": "2024-05-31T14:49:08+00:00"
  5847. },
  5848. {
  5849. "name": "symfony/polyfill-ctype",
  5850. "version": "v1.29.0",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://github.com/symfony/polyfill-ctype.git",
  5854. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5859. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5860. "shasum": ""
  5861. },
  5862. "require": {
  5863. "php": ">=7.1"
  5864. },
  5865. "provide": {
  5866. "ext-ctype": "*"
  5867. },
  5868. "suggest": {
  5869. "ext-ctype": "For best performance"
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "thanks": {
  5874. "name": "symfony/polyfill",
  5875. "url": "https://github.com/symfony/polyfill"
  5876. }
  5877. },
  5878. "autoload": {
  5879. "files": [
  5880. "bootstrap.php"
  5881. ],
  5882. "psr-4": {
  5883. "Symfony\\Polyfill\\Ctype\\": ""
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Gert de Pagter",
  5893. "email": "BackEndTea@gmail.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Symfony polyfill for ctype functions",
  5901. "homepage": "https://symfony.com",
  5902. "keywords": [
  5903. "compatibility",
  5904. "ctype",
  5905. "polyfill",
  5906. "portable"
  5907. ],
  5908. "support": {
  5909. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5910. },
  5911. "funding": [
  5912. {
  5913. "url": "https://symfony.com/sponsor",
  5914. "type": "custom"
  5915. },
  5916. {
  5917. "url": "https://github.com/fabpot",
  5918. "type": "github"
  5919. },
  5920. {
  5921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5922. "type": "tidelift"
  5923. }
  5924. ],
  5925. "time": "2024-01-29T20:11:03+00:00"
  5926. },
  5927. {
  5928. "name": "symfony/polyfill-intl-grapheme",
  5929. "version": "v1.29.0",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5933. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5938. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "php": ">=7.1"
  5943. },
  5944. "suggest": {
  5945. "ext-intl": "For best performance"
  5946. },
  5947. "type": "library",
  5948. "extra": {
  5949. "thanks": {
  5950. "name": "symfony/polyfill",
  5951. "url": "https://github.com/symfony/polyfill"
  5952. }
  5953. },
  5954. "autoload": {
  5955. "files": [
  5956. "bootstrap.php"
  5957. ],
  5958. "psr-4": {
  5959. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5960. }
  5961. },
  5962. "notification-url": "https://packagist.org/downloads/",
  5963. "license": [
  5964. "MIT"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Nicolas Grekas",
  5969. "email": "p@tchwork.com"
  5970. },
  5971. {
  5972. "name": "Symfony Community",
  5973. "homepage": "https://symfony.com/contributors"
  5974. }
  5975. ],
  5976. "description": "Symfony polyfill for intl's grapheme_* functions",
  5977. "homepage": "https://symfony.com",
  5978. "keywords": [
  5979. "compatibility",
  5980. "grapheme",
  5981. "intl",
  5982. "polyfill",
  5983. "portable",
  5984. "shim"
  5985. ],
  5986. "support": {
  5987. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5988. },
  5989. "funding": [
  5990. {
  5991. "url": "https://symfony.com/sponsor",
  5992. "type": "custom"
  5993. },
  5994. {
  5995. "url": "https://github.com/fabpot",
  5996. "type": "github"
  5997. },
  5998. {
  5999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6000. "type": "tidelift"
  6001. }
  6002. ],
  6003. "time": "2024-01-29T20:11:03+00:00"
  6004. },
  6005. {
  6006. "name": "symfony/polyfill-intl-normalizer",
  6007. "version": "v1.29.0",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6011. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6016. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": ">=7.1"
  6021. },
  6022. "suggest": {
  6023. "ext-intl": "For best performance"
  6024. },
  6025. "type": "library",
  6026. "extra": {
  6027. "thanks": {
  6028. "name": "symfony/polyfill",
  6029. "url": "https://github.com/symfony/polyfill"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "files": [
  6034. "bootstrap.php"
  6035. ],
  6036. "psr-4": {
  6037. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6038. },
  6039. "classmap": [
  6040. "Resources/stubs"
  6041. ]
  6042. },
  6043. "notification-url": "https://packagist.org/downloads/",
  6044. "license": [
  6045. "MIT"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "Nicolas Grekas",
  6050. "email": "p@tchwork.com"
  6051. },
  6052. {
  6053. "name": "Symfony Community",
  6054. "homepage": "https://symfony.com/contributors"
  6055. }
  6056. ],
  6057. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6058. "homepage": "https://symfony.com",
  6059. "keywords": [
  6060. "compatibility",
  6061. "intl",
  6062. "normalizer",
  6063. "polyfill",
  6064. "portable",
  6065. "shim"
  6066. ],
  6067. "support": {
  6068. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6069. },
  6070. "funding": [
  6071. {
  6072. "url": "https://symfony.com/sponsor",
  6073. "type": "custom"
  6074. },
  6075. {
  6076. "url": "https://github.com/fabpot",
  6077. "type": "github"
  6078. },
  6079. {
  6080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6081. "type": "tidelift"
  6082. }
  6083. ],
  6084. "time": "2024-01-29T20:11:03+00:00"
  6085. },
  6086. {
  6087. "name": "symfony/polyfill-mbstring",
  6088. "version": "v1.29.0",
  6089. "source": {
  6090. "type": "git",
  6091. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6092. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6093. },
  6094. "dist": {
  6095. "type": "zip",
  6096. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6097. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6098. "shasum": ""
  6099. },
  6100. "require": {
  6101. "php": ">=7.1"
  6102. },
  6103. "provide": {
  6104. "ext-mbstring": "*"
  6105. },
  6106. "suggest": {
  6107. "ext-mbstring": "For best performance"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "thanks": {
  6112. "name": "symfony/polyfill",
  6113. "url": "https://github.com/symfony/polyfill"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "files": [
  6118. "bootstrap.php"
  6119. ],
  6120. "psr-4": {
  6121. "Symfony\\Polyfill\\Mbstring\\": ""
  6122. }
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Nicolas Grekas",
  6131. "email": "p@tchwork.com"
  6132. },
  6133. {
  6134. "name": "Symfony Community",
  6135. "homepage": "https://symfony.com/contributors"
  6136. }
  6137. ],
  6138. "description": "Symfony polyfill for the Mbstring extension",
  6139. "homepage": "https://symfony.com",
  6140. "keywords": [
  6141. "compatibility",
  6142. "mbstring",
  6143. "polyfill",
  6144. "portable",
  6145. "shim"
  6146. ],
  6147. "support": {
  6148. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6149. },
  6150. "funding": [
  6151. {
  6152. "url": "https://symfony.com/sponsor",
  6153. "type": "custom"
  6154. },
  6155. {
  6156. "url": "https://github.com/fabpot",
  6157. "type": "github"
  6158. },
  6159. {
  6160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6161. "type": "tidelift"
  6162. }
  6163. ],
  6164. "time": "2024-01-29T20:11:03+00:00"
  6165. },
  6166. {
  6167. "name": "symfony/polyfill-php80",
  6168. "version": "v1.29.0",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://github.com/symfony/polyfill-php80.git",
  6172. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6177. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6178. "shasum": ""
  6179. },
  6180. "require": {
  6181. "php": ">=7.1"
  6182. },
  6183. "type": "library",
  6184. "extra": {
  6185. "thanks": {
  6186. "name": "symfony/polyfill",
  6187. "url": "https://github.com/symfony/polyfill"
  6188. }
  6189. },
  6190. "autoload": {
  6191. "files": [
  6192. "bootstrap.php"
  6193. ],
  6194. "psr-4": {
  6195. "Symfony\\Polyfill\\Php80\\": ""
  6196. },
  6197. "classmap": [
  6198. "Resources/stubs"
  6199. ]
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "Ion Bazan",
  6208. "email": "ion.bazan@gmail.com"
  6209. },
  6210. {
  6211. "name": "Nicolas Grekas",
  6212. "email": "p@tchwork.com"
  6213. },
  6214. {
  6215. "name": "Symfony Community",
  6216. "homepage": "https://symfony.com/contributors"
  6217. }
  6218. ],
  6219. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6220. "homepage": "https://symfony.com",
  6221. "keywords": [
  6222. "compatibility",
  6223. "polyfill",
  6224. "portable",
  6225. "shim"
  6226. ],
  6227. "support": {
  6228. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6229. },
  6230. "funding": [
  6231. {
  6232. "url": "https://symfony.com/sponsor",
  6233. "type": "custom"
  6234. },
  6235. {
  6236. "url": "https://github.com/fabpot",
  6237. "type": "github"
  6238. },
  6239. {
  6240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6241. "type": "tidelift"
  6242. }
  6243. ],
  6244. "time": "2024-01-29T20:11:03+00:00"
  6245. },
  6246. {
  6247. "name": "symfony/service-contracts",
  6248. "version": "v3.5.0",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/symfony/service-contracts.git",
  6252. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6257. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "php": ">=8.1",
  6262. "psr/container": "^1.1|^2.0",
  6263. "symfony/deprecation-contracts": "^2.5|^3"
  6264. },
  6265. "conflict": {
  6266. "ext-psr": "<1.1|>=2"
  6267. },
  6268. "type": "library",
  6269. "extra": {
  6270. "branch-alias": {
  6271. "dev-main": "3.5-dev"
  6272. },
  6273. "thanks": {
  6274. "name": "symfony/contracts",
  6275. "url": "https://github.com/symfony/contracts"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "psr-4": {
  6280. "Symfony\\Contracts\\Service\\": ""
  6281. },
  6282. "exclude-from-classmap": [
  6283. "/Test/"
  6284. ]
  6285. },
  6286. "notification-url": "https://packagist.org/downloads/",
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Nicolas Grekas",
  6293. "email": "p@tchwork.com"
  6294. },
  6295. {
  6296. "name": "Symfony Community",
  6297. "homepage": "https://symfony.com/contributors"
  6298. }
  6299. ],
  6300. "description": "Generic abstractions related to writing services",
  6301. "homepage": "https://symfony.com",
  6302. "keywords": [
  6303. "abstractions",
  6304. "contracts",
  6305. "decoupling",
  6306. "interfaces",
  6307. "interoperability",
  6308. "standards"
  6309. ],
  6310. "support": {
  6311. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://symfony.com/sponsor",
  6316. "type": "custom"
  6317. },
  6318. {
  6319. "url": "https://github.com/fabpot",
  6320. "type": "github"
  6321. },
  6322. {
  6323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6324. "type": "tidelift"
  6325. }
  6326. ],
  6327. "time": "2024-04-18T09:32:20+00:00"
  6328. },
  6329. {
  6330. "name": "symfony/string",
  6331. "version": "v6.4.8",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/symfony/string.git",
  6335. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6340. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "php": ">=8.1",
  6345. "symfony/polyfill-ctype": "~1.8",
  6346. "symfony/polyfill-intl-grapheme": "~1.0",
  6347. "symfony/polyfill-intl-normalizer": "~1.0",
  6348. "symfony/polyfill-mbstring": "~1.0"
  6349. },
  6350. "conflict": {
  6351. "symfony/translation-contracts": "<2.5"
  6352. },
  6353. "require-dev": {
  6354. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6355. "symfony/http-client": "^5.4|^6.0|^7.0",
  6356. "symfony/intl": "^6.2|^7.0",
  6357. "symfony/translation-contracts": "^2.5|^3.0",
  6358. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "files": [
  6363. "Resources/functions.php"
  6364. ],
  6365. "psr-4": {
  6366. "Symfony\\Component\\String\\": ""
  6367. },
  6368. "exclude-from-classmap": [
  6369. "/Tests/"
  6370. ]
  6371. },
  6372. "notification-url": "https://packagist.org/downloads/",
  6373. "license": [
  6374. "MIT"
  6375. ],
  6376. "authors": [
  6377. {
  6378. "name": "Nicolas Grekas",
  6379. "email": "p@tchwork.com"
  6380. },
  6381. {
  6382. "name": "Symfony Community",
  6383. "homepage": "https://symfony.com/contributors"
  6384. }
  6385. ],
  6386. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6387. "homepage": "https://symfony.com",
  6388. "keywords": [
  6389. "grapheme",
  6390. "i18n",
  6391. "string",
  6392. "unicode",
  6393. "utf-8",
  6394. "utf8"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6410. "type": "tidelift"
  6411. }
  6412. ],
  6413. "time": "2024-05-31T14:49:08+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/translation",
  6417. "version": "v6.4.8",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/translation.git",
  6421. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6426. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "php": ">=8.1",
  6431. "symfony/deprecation-contracts": "^2.5|^3",
  6432. "symfony/polyfill-mbstring": "~1.0",
  6433. "symfony/translation-contracts": "^2.5|^3.0"
  6434. },
  6435. "conflict": {
  6436. "symfony/config": "<5.4",
  6437. "symfony/console": "<5.4",
  6438. "symfony/dependency-injection": "<5.4",
  6439. "symfony/http-client-contracts": "<2.5",
  6440. "symfony/http-kernel": "<5.4",
  6441. "symfony/service-contracts": "<2.5",
  6442. "symfony/twig-bundle": "<5.4",
  6443. "symfony/yaml": "<5.4"
  6444. },
  6445. "provide": {
  6446. "symfony/translation-implementation": "2.3|3.0"
  6447. },
  6448. "require-dev": {
  6449. "nikic/php-parser": "^4.18|^5.0",
  6450. "psr/log": "^1|^2|^3",
  6451. "symfony/config": "^5.4|^6.0|^7.0",
  6452. "symfony/console": "^5.4|^6.0|^7.0",
  6453. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6454. "symfony/finder": "^5.4|^6.0|^7.0",
  6455. "symfony/http-client-contracts": "^2.5|^3.0",
  6456. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6457. "symfony/intl": "^5.4|^6.0|^7.0",
  6458. "symfony/polyfill-intl-icu": "^1.21",
  6459. "symfony/routing": "^5.4|^6.0|^7.0",
  6460. "symfony/service-contracts": "^2.5|^3",
  6461. "symfony/yaml": "^5.4|^6.0|^7.0"
  6462. },
  6463. "type": "library",
  6464. "autoload": {
  6465. "files": [
  6466. "Resources/functions.php"
  6467. ],
  6468. "psr-4": {
  6469. "Symfony\\Component\\Translation\\": ""
  6470. },
  6471. "exclude-from-classmap": [
  6472. "/Tests/"
  6473. ]
  6474. },
  6475. "notification-url": "https://packagist.org/downloads/",
  6476. "license": [
  6477. "MIT"
  6478. ],
  6479. "authors": [
  6480. {
  6481. "name": "Fabien Potencier",
  6482. "email": "fabien@symfony.com"
  6483. },
  6484. {
  6485. "name": "Symfony Community",
  6486. "homepage": "https://symfony.com/contributors"
  6487. }
  6488. ],
  6489. "description": "Provides tools to internationalize your application",
  6490. "homepage": "https://symfony.com",
  6491. "support": {
  6492. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6493. },
  6494. "funding": [
  6495. {
  6496. "url": "https://symfony.com/sponsor",
  6497. "type": "custom"
  6498. },
  6499. {
  6500. "url": "https://github.com/fabpot",
  6501. "type": "github"
  6502. },
  6503. {
  6504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6505. "type": "tidelift"
  6506. }
  6507. ],
  6508. "time": "2024-05-31T14:49:08+00:00"
  6509. },
  6510. {
  6511. "name": "symfony/translation-contracts",
  6512. "version": "v3.5.0",
  6513. "source": {
  6514. "type": "git",
  6515. "url": "https://github.com/symfony/translation-contracts.git",
  6516. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6517. },
  6518. "dist": {
  6519. "type": "zip",
  6520. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6521. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6522. "shasum": ""
  6523. },
  6524. "require": {
  6525. "php": ">=8.1"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-main": "3.5-dev"
  6531. },
  6532. "thanks": {
  6533. "name": "symfony/contracts",
  6534. "url": "https://github.com/symfony/contracts"
  6535. }
  6536. },
  6537. "autoload": {
  6538. "psr-4": {
  6539. "Symfony\\Contracts\\Translation\\": ""
  6540. },
  6541. "exclude-from-classmap": [
  6542. "/Test/"
  6543. ]
  6544. },
  6545. "notification-url": "https://packagist.org/downloads/",
  6546. "license": [
  6547. "MIT"
  6548. ],
  6549. "authors": [
  6550. {
  6551. "name": "Nicolas Grekas",
  6552. "email": "p@tchwork.com"
  6553. },
  6554. {
  6555. "name": "Symfony Community",
  6556. "homepage": "https://symfony.com/contributors"
  6557. }
  6558. ],
  6559. "description": "Generic abstractions related to translation",
  6560. "homepage": "https://symfony.com",
  6561. "keywords": [
  6562. "abstractions",
  6563. "contracts",
  6564. "decoupling",
  6565. "interfaces",
  6566. "interoperability",
  6567. "standards"
  6568. ],
  6569. "support": {
  6570. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6571. },
  6572. "funding": [
  6573. {
  6574. "url": "https://symfony.com/sponsor",
  6575. "type": "custom"
  6576. },
  6577. {
  6578. "url": "https://github.com/fabpot",
  6579. "type": "github"
  6580. },
  6581. {
  6582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6583. "type": "tidelift"
  6584. }
  6585. ],
  6586. "time": "2024-04-18T09:32:20+00:00"
  6587. },
  6588. {
  6589. "name": "vlucas/phpdotenv",
  6590. "version": "v5.6.0",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/vlucas/phpdotenv.git",
  6594. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6599. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "ext-pcre": "*",
  6604. "graham-campbell/result-type": "^1.1.2",
  6605. "php": "^7.2.5 || ^8.0",
  6606. "phpoption/phpoption": "^1.9.2",
  6607. "symfony/polyfill-ctype": "^1.24",
  6608. "symfony/polyfill-mbstring": "^1.24",
  6609. "symfony/polyfill-php80": "^1.24"
  6610. },
  6611. "require-dev": {
  6612. "bamarni/composer-bin-plugin": "^1.8.2",
  6613. "ext-filter": "*",
  6614. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6615. },
  6616. "suggest": {
  6617. "ext-filter": "Required to use the boolean validator."
  6618. },
  6619. "type": "library",
  6620. "extra": {
  6621. "bamarni-bin": {
  6622. "bin-links": true,
  6623. "forward-command": true
  6624. },
  6625. "branch-alias": {
  6626. "dev-master": "5.6-dev"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "psr-4": {
  6631. "Dotenv\\": "src/"
  6632. }
  6633. },
  6634. "notification-url": "https://packagist.org/downloads/",
  6635. "license": [
  6636. "BSD-3-Clause"
  6637. ],
  6638. "authors": [
  6639. {
  6640. "name": "Graham Campbell",
  6641. "email": "hello@gjcampbell.co.uk",
  6642. "homepage": "https://github.com/GrahamCampbell"
  6643. },
  6644. {
  6645. "name": "Vance Lucas",
  6646. "email": "vance@vancelucas.com",
  6647. "homepage": "https://github.com/vlucas"
  6648. }
  6649. ],
  6650. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6651. "keywords": [
  6652. "dotenv",
  6653. "env",
  6654. "environment"
  6655. ],
  6656. "support": {
  6657. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6658. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6659. },
  6660. "funding": [
  6661. {
  6662. "url": "https://github.com/GrahamCampbell",
  6663. "type": "github"
  6664. },
  6665. {
  6666. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6667. "type": "tidelift"
  6668. }
  6669. ],
  6670. "time": "2023-11-12T22:43:29+00:00"
  6671. }
  6672. ],
  6673. "packages-dev": [
  6674. {
  6675. "name": "clue/ndjson-react",
  6676. "version": "v1.3.0",
  6677. "source": {
  6678. "type": "git",
  6679. "url": "https://github.com/clue/reactphp-ndjson.git",
  6680. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6681. },
  6682. "dist": {
  6683. "type": "zip",
  6684. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6685. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6686. "shasum": ""
  6687. },
  6688. "require": {
  6689. "php": ">=5.3",
  6690. "react/stream": "^1.2"
  6691. },
  6692. "require-dev": {
  6693. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6694. "react/event-loop": "^1.2"
  6695. },
  6696. "type": "library",
  6697. "autoload": {
  6698. "psr-4": {
  6699. "Clue\\React\\NDJson\\": "src/"
  6700. }
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "MIT"
  6705. ],
  6706. "authors": [
  6707. {
  6708. "name": "Christian Lück",
  6709. "email": "christian@clue.engineering"
  6710. }
  6711. ],
  6712. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6713. "homepage": "https://github.com/clue/reactphp-ndjson",
  6714. "keywords": [
  6715. "NDJSON",
  6716. "json",
  6717. "jsonlines",
  6718. "newline",
  6719. "reactphp",
  6720. "streaming"
  6721. ],
  6722. "support": {
  6723. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6724. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6725. },
  6726. "funding": [
  6727. {
  6728. "url": "https://clue.engineering/support",
  6729. "type": "custom"
  6730. },
  6731. {
  6732. "url": "https://github.com/clue",
  6733. "type": "github"
  6734. }
  6735. ],
  6736. "time": "2022-12-23T10:58:28+00:00"
  6737. },
  6738. {
  6739. "name": "composer/pcre",
  6740. "version": "3.1.4",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/composer/pcre.git",
  6744. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6749. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "php": "^7.4 || ^8.0"
  6754. },
  6755. "require-dev": {
  6756. "phpstan/phpstan": "^1.3",
  6757. "phpstan/phpstan-strict-rules": "^1.1",
  6758. "symfony/phpunit-bridge": "^5"
  6759. },
  6760. "type": "library",
  6761. "extra": {
  6762. "branch-alias": {
  6763. "dev-main": "3.x-dev"
  6764. }
  6765. },
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Composer\\Pcre\\": "src"
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Jordi Boggiano",
  6778. "email": "j.boggiano@seld.be",
  6779. "homepage": "http://seld.be"
  6780. }
  6781. ],
  6782. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6783. "keywords": [
  6784. "PCRE",
  6785. "preg",
  6786. "regex",
  6787. "regular expression"
  6788. ],
  6789. "support": {
  6790. "issues": "https://github.com/composer/pcre/issues",
  6791. "source": "https://github.com/composer/pcre/tree/3.1.4"
  6792. },
  6793. "funding": [
  6794. {
  6795. "url": "https://packagist.com",
  6796. "type": "custom"
  6797. },
  6798. {
  6799. "url": "https://github.com/composer",
  6800. "type": "github"
  6801. },
  6802. {
  6803. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6804. "type": "tidelift"
  6805. }
  6806. ],
  6807. "time": "2024-05-27T13:40:54+00:00"
  6808. },
  6809. {
  6810. "name": "composer/semver",
  6811. "version": "3.4.0",
  6812. "source": {
  6813. "type": "git",
  6814. "url": "https://github.com/composer/semver.git",
  6815. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6816. },
  6817. "dist": {
  6818. "type": "zip",
  6819. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6820. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6821. "shasum": ""
  6822. },
  6823. "require": {
  6824. "php": "^5.3.2 || ^7.0 || ^8.0"
  6825. },
  6826. "require-dev": {
  6827. "phpstan/phpstan": "^1.4",
  6828. "symfony/phpunit-bridge": "^4.2 || ^5"
  6829. },
  6830. "type": "library",
  6831. "extra": {
  6832. "branch-alias": {
  6833. "dev-main": "3.x-dev"
  6834. }
  6835. },
  6836. "autoload": {
  6837. "psr-4": {
  6838. "Composer\\Semver\\": "src"
  6839. }
  6840. },
  6841. "notification-url": "https://packagist.org/downloads/",
  6842. "license": [
  6843. "MIT"
  6844. ],
  6845. "authors": [
  6846. {
  6847. "name": "Nils Adermann",
  6848. "email": "naderman@naderman.de",
  6849. "homepage": "http://www.naderman.de"
  6850. },
  6851. {
  6852. "name": "Jordi Boggiano",
  6853. "email": "j.boggiano@seld.be",
  6854. "homepage": "http://seld.be"
  6855. },
  6856. {
  6857. "name": "Rob Bast",
  6858. "email": "rob.bast@gmail.com",
  6859. "homepage": "http://robbast.nl"
  6860. }
  6861. ],
  6862. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6863. "keywords": [
  6864. "semantic",
  6865. "semver",
  6866. "validation",
  6867. "versioning"
  6868. ],
  6869. "support": {
  6870. "irc": "ircs://irc.libera.chat:6697/composer",
  6871. "issues": "https://github.com/composer/semver/issues",
  6872. "source": "https://github.com/composer/semver/tree/3.4.0"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://packagist.com",
  6877. "type": "custom"
  6878. },
  6879. {
  6880. "url": "https://github.com/composer",
  6881. "type": "github"
  6882. },
  6883. {
  6884. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6885. "type": "tidelift"
  6886. }
  6887. ],
  6888. "time": "2023-08-31T09:50:34+00:00"
  6889. },
  6890. {
  6891. "name": "composer/xdebug-handler",
  6892. "version": "3.0.5",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://github.com/composer/xdebug-handler.git",
  6896. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6901. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6902. "shasum": ""
  6903. },
  6904. "require": {
  6905. "composer/pcre": "^1 || ^2 || ^3",
  6906. "php": "^7.2.5 || ^8.0",
  6907. "psr/log": "^1 || ^2 || ^3"
  6908. },
  6909. "require-dev": {
  6910. "phpstan/phpstan": "^1.0",
  6911. "phpstan/phpstan-strict-rules": "^1.1",
  6912. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6913. },
  6914. "type": "library",
  6915. "autoload": {
  6916. "psr-4": {
  6917. "Composer\\XdebugHandler\\": "src"
  6918. }
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "John Stevenson",
  6927. "email": "john-stevenson@blueyonder.co.uk"
  6928. }
  6929. ],
  6930. "description": "Restarts a process without Xdebug.",
  6931. "keywords": [
  6932. "Xdebug",
  6933. "performance"
  6934. ],
  6935. "support": {
  6936. "irc": "ircs://irc.libera.chat:6697/composer",
  6937. "issues": "https://github.com/composer/xdebug-handler/issues",
  6938. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6939. },
  6940. "funding": [
  6941. {
  6942. "url": "https://packagist.com",
  6943. "type": "custom"
  6944. },
  6945. {
  6946. "url": "https://github.com/composer",
  6947. "type": "github"
  6948. },
  6949. {
  6950. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6951. "type": "tidelift"
  6952. }
  6953. ],
  6954. "time": "2024-05-06T16:37:16+00:00"
  6955. },
  6956. {
  6957. "name": "evenement/evenement",
  6958. "version": "v3.0.2",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/igorw/evenement.git",
  6962. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6967. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6968. "shasum": ""
  6969. },
  6970. "require": {
  6971. "php": ">=7.0"
  6972. },
  6973. "require-dev": {
  6974. "phpunit/phpunit": "^9 || ^6"
  6975. },
  6976. "type": "library",
  6977. "autoload": {
  6978. "psr-4": {
  6979. "Evenement\\": "src/"
  6980. }
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "Igor Wiedler",
  6989. "email": "igor@wiedler.ch"
  6990. }
  6991. ],
  6992. "description": "Événement is a very simple event dispatching library for PHP",
  6993. "keywords": [
  6994. "event-dispatcher",
  6995. "event-emitter"
  6996. ],
  6997. "support": {
  6998. "issues": "https://github.com/igorw/evenement/issues",
  6999. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7000. },
  7001. "time": "2023-08-08T05:53:35+00:00"
  7002. },
  7003. {
  7004. "name": "fidry/cpu-core-counter",
  7005. "version": "1.1.0",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7009. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7014. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7015. "shasum": ""
  7016. },
  7017. "require": {
  7018. "php": "^7.2 || ^8.0"
  7019. },
  7020. "require-dev": {
  7021. "fidry/makefile": "^0.2.0",
  7022. "fidry/php-cs-fixer-config": "^1.1.2",
  7023. "phpstan/extension-installer": "^1.2.0",
  7024. "phpstan/phpstan": "^1.9.2",
  7025. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7026. "phpstan/phpstan-phpunit": "^1.2.2",
  7027. "phpstan/phpstan-strict-rules": "^1.4.4",
  7028. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7029. "webmozarts/strict-phpunit": "^7.5"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Fidry\\CpuCoreCounter\\": "src/"
  7035. }
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Théo FIDRY",
  7044. "email": "theo.fidry@gmail.com"
  7045. }
  7046. ],
  7047. "description": "Tiny utility to get the number of CPU cores.",
  7048. "keywords": [
  7049. "CPU",
  7050. "core"
  7051. ],
  7052. "support": {
  7053. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7054. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7055. },
  7056. "funding": [
  7057. {
  7058. "url": "https://github.com/theofidry",
  7059. "type": "github"
  7060. }
  7061. ],
  7062. "time": "2024-02-07T09:43:46+00:00"
  7063. },
  7064. {
  7065. "name": "friendsofphp/php-cs-fixer",
  7066. "version": "v3.58.1",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7070. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7075. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "clue/ndjson-react": "^1.0",
  7080. "composer/semver": "^3.4",
  7081. "composer/xdebug-handler": "^3.0.3",
  7082. "ext-filter": "*",
  7083. "ext-json": "*",
  7084. "ext-tokenizer": "*",
  7085. "fidry/cpu-core-counter": "^1.0",
  7086. "php": "^7.4 || ^8.0",
  7087. "react/child-process": "^0.6.5",
  7088. "react/event-loop": "^1.0",
  7089. "react/promise": "^2.0 || ^3.0",
  7090. "react/socket": "^1.0",
  7091. "react/stream": "^1.0",
  7092. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7093. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7094. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7095. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7096. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7097. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7098. "symfony/polyfill-mbstring": "^1.28",
  7099. "symfony/polyfill-php80": "^1.28",
  7100. "symfony/polyfill-php81": "^1.28",
  7101. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7102. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7103. },
  7104. "require-dev": {
  7105. "facile-it/paraunit": "^1.3 || ^2.0",
  7106. "infection/infection": "^0.27.11",
  7107. "justinrainbow/json-schema": "^5.2",
  7108. "keradus/cli-executor": "^2.1",
  7109. "mikey179/vfsstream": "^1.6.11",
  7110. "php-coveralls/php-coveralls": "^2.7",
  7111. "php-cs-fixer/accessible-object": "^1.1",
  7112. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7113. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7114. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7115. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7116. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7117. },
  7118. "suggest": {
  7119. "ext-dom": "For handling output formats in XML",
  7120. "ext-mbstring": "For handling non-UTF8 characters."
  7121. },
  7122. "bin": [
  7123. "php-cs-fixer"
  7124. ],
  7125. "type": "application",
  7126. "autoload": {
  7127. "psr-4": {
  7128. "PhpCsFixer\\": "src/"
  7129. }
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "license": [
  7133. "MIT"
  7134. ],
  7135. "authors": [
  7136. {
  7137. "name": "Fabien Potencier",
  7138. "email": "fabien@symfony.com"
  7139. },
  7140. {
  7141. "name": "Dariusz Rumiński",
  7142. "email": "dariusz.ruminski@gmail.com"
  7143. }
  7144. ],
  7145. "description": "A tool to automatically fix PHP code style",
  7146. "keywords": [
  7147. "Static code analysis",
  7148. "fixer",
  7149. "standards",
  7150. "static analysis"
  7151. ],
  7152. "support": {
  7153. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7154. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7155. },
  7156. "funding": [
  7157. {
  7158. "url": "https://github.com/keradus",
  7159. "type": "github"
  7160. }
  7161. ],
  7162. "time": "2024-05-29T16:39:07+00:00"
  7163. },
  7164. {
  7165. "name": "hamcrest/hamcrest-php",
  7166. "version": "v2.0.1",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7170. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7175. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7176. "shasum": ""
  7177. },
  7178. "require": {
  7179. "php": "^5.3|^7.0|^8.0"
  7180. },
  7181. "replace": {
  7182. "cordoval/hamcrest-php": "*",
  7183. "davedevelopment/hamcrest-php": "*",
  7184. "kodova/hamcrest-php": "*"
  7185. },
  7186. "require-dev": {
  7187. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7188. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7189. },
  7190. "type": "library",
  7191. "extra": {
  7192. "branch-alias": {
  7193. "dev-master": "2.1-dev"
  7194. }
  7195. },
  7196. "autoload": {
  7197. "classmap": [
  7198. "hamcrest"
  7199. ]
  7200. },
  7201. "notification-url": "https://packagist.org/downloads/",
  7202. "license": [
  7203. "BSD-3-Clause"
  7204. ],
  7205. "description": "This is the PHP port of Hamcrest Matchers",
  7206. "keywords": [
  7207. "test"
  7208. ],
  7209. "support": {
  7210. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7211. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7212. },
  7213. "time": "2020-07-09T08:09:16+00:00"
  7214. },
  7215. {
  7216. "name": "hyperf/devtool",
  7217. "version": "v3.1.19",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/hyperf/devtool.git",
  7221. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7226. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "hyperf/code-parser": "~3.1.0",
  7231. "hyperf/command": "~3.1.0",
  7232. "hyperf/contract": "~3.1.0",
  7233. "hyperf/di": "~3.1.0",
  7234. "hyperf/support": "~3.1.0",
  7235. "hyperf/utils": "~3.1.0",
  7236. "php": ">=8.1"
  7237. },
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-master": "3.1-dev"
  7242. },
  7243. "hyperf": {
  7244. "config": "Hyperf\\Devtool\\ConfigProvider"
  7245. }
  7246. },
  7247. "autoload": {
  7248. "psr-4": {
  7249. "Hyperf\\Devtool\\": "src/"
  7250. }
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "description": "A Devtool for Hyperf.",
  7257. "homepage": "https://hyperf.io",
  7258. "keywords": [
  7259. "dev",
  7260. "devtool",
  7261. "hyperf",
  7262. "php",
  7263. "swoole"
  7264. ],
  7265. "support": {
  7266. "docs": "https://hyperf.wiki",
  7267. "issues": "https://github.com/hyperf/hyperf/issues",
  7268. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7269. "source": "https://github.com/hyperf/hyperf"
  7270. },
  7271. "funding": [
  7272. {
  7273. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7274. "type": "custom"
  7275. },
  7276. {
  7277. "url": "https://opencollective.com/hyperf",
  7278. "type": "open_collective"
  7279. }
  7280. ],
  7281. "time": "2024-04-13T06:53:08+00:00"
  7282. },
  7283. {
  7284. "name": "hyperf/testing",
  7285. "version": "v3.1.21",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/hyperf/testing.git",
  7289. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7294. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7295. "shasum": ""
  7296. },
  7297. "require": {
  7298. "hyperf/codec": "~3.1.0",
  7299. "hyperf/collection": "~3.1.0",
  7300. "hyperf/contract": "~3.1.0",
  7301. "hyperf/coroutine": "~3.1.0",
  7302. "hyperf/http-message": "~3.1.0",
  7303. "hyperf/http-server": "~3.1.0",
  7304. "hyperf/support": "~3.1.0",
  7305. "hyperf/utils": "~3.1.0",
  7306. "php": ">=8.1",
  7307. "phpunit/phpunit": "^10.0",
  7308. "psr/container": "^1.0|^2.0",
  7309. "symfony/http-foundation": "^5.4|^6.0"
  7310. },
  7311. "suggest": {
  7312. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7313. },
  7314. "bin": [
  7315. "co-phpunit"
  7316. ],
  7317. "type": "library",
  7318. "extra": {
  7319. "branch-alias": {
  7320. "dev-master": "3.1-dev"
  7321. }
  7322. },
  7323. "autoload": {
  7324. "psr-4": {
  7325. "Hyperf\\Testing\\": "src/"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "description": "Testing for hyperf",
  7333. "keywords": [
  7334. "dev",
  7335. "php",
  7336. "swoole",
  7337. "testing"
  7338. ],
  7339. "support": {
  7340. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7341. },
  7342. "funding": [
  7343. {
  7344. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7345. "type": "custom"
  7346. },
  7347. {
  7348. "url": "https://opencollective.com/hyperf",
  7349. "type": "open_collective"
  7350. }
  7351. ],
  7352. "time": "2024-05-07T05:34:51+00:00"
  7353. },
  7354. {
  7355. "name": "hyperf/watcher",
  7356. "version": "v3.1.21",
  7357. "source": {
  7358. "type": "git",
  7359. "url": "https://github.com/hyperf/watcher.git",
  7360. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7361. },
  7362. "dist": {
  7363. "type": "zip",
  7364. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7365. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7366. "shasum": ""
  7367. },
  7368. "require": {
  7369. "ext-posix": "*",
  7370. "hyperf/codec": "~3.1.0",
  7371. "hyperf/command": "~3.1.0",
  7372. "hyperf/di": "~3.1.0",
  7373. "hyperf/framework": "~3.1.0",
  7374. "hyperf/support": "~3.1.0",
  7375. "php": ">=8.1"
  7376. },
  7377. "type": "library",
  7378. "extra": {
  7379. "branch-alias": {
  7380. "dev-master": "3.1-dev"
  7381. },
  7382. "hyperf": {
  7383. "config": "Hyperf\\Watcher\\ConfigProvider"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "files": [
  7388. "src/Functions.php"
  7389. ],
  7390. "psr-4": {
  7391. "Hyperf\\Watcher\\": "src/"
  7392. }
  7393. },
  7394. "notification-url": "https://packagist.org/downloads/",
  7395. "license": [
  7396. "MIT"
  7397. ],
  7398. "description": "Hot reload watcher for Hyperf",
  7399. "keywords": [
  7400. "dev",
  7401. "hyperf",
  7402. "php"
  7403. ],
  7404. "support": {
  7405. "issues": "https://github.com/hyperf/watcher/issues",
  7406. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7407. },
  7408. "funding": [
  7409. {
  7410. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7411. "type": "custom"
  7412. },
  7413. {
  7414. "url": "https://opencollective.com/hyperf",
  7415. "type": "open_collective"
  7416. }
  7417. ],
  7418. "time": "2024-05-09T13:40:44+00:00"
  7419. },
  7420. {
  7421. "name": "mockery/mockery",
  7422. "version": "1.6.12",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/mockery/mockery.git",
  7426. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7431. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "hamcrest/hamcrest-php": "^2.0.1",
  7436. "lib-pcre": ">=7.0",
  7437. "php": ">=7.3"
  7438. },
  7439. "conflict": {
  7440. "phpunit/phpunit": "<8.0"
  7441. },
  7442. "require-dev": {
  7443. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7444. "symplify/easy-coding-standard": "^12.1.14"
  7445. },
  7446. "type": "library",
  7447. "autoload": {
  7448. "files": [
  7449. "library/helpers.php",
  7450. "library/Mockery.php"
  7451. ],
  7452. "psr-4": {
  7453. "Mockery\\": "library/Mockery"
  7454. }
  7455. },
  7456. "notification-url": "https://packagist.org/downloads/",
  7457. "license": [
  7458. "BSD-3-Clause"
  7459. ],
  7460. "authors": [
  7461. {
  7462. "name": "Pádraic Brady",
  7463. "email": "padraic.brady@gmail.com",
  7464. "homepage": "https://github.com/padraic",
  7465. "role": "Author"
  7466. },
  7467. {
  7468. "name": "Dave Marshall",
  7469. "email": "dave.marshall@atstsolutions.co.uk",
  7470. "homepage": "https://davedevelopment.co.uk",
  7471. "role": "Developer"
  7472. },
  7473. {
  7474. "name": "Nathanael Esayeas",
  7475. "email": "nathanael.esayeas@protonmail.com",
  7476. "homepage": "https://github.com/ghostwriter",
  7477. "role": "Lead Developer"
  7478. }
  7479. ],
  7480. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7481. "homepage": "https://github.com/mockery/mockery",
  7482. "keywords": [
  7483. "BDD",
  7484. "TDD",
  7485. "library",
  7486. "mock",
  7487. "mock objects",
  7488. "mockery",
  7489. "stub",
  7490. "test",
  7491. "test double",
  7492. "testing"
  7493. ],
  7494. "support": {
  7495. "docs": "https://docs.mockery.io/",
  7496. "issues": "https://github.com/mockery/mockery/issues",
  7497. "rss": "https://github.com/mockery/mockery/releases.atom",
  7498. "security": "https://github.com/mockery/mockery/security/advisories",
  7499. "source": "https://github.com/mockery/mockery"
  7500. },
  7501. "time": "2024-05-16T03:13:13+00:00"
  7502. },
  7503. {
  7504. "name": "myclabs/deep-copy",
  7505. "version": "1.11.1",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/myclabs/DeepCopy.git",
  7509. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7514. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": "^7.1 || ^8.0"
  7519. },
  7520. "conflict": {
  7521. "doctrine/collections": "<1.6.8",
  7522. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7523. },
  7524. "require-dev": {
  7525. "doctrine/collections": "^1.6.8",
  7526. "doctrine/common": "^2.13.3 || ^3.2.2",
  7527. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7528. },
  7529. "type": "library",
  7530. "autoload": {
  7531. "files": [
  7532. "src/DeepCopy/deep_copy.php"
  7533. ],
  7534. "psr-4": {
  7535. "DeepCopy\\": "src/DeepCopy/"
  7536. }
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "MIT"
  7541. ],
  7542. "description": "Create deep copies (clones) of your objects",
  7543. "keywords": [
  7544. "clone",
  7545. "copy",
  7546. "duplicate",
  7547. "object",
  7548. "object graph"
  7549. ],
  7550. "support": {
  7551. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7552. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7557. "type": "tidelift"
  7558. }
  7559. ],
  7560. "time": "2023-03-08T13:26:56+00:00"
  7561. },
  7562. {
  7563. "name": "phar-io/manifest",
  7564. "version": "2.0.4",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/phar-io/manifest.git",
  7568. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7573. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "ext-dom": "*",
  7578. "ext-libxml": "*",
  7579. "ext-phar": "*",
  7580. "ext-xmlwriter": "*",
  7581. "phar-io/version": "^3.0.1",
  7582. "php": "^7.2 || ^8.0"
  7583. },
  7584. "type": "library",
  7585. "extra": {
  7586. "branch-alias": {
  7587. "dev-master": "2.0.x-dev"
  7588. }
  7589. },
  7590. "autoload": {
  7591. "classmap": [
  7592. "src/"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "BSD-3-Clause"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Arne Blankerts",
  7602. "email": "arne@blankerts.de",
  7603. "role": "Developer"
  7604. },
  7605. {
  7606. "name": "Sebastian Heuer",
  7607. "email": "sebastian@phpeople.de",
  7608. "role": "Developer"
  7609. },
  7610. {
  7611. "name": "Sebastian Bergmann",
  7612. "email": "sebastian@phpunit.de",
  7613. "role": "Developer"
  7614. }
  7615. ],
  7616. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7617. "support": {
  7618. "issues": "https://github.com/phar-io/manifest/issues",
  7619. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7620. },
  7621. "funding": [
  7622. {
  7623. "url": "https://github.com/theseer",
  7624. "type": "github"
  7625. }
  7626. ],
  7627. "time": "2024-03-03T12:33:53+00:00"
  7628. },
  7629. {
  7630. "name": "phar-io/version",
  7631. "version": "3.2.1",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/phar-io/version.git",
  7635. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7640. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "php": "^7.2 || ^8.0"
  7645. },
  7646. "type": "library",
  7647. "autoload": {
  7648. "classmap": [
  7649. "src/"
  7650. ]
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "BSD-3-Clause"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Arne Blankerts",
  7659. "email": "arne@blankerts.de",
  7660. "role": "Developer"
  7661. },
  7662. {
  7663. "name": "Sebastian Heuer",
  7664. "email": "sebastian@phpeople.de",
  7665. "role": "Developer"
  7666. },
  7667. {
  7668. "name": "Sebastian Bergmann",
  7669. "email": "sebastian@phpunit.de",
  7670. "role": "Developer"
  7671. }
  7672. ],
  7673. "description": "Library for handling version information and constraints",
  7674. "support": {
  7675. "issues": "https://github.com/phar-io/version/issues",
  7676. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7677. },
  7678. "time": "2022-02-21T01:04:05+00:00"
  7679. },
  7680. {
  7681. "name": "phpstan/phpstan",
  7682. "version": "1.11.3",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/phpstan/phpstan.git",
  7686. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7691. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": "^7.2|^8.0"
  7696. },
  7697. "conflict": {
  7698. "phpstan/phpstan-shim": "*"
  7699. },
  7700. "bin": [
  7701. "phpstan",
  7702. "phpstan.phar"
  7703. ],
  7704. "type": "library",
  7705. "autoload": {
  7706. "files": [
  7707. "bootstrap.php"
  7708. ]
  7709. },
  7710. "notification-url": "https://packagist.org/downloads/",
  7711. "license": [
  7712. "MIT"
  7713. ],
  7714. "description": "PHPStan - PHP Static Analysis Tool",
  7715. "keywords": [
  7716. "dev",
  7717. "static analysis"
  7718. ],
  7719. "support": {
  7720. "docs": "https://phpstan.org/user-guide/getting-started",
  7721. "forum": "https://github.com/phpstan/phpstan/discussions",
  7722. "issues": "https://github.com/phpstan/phpstan/issues",
  7723. "security": "https://github.com/phpstan/phpstan/security/policy",
  7724. "source": "https://github.com/phpstan/phpstan-src"
  7725. },
  7726. "funding": [
  7727. {
  7728. "url": "https://github.com/ondrejmirtes",
  7729. "type": "github"
  7730. },
  7731. {
  7732. "url": "https://github.com/phpstan",
  7733. "type": "github"
  7734. }
  7735. ],
  7736. "time": "2024-05-31T13:53:37+00:00"
  7737. },
  7738. {
  7739. "name": "phpunit/php-code-coverage",
  7740. "version": "10.1.14",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7744. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7749. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7750. "shasum": ""
  7751. },
  7752. "require": {
  7753. "ext-dom": "*",
  7754. "ext-libxml": "*",
  7755. "ext-xmlwriter": "*",
  7756. "nikic/php-parser": "^4.18 || ^5.0",
  7757. "php": ">=8.1",
  7758. "phpunit/php-file-iterator": "^4.0",
  7759. "phpunit/php-text-template": "^3.0",
  7760. "sebastian/code-unit-reverse-lookup": "^3.0",
  7761. "sebastian/complexity": "^3.0",
  7762. "sebastian/environment": "^6.0",
  7763. "sebastian/lines-of-code": "^2.0",
  7764. "sebastian/version": "^4.0",
  7765. "theseer/tokenizer": "^1.2.0"
  7766. },
  7767. "require-dev": {
  7768. "phpunit/phpunit": "^10.1"
  7769. },
  7770. "suggest": {
  7771. "ext-pcov": "PHP extension that provides line coverage",
  7772. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7773. },
  7774. "type": "library",
  7775. "extra": {
  7776. "branch-alias": {
  7777. "dev-main": "10.1-dev"
  7778. }
  7779. },
  7780. "autoload": {
  7781. "classmap": [
  7782. "src/"
  7783. ]
  7784. },
  7785. "notification-url": "https://packagist.org/downloads/",
  7786. "license": [
  7787. "BSD-3-Clause"
  7788. ],
  7789. "authors": [
  7790. {
  7791. "name": "Sebastian Bergmann",
  7792. "email": "sebastian@phpunit.de",
  7793. "role": "lead"
  7794. }
  7795. ],
  7796. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7797. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7798. "keywords": [
  7799. "coverage",
  7800. "testing",
  7801. "xunit"
  7802. ],
  7803. "support": {
  7804. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7805. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7806. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  7807. },
  7808. "funding": [
  7809. {
  7810. "url": "https://github.com/sebastianbergmann",
  7811. "type": "github"
  7812. }
  7813. ],
  7814. "time": "2024-03-12T15:33:41+00:00"
  7815. },
  7816. {
  7817. "name": "phpunit/php-file-iterator",
  7818. "version": "4.1.0",
  7819. "source": {
  7820. "type": "git",
  7821. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7822. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7823. },
  7824. "dist": {
  7825. "type": "zip",
  7826. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7827. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7828. "shasum": ""
  7829. },
  7830. "require": {
  7831. "php": ">=8.1"
  7832. },
  7833. "require-dev": {
  7834. "phpunit/phpunit": "^10.0"
  7835. },
  7836. "type": "library",
  7837. "extra": {
  7838. "branch-alias": {
  7839. "dev-main": "4.0-dev"
  7840. }
  7841. },
  7842. "autoload": {
  7843. "classmap": [
  7844. "src/"
  7845. ]
  7846. },
  7847. "notification-url": "https://packagist.org/downloads/",
  7848. "license": [
  7849. "BSD-3-Clause"
  7850. ],
  7851. "authors": [
  7852. {
  7853. "name": "Sebastian Bergmann",
  7854. "email": "sebastian@phpunit.de",
  7855. "role": "lead"
  7856. }
  7857. ],
  7858. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7859. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7860. "keywords": [
  7861. "filesystem",
  7862. "iterator"
  7863. ],
  7864. "support": {
  7865. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7866. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7867. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7868. },
  7869. "funding": [
  7870. {
  7871. "url": "https://github.com/sebastianbergmann",
  7872. "type": "github"
  7873. }
  7874. ],
  7875. "time": "2023-08-31T06:24:48+00:00"
  7876. },
  7877. {
  7878. "name": "phpunit/php-invoker",
  7879. "version": "4.0.0",
  7880. "source": {
  7881. "type": "git",
  7882. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7883. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7884. },
  7885. "dist": {
  7886. "type": "zip",
  7887. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7888. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7889. "shasum": ""
  7890. },
  7891. "require": {
  7892. "php": ">=8.1"
  7893. },
  7894. "require-dev": {
  7895. "ext-pcntl": "*",
  7896. "phpunit/phpunit": "^10.0"
  7897. },
  7898. "suggest": {
  7899. "ext-pcntl": "*"
  7900. },
  7901. "type": "library",
  7902. "extra": {
  7903. "branch-alias": {
  7904. "dev-main": "4.0-dev"
  7905. }
  7906. },
  7907. "autoload": {
  7908. "classmap": [
  7909. "src/"
  7910. ]
  7911. },
  7912. "notification-url": "https://packagist.org/downloads/",
  7913. "license": [
  7914. "BSD-3-Clause"
  7915. ],
  7916. "authors": [
  7917. {
  7918. "name": "Sebastian Bergmann",
  7919. "email": "sebastian@phpunit.de",
  7920. "role": "lead"
  7921. }
  7922. ],
  7923. "description": "Invoke callables with a timeout",
  7924. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7925. "keywords": [
  7926. "process"
  7927. ],
  7928. "support": {
  7929. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7930. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7931. },
  7932. "funding": [
  7933. {
  7934. "url": "https://github.com/sebastianbergmann",
  7935. "type": "github"
  7936. }
  7937. ],
  7938. "time": "2023-02-03T06:56:09+00:00"
  7939. },
  7940. {
  7941. "name": "phpunit/php-text-template",
  7942. "version": "3.0.1",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7946. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7951. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7952. "shasum": ""
  7953. },
  7954. "require": {
  7955. "php": ">=8.1"
  7956. },
  7957. "require-dev": {
  7958. "phpunit/phpunit": "^10.0"
  7959. },
  7960. "type": "library",
  7961. "extra": {
  7962. "branch-alias": {
  7963. "dev-main": "3.0-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "classmap": [
  7968. "src/"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "BSD-3-Clause"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Sebastian Bergmann",
  7978. "email": "sebastian@phpunit.de",
  7979. "role": "lead"
  7980. }
  7981. ],
  7982. "description": "Simple template engine.",
  7983. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7984. "keywords": [
  7985. "template"
  7986. ],
  7987. "support": {
  7988. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7989. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7990. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7991. },
  7992. "funding": [
  7993. {
  7994. "url": "https://github.com/sebastianbergmann",
  7995. "type": "github"
  7996. }
  7997. ],
  7998. "time": "2023-08-31T14:07:24+00:00"
  7999. },
  8000. {
  8001. "name": "phpunit/php-timer",
  8002. "version": "6.0.0",
  8003. "source": {
  8004. "type": "git",
  8005. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8006. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8007. },
  8008. "dist": {
  8009. "type": "zip",
  8010. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8011. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8012. "shasum": ""
  8013. },
  8014. "require": {
  8015. "php": ">=8.1"
  8016. },
  8017. "require-dev": {
  8018. "phpunit/phpunit": "^10.0"
  8019. },
  8020. "type": "library",
  8021. "extra": {
  8022. "branch-alias": {
  8023. "dev-main": "6.0-dev"
  8024. }
  8025. },
  8026. "autoload": {
  8027. "classmap": [
  8028. "src/"
  8029. ]
  8030. },
  8031. "notification-url": "https://packagist.org/downloads/",
  8032. "license": [
  8033. "BSD-3-Clause"
  8034. ],
  8035. "authors": [
  8036. {
  8037. "name": "Sebastian Bergmann",
  8038. "email": "sebastian@phpunit.de",
  8039. "role": "lead"
  8040. }
  8041. ],
  8042. "description": "Utility class for timing",
  8043. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8044. "keywords": [
  8045. "timer"
  8046. ],
  8047. "support": {
  8048. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8049. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8050. },
  8051. "funding": [
  8052. {
  8053. "url": "https://github.com/sebastianbergmann",
  8054. "type": "github"
  8055. }
  8056. ],
  8057. "time": "2023-02-03T06:57:52+00:00"
  8058. },
  8059. {
  8060. "name": "phpunit/phpunit",
  8061. "version": "10.5.20",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8065. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8070. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8071. "shasum": ""
  8072. },
  8073. "require": {
  8074. "ext-dom": "*",
  8075. "ext-json": "*",
  8076. "ext-libxml": "*",
  8077. "ext-mbstring": "*",
  8078. "ext-xml": "*",
  8079. "ext-xmlwriter": "*",
  8080. "myclabs/deep-copy": "^1.10.1",
  8081. "phar-io/manifest": "^2.0.3",
  8082. "phar-io/version": "^3.0.2",
  8083. "php": ">=8.1",
  8084. "phpunit/php-code-coverage": "^10.1.5",
  8085. "phpunit/php-file-iterator": "^4.0",
  8086. "phpunit/php-invoker": "^4.0",
  8087. "phpunit/php-text-template": "^3.0",
  8088. "phpunit/php-timer": "^6.0",
  8089. "sebastian/cli-parser": "^2.0",
  8090. "sebastian/code-unit": "^2.0",
  8091. "sebastian/comparator": "^5.0",
  8092. "sebastian/diff": "^5.0",
  8093. "sebastian/environment": "^6.0",
  8094. "sebastian/exporter": "^5.1",
  8095. "sebastian/global-state": "^6.0.1",
  8096. "sebastian/object-enumerator": "^5.0",
  8097. "sebastian/recursion-context": "^5.0",
  8098. "sebastian/type": "^4.0",
  8099. "sebastian/version": "^4.0"
  8100. },
  8101. "suggest": {
  8102. "ext-soap": "To be able to generate mocks based on WSDL files"
  8103. },
  8104. "bin": [
  8105. "phpunit"
  8106. ],
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-main": "10.5-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "files": [
  8115. "src/Framework/Assert/Functions.php"
  8116. ],
  8117. "classmap": [
  8118. "src/"
  8119. ]
  8120. },
  8121. "notification-url": "https://packagist.org/downloads/",
  8122. "license": [
  8123. "BSD-3-Clause"
  8124. ],
  8125. "authors": [
  8126. {
  8127. "name": "Sebastian Bergmann",
  8128. "email": "sebastian@phpunit.de",
  8129. "role": "lead"
  8130. }
  8131. ],
  8132. "description": "The PHP Unit Testing framework.",
  8133. "homepage": "https://phpunit.de/",
  8134. "keywords": [
  8135. "phpunit",
  8136. "testing",
  8137. "xunit"
  8138. ],
  8139. "support": {
  8140. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8141. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8142. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8143. },
  8144. "funding": [
  8145. {
  8146. "url": "https://phpunit.de/sponsors.html",
  8147. "type": "custom"
  8148. },
  8149. {
  8150. "url": "https://github.com/sebastianbergmann",
  8151. "type": "github"
  8152. },
  8153. {
  8154. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8155. "type": "tidelift"
  8156. }
  8157. ],
  8158. "time": "2024-04-24T06:32:35+00:00"
  8159. },
  8160. {
  8161. "name": "react/cache",
  8162. "version": "v1.2.0",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/reactphp/cache.git",
  8166. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8171. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8172. "shasum": ""
  8173. },
  8174. "require": {
  8175. "php": ">=5.3.0",
  8176. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8177. },
  8178. "require-dev": {
  8179. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8180. },
  8181. "type": "library",
  8182. "autoload": {
  8183. "psr-4": {
  8184. "React\\Cache\\": "src/"
  8185. }
  8186. },
  8187. "notification-url": "https://packagist.org/downloads/",
  8188. "license": [
  8189. "MIT"
  8190. ],
  8191. "authors": [
  8192. {
  8193. "name": "Christian Lück",
  8194. "email": "christian@clue.engineering",
  8195. "homepage": "https://clue.engineering/"
  8196. },
  8197. {
  8198. "name": "Cees-Jan Kiewiet",
  8199. "email": "reactphp@ceesjankiewiet.nl",
  8200. "homepage": "https://wyrihaximus.net/"
  8201. },
  8202. {
  8203. "name": "Jan Sorgalla",
  8204. "email": "jsorgalla@gmail.com",
  8205. "homepage": "https://sorgalla.com/"
  8206. },
  8207. {
  8208. "name": "Chris Boden",
  8209. "email": "cboden@gmail.com",
  8210. "homepage": "https://cboden.dev/"
  8211. }
  8212. ],
  8213. "description": "Async, Promise-based cache interface for ReactPHP",
  8214. "keywords": [
  8215. "cache",
  8216. "caching",
  8217. "promise",
  8218. "reactphp"
  8219. ],
  8220. "support": {
  8221. "issues": "https://github.com/reactphp/cache/issues",
  8222. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8223. },
  8224. "funding": [
  8225. {
  8226. "url": "https://opencollective.com/reactphp",
  8227. "type": "open_collective"
  8228. }
  8229. ],
  8230. "time": "2022-11-30T15:59:55+00:00"
  8231. },
  8232. {
  8233. "name": "react/child-process",
  8234. "version": "v0.6.5",
  8235. "source": {
  8236. "type": "git",
  8237. "url": "https://github.com/reactphp/child-process.git",
  8238. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8239. },
  8240. "dist": {
  8241. "type": "zip",
  8242. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8243. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8244. "shasum": ""
  8245. },
  8246. "require": {
  8247. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8248. "php": ">=5.3.0",
  8249. "react/event-loop": "^1.2",
  8250. "react/stream": "^1.2"
  8251. },
  8252. "require-dev": {
  8253. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8254. "react/socket": "^1.8",
  8255. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8256. },
  8257. "type": "library",
  8258. "autoload": {
  8259. "psr-4": {
  8260. "React\\ChildProcess\\": "src"
  8261. }
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "authors": [
  8268. {
  8269. "name": "Christian Lück",
  8270. "email": "christian@clue.engineering",
  8271. "homepage": "https://clue.engineering/"
  8272. },
  8273. {
  8274. "name": "Cees-Jan Kiewiet",
  8275. "email": "reactphp@ceesjankiewiet.nl",
  8276. "homepage": "https://wyrihaximus.net/"
  8277. },
  8278. {
  8279. "name": "Jan Sorgalla",
  8280. "email": "jsorgalla@gmail.com",
  8281. "homepage": "https://sorgalla.com/"
  8282. },
  8283. {
  8284. "name": "Chris Boden",
  8285. "email": "cboden@gmail.com",
  8286. "homepage": "https://cboden.dev/"
  8287. }
  8288. ],
  8289. "description": "Event-driven library for executing child processes with ReactPHP.",
  8290. "keywords": [
  8291. "event-driven",
  8292. "process",
  8293. "reactphp"
  8294. ],
  8295. "support": {
  8296. "issues": "https://github.com/reactphp/child-process/issues",
  8297. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8298. },
  8299. "funding": [
  8300. {
  8301. "url": "https://github.com/WyriHaximus",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://github.com/clue",
  8306. "type": "github"
  8307. }
  8308. ],
  8309. "time": "2022-09-16T13:41:56+00:00"
  8310. },
  8311. {
  8312. "name": "react/dns",
  8313. "version": "v1.12.0",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/reactphp/dns.git",
  8317. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8322. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "php": ">=5.3.0",
  8327. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8328. "react/event-loop": "^1.2",
  8329. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8330. },
  8331. "require-dev": {
  8332. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8333. "react/async": "^4 || ^3 || ^2",
  8334. "react/promise-timer": "^1.9"
  8335. },
  8336. "type": "library",
  8337. "autoload": {
  8338. "psr-4": {
  8339. "React\\Dns\\": "src/"
  8340. }
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Christian Lück",
  8349. "email": "christian@clue.engineering",
  8350. "homepage": "https://clue.engineering/"
  8351. },
  8352. {
  8353. "name": "Cees-Jan Kiewiet",
  8354. "email": "reactphp@ceesjankiewiet.nl",
  8355. "homepage": "https://wyrihaximus.net/"
  8356. },
  8357. {
  8358. "name": "Jan Sorgalla",
  8359. "email": "jsorgalla@gmail.com",
  8360. "homepage": "https://sorgalla.com/"
  8361. },
  8362. {
  8363. "name": "Chris Boden",
  8364. "email": "cboden@gmail.com",
  8365. "homepage": "https://cboden.dev/"
  8366. }
  8367. ],
  8368. "description": "Async DNS resolver for ReactPHP",
  8369. "keywords": [
  8370. "async",
  8371. "dns",
  8372. "dns-resolver",
  8373. "reactphp"
  8374. ],
  8375. "support": {
  8376. "issues": "https://github.com/reactphp/dns/issues",
  8377. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8378. },
  8379. "funding": [
  8380. {
  8381. "url": "https://opencollective.com/reactphp",
  8382. "type": "open_collective"
  8383. }
  8384. ],
  8385. "time": "2023-11-29T12:41:06+00:00"
  8386. },
  8387. {
  8388. "name": "react/event-loop",
  8389. "version": "v1.5.0",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/reactphp/event-loop.git",
  8393. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8398. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8399. "shasum": ""
  8400. },
  8401. "require": {
  8402. "php": ">=5.3.0"
  8403. },
  8404. "require-dev": {
  8405. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8406. },
  8407. "suggest": {
  8408. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8409. },
  8410. "type": "library",
  8411. "autoload": {
  8412. "psr-4": {
  8413. "React\\EventLoop\\": "src/"
  8414. }
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Christian Lück",
  8423. "email": "christian@clue.engineering",
  8424. "homepage": "https://clue.engineering/"
  8425. },
  8426. {
  8427. "name": "Cees-Jan Kiewiet",
  8428. "email": "reactphp@ceesjankiewiet.nl",
  8429. "homepage": "https://wyrihaximus.net/"
  8430. },
  8431. {
  8432. "name": "Jan Sorgalla",
  8433. "email": "jsorgalla@gmail.com",
  8434. "homepage": "https://sorgalla.com/"
  8435. },
  8436. {
  8437. "name": "Chris Boden",
  8438. "email": "cboden@gmail.com",
  8439. "homepage": "https://cboden.dev/"
  8440. }
  8441. ],
  8442. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8443. "keywords": [
  8444. "asynchronous",
  8445. "event-loop"
  8446. ],
  8447. "support": {
  8448. "issues": "https://github.com/reactphp/event-loop/issues",
  8449. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8450. },
  8451. "funding": [
  8452. {
  8453. "url": "https://opencollective.com/reactphp",
  8454. "type": "open_collective"
  8455. }
  8456. ],
  8457. "time": "2023-11-13T13:48:05+00:00"
  8458. },
  8459. {
  8460. "name": "react/promise",
  8461. "version": "v3.2.0",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/reactphp/promise.git",
  8465. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8470. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": ">=7.1.0"
  8475. },
  8476. "require-dev": {
  8477. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8478. "phpunit/phpunit": "^9.6 || ^7.5"
  8479. },
  8480. "type": "library",
  8481. "autoload": {
  8482. "files": [
  8483. "src/functions_include.php"
  8484. ],
  8485. "psr-4": {
  8486. "React\\Promise\\": "src/"
  8487. }
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Jan Sorgalla",
  8496. "email": "jsorgalla@gmail.com",
  8497. "homepage": "https://sorgalla.com/"
  8498. },
  8499. {
  8500. "name": "Christian Lück",
  8501. "email": "christian@clue.engineering",
  8502. "homepage": "https://clue.engineering/"
  8503. },
  8504. {
  8505. "name": "Cees-Jan Kiewiet",
  8506. "email": "reactphp@ceesjankiewiet.nl",
  8507. "homepage": "https://wyrihaximus.net/"
  8508. },
  8509. {
  8510. "name": "Chris Boden",
  8511. "email": "cboden@gmail.com",
  8512. "homepage": "https://cboden.dev/"
  8513. }
  8514. ],
  8515. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8516. "keywords": [
  8517. "promise",
  8518. "promises"
  8519. ],
  8520. "support": {
  8521. "issues": "https://github.com/reactphp/promise/issues",
  8522. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8523. },
  8524. "funding": [
  8525. {
  8526. "url": "https://opencollective.com/reactphp",
  8527. "type": "open_collective"
  8528. }
  8529. ],
  8530. "time": "2024-05-24T10:39:05+00:00"
  8531. },
  8532. {
  8533. "name": "react/socket",
  8534. "version": "v1.15.0",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/reactphp/socket.git",
  8538. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8543. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8544. "shasum": ""
  8545. },
  8546. "require": {
  8547. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8548. "php": ">=5.3.0",
  8549. "react/dns": "^1.11",
  8550. "react/event-loop": "^1.2",
  8551. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8552. "react/stream": "^1.2"
  8553. },
  8554. "require-dev": {
  8555. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8556. "react/async": "^4 || ^3 || ^2",
  8557. "react/promise-stream": "^1.4",
  8558. "react/promise-timer": "^1.10"
  8559. },
  8560. "type": "library",
  8561. "autoload": {
  8562. "psr-4": {
  8563. "React\\Socket\\": "src/"
  8564. }
  8565. },
  8566. "notification-url": "https://packagist.org/downloads/",
  8567. "license": [
  8568. "MIT"
  8569. ],
  8570. "authors": [
  8571. {
  8572. "name": "Christian Lück",
  8573. "email": "christian@clue.engineering",
  8574. "homepage": "https://clue.engineering/"
  8575. },
  8576. {
  8577. "name": "Cees-Jan Kiewiet",
  8578. "email": "reactphp@ceesjankiewiet.nl",
  8579. "homepage": "https://wyrihaximus.net/"
  8580. },
  8581. {
  8582. "name": "Jan Sorgalla",
  8583. "email": "jsorgalla@gmail.com",
  8584. "homepage": "https://sorgalla.com/"
  8585. },
  8586. {
  8587. "name": "Chris Boden",
  8588. "email": "cboden@gmail.com",
  8589. "homepage": "https://cboden.dev/"
  8590. }
  8591. ],
  8592. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8593. "keywords": [
  8594. "Connection",
  8595. "Socket",
  8596. "async",
  8597. "reactphp",
  8598. "stream"
  8599. ],
  8600. "support": {
  8601. "issues": "https://github.com/reactphp/socket/issues",
  8602. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8603. },
  8604. "funding": [
  8605. {
  8606. "url": "https://opencollective.com/reactphp",
  8607. "type": "open_collective"
  8608. }
  8609. ],
  8610. "time": "2023-12-15T11:02:10+00:00"
  8611. },
  8612. {
  8613. "name": "react/stream",
  8614. "version": "v1.3.0",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/reactphp/stream.git",
  8618. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8623. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8624. "shasum": ""
  8625. },
  8626. "require": {
  8627. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8628. "php": ">=5.3.8",
  8629. "react/event-loop": "^1.2"
  8630. },
  8631. "require-dev": {
  8632. "clue/stream-filter": "~1.2",
  8633. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8634. },
  8635. "type": "library",
  8636. "autoload": {
  8637. "psr-4": {
  8638. "React\\Stream\\": "src/"
  8639. }
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "MIT"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Christian Lück",
  8648. "email": "christian@clue.engineering",
  8649. "homepage": "https://clue.engineering/"
  8650. },
  8651. {
  8652. "name": "Cees-Jan Kiewiet",
  8653. "email": "reactphp@ceesjankiewiet.nl",
  8654. "homepage": "https://wyrihaximus.net/"
  8655. },
  8656. {
  8657. "name": "Jan Sorgalla",
  8658. "email": "jsorgalla@gmail.com",
  8659. "homepage": "https://sorgalla.com/"
  8660. },
  8661. {
  8662. "name": "Chris Boden",
  8663. "email": "cboden@gmail.com",
  8664. "homepage": "https://cboden.dev/"
  8665. }
  8666. ],
  8667. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8668. "keywords": [
  8669. "event-driven",
  8670. "io",
  8671. "non-blocking",
  8672. "pipe",
  8673. "reactphp",
  8674. "readable",
  8675. "stream",
  8676. "writable"
  8677. ],
  8678. "support": {
  8679. "issues": "https://github.com/reactphp/stream/issues",
  8680. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8681. },
  8682. "funding": [
  8683. {
  8684. "url": "https://opencollective.com/reactphp",
  8685. "type": "open_collective"
  8686. }
  8687. ],
  8688. "time": "2023-06-16T10:52:11+00:00"
  8689. },
  8690. {
  8691. "name": "sebastian/cli-parser",
  8692. "version": "2.0.1",
  8693. "source": {
  8694. "type": "git",
  8695. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8696. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8697. },
  8698. "dist": {
  8699. "type": "zip",
  8700. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8701. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8702. "shasum": ""
  8703. },
  8704. "require": {
  8705. "php": ">=8.1"
  8706. },
  8707. "require-dev": {
  8708. "phpunit/phpunit": "^10.0"
  8709. },
  8710. "type": "library",
  8711. "extra": {
  8712. "branch-alias": {
  8713. "dev-main": "2.0-dev"
  8714. }
  8715. },
  8716. "autoload": {
  8717. "classmap": [
  8718. "src/"
  8719. ]
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "BSD-3-Clause"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Sebastian Bergmann",
  8728. "email": "sebastian@phpunit.de",
  8729. "role": "lead"
  8730. }
  8731. ],
  8732. "description": "Library for parsing CLI options",
  8733. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8734. "support": {
  8735. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8736. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8737. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8738. },
  8739. "funding": [
  8740. {
  8741. "url": "https://github.com/sebastianbergmann",
  8742. "type": "github"
  8743. }
  8744. ],
  8745. "time": "2024-03-02T07:12:49+00:00"
  8746. },
  8747. {
  8748. "name": "sebastian/code-unit",
  8749. "version": "2.0.0",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8753. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8758. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "php": ">=8.1"
  8763. },
  8764. "require-dev": {
  8765. "phpunit/phpunit": "^10.0"
  8766. },
  8767. "type": "library",
  8768. "extra": {
  8769. "branch-alias": {
  8770. "dev-main": "2.0-dev"
  8771. }
  8772. },
  8773. "autoload": {
  8774. "classmap": [
  8775. "src/"
  8776. ]
  8777. },
  8778. "notification-url": "https://packagist.org/downloads/",
  8779. "license": [
  8780. "BSD-3-Clause"
  8781. ],
  8782. "authors": [
  8783. {
  8784. "name": "Sebastian Bergmann",
  8785. "email": "sebastian@phpunit.de",
  8786. "role": "lead"
  8787. }
  8788. ],
  8789. "description": "Collection of value objects that represent the PHP code units",
  8790. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8791. "support": {
  8792. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8793. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8794. },
  8795. "funding": [
  8796. {
  8797. "url": "https://github.com/sebastianbergmann",
  8798. "type": "github"
  8799. }
  8800. ],
  8801. "time": "2023-02-03T06:58:43+00:00"
  8802. },
  8803. {
  8804. "name": "sebastian/code-unit-reverse-lookup",
  8805. "version": "3.0.0",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8809. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8814. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "php": ">=8.1"
  8819. },
  8820. "require-dev": {
  8821. "phpunit/phpunit": "^10.0"
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "branch-alias": {
  8826. "dev-main": "3.0-dev"
  8827. }
  8828. },
  8829. "autoload": {
  8830. "classmap": [
  8831. "src/"
  8832. ]
  8833. },
  8834. "notification-url": "https://packagist.org/downloads/",
  8835. "license": [
  8836. "BSD-3-Clause"
  8837. ],
  8838. "authors": [
  8839. {
  8840. "name": "Sebastian Bergmann",
  8841. "email": "sebastian@phpunit.de"
  8842. }
  8843. ],
  8844. "description": "Looks up which function or method a line of code belongs to",
  8845. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8846. "support": {
  8847. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8848. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8849. },
  8850. "funding": [
  8851. {
  8852. "url": "https://github.com/sebastianbergmann",
  8853. "type": "github"
  8854. }
  8855. ],
  8856. "time": "2023-02-03T06:59:15+00:00"
  8857. },
  8858. {
  8859. "name": "sebastian/comparator",
  8860. "version": "5.0.1",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/sebastianbergmann/comparator.git",
  8864. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8869. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "ext-dom": "*",
  8874. "ext-mbstring": "*",
  8875. "php": ">=8.1",
  8876. "sebastian/diff": "^5.0",
  8877. "sebastian/exporter": "^5.0"
  8878. },
  8879. "require-dev": {
  8880. "phpunit/phpunit": "^10.3"
  8881. },
  8882. "type": "library",
  8883. "extra": {
  8884. "branch-alias": {
  8885. "dev-main": "5.0-dev"
  8886. }
  8887. },
  8888. "autoload": {
  8889. "classmap": [
  8890. "src/"
  8891. ]
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Sebastian Bergmann",
  8900. "email": "sebastian@phpunit.de"
  8901. },
  8902. {
  8903. "name": "Jeff Welch",
  8904. "email": "whatthejeff@gmail.com"
  8905. },
  8906. {
  8907. "name": "Volker Dusch",
  8908. "email": "github@wallbash.com"
  8909. },
  8910. {
  8911. "name": "Bernhard Schussek",
  8912. "email": "bschussek@2bepublished.at"
  8913. }
  8914. ],
  8915. "description": "Provides the functionality to compare PHP values for equality",
  8916. "homepage": "https://github.com/sebastianbergmann/comparator",
  8917. "keywords": [
  8918. "comparator",
  8919. "compare",
  8920. "equality"
  8921. ],
  8922. "support": {
  8923. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8924. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8925. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8926. },
  8927. "funding": [
  8928. {
  8929. "url": "https://github.com/sebastianbergmann",
  8930. "type": "github"
  8931. }
  8932. ],
  8933. "time": "2023-08-14T13:18:12+00:00"
  8934. },
  8935. {
  8936. "name": "sebastian/complexity",
  8937. "version": "3.2.0",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/sebastianbergmann/complexity.git",
  8941. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8946. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "nikic/php-parser": "^4.18 || ^5.0",
  8951. "php": ">=8.1"
  8952. },
  8953. "require-dev": {
  8954. "phpunit/phpunit": "^10.0"
  8955. },
  8956. "type": "library",
  8957. "extra": {
  8958. "branch-alias": {
  8959. "dev-main": "3.2-dev"
  8960. }
  8961. },
  8962. "autoload": {
  8963. "classmap": [
  8964. "src/"
  8965. ]
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "BSD-3-Clause"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Sebastian Bergmann",
  8974. "email": "sebastian@phpunit.de",
  8975. "role": "lead"
  8976. }
  8977. ],
  8978. "description": "Library for calculating the complexity of PHP code units",
  8979. "homepage": "https://github.com/sebastianbergmann/complexity",
  8980. "support": {
  8981. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8982. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8983. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8984. },
  8985. "funding": [
  8986. {
  8987. "url": "https://github.com/sebastianbergmann",
  8988. "type": "github"
  8989. }
  8990. ],
  8991. "time": "2023-12-21T08:37:17+00:00"
  8992. },
  8993. {
  8994. "name": "sebastian/diff",
  8995. "version": "5.1.1",
  8996. "source": {
  8997. "type": "git",
  8998. "url": "https://github.com/sebastianbergmann/diff.git",
  8999. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9000. },
  9001. "dist": {
  9002. "type": "zip",
  9003. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9004. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9005. "shasum": ""
  9006. },
  9007. "require": {
  9008. "php": ">=8.1"
  9009. },
  9010. "require-dev": {
  9011. "phpunit/phpunit": "^10.0",
  9012. "symfony/process": "^6.4"
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "branch-alias": {
  9017. "dev-main": "5.1-dev"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "classmap": [
  9022. "src/"
  9023. ]
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "BSD-3-Clause"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Sebastian Bergmann",
  9032. "email": "sebastian@phpunit.de"
  9033. },
  9034. {
  9035. "name": "Kore Nordmann",
  9036. "email": "mail@kore-nordmann.de"
  9037. }
  9038. ],
  9039. "description": "Diff implementation",
  9040. "homepage": "https://github.com/sebastianbergmann/diff",
  9041. "keywords": [
  9042. "diff",
  9043. "udiff",
  9044. "unidiff",
  9045. "unified diff"
  9046. ],
  9047. "support": {
  9048. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9049. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9050. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9051. },
  9052. "funding": [
  9053. {
  9054. "url": "https://github.com/sebastianbergmann",
  9055. "type": "github"
  9056. }
  9057. ],
  9058. "time": "2024-03-02T07:15:17+00:00"
  9059. },
  9060. {
  9061. "name": "sebastian/environment",
  9062. "version": "6.1.0",
  9063. "source": {
  9064. "type": "git",
  9065. "url": "https://github.com/sebastianbergmann/environment.git",
  9066. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9067. },
  9068. "dist": {
  9069. "type": "zip",
  9070. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9071. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9072. "shasum": ""
  9073. },
  9074. "require": {
  9075. "php": ">=8.1"
  9076. },
  9077. "require-dev": {
  9078. "phpunit/phpunit": "^10.0"
  9079. },
  9080. "suggest": {
  9081. "ext-posix": "*"
  9082. },
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-main": "6.1-dev"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "classmap": [
  9091. "src/"
  9092. ]
  9093. },
  9094. "notification-url": "https://packagist.org/downloads/",
  9095. "license": [
  9096. "BSD-3-Clause"
  9097. ],
  9098. "authors": [
  9099. {
  9100. "name": "Sebastian Bergmann",
  9101. "email": "sebastian@phpunit.de"
  9102. }
  9103. ],
  9104. "description": "Provides functionality to handle HHVM/PHP environments",
  9105. "homepage": "https://github.com/sebastianbergmann/environment",
  9106. "keywords": [
  9107. "Xdebug",
  9108. "environment",
  9109. "hhvm"
  9110. ],
  9111. "support": {
  9112. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9113. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9114. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://github.com/sebastianbergmann",
  9119. "type": "github"
  9120. }
  9121. ],
  9122. "time": "2024-03-23T08:47:14+00:00"
  9123. },
  9124. {
  9125. "name": "sebastian/exporter",
  9126. "version": "5.1.2",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/sebastianbergmann/exporter.git",
  9130. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9135. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "ext-mbstring": "*",
  9140. "php": ">=8.1",
  9141. "sebastian/recursion-context": "^5.0"
  9142. },
  9143. "require-dev": {
  9144. "phpunit/phpunit": "^10.0"
  9145. },
  9146. "type": "library",
  9147. "extra": {
  9148. "branch-alias": {
  9149. "dev-main": "5.1-dev"
  9150. }
  9151. },
  9152. "autoload": {
  9153. "classmap": [
  9154. "src/"
  9155. ]
  9156. },
  9157. "notification-url": "https://packagist.org/downloads/",
  9158. "license": [
  9159. "BSD-3-Clause"
  9160. ],
  9161. "authors": [
  9162. {
  9163. "name": "Sebastian Bergmann",
  9164. "email": "sebastian@phpunit.de"
  9165. },
  9166. {
  9167. "name": "Jeff Welch",
  9168. "email": "whatthejeff@gmail.com"
  9169. },
  9170. {
  9171. "name": "Volker Dusch",
  9172. "email": "github@wallbash.com"
  9173. },
  9174. {
  9175. "name": "Adam Harvey",
  9176. "email": "aharvey@php.net"
  9177. },
  9178. {
  9179. "name": "Bernhard Schussek",
  9180. "email": "bschussek@gmail.com"
  9181. }
  9182. ],
  9183. "description": "Provides the functionality to export PHP variables for visualization",
  9184. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9185. "keywords": [
  9186. "export",
  9187. "exporter"
  9188. ],
  9189. "support": {
  9190. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9191. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9192. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2024-03-02T07:17:12+00:00"
  9201. },
  9202. {
  9203. "name": "sebastian/global-state",
  9204. "version": "6.0.2",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/global-state.git",
  9208. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9213. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": ">=8.1",
  9218. "sebastian/object-reflector": "^3.0",
  9219. "sebastian/recursion-context": "^5.0"
  9220. },
  9221. "require-dev": {
  9222. "ext-dom": "*",
  9223. "phpunit/phpunit": "^10.0"
  9224. },
  9225. "type": "library",
  9226. "extra": {
  9227. "branch-alias": {
  9228. "dev-main": "6.0-dev"
  9229. }
  9230. },
  9231. "autoload": {
  9232. "classmap": [
  9233. "src/"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "BSD-3-Clause"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Sebastian Bergmann",
  9243. "email": "sebastian@phpunit.de"
  9244. }
  9245. ],
  9246. "description": "Snapshotting of global state",
  9247. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9248. "keywords": [
  9249. "global state"
  9250. ],
  9251. "support": {
  9252. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9253. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9254. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9255. },
  9256. "funding": [
  9257. {
  9258. "url": "https://github.com/sebastianbergmann",
  9259. "type": "github"
  9260. }
  9261. ],
  9262. "time": "2024-03-02T07:19:19+00:00"
  9263. },
  9264. {
  9265. "name": "sebastian/lines-of-code",
  9266. "version": "2.0.2",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9270. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9275. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9276. "shasum": ""
  9277. },
  9278. "require": {
  9279. "nikic/php-parser": "^4.18 || ^5.0",
  9280. "php": ">=8.1"
  9281. },
  9282. "require-dev": {
  9283. "phpunit/phpunit": "^10.0"
  9284. },
  9285. "type": "library",
  9286. "extra": {
  9287. "branch-alias": {
  9288. "dev-main": "2.0-dev"
  9289. }
  9290. },
  9291. "autoload": {
  9292. "classmap": [
  9293. "src/"
  9294. ]
  9295. },
  9296. "notification-url": "https://packagist.org/downloads/",
  9297. "license": [
  9298. "BSD-3-Clause"
  9299. ],
  9300. "authors": [
  9301. {
  9302. "name": "Sebastian Bergmann",
  9303. "email": "sebastian@phpunit.de",
  9304. "role": "lead"
  9305. }
  9306. ],
  9307. "description": "Library for counting the lines of code in PHP source code",
  9308. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9309. "support": {
  9310. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9311. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9312. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2023-12-21T08:38:20+00:00"
  9321. },
  9322. {
  9323. "name": "sebastian/object-enumerator",
  9324. "version": "5.0.0",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9328. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9333. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": ">=8.1",
  9338. "sebastian/object-reflector": "^3.0",
  9339. "sebastian/recursion-context": "^5.0"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^10.0"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-main": "5.0-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de"
  9363. }
  9364. ],
  9365. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9366. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9367. "support": {
  9368. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9369. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9370. },
  9371. "funding": [
  9372. {
  9373. "url": "https://github.com/sebastianbergmann",
  9374. "type": "github"
  9375. }
  9376. ],
  9377. "time": "2023-02-03T07:08:32+00:00"
  9378. },
  9379. {
  9380. "name": "sebastian/object-reflector",
  9381. "version": "3.0.0",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9385. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9390. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "php": ">=8.1"
  9395. },
  9396. "require-dev": {
  9397. "phpunit/phpunit": "^10.0"
  9398. },
  9399. "type": "library",
  9400. "extra": {
  9401. "branch-alias": {
  9402. "dev-main": "3.0-dev"
  9403. }
  9404. },
  9405. "autoload": {
  9406. "classmap": [
  9407. "src/"
  9408. ]
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "BSD-3-Clause"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Sebastian Bergmann",
  9417. "email": "sebastian@phpunit.de"
  9418. }
  9419. ],
  9420. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9421. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9422. "support": {
  9423. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9424. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9425. },
  9426. "funding": [
  9427. {
  9428. "url": "https://github.com/sebastianbergmann",
  9429. "type": "github"
  9430. }
  9431. ],
  9432. "time": "2023-02-03T07:06:18+00:00"
  9433. },
  9434. {
  9435. "name": "sebastian/recursion-context",
  9436. "version": "5.0.0",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9440. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9445. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9446. "shasum": ""
  9447. },
  9448. "require": {
  9449. "php": ">=8.1"
  9450. },
  9451. "require-dev": {
  9452. "phpunit/phpunit": "^10.0"
  9453. },
  9454. "type": "library",
  9455. "extra": {
  9456. "branch-alias": {
  9457. "dev-main": "5.0-dev"
  9458. }
  9459. },
  9460. "autoload": {
  9461. "classmap": [
  9462. "src/"
  9463. ]
  9464. },
  9465. "notification-url": "https://packagist.org/downloads/",
  9466. "license": [
  9467. "BSD-3-Clause"
  9468. ],
  9469. "authors": [
  9470. {
  9471. "name": "Sebastian Bergmann",
  9472. "email": "sebastian@phpunit.de"
  9473. },
  9474. {
  9475. "name": "Jeff Welch",
  9476. "email": "whatthejeff@gmail.com"
  9477. },
  9478. {
  9479. "name": "Adam Harvey",
  9480. "email": "aharvey@php.net"
  9481. }
  9482. ],
  9483. "description": "Provides functionality to recursively process PHP variables",
  9484. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9485. "support": {
  9486. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9487. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9488. },
  9489. "funding": [
  9490. {
  9491. "url": "https://github.com/sebastianbergmann",
  9492. "type": "github"
  9493. }
  9494. ],
  9495. "time": "2023-02-03T07:05:40+00:00"
  9496. },
  9497. {
  9498. "name": "sebastian/type",
  9499. "version": "4.0.0",
  9500. "source": {
  9501. "type": "git",
  9502. "url": "https://github.com/sebastianbergmann/type.git",
  9503. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9504. },
  9505. "dist": {
  9506. "type": "zip",
  9507. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9508. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9509. "shasum": ""
  9510. },
  9511. "require": {
  9512. "php": ">=8.1"
  9513. },
  9514. "require-dev": {
  9515. "phpunit/phpunit": "^10.0"
  9516. },
  9517. "type": "library",
  9518. "extra": {
  9519. "branch-alias": {
  9520. "dev-main": "4.0-dev"
  9521. }
  9522. },
  9523. "autoload": {
  9524. "classmap": [
  9525. "src/"
  9526. ]
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "license": [
  9530. "BSD-3-Clause"
  9531. ],
  9532. "authors": [
  9533. {
  9534. "name": "Sebastian Bergmann",
  9535. "email": "sebastian@phpunit.de",
  9536. "role": "lead"
  9537. }
  9538. ],
  9539. "description": "Collection of value objects that represent the types of the PHP type system",
  9540. "homepage": "https://github.com/sebastianbergmann/type",
  9541. "support": {
  9542. "issues": "https://github.com/sebastianbergmann/type/issues",
  9543. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9544. },
  9545. "funding": [
  9546. {
  9547. "url": "https://github.com/sebastianbergmann",
  9548. "type": "github"
  9549. }
  9550. ],
  9551. "time": "2023-02-03T07:10:45+00:00"
  9552. },
  9553. {
  9554. "name": "sebastian/version",
  9555. "version": "4.0.1",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/sebastianbergmann/version.git",
  9559. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9564. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9565. "shasum": ""
  9566. },
  9567. "require": {
  9568. "php": ">=8.1"
  9569. },
  9570. "type": "library",
  9571. "extra": {
  9572. "branch-alias": {
  9573. "dev-main": "4.0-dev"
  9574. }
  9575. },
  9576. "autoload": {
  9577. "classmap": [
  9578. "src/"
  9579. ]
  9580. },
  9581. "notification-url": "https://packagist.org/downloads/",
  9582. "license": [
  9583. "BSD-3-Clause"
  9584. ],
  9585. "authors": [
  9586. {
  9587. "name": "Sebastian Bergmann",
  9588. "email": "sebastian@phpunit.de",
  9589. "role": "lead"
  9590. }
  9591. ],
  9592. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9593. "homepage": "https://github.com/sebastianbergmann/version",
  9594. "support": {
  9595. "issues": "https://github.com/sebastianbergmann/version/issues",
  9596. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://github.com/sebastianbergmann",
  9601. "type": "github"
  9602. }
  9603. ],
  9604. "time": "2023-02-07T11:34:05+00:00"
  9605. },
  9606. {
  9607. "name": "swoole/ide-helper",
  9608. "version": "5.1.2",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/swoole/ide-helper.git",
  9612. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9617. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9618. "shasum": ""
  9619. },
  9620. "type": "library",
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "Apache-2.0"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Team Swoole",
  9628. "email": "team@swoole.com"
  9629. }
  9630. ],
  9631. "description": "IDE help files for Swoole.",
  9632. "support": {
  9633. "issues": "https://github.com/swoole/ide-helper/issues",
  9634. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9635. },
  9636. "time": "2024-02-01T22:28:11+00:00"
  9637. },
  9638. {
  9639. "name": "symfony/event-dispatcher",
  9640. "version": "v6.4.8",
  9641. "source": {
  9642. "type": "git",
  9643. "url": "https://github.com/symfony/event-dispatcher.git",
  9644. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9645. },
  9646. "dist": {
  9647. "type": "zip",
  9648. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9649. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9650. "shasum": ""
  9651. },
  9652. "require": {
  9653. "php": ">=8.1",
  9654. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9655. },
  9656. "conflict": {
  9657. "symfony/dependency-injection": "<5.4",
  9658. "symfony/service-contracts": "<2.5"
  9659. },
  9660. "provide": {
  9661. "psr/event-dispatcher-implementation": "1.0",
  9662. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9663. },
  9664. "require-dev": {
  9665. "psr/log": "^1|^2|^3",
  9666. "symfony/config": "^5.4|^6.0|^7.0",
  9667. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9668. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9669. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9670. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9671. "symfony/service-contracts": "^2.5|^3",
  9672. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9673. },
  9674. "type": "library",
  9675. "autoload": {
  9676. "psr-4": {
  9677. "Symfony\\Component\\EventDispatcher\\": ""
  9678. },
  9679. "exclude-from-classmap": [
  9680. "/Tests/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "MIT"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Fabien Potencier",
  9690. "email": "fabien@symfony.com"
  9691. },
  9692. {
  9693. "name": "Symfony Community",
  9694. "homepage": "https://symfony.com/contributors"
  9695. }
  9696. ],
  9697. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9698. "homepage": "https://symfony.com",
  9699. "support": {
  9700. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9701. },
  9702. "funding": [
  9703. {
  9704. "url": "https://symfony.com/sponsor",
  9705. "type": "custom"
  9706. },
  9707. {
  9708. "url": "https://github.com/fabpot",
  9709. "type": "github"
  9710. },
  9711. {
  9712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9713. "type": "tidelift"
  9714. }
  9715. ],
  9716. "time": "2024-05-31T14:49:08+00:00"
  9717. },
  9718. {
  9719. "name": "symfony/event-dispatcher-contracts",
  9720. "version": "v3.5.0",
  9721. "source": {
  9722. "type": "git",
  9723. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9724. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9725. },
  9726. "dist": {
  9727. "type": "zip",
  9728. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9729. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9730. "shasum": ""
  9731. },
  9732. "require": {
  9733. "php": ">=8.1",
  9734. "psr/event-dispatcher": "^1"
  9735. },
  9736. "type": "library",
  9737. "extra": {
  9738. "branch-alias": {
  9739. "dev-main": "3.5-dev"
  9740. },
  9741. "thanks": {
  9742. "name": "symfony/contracts",
  9743. "url": "https://github.com/symfony/contracts"
  9744. }
  9745. },
  9746. "autoload": {
  9747. "psr-4": {
  9748. "Symfony\\Contracts\\EventDispatcher\\": ""
  9749. }
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Nicolas Grekas",
  9758. "email": "p@tchwork.com"
  9759. },
  9760. {
  9761. "name": "Symfony Community",
  9762. "homepage": "https://symfony.com/contributors"
  9763. }
  9764. ],
  9765. "description": "Generic abstractions related to dispatching event",
  9766. "homepage": "https://symfony.com",
  9767. "keywords": [
  9768. "abstractions",
  9769. "contracts",
  9770. "decoupling",
  9771. "interfaces",
  9772. "interoperability",
  9773. "standards"
  9774. ],
  9775. "support": {
  9776. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://symfony.com/sponsor",
  9781. "type": "custom"
  9782. },
  9783. {
  9784. "url": "https://github.com/fabpot",
  9785. "type": "github"
  9786. },
  9787. {
  9788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9789. "type": "tidelift"
  9790. }
  9791. ],
  9792. "time": "2024-04-18T09:32:20+00:00"
  9793. },
  9794. {
  9795. "name": "symfony/filesystem",
  9796. "version": "v6.4.8",
  9797. "source": {
  9798. "type": "git",
  9799. "url": "https://github.com/symfony/filesystem.git",
  9800. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  9801. },
  9802. "dist": {
  9803. "type": "zip",
  9804. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9805. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9806. "shasum": ""
  9807. },
  9808. "require": {
  9809. "php": ">=8.1",
  9810. "symfony/polyfill-ctype": "~1.8",
  9811. "symfony/polyfill-mbstring": "~1.8"
  9812. },
  9813. "require-dev": {
  9814. "symfony/process": "^5.4|^6.4|^7.0"
  9815. },
  9816. "type": "library",
  9817. "autoload": {
  9818. "psr-4": {
  9819. "Symfony\\Component\\Filesystem\\": ""
  9820. },
  9821. "exclude-from-classmap": [
  9822. "/Tests/"
  9823. ]
  9824. },
  9825. "notification-url": "https://packagist.org/downloads/",
  9826. "license": [
  9827. "MIT"
  9828. ],
  9829. "authors": [
  9830. {
  9831. "name": "Fabien Potencier",
  9832. "email": "fabien@symfony.com"
  9833. },
  9834. {
  9835. "name": "Symfony Community",
  9836. "homepage": "https://symfony.com/contributors"
  9837. }
  9838. ],
  9839. "description": "Provides basic utilities for the filesystem",
  9840. "homepage": "https://symfony.com",
  9841. "support": {
  9842. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  9843. },
  9844. "funding": [
  9845. {
  9846. "url": "https://symfony.com/sponsor",
  9847. "type": "custom"
  9848. },
  9849. {
  9850. "url": "https://github.com/fabpot",
  9851. "type": "github"
  9852. },
  9853. {
  9854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9855. "type": "tidelift"
  9856. }
  9857. ],
  9858. "time": "2024-05-31T14:49:08+00:00"
  9859. },
  9860. {
  9861. "name": "symfony/http-foundation",
  9862. "version": "v6.4.8",
  9863. "source": {
  9864. "type": "git",
  9865. "url": "https://github.com/symfony/http-foundation.git",
  9866. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  9867. },
  9868. "dist": {
  9869. "type": "zip",
  9870. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  9871. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  9872. "shasum": ""
  9873. },
  9874. "require": {
  9875. "php": ">=8.1",
  9876. "symfony/deprecation-contracts": "^2.5|^3",
  9877. "symfony/polyfill-mbstring": "~1.1",
  9878. "symfony/polyfill-php83": "^1.27"
  9879. },
  9880. "conflict": {
  9881. "symfony/cache": "<6.3"
  9882. },
  9883. "require-dev": {
  9884. "doctrine/dbal": "^2.13.1|^3|^4",
  9885. "predis/predis": "^1.1|^2.0",
  9886. "symfony/cache": "^6.3|^7.0",
  9887. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9888. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9889. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9890. "symfony/mime": "^5.4|^6.0|^7.0",
  9891. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9892. },
  9893. "type": "library",
  9894. "autoload": {
  9895. "psr-4": {
  9896. "Symfony\\Component\\HttpFoundation\\": ""
  9897. },
  9898. "exclude-from-classmap": [
  9899. "/Tests/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "MIT"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Fabien Potencier",
  9909. "email": "fabien@symfony.com"
  9910. },
  9911. {
  9912. "name": "Symfony Community",
  9913. "homepage": "https://symfony.com/contributors"
  9914. }
  9915. ],
  9916. "description": "Defines an object-oriented layer for the HTTP specification",
  9917. "homepage": "https://symfony.com",
  9918. "support": {
  9919. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  9920. },
  9921. "funding": [
  9922. {
  9923. "url": "https://symfony.com/sponsor",
  9924. "type": "custom"
  9925. },
  9926. {
  9927. "url": "https://github.com/fabpot",
  9928. "type": "github"
  9929. },
  9930. {
  9931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9932. "type": "tidelift"
  9933. }
  9934. ],
  9935. "time": "2024-05-31T14:49:08+00:00"
  9936. },
  9937. {
  9938. "name": "symfony/options-resolver",
  9939. "version": "v6.4.8",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/symfony/options-resolver.git",
  9943. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  9948. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=8.1",
  9953. "symfony/deprecation-contracts": "^2.5|^3"
  9954. },
  9955. "type": "library",
  9956. "autoload": {
  9957. "psr-4": {
  9958. "Symfony\\Component\\OptionsResolver\\": ""
  9959. },
  9960. "exclude-from-classmap": [
  9961. "/Tests/"
  9962. ]
  9963. },
  9964. "notification-url": "https://packagist.org/downloads/",
  9965. "license": [
  9966. "MIT"
  9967. ],
  9968. "authors": [
  9969. {
  9970. "name": "Fabien Potencier",
  9971. "email": "fabien@symfony.com"
  9972. },
  9973. {
  9974. "name": "Symfony Community",
  9975. "homepage": "https://symfony.com/contributors"
  9976. }
  9977. ],
  9978. "description": "Provides an improved replacement for the array_replace PHP function",
  9979. "homepage": "https://symfony.com",
  9980. "keywords": [
  9981. "config",
  9982. "configuration",
  9983. "options"
  9984. ],
  9985. "support": {
  9986. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  9987. },
  9988. "funding": [
  9989. {
  9990. "url": "https://symfony.com/sponsor",
  9991. "type": "custom"
  9992. },
  9993. {
  9994. "url": "https://github.com/fabpot",
  9995. "type": "github"
  9996. },
  9997. {
  9998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9999. "type": "tidelift"
  10000. }
  10001. ],
  10002. "time": "2024-05-31T14:49:08+00:00"
  10003. },
  10004. {
  10005. "name": "symfony/polyfill-php81",
  10006. "version": "v1.29.0",
  10007. "source": {
  10008. "type": "git",
  10009. "url": "https://github.com/symfony/polyfill-php81.git",
  10010. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10011. },
  10012. "dist": {
  10013. "type": "zip",
  10014. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10015. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10016. "shasum": ""
  10017. },
  10018. "require": {
  10019. "php": ">=7.1"
  10020. },
  10021. "type": "library",
  10022. "extra": {
  10023. "thanks": {
  10024. "name": "symfony/polyfill",
  10025. "url": "https://github.com/symfony/polyfill"
  10026. }
  10027. },
  10028. "autoload": {
  10029. "files": [
  10030. "bootstrap.php"
  10031. ],
  10032. "psr-4": {
  10033. "Symfony\\Polyfill\\Php81\\": ""
  10034. },
  10035. "classmap": [
  10036. "Resources/stubs"
  10037. ]
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "MIT"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Nicolas Grekas",
  10046. "email": "p@tchwork.com"
  10047. },
  10048. {
  10049. "name": "Symfony Community",
  10050. "homepage": "https://symfony.com/contributors"
  10051. }
  10052. ],
  10053. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10054. "homepage": "https://symfony.com",
  10055. "keywords": [
  10056. "compatibility",
  10057. "polyfill",
  10058. "portable",
  10059. "shim"
  10060. ],
  10061. "support": {
  10062. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10063. },
  10064. "funding": [
  10065. {
  10066. "url": "https://symfony.com/sponsor",
  10067. "type": "custom"
  10068. },
  10069. {
  10070. "url": "https://github.com/fabpot",
  10071. "type": "github"
  10072. },
  10073. {
  10074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10075. "type": "tidelift"
  10076. }
  10077. ],
  10078. "time": "2024-01-29T20:11:03+00:00"
  10079. },
  10080. {
  10081. "name": "symfony/polyfill-php83",
  10082. "version": "v1.29.0",
  10083. "source": {
  10084. "type": "git",
  10085. "url": "https://github.com/symfony/polyfill-php83.git",
  10086. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10087. },
  10088. "dist": {
  10089. "type": "zip",
  10090. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10091. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10092. "shasum": ""
  10093. },
  10094. "require": {
  10095. "php": ">=7.1",
  10096. "symfony/polyfill-php80": "^1.14"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "thanks": {
  10101. "name": "symfony/polyfill",
  10102. "url": "https://github.com/symfony/polyfill"
  10103. }
  10104. },
  10105. "autoload": {
  10106. "files": [
  10107. "bootstrap.php"
  10108. ],
  10109. "psr-4": {
  10110. "Symfony\\Polyfill\\Php83\\": ""
  10111. },
  10112. "classmap": [
  10113. "Resources/stubs"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "MIT"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Nicolas Grekas",
  10123. "email": "p@tchwork.com"
  10124. },
  10125. {
  10126. "name": "Symfony Community",
  10127. "homepage": "https://symfony.com/contributors"
  10128. }
  10129. ],
  10130. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10131. "homepage": "https://symfony.com",
  10132. "keywords": [
  10133. "compatibility",
  10134. "polyfill",
  10135. "portable",
  10136. "shim"
  10137. ],
  10138. "support": {
  10139. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10140. },
  10141. "funding": [
  10142. {
  10143. "url": "https://symfony.com/sponsor",
  10144. "type": "custom"
  10145. },
  10146. {
  10147. "url": "https://github.com/fabpot",
  10148. "type": "github"
  10149. },
  10150. {
  10151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10152. "type": "tidelift"
  10153. }
  10154. ],
  10155. "time": "2024-01-29T20:11:03+00:00"
  10156. },
  10157. {
  10158. "name": "symfony/process",
  10159. "version": "v6.4.8",
  10160. "source": {
  10161. "type": "git",
  10162. "url": "https://github.com/symfony/process.git",
  10163. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10164. },
  10165. "dist": {
  10166. "type": "zip",
  10167. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10168. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10169. "shasum": ""
  10170. },
  10171. "require": {
  10172. "php": ">=8.1"
  10173. },
  10174. "type": "library",
  10175. "autoload": {
  10176. "psr-4": {
  10177. "Symfony\\Component\\Process\\": ""
  10178. },
  10179. "exclude-from-classmap": [
  10180. "/Tests/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "MIT"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Fabien Potencier",
  10190. "email": "fabien@symfony.com"
  10191. },
  10192. {
  10193. "name": "Symfony Community",
  10194. "homepage": "https://symfony.com/contributors"
  10195. }
  10196. ],
  10197. "description": "Executes commands in sub-processes",
  10198. "homepage": "https://symfony.com",
  10199. "support": {
  10200. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10201. },
  10202. "funding": [
  10203. {
  10204. "url": "https://symfony.com/sponsor",
  10205. "type": "custom"
  10206. },
  10207. {
  10208. "url": "https://github.com/fabpot",
  10209. "type": "github"
  10210. },
  10211. {
  10212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10213. "type": "tidelift"
  10214. }
  10215. ],
  10216. "time": "2024-05-31T14:49:08+00:00"
  10217. },
  10218. {
  10219. "name": "symfony/stopwatch",
  10220. "version": "v6.4.8",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/symfony/stopwatch.git",
  10224. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10229. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "php": ">=8.1",
  10234. "symfony/service-contracts": "^2.5|^3"
  10235. },
  10236. "type": "library",
  10237. "autoload": {
  10238. "psr-4": {
  10239. "Symfony\\Component\\Stopwatch\\": ""
  10240. },
  10241. "exclude-from-classmap": [
  10242. "/Tests/"
  10243. ]
  10244. },
  10245. "notification-url": "https://packagist.org/downloads/",
  10246. "license": [
  10247. "MIT"
  10248. ],
  10249. "authors": [
  10250. {
  10251. "name": "Fabien Potencier",
  10252. "email": "fabien@symfony.com"
  10253. },
  10254. {
  10255. "name": "Symfony Community",
  10256. "homepage": "https://symfony.com/contributors"
  10257. }
  10258. ],
  10259. "description": "Provides a way to profile code",
  10260. "homepage": "https://symfony.com",
  10261. "support": {
  10262. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://symfony.com/sponsor",
  10267. "type": "custom"
  10268. },
  10269. {
  10270. "url": "https://github.com/fabpot",
  10271. "type": "github"
  10272. },
  10273. {
  10274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10275. "type": "tidelift"
  10276. }
  10277. ],
  10278. "time": "2024-05-31T14:49:08+00:00"
  10279. },
  10280. {
  10281. "name": "theseer/tokenizer",
  10282. "version": "1.2.3",
  10283. "source": {
  10284. "type": "git",
  10285. "url": "https://github.com/theseer/tokenizer.git",
  10286. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10287. },
  10288. "dist": {
  10289. "type": "zip",
  10290. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10291. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10292. "shasum": ""
  10293. },
  10294. "require": {
  10295. "ext-dom": "*",
  10296. "ext-tokenizer": "*",
  10297. "ext-xmlwriter": "*",
  10298. "php": "^7.2 || ^8.0"
  10299. },
  10300. "type": "library",
  10301. "autoload": {
  10302. "classmap": [
  10303. "src/"
  10304. ]
  10305. },
  10306. "notification-url": "https://packagist.org/downloads/",
  10307. "license": [
  10308. "BSD-3-Clause"
  10309. ],
  10310. "authors": [
  10311. {
  10312. "name": "Arne Blankerts",
  10313. "email": "arne@blankerts.de",
  10314. "role": "Developer"
  10315. }
  10316. ],
  10317. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10318. "support": {
  10319. "issues": "https://github.com/theseer/tokenizer/issues",
  10320. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/theseer",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "time": "2024-03-03T12:36:25+00:00"
  10329. }
  10330. ],
  10331. "aliases": [],
  10332. "minimum-stability": "dev",
  10333. "stability-flags": [],
  10334. "prefer-stable": true,
  10335. "prefer-lowest": false,
  10336. "platform": {
  10337. "php": ">=8.1"
  10338. },
  10339. "platform-dev": [],
  10340. "plugin-api-version": "2.6.0"
  10341. }