composer.lock 380 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749
  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": "350785ae19ea0bc83641237625ab54de",
  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.49",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/hyperf/paginator.git",
  3154. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3159. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3160. "shasum": "",
  3161. "mirrors": [
  3162. {
  3163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3164. "preferred": true
  3165. }
  3166. ]
  3167. },
  3168. "require": {
  3169. "hyperf/contract": "~3.1.0",
  3170. "hyperf/support": "~3.1.0",
  3171. "hyperf/utils": "~3.1.0",
  3172. "php": ">=8.1"
  3173. },
  3174. "suggest": {
  3175. "hyperf/event": "Reqiured to use PageResolverListener.",
  3176. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3177. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "hyperf": {
  3182. "config": "Hyperf\\Paginator\\ConfigProvider"
  3183. },
  3184. "branch-alias": {
  3185. "dev-master": "3.1-dev"
  3186. }
  3187. },
  3188. "autoload": {
  3189. "psr-4": {
  3190. "Hyperf\\Paginator\\": "src/"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "MIT"
  3196. ],
  3197. "description": "A paginator component for hyperf.",
  3198. "homepage": "https://hyperf.io",
  3199. "keywords": [
  3200. "hyperf",
  3201. "paginator",
  3202. "php"
  3203. ],
  3204. "support": {
  3205. "docs": "https://hyperf.wiki",
  3206. "issues": "https://github.com/hyperf/hyperf/issues",
  3207. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3208. "source": "https://github.com/hyperf/hyperf"
  3209. },
  3210. "funding": [
  3211. {
  3212. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3213. "type": "custom"
  3214. },
  3215. {
  3216. "url": "https://opencollective.com/hyperf",
  3217. "type": "open_collective"
  3218. }
  3219. ],
  3220. "time": "2024-12-17T09:42:13+00:00"
  3221. },
  3222. {
  3223. "name": "hyperf/pipeline",
  3224. "version": "v3.1.15",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/hyperf/pipeline.git",
  3228. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3233. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=8.1",
  3238. "psr/container": "^1.0|^2.0"
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "3.1-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Hyperf\\Pipeline\\": "src/"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3256. "homepage": "https://hyperf.io",
  3257. "keywords": [
  3258. "hyperf",
  3259. "php",
  3260. "pipeline",
  3261. "swoole"
  3262. ],
  3263. "support": {
  3264. "docs": "https://hyperf.wiki",
  3265. "issues": "https://github.com/hyperf/hyperf/issues",
  3266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3267. "source": "https://github.com/hyperf/hyperf"
  3268. },
  3269. "funding": [
  3270. {
  3271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3272. "type": "custom"
  3273. },
  3274. {
  3275. "url": "https://opencollective.com/hyperf",
  3276. "type": "open_collective"
  3277. }
  3278. ],
  3279. "time": "2024-03-23T11:28:51+00:00"
  3280. },
  3281. {
  3282. "name": "hyperf/pool",
  3283. "version": "v3.1.15",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/hyperf/pool.git",
  3287. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3292. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "hyperf/contract": "~3.1.0",
  3297. "hyperf/support": "~3.1.0",
  3298. "hyperf/utils": "~3.1.0",
  3299. "php": ">=8.1",
  3300. "psr/container": "^1.0|^2.0"
  3301. },
  3302. "suggest": {
  3303. "psr/event-dispatcher": "Required to use events."
  3304. },
  3305. "type": "library",
  3306. "extra": {
  3307. "branch-alias": {
  3308. "dev-master": "3.1-dev"
  3309. },
  3310. "hyperf": {
  3311. "config": "Hyperf\\Pool\\ConfigProvider"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Hyperf\\Pool\\": "src/"
  3317. }
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "description": "An independent universal connection pool component.",
  3324. "homepage": "https://hyperf.io",
  3325. "keywords": [
  3326. "connection-pool",
  3327. "hyperf",
  3328. "php",
  3329. "swoole"
  3330. ],
  3331. "support": {
  3332. "docs": "https://hyperf.wiki",
  3333. "issues": "https://github.com/hyperf/hyperf/issues",
  3334. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3335. "source": "https://github.com/hyperf/hyperf"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://opencollective.com/hyperf",
  3344. "type": "open_collective"
  3345. }
  3346. ],
  3347. "time": "2024-03-23T11:28:51+00:00"
  3348. },
  3349. {
  3350. "name": "hyperf/process",
  3351. "version": "v3.1.15",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/hyperf/process.git",
  3355. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3360. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "hyperf/contract": "~3.1.0",
  3365. "hyperf/support": "~3.1.0",
  3366. "hyperf/utils": "~3.1.0",
  3367. "php": ">=8.1",
  3368. "psr/container": "^1.0|^2.0",
  3369. "psr/event-dispatcher": "^1.0"
  3370. },
  3371. "suggest": {
  3372. "hyperf/di": "Required to use annotations.",
  3373. "hyperf/event": "Required to dump the message before and after process.",
  3374. "hyperf/framework": "Required to use BootProcessListener."
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "branch-alias": {
  3379. "dev-master": "3.1-dev"
  3380. },
  3381. "hyperf": {
  3382. "config": "Hyperf\\Process\\ConfigProvider"
  3383. }
  3384. },
  3385. "autoload": {
  3386. "psr-4": {
  3387. "Hyperf\\Process\\": "src/"
  3388. }
  3389. },
  3390. "notification-url": "https://packagist.org/downloads/",
  3391. "license": [
  3392. "MIT"
  3393. ],
  3394. "description": "A process component for hyperf.",
  3395. "homepage": "https://hyperf.io",
  3396. "keywords": [
  3397. "hyperf",
  3398. "php",
  3399. "process"
  3400. ],
  3401. "support": {
  3402. "docs": "https://hyperf.wiki",
  3403. "issues": "https://github.com/hyperf/hyperf/issues",
  3404. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3405. "source": "https://github.com/hyperf/hyperf"
  3406. },
  3407. "funding": [
  3408. {
  3409. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3410. "type": "custom"
  3411. },
  3412. {
  3413. "url": "https://opencollective.com/hyperf",
  3414. "type": "open_collective"
  3415. }
  3416. ],
  3417. "time": "2024-03-23T11:28:51+00:00"
  3418. },
  3419. {
  3420. "name": "hyperf/redis",
  3421. "version": "v3.1.18",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/hyperf/redis.git",
  3425. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3430. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3431. "shasum": ""
  3432. },
  3433. "require": {
  3434. "ext-redis": "^5.0|^6.0",
  3435. "hyperf/contract": "~3.1.0",
  3436. "hyperf/pool": "~3.1.0",
  3437. "hyperf/support": "~3.1.0",
  3438. "hyperf/tappable": "~3.1.0",
  3439. "hyperf/utils": "~3.1.0",
  3440. "php": ">=8.1",
  3441. "psr/container": "^1.0|^2.0"
  3442. },
  3443. "suggest": {
  3444. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3445. "hyperf/di": "Create the RedisPool via dependency injection."
  3446. },
  3447. "type": "library",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-master": "3.1-dev"
  3451. },
  3452. "hyperf": {
  3453. "config": "Hyperf\\Redis\\ConfigProvider"
  3454. }
  3455. },
  3456. "autoload": {
  3457. "psr-4": {
  3458. "Hyperf\\Redis\\": "src/"
  3459. }
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "description": "A redis component for hyperf.",
  3466. "homepage": "https://hyperf.io",
  3467. "keywords": [
  3468. "hyperf",
  3469. "php",
  3470. "pool",
  3471. "redis"
  3472. ],
  3473. "support": {
  3474. "docs": "https://hyperf.wiki",
  3475. "issues": "https://github.com/hyperf/hyperf/issues",
  3476. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3477. "source": "https://github.com/hyperf/hyperf"
  3478. },
  3479. "funding": [
  3480. {
  3481. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3482. "type": "custom"
  3483. },
  3484. {
  3485. "url": "https://opencollective.com/hyperf",
  3486. "type": "open_collective"
  3487. }
  3488. ],
  3489. "time": "2024-04-11T10:18:35+00:00"
  3490. },
  3491. {
  3492. "name": "hyperf/rpc",
  3493. "version": "v3.1.15",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/hyperf/rpc.git",
  3497. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3502. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3503. "shasum": ""
  3504. },
  3505. "require": {
  3506. "hyperf/codec": "~3.1.0",
  3507. "hyperf/contract": "~3.1.0",
  3508. "hyperf/support": "~3.1.0",
  3509. "jetbrains/phpstorm-attributes": "^1.0",
  3510. "php": ">=8.1"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "3.1-dev"
  3516. },
  3517. "hyperf": []
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Hyperf\\Rpc\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "description": "A rpc basic library for Hyperf.",
  3529. "homepage": "https://hyperf.io",
  3530. "keywords": [
  3531. "hyperf",
  3532. "php",
  3533. "rpc",
  3534. "swoole"
  3535. ],
  3536. "support": {
  3537. "docs": "https://hyperf.wiki",
  3538. "issues": "https://github.com/hyperf/hyperf/issues",
  3539. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3540. "source": "https://github.com/hyperf/hyperf"
  3541. },
  3542. "funding": [
  3543. {
  3544. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3545. "type": "custom"
  3546. },
  3547. {
  3548. "url": "https://opencollective.com/hyperf",
  3549. "type": "open_collective"
  3550. }
  3551. ],
  3552. "time": "2024-03-23T11:28:51+00:00"
  3553. },
  3554. {
  3555. "name": "hyperf/rpc-server",
  3556. "version": "v3.1.20",
  3557. "source": {
  3558. "type": "git",
  3559. "url": "https://github.com/hyperf/rpc-server.git",
  3560. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3561. },
  3562. "dist": {
  3563. "type": "zip",
  3564. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3565. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3566. "shasum": ""
  3567. },
  3568. "require": {
  3569. "hyperf/http-server": "~3.1.0",
  3570. "hyperf/rpc": "~3.1.0",
  3571. "php": ">=8.1"
  3572. },
  3573. "suggest": {
  3574. "hyperf/di": "Required to use annotations."
  3575. },
  3576. "type": "library",
  3577. "extra": {
  3578. "branch-alias": {
  3579. "dev-master": "3.1-dev"
  3580. },
  3581. "hyperf": {
  3582. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3583. }
  3584. },
  3585. "autoload": {
  3586. "psr-4": {
  3587. "Hyperf\\RpcServer\\": "src/"
  3588. }
  3589. },
  3590. "notification-url": "https://packagist.org/downloads/",
  3591. "license": [
  3592. "MIT"
  3593. ],
  3594. "description": "An abstract rpc server component for Hyperf.",
  3595. "homepage": "https://hyperf.io",
  3596. "keywords": [
  3597. "hyperf",
  3598. "php",
  3599. "rpc",
  3600. "rpc-server",
  3601. "swoole"
  3602. ],
  3603. "support": {
  3604. "docs": "https://hyperf.wiki",
  3605. "issues": "https://github.com/hyperf/hyperf/issues",
  3606. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3607. "source": "https://github.com/hyperf/hyperf"
  3608. },
  3609. "funding": [
  3610. {
  3611. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3612. "type": "custom"
  3613. },
  3614. {
  3615. "url": "https://opencollective.com/hyperf",
  3616. "type": "open_collective"
  3617. }
  3618. ],
  3619. "time": "2024-04-22T01:46:29+00:00"
  3620. },
  3621. {
  3622. "name": "hyperf/serializer",
  3623. "version": "v3.1.23",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/hyperf/serializer.git",
  3627. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3632. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "hyperf/contract": "~3.1.0",
  3637. "php": ">=8.1"
  3638. },
  3639. "suggest": {
  3640. "hyperf/di": "Required to use ExceptionNormalizer",
  3641. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3642. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-master": "3.1-dev"
  3648. },
  3649. "hyperf": {
  3650. "config": "Hyperf\\Serializer\\ConfigProvider"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Hyperf\\Serializer\\": "src/"
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "description": "A serializer component for Hyperf.",
  3663. "homepage": "https://hyperf.io",
  3664. "keywords": [
  3665. "hyperf",
  3666. "php",
  3667. "swoole",
  3668. "tappable"
  3669. ],
  3670. "support": {
  3671. "docs": "https://hyperf.wiki",
  3672. "issues": "https://github.com/hyperf/hyperf/issues",
  3673. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3674. "source": "https://github.com/hyperf/hyperf"
  3675. },
  3676. "funding": [
  3677. {
  3678. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3679. "type": "custom"
  3680. },
  3681. {
  3682. "url": "https://opencollective.com/hyperf",
  3683. "type": "open_collective"
  3684. }
  3685. ],
  3686. "time": "2024-05-23T03:43:58+00:00"
  3687. },
  3688. {
  3689. "name": "hyperf/server",
  3690. "version": "v3.1.23",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/hyperf/server.git",
  3694. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3699. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "hyperf/contract": "~3.1.0",
  3704. "hyperf/coordinator": "~3.1.0",
  3705. "hyperf/engine": "^2.8",
  3706. "hyperf/support": "~3.1.0",
  3707. "hyperf/tappable": "~3.1.0",
  3708. "php": ">=8.1",
  3709. "psr/container": "^1.0|^2.0",
  3710. "psr/event-dispatcher": "^1.0",
  3711. "psr/log": "^1.0|^2.0|^3.0",
  3712. "symfony/console": "^5.0|^6.0|^7.0"
  3713. },
  3714. "suggest": {
  3715. "hyperf/event": "Dump the info after server start.",
  3716. "hyperf/framework": "Dump the info after server start."
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "3.1-dev"
  3722. },
  3723. "hyperf": {
  3724. "config": "Hyperf\\Server\\ConfigProvider"
  3725. }
  3726. },
  3727. "autoload": {
  3728. "psr-4": {
  3729. "Hyperf\\Server\\": "src/"
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "description": "A base server library for Hyperf.",
  3737. "homepage": "https://hyperf.io",
  3738. "keywords": [
  3739. "hyperf",
  3740. "php",
  3741. "server",
  3742. "swoole"
  3743. ],
  3744. "support": {
  3745. "docs": "https://hyperf.wiki",
  3746. "issues": "https://github.com/hyperf/hyperf/issues",
  3747. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3748. "source": "https://github.com/hyperf/hyperf"
  3749. },
  3750. "funding": [
  3751. {
  3752. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3753. "type": "custom"
  3754. },
  3755. {
  3756. "url": "https://opencollective.com/hyperf",
  3757. "type": "open_collective"
  3758. }
  3759. ],
  3760. "time": "2024-05-23T03:43:58+00:00"
  3761. },
  3762. {
  3763. "name": "hyperf/service-governance",
  3764. "version": "v3.1.15",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/hyperf/service-governance.git",
  3768. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3773. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "hyperf/contract": "~3.1.0",
  3778. "hyperf/support": "~3.1.0",
  3779. "jetbrains/phpstorm-attributes": "^1.0",
  3780. "php": ">=8.1"
  3781. },
  3782. "suggest": {
  3783. "hyperf/event": "Required to use RegisterServiceListener.",
  3784. "hyperf/framework": "Required to use RegisterServiceListener.",
  3785. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3786. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-master": "3.1-dev"
  3792. },
  3793. "hyperf": {
  3794. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Hyperf\\ServiceGovernance\\": "src/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "description": "A service governance component for Hyperf.",
  3807. "homepage": "https://hyperf.io",
  3808. "keywords": [
  3809. "hyperf",
  3810. "php",
  3811. "service-governance",
  3812. "swoole"
  3813. ],
  3814. "support": {
  3815. "docs": "https://hyperf.wiki",
  3816. "issues": "https://github.com/hyperf/hyperf/issues",
  3817. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3818. "source": "https://github.com/hyperf/hyperf"
  3819. },
  3820. "funding": [
  3821. {
  3822. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3823. "type": "custom"
  3824. },
  3825. {
  3826. "url": "https://opencollective.com/hyperf",
  3827. "type": "open_collective"
  3828. }
  3829. ],
  3830. "time": "2024-03-23T11:28:51+00:00"
  3831. },
  3832. {
  3833. "name": "hyperf/service-governance-consul",
  3834. "version": "v3.1.15",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/hyperf/service-governance-consul.git",
  3838. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3843. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3844. "shasum": ""
  3845. },
  3846. "require": {
  3847. "hyperf/consul": "~3.1.0",
  3848. "hyperf/contract": "~3.1.0",
  3849. "hyperf/service-governance": "~3.1.0",
  3850. "hyperf/support": "~3.1.0",
  3851. "hyperf/utils": "~3.1.0",
  3852. "php": ">=8.1"
  3853. },
  3854. "type": "library",
  3855. "extra": {
  3856. "branch-alias": {
  3857. "dev-master": "3.1-dev"
  3858. },
  3859. "hyperf": {
  3860. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3861. }
  3862. },
  3863. "autoload": {
  3864. "psr-4": {
  3865. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3866. }
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "MIT"
  3871. ],
  3872. "description": "A consul adapter for service governance.",
  3873. "homepage": "https://hyperf.io",
  3874. "keywords": [
  3875. "consul-adapter",
  3876. "hyperf",
  3877. "php",
  3878. "service-governance",
  3879. "swoole"
  3880. ],
  3881. "support": {
  3882. "docs": "https://hyperf.wiki",
  3883. "issues": "https://github.com/hyperf/hyperf/issues",
  3884. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3885. "source": "https://github.com/hyperf/hyperf"
  3886. },
  3887. "funding": [
  3888. {
  3889. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3890. "type": "custom"
  3891. },
  3892. {
  3893. "url": "https://opencollective.com/hyperf",
  3894. "type": "open_collective"
  3895. }
  3896. ],
  3897. "time": "2024-03-23T11:28:51+00:00"
  3898. },
  3899. {
  3900. "name": "hyperf/service-governance-nacos",
  3901. "version": "v3.1.15",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3905. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3910. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "hyperf/codec": "~3.1.0",
  3915. "hyperf/contract": "~3.1.0",
  3916. "hyperf/nacos": "~3.1.0",
  3917. "hyperf/service-governance": "~3.1.0",
  3918. "hyperf/support": "~3.1.0",
  3919. "hyperf/utils": "~3.1.0",
  3920. "php": ">=8.1"
  3921. },
  3922. "type": "library",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-master": "3.1-dev"
  3926. },
  3927. "hyperf": {
  3928. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3929. }
  3930. },
  3931. "autoload": {
  3932. "psr-4": {
  3933. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "description": "A nacos adapter for service governance.",
  3941. "homepage": "https://hyperf.io",
  3942. "keywords": [
  3943. "hyperf",
  3944. "nacos-adapter",
  3945. "php",
  3946. "service-governance",
  3947. "swoole"
  3948. ],
  3949. "support": {
  3950. "docs": "https://hyperf.wiki",
  3951. "issues": "https://github.com/hyperf/hyperf/issues",
  3952. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3953. "source": "https://github.com/hyperf/hyperf"
  3954. },
  3955. "funding": [
  3956. {
  3957. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3958. "type": "custom"
  3959. },
  3960. {
  3961. "url": "https://opencollective.com/hyperf",
  3962. "type": "open_collective"
  3963. }
  3964. ],
  3965. "time": "2024-03-23T11:28:51+00:00"
  3966. },
  3967. {
  3968. "name": "hyperf/stdlib",
  3969. "version": "v3.1.15",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://github.com/hyperf/stdlib.git",
  3973. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  3978. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "php": ">=8.1"
  3983. },
  3984. "type": "library",
  3985. "extra": {
  3986. "branch-alias": {
  3987. "dev-master": "3.1-dev"
  3988. }
  3989. },
  3990. "autoload": {
  3991. "psr-4": {
  3992. "Hyperf\\Stdlib\\": "src/"
  3993. }
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "MIT"
  3998. ],
  3999. "description": "A stdlib component for Hyperf.",
  4000. "homepage": "https://hyperf.io",
  4001. "keywords": [
  4002. "hyperf",
  4003. "php",
  4004. "stdlib",
  4005. "swoole"
  4006. ],
  4007. "support": {
  4008. "docs": "https://hyperf.wiki",
  4009. "issues": "https://github.com/hyperf/hyperf/issues",
  4010. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4011. "source": "https://github.com/hyperf/hyperf"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4016. "type": "custom"
  4017. },
  4018. {
  4019. "url": "https://opencollective.com/hyperf",
  4020. "type": "open_collective"
  4021. }
  4022. ],
  4023. "time": "2024-03-23T11:28:51+00:00"
  4024. },
  4025. {
  4026. "name": "hyperf/stringable",
  4027. "version": "v3.1.24",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/hyperf/stringable.git",
  4031. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4036. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4037. "shasum": ""
  4038. },
  4039. "require": {
  4040. "ext-mbstring": "*",
  4041. "hyperf/collection": "~3.1.0",
  4042. "hyperf/conditionable": "~3.1.0",
  4043. "hyperf/macroable": "~3.1.0",
  4044. "hyperf/tappable": "~3.1.0",
  4045. "php": ">=8.1"
  4046. },
  4047. "suggest": {
  4048. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4049. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4050. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4051. },
  4052. "type": "library",
  4053. "extra": {
  4054. "branch-alias": {
  4055. "dev-master": "3.1-dev"
  4056. }
  4057. },
  4058. "autoload": {
  4059. "files": [
  4060. "src/Functions.php"
  4061. ],
  4062. "psr-4": {
  4063. "Hyperf\\Stringable\\": "src/"
  4064. }
  4065. },
  4066. "notification-url": "https://packagist.org/downloads/",
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "description": "Hyperf Stringable package which come from illuminate/support",
  4071. "homepage": "https://hyperf.io",
  4072. "keywords": [
  4073. "hyperf",
  4074. "php",
  4075. "stringable",
  4076. "swoole"
  4077. ],
  4078. "support": {
  4079. "docs": "https://hyperf.wiki",
  4080. "issues": "https://github.com/hyperf/hyperf/issues",
  4081. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4082. "source": "https://github.com/hyperf/hyperf"
  4083. },
  4084. "funding": [
  4085. {
  4086. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4087. "type": "custom"
  4088. },
  4089. {
  4090. "url": "https://opencollective.com/hyperf",
  4091. "type": "open_collective"
  4092. }
  4093. ],
  4094. "time": "2024-05-27T03:20:24+00:00"
  4095. },
  4096. {
  4097. "name": "hyperf/support",
  4098. "version": "v3.1.15",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/hyperf/support.git",
  4102. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4107. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "hyperf/collection": "~3.1.0",
  4112. "hyperf/context": "~3.1.0",
  4113. "hyperf/contract": "~3.1.0",
  4114. "hyperf/coroutine": "~3.1.0",
  4115. "hyperf/macroable": "~3.1.0",
  4116. "hyperf/stringable": "~3.1.0",
  4117. "php": ">=8.1"
  4118. },
  4119. "suggest": {
  4120. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4121. },
  4122. "type": "library",
  4123. "extra": {
  4124. "branch-alias": {
  4125. "dev-master": "3.1-dev"
  4126. }
  4127. },
  4128. "autoload": {
  4129. "files": [
  4130. "src/Functions.php"
  4131. ],
  4132. "psr-4": {
  4133. "Hyperf\\Support\\": "src/"
  4134. }
  4135. },
  4136. "notification-url": "https://packagist.org/downloads/",
  4137. "license": [
  4138. "MIT"
  4139. ],
  4140. "description": "A support component for Hyperf.",
  4141. "homepage": "https://hyperf.io",
  4142. "keywords": [
  4143. "hyperf",
  4144. "php",
  4145. "support",
  4146. "swoole"
  4147. ],
  4148. "support": {
  4149. "docs": "https://hyperf.wiki",
  4150. "issues": "https://github.com/hyperf/hyperf/issues",
  4151. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4152. "source": "https://github.com/hyperf/hyperf"
  4153. },
  4154. "funding": [
  4155. {
  4156. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4157. "type": "custom"
  4158. },
  4159. {
  4160. "url": "https://opencollective.com/hyperf",
  4161. "type": "open_collective"
  4162. }
  4163. ],
  4164. "time": "2024-03-23T11:28:51+00:00"
  4165. },
  4166. {
  4167. "name": "hyperf/tappable",
  4168. "version": "v3.1.15",
  4169. "source": {
  4170. "type": "git",
  4171. "url": "https://github.com/hyperf/tappable.git",
  4172. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4173. },
  4174. "dist": {
  4175. "type": "zip",
  4176. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4177. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4178. "shasum": ""
  4179. },
  4180. "require": {
  4181. "php": ">=8.1"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "3.1-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "files": [
  4191. "src/Functions.php"
  4192. ],
  4193. "psr-4": {
  4194. "Hyperf\\Tappable\\": "src/"
  4195. }
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4202. "homepage": "https://hyperf.io",
  4203. "keywords": [
  4204. "hyperf",
  4205. "php",
  4206. "swoole",
  4207. "tappable"
  4208. ],
  4209. "support": {
  4210. "docs": "https://hyperf.wiki",
  4211. "issues": "https://github.com/hyperf/hyperf/issues",
  4212. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4213. "source": "https://github.com/hyperf/hyperf"
  4214. },
  4215. "funding": [
  4216. {
  4217. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4218. "type": "custom"
  4219. },
  4220. {
  4221. "url": "https://opencollective.com/hyperf",
  4222. "type": "open_collective"
  4223. }
  4224. ],
  4225. "time": "2024-03-23T11:28:51+00:00"
  4226. },
  4227. {
  4228. "name": "hyperf/utils",
  4229. "version": "v3.1.0",
  4230. "source": {
  4231. "type": "git",
  4232. "url": "https://github.com/hyperf/utils.git",
  4233. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4234. },
  4235. "dist": {
  4236. "type": "zip",
  4237. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4238. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4239. "shasum": ""
  4240. },
  4241. "require": {
  4242. "doctrine/inflector": "^2.0",
  4243. "hyperf/code-parser": "~3.1.0",
  4244. "hyperf/codec": "~3.1.0",
  4245. "hyperf/collection": "~3.1.0",
  4246. "hyperf/context": "~3.1.0",
  4247. "hyperf/contract": "~3.1.0",
  4248. "hyperf/coordinator": "~3.1.0",
  4249. "hyperf/coroutine": "~3.1.0",
  4250. "hyperf/engine": "^2.0",
  4251. "hyperf/macroable": "~3.1.0",
  4252. "hyperf/serializer": "~3.1.0",
  4253. "hyperf/stringable": "~3.1.0",
  4254. "hyperf/support": "~3.1.0",
  4255. "php": ">=8.1"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "3.1-dev"
  4261. }
  4262. },
  4263. "notification-url": "https://packagist.org/downloads/",
  4264. "license": [
  4265. "MIT"
  4266. ],
  4267. "description": "A tools package that could help developer solved the problem quickly.",
  4268. "homepage": "https://hyperf.io",
  4269. "keywords": [
  4270. "hyperf",
  4271. "php",
  4272. "swoole",
  4273. "utils"
  4274. ],
  4275. "support": {
  4276. "docs": "https://hyperf.wiki",
  4277. "issues": "https://github.com/hyperf/hyperf/issues",
  4278. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4279. "source": "https://github.com/hyperf/hyperf"
  4280. },
  4281. "funding": [
  4282. {
  4283. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4284. "type": "custom"
  4285. },
  4286. {
  4287. "url": "https://opencollective.com/hyperf",
  4288. "type": "open_collective"
  4289. }
  4290. ],
  4291. "time": "2023-11-24T03:10:53+00:00"
  4292. },
  4293. {
  4294. "name": "illuminate/cache",
  4295. "version": "v10.48.28",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/illuminate/cache.git",
  4299. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/illuminate/cache/zipball/20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4304. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4305. "shasum": ""
  4306. },
  4307. "require": {
  4308. "illuminate/collections": "^10.0",
  4309. "illuminate/contracts": "^10.0",
  4310. "illuminate/macroable": "^10.0",
  4311. "illuminate/support": "^10.0",
  4312. "php": "^8.1"
  4313. },
  4314. "provide": {
  4315. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  4316. },
  4317. "suggest": {
  4318. "ext-apcu": "Required to use the APC cache driver.",
  4319. "ext-filter": "Required to use the DynamoDb cache driver.",
  4320. "ext-memcached": "Required to use the memcache cache driver.",
  4321. "illuminate/database": "Required to use the database cache driver (^10.0).",
  4322. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  4323. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  4324. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  4325. },
  4326. "type": "library",
  4327. "extra": {
  4328. "branch-alias": {
  4329. "dev-master": "10.x-dev"
  4330. }
  4331. },
  4332. "autoload": {
  4333. "psr-4": {
  4334. "Illuminate\\Cache\\": ""
  4335. }
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "MIT"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "Taylor Otwell",
  4344. "email": "taylor@laravel.com"
  4345. }
  4346. ],
  4347. "description": "The Illuminate Cache package.",
  4348. "homepage": "https://laravel.com",
  4349. "support": {
  4350. "issues": "https://github.com/laravel/framework/issues",
  4351. "source": "https://github.com/laravel/framework"
  4352. },
  4353. "time": "2024-11-21T14:02:44+00:00"
  4354. },
  4355. {
  4356. "name": "illuminate/collections",
  4357. "version": "v10.48.28",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/illuminate/collections.git",
  4361. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/illuminate/collections/zipball/48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4366. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4367. "shasum": ""
  4368. },
  4369. "require": {
  4370. "illuminate/conditionable": "^10.0",
  4371. "illuminate/contracts": "^10.0",
  4372. "illuminate/macroable": "^10.0",
  4373. "php": "^8.1"
  4374. },
  4375. "suggest": {
  4376. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  4377. },
  4378. "type": "library",
  4379. "extra": {
  4380. "branch-alias": {
  4381. "dev-master": "10.x-dev"
  4382. }
  4383. },
  4384. "autoload": {
  4385. "files": [
  4386. "helpers.php"
  4387. ],
  4388. "psr-4": {
  4389. "Illuminate\\Support\\": ""
  4390. }
  4391. },
  4392. "notification-url": "https://packagist.org/downloads/",
  4393. "license": [
  4394. "MIT"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Taylor Otwell",
  4399. "email": "taylor@laravel.com"
  4400. }
  4401. ],
  4402. "description": "The Illuminate Collections package.",
  4403. "homepage": "https://laravel.com",
  4404. "support": {
  4405. "issues": "https://github.com/laravel/framework/issues",
  4406. "source": "https://github.com/laravel/framework"
  4407. },
  4408. "time": "2024-11-21T14:02:44+00:00"
  4409. },
  4410. {
  4411. "name": "illuminate/conditionable",
  4412. "version": "v10.48.28",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/illuminate/conditionable.git",
  4416. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4421. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "php": "^8.0.2"
  4426. },
  4427. "type": "library",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-master": "10.x-dev"
  4431. }
  4432. },
  4433. "autoload": {
  4434. "psr-4": {
  4435. "Illuminate\\Support\\": ""
  4436. }
  4437. },
  4438. "notification-url": "https://packagist.org/downloads/",
  4439. "license": [
  4440. "MIT"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "Taylor Otwell",
  4445. "email": "taylor@laravel.com"
  4446. }
  4447. ],
  4448. "description": "The Illuminate Conditionable package.",
  4449. "homepage": "https://laravel.com",
  4450. "support": {
  4451. "issues": "https://github.com/laravel/framework/issues",
  4452. "source": "https://github.com/laravel/framework"
  4453. },
  4454. "time": "2024-11-21T14:02:44+00:00"
  4455. },
  4456. {
  4457. "name": "illuminate/contracts",
  4458. "version": "v10.48.28",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/illuminate/contracts.git",
  4462. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/illuminate/contracts/zipball/f90663a69f926105a70b78060a31f3c64e2d1c74",
  4467. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "php": "^8.1",
  4472. "psr/container": "^1.1.1|^2.0.1",
  4473. "psr/simple-cache": "^1.0|^2.0|^3.0"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "10.x-dev"
  4479. }
  4480. },
  4481. "autoload": {
  4482. "psr-4": {
  4483. "Illuminate\\Contracts\\": ""
  4484. }
  4485. },
  4486. "notification-url": "https://packagist.org/downloads/",
  4487. "license": [
  4488. "MIT"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Taylor Otwell",
  4493. "email": "taylor@laravel.com"
  4494. }
  4495. ],
  4496. "description": "The Illuminate Contracts package.",
  4497. "homepage": "https://laravel.com",
  4498. "support": {
  4499. "issues": "https://github.com/laravel/framework/issues",
  4500. "source": "https://github.com/laravel/framework"
  4501. },
  4502. "time": "2024-11-21T14:02:44+00:00"
  4503. },
  4504. {
  4505. "name": "illuminate/macroable",
  4506. "version": "v10.48.28",
  4507. "source": {
  4508. "type": "git",
  4509. "url": "https://github.com/illuminate/macroable.git",
  4510. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  4511. },
  4512. "dist": {
  4513. "type": "zip",
  4514. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4515. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4516. "shasum": ""
  4517. },
  4518. "require": {
  4519. "php": "^8.1"
  4520. },
  4521. "type": "library",
  4522. "extra": {
  4523. "branch-alias": {
  4524. "dev-master": "10.x-dev"
  4525. }
  4526. },
  4527. "autoload": {
  4528. "psr-4": {
  4529. "Illuminate\\Support\\": ""
  4530. }
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "Taylor Otwell",
  4539. "email": "taylor@laravel.com"
  4540. }
  4541. ],
  4542. "description": "The Illuminate Macroable package.",
  4543. "homepage": "https://laravel.com",
  4544. "support": {
  4545. "issues": "https://github.com/laravel/framework/issues",
  4546. "source": "https://github.com/laravel/framework"
  4547. },
  4548. "time": "2023-06-05T12:46:42+00:00"
  4549. },
  4550. {
  4551. "name": "illuminate/support",
  4552. "version": "v10.48.28",
  4553. "source": {
  4554. "type": "git",
  4555. "url": "https://github.com/illuminate/support.git",
  4556. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a"
  4557. },
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://api.github.com/repos/illuminate/support/zipball/6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4561. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "doctrine/inflector": "^2.0",
  4566. "ext-ctype": "*",
  4567. "ext-filter": "*",
  4568. "ext-mbstring": "*",
  4569. "illuminate/collections": "^10.0",
  4570. "illuminate/conditionable": "^10.0",
  4571. "illuminate/contracts": "^10.0",
  4572. "illuminate/macroable": "^10.0",
  4573. "nesbot/carbon": "^2.67",
  4574. "php": "^8.1",
  4575. "voku/portable-ascii": "^2.0"
  4576. },
  4577. "conflict": {
  4578. "tightenco/collect": "<5.5.33"
  4579. },
  4580. "suggest": {
  4581. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  4582. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  4583. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  4584. "symfony/process": "Required to use the composer class (^6.2).",
  4585. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  4586. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  4587. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  4588. },
  4589. "type": "library",
  4590. "extra": {
  4591. "branch-alias": {
  4592. "dev-master": "10.x-dev"
  4593. }
  4594. },
  4595. "autoload": {
  4596. "files": [
  4597. "helpers.php"
  4598. ],
  4599. "psr-4": {
  4600. "Illuminate\\Support\\": ""
  4601. }
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Taylor Otwell",
  4610. "email": "taylor@laravel.com"
  4611. }
  4612. ],
  4613. "description": "The Illuminate Support package.",
  4614. "homepage": "https://laravel.com",
  4615. "support": {
  4616. "issues": "https://github.com/laravel/framework/issues",
  4617. "source": "https://github.com/laravel/framework"
  4618. },
  4619. "time": "2024-12-10T14:47:55+00:00"
  4620. },
  4621. {
  4622. "name": "jetbrains/phpstorm-attributes",
  4623. "version": "1.1",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4627. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4632. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4633. "shasum": ""
  4634. },
  4635. "type": "library",
  4636. "autoload": {
  4637. "psr-4": {
  4638. "JetBrains\\PhpStorm\\": "src/"
  4639. }
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "Apache-2.0"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "JetBrains",
  4648. "homepage": "https://www.jetbrains.com"
  4649. }
  4650. ],
  4651. "description": "PhpStorm specific attributes",
  4652. "keywords": [
  4653. "attributes",
  4654. "jetbrains",
  4655. "phpstorm"
  4656. ],
  4657. "support": {
  4658. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4659. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4660. },
  4661. "time": "2023-09-01T08:50:25+00:00"
  4662. },
  4663. {
  4664. "name": "laminas/laminas-mime",
  4665. "version": "2.12.0",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/laminas/laminas-mime.git",
  4669. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4674. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4679. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4680. },
  4681. "conflict": {
  4682. "zendframework/zend-mime": "*"
  4683. },
  4684. "require-dev": {
  4685. "laminas/laminas-coding-standard": "~2.4.0",
  4686. "laminas/laminas-mail": "^2.19.0",
  4687. "phpunit/phpunit": "~9.5.25"
  4688. },
  4689. "suggest": {
  4690. "laminas/laminas-mail": "Laminas\\Mail component"
  4691. },
  4692. "type": "library",
  4693. "autoload": {
  4694. "psr-4": {
  4695. "Laminas\\Mime\\": "src/"
  4696. }
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "BSD-3-Clause"
  4701. ],
  4702. "description": "Create and parse MIME messages and parts",
  4703. "homepage": "https://laminas.dev",
  4704. "keywords": [
  4705. "laminas",
  4706. "mime"
  4707. ],
  4708. "support": {
  4709. "chat": "https://laminas.dev/chat",
  4710. "docs": "https://docs.laminas.dev/laminas-mime/",
  4711. "forum": "https://discourse.laminas.dev",
  4712. "issues": "https://github.com/laminas/laminas-mime/issues",
  4713. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4714. "source": "https://github.com/laminas/laminas-mime"
  4715. },
  4716. "funding": [
  4717. {
  4718. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4719. "type": "community_bridge"
  4720. }
  4721. ],
  4722. "time": "2023-11-02T16:47:19+00:00"
  4723. },
  4724. {
  4725. "name": "laminas/laminas-stdlib",
  4726. "version": "3.19.0",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/laminas/laminas-stdlib.git",
  4730. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4735. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4740. },
  4741. "conflict": {
  4742. "zendframework/zend-stdlib": "*"
  4743. },
  4744. "require-dev": {
  4745. "laminas/laminas-coding-standard": "^2.5",
  4746. "phpbench/phpbench": "^1.2.15",
  4747. "phpunit/phpunit": "^10.5.8",
  4748. "psalm/plugin-phpunit": "^0.18.4",
  4749. "vimeo/psalm": "^5.20.0"
  4750. },
  4751. "type": "library",
  4752. "autoload": {
  4753. "psr-4": {
  4754. "Laminas\\Stdlib\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "BSD-3-Clause"
  4760. ],
  4761. "description": "SPL extensions, array utilities, error handlers, and more",
  4762. "homepage": "https://laminas.dev",
  4763. "keywords": [
  4764. "laminas",
  4765. "stdlib"
  4766. ],
  4767. "support": {
  4768. "chat": "https://laminas.dev/chat",
  4769. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4770. "forum": "https://discourse.laminas.dev",
  4771. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4772. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4773. "source": "https://github.com/laminas/laminas-stdlib"
  4774. },
  4775. "funding": [
  4776. {
  4777. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4778. "type": "community_bridge"
  4779. }
  4780. ],
  4781. "time": "2024-01-19T12:39:49+00:00"
  4782. },
  4783. {
  4784. "name": "markrogoyski/math-php",
  4785. "version": "v2.10.0",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/markrogoyski/math-php.git",
  4789. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4794. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4795. "shasum": ""
  4796. },
  4797. "require": {
  4798. "ext-json": "*",
  4799. "php": ">=7.2.0"
  4800. },
  4801. "require-dev": {
  4802. "php-coveralls/php-coveralls": "^2.0",
  4803. "php-parallel-lint/php-parallel-lint": "^1.2",
  4804. "phploc/phploc": "*",
  4805. "phpmd/phpmd": "^2.6",
  4806. "phpstan/phpstan": "^1.10",
  4807. "phpunit/phpunit": "^8.5",
  4808. "squizlabs/php_codesniffer": "3.*"
  4809. },
  4810. "type": "library",
  4811. "autoload": {
  4812. "psr-4": {
  4813. "MathPHP\\": "src/"
  4814. }
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "MIT"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Mark Rogoyski",
  4823. "email": "mark@rogoyski.com",
  4824. "homepage": "https://github.com/markrogoyski",
  4825. "role": "Lead developer"
  4826. },
  4827. {
  4828. "name": "Kevin Nowaczyk",
  4829. "homepage": "https://github.com/Beakerboy",
  4830. "role": "Developer"
  4831. },
  4832. {
  4833. "name": "MathPHP Community of Contributors",
  4834. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4835. }
  4836. ],
  4837. "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",
  4838. "homepage": "https://github.com/markrogoyski/math-php/",
  4839. "keywords": [
  4840. "algebra",
  4841. "combinatorics",
  4842. "distributions",
  4843. "linear algebra",
  4844. "math",
  4845. "mathematics",
  4846. "matrix",
  4847. "numerical analysis",
  4848. "probability",
  4849. "regressions",
  4850. "statistics"
  4851. ],
  4852. "support": {
  4853. "issues": "https://github.com/markrogoyski/math-php/issues",
  4854. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4855. },
  4856. "time": "2024-04-17T00:09:51+00:00"
  4857. },
  4858. {
  4859. "name": "monolog/monolog",
  4860. "version": "3.6.0",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/Seldaek/monolog.git",
  4864. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4869. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4870. "shasum": ""
  4871. },
  4872. "require": {
  4873. "php": ">=8.1",
  4874. "psr/log": "^2.0 || ^3.0"
  4875. },
  4876. "provide": {
  4877. "psr/log-implementation": "3.0.0"
  4878. },
  4879. "require-dev": {
  4880. "aws/aws-sdk-php": "^3.0",
  4881. "doctrine/couchdb": "~1.0@dev",
  4882. "elasticsearch/elasticsearch": "^7 || ^8",
  4883. "ext-json": "*",
  4884. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4885. "guzzlehttp/guzzle": "^7.4.5",
  4886. "guzzlehttp/psr7": "^2.2",
  4887. "mongodb/mongodb": "^1.8",
  4888. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4889. "phpstan/phpstan": "^1.9",
  4890. "phpstan/phpstan-deprecation-rules": "^1.0",
  4891. "phpstan/phpstan-strict-rules": "^1.4",
  4892. "phpunit/phpunit": "^10.5.17",
  4893. "predis/predis": "^1.1 || ^2",
  4894. "ruflin/elastica": "^7",
  4895. "symfony/mailer": "^5.4 || ^6",
  4896. "symfony/mime": "^5.4 || ^6"
  4897. },
  4898. "suggest": {
  4899. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4900. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4901. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4902. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4903. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4904. "ext-mbstring": "Allow to work properly with unicode symbols",
  4905. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4906. "ext-openssl": "Required to send log messages using SSL",
  4907. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4908. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4909. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4910. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4911. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4912. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4913. },
  4914. "type": "library",
  4915. "extra": {
  4916. "branch-alias": {
  4917. "dev-main": "3.x-dev"
  4918. }
  4919. },
  4920. "autoload": {
  4921. "psr-4": {
  4922. "Monolog\\": "src/Monolog"
  4923. }
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "MIT"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "Jordi Boggiano",
  4932. "email": "j.boggiano@seld.be",
  4933. "homepage": "https://seld.be"
  4934. }
  4935. ],
  4936. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4937. "homepage": "https://github.com/Seldaek/monolog",
  4938. "keywords": [
  4939. "log",
  4940. "logging",
  4941. "psr-3"
  4942. ],
  4943. "support": {
  4944. "issues": "https://github.com/Seldaek/monolog/issues",
  4945. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4946. },
  4947. "funding": [
  4948. {
  4949. "url": "https://github.com/Seldaek",
  4950. "type": "github"
  4951. },
  4952. {
  4953. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4954. "type": "tidelift"
  4955. }
  4956. ],
  4957. "time": "2024-04-12T21:02:21+00:00"
  4958. },
  4959. {
  4960. "name": "nesbot/carbon",
  4961. "version": "2.72.5",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://github.com/briannesbitt/Carbon.git",
  4965. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4970. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4971. "shasum": ""
  4972. },
  4973. "require": {
  4974. "carbonphp/carbon-doctrine-types": "*",
  4975. "ext-json": "*",
  4976. "php": "^7.1.8 || ^8.0",
  4977. "psr/clock": "^1.0",
  4978. "symfony/polyfill-mbstring": "^1.0",
  4979. "symfony/polyfill-php80": "^1.16",
  4980. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4981. },
  4982. "provide": {
  4983. "psr/clock-implementation": "1.0"
  4984. },
  4985. "require-dev": {
  4986. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4987. "doctrine/orm": "^2.7 || ^3.0",
  4988. "friendsofphp/php-cs-fixer": "^3.0",
  4989. "kylekatarnls/multi-tester": "^2.0",
  4990. "ondrejmirtes/better-reflection": "*",
  4991. "phpmd/phpmd": "^2.9",
  4992. "phpstan/extension-installer": "^1.0",
  4993. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4994. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4995. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4996. "squizlabs/php_codesniffer": "^3.4"
  4997. },
  4998. "bin": [
  4999. "bin/carbon"
  5000. ],
  5001. "type": "library",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-master": "3.x-dev",
  5005. "dev-2.x": "2.x-dev"
  5006. },
  5007. "laravel": {
  5008. "providers": [
  5009. "Carbon\\Laravel\\ServiceProvider"
  5010. ]
  5011. },
  5012. "phpstan": {
  5013. "includes": [
  5014. "extension.neon"
  5015. ]
  5016. }
  5017. },
  5018. "autoload": {
  5019. "psr-4": {
  5020. "Carbon\\": "src/Carbon/"
  5021. }
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "MIT"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "Brian Nesbitt",
  5030. "email": "brian@nesbot.com",
  5031. "homepage": "https://markido.com"
  5032. },
  5033. {
  5034. "name": "kylekatarnls",
  5035. "homepage": "https://github.com/kylekatarnls"
  5036. }
  5037. ],
  5038. "description": "An API extension for DateTime that supports 281 different languages.",
  5039. "homepage": "https://carbon.nesbot.com",
  5040. "keywords": [
  5041. "date",
  5042. "datetime",
  5043. "time"
  5044. ],
  5045. "support": {
  5046. "docs": "https://carbon.nesbot.com/docs",
  5047. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5048. "source": "https://github.com/briannesbitt/Carbon"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://github.com/sponsors/kylekatarnls",
  5053. "type": "github"
  5054. },
  5055. {
  5056. "url": "https://opencollective.com/Carbon#sponsor",
  5057. "type": "opencollective"
  5058. },
  5059. {
  5060. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5061. "type": "tidelift"
  5062. }
  5063. ],
  5064. "time": "2024-06-03T19:18:41+00:00"
  5065. },
  5066. {
  5067. "name": "nikic/fast-route",
  5068. "version": "v1.3.0",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/nikic/FastRoute.git",
  5072. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5077. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "php": ">=5.4.0"
  5082. },
  5083. "require-dev": {
  5084. "phpunit/phpunit": "^4.8.35|~5.7"
  5085. },
  5086. "type": "library",
  5087. "autoload": {
  5088. "files": [
  5089. "src/functions.php"
  5090. ],
  5091. "psr-4": {
  5092. "FastRoute\\": "src/"
  5093. }
  5094. },
  5095. "notification-url": "https://packagist.org/downloads/",
  5096. "license": [
  5097. "BSD-3-Clause"
  5098. ],
  5099. "authors": [
  5100. {
  5101. "name": "Nikita Popov",
  5102. "email": "nikic@php.net"
  5103. }
  5104. ],
  5105. "description": "Fast request router for PHP",
  5106. "keywords": [
  5107. "router",
  5108. "routing"
  5109. ],
  5110. "support": {
  5111. "issues": "https://github.com/nikic/FastRoute/issues",
  5112. "source": "https://github.com/nikic/FastRoute/tree/master"
  5113. },
  5114. "time": "2018-02-13T20:26:39+00:00"
  5115. },
  5116. {
  5117. "name": "nikic/php-parser",
  5118. "version": "v4.19.1",
  5119. "source": {
  5120. "type": "git",
  5121. "url": "https://github.com/nikic/PHP-Parser.git",
  5122. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5123. },
  5124. "dist": {
  5125. "type": "zip",
  5126. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5127. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5128. "shasum": ""
  5129. },
  5130. "require": {
  5131. "ext-tokenizer": "*",
  5132. "php": ">=7.1"
  5133. },
  5134. "require-dev": {
  5135. "ircmaxell/php-yacc": "^0.0.7",
  5136. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5137. },
  5138. "bin": [
  5139. "bin/php-parse"
  5140. ],
  5141. "type": "library",
  5142. "extra": {
  5143. "branch-alias": {
  5144. "dev-master": "4.9-dev"
  5145. }
  5146. },
  5147. "autoload": {
  5148. "psr-4": {
  5149. "PhpParser\\": "lib/PhpParser"
  5150. }
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "BSD-3-Clause"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Nikita Popov"
  5159. }
  5160. ],
  5161. "description": "A PHP parser written in PHP",
  5162. "keywords": [
  5163. "parser",
  5164. "php"
  5165. ],
  5166. "support": {
  5167. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5168. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5169. },
  5170. "time": "2024-03-17T08:10:35+00:00"
  5171. },
  5172. {
  5173. "name": "php-di/phpdoc-reader",
  5174. "version": "2.2.1",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5178. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5183. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "php": ">=7.2.0"
  5188. },
  5189. "require-dev": {
  5190. "mnapoli/hard-mode": "~0.3.0",
  5191. "phpunit/phpunit": "^8.5|^9.0"
  5192. },
  5193. "type": "library",
  5194. "autoload": {
  5195. "psr-4": {
  5196. "PhpDocReader\\": "src/PhpDocReader"
  5197. }
  5198. },
  5199. "notification-url": "https://packagist.org/downloads/",
  5200. "license": [
  5201. "MIT"
  5202. ],
  5203. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5204. "keywords": [
  5205. "phpdoc",
  5206. "reflection"
  5207. ],
  5208. "support": {
  5209. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5210. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5211. },
  5212. "time": "2020-10-12T12:39:22+00:00"
  5213. },
  5214. {
  5215. "name": "phpoption/phpoption",
  5216. "version": "1.9.2",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/schmittjoh/php-option.git",
  5220. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5225. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5226. "shasum": ""
  5227. },
  5228. "require": {
  5229. "php": "^7.2.5 || ^8.0"
  5230. },
  5231. "require-dev": {
  5232. "bamarni/composer-bin-plugin": "^1.8.2",
  5233. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5234. },
  5235. "type": "library",
  5236. "extra": {
  5237. "bamarni-bin": {
  5238. "bin-links": true,
  5239. "forward-command": true
  5240. },
  5241. "branch-alias": {
  5242. "dev-master": "1.9-dev"
  5243. }
  5244. },
  5245. "autoload": {
  5246. "psr-4": {
  5247. "PhpOption\\": "src/PhpOption/"
  5248. }
  5249. },
  5250. "notification-url": "https://packagist.org/downloads/",
  5251. "license": [
  5252. "Apache-2.0"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "Johannes M. Schmitt",
  5257. "email": "schmittjoh@gmail.com",
  5258. "homepage": "https://github.com/schmittjoh"
  5259. },
  5260. {
  5261. "name": "Graham Campbell",
  5262. "email": "hello@gjcampbell.co.uk",
  5263. "homepage": "https://github.com/GrahamCampbell"
  5264. }
  5265. ],
  5266. "description": "Option Type for PHP",
  5267. "keywords": [
  5268. "language",
  5269. "option",
  5270. "php",
  5271. "type"
  5272. ],
  5273. "support": {
  5274. "issues": "https://github.com/schmittjoh/php-option/issues",
  5275. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5276. },
  5277. "funding": [
  5278. {
  5279. "url": "https://github.com/GrahamCampbell",
  5280. "type": "github"
  5281. },
  5282. {
  5283. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5284. "type": "tidelift"
  5285. }
  5286. ],
  5287. "time": "2023-11-12T21:59:55+00:00"
  5288. },
  5289. {
  5290. "name": "psr/cache",
  5291. "version": "3.0.0",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/php-fig/cache.git",
  5295. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5300. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "php": ">=8.0.0"
  5305. },
  5306. "type": "library",
  5307. "extra": {
  5308. "branch-alias": {
  5309. "dev-master": "1.0.x-dev"
  5310. }
  5311. },
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Psr\\Cache\\": "src/"
  5315. }
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "PHP-FIG",
  5324. "homepage": "https://www.php-fig.org/"
  5325. }
  5326. ],
  5327. "description": "Common interface for caching libraries",
  5328. "keywords": [
  5329. "cache",
  5330. "psr",
  5331. "psr-6"
  5332. ],
  5333. "support": {
  5334. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5335. },
  5336. "time": "2021-02-03T23:26:27+00:00"
  5337. },
  5338. {
  5339. "name": "psr/clock",
  5340. "version": "1.0.0",
  5341. "source": {
  5342. "type": "git",
  5343. "url": "https://github.com/php-fig/clock.git",
  5344. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5345. },
  5346. "dist": {
  5347. "type": "zip",
  5348. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5349. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5350. "shasum": ""
  5351. },
  5352. "require": {
  5353. "php": "^7.0 || ^8.0"
  5354. },
  5355. "type": "library",
  5356. "autoload": {
  5357. "psr-4": {
  5358. "Psr\\Clock\\": "src/"
  5359. }
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "PHP-FIG",
  5368. "homepage": "https://www.php-fig.org/"
  5369. }
  5370. ],
  5371. "description": "Common interface for reading the clock.",
  5372. "homepage": "https://github.com/php-fig/clock",
  5373. "keywords": [
  5374. "clock",
  5375. "now",
  5376. "psr",
  5377. "psr-20",
  5378. "time"
  5379. ],
  5380. "support": {
  5381. "issues": "https://github.com/php-fig/clock/issues",
  5382. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5383. },
  5384. "time": "2022-11-25T14:36:26+00:00"
  5385. },
  5386. {
  5387. "name": "psr/container",
  5388. "version": "2.0.2",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/php-fig/container.git",
  5392. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5397. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "php": ">=7.4.0"
  5402. },
  5403. "type": "library",
  5404. "extra": {
  5405. "branch-alias": {
  5406. "dev-master": "2.0.x-dev"
  5407. }
  5408. },
  5409. "autoload": {
  5410. "psr-4": {
  5411. "Psr\\Container\\": "src/"
  5412. }
  5413. },
  5414. "notification-url": "https://packagist.org/downloads/",
  5415. "license": [
  5416. "MIT"
  5417. ],
  5418. "authors": [
  5419. {
  5420. "name": "PHP-FIG",
  5421. "homepage": "https://www.php-fig.org/"
  5422. }
  5423. ],
  5424. "description": "Common Container Interface (PHP FIG PSR-11)",
  5425. "homepage": "https://github.com/php-fig/container",
  5426. "keywords": [
  5427. "PSR-11",
  5428. "container",
  5429. "container-interface",
  5430. "container-interop",
  5431. "psr"
  5432. ],
  5433. "support": {
  5434. "issues": "https://github.com/php-fig/container/issues",
  5435. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5436. },
  5437. "time": "2021-11-05T16:47:00+00:00"
  5438. },
  5439. {
  5440. "name": "psr/event-dispatcher",
  5441. "version": "1.0.0",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://github.com/php-fig/event-dispatcher.git",
  5445. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5450. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5451. "shasum": ""
  5452. },
  5453. "require": {
  5454. "php": ">=7.2.0"
  5455. },
  5456. "type": "library",
  5457. "extra": {
  5458. "branch-alias": {
  5459. "dev-master": "1.0.x-dev"
  5460. }
  5461. },
  5462. "autoload": {
  5463. "psr-4": {
  5464. "Psr\\EventDispatcher\\": "src/"
  5465. }
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "license": [
  5469. "MIT"
  5470. ],
  5471. "authors": [
  5472. {
  5473. "name": "PHP-FIG",
  5474. "homepage": "http://www.php-fig.org/"
  5475. }
  5476. ],
  5477. "description": "Standard interfaces for event handling.",
  5478. "keywords": [
  5479. "events",
  5480. "psr",
  5481. "psr-14"
  5482. ],
  5483. "support": {
  5484. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5485. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5486. },
  5487. "time": "2019-01-08T18:20:26+00:00"
  5488. },
  5489. {
  5490. "name": "psr/http-client",
  5491. "version": "1.0.3",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/php-fig/http-client.git",
  5495. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5500. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": "^7.0 || ^8.0",
  5505. "psr/http-message": "^1.0 || ^2.0"
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-master": "1.0.x-dev"
  5511. }
  5512. },
  5513. "autoload": {
  5514. "psr-4": {
  5515. "Psr\\Http\\Client\\": "src/"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "authors": [
  5523. {
  5524. "name": "PHP-FIG",
  5525. "homepage": "https://www.php-fig.org/"
  5526. }
  5527. ],
  5528. "description": "Common interface for HTTP clients",
  5529. "homepage": "https://github.com/php-fig/http-client",
  5530. "keywords": [
  5531. "http",
  5532. "http-client",
  5533. "psr",
  5534. "psr-18"
  5535. ],
  5536. "support": {
  5537. "source": "https://github.com/php-fig/http-client"
  5538. },
  5539. "time": "2023-09-23T14:17:50+00:00"
  5540. },
  5541. {
  5542. "name": "psr/http-factory",
  5543. "version": "1.1.0",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/php-fig/http-factory.git",
  5547. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5552. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "php": ">=7.1",
  5557. "psr/http-message": "^1.0 || ^2.0"
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-master": "1.0.x-dev"
  5563. }
  5564. },
  5565. "autoload": {
  5566. "psr-4": {
  5567. "Psr\\Http\\Message\\": "src/"
  5568. }
  5569. },
  5570. "notification-url": "https://packagist.org/downloads/",
  5571. "license": [
  5572. "MIT"
  5573. ],
  5574. "authors": [
  5575. {
  5576. "name": "PHP-FIG",
  5577. "homepage": "https://www.php-fig.org/"
  5578. }
  5579. ],
  5580. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5581. "keywords": [
  5582. "factory",
  5583. "http",
  5584. "message",
  5585. "psr",
  5586. "psr-17",
  5587. "psr-7",
  5588. "request",
  5589. "response"
  5590. ],
  5591. "support": {
  5592. "source": "https://github.com/php-fig/http-factory"
  5593. },
  5594. "time": "2024-04-15T12:06:14+00:00"
  5595. },
  5596. {
  5597. "name": "psr/http-message",
  5598. "version": "2.0",
  5599. "source": {
  5600. "type": "git",
  5601. "url": "https://github.com/php-fig/http-message.git",
  5602. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5603. },
  5604. "dist": {
  5605. "type": "zip",
  5606. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5607. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5608. "shasum": ""
  5609. },
  5610. "require": {
  5611. "php": "^7.2 || ^8.0"
  5612. },
  5613. "type": "library",
  5614. "extra": {
  5615. "branch-alias": {
  5616. "dev-master": "2.0.x-dev"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "psr-4": {
  5621. "Psr\\Http\\Message\\": "src/"
  5622. }
  5623. },
  5624. "notification-url": "https://packagist.org/downloads/",
  5625. "license": [
  5626. "MIT"
  5627. ],
  5628. "authors": [
  5629. {
  5630. "name": "PHP-FIG",
  5631. "homepage": "https://www.php-fig.org/"
  5632. }
  5633. ],
  5634. "description": "Common interface for HTTP messages",
  5635. "homepage": "https://github.com/php-fig/http-message",
  5636. "keywords": [
  5637. "http",
  5638. "http-message",
  5639. "psr",
  5640. "psr-7",
  5641. "request",
  5642. "response"
  5643. ],
  5644. "support": {
  5645. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5646. },
  5647. "time": "2023-04-04T09:54:51+00:00"
  5648. },
  5649. {
  5650. "name": "psr/http-server-handler",
  5651. "version": "1.0.2",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/php-fig/http-server-handler.git",
  5655. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5660. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5661. "shasum": ""
  5662. },
  5663. "require": {
  5664. "php": ">=7.0",
  5665. "psr/http-message": "^1.0 || ^2.0"
  5666. },
  5667. "type": "library",
  5668. "extra": {
  5669. "branch-alias": {
  5670. "dev-master": "1.0.x-dev"
  5671. }
  5672. },
  5673. "autoload": {
  5674. "psr-4": {
  5675. "Psr\\Http\\Server\\": "src/"
  5676. }
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "PHP-FIG",
  5685. "homepage": "https://www.php-fig.org/"
  5686. }
  5687. ],
  5688. "description": "Common interface for HTTP server-side request handler",
  5689. "keywords": [
  5690. "handler",
  5691. "http",
  5692. "http-interop",
  5693. "psr",
  5694. "psr-15",
  5695. "psr-7",
  5696. "request",
  5697. "response",
  5698. "server"
  5699. ],
  5700. "support": {
  5701. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5702. },
  5703. "time": "2023-04-10T20:06:20+00:00"
  5704. },
  5705. {
  5706. "name": "psr/http-server-middleware",
  5707. "version": "1.0.2",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/php-fig/http-server-middleware.git",
  5711. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5716. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "php": ">=7.0",
  5721. "psr/http-message": "^1.0 || ^2.0",
  5722. "psr/http-server-handler": "^1.0"
  5723. },
  5724. "type": "library",
  5725. "extra": {
  5726. "branch-alias": {
  5727. "dev-master": "1.0.x-dev"
  5728. }
  5729. },
  5730. "autoload": {
  5731. "psr-4": {
  5732. "Psr\\Http\\Server\\": "src/"
  5733. }
  5734. },
  5735. "notification-url": "https://packagist.org/downloads/",
  5736. "license": [
  5737. "MIT"
  5738. ],
  5739. "authors": [
  5740. {
  5741. "name": "PHP-FIG",
  5742. "homepage": "https://www.php-fig.org/"
  5743. }
  5744. ],
  5745. "description": "Common interface for HTTP server-side middleware",
  5746. "keywords": [
  5747. "http",
  5748. "http-interop",
  5749. "middleware",
  5750. "psr",
  5751. "psr-15",
  5752. "psr-7",
  5753. "request",
  5754. "response"
  5755. ],
  5756. "support": {
  5757. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5758. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5759. },
  5760. "time": "2023-04-11T06:14:47+00:00"
  5761. },
  5762. {
  5763. "name": "psr/log",
  5764. "version": "3.0.0",
  5765. "source": {
  5766. "type": "git",
  5767. "url": "https://github.com/php-fig/log.git",
  5768. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5769. },
  5770. "dist": {
  5771. "type": "zip",
  5772. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5773. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5774. "shasum": ""
  5775. },
  5776. "require": {
  5777. "php": ">=8.0.0"
  5778. },
  5779. "type": "library",
  5780. "extra": {
  5781. "branch-alias": {
  5782. "dev-master": "3.x-dev"
  5783. }
  5784. },
  5785. "autoload": {
  5786. "psr-4": {
  5787. "Psr\\Log\\": "src"
  5788. }
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "PHP-FIG",
  5797. "homepage": "https://www.php-fig.org/"
  5798. }
  5799. ],
  5800. "description": "Common interface for logging libraries",
  5801. "homepage": "https://github.com/php-fig/log",
  5802. "keywords": [
  5803. "log",
  5804. "psr",
  5805. "psr-3"
  5806. ],
  5807. "support": {
  5808. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5809. },
  5810. "time": "2021-07-14T16:46:02+00:00"
  5811. },
  5812. {
  5813. "name": "psr/simple-cache",
  5814. "version": "3.0.0",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/php-fig/simple-cache.git",
  5818. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5823. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5824. "shasum": ""
  5825. },
  5826. "require": {
  5827. "php": ">=8.0.0"
  5828. },
  5829. "type": "library",
  5830. "extra": {
  5831. "branch-alias": {
  5832. "dev-master": "3.0.x-dev"
  5833. }
  5834. },
  5835. "autoload": {
  5836. "psr-4": {
  5837. "Psr\\SimpleCache\\": "src/"
  5838. }
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "PHP-FIG",
  5847. "homepage": "https://www.php-fig.org/"
  5848. }
  5849. ],
  5850. "description": "Common interfaces for simple caching",
  5851. "keywords": [
  5852. "cache",
  5853. "caching",
  5854. "psr",
  5855. "psr-16",
  5856. "simple-cache"
  5857. ],
  5858. "support": {
  5859. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5860. },
  5861. "time": "2021-10-29T13:26:27+00:00"
  5862. },
  5863. {
  5864. "name": "ralouphie/getallheaders",
  5865. "version": "3.0.3",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/ralouphie/getallheaders.git",
  5869. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5874. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "php": ">=5.6"
  5879. },
  5880. "require-dev": {
  5881. "php-coveralls/php-coveralls": "^2.1",
  5882. "phpunit/phpunit": "^5 || ^6.5"
  5883. },
  5884. "type": "library",
  5885. "autoload": {
  5886. "files": [
  5887. "src/getallheaders.php"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Ralph Khattar",
  5897. "email": "ralph.khattar@gmail.com"
  5898. }
  5899. ],
  5900. "description": "A polyfill for getallheaders.",
  5901. "support": {
  5902. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5903. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5904. },
  5905. "time": "2019-03-08T08:55:37+00:00"
  5906. },
  5907. {
  5908. "name": "swow/psr7-plus",
  5909. "version": "v1.1.2",
  5910. "source": {
  5911. "type": "git",
  5912. "url": "https://github.com/swow/psr7-plus.git",
  5913. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5914. },
  5915. "dist": {
  5916. "type": "zip",
  5917. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5918. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5919. "shasum": ""
  5920. },
  5921. "require": {
  5922. "php": ">=8.0",
  5923. "psr/http-client": "^1.0",
  5924. "psr/http-factory": "^1.0",
  5925. "psr/http-message": "^1.1|^2.0"
  5926. },
  5927. "type": "library",
  5928. "autoload": {
  5929. "psr-4": {
  5930. "Swow\\Psr7\\Message\\": "src/Message/"
  5931. }
  5932. },
  5933. "notification-url": "https://packagist.org/downloads/",
  5934. "license": [
  5935. "Apache-2.0"
  5936. ],
  5937. "authors": [
  5938. {
  5939. "name": "twose",
  5940. "email": "twosee@php.net"
  5941. }
  5942. ],
  5943. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5944. "keywords": [
  5945. "http",
  5946. "psr17",
  5947. "psr7",
  5948. "swow",
  5949. "websocket"
  5950. ],
  5951. "support": {
  5952. "issues": "https://github.com/swow/swow",
  5953. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5954. },
  5955. "time": "2023-06-15T09:18:11+00:00"
  5956. },
  5957. {
  5958. "name": "symfony/console",
  5959. "version": "v6.4.8",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/symfony/console.git",
  5963. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5968. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "php": ">=8.1",
  5973. "symfony/deprecation-contracts": "^2.5|^3",
  5974. "symfony/polyfill-mbstring": "~1.0",
  5975. "symfony/service-contracts": "^2.5|^3",
  5976. "symfony/string": "^5.4|^6.0|^7.0"
  5977. },
  5978. "conflict": {
  5979. "symfony/dependency-injection": "<5.4",
  5980. "symfony/dotenv": "<5.4",
  5981. "symfony/event-dispatcher": "<5.4",
  5982. "symfony/lock": "<5.4",
  5983. "symfony/process": "<5.4"
  5984. },
  5985. "provide": {
  5986. "psr/log-implementation": "1.0|2.0|3.0"
  5987. },
  5988. "require-dev": {
  5989. "psr/log": "^1|^2|^3",
  5990. "symfony/config": "^5.4|^6.0|^7.0",
  5991. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5992. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5993. "symfony/http-foundation": "^6.4|^7.0",
  5994. "symfony/http-kernel": "^6.4|^7.0",
  5995. "symfony/lock": "^5.4|^6.0|^7.0",
  5996. "symfony/messenger": "^5.4|^6.0|^7.0",
  5997. "symfony/process": "^5.4|^6.0|^7.0",
  5998. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5999. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6000. },
  6001. "type": "library",
  6002. "autoload": {
  6003. "psr-4": {
  6004. "Symfony\\Component\\Console\\": ""
  6005. },
  6006. "exclude-from-classmap": [
  6007. "/Tests/"
  6008. ]
  6009. },
  6010. "notification-url": "https://packagist.org/downloads/",
  6011. "license": [
  6012. "MIT"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Fabien Potencier",
  6017. "email": "fabien@symfony.com"
  6018. },
  6019. {
  6020. "name": "Symfony Community",
  6021. "homepage": "https://symfony.com/contributors"
  6022. }
  6023. ],
  6024. "description": "Eases the creation of beautiful and testable command line interfaces",
  6025. "homepage": "https://symfony.com",
  6026. "keywords": [
  6027. "cli",
  6028. "command-line",
  6029. "console",
  6030. "terminal"
  6031. ],
  6032. "support": {
  6033. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6034. },
  6035. "funding": [
  6036. {
  6037. "url": "https://symfony.com/sponsor",
  6038. "type": "custom"
  6039. },
  6040. {
  6041. "url": "https://github.com/fabpot",
  6042. "type": "github"
  6043. },
  6044. {
  6045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6046. "type": "tidelift"
  6047. }
  6048. ],
  6049. "time": "2024-05-31T14:49:08+00:00"
  6050. },
  6051. {
  6052. "name": "symfony/deprecation-contracts",
  6053. "version": "v3.5.0",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/symfony/deprecation-contracts.git",
  6057. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6062. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6063. "shasum": ""
  6064. },
  6065. "require": {
  6066. "php": ">=8.1"
  6067. },
  6068. "type": "library",
  6069. "extra": {
  6070. "branch-alias": {
  6071. "dev-main": "3.5-dev"
  6072. },
  6073. "thanks": {
  6074. "name": "symfony/contracts",
  6075. "url": "https://github.com/symfony/contracts"
  6076. }
  6077. },
  6078. "autoload": {
  6079. "files": [
  6080. "function.php"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Nicolas Grekas",
  6090. "email": "p@tchwork.com"
  6091. },
  6092. {
  6093. "name": "Symfony Community",
  6094. "homepage": "https://symfony.com/contributors"
  6095. }
  6096. ],
  6097. "description": "A generic function and convention to trigger deprecation notices",
  6098. "homepage": "https://symfony.com",
  6099. "support": {
  6100. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6101. },
  6102. "funding": [
  6103. {
  6104. "url": "https://symfony.com/sponsor",
  6105. "type": "custom"
  6106. },
  6107. {
  6108. "url": "https://github.com/fabpot",
  6109. "type": "github"
  6110. },
  6111. {
  6112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6113. "type": "tidelift"
  6114. }
  6115. ],
  6116. "time": "2024-04-18T09:32:20+00:00"
  6117. },
  6118. {
  6119. "name": "symfony/finder",
  6120. "version": "v6.4.8",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/symfony/finder.git",
  6124. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6129. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6130. "shasum": ""
  6131. },
  6132. "require": {
  6133. "php": ">=8.1"
  6134. },
  6135. "require-dev": {
  6136. "symfony/filesystem": "^6.0|^7.0"
  6137. },
  6138. "type": "library",
  6139. "autoload": {
  6140. "psr-4": {
  6141. "Symfony\\Component\\Finder\\": ""
  6142. },
  6143. "exclude-from-classmap": [
  6144. "/Tests/"
  6145. ]
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Fabien Potencier",
  6154. "email": "fabien@symfony.com"
  6155. },
  6156. {
  6157. "name": "Symfony Community",
  6158. "homepage": "https://symfony.com/contributors"
  6159. }
  6160. ],
  6161. "description": "Finds files and directories via an intuitive fluent interface",
  6162. "homepage": "https://symfony.com",
  6163. "support": {
  6164. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6165. },
  6166. "funding": [
  6167. {
  6168. "url": "https://symfony.com/sponsor",
  6169. "type": "custom"
  6170. },
  6171. {
  6172. "url": "https://github.com/fabpot",
  6173. "type": "github"
  6174. },
  6175. {
  6176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6177. "type": "tidelift"
  6178. }
  6179. ],
  6180. "time": "2024-05-31T14:49:08+00:00"
  6181. },
  6182. {
  6183. "name": "symfony/polyfill-ctype",
  6184. "version": "v1.29.0",
  6185. "source": {
  6186. "type": "git",
  6187. "url": "https://github.com/symfony/polyfill-ctype.git",
  6188. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6189. },
  6190. "dist": {
  6191. "type": "zip",
  6192. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6193. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6194. "shasum": ""
  6195. },
  6196. "require": {
  6197. "php": ">=7.1"
  6198. },
  6199. "provide": {
  6200. "ext-ctype": "*"
  6201. },
  6202. "suggest": {
  6203. "ext-ctype": "For best performance"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "thanks": {
  6208. "name": "symfony/polyfill",
  6209. "url": "https://github.com/symfony/polyfill"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "files": [
  6214. "bootstrap.php"
  6215. ],
  6216. "psr-4": {
  6217. "Symfony\\Polyfill\\Ctype\\": ""
  6218. }
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Gert de Pagter",
  6227. "email": "BackEndTea@gmail.com"
  6228. },
  6229. {
  6230. "name": "Symfony Community",
  6231. "homepage": "https://symfony.com/contributors"
  6232. }
  6233. ],
  6234. "description": "Symfony polyfill for ctype functions",
  6235. "homepage": "https://symfony.com",
  6236. "keywords": [
  6237. "compatibility",
  6238. "ctype",
  6239. "polyfill",
  6240. "portable"
  6241. ],
  6242. "support": {
  6243. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://symfony.com/sponsor",
  6248. "type": "custom"
  6249. },
  6250. {
  6251. "url": "https://github.com/fabpot",
  6252. "type": "github"
  6253. },
  6254. {
  6255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6256. "type": "tidelift"
  6257. }
  6258. ],
  6259. "time": "2024-01-29T20:11:03+00:00"
  6260. },
  6261. {
  6262. "name": "symfony/polyfill-intl-grapheme",
  6263. "version": "v1.29.0",
  6264. "source": {
  6265. "type": "git",
  6266. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6267. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6268. },
  6269. "dist": {
  6270. "type": "zip",
  6271. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6272. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6273. "shasum": ""
  6274. },
  6275. "require": {
  6276. "php": ">=7.1"
  6277. },
  6278. "suggest": {
  6279. "ext-intl": "For best performance"
  6280. },
  6281. "type": "library",
  6282. "extra": {
  6283. "thanks": {
  6284. "name": "symfony/polyfill",
  6285. "url": "https://github.com/symfony/polyfill"
  6286. }
  6287. },
  6288. "autoload": {
  6289. "files": [
  6290. "bootstrap.php"
  6291. ],
  6292. "psr-4": {
  6293. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6294. }
  6295. },
  6296. "notification-url": "https://packagist.org/downloads/",
  6297. "license": [
  6298. "MIT"
  6299. ],
  6300. "authors": [
  6301. {
  6302. "name": "Nicolas Grekas",
  6303. "email": "p@tchwork.com"
  6304. },
  6305. {
  6306. "name": "Symfony Community",
  6307. "homepage": "https://symfony.com/contributors"
  6308. }
  6309. ],
  6310. "description": "Symfony polyfill for intl's grapheme_* functions",
  6311. "homepage": "https://symfony.com",
  6312. "keywords": [
  6313. "compatibility",
  6314. "grapheme",
  6315. "intl",
  6316. "polyfill",
  6317. "portable",
  6318. "shim"
  6319. ],
  6320. "support": {
  6321. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2024-01-29T20:11:03+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/polyfill-intl-normalizer",
  6341. "version": "v1.29.0",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6345. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6350. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=7.1"
  6355. },
  6356. "suggest": {
  6357. "ext-intl": "For best performance"
  6358. },
  6359. "type": "library",
  6360. "extra": {
  6361. "thanks": {
  6362. "name": "symfony/polyfill",
  6363. "url": "https://github.com/symfony/polyfill"
  6364. }
  6365. },
  6366. "autoload": {
  6367. "files": [
  6368. "bootstrap.php"
  6369. ],
  6370. "psr-4": {
  6371. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6372. },
  6373. "classmap": [
  6374. "Resources/stubs"
  6375. ]
  6376. },
  6377. "notification-url": "https://packagist.org/downloads/",
  6378. "license": [
  6379. "MIT"
  6380. ],
  6381. "authors": [
  6382. {
  6383. "name": "Nicolas Grekas",
  6384. "email": "p@tchwork.com"
  6385. },
  6386. {
  6387. "name": "Symfony Community",
  6388. "homepage": "https://symfony.com/contributors"
  6389. }
  6390. ],
  6391. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6392. "homepage": "https://symfony.com",
  6393. "keywords": [
  6394. "compatibility",
  6395. "intl",
  6396. "normalizer",
  6397. "polyfill",
  6398. "portable",
  6399. "shim"
  6400. ],
  6401. "support": {
  6402. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6403. },
  6404. "funding": [
  6405. {
  6406. "url": "https://symfony.com/sponsor",
  6407. "type": "custom"
  6408. },
  6409. {
  6410. "url": "https://github.com/fabpot",
  6411. "type": "github"
  6412. },
  6413. {
  6414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6415. "type": "tidelift"
  6416. }
  6417. ],
  6418. "time": "2024-01-29T20:11:03+00:00"
  6419. },
  6420. {
  6421. "name": "symfony/polyfill-mbstring",
  6422. "version": "v1.29.0",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6426. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6431. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6432. "shasum": ""
  6433. },
  6434. "require": {
  6435. "php": ">=7.1"
  6436. },
  6437. "provide": {
  6438. "ext-mbstring": "*"
  6439. },
  6440. "suggest": {
  6441. "ext-mbstring": "For best performance"
  6442. },
  6443. "type": "library",
  6444. "extra": {
  6445. "thanks": {
  6446. "name": "symfony/polyfill",
  6447. "url": "https://github.com/symfony/polyfill"
  6448. }
  6449. },
  6450. "autoload": {
  6451. "files": [
  6452. "bootstrap.php"
  6453. ],
  6454. "psr-4": {
  6455. "Symfony\\Polyfill\\Mbstring\\": ""
  6456. }
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "Nicolas Grekas",
  6465. "email": "p@tchwork.com"
  6466. },
  6467. {
  6468. "name": "Symfony Community",
  6469. "homepage": "https://symfony.com/contributors"
  6470. }
  6471. ],
  6472. "description": "Symfony polyfill for the Mbstring extension",
  6473. "homepage": "https://symfony.com",
  6474. "keywords": [
  6475. "compatibility",
  6476. "mbstring",
  6477. "polyfill",
  6478. "portable",
  6479. "shim"
  6480. ],
  6481. "support": {
  6482. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://symfony.com/sponsor",
  6487. "type": "custom"
  6488. },
  6489. {
  6490. "url": "https://github.com/fabpot",
  6491. "type": "github"
  6492. },
  6493. {
  6494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6495. "type": "tidelift"
  6496. }
  6497. ],
  6498. "time": "2024-01-29T20:11:03+00:00"
  6499. },
  6500. {
  6501. "name": "symfony/polyfill-php80",
  6502. "version": "v1.29.0",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://github.com/symfony/polyfill-php80.git",
  6506. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6511. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6512. "shasum": ""
  6513. },
  6514. "require": {
  6515. "php": ">=7.1"
  6516. },
  6517. "type": "library",
  6518. "extra": {
  6519. "thanks": {
  6520. "name": "symfony/polyfill",
  6521. "url": "https://github.com/symfony/polyfill"
  6522. }
  6523. },
  6524. "autoload": {
  6525. "files": [
  6526. "bootstrap.php"
  6527. ],
  6528. "psr-4": {
  6529. "Symfony\\Polyfill\\Php80\\": ""
  6530. },
  6531. "classmap": [
  6532. "Resources/stubs"
  6533. ]
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Ion Bazan",
  6542. "email": "ion.bazan@gmail.com"
  6543. },
  6544. {
  6545. "name": "Nicolas Grekas",
  6546. "email": "p@tchwork.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6554. "homepage": "https://symfony.com",
  6555. "keywords": [
  6556. "compatibility",
  6557. "polyfill",
  6558. "portable",
  6559. "shim"
  6560. ],
  6561. "support": {
  6562. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://symfony.com/sponsor",
  6567. "type": "custom"
  6568. },
  6569. {
  6570. "url": "https://github.com/fabpot",
  6571. "type": "github"
  6572. },
  6573. {
  6574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6575. "type": "tidelift"
  6576. }
  6577. ],
  6578. "time": "2024-01-29T20:11:03+00:00"
  6579. },
  6580. {
  6581. "name": "symfony/service-contracts",
  6582. "version": "v3.5.0",
  6583. "source": {
  6584. "type": "git",
  6585. "url": "https://github.com/symfony/service-contracts.git",
  6586. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6587. },
  6588. "dist": {
  6589. "type": "zip",
  6590. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6591. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6592. "shasum": ""
  6593. },
  6594. "require": {
  6595. "php": ">=8.1",
  6596. "psr/container": "^1.1|^2.0",
  6597. "symfony/deprecation-contracts": "^2.5|^3"
  6598. },
  6599. "conflict": {
  6600. "ext-psr": "<1.1|>=2"
  6601. },
  6602. "type": "library",
  6603. "extra": {
  6604. "branch-alias": {
  6605. "dev-main": "3.5-dev"
  6606. },
  6607. "thanks": {
  6608. "name": "symfony/contracts",
  6609. "url": "https://github.com/symfony/contracts"
  6610. }
  6611. },
  6612. "autoload": {
  6613. "psr-4": {
  6614. "Symfony\\Contracts\\Service\\": ""
  6615. },
  6616. "exclude-from-classmap": [
  6617. "/Test/"
  6618. ]
  6619. },
  6620. "notification-url": "https://packagist.org/downloads/",
  6621. "license": [
  6622. "MIT"
  6623. ],
  6624. "authors": [
  6625. {
  6626. "name": "Nicolas Grekas",
  6627. "email": "p@tchwork.com"
  6628. },
  6629. {
  6630. "name": "Symfony Community",
  6631. "homepage": "https://symfony.com/contributors"
  6632. }
  6633. ],
  6634. "description": "Generic abstractions related to writing services",
  6635. "homepage": "https://symfony.com",
  6636. "keywords": [
  6637. "abstractions",
  6638. "contracts",
  6639. "decoupling",
  6640. "interfaces",
  6641. "interoperability",
  6642. "standards"
  6643. ],
  6644. "support": {
  6645. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6646. },
  6647. "funding": [
  6648. {
  6649. "url": "https://symfony.com/sponsor",
  6650. "type": "custom"
  6651. },
  6652. {
  6653. "url": "https://github.com/fabpot",
  6654. "type": "github"
  6655. },
  6656. {
  6657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6658. "type": "tidelift"
  6659. }
  6660. ],
  6661. "time": "2024-04-18T09:32:20+00:00"
  6662. },
  6663. {
  6664. "name": "symfony/string",
  6665. "version": "v6.4.8",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/symfony/string.git",
  6669. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6674. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": ">=8.1",
  6679. "symfony/polyfill-ctype": "~1.8",
  6680. "symfony/polyfill-intl-grapheme": "~1.0",
  6681. "symfony/polyfill-intl-normalizer": "~1.0",
  6682. "symfony/polyfill-mbstring": "~1.0"
  6683. },
  6684. "conflict": {
  6685. "symfony/translation-contracts": "<2.5"
  6686. },
  6687. "require-dev": {
  6688. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6689. "symfony/http-client": "^5.4|^6.0|^7.0",
  6690. "symfony/intl": "^6.2|^7.0",
  6691. "symfony/translation-contracts": "^2.5|^3.0",
  6692. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6693. },
  6694. "type": "library",
  6695. "autoload": {
  6696. "files": [
  6697. "Resources/functions.php"
  6698. ],
  6699. "psr-4": {
  6700. "Symfony\\Component\\String\\": ""
  6701. },
  6702. "exclude-from-classmap": [
  6703. "/Tests/"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Nicolas Grekas",
  6713. "email": "p@tchwork.com"
  6714. },
  6715. {
  6716. "name": "Symfony Community",
  6717. "homepage": "https://symfony.com/contributors"
  6718. }
  6719. ],
  6720. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6721. "homepage": "https://symfony.com",
  6722. "keywords": [
  6723. "grapheme",
  6724. "i18n",
  6725. "string",
  6726. "unicode",
  6727. "utf-8",
  6728. "utf8"
  6729. ],
  6730. "support": {
  6731. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6732. },
  6733. "funding": [
  6734. {
  6735. "url": "https://symfony.com/sponsor",
  6736. "type": "custom"
  6737. },
  6738. {
  6739. "url": "https://github.com/fabpot",
  6740. "type": "github"
  6741. },
  6742. {
  6743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6744. "type": "tidelift"
  6745. }
  6746. ],
  6747. "time": "2024-05-31T14:49:08+00:00"
  6748. },
  6749. {
  6750. "name": "symfony/translation",
  6751. "version": "v6.4.8",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/symfony/translation.git",
  6755. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6760. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6761. "shasum": ""
  6762. },
  6763. "require": {
  6764. "php": ">=8.1",
  6765. "symfony/deprecation-contracts": "^2.5|^3",
  6766. "symfony/polyfill-mbstring": "~1.0",
  6767. "symfony/translation-contracts": "^2.5|^3.0"
  6768. },
  6769. "conflict": {
  6770. "symfony/config": "<5.4",
  6771. "symfony/console": "<5.4",
  6772. "symfony/dependency-injection": "<5.4",
  6773. "symfony/http-client-contracts": "<2.5",
  6774. "symfony/http-kernel": "<5.4",
  6775. "symfony/service-contracts": "<2.5",
  6776. "symfony/twig-bundle": "<5.4",
  6777. "symfony/yaml": "<5.4"
  6778. },
  6779. "provide": {
  6780. "symfony/translation-implementation": "2.3|3.0"
  6781. },
  6782. "require-dev": {
  6783. "nikic/php-parser": "^4.18|^5.0",
  6784. "psr/log": "^1|^2|^3",
  6785. "symfony/config": "^5.4|^6.0|^7.0",
  6786. "symfony/console": "^5.4|^6.0|^7.0",
  6787. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6788. "symfony/finder": "^5.4|^6.0|^7.0",
  6789. "symfony/http-client-contracts": "^2.5|^3.0",
  6790. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6791. "symfony/intl": "^5.4|^6.0|^7.0",
  6792. "symfony/polyfill-intl-icu": "^1.21",
  6793. "symfony/routing": "^5.4|^6.0|^7.0",
  6794. "symfony/service-contracts": "^2.5|^3",
  6795. "symfony/yaml": "^5.4|^6.0|^7.0"
  6796. },
  6797. "type": "library",
  6798. "autoload": {
  6799. "files": [
  6800. "Resources/functions.php"
  6801. ],
  6802. "psr-4": {
  6803. "Symfony\\Component\\Translation\\": ""
  6804. },
  6805. "exclude-from-classmap": [
  6806. "/Tests/"
  6807. ]
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "MIT"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Fabien Potencier",
  6816. "email": "fabien@symfony.com"
  6817. },
  6818. {
  6819. "name": "Symfony Community",
  6820. "homepage": "https://symfony.com/contributors"
  6821. }
  6822. ],
  6823. "description": "Provides tools to internationalize your application",
  6824. "homepage": "https://symfony.com",
  6825. "support": {
  6826. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6827. },
  6828. "funding": [
  6829. {
  6830. "url": "https://symfony.com/sponsor",
  6831. "type": "custom"
  6832. },
  6833. {
  6834. "url": "https://github.com/fabpot",
  6835. "type": "github"
  6836. },
  6837. {
  6838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6839. "type": "tidelift"
  6840. }
  6841. ],
  6842. "time": "2024-05-31T14:49:08+00:00"
  6843. },
  6844. {
  6845. "name": "symfony/translation-contracts",
  6846. "version": "v3.5.0",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/symfony/translation-contracts.git",
  6850. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6855. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "php": ">=8.1"
  6860. },
  6861. "type": "library",
  6862. "extra": {
  6863. "branch-alias": {
  6864. "dev-main": "3.5-dev"
  6865. },
  6866. "thanks": {
  6867. "name": "symfony/contracts",
  6868. "url": "https://github.com/symfony/contracts"
  6869. }
  6870. },
  6871. "autoload": {
  6872. "psr-4": {
  6873. "Symfony\\Contracts\\Translation\\": ""
  6874. },
  6875. "exclude-from-classmap": [
  6876. "/Test/"
  6877. ]
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "MIT"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Nicolas Grekas",
  6886. "email": "p@tchwork.com"
  6887. },
  6888. {
  6889. "name": "Symfony Community",
  6890. "homepage": "https://symfony.com/contributors"
  6891. }
  6892. ],
  6893. "description": "Generic abstractions related to translation",
  6894. "homepage": "https://symfony.com",
  6895. "keywords": [
  6896. "abstractions",
  6897. "contracts",
  6898. "decoupling",
  6899. "interfaces",
  6900. "interoperability",
  6901. "standards"
  6902. ],
  6903. "support": {
  6904. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6905. },
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2024-04-18T09:32:20+00:00"
  6921. },
  6922. {
  6923. "name": "vlucas/phpdotenv",
  6924. "version": "v5.6.0",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/vlucas/phpdotenv.git",
  6928. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6933. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "ext-pcre": "*",
  6938. "graham-campbell/result-type": "^1.1.2",
  6939. "php": "^7.2.5 || ^8.0",
  6940. "phpoption/phpoption": "^1.9.2",
  6941. "symfony/polyfill-ctype": "^1.24",
  6942. "symfony/polyfill-mbstring": "^1.24",
  6943. "symfony/polyfill-php80": "^1.24"
  6944. },
  6945. "require-dev": {
  6946. "bamarni/composer-bin-plugin": "^1.8.2",
  6947. "ext-filter": "*",
  6948. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6949. },
  6950. "suggest": {
  6951. "ext-filter": "Required to use the boolean validator."
  6952. },
  6953. "type": "library",
  6954. "extra": {
  6955. "bamarni-bin": {
  6956. "bin-links": true,
  6957. "forward-command": true
  6958. },
  6959. "branch-alias": {
  6960. "dev-master": "5.6-dev"
  6961. }
  6962. },
  6963. "autoload": {
  6964. "psr-4": {
  6965. "Dotenv\\": "src/"
  6966. }
  6967. },
  6968. "notification-url": "https://packagist.org/downloads/",
  6969. "license": [
  6970. "BSD-3-Clause"
  6971. ],
  6972. "authors": [
  6973. {
  6974. "name": "Graham Campbell",
  6975. "email": "hello@gjcampbell.co.uk",
  6976. "homepage": "https://github.com/GrahamCampbell"
  6977. },
  6978. {
  6979. "name": "Vance Lucas",
  6980. "email": "vance@vancelucas.com",
  6981. "homepage": "https://github.com/vlucas"
  6982. }
  6983. ],
  6984. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6985. "keywords": [
  6986. "dotenv",
  6987. "env",
  6988. "environment"
  6989. ],
  6990. "support": {
  6991. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6992. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6993. },
  6994. "funding": [
  6995. {
  6996. "url": "https://github.com/GrahamCampbell",
  6997. "type": "github"
  6998. },
  6999. {
  7000. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7001. "type": "tidelift"
  7002. }
  7003. ],
  7004. "time": "2023-11-12T22:43:29+00:00"
  7005. },
  7006. {
  7007. "name": "voku/portable-ascii",
  7008. "version": "2.0.3",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/voku/portable-ascii.git",
  7012. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7017. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": ">=7.0.0"
  7022. },
  7023. "require-dev": {
  7024. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7025. },
  7026. "suggest": {
  7027. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7028. },
  7029. "type": "library",
  7030. "autoload": {
  7031. "psr-4": {
  7032. "voku\\": "src/voku/"
  7033. }
  7034. },
  7035. "notification-url": "https://packagist.org/downloads/",
  7036. "license": [
  7037. "MIT"
  7038. ],
  7039. "authors": [
  7040. {
  7041. "name": "Lars Moelleken",
  7042. "homepage": "https://www.moelleken.org/"
  7043. }
  7044. ],
  7045. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7046. "homepage": "https://github.com/voku/portable-ascii",
  7047. "keywords": [
  7048. "ascii",
  7049. "clean",
  7050. "php"
  7051. ],
  7052. "support": {
  7053. "issues": "https://github.com/voku/portable-ascii/issues",
  7054. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  7055. },
  7056. "funding": [
  7057. {
  7058. "url": "https://www.paypal.me/moelleken",
  7059. "type": "custom"
  7060. },
  7061. {
  7062. "url": "https://github.com/voku",
  7063. "type": "github"
  7064. },
  7065. {
  7066. "url": "https://opencollective.com/portable-ascii",
  7067. "type": "open_collective"
  7068. },
  7069. {
  7070. "url": "https://www.patreon.com/voku",
  7071. "type": "patreon"
  7072. },
  7073. {
  7074. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7075. "type": "tidelift"
  7076. }
  7077. ],
  7078. "time": "2024-11-21T01:49:47+00:00"
  7079. }
  7080. ],
  7081. "packages-dev": [
  7082. {
  7083. "name": "clue/ndjson-react",
  7084. "version": "v1.3.0",
  7085. "source": {
  7086. "type": "git",
  7087. "url": "https://github.com/clue/reactphp-ndjson.git",
  7088. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7089. },
  7090. "dist": {
  7091. "type": "zip",
  7092. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7093. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7094. "shasum": ""
  7095. },
  7096. "require": {
  7097. "php": ">=5.3",
  7098. "react/stream": "^1.2"
  7099. },
  7100. "require-dev": {
  7101. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7102. "react/event-loop": "^1.2"
  7103. },
  7104. "type": "library",
  7105. "autoload": {
  7106. "psr-4": {
  7107. "Clue\\React\\NDJson\\": "src/"
  7108. }
  7109. },
  7110. "notification-url": "https://packagist.org/downloads/",
  7111. "license": [
  7112. "MIT"
  7113. ],
  7114. "authors": [
  7115. {
  7116. "name": "Christian Lück",
  7117. "email": "christian@clue.engineering"
  7118. }
  7119. ],
  7120. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7121. "homepage": "https://github.com/clue/reactphp-ndjson",
  7122. "keywords": [
  7123. "NDJSON",
  7124. "json",
  7125. "jsonlines",
  7126. "newline",
  7127. "reactphp",
  7128. "streaming"
  7129. ],
  7130. "support": {
  7131. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7132. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7133. },
  7134. "funding": [
  7135. {
  7136. "url": "https://clue.engineering/support",
  7137. "type": "custom"
  7138. },
  7139. {
  7140. "url": "https://github.com/clue",
  7141. "type": "github"
  7142. }
  7143. ],
  7144. "time": "2022-12-23T10:58:28+00:00"
  7145. },
  7146. {
  7147. "name": "composer/pcre",
  7148. "version": "3.1.4",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/composer/pcre.git",
  7152. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7157. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "php": "^7.4 || ^8.0"
  7162. },
  7163. "require-dev": {
  7164. "phpstan/phpstan": "^1.3",
  7165. "phpstan/phpstan-strict-rules": "^1.1",
  7166. "symfony/phpunit-bridge": "^5"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "branch-alias": {
  7171. "dev-main": "3.x-dev"
  7172. }
  7173. },
  7174. "autoload": {
  7175. "psr-4": {
  7176. "Composer\\Pcre\\": "src"
  7177. }
  7178. },
  7179. "notification-url": "https://packagist.org/downloads/",
  7180. "license": [
  7181. "MIT"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Jordi Boggiano",
  7186. "email": "j.boggiano@seld.be",
  7187. "homepage": "http://seld.be"
  7188. }
  7189. ],
  7190. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7191. "keywords": [
  7192. "PCRE",
  7193. "preg",
  7194. "regex",
  7195. "regular expression"
  7196. ],
  7197. "support": {
  7198. "issues": "https://github.com/composer/pcre/issues",
  7199. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7200. },
  7201. "funding": [
  7202. {
  7203. "url": "https://packagist.com",
  7204. "type": "custom"
  7205. },
  7206. {
  7207. "url": "https://github.com/composer",
  7208. "type": "github"
  7209. },
  7210. {
  7211. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7212. "type": "tidelift"
  7213. }
  7214. ],
  7215. "time": "2024-05-27T13:40:54+00:00"
  7216. },
  7217. {
  7218. "name": "composer/semver",
  7219. "version": "3.4.0",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/composer/semver.git",
  7223. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7228. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7229. "shasum": ""
  7230. },
  7231. "require": {
  7232. "php": "^5.3.2 || ^7.0 || ^8.0"
  7233. },
  7234. "require-dev": {
  7235. "phpstan/phpstan": "^1.4",
  7236. "symfony/phpunit-bridge": "^4.2 || ^5"
  7237. },
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-main": "3.x-dev"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "psr-4": {
  7246. "Composer\\Semver\\": "src"
  7247. }
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Nils Adermann",
  7256. "email": "naderman@naderman.de",
  7257. "homepage": "http://www.naderman.de"
  7258. },
  7259. {
  7260. "name": "Jordi Boggiano",
  7261. "email": "j.boggiano@seld.be",
  7262. "homepage": "http://seld.be"
  7263. },
  7264. {
  7265. "name": "Rob Bast",
  7266. "email": "rob.bast@gmail.com",
  7267. "homepage": "http://robbast.nl"
  7268. }
  7269. ],
  7270. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7271. "keywords": [
  7272. "semantic",
  7273. "semver",
  7274. "validation",
  7275. "versioning"
  7276. ],
  7277. "support": {
  7278. "irc": "ircs://irc.libera.chat:6697/composer",
  7279. "issues": "https://github.com/composer/semver/issues",
  7280. "source": "https://github.com/composer/semver/tree/3.4.0"
  7281. },
  7282. "funding": [
  7283. {
  7284. "url": "https://packagist.com",
  7285. "type": "custom"
  7286. },
  7287. {
  7288. "url": "https://github.com/composer",
  7289. "type": "github"
  7290. },
  7291. {
  7292. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7293. "type": "tidelift"
  7294. }
  7295. ],
  7296. "time": "2023-08-31T09:50:34+00:00"
  7297. },
  7298. {
  7299. "name": "composer/xdebug-handler",
  7300. "version": "3.0.5",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/composer/xdebug-handler.git",
  7304. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7309. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "composer/pcre": "^1 || ^2 || ^3",
  7314. "php": "^7.2.5 || ^8.0",
  7315. "psr/log": "^1 || ^2 || ^3"
  7316. },
  7317. "require-dev": {
  7318. "phpstan/phpstan": "^1.0",
  7319. "phpstan/phpstan-strict-rules": "^1.1",
  7320. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7321. },
  7322. "type": "library",
  7323. "autoload": {
  7324. "psr-4": {
  7325. "Composer\\XdebugHandler\\": "src"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "John Stevenson",
  7335. "email": "john-stevenson@blueyonder.co.uk"
  7336. }
  7337. ],
  7338. "description": "Restarts a process without Xdebug.",
  7339. "keywords": [
  7340. "Xdebug",
  7341. "performance"
  7342. ],
  7343. "support": {
  7344. "irc": "ircs://irc.libera.chat:6697/composer",
  7345. "issues": "https://github.com/composer/xdebug-handler/issues",
  7346. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7347. },
  7348. "funding": [
  7349. {
  7350. "url": "https://packagist.com",
  7351. "type": "custom"
  7352. },
  7353. {
  7354. "url": "https://github.com/composer",
  7355. "type": "github"
  7356. },
  7357. {
  7358. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7359. "type": "tidelift"
  7360. }
  7361. ],
  7362. "time": "2024-05-06T16:37:16+00:00"
  7363. },
  7364. {
  7365. "name": "evenement/evenement",
  7366. "version": "v3.0.2",
  7367. "source": {
  7368. "type": "git",
  7369. "url": "https://github.com/igorw/evenement.git",
  7370. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7371. },
  7372. "dist": {
  7373. "type": "zip",
  7374. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7375. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7376. "shasum": ""
  7377. },
  7378. "require": {
  7379. "php": ">=7.0"
  7380. },
  7381. "require-dev": {
  7382. "phpunit/phpunit": "^9 || ^6"
  7383. },
  7384. "type": "library",
  7385. "autoload": {
  7386. "psr-4": {
  7387. "Evenement\\": "src/"
  7388. }
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "Igor Wiedler",
  7397. "email": "igor@wiedler.ch"
  7398. }
  7399. ],
  7400. "description": "Événement is a very simple event dispatching library for PHP",
  7401. "keywords": [
  7402. "event-dispatcher",
  7403. "event-emitter"
  7404. ],
  7405. "support": {
  7406. "issues": "https://github.com/igorw/evenement/issues",
  7407. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7408. },
  7409. "time": "2023-08-08T05:53:35+00:00"
  7410. },
  7411. {
  7412. "name": "fidry/cpu-core-counter",
  7413. "version": "1.1.0",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7417. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7422. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7423. "shasum": ""
  7424. },
  7425. "require": {
  7426. "php": "^7.2 || ^8.0"
  7427. },
  7428. "require-dev": {
  7429. "fidry/makefile": "^0.2.0",
  7430. "fidry/php-cs-fixer-config": "^1.1.2",
  7431. "phpstan/extension-installer": "^1.2.0",
  7432. "phpstan/phpstan": "^1.9.2",
  7433. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7434. "phpstan/phpstan-phpunit": "^1.2.2",
  7435. "phpstan/phpstan-strict-rules": "^1.4.4",
  7436. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7437. "webmozarts/strict-phpunit": "^7.5"
  7438. },
  7439. "type": "library",
  7440. "autoload": {
  7441. "psr-4": {
  7442. "Fidry\\CpuCoreCounter\\": "src/"
  7443. }
  7444. },
  7445. "notification-url": "https://packagist.org/downloads/",
  7446. "license": [
  7447. "MIT"
  7448. ],
  7449. "authors": [
  7450. {
  7451. "name": "Théo FIDRY",
  7452. "email": "theo.fidry@gmail.com"
  7453. }
  7454. ],
  7455. "description": "Tiny utility to get the number of CPU cores.",
  7456. "keywords": [
  7457. "CPU",
  7458. "core"
  7459. ],
  7460. "support": {
  7461. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7462. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7463. },
  7464. "funding": [
  7465. {
  7466. "url": "https://github.com/theofidry",
  7467. "type": "github"
  7468. }
  7469. ],
  7470. "time": "2024-02-07T09:43:46+00:00"
  7471. },
  7472. {
  7473. "name": "friendsofphp/php-cs-fixer",
  7474. "version": "v3.58.1",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7478. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7483. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "clue/ndjson-react": "^1.0",
  7488. "composer/semver": "^3.4",
  7489. "composer/xdebug-handler": "^3.0.3",
  7490. "ext-filter": "*",
  7491. "ext-json": "*",
  7492. "ext-tokenizer": "*",
  7493. "fidry/cpu-core-counter": "^1.0",
  7494. "php": "^7.4 || ^8.0",
  7495. "react/child-process": "^0.6.5",
  7496. "react/event-loop": "^1.0",
  7497. "react/promise": "^2.0 || ^3.0",
  7498. "react/socket": "^1.0",
  7499. "react/stream": "^1.0",
  7500. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7501. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7502. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7503. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7504. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7505. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7506. "symfony/polyfill-mbstring": "^1.28",
  7507. "symfony/polyfill-php80": "^1.28",
  7508. "symfony/polyfill-php81": "^1.28",
  7509. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7510. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7511. },
  7512. "require-dev": {
  7513. "facile-it/paraunit": "^1.3 || ^2.0",
  7514. "infection/infection": "^0.27.11",
  7515. "justinrainbow/json-schema": "^5.2",
  7516. "keradus/cli-executor": "^2.1",
  7517. "mikey179/vfsstream": "^1.6.11",
  7518. "php-coveralls/php-coveralls": "^2.7",
  7519. "php-cs-fixer/accessible-object": "^1.1",
  7520. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7521. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7522. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7523. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7524. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7525. },
  7526. "suggest": {
  7527. "ext-dom": "For handling output formats in XML",
  7528. "ext-mbstring": "For handling non-UTF8 characters."
  7529. },
  7530. "bin": [
  7531. "php-cs-fixer"
  7532. ],
  7533. "type": "application",
  7534. "autoload": {
  7535. "psr-4": {
  7536. "PhpCsFixer\\": "src/"
  7537. }
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "MIT"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Fabien Potencier",
  7546. "email": "fabien@symfony.com"
  7547. },
  7548. {
  7549. "name": "Dariusz Rumiński",
  7550. "email": "dariusz.ruminski@gmail.com"
  7551. }
  7552. ],
  7553. "description": "A tool to automatically fix PHP code style",
  7554. "keywords": [
  7555. "Static code analysis",
  7556. "fixer",
  7557. "standards",
  7558. "static analysis"
  7559. ],
  7560. "support": {
  7561. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7562. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7563. },
  7564. "funding": [
  7565. {
  7566. "url": "https://github.com/keradus",
  7567. "type": "github"
  7568. }
  7569. ],
  7570. "time": "2024-05-29T16:39:07+00:00"
  7571. },
  7572. {
  7573. "name": "hamcrest/hamcrest-php",
  7574. "version": "v2.0.1",
  7575. "source": {
  7576. "type": "git",
  7577. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7578. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7579. },
  7580. "dist": {
  7581. "type": "zip",
  7582. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7583. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7584. "shasum": ""
  7585. },
  7586. "require": {
  7587. "php": "^5.3|^7.0|^8.0"
  7588. },
  7589. "replace": {
  7590. "cordoval/hamcrest-php": "*",
  7591. "davedevelopment/hamcrest-php": "*",
  7592. "kodova/hamcrest-php": "*"
  7593. },
  7594. "require-dev": {
  7595. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7596. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7597. },
  7598. "type": "library",
  7599. "extra": {
  7600. "branch-alias": {
  7601. "dev-master": "2.1-dev"
  7602. }
  7603. },
  7604. "autoload": {
  7605. "classmap": [
  7606. "hamcrest"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "BSD-3-Clause"
  7612. ],
  7613. "description": "This is the PHP port of Hamcrest Matchers",
  7614. "keywords": [
  7615. "test"
  7616. ],
  7617. "support": {
  7618. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7619. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7620. },
  7621. "time": "2020-07-09T08:09:16+00:00"
  7622. },
  7623. {
  7624. "name": "hyperf/devtool",
  7625. "version": "v3.1.19",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/hyperf/devtool.git",
  7629. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7634. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "hyperf/code-parser": "~3.1.0",
  7639. "hyperf/command": "~3.1.0",
  7640. "hyperf/contract": "~3.1.0",
  7641. "hyperf/di": "~3.1.0",
  7642. "hyperf/support": "~3.1.0",
  7643. "hyperf/utils": "~3.1.0",
  7644. "php": ">=8.1"
  7645. },
  7646. "type": "library",
  7647. "extra": {
  7648. "branch-alias": {
  7649. "dev-master": "3.1-dev"
  7650. },
  7651. "hyperf": {
  7652. "config": "Hyperf\\Devtool\\ConfigProvider"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "psr-4": {
  7657. "Hyperf\\Devtool\\": "src/"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "description": "A Devtool for Hyperf.",
  7665. "homepage": "https://hyperf.io",
  7666. "keywords": [
  7667. "dev",
  7668. "devtool",
  7669. "hyperf",
  7670. "php",
  7671. "swoole"
  7672. ],
  7673. "support": {
  7674. "docs": "https://hyperf.wiki",
  7675. "issues": "https://github.com/hyperf/hyperf/issues",
  7676. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7677. "source": "https://github.com/hyperf/hyperf"
  7678. },
  7679. "funding": [
  7680. {
  7681. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7682. "type": "custom"
  7683. },
  7684. {
  7685. "url": "https://opencollective.com/hyperf",
  7686. "type": "open_collective"
  7687. }
  7688. ],
  7689. "time": "2024-04-13T06:53:08+00:00"
  7690. },
  7691. {
  7692. "name": "hyperf/testing",
  7693. "version": "v3.1.21",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/hyperf/testing.git",
  7697. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7702. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7703. "shasum": ""
  7704. },
  7705. "require": {
  7706. "hyperf/codec": "~3.1.0",
  7707. "hyperf/collection": "~3.1.0",
  7708. "hyperf/contract": "~3.1.0",
  7709. "hyperf/coroutine": "~3.1.0",
  7710. "hyperf/http-message": "~3.1.0",
  7711. "hyperf/http-server": "~3.1.0",
  7712. "hyperf/support": "~3.1.0",
  7713. "hyperf/utils": "~3.1.0",
  7714. "php": ">=8.1",
  7715. "phpunit/phpunit": "^10.0",
  7716. "psr/container": "^1.0|^2.0",
  7717. "symfony/http-foundation": "^5.4|^6.0"
  7718. },
  7719. "suggest": {
  7720. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7721. },
  7722. "bin": [
  7723. "co-phpunit"
  7724. ],
  7725. "type": "library",
  7726. "extra": {
  7727. "branch-alias": {
  7728. "dev-master": "3.1-dev"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "psr-4": {
  7733. "Hyperf\\Testing\\": "src/"
  7734. }
  7735. },
  7736. "notification-url": "https://packagist.org/downloads/",
  7737. "license": [
  7738. "MIT"
  7739. ],
  7740. "description": "Testing for hyperf",
  7741. "keywords": [
  7742. "dev",
  7743. "php",
  7744. "swoole",
  7745. "testing"
  7746. ],
  7747. "support": {
  7748. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7749. },
  7750. "funding": [
  7751. {
  7752. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7753. "type": "custom"
  7754. },
  7755. {
  7756. "url": "https://opencollective.com/hyperf",
  7757. "type": "open_collective"
  7758. }
  7759. ],
  7760. "time": "2024-05-07T05:34:51+00:00"
  7761. },
  7762. {
  7763. "name": "hyperf/watcher",
  7764. "version": "v3.1.21",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/hyperf/watcher.git",
  7768. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7773. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "ext-posix": "*",
  7778. "hyperf/codec": "~3.1.0",
  7779. "hyperf/command": "~3.1.0",
  7780. "hyperf/di": "~3.1.0",
  7781. "hyperf/framework": "~3.1.0",
  7782. "hyperf/support": "~3.1.0",
  7783. "php": ">=8.1"
  7784. },
  7785. "type": "library",
  7786. "extra": {
  7787. "branch-alias": {
  7788. "dev-master": "3.1-dev"
  7789. },
  7790. "hyperf": {
  7791. "config": "Hyperf\\Watcher\\ConfigProvider"
  7792. }
  7793. },
  7794. "autoload": {
  7795. "files": [
  7796. "src/Functions.php"
  7797. ],
  7798. "psr-4": {
  7799. "Hyperf\\Watcher\\": "src/"
  7800. }
  7801. },
  7802. "notification-url": "https://packagist.org/downloads/",
  7803. "license": [
  7804. "MIT"
  7805. ],
  7806. "description": "Hot reload watcher for Hyperf",
  7807. "keywords": [
  7808. "dev",
  7809. "hyperf",
  7810. "php"
  7811. ],
  7812. "support": {
  7813. "issues": "https://github.com/hyperf/watcher/issues",
  7814. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7815. },
  7816. "funding": [
  7817. {
  7818. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7819. "type": "custom"
  7820. },
  7821. {
  7822. "url": "https://opencollective.com/hyperf",
  7823. "type": "open_collective"
  7824. }
  7825. ],
  7826. "time": "2024-05-09T13:40:44+00:00"
  7827. },
  7828. {
  7829. "name": "mockery/mockery",
  7830. "version": "1.6.12",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://github.com/mockery/mockery.git",
  7834. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7839. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7840. "shasum": ""
  7841. },
  7842. "require": {
  7843. "hamcrest/hamcrest-php": "^2.0.1",
  7844. "lib-pcre": ">=7.0",
  7845. "php": ">=7.3"
  7846. },
  7847. "conflict": {
  7848. "phpunit/phpunit": "<8.0"
  7849. },
  7850. "require-dev": {
  7851. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7852. "symplify/easy-coding-standard": "^12.1.14"
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "files": [
  7857. "library/helpers.php",
  7858. "library/Mockery.php"
  7859. ],
  7860. "psr-4": {
  7861. "Mockery\\": "library/Mockery"
  7862. }
  7863. },
  7864. "notification-url": "https://packagist.org/downloads/",
  7865. "license": [
  7866. "BSD-3-Clause"
  7867. ],
  7868. "authors": [
  7869. {
  7870. "name": "Pádraic Brady",
  7871. "email": "padraic.brady@gmail.com",
  7872. "homepage": "https://github.com/padraic",
  7873. "role": "Author"
  7874. },
  7875. {
  7876. "name": "Dave Marshall",
  7877. "email": "dave.marshall@atstsolutions.co.uk",
  7878. "homepage": "https://davedevelopment.co.uk",
  7879. "role": "Developer"
  7880. },
  7881. {
  7882. "name": "Nathanael Esayeas",
  7883. "email": "nathanael.esayeas@protonmail.com",
  7884. "homepage": "https://github.com/ghostwriter",
  7885. "role": "Lead Developer"
  7886. }
  7887. ],
  7888. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7889. "homepage": "https://github.com/mockery/mockery",
  7890. "keywords": [
  7891. "BDD",
  7892. "TDD",
  7893. "library",
  7894. "mock",
  7895. "mock objects",
  7896. "mockery",
  7897. "stub",
  7898. "test",
  7899. "test double",
  7900. "testing"
  7901. ],
  7902. "support": {
  7903. "docs": "https://docs.mockery.io/",
  7904. "issues": "https://github.com/mockery/mockery/issues",
  7905. "rss": "https://github.com/mockery/mockery/releases.atom",
  7906. "security": "https://github.com/mockery/mockery/security/advisories",
  7907. "source": "https://github.com/mockery/mockery"
  7908. },
  7909. "time": "2024-05-16T03:13:13+00:00"
  7910. },
  7911. {
  7912. "name": "myclabs/deep-copy",
  7913. "version": "1.11.1",
  7914. "source": {
  7915. "type": "git",
  7916. "url": "https://github.com/myclabs/DeepCopy.git",
  7917. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7918. },
  7919. "dist": {
  7920. "type": "zip",
  7921. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7922. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7923. "shasum": ""
  7924. },
  7925. "require": {
  7926. "php": "^7.1 || ^8.0"
  7927. },
  7928. "conflict": {
  7929. "doctrine/collections": "<1.6.8",
  7930. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7931. },
  7932. "require-dev": {
  7933. "doctrine/collections": "^1.6.8",
  7934. "doctrine/common": "^2.13.3 || ^3.2.2",
  7935. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7936. },
  7937. "type": "library",
  7938. "autoload": {
  7939. "files": [
  7940. "src/DeepCopy/deep_copy.php"
  7941. ],
  7942. "psr-4": {
  7943. "DeepCopy\\": "src/DeepCopy/"
  7944. }
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "MIT"
  7949. ],
  7950. "description": "Create deep copies (clones) of your objects",
  7951. "keywords": [
  7952. "clone",
  7953. "copy",
  7954. "duplicate",
  7955. "object",
  7956. "object graph"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7960. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7965. "type": "tidelift"
  7966. }
  7967. ],
  7968. "time": "2023-03-08T13:26:56+00:00"
  7969. },
  7970. {
  7971. "name": "phar-io/manifest",
  7972. "version": "2.0.4",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/phar-io/manifest.git",
  7976. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7981. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "ext-dom": "*",
  7986. "ext-libxml": "*",
  7987. "ext-phar": "*",
  7988. "ext-xmlwriter": "*",
  7989. "phar-io/version": "^3.0.1",
  7990. "php": "^7.2 || ^8.0"
  7991. },
  7992. "type": "library",
  7993. "extra": {
  7994. "branch-alias": {
  7995. "dev-master": "2.0.x-dev"
  7996. }
  7997. },
  7998. "autoload": {
  7999. "classmap": [
  8000. "src/"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "BSD-3-Clause"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Arne Blankerts",
  8010. "email": "arne@blankerts.de",
  8011. "role": "Developer"
  8012. },
  8013. {
  8014. "name": "Sebastian Heuer",
  8015. "email": "sebastian@phpeople.de",
  8016. "role": "Developer"
  8017. },
  8018. {
  8019. "name": "Sebastian Bergmann",
  8020. "email": "sebastian@phpunit.de",
  8021. "role": "Developer"
  8022. }
  8023. ],
  8024. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8025. "support": {
  8026. "issues": "https://github.com/phar-io/manifest/issues",
  8027. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://github.com/theseer",
  8032. "type": "github"
  8033. }
  8034. ],
  8035. "time": "2024-03-03T12:33:53+00:00"
  8036. },
  8037. {
  8038. "name": "phar-io/version",
  8039. "version": "3.2.1",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/phar-io/version.git",
  8043. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8048. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "php": "^7.2 || ^8.0"
  8053. },
  8054. "type": "library",
  8055. "autoload": {
  8056. "classmap": [
  8057. "src/"
  8058. ]
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "BSD-3-Clause"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "Arne Blankerts",
  8067. "email": "arne@blankerts.de",
  8068. "role": "Developer"
  8069. },
  8070. {
  8071. "name": "Sebastian Heuer",
  8072. "email": "sebastian@phpeople.de",
  8073. "role": "Developer"
  8074. },
  8075. {
  8076. "name": "Sebastian Bergmann",
  8077. "email": "sebastian@phpunit.de",
  8078. "role": "Developer"
  8079. }
  8080. ],
  8081. "description": "Library for handling version information and constraints",
  8082. "support": {
  8083. "issues": "https://github.com/phar-io/version/issues",
  8084. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8085. },
  8086. "time": "2022-02-21T01:04:05+00:00"
  8087. },
  8088. {
  8089. "name": "phpstan/phpstan",
  8090. "version": "1.11.3",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/phpstan/phpstan.git",
  8094. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8099. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8100. "shasum": ""
  8101. },
  8102. "require": {
  8103. "php": "^7.2|^8.0"
  8104. },
  8105. "conflict": {
  8106. "phpstan/phpstan-shim": "*"
  8107. },
  8108. "bin": [
  8109. "phpstan",
  8110. "phpstan.phar"
  8111. ],
  8112. "type": "library",
  8113. "autoload": {
  8114. "files": [
  8115. "bootstrap.php"
  8116. ]
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "description": "PHPStan - PHP Static Analysis Tool",
  8123. "keywords": [
  8124. "dev",
  8125. "static analysis"
  8126. ],
  8127. "support": {
  8128. "docs": "https://phpstan.org/user-guide/getting-started",
  8129. "forum": "https://github.com/phpstan/phpstan/discussions",
  8130. "issues": "https://github.com/phpstan/phpstan/issues",
  8131. "security": "https://github.com/phpstan/phpstan/security/policy",
  8132. "source": "https://github.com/phpstan/phpstan-src"
  8133. },
  8134. "funding": [
  8135. {
  8136. "url": "https://github.com/ondrejmirtes",
  8137. "type": "github"
  8138. },
  8139. {
  8140. "url": "https://github.com/phpstan",
  8141. "type": "github"
  8142. }
  8143. ],
  8144. "time": "2024-05-31T13:53:37+00:00"
  8145. },
  8146. {
  8147. "name": "phpunit/php-code-coverage",
  8148. "version": "10.1.14",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8152. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8157. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "ext-dom": "*",
  8162. "ext-libxml": "*",
  8163. "ext-xmlwriter": "*",
  8164. "nikic/php-parser": "^4.18 || ^5.0",
  8165. "php": ">=8.1",
  8166. "phpunit/php-file-iterator": "^4.0",
  8167. "phpunit/php-text-template": "^3.0",
  8168. "sebastian/code-unit-reverse-lookup": "^3.0",
  8169. "sebastian/complexity": "^3.0",
  8170. "sebastian/environment": "^6.0",
  8171. "sebastian/lines-of-code": "^2.0",
  8172. "sebastian/version": "^4.0",
  8173. "theseer/tokenizer": "^1.2.0"
  8174. },
  8175. "require-dev": {
  8176. "phpunit/phpunit": "^10.1"
  8177. },
  8178. "suggest": {
  8179. "ext-pcov": "PHP extension that provides line coverage",
  8180. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "branch-alias": {
  8185. "dev-main": "10.1-dev"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "classmap": [
  8190. "src/"
  8191. ]
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "BSD-3-Clause"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Sebastian Bergmann",
  8200. "email": "sebastian@phpunit.de",
  8201. "role": "lead"
  8202. }
  8203. ],
  8204. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8205. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8206. "keywords": [
  8207. "coverage",
  8208. "testing",
  8209. "xunit"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8213. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8214. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8215. },
  8216. "funding": [
  8217. {
  8218. "url": "https://github.com/sebastianbergmann",
  8219. "type": "github"
  8220. }
  8221. ],
  8222. "time": "2024-03-12T15:33:41+00:00"
  8223. },
  8224. {
  8225. "name": "phpunit/php-file-iterator",
  8226. "version": "4.1.0",
  8227. "source": {
  8228. "type": "git",
  8229. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8230. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8231. },
  8232. "dist": {
  8233. "type": "zip",
  8234. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8235. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8236. "shasum": ""
  8237. },
  8238. "require": {
  8239. "php": ">=8.1"
  8240. },
  8241. "require-dev": {
  8242. "phpunit/phpunit": "^10.0"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-main": "4.0-dev"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "classmap": [
  8252. "src/"
  8253. ]
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "BSD-3-Clause"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Sebastian Bergmann",
  8262. "email": "sebastian@phpunit.de",
  8263. "role": "lead"
  8264. }
  8265. ],
  8266. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8267. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8268. "keywords": [
  8269. "filesystem",
  8270. "iterator"
  8271. ],
  8272. "support": {
  8273. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8274. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8275. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8276. },
  8277. "funding": [
  8278. {
  8279. "url": "https://github.com/sebastianbergmann",
  8280. "type": "github"
  8281. }
  8282. ],
  8283. "time": "2023-08-31T06:24:48+00:00"
  8284. },
  8285. {
  8286. "name": "phpunit/php-invoker",
  8287. "version": "4.0.0",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8291. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8296. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "php": ">=8.1"
  8301. },
  8302. "require-dev": {
  8303. "ext-pcntl": "*",
  8304. "phpunit/phpunit": "^10.0"
  8305. },
  8306. "suggest": {
  8307. "ext-pcntl": "*"
  8308. },
  8309. "type": "library",
  8310. "extra": {
  8311. "branch-alias": {
  8312. "dev-main": "4.0-dev"
  8313. }
  8314. },
  8315. "autoload": {
  8316. "classmap": [
  8317. "src/"
  8318. ]
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "BSD-3-Clause"
  8323. ],
  8324. "authors": [
  8325. {
  8326. "name": "Sebastian Bergmann",
  8327. "email": "sebastian@phpunit.de",
  8328. "role": "lead"
  8329. }
  8330. ],
  8331. "description": "Invoke callables with a timeout",
  8332. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8333. "keywords": [
  8334. "process"
  8335. ],
  8336. "support": {
  8337. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8338. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8339. },
  8340. "funding": [
  8341. {
  8342. "url": "https://github.com/sebastianbergmann",
  8343. "type": "github"
  8344. }
  8345. ],
  8346. "time": "2023-02-03T06:56:09+00:00"
  8347. },
  8348. {
  8349. "name": "phpunit/php-text-template",
  8350. "version": "3.0.1",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8354. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8359. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "php": ">=8.1"
  8364. },
  8365. "require-dev": {
  8366. "phpunit/phpunit": "^10.0"
  8367. },
  8368. "type": "library",
  8369. "extra": {
  8370. "branch-alias": {
  8371. "dev-main": "3.0-dev"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "classmap": [
  8376. "src/"
  8377. ]
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "BSD-3-Clause"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Sebastian Bergmann",
  8386. "email": "sebastian@phpunit.de",
  8387. "role": "lead"
  8388. }
  8389. ],
  8390. "description": "Simple template engine.",
  8391. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8392. "keywords": [
  8393. "template"
  8394. ],
  8395. "support": {
  8396. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8397. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8398. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8399. },
  8400. "funding": [
  8401. {
  8402. "url": "https://github.com/sebastianbergmann",
  8403. "type": "github"
  8404. }
  8405. ],
  8406. "time": "2023-08-31T14:07:24+00:00"
  8407. },
  8408. {
  8409. "name": "phpunit/php-timer",
  8410. "version": "6.0.0",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8414. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8419. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8420. "shasum": ""
  8421. },
  8422. "require": {
  8423. "php": ">=8.1"
  8424. },
  8425. "require-dev": {
  8426. "phpunit/phpunit": "^10.0"
  8427. },
  8428. "type": "library",
  8429. "extra": {
  8430. "branch-alias": {
  8431. "dev-main": "6.0-dev"
  8432. }
  8433. },
  8434. "autoload": {
  8435. "classmap": [
  8436. "src/"
  8437. ]
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "BSD-3-Clause"
  8442. ],
  8443. "authors": [
  8444. {
  8445. "name": "Sebastian Bergmann",
  8446. "email": "sebastian@phpunit.de",
  8447. "role": "lead"
  8448. }
  8449. ],
  8450. "description": "Utility class for timing",
  8451. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8452. "keywords": [
  8453. "timer"
  8454. ],
  8455. "support": {
  8456. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8457. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8458. },
  8459. "funding": [
  8460. {
  8461. "url": "https://github.com/sebastianbergmann",
  8462. "type": "github"
  8463. }
  8464. ],
  8465. "time": "2023-02-03T06:57:52+00:00"
  8466. },
  8467. {
  8468. "name": "phpunit/phpunit",
  8469. "version": "10.5.20",
  8470. "source": {
  8471. "type": "git",
  8472. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8473. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8474. },
  8475. "dist": {
  8476. "type": "zip",
  8477. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8478. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8479. "shasum": ""
  8480. },
  8481. "require": {
  8482. "ext-dom": "*",
  8483. "ext-json": "*",
  8484. "ext-libxml": "*",
  8485. "ext-mbstring": "*",
  8486. "ext-xml": "*",
  8487. "ext-xmlwriter": "*",
  8488. "myclabs/deep-copy": "^1.10.1",
  8489. "phar-io/manifest": "^2.0.3",
  8490. "phar-io/version": "^3.0.2",
  8491. "php": ">=8.1",
  8492. "phpunit/php-code-coverage": "^10.1.5",
  8493. "phpunit/php-file-iterator": "^4.0",
  8494. "phpunit/php-invoker": "^4.0",
  8495. "phpunit/php-text-template": "^3.0",
  8496. "phpunit/php-timer": "^6.0",
  8497. "sebastian/cli-parser": "^2.0",
  8498. "sebastian/code-unit": "^2.0",
  8499. "sebastian/comparator": "^5.0",
  8500. "sebastian/diff": "^5.0",
  8501. "sebastian/environment": "^6.0",
  8502. "sebastian/exporter": "^5.1",
  8503. "sebastian/global-state": "^6.0.1",
  8504. "sebastian/object-enumerator": "^5.0",
  8505. "sebastian/recursion-context": "^5.0",
  8506. "sebastian/type": "^4.0",
  8507. "sebastian/version": "^4.0"
  8508. },
  8509. "suggest": {
  8510. "ext-soap": "To be able to generate mocks based on WSDL files"
  8511. },
  8512. "bin": [
  8513. "phpunit"
  8514. ],
  8515. "type": "library",
  8516. "extra": {
  8517. "branch-alias": {
  8518. "dev-main": "10.5-dev"
  8519. }
  8520. },
  8521. "autoload": {
  8522. "files": [
  8523. "src/Framework/Assert/Functions.php"
  8524. ],
  8525. "classmap": [
  8526. "src/"
  8527. ]
  8528. },
  8529. "notification-url": "https://packagist.org/downloads/",
  8530. "license": [
  8531. "BSD-3-Clause"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Sebastian Bergmann",
  8536. "email": "sebastian@phpunit.de",
  8537. "role": "lead"
  8538. }
  8539. ],
  8540. "description": "The PHP Unit Testing framework.",
  8541. "homepage": "https://phpunit.de/",
  8542. "keywords": [
  8543. "phpunit",
  8544. "testing",
  8545. "xunit"
  8546. ],
  8547. "support": {
  8548. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8549. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8550. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8551. },
  8552. "funding": [
  8553. {
  8554. "url": "https://phpunit.de/sponsors.html",
  8555. "type": "custom"
  8556. },
  8557. {
  8558. "url": "https://github.com/sebastianbergmann",
  8559. "type": "github"
  8560. },
  8561. {
  8562. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8563. "type": "tidelift"
  8564. }
  8565. ],
  8566. "time": "2024-04-24T06:32:35+00:00"
  8567. },
  8568. {
  8569. "name": "react/cache",
  8570. "version": "v1.2.0",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/reactphp/cache.git",
  8574. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8579. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8580. "shasum": ""
  8581. },
  8582. "require": {
  8583. "php": ">=5.3.0",
  8584. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8585. },
  8586. "require-dev": {
  8587. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8588. },
  8589. "type": "library",
  8590. "autoload": {
  8591. "psr-4": {
  8592. "React\\Cache\\": "src/"
  8593. }
  8594. },
  8595. "notification-url": "https://packagist.org/downloads/",
  8596. "license": [
  8597. "MIT"
  8598. ],
  8599. "authors": [
  8600. {
  8601. "name": "Christian Lück",
  8602. "email": "christian@clue.engineering",
  8603. "homepage": "https://clue.engineering/"
  8604. },
  8605. {
  8606. "name": "Cees-Jan Kiewiet",
  8607. "email": "reactphp@ceesjankiewiet.nl",
  8608. "homepage": "https://wyrihaximus.net/"
  8609. },
  8610. {
  8611. "name": "Jan Sorgalla",
  8612. "email": "jsorgalla@gmail.com",
  8613. "homepage": "https://sorgalla.com/"
  8614. },
  8615. {
  8616. "name": "Chris Boden",
  8617. "email": "cboden@gmail.com",
  8618. "homepage": "https://cboden.dev/"
  8619. }
  8620. ],
  8621. "description": "Async, Promise-based cache interface for ReactPHP",
  8622. "keywords": [
  8623. "cache",
  8624. "caching",
  8625. "promise",
  8626. "reactphp"
  8627. ],
  8628. "support": {
  8629. "issues": "https://github.com/reactphp/cache/issues",
  8630. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8631. },
  8632. "funding": [
  8633. {
  8634. "url": "https://opencollective.com/reactphp",
  8635. "type": "open_collective"
  8636. }
  8637. ],
  8638. "time": "2022-11-30T15:59:55+00:00"
  8639. },
  8640. {
  8641. "name": "react/child-process",
  8642. "version": "v0.6.5",
  8643. "source": {
  8644. "type": "git",
  8645. "url": "https://github.com/reactphp/child-process.git",
  8646. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8647. },
  8648. "dist": {
  8649. "type": "zip",
  8650. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8651. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8652. "shasum": ""
  8653. },
  8654. "require": {
  8655. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8656. "php": ">=5.3.0",
  8657. "react/event-loop": "^1.2",
  8658. "react/stream": "^1.2"
  8659. },
  8660. "require-dev": {
  8661. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8662. "react/socket": "^1.8",
  8663. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8664. },
  8665. "type": "library",
  8666. "autoload": {
  8667. "psr-4": {
  8668. "React\\ChildProcess\\": "src"
  8669. }
  8670. },
  8671. "notification-url": "https://packagist.org/downloads/",
  8672. "license": [
  8673. "MIT"
  8674. ],
  8675. "authors": [
  8676. {
  8677. "name": "Christian Lück",
  8678. "email": "christian@clue.engineering",
  8679. "homepage": "https://clue.engineering/"
  8680. },
  8681. {
  8682. "name": "Cees-Jan Kiewiet",
  8683. "email": "reactphp@ceesjankiewiet.nl",
  8684. "homepage": "https://wyrihaximus.net/"
  8685. },
  8686. {
  8687. "name": "Jan Sorgalla",
  8688. "email": "jsorgalla@gmail.com",
  8689. "homepage": "https://sorgalla.com/"
  8690. },
  8691. {
  8692. "name": "Chris Boden",
  8693. "email": "cboden@gmail.com",
  8694. "homepage": "https://cboden.dev/"
  8695. }
  8696. ],
  8697. "description": "Event-driven library for executing child processes with ReactPHP.",
  8698. "keywords": [
  8699. "event-driven",
  8700. "process",
  8701. "reactphp"
  8702. ],
  8703. "support": {
  8704. "issues": "https://github.com/reactphp/child-process/issues",
  8705. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8706. },
  8707. "funding": [
  8708. {
  8709. "url": "https://github.com/WyriHaximus",
  8710. "type": "github"
  8711. },
  8712. {
  8713. "url": "https://github.com/clue",
  8714. "type": "github"
  8715. }
  8716. ],
  8717. "time": "2022-09-16T13:41:56+00:00"
  8718. },
  8719. {
  8720. "name": "react/dns",
  8721. "version": "v1.12.0",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/reactphp/dns.git",
  8725. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8730. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "php": ">=5.3.0",
  8735. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8736. "react/event-loop": "^1.2",
  8737. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8738. },
  8739. "require-dev": {
  8740. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8741. "react/async": "^4 || ^3 || ^2",
  8742. "react/promise-timer": "^1.9"
  8743. },
  8744. "type": "library",
  8745. "autoload": {
  8746. "psr-4": {
  8747. "React\\Dns\\": "src/"
  8748. }
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "license": [
  8752. "MIT"
  8753. ],
  8754. "authors": [
  8755. {
  8756. "name": "Christian Lück",
  8757. "email": "christian@clue.engineering",
  8758. "homepage": "https://clue.engineering/"
  8759. },
  8760. {
  8761. "name": "Cees-Jan Kiewiet",
  8762. "email": "reactphp@ceesjankiewiet.nl",
  8763. "homepage": "https://wyrihaximus.net/"
  8764. },
  8765. {
  8766. "name": "Jan Sorgalla",
  8767. "email": "jsorgalla@gmail.com",
  8768. "homepage": "https://sorgalla.com/"
  8769. },
  8770. {
  8771. "name": "Chris Boden",
  8772. "email": "cboden@gmail.com",
  8773. "homepage": "https://cboden.dev/"
  8774. }
  8775. ],
  8776. "description": "Async DNS resolver for ReactPHP",
  8777. "keywords": [
  8778. "async",
  8779. "dns",
  8780. "dns-resolver",
  8781. "reactphp"
  8782. ],
  8783. "support": {
  8784. "issues": "https://github.com/reactphp/dns/issues",
  8785. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8786. },
  8787. "funding": [
  8788. {
  8789. "url": "https://opencollective.com/reactphp",
  8790. "type": "open_collective"
  8791. }
  8792. ],
  8793. "time": "2023-11-29T12:41:06+00:00"
  8794. },
  8795. {
  8796. "name": "react/event-loop",
  8797. "version": "v1.5.0",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/reactphp/event-loop.git",
  8801. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8806. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8807. "shasum": ""
  8808. },
  8809. "require": {
  8810. "php": ">=5.3.0"
  8811. },
  8812. "require-dev": {
  8813. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8814. },
  8815. "suggest": {
  8816. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8817. },
  8818. "type": "library",
  8819. "autoload": {
  8820. "psr-4": {
  8821. "React\\EventLoop\\": "src/"
  8822. }
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Christian Lück",
  8831. "email": "christian@clue.engineering",
  8832. "homepage": "https://clue.engineering/"
  8833. },
  8834. {
  8835. "name": "Cees-Jan Kiewiet",
  8836. "email": "reactphp@ceesjankiewiet.nl",
  8837. "homepage": "https://wyrihaximus.net/"
  8838. },
  8839. {
  8840. "name": "Jan Sorgalla",
  8841. "email": "jsorgalla@gmail.com",
  8842. "homepage": "https://sorgalla.com/"
  8843. },
  8844. {
  8845. "name": "Chris Boden",
  8846. "email": "cboden@gmail.com",
  8847. "homepage": "https://cboden.dev/"
  8848. }
  8849. ],
  8850. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8851. "keywords": [
  8852. "asynchronous",
  8853. "event-loop"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/reactphp/event-loop/issues",
  8857. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://opencollective.com/reactphp",
  8862. "type": "open_collective"
  8863. }
  8864. ],
  8865. "time": "2023-11-13T13:48:05+00:00"
  8866. },
  8867. {
  8868. "name": "react/promise",
  8869. "version": "v3.2.0",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/reactphp/promise.git",
  8873. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8878. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "php": ">=7.1.0"
  8883. },
  8884. "require-dev": {
  8885. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8886. "phpunit/phpunit": "^9.6 || ^7.5"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "files": [
  8891. "src/functions_include.php"
  8892. ],
  8893. "psr-4": {
  8894. "React\\Promise\\": "src/"
  8895. }
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Jan Sorgalla",
  8904. "email": "jsorgalla@gmail.com",
  8905. "homepage": "https://sorgalla.com/"
  8906. },
  8907. {
  8908. "name": "Christian Lück",
  8909. "email": "christian@clue.engineering",
  8910. "homepage": "https://clue.engineering/"
  8911. },
  8912. {
  8913. "name": "Cees-Jan Kiewiet",
  8914. "email": "reactphp@ceesjankiewiet.nl",
  8915. "homepage": "https://wyrihaximus.net/"
  8916. },
  8917. {
  8918. "name": "Chris Boden",
  8919. "email": "cboden@gmail.com",
  8920. "homepage": "https://cboden.dev/"
  8921. }
  8922. ],
  8923. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8924. "keywords": [
  8925. "promise",
  8926. "promises"
  8927. ],
  8928. "support": {
  8929. "issues": "https://github.com/reactphp/promise/issues",
  8930. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8931. },
  8932. "funding": [
  8933. {
  8934. "url": "https://opencollective.com/reactphp",
  8935. "type": "open_collective"
  8936. }
  8937. ],
  8938. "time": "2024-05-24T10:39:05+00:00"
  8939. },
  8940. {
  8941. "name": "react/socket",
  8942. "version": "v1.15.0",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/reactphp/socket.git",
  8946. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8951. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8952. "shasum": ""
  8953. },
  8954. "require": {
  8955. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8956. "php": ">=5.3.0",
  8957. "react/dns": "^1.11",
  8958. "react/event-loop": "^1.2",
  8959. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8960. "react/stream": "^1.2"
  8961. },
  8962. "require-dev": {
  8963. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8964. "react/async": "^4 || ^3 || ^2",
  8965. "react/promise-stream": "^1.4",
  8966. "react/promise-timer": "^1.10"
  8967. },
  8968. "type": "library",
  8969. "autoload": {
  8970. "psr-4": {
  8971. "React\\Socket\\": "src/"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Christian Lück",
  8981. "email": "christian@clue.engineering",
  8982. "homepage": "https://clue.engineering/"
  8983. },
  8984. {
  8985. "name": "Cees-Jan Kiewiet",
  8986. "email": "reactphp@ceesjankiewiet.nl",
  8987. "homepage": "https://wyrihaximus.net/"
  8988. },
  8989. {
  8990. "name": "Jan Sorgalla",
  8991. "email": "jsorgalla@gmail.com",
  8992. "homepage": "https://sorgalla.com/"
  8993. },
  8994. {
  8995. "name": "Chris Boden",
  8996. "email": "cboden@gmail.com",
  8997. "homepage": "https://cboden.dev/"
  8998. }
  8999. ],
  9000. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9001. "keywords": [
  9002. "Connection",
  9003. "Socket",
  9004. "async",
  9005. "reactphp",
  9006. "stream"
  9007. ],
  9008. "support": {
  9009. "issues": "https://github.com/reactphp/socket/issues",
  9010. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://opencollective.com/reactphp",
  9015. "type": "open_collective"
  9016. }
  9017. ],
  9018. "time": "2023-12-15T11:02:10+00:00"
  9019. },
  9020. {
  9021. "name": "react/stream",
  9022. "version": "v1.3.0",
  9023. "source": {
  9024. "type": "git",
  9025. "url": "https://github.com/reactphp/stream.git",
  9026. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9027. },
  9028. "dist": {
  9029. "type": "zip",
  9030. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9031. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9032. "shasum": ""
  9033. },
  9034. "require": {
  9035. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9036. "php": ">=5.3.8",
  9037. "react/event-loop": "^1.2"
  9038. },
  9039. "require-dev": {
  9040. "clue/stream-filter": "~1.2",
  9041. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9042. },
  9043. "type": "library",
  9044. "autoload": {
  9045. "psr-4": {
  9046. "React\\Stream\\": "src/"
  9047. }
  9048. },
  9049. "notification-url": "https://packagist.org/downloads/",
  9050. "license": [
  9051. "MIT"
  9052. ],
  9053. "authors": [
  9054. {
  9055. "name": "Christian Lück",
  9056. "email": "christian@clue.engineering",
  9057. "homepage": "https://clue.engineering/"
  9058. },
  9059. {
  9060. "name": "Cees-Jan Kiewiet",
  9061. "email": "reactphp@ceesjankiewiet.nl",
  9062. "homepage": "https://wyrihaximus.net/"
  9063. },
  9064. {
  9065. "name": "Jan Sorgalla",
  9066. "email": "jsorgalla@gmail.com",
  9067. "homepage": "https://sorgalla.com/"
  9068. },
  9069. {
  9070. "name": "Chris Boden",
  9071. "email": "cboden@gmail.com",
  9072. "homepage": "https://cboden.dev/"
  9073. }
  9074. ],
  9075. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9076. "keywords": [
  9077. "event-driven",
  9078. "io",
  9079. "non-blocking",
  9080. "pipe",
  9081. "reactphp",
  9082. "readable",
  9083. "stream",
  9084. "writable"
  9085. ],
  9086. "support": {
  9087. "issues": "https://github.com/reactphp/stream/issues",
  9088. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9089. },
  9090. "funding": [
  9091. {
  9092. "url": "https://opencollective.com/reactphp",
  9093. "type": "open_collective"
  9094. }
  9095. ],
  9096. "time": "2023-06-16T10:52:11+00:00"
  9097. },
  9098. {
  9099. "name": "sebastian/cli-parser",
  9100. "version": "2.0.1",
  9101. "source": {
  9102. "type": "git",
  9103. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9104. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9105. },
  9106. "dist": {
  9107. "type": "zip",
  9108. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9109. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9110. "shasum": ""
  9111. },
  9112. "require": {
  9113. "php": ">=8.1"
  9114. },
  9115. "require-dev": {
  9116. "phpunit/phpunit": "^10.0"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-main": "2.0-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "Library for parsing CLI options",
  9141. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9142. "support": {
  9143. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9144. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9145. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9146. },
  9147. "funding": [
  9148. {
  9149. "url": "https://github.com/sebastianbergmann",
  9150. "type": "github"
  9151. }
  9152. ],
  9153. "time": "2024-03-02T07:12:49+00:00"
  9154. },
  9155. {
  9156. "name": "sebastian/code-unit",
  9157. "version": "2.0.0",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9161. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9166. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": ">=8.1"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^10.0"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-main": "2.0-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "classmap": [
  9183. "src/"
  9184. ]
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "BSD-3-Clause"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Sebastian Bergmann",
  9193. "email": "sebastian@phpunit.de",
  9194. "role": "lead"
  9195. }
  9196. ],
  9197. "description": "Collection of value objects that represent the PHP code units",
  9198. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9199. "support": {
  9200. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9201. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9202. },
  9203. "funding": [
  9204. {
  9205. "url": "https://github.com/sebastianbergmann",
  9206. "type": "github"
  9207. }
  9208. ],
  9209. "time": "2023-02-03T06:58:43+00:00"
  9210. },
  9211. {
  9212. "name": "sebastian/code-unit-reverse-lookup",
  9213. "version": "3.0.0",
  9214. "source": {
  9215. "type": "git",
  9216. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9217. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9218. },
  9219. "dist": {
  9220. "type": "zip",
  9221. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9222. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9223. "shasum": ""
  9224. },
  9225. "require": {
  9226. "php": ">=8.1"
  9227. },
  9228. "require-dev": {
  9229. "phpunit/phpunit": "^10.0"
  9230. },
  9231. "type": "library",
  9232. "extra": {
  9233. "branch-alias": {
  9234. "dev-main": "3.0-dev"
  9235. }
  9236. },
  9237. "autoload": {
  9238. "classmap": [
  9239. "src/"
  9240. ]
  9241. },
  9242. "notification-url": "https://packagist.org/downloads/",
  9243. "license": [
  9244. "BSD-3-Clause"
  9245. ],
  9246. "authors": [
  9247. {
  9248. "name": "Sebastian Bergmann",
  9249. "email": "sebastian@phpunit.de"
  9250. }
  9251. ],
  9252. "description": "Looks up which function or method a line of code belongs to",
  9253. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9254. "support": {
  9255. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9256. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9257. },
  9258. "funding": [
  9259. {
  9260. "url": "https://github.com/sebastianbergmann",
  9261. "type": "github"
  9262. }
  9263. ],
  9264. "time": "2023-02-03T06:59:15+00:00"
  9265. },
  9266. {
  9267. "name": "sebastian/comparator",
  9268. "version": "5.0.1",
  9269. "source": {
  9270. "type": "git",
  9271. "url": "https://github.com/sebastianbergmann/comparator.git",
  9272. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9273. },
  9274. "dist": {
  9275. "type": "zip",
  9276. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9277. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9278. "shasum": ""
  9279. },
  9280. "require": {
  9281. "ext-dom": "*",
  9282. "ext-mbstring": "*",
  9283. "php": ">=8.1",
  9284. "sebastian/diff": "^5.0",
  9285. "sebastian/exporter": "^5.0"
  9286. },
  9287. "require-dev": {
  9288. "phpunit/phpunit": "^10.3"
  9289. },
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-main": "5.0-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "classmap": [
  9298. "src/"
  9299. ]
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "BSD-3-Clause"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Sebastian Bergmann",
  9308. "email": "sebastian@phpunit.de"
  9309. },
  9310. {
  9311. "name": "Jeff Welch",
  9312. "email": "whatthejeff@gmail.com"
  9313. },
  9314. {
  9315. "name": "Volker Dusch",
  9316. "email": "github@wallbash.com"
  9317. },
  9318. {
  9319. "name": "Bernhard Schussek",
  9320. "email": "bschussek@2bepublished.at"
  9321. }
  9322. ],
  9323. "description": "Provides the functionality to compare PHP values for equality",
  9324. "homepage": "https://github.com/sebastianbergmann/comparator",
  9325. "keywords": [
  9326. "comparator",
  9327. "compare",
  9328. "equality"
  9329. ],
  9330. "support": {
  9331. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9332. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9333. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://github.com/sebastianbergmann",
  9338. "type": "github"
  9339. }
  9340. ],
  9341. "time": "2023-08-14T13:18:12+00:00"
  9342. },
  9343. {
  9344. "name": "sebastian/complexity",
  9345. "version": "3.2.0",
  9346. "source": {
  9347. "type": "git",
  9348. "url": "https://github.com/sebastianbergmann/complexity.git",
  9349. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9350. },
  9351. "dist": {
  9352. "type": "zip",
  9353. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9354. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9355. "shasum": ""
  9356. },
  9357. "require": {
  9358. "nikic/php-parser": "^4.18 || ^5.0",
  9359. "php": ">=8.1"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^10.0"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-main": "3.2-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Library for calculating the complexity of PHP code units",
  9387. "homepage": "https://github.com/sebastianbergmann/complexity",
  9388. "support": {
  9389. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9390. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9391. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9392. },
  9393. "funding": [
  9394. {
  9395. "url": "https://github.com/sebastianbergmann",
  9396. "type": "github"
  9397. }
  9398. ],
  9399. "time": "2023-12-21T08:37:17+00:00"
  9400. },
  9401. {
  9402. "name": "sebastian/diff",
  9403. "version": "5.1.1",
  9404. "source": {
  9405. "type": "git",
  9406. "url": "https://github.com/sebastianbergmann/diff.git",
  9407. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9408. },
  9409. "dist": {
  9410. "type": "zip",
  9411. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9412. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9413. "shasum": ""
  9414. },
  9415. "require": {
  9416. "php": ">=8.1"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/phpunit": "^10.0",
  9420. "symfony/process": "^6.4"
  9421. },
  9422. "type": "library",
  9423. "extra": {
  9424. "branch-alias": {
  9425. "dev-main": "5.1-dev"
  9426. }
  9427. },
  9428. "autoload": {
  9429. "classmap": [
  9430. "src/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "BSD-3-Clause"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Sebastian Bergmann",
  9440. "email": "sebastian@phpunit.de"
  9441. },
  9442. {
  9443. "name": "Kore Nordmann",
  9444. "email": "mail@kore-nordmann.de"
  9445. }
  9446. ],
  9447. "description": "Diff implementation",
  9448. "homepage": "https://github.com/sebastianbergmann/diff",
  9449. "keywords": [
  9450. "diff",
  9451. "udiff",
  9452. "unidiff",
  9453. "unified diff"
  9454. ],
  9455. "support": {
  9456. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9457. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9458. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://github.com/sebastianbergmann",
  9463. "type": "github"
  9464. }
  9465. ],
  9466. "time": "2024-03-02T07:15:17+00:00"
  9467. },
  9468. {
  9469. "name": "sebastian/environment",
  9470. "version": "6.1.0",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/sebastianbergmann/environment.git",
  9474. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9479. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9480. "shasum": ""
  9481. },
  9482. "require": {
  9483. "php": ">=8.1"
  9484. },
  9485. "require-dev": {
  9486. "phpunit/phpunit": "^10.0"
  9487. },
  9488. "suggest": {
  9489. "ext-posix": "*"
  9490. },
  9491. "type": "library",
  9492. "extra": {
  9493. "branch-alias": {
  9494. "dev-main": "6.1-dev"
  9495. }
  9496. },
  9497. "autoload": {
  9498. "classmap": [
  9499. "src/"
  9500. ]
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "BSD-3-Clause"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Sebastian Bergmann",
  9509. "email": "sebastian@phpunit.de"
  9510. }
  9511. ],
  9512. "description": "Provides functionality to handle HHVM/PHP environments",
  9513. "homepage": "https://github.com/sebastianbergmann/environment",
  9514. "keywords": [
  9515. "Xdebug",
  9516. "environment",
  9517. "hhvm"
  9518. ],
  9519. "support": {
  9520. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9521. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9522. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9523. },
  9524. "funding": [
  9525. {
  9526. "url": "https://github.com/sebastianbergmann",
  9527. "type": "github"
  9528. }
  9529. ],
  9530. "time": "2024-03-23T08:47:14+00:00"
  9531. },
  9532. {
  9533. "name": "sebastian/exporter",
  9534. "version": "5.1.2",
  9535. "source": {
  9536. "type": "git",
  9537. "url": "https://github.com/sebastianbergmann/exporter.git",
  9538. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9539. },
  9540. "dist": {
  9541. "type": "zip",
  9542. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9543. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9544. "shasum": ""
  9545. },
  9546. "require": {
  9547. "ext-mbstring": "*",
  9548. "php": ">=8.1",
  9549. "sebastian/recursion-context": "^5.0"
  9550. },
  9551. "require-dev": {
  9552. "phpunit/phpunit": "^10.0"
  9553. },
  9554. "type": "library",
  9555. "extra": {
  9556. "branch-alias": {
  9557. "dev-main": "5.1-dev"
  9558. }
  9559. },
  9560. "autoload": {
  9561. "classmap": [
  9562. "src/"
  9563. ]
  9564. },
  9565. "notification-url": "https://packagist.org/downloads/",
  9566. "license": [
  9567. "BSD-3-Clause"
  9568. ],
  9569. "authors": [
  9570. {
  9571. "name": "Sebastian Bergmann",
  9572. "email": "sebastian@phpunit.de"
  9573. },
  9574. {
  9575. "name": "Jeff Welch",
  9576. "email": "whatthejeff@gmail.com"
  9577. },
  9578. {
  9579. "name": "Volker Dusch",
  9580. "email": "github@wallbash.com"
  9581. },
  9582. {
  9583. "name": "Adam Harvey",
  9584. "email": "aharvey@php.net"
  9585. },
  9586. {
  9587. "name": "Bernhard Schussek",
  9588. "email": "bschussek@gmail.com"
  9589. }
  9590. ],
  9591. "description": "Provides the functionality to export PHP variables for visualization",
  9592. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9593. "keywords": [
  9594. "export",
  9595. "exporter"
  9596. ],
  9597. "support": {
  9598. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9599. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9600. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://github.com/sebastianbergmann",
  9605. "type": "github"
  9606. }
  9607. ],
  9608. "time": "2024-03-02T07:17:12+00:00"
  9609. },
  9610. {
  9611. "name": "sebastian/global-state",
  9612. "version": "6.0.2",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/sebastianbergmann/global-state.git",
  9616. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9621. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9622. "shasum": ""
  9623. },
  9624. "require": {
  9625. "php": ">=8.1",
  9626. "sebastian/object-reflector": "^3.0",
  9627. "sebastian/recursion-context": "^5.0"
  9628. },
  9629. "require-dev": {
  9630. "ext-dom": "*",
  9631. "phpunit/phpunit": "^10.0"
  9632. },
  9633. "type": "library",
  9634. "extra": {
  9635. "branch-alias": {
  9636. "dev-main": "6.0-dev"
  9637. }
  9638. },
  9639. "autoload": {
  9640. "classmap": [
  9641. "src/"
  9642. ]
  9643. },
  9644. "notification-url": "https://packagist.org/downloads/",
  9645. "license": [
  9646. "BSD-3-Clause"
  9647. ],
  9648. "authors": [
  9649. {
  9650. "name": "Sebastian Bergmann",
  9651. "email": "sebastian@phpunit.de"
  9652. }
  9653. ],
  9654. "description": "Snapshotting of global state",
  9655. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9656. "keywords": [
  9657. "global state"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9661. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9662. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9663. },
  9664. "funding": [
  9665. {
  9666. "url": "https://github.com/sebastianbergmann",
  9667. "type": "github"
  9668. }
  9669. ],
  9670. "time": "2024-03-02T07:19:19+00:00"
  9671. },
  9672. {
  9673. "name": "sebastian/lines-of-code",
  9674. "version": "2.0.2",
  9675. "source": {
  9676. "type": "git",
  9677. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9678. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9679. },
  9680. "dist": {
  9681. "type": "zip",
  9682. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9683. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9684. "shasum": ""
  9685. },
  9686. "require": {
  9687. "nikic/php-parser": "^4.18 || ^5.0",
  9688. "php": ">=8.1"
  9689. },
  9690. "require-dev": {
  9691. "phpunit/phpunit": "^10.0"
  9692. },
  9693. "type": "library",
  9694. "extra": {
  9695. "branch-alias": {
  9696. "dev-main": "2.0-dev"
  9697. }
  9698. },
  9699. "autoload": {
  9700. "classmap": [
  9701. "src/"
  9702. ]
  9703. },
  9704. "notification-url": "https://packagist.org/downloads/",
  9705. "license": [
  9706. "BSD-3-Clause"
  9707. ],
  9708. "authors": [
  9709. {
  9710. "name": "Sebastian Bergmann",
  9711. "email": "sebastian@phpunit.de",
  9712. "role": "lead"
  9713. }
  9714. ],
  9715. "description": "Library for counting the lines of code in PHP source code",
  9716. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9717. "support": {
  9718. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9719. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9720. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9721. },
  9722. "funding": [
  9723. {
  9724. "url": "https://github.com/sebastianbergmann",
  9725. "type": "github"
  9726. }
  9727. ],
  9728. "time": "2023-12-21T08:38:20+00:00"
  9729. },
  9730. {
  9731. "name": "sebastian/object-enumerator",
  9732. "version": "5.0.0",
  9733. "source": {
  9734. "type": "git",
  9735. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9736. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9737. },
  9738. "dist": {
  9739. "type": "zip",
  9740. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9741. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9742. "shasum": ""
  9743. },
  9744. "require": {
  9745. "php": ">=8.1",
  9746. "sebastian/object-reflector": "^3.0",
  9747. "sebastian/recursion-context": "^5.0"
  9748. },
  9749. "require-dev": {
  9750. "phpunit/phpunit": "^10.0"
  9751. },
  9752. "type": "library",
  9753. "extra": {
  9754. "branch-alias": {
  9755. "dev-main": "5.0-dev"
  9756. }
  9757. },
  9758. "autoload": {
  9759. "classmap": [
  9760. "src/"
  9761. ]
  9762. },
  9763. "notification-url": "https://packagist.org/downloads/",
  9764. "license": [
  9765. "BSD-3-Clause"
  9766. ],
  9767. "authors": [
  9768. {
  9769. "name": "Sebastian Bergmann",
  9770. "email": "sebastian@phpunit.de"
  9771. }
  9772. ],
  9773. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9774. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9775. "support": {
  9776. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9777. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9778. },
  9779. "funding": [
  9780. {
  9781. "url": "https://github.com/sebastianbergmann",
  9782. "type": "github"
  9783. }
  9784. ],
  9785. "time": "2023-02-03T07:08:32+00:00"
  9786. },
  9787. {
  9788. "name": "sebastian/object-reflector",
  9789. "version": "3.0.0",
  9790. "source": {
  9791. "type": "git",
  9792. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9793. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9794. },
  9795. "dist": {
  9796. "type": "zip",
  9797. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9798. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9799. "shasum": ""
  9800. },
  9801. "require": {
  9802. "php": ">=8.1"
  9803. },
  9804. "require-dev": {
  9805. "phpunit/phpunit": "^10.0"
  9806. },
  9807. "type": "library",
  9808. "extra": {
  9809. "branch-alias": {
  9810. "dev-main": "3.0-dev"
  9811. }
  9812. },
  9813. "autoload": {
  9814. "classmap": [
  9815. "src/"
  9816. ]
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "BSD-3-Clause"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Sebastian Bergmann",
  9825. "email": "sebastian@phpunit.de"
  9826. }
  9827. ],
  9828. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9829. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9830. "support": {
  9831. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9832. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9833. },
  9834. "funding": [
  9835. {
  9836. "url": "https://github.com/sebastianbergmann",
  9837. "type": "github"
  9838. }
  9839. ],
  9840. "time": "2023-02-03T07:06:18+00:00"
  9841. },
  9842. {
  9843. "name": "sebastian/recursion-context",
  9844. "version": "5.0.0",
  9845. "source": {
  9846. "type": "git",
  9847. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9848. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9849. },
  9850. "dist": {
  9851. "type": "zip",
  9852. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9853. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9854. "shasum": ""
  9855. },
  9856. "require": {
  9857. "php": ">=8.1"
  9858. },
  9859. "require-dev": {
  9860. "phpunit/phpunit": "^10.0"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-main": "5.0-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "classmap": [
  9870. "src/"
  9871. ]
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Sebastian Bergmann",
  9880. "email": "sebastian@phpunit.de"
  9881. },
  9882. {
  9883. "name": "Jeff Welch",
  9884. "email": "whatthejeff@gmail.com"
  9885. },
  9886. {
  9887. "name": "Adam Harvey",
  9888. "email": "aharvey@php.net"
  9889. }
  9890. ],
  9891. "description": "Provides functionality to recursively process PHP variables",
  9892. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9893. "support": {
  9894. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9895. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9896. },
  9897. "funding": [
  9898. {
  9899. "url": "https://github.com/sebastianbergmann",
  9900. "type": "github"
  9901. }
  9902. ],
  9903. "time": "2023-02-03T07:05:40+00:00"
  9904. },
  9905. {
  9906. "name": "sebastian/type",
  9907. "version": "4.0.0",
  9908. "source": {
  9909. "type": "git",
  9910. "url": "https://github.com/sebastianbergmann/type.git",
  9911. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9912. },
  9913. "dist": {
  9914. "type": "zip",
  9915. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9916. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9917. "shasum": ""
  9918. },
  9919. "require": {
  9920. "php": ">=8.1"
  9921. },
  9922. "require-dev": {
  9923. "phpunit/phpunit": "^10.0"
  9924. },
  9925. "type": "library",
  9926. "extra": {
  9927. "branch-alias": {
  9928. "dev-main": "4.0-dev"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "classmap": [
  9933. "src/"
  9934. ]
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "BSD-3-Clause"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Sebastian Bergmann",
  9943. "email": "sebastian@phpunit.de",
  9944. "role": "lead"
  9945. }
  9946. ],
  9947. "description": "Collection of value objects that represent the types of the PHP type system",
  9948. "homepage": "https://github.com/sebastianbergmann/type",
  9949. "support": {
  9950. "issues": "https://github.com/sebastianbergmann/type/issues",
  9951. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9952. },
  9953. "funding": [
  9954. {
  9955. "url": "https://github.com/sebastianbergmann",
  9956. "type": "github"
  9957. }
  9958. ],
  9959. "time": "2023-02-03T07:10:45+00:00"
  9960. },
  9961. {
  9962. "name": "sebastian/version",
  9963. "version": "4.0.1",
  9964. "source": {
  9965. "type": "git",
  9966. "url": "https://github.com/sebastianbergmann/version.git",
  9967. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9968. },
  9969. "dist": {
  9970. "type": "zip",
  9971. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9972. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9973. "shasum": ""
  9974. },
  9975. "require": {
  9976. "php": ">=8.1"
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-main": "4.0-dev"
  9982. }
  9983. },
  9984. "autoload": {
  9985. "classmap": [
  9986. "src/"
  9987. ]
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "BSD-3-Clause"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Sebastian Bergmann",
  9996. "email": "sebastian@phpunit.de",
  9997. "role": "lead"
  9998. }
  9999. ],
  10000. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10001. "homepage": "https://github.com/sebastianbergmann/version",
  10002. "support": {
  10003. "issues": "https://github.com/sebastianbergmann/version/issues",
  10004. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10005. },
  10006. "funding": [
  10007. {
  10008. "url": "https://github.com/sebastianbergmann",
  10009. "type": "github"
  10010. }
  10011. ],
  10012. "time": "2023-02-07T11:34:05+00:00"
  10013. },
  10014. {
  10015. "name": "swoole/ide-helper",
  10016. "version": "5.1.2",
  10017. "source": {
  10018. "type": "git",
  10019. "url": "https://github.com/swoole/ide-helper.git",
  10020. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10021. },
  10022. "dist": {
  10023. "type": "zip",
  10024. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10025. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10026. "shasum": ""
  10027. },
  10028. "type": "library",
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "Apache-2.0"
  10032. ],
  10033. "authors": [
  10034. {
  10035. "name": "Team Swoole",
  10036. "email": "team@swoole.com"
  10037. }
  10038. ],
  10039. "description": "IDE help files for Swoole.",
  10040. "support": {
  10041. "issues": "https://github.com/swoole/ide-helper/issues",
  10042. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10043. },
  10044. "time": "2024-02-01T22:28:11+00:00"
  10045. },
  10046. {
  10047. "name": "symfony/event-dispatcher",
  10048. "version": "v6.4.8",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/symfony/event-dispatcher.git",
  10052. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10057. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10058. "shasum": ""
  10059. },
  10060. "require": {
  10061. "php": ">=8.1",
  10062. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10063. },
  10064. "conflict": {
  10065. "symfony/dependency-injection": "<5.4",
  10066. "symfony/service-contracts": "<2.5"
  10067. },
  10068. "provide": {
  10069. "psr/event-dispatcher-implementation": "1.0",
  10070. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10071. },
  10072. "require-dev": {
  10073. "psr/log": "^1|^2|^3",
  10074. "symfony/config": "^5.4|^6.0|^7.0",
  10075. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10076. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10077. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10078. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10079. "symfony/service-contracts": "^2.5|^3",
  10080. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10081. },
  10082. "type": "library",
  10083. "autoload": {
  10084. "psr-4": {
  10085. "Symfony\\Component\\EventDispatcher\\": ""
  10086. },
  10087. "exclude-from-classmap": [
  10088. "/Tests/"
  10089. ]
  10090. },
  10091. "notification-url": "https://packagist.org/downloads/",
  10092. "license": [
  10093. "MIT"
  10094. ],
  10095. "authors": [
  10096. {
  10097. "name": "Fabien Potencier",
  10098. "email": "fabien@symfony.com"
  10099. },
  10100. {
  10101. "name": "Symfony Community",
  10102. "homepage": "https://symfony.com/contributors"
  10103. }
  10104. ],
  10105. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10106. "homepage": "https://symfony.com",
  10107. "support": {
  10108. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10109. },
  10110. "funding": [
  10111. {
  10112. "url": "https://symfony.com/sponsor",
  10113. "type": "custom"
  10114. },
  10115. {
  10116. "url": "https://github.com/fabpot",
  10117. "type": "github"
  10118. },
  10119. {
  10120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10121. "type": "tidelift"
  10122. }
  10123. ],
  10124. "time": "2024-05-31T14:49:08+00:00"
  10125. },
  10126. {
  10127. "name": "symfony/event-dispatcher-contracts",
  10128. "version": "v3.5.0",
  10129. "source": {
  10130. "type": "git",
  10131. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10132. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10133. },
  10134. "dist": {
  10135. "type": "zip",
  10136. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10137. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10138. "shasum": ""
  10139. },
  10140. "require": {
  10141. "php": ">=8.1",
  10142. "psr/event-dispatcher": "^1"
  10143. },
  10144. "type": "library",
  10145. "extra": {
  10146. "branch-alias": {
  10147. "dev-main": "3.5-dev"
  10148. },
  10149. "thanks": {
  10150. "name": "symfony/contracts",
  10151. "url": "https://github.com/symfony/contracts"
  10152. }
  10153. },
  10154. "autoload": {
  10155. "psr-4": {
  10156. "Symfony\\Contracts\\EventDispatcher\\": ""
  10157. }
  10158. },
  10159. "notification-url": "https://packagist.org/downloads/",
  10160. "license": [
  10161. "MIT"
  10162. ],
  10163. "authors": [
  10164. {
  10165. "name": "Nicolas Grekas",
  10166. "email": "p@tchwork.com"
  10167. },
  10168. {
  10169. "name": "Symfony Community",
  10170. "homepage": "https://symfony.com/contributors"
  10171. }
  10172. ],
  10173. "description": "Generic abstractions related to dispatching event",
  10174. "homepage": "https://symfony.com",
  10175. "keywords": [
  10176. "abstractions",
  10177. "contracts",
  10178. "decoupling",
  10179. "interfaces",
  10180. "interoperability",
  10181. "standards"
  10182. ],
  10183. "support": {
  10184. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10185. },
  10186. "funding": [
  10187. {
  10188. "url": "https://symfony.com/sponsor",
  10189. "type": "custom"
  10190. },
  10191. {
  10192. "url": "https://github.com/fabpot",
  10193. "type": "github"
  10194. },
  10195. {
  10196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10197. "type": "tidelift"
  10198. }
  10199. ],
  10200. "time": "2024-04-18T09:32:20+00:00"
  10201. },
  10202. {
  10203. "name": "symfony/filesystem",
  10204. "version": "v6.4.8",
  10205. "source": {
  10206. "type": "git",
  10207. "url": "https://github.com/symfony/filesystem.git",
  10208. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10209. },
  10210. "dist": {
  10211. "type": "zip",
  10212. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10213. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10214. "shasum": ""
  10215. },
  10216. "require": {
  10217. "php": ">=8.1",
  10218. "symfony/polyfill-ctype": "~1.8",
  10219. "symfony/polyfill-mbstring": "~1.8"
  10220. },
  10221. "require-dev": {
  10222. "symfony/process": "^5.4|^6.4|^7.0"
  10223. },
  10224. "type": "library",
  10225. "autoload": {
  10226. "psr-4": {
  10227. "Symfony\\Component\\Filesystem\\": ""
  10228. },
  10229. "exclude-from-classmap": [
  10230. "/Tests/"
  10231. ]
  10232. },
  10233. "notification-url": "https://packagist.org/downloads/",
  10234. "license": [
  10235. "MIT"
  10236. ],
  10237. "authors": [
  10238. {
  10239. "name": "Fabien Potencier",
  10240. "email": "fabien@symfony.com"
  10241. },
  10242. {
  10243. "name": "Symfony Community",
  10244. "homepage": "https://symfony.com/contributors"
  10245. }
  10246. ],
  10247. "description": "Provides basic utilities for the filesystem",
  10248. "homepage": "https://symfony.com",
  10249. "support": {
  10250. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://symfony.com/sponsor",
  10255. "type": "custom"
  10256. },
  10257. {
  10258. "url": "https://github.com/fabpot",
  10259. "type": "github"
  10260. },
  10261. {
  10262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10263. "type": "tidelift"
  10264. }
  10265. ],
  10266. "time": "2024-05-31T14:49:08+00:00"
  10267. },
  10268. {
  10269. "name": "symfony/http-foundation",
  10270. "version": "v6.4.8",
  10271. "source": {
  10272. "type": "git",
  10273. "url": "https://github.com/symfony/http-foundation.git",
  10274. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10275. },
  10276. "dist": {
  10277. "type": "zip",
  10278. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10279. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10280. "shasum": ""
  10281. },
  10282. "require": {
  10283. "php": ">=8.1",
  10284. "symfony/deprecation-contracts": "^2.5|^3",
  10285. "symfony/polyfill-mbstring": "~1.1",
  10286. "symfony/polyfill-php83": "^1.27"
  10287. },
  10288. "conflict": {
  10289. "symfony/cache": "<6.3"
  10290. },
  10291. "require-dev": {
  10292. "doctrine/dbal": "^2.13.1|^3|^4",
  10293. "predis/predis": "^1.1|^2.0",
  10294. "symfony/cache": "^6.3|^7.0",
  10295. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10296. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10297. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10298. "symfony/mime": "^5.4|^6.0|^7.0",
  10299. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10300. },
  10301. "type": "library",
  10302. "autoload": {
  10303. "psr-4": {
  10304. "Symfony\\Component\\HttpFoundation\\": ""
  10305. },
  10306. "exclude-from-classmap": [
  10307. "/Tests/"
  10308. ]
  10309. },
  10310. "notification-url": "https://packagist.org/downloads/",
  10311. "license": [
  10312. "MIT"
  10313. ],
  10314. "authors": [
  10315. {
  10316. "name": "Fabien Potencier",
  10317. "email": "fabien@symfony.com"
  10318. },
  10319. {
  10320. "name": "Symfony Community",
  10321. "homepage": "https://symfony.com/contributors"
  10322. }
  10323. ],
  10324. "description": "Defines an object-oriented layer for the HTTP specification",
  10325. "homepage": "https://symfony.com",
  10326. "support": {
  10327. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10328. },
  10329. "funding": [
  10330. {
  10331. "url": "https://symfony.com/sponsor",
  10332. "type": "custom"
  10333. },
  10334. {
  10335. "url": "https://github.com/fabpot",
  10336. "type": "github"
  10337. },
  10338. {
  10339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10340. "type": "tidelift"
  10341. }
  10342. ],
  10343. "time": "2024-05-31T14:49:08+00:00"
  10344. },
  10345. {
  10346. "name": "symfony/options-resolver",
  10347. "version": "v6.4.8",
  10348. "source": {
  10349. "type": "git",
  10350. "url": "https://github.com/symfony/options-resolver.git",
  10351. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10352. },
  10353. "dist": {
  10354. "type": "zip",
  10355. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10356. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10357. "shasum": ""
  10358. },
  10359. "require": {
  10360. "php": ">=8.1",
  10361. "symfony/deprecation-contracts": "^2.5|^3"
  10362. },
  10363. "type": "library",
  10364. "autoload": {
  10365. "psr-4": {
  10366. "Symfony\\Component\\OptionsResolver\\": ""
  10367. },
  10368. "exclude-from-classmap": [
  10369. "/Tests/"
  10370. ]
  10371. },
  10372. "notification-url": "https://packagist.org/downloads/",
  10373. "license": [
  10374. "MIT"
  10375. ],
  10376. "authors": [
  10377. {
  10378. "name": "Fabien Potencier",
  10379. "email": "fabien@symfony.com"
  10380. },
  10381. {
  10382. "name": "Symfony Community",
  10383. "homepage": "https://symfony.com/contributors"
  10384. }
  10385. ],
  10386. "description": "Provides an improved replacement for the array_replace PHP function",
  10387. "homepage": "https://symfony.com",
  10388. "keywords": [
  10389. "config",
  10390. "configuration",
  10391. "options"
  10392. ],
  10393. "support": {
  10394. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10395. },
  10396. "funding": [
  10397. {
  10398. "url": "https://symfony.com/sponsor",
  10399. "type": "custom"
  10400. },
  10401. {
  10402. "url": "https://github.com/fabpot",
  10403. "type": "github"
  10404. },
  10405. {
  10406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10407. "type": "tidelift"
  10408. }
  10409. ],
  10410. "time": "2024-05-31T14:49:08+00:00"
  10411. },
  10412. {
  10413. "name": "symfony/polyfill-php81",
  10414. "version": "v1.29.0",
  10415. "source": {
  10416. "type": "git",
  10417. "url": "https://github.com/symfony/polyfill-php81.git",
  10418. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10419. },
  10420. "dist": {
  10421. "type": "zip",
  10422. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10423. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10424. "shasum": ""
  10425. },
  10426. "require": {
  10427. "php": ">=7.1"
  10428. },
  10429. "type": "library",
  10430. "extra": {
  10431. "thanks": {
  10432. "name": "symfony/polyfill",
  10433. "url": "https://github.com/symfony/polyfill"
  10434. }
  10435. },
  10436. "autoload": {
  10437. "files": [
  10438. "bootstrap.php"
  10439. ],
  10440. "psr-4": {
  10441. "Symfony\\Polyfill\\Php81\\": ""
  10442. },
  10443. "classmap": [
  10444. "Resources/stubs"
  10445. ]
  10446. },
  10447. "notification-url": "https://packagist.org/downloads/",
  10448. "license": [
  10449. "MIT"
  10450. ],
  10451. "authors": [
  10452. {
  10453. "name": "Nicolas Grekas",
  10454. "email": "p@tchwork.com"
  10455. },
  10456. {
  10457. "name": "Symfony Community",
  10458. "homepage": "https://symfony.com/contributors"
  10459. }
  10460. ],
  10461. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10462. "homepage": "https://symfony.com",
  10463. "keywords": [
  10464. "compatibility",
  10465. "polyfill",
  10466. "portable",
  10467. "shim"
  10468. ],
  10469. "support": {
  10470. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10471. },
  10472. "funding": [
  10473. {
  10474. "url": "https://symfony.com/sponsor",
  10475. "type": "custom"
  10476. },
  10477. {
  10478. "url": "https://github.com/fabpot",
  10479. "type": "github"
  10480. },
  10481. {
  10482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10483. "type": "tidelift"
  10484. }
  10485. ],
  10486. "time": "2024-01-29T20:11:03+00:00"
  10487. },
  10488. {
  10489. "name": "symfony/polyfill-php83",
  10490. "version": "v1.29.0",
  10491. "source": {
  10492. "type": "git",
  10493. "url": "https://github.com/symfony/polyfill-php83.git",
  10494. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10495. },
  10496. "dist": {
  10497. "type": "zip",
  10498. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10499. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10500. "shasum": ""
  10501. },
  10502. "require": {
  10503. "php": ">=7.1",
  10504. "symfony/polyfill-php80": "^1.14"
  10505. },
  10506. "type": "library",
  10507. "extra": {
  10508. "thanks": {
  10509. "name": "symfony/polyfill",
  10510. "url": "https://github.com/symfony/polyfill"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "files": [
  10515. "bootstrap.php"
  10516. ],
  10517. "psr-4": {
  10518. "Symfony\\Polyfill\\Php83\\": ""
  10519. },
  10520. "classmap": [
  10521. "Resources/stubs"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "MIT"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Nicolas Grekas",
  10531. "email": "p@tchwork.com"
  10532. },
  10533. {
  10534. "name": "Symfony Community",
  10535. "homepage": "https://symfony.com/contributors"
  10536. }
  10537. ],
  10538. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10539. "homepage": "https://symfony.com",
  10540. "keywords": [
  10541. "compatibility",
  10542. "polyfill",
  10543. "portable",
  10544. "shim"
  10545. ],
  10546. "support": {
  10547. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10548. },
  10549. "funding": [
  10550. {
  10551. "url": "https://symfony.com/sponsor",
  10552. "type": "custom"
  10553. },
  10554. {
  10555. "url": "https://github.com/fabpot",
  10556. "type": "github"
  10557. },
  10558. {
  10559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10560. "type": "tidelift"
  10561. }
  10562. ],
  10563. "time": "2024-01-29T20:11:03+00:00"
  10564. },
  10565. {
  10566. "name": "symfony/process",
  10567. "version": "v6.4.8",
  10568. "source": {
  10569. "type": "git",
  10570. "url": "https://github.com/symfony/process.git",
  10571. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10572. },
  10573. "dist": {
  10574. "type": "zip",
  10575. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10576. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10577. "shasum": ""
  10578. },
  10579. "require": {
  10580. "php": ">=8.1"
  10581. },
  10582. "type": "library",
  10583. "autoload": {
  10584. "psr-4": {
  10585. "Symfony\\Component\\Process\\": ""
  10586. },
  10587. "exclude-from-classmap": [
  10588. "/Tests/"
  10589. ]
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "MIT"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "Fabien Potencier",
  10598. "email": "fabien@symfony.com"
  10599. },
  10600. {
  10601. "name": "Symfony Community",
  10602. "homepage": "https://symfony.com/contributors"
  10603. }
  10604. ],
  10605. "description": "Executes commands in sub-processes",
  10606. "homepage": "https://symfony.com",
  10607. "support": {
  10608. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10609. },
  10610. "funding": [
  10611. {
  10612. "url": "https://symfony.com/sponsor",
  10613. "type": "custom"
  10614. },
  10615. {
  10616. "url": "https://github.com/fabpot",
  10617. "type": "github"
  10618. },
  10619. {
  10620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10621. "type": "tidelift"
  10622. }
  10623. ],
  10624. "time": "2024-05-31T14:49:08+00:00"
  10625. },
  10626. {
  10627. "name": "symfony/stopwatch",
  10628. "version": "v6.4.8",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/symfony/stopwatch.git",
  10632. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10637. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=8.1",
  10642. "symfony/service-contracts": "^2.5|^3"
  10643. },
  10644. "type": "library",
  10645. "autoload": {
  10646. "psr-4": {
  10647. "Symfony\\Component\\Stopwatch\\": ""
  10648. },
  10649. "exclude-from-classmap": [
  10650. "/Tests/"
  10651. ]
  10652. },
  10653. "notification-url": "https://packagist.org/downloads/",
  10654. "license": [
  10655. "MIT"
  10656. ],
  10657. "authors": [
  10658. {
  10659. "name": "Fabien Potencier",
  10660. "email": "fabien@symfony.com"
  10661. },
  10662. {
  10663. "name": "Symfony Community",
  10664. "homepage": "https://symfony.com/contributors"
  10665. }
  10666. ],
  10667. "description": "Provides a way to profile code",
  10668. "homepage": "https://symfony.com",
  10669. "support": {
  10670. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10671. },
  10672. "funding": [
  10673. {
  10674. "url": "https://symfony.com/sponsor",
  10675. "type": "custom"
  10676. },
  10677. {
  10678. "url": "https://github.com/fabpot",
  10679. "type": "github"
  10680. },
  10681. {
  10682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10683. "type": "tidelift"
  10684. }
  10685. ],
  10686. "time": "2024-05-31T14:49:08+00:00"
  10687. },
  10688. {
  10689. "name": "theseer/tokenizer",
  10690. "version": "1.2.3",
  10691. "source": {
  10692. "type": "git",
  10693. "url": "https://github.com/theseer/tokenizer.git",
  10694. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10695. },
  10696. "dist": {
  10697. "type": "zip",
  10698. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10699. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10700. "shasum": ""
  10701. },
  10702. "require": {
  10703. "ext-dom": "*",
  10704. "ext-tokenizer": "*",
  10705. "ext-xmlwriter": "*",
  10706. "php": "^7.2 || ^8.0"
  10707. },
  10708. "type": "library",
  10709. "autoload": {
  10710. "classmap": [
  10711. "src/"
  10712. ]
  10713. },
  10714. "notification-url": "https://packagist.org/downloads/",
  10715. "license": [
  10716. "BSD-3-Clause"
  10717. ],
  10718. "authors": [
  10719. {
  10720. "name": "Arne Blankerts",
  10721. "email": "arne@blankerts.de",
  10722. "role": "Developer"
  10723. }
  10724. ],
  10725. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10726. "support": {
  10727. "issues": "https://github.com/theseer/tokenizer/issues",
  10728. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10729. },
  10730. "funding": [
  10731. {
  10732. "url": "https://github.com/theseer",
  10733. "type": "github"
  10734. }
  10735. ],
  10736. "time": "2024-03-03T12:36:25+00:00"
  10737. }
  10738. ],
  10739. "aliases": [],
  10740. "minimum-stability": "dev",
  10741. "stability-flags": [],
  10742. "prefer-stable": true,
  10743. "prefer-lowest": false,
  10744. "platform": {
  10745. "php": ">=8.1"
  10746. },
  10747. "platform-dev": [],
  10748. "plugin-api-version": "2.6.0"
  10749. }