composer.lock 429 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089
  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": "a5f35ff942b3fe4f147979a94a5ee5ee",
  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": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.4",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  224. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9 || ^12",
  232. "phpstan/phpstan": "1.4.10 || 2.0.3",
  233. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psr/log": "^1 || ^2 || ^3"
  236. },
  237. "suggest": {
  238. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Deprecations\\": "src"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  251. "homepage": "https://www.doctrine-project.org/",
  252. "support": {
  253. "issues": "https://github.com/doctrine/deprecations/issues",
  254. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  255. },
  256. "time": "2024-12-07T21:18:45+00:00"
  257. },
  258. {
  259. "name": "doctrine/inflector",
  260. "version": "2.0.10",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/inflector.git",
  264. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  269. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": "^7.2 || ^8.0"
  274. },
  275. "require-dev": {
  276. "doctrine/coding-standard": "^11.0",
  277. "phpstan/phpstan": "^1.8",
  278. "phpstan/phpstan-phpunit": "^1.1",
  279. "phpstan/phpstan-strict-rules": "^1.3",
  280. "phpunit/phpunit": "^8.5 || ^9.5",
  281. "vimeo/psalm": "^4.25 || ^5.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  317. "keywords": [
  318. "inflection",
  319. "inflector",
  320. "lowercase",
  321. "manipulation",
  322. "php",
  323. "plural",
  324. "singular",
  325. "strings",
  326. "uppercase",
  327. "words"
  328. ],
  329. "support": {
  330. "issues": "https://github.com/doctrine/inflector/issues",
  331. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://www.doctrine-project.org/sponsorship.html",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://www.patreon.com/phpdoctrine",
  340. "type": "patreon"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2024-02-18T20:23:39+00:00"
  348. },
  349. {
  350. "name": "doctrine/instantiator",
  351. "version": "1.5.0",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/instantiator.git",
  355. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  360. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^9 || ^11",
  368. "ext-pdo": "*",
  369. "ext-phar": "*",
  370. "phpbench/phpbench": "^0.16 || ^1",
  371. "phpstan/phpstan": "^1.4",
  372. "phpstan/phpstan-phpunit": "^1",
  373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  374. "vimeo/psalm": "^4.30 || ^5.4"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Marco Pivetta",
  389. "email": "ocramius@gmail.com",
  390. "homepage": "https://ocramius.github.io/"
  391. }
  392. ],
  393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  395. "keywords": [
  396. "constructor",
  397. "instantiate"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/instantiator/issues",
  401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-30T00:15:36+00:00"
  418. },
  419. {
  420. "name": "doctrine/lexer",
  421. "version": "2.1.1",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/doctrine/lexer.git",
  425. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  430. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "doctrine/deprecations": "^1.0",
  435. "php": "^7.1 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^9 || ^12",
  439. "phpstan/phpstan": "^1.3",
  440. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  441. "psalm/plugin-phpunit": "^0.18.3",
  442. "vimeo/psalm": "^4.11 || ^5.21"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Doctrine\\Common\\Lexer\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Guilherme Blanco",
  457. "email": "guilhermeblanco@gmail.com"
  458. },
  459. {
  460. "name": "Roman Borschel",
  461. "email": "roman@code-factory.org"
  462. },
  463. {
  464. "name": "Johannes Schmitt",
  465. "email": "schmittjoh@gmail.com"
  466. }
  467. ],
  468. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  469. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  470. "keywords": [
  471. "annotations",
  472. "docblock",
  473. "lexer",
  474. "parser",
  475. "php"
  476. ],
  477. "support": {
  478. "issues": "https://github.com/doctrine/lexer/issues",
  479. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  480. },
  481. "funding": [
  482. {
  483. "url": "https://www.doctrine-project.org/sponsorship.html",
  484. "type": "custom"
  485. },
  486. {
  487. "url": "https://www.patreon.com/phpdoctrine",
  488. "type": "patreon"
  489. },
  490. {
  491. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  492. "type": "tidelift"
  493. }
  494. ],
  495. "time": "2024-02-05T11:35:39+00:00"
  496. },
  497. {
  498. "name": "easyswoole/spl",
  499. "version": "2.1.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/easy-swoole/spl.git",
  503. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  508. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-json": "*",
  514. "ext-simplexml": "*",
  515. "php": ">=8.1.0"
  516. },
  517. "require-dev": {
  518. "easyswoole/phpunit": "^1.0",
  519. "easyswoole/swoole-ide-helper": "^1.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "EasySwoole\\Spl\\": "src/",
  525. "EasySwoole\\Spl\\Test\\": "test/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "authors": [
  533. {
  534. "name": "YF",
  535. "email": "291323003@qq.com"
  536. }
  537. ],
  538. "description": "php stander lib",
  539. "homepage": "https://www.easyswoole.com/",
  540. "keywords": [
  541. "async",
  542. "easyswoole",
  543. "framework",
  544. "swoole"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/easy-swoole/spl/issues",
  548. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  549. },
  550. "time": "2024-07-09T14:44:25+00:00"
  551. },
  552. {
  553. "name": "easyswoole/verifycode",
  554. "version": "3.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/easy-swoole/verify-code.git",
  558. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  563. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "easyswoole/spl": "^2.0",
  568. "ext-gd": "*",
  569. "php": ">=8.1"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "EasySwoole\\VerifyCode\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. },
  586. {
  587. "name": "evalor",
  588. "email": "mipone@foxmail.com"
  589. }
  590. ],
  591. "support": {
  592. "issues": "https://github.com/easy-swoole/verify-code/issues",
  593. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  594. },
  595. "time": "2023-09-06T06:45:56+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "3.2.6",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  608. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "doctrine/lexer": "^1.2|^2",
  613. "php": ">=7.2",
  614. "symfony/polyfill-intl-idn": "^1.15"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "^8.5.8|^9.3.3",
  618. "vimeo/psalm": "^4"
  619. },
  620. "suggest": {
  621. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "3.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Egulias\\EmailValidator\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Eduardo Gulias Davis"
  641. }
  642. ],
  643. "description": "A library for validating emails against several RFCs",
  644. "homepage": "https://github.com/egulias/EmailValidator",
  645. "keywords": [
  646. "email",
  647. "emailvalidation",
  648. "emailvalidator",
  649. "validation",
  650. "validator"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/egulias/EmailValidator/issues",
  654. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/egulias",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2023-06-01T07:04:22+00:00"
  663. },
  664. {
  665. "name": "fig/http-message-util",
  666. "version": "1.1.5",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/php-fig/http-message-util.git",
  670. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  675. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": "^5.3 || ^7.0 || ^8.0"
  680. },
  681. "suggest": {
  682. "psr/http-message": "The package containing the PSR-7 interfaces"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "1.1.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Fig\\Http\\Message\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "PHP-FIG",
  702. "homepage": "https://www.php-fig.org/"
  703. }
  704. ],
  705. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  706. "keywords": [
  707. "http",
  708. "http-message",
  709. "psr",
  710. "psr-7",
  711. "request",
  712. "response"
  713. ],
  714. "support": {
  715. "issues": "https://github.com/php-fig/http-message-util/issues",
  716. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  717. },
  718. "time": "2020-11-24T22:02:12+00:00"
  719. },
  720. {
  721. "name": "friendsofhyperf/openai-client",
  722. "version": "v3.1.48",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/friendsofhyperf/openai-client.git",
  726. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/friendsofhyperf/openai-client/zipball/bf889a83edefb712381f53967c0ab71d7df5ff01",
  731. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "hyperf/config": "~3.1.0",
  736. "hyperf/di": "~3.1.0",
  737. "hyperf/guzzle": "~3.1.0",
  738. "openai-php/client": "^0.10.0",
  739. "php": ">=8.1"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "hyperf": {
  744. "config": "FriendsOfHyperf\\OpenAi\\ConfigProvider"
  745. },
  746. "branch-alias": {
  747. "dev-main": "3.1-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "FriendsOfHyperf\\OpenAi\\": "src/"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "huangdijia",
  762. "email": "huangdijia@gmail.com"
  763. }
  764. ],
  765. "description": "The openai client component for Hyperf.",
  766. "homepage": "https://github.com/friendsofhyperf/openai-client",
  767. "keywords": [
  768. "hyperf",
  769. "openai",
  770. "v3.1"
  771. ],
  772. "support": {
  773. "docs": "https://hyperf.fans",
  774. "issues": "https://github.com/friendsofhyperf/components/issues",
  775. "pull-request": "https://github.com/friendsofhyperf/components/pulls",
  776. "source": "https://github.com/friendsofhyperf/components"
  777. },
  778. "funding": [
  779. {
  780. "url": "https://hdj.me/sponsors/",
  781. "type": "custom"
  782. },
  783. {
  784. "url": "https://github.com/huangdijia",
  785. "type": "github"
  786. }
  787. ],
  788. "time": "2024-11-28T08:49:14+00:00"
  789. },
  790. {
  791. "name": "graham-campbell/result-type",
  792. "version": "v1.1.3",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  796. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  801. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": "^7.2.5 || ^8.0",
  806. "phpoption/phpoption": "^1.9.3"
  807. },
  808. "require-dev": {
  809. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  810. },
  811. "type": "library",
  812. "autoload": {
  813. "psr-4": {
  814. "GrahamCampbell\\ResultType\\": "src/"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Graham Campbell",
  824. "email": "hello@gjcampbell.co.uk",
  825. "homepage": "https://github.com/GrahamCampbell"
  826. }
  827. ],
  828. "description": "An Implementation Of The Result Type",
  829. "keywords": [
  830. "Graham Campbell",
  831. "GrahamCampbell",
  832. "Result Type",
  833. "Result-Type",
  834. "result"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  838. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  839. },
  840. "funding": [
  841. {
  842. "url": "https://github.com/GrahamCampbell",
  843. "type": "github"
  844. },
  845. {
  846. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  847. "type": "tidelift"
  848. }
  849. ],
  850. "time": "2024-07-20T21:45:45+00:00"
  851. },
  852. {
  853. "name": "guzzlehttp/guzzle",
  854. "version": "7.9.2",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/guzzle/guzzle.git",
  858. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  863. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "ext-json": "*",
  868. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  869. "guzzlehttp/psr7": "^2.7.0",
  870. "php": "^7.2.5 || ^8.0",
  871. "psr/http-client": "^1.0",
  872. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  873. },
  874. "provide": {
  875. "psr/http-client-implementation": "1.0"
  876. },
  877. "require-dev": {
  878. "bamarni/composer-bin-plugin": "^1.8.2",
  879. "ext-curl": "*",
  880. "guzzle/client-integration-tests": "3.0.2",
  881. "php-http/message-factory": "^1.1",
  882. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  883. "psr/log": "^1.1 || ^2.0 || ^3.0"
  884. },
  885. "suggest": {
  886. "ext-curl": "Required for CURL handler support",
  887. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  888. "psr/log": "Required for using the Log middleware"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "bamarni-bin": {
  893. "bin-links": true,
  894. "forward-command": false
  895. }
  896. },
  897. "autoload": {
  898. "files": [
  899. "src/functions_include.php"
  900. ],
  901. "psr-4": {
  902. "GuzzleHttp\\": "src/"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Graham Campbell",
  912. "email": "hello@gjcampbell.co.uk",
  913. "homepage": "https://github.com/GrahamCampbell"
  914. },
  915. {
  916. "name": "Michael Dowling",
  917. "email": "mtdowling@gmail.com",
  918. "homepage": "https://github.com/mtdowling"
  919. },
  920. {
  921. "name": "Jeremy Lindblom",
  922. "email": "jeremeamia@gmail.com",
  923. "homepage": "https://github.com/jeremeamia"
  924. },
  925. {
  926. "name": "George Mponos",
  927. "email": "gmponos@gmail.com",
  928. "homepage": "https://github.com/gmponos"
  929. },
  930. {
  931. "name": "Tobias Nyholm",
  932. "email": "tobias.nyholm@gmail.com",
  933. "homepage": "https://github.com/Nyholm"
  934. },
  935. {
  936. "name": "Márk Sági-Kazár",
  937. "email": "mark.sagikazar@gmail.com",
  938. "homepage": "https://github.com/sagikazarmark"
  939. },
  940. {
  941. "name": "Tobias Schultze",
  942. "email": "webmaster@tubo-world.de",
  943. "homepage": "https://github.com/Tobion"
  944. }
  945. ],
  946. "description": "Guzzle is a PHP HTTP client library",
  947. "keywords": [
  948. "client",
  949. "curl",
  950. "framework",
  951. "http",
  952. "http client",
  953. "psr-18",
  954. "psr-7",
  955. "rest",
  956. "web service"
  957. ],
  958. "support": {
  959. "issues": "https://github.com/guzzle/guzzle/issues",
  960. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  961. },
  962. "funding": [
  963. {
  964. "url": "https://github.com/GrahamCampbell",
  965. "type": "github"
  966. },
  967. {
  968. "url": "https://github.com/Nyholm",
  969. "type": "github"
  970. },
  971. {
  972. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  973. "type": "tidelift"
  974. }
  975. ],
  976. "time": "2024-07-24T11:22:20+00:00"
  977. },
  978. {
  979. "name": "guzzlehttp/promises",
  980. "version": "2.0.4",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/guzzle/promises.git",
  984. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  989. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": "^7.2.5 || ^8.0"
  994. },
  995. "require-dev": {
  996. "bamarni/composer-bin-plugin": "^1.8.2",
  997. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "bamarni-bin": {
  1002. "bin-links": true,
  1003. "forward-command": false
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "GuzzleHttp\\Promise\\": "src/"
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Graham Campbell",
  1018. "email": "hello@gjcampbell.co.uk",
  1019. "homepage": "https://github.com/GrahamCampbell"
  1020. },
  1021. {
  1022. "name": "Michael Dowling",
  1023. "email": "mtdowling@gmail.com",
  1024. "homepage": "https://github.com/mtdowling"
  1025. },
  1026. {
  1027. "name": "Tobias Nyholm",
  1028. "email": "tobias.nyholm@gmail.com",
  1029. "homepage": "https://github.com/Nyholm"
  1030. },
  1031. {
  1032. "name": "Tobias Schultze",
  1033. "email": "webmaster@tubo-world.de",
  1034. "homepage": "https://github.com/Tobion"
  1035. }
  1036. ],
  1037. "description": "Guzzle promises library",
  1038. "keywords": [
  1039. "promise"
  1040. ],
  1041. "support": {
  1042. "issues": "https://github.com/guzzle/promises/issues",
  1043. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://github.com/GrahamCampbell",
  1048. "type": "github"
  1049. },
  1050. {
  1051. "url": "https://github.com/Nyholm",
  1052. "type": "github"
  1053. },
  1054. {
  1055. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1056. "type": "tidelift"
  1057. }
  1058. ],
  1059. "time": "2024-10-17T10:06:22+00:00"
  1060. },
  1061. {
  1062. "name": "guzzlehttp/psr7",
  1063. "version": "2.7.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/guzzle/psr7.git",
  1067. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1072. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "php": "^7.2.5 || ^8.0",
  1077. "psr/http-factory": "^1.0",
  1078. "psr/http-message": "^1.1 || ^2.0",
  1079. "ralouphie/getallheaders": "^3.0"
  1080. },
  1081. "provide": {
  1082. "psr/http-factory-implementation": "1.0",
  1083. "psr/http-message-implementation": "1.0"
  1084. },
  1085. "require-dev": {
  1086. "bamarni/composer-bin-plugin": "^1.8.2",
  1087. "http-interop/http-factory-tests": "0.9.0",
  1088. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1089. },
  1090. "suggest": {
  1091. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1092. },
  1093. "type": "library",
  1094. "extra": {
  1095. "bamarni-bin": {
  1096. "bin-links": true,
  1097. "forward-command": false
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-4": {
  1102. "GuzzleHttp\\Psr7\\": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Graham Campbell",
  1112. "email": "hello@gjcampbell.co.uk",
  1113. "homepage": "https://github.com/GrahamCampbell"
  1114. },
  1115. {
  1116. "name": "Michael Dowling",
  1117. "email": "mtdowling@gmail.com",
  1118. "homepage": "https://github.com/mtdowling"
  1119. },
  1120. {
  1121. "name": "George Mponos",
  1122. "email": "gmponos@gmail.com",
  1123. "homepage": "https://github.com/gmponos"
  1124. },
  1125. {
  1126. "name": "Tobias Nyholm",
  1127. "email": "tobias.nyholm@gmail.com",
  1128. "homepage": "https://github.com/Nyholm"
  1129. },
  1130. {
  1131. "name": "Márk Sági-Kazár",
  1132. "email": "mark.sagikazar@gmail.com",
  1133. "homepage": "https://github.com/sagikazarmark"
  1134. },
  1135. {
  1136. "name": "Tobias Schultze",
  1137. "email": "webmaster@tubo-world.de",
  1138. "homepage": "https://github.com/Tobion"
  1139. },
  1140. {
  1141. "name": "Márk Sági-Kazár",
  1142. "email": "mark.sagikazar@gmail.com",
  1143. "homepage": "https://sagikazarmark.hu"
  1144. }
  1145. ],
  1146. "description": "PSR-7 message implementation that also provides common utility methods",
  1147. "keywords": [
  1148. "http",
  1149. "message",
  1150. "psr-7",
  1151. "request",
  1152. "response",
  1153. "stream",
  1154. "uri",
  1155. "url"
  1156. ],
  1157. "support": {
  1158. "issues": "https://github.com/guzzle/psr7/issues",
  1159. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1160. },
  1161. "funding": [
  1162. {
  1163. "url": "https://github.com/GrahamCampbell",
  1164. "type": "github"
  1165. },
  1166. {
  1167. "url": "https://github.com/Nyholm",
  1168. "type": "github"
  1169. },
  1170. {
  1171. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1172. "type": "tidelift"
  1173. }
  1174. ],
  1175. "time": "2024-07-18T11:15:46+00:00"
  1176. },
  1177. {
  1178. "name": "hyperf/amqp",
  1179. "version": "v3.1.50",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/hyperf/amqp.git",
  1183. "reference": "db5e24822f2dcc3af055b5c985702f59901be380"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/hyperf/amqp/zipball/db5e24822f2dcc3af055b5c985702f59901be380",
  1188. "reference": "db5e24822f2dcc3af055b5c985702f59901be380",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "doctrine/instantiator": "^1.2.0",
  1193. "hyperf/codec": "~3.1.0",
  1194. "hyperf/contract": "~3.1.0",
  1195. "hyperf/coroutine": "~3.1.0",
  1196. "hyperf/pool": "~3.1.0",
  1197. "hyperf/process": "~3.1.0",
  1198. "hyperf/support": "~3.1.0",
  1199. "hyperf/utils": "~3.1.0",
  1200. "php": ">=8.1",
  1201. "php-amqplib/php-amqplib": "^3.5",
  1202. "psr/container": "^1.0 || ^2.0",
  1203. "psr/event-dispatcher": "^1.0",
  1204. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1205. },
  1206. "suggest": {
  1207. "hyperf/di": "Required to use annotations.",
  1208. "hyperf/event": "Declare queue and start consumers automatically."
  1209. },
  1210. "type": "library",
  1211. "extra": {
  1212. "hyperf": {
  1213. "config": "Hyperf\\Amqp\\ConfigProvider"
  1214. },
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Hyperf\\Amqp\\": "src/"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "description": "A amqplib for hyperf.",
  1229. "homepage": "https://hyperf.io",
  1230. "keywords": [
  1231. "AMQP",
  1232. "hyperf",
  1233. "php"
  1234. ],
  1235. "support": {
  1236. "docs": "https://hyperf.wiki",
  1237. "issues": "https://github.com/hyperf/hyperf/issues",
  1238. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1239. "source": "https://github.com/hyperf/hyperf"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://opencollective.com/hyperf",
  1248. "type": "open_collective"
  1249. }
  1250. ],
  1251. "time": "2025-01-08T08:57:09+00:00"
  1252. },
  1253. {
  1254. "name": "hyperf/async-queue",
  1255. "version": "v3.1.42",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/hyperf/async-queue.git",
  1259. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1264. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "hyperf/codec": "~3.1.0",
  1269. "hyperf/collection": "~3.1.0",
  1270. "hyperf/command": "~3.1.0",
  1271. "hyperf/contract": "~3.1.0",
  1272. "hyperf/support": "~3.1.0",
  1273. "hyperf/utils": "~3.1.0",
  1274. "php": ">=8.1",
  1275. "psr/container": "^1.0 || ^2.0",
  1276. "psr/event-dispatcher": "^1.0"
  1277. },
  1278. "suggest": {
  1279. "hyperf/di": "Required to use annotations.",
  1280. "hyperf/event": "Required to dispatch a event.",
  1281. "hyperf/logger": "Required to use QueueHandleListener.",
  1282. "hyperf/process": "Auto register the consumer process for server."
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "hyperf": {
  1287. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1288. },
  1289. "branch-alias": {
  1290. "dev-master": "3.1-dev"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "files": [
  1295. "src/Functions.php"
  1296. ],
  1297. "psr-4": {
  1298. "Hyperf\\AsyncQueue\\": "src/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "description": "A async queue component for hyperf.",
  1306. "homepage": "https://hyperf.io",
  1307. "keywords": [
  1308. "async-queue",
  1309. "hyperf",
  1310. "php"
  1311. ],
  1312. "support": {
  1313. "docs": "https://hyperf.wiki",
  1314. "issues": "https://github.com/hyperf/hyperf/issues",
  1315. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1316. "source": "https://github.com/hyperf/hyperf"
  1317. },
  1318. "funding": [
  1319. {
  1320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1321. "type": "custom"
  1322. },
  1323. {
  1324. "url": "https://opencollective.com/hyperf",
  1325. "type": "open_collective"
  1326. }
  1327. ],
  1328. "time": "2024-09-25T02:54:12+00:00"
  1329. },
  1330. {
  1331. "name": "hyperf/cache",
  1332. "version": "v3.1.43",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/hyperf/cache.git",
  1336. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1341. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1342. "shasum": ""
  1343. },
  1344. "require": {
  1345. "hyperf/codec": "~3.1.0",
  1346. "hyperf/collection": "~3.1.0",
  1347. "hyperf/contract": "~3.1.0",
  1348. "hyperf/support": "~3.1.0",
  1349. "hyperf/utils": "~3.1.0",
  1350. "php": ">=8.1",
  1351. "psr/container": "^1.0 || ^2.0",
  1352. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1353. },
  1354. "suggest": {
  1355. "hyperf/di": "Use cache annotations.",
  1356. "hyperf/event": "Use listener to delete annotation cache."
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "hyperf": {
  1361. "config": "Hyperf\\Cache\\ConfigProvider"
  1362. },
  1363. "branch-alias": {
  1364. "dev-master": "3.1-dev"
  1365. }
  1366. },
  1367. "autoload": {
  1368. "psr-4": {
  1369. "Hyperf\\Cache\\": "src/"
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "description": "A cache component for hyperf.",
  1377. "homepage": "https://hyperf.io",
  1378. "keywords": [
  1379. "cache",
  1380. "hyperf",
  1381. "php"
  1382. ],
  1383. "support": {
  1384. "docs": "https://hyperf.wiki",
  1385. "issues": "https://github.com/hyperf/hyperf/issues",
  1386. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1387. "source": "https://github.com/hyperf/hyperf"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1392. "type": "custom"
  1393. },
  1394. {
  1395. "url": "https://opencollective.com/hyperf",
  1396. "type": "open_collective"
  1397. }
  1398. ],
  1399. "time": "2024-10-09T10:22:39+00:00"
  1400. },
  1401. {
  1402. "name": "hyperf/code-parser",
  1403. "version": "v3.1.42",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/hyperf/code-parser.git",
  1407. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1412. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "hyperf/collection": "~3.1.0",
  1417. "hyperf/stringable": "~3.1.0",
  1418. "hyperf/support": "~3.1.0",
  1419. "php": ">=8.1"
  1420. },
  1421. "suggest": {
  1422. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1423. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "3.1-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Hyperf\\CodeParser\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "description": "A code parser component for Hyperf.",
  1441. "homepage": "https://hyperf.io",
  1442. "keywords": [
  1443. "code-parser",
  1444. "hyperf",
  1445. "php",
  1446. "swoole"
  1447. ],
  1448. "support": {
  1449. "docs": "https://hyperf.wiki",
  1450. "issues": "https://github.com/hyperf/hyperf/issues",
  1451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1452. "source": "https://github.com/hyperf/hyperf"
  1453. },
  1454. "funding": [
  1455. {
  1456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1457. "type": "custom"
  1458. },
  1459. {
  1460. "url": "https://opencollective.com/hyperf",
  1461. "type": "open_collective"
  1462. }
  1463. ],
  1464. "time": "2024-09-25T02:54:12+00:00"
  1465. },
  1466. {
  1467. "name": "hyperf/codec",
  1468. "version": "v3.1.42",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/hyperf/codec.git",
  1472. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1477. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "ext-json": "*",
  1482. "ext-xml": "*",
  1483. "hyperf/contract": "~3.1.0",
  1484. "php": ">=8.1"
  1485. },
  1486. "suggest": {
  1487. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-master": "3.1-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Hyperf\\Codec\\": "src/"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "description": "A codec component for Hyperf.",
  1505. "homepage": "https://hyperf.io",
  1506. "keywords": [
  1507. "codec",
  1508. "hyperf",
  1509. "php",
  1510. "swoole"
  1511. ],
  1512. "support": {
  1513. "docs": "https://hyperf.wiki",
  1514. "issues": "https://github.com/hyperf/hyperf/issues",
  1515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1516. "source": "https://github.com/hyperf/hyperf"
  1517. },
  1518. "funding": [
  1519. {
  1520. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://opencollective.com/hyperf",
  1525. "type": "open_collective"
  1526. }
  1527. ],
  1528. "time": "2024-09-25T02:54:12+00:00"
  1529. },
  1530. {
  1531. "name": "hyperf/collection",
  1532. "version": "v3.1.50",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/hyperf/collection.git",
  1536. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/hyperf/collection/zipball/9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1541. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "hyperf/conditionable": "~3.1.0",
  1546. "hyperf/contract": "~3.1.0",
  1547. "hyperf/macroable": "~3.1.0",
  1548. "hyperf/stringable": "~3.1.0",
  1549. "php": ">=8.1"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "3.1-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "files": [
  1559. "src/Functions.php"
  1560. ],
  1561. "psr-4": {
  1562. "Hyperf\\Collection\\": "src/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "description": "Hyperf Collection package which come from illuminate/collections",
  1570. "homepage": "https://hyperf.io",
  1571. "keywords": [
  1572. "collection",
  1573. "hyperf",
  1574. "php",
  1575. "swoole"
  1576. ],
  1577. "support": {
  1578. "docs": "https://hyperf.wiki",
  1579. "issues": "https://github.com/hyperf/hyperf/issues",
  1580. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1581. "source": "https://github.com/hyperf/hyperf"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1586. "type": "custom"
  1587. },
  1588. {
  1589. "url": "https://opencollective.com/hyperf",
  1590. "type": "open_collective"
  1591. }
  1592. ],
  1593. "time": "2025-01-08T06:57:58+00:00"
  1594. },
  1595. {
  1596. "name": "hyperf/command",
  1597. "version": "v3.1.42",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/hyperf/command.git",
  1601. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1606. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "hyperf/collection": "~3.1.0",
  1611. "hyperf/context": "~3.1.0",
  1612. "hyperf/contract": "~3.1.0",
  1613. "hyperf/coroutine": "~3.1.0",
  1614. "hyperf/di": "~3.1.0",
  1615. "hyperf/stringable": "~3.1.0",
  1616. "hyperf/support": "~3.1.0",
  1617. "hyperf/tappable": "~3.1.0",
  1618. "php": ">=8.1",
  1619. "psr/event-dispatcher": "^1.0",
  1620. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1621. },
  1622. "suggest": {
  1623. "hyperf/di": "Required to use annotations.",
  1624. "hyperf/event": "Required to use listeners."
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "hyperf": {
  1629. "config": "Hyperf\\Command\\ConfigProvider"
  1630. },
  1631. "branch-alias": {
  1632. "dev-master": "3.1-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Hyperf\\Command\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "description": "Command for hyperf",
  1645. "keywords": [
  1646. "command",
  1647. "php",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/hyperf/command/issues",
  1652. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://opencollective.com/hyperf",
  1661. "type": "open_collective"
  1662. }
  1663. ],
  1664. "time": "2024-09-25T02:54:12+00:00"
  1665. },
  1666. {
  1667. "name": "hyperf/conditionable",
  1668. "version": "v3.1.42",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/hyperf/conditionable.git",
  1672. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1677. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": ">=8.1"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. }
  1688. },
  1689. "autoload": {
  1690. "psr-4": {
  1691. "Hyperf\\Conditionable\\": "src/"
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "MIT"
  1697. ],
  1698. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1699. "homepage": "https://hyperf.io",
  1700. "keywords": [
  1701. "conditionable",
  1702. "hyperf",
  1703. "php",
  1704. "swoole"
  1705. ],
  1706. "support": {
  1707. "docs": "https://hyperf.wiki",
  1708. "issues": "https://github.com/hyperf/hyperf/issues",
  1709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1710. "source": "https://github.com/hyperf/hyperf"
  1711. },
  1712. "funding": [
  1713. {
  1714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1715. "type": "custom"
  1716. },
  1717. {
  1718. "url": "https://opencollective.com/hyperf",
  1719. "type": "open_collective"
  1720. }
  1721. ],
  1722. "time": "2024-09-25T02:54:12+00:00"
  1723. },
  1724. {
  1725. "name": "hyperf/config",
  1726. "version": "v3.1.42",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/hyperf/config.git",
  1730. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1735. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "hyperf/collection": "~3.1.0",
  1740. "hyperf/contract": "~3.1.0",
  1741. "hyperf/support": "~3.1.0",
  1742. "php": ">=8.1",
  1743. "psr/container": "^1.0 || ^2.0",
  1744. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1745. },
  1746. "suggest": {
  1747. "hyperf/context": "Required to use config()",
  1748. "hyperf/di": "Allows using @Value annotation",
  1749. "hyperf/event": "Allows using @Value annotation",
  1750. "hyperf/framework": "Allows using @Value annotation",
  1751. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "hyperf": {
  1756. "config": "Hyperf\\Config\\ConfigProvider"
  1757. },
  1758. "branch-alias": {
  1759. "dev-master": "3.1-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "files": [
  1764. "./src/Functions.php"
  1765. ],
  1766. "psr-4": {
  1767. "Hyperf\\Config\\": "src/"
  1768. }
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "description": "An independent component that provides configuration container.",
  1775. "homepage": "https://hyperf.io",
  1776. "keywords": [
  1777. "config",
  1778. "configuration",
  1779. "hyperf",
  1780. "php",
  1781. "swoole"
  1782. ],
  1783. "support": {
  1784. "docs": "https://hyperf.wiki",
  1785. "issues": "https://github.com/hyperf/hyperf/issues",
  1786. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1787. "source": "https://github.com/hyperf/hyperf"
  1788. },
  1789. "funding": [
  1790. {
  1791. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1792. "type": "custom"
  1793. },
  1794. {
  1795. "url": "https://opencollective.com/hyperf",
  1796. "type": "open_collective"
  1797. }
  1798. ],
  1799. "time": "2024-09-25T02:54:12+00:00"
  1800. },
  1801. {
  1802. "name": "hyperf/config-center",
  1803. "version": "v3.1.42",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/hyperf/config-center.git",
  1807. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1812. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "hyperf/support": "~3.1.0",
  1817. "php": ">=8.1"
  1818. },
  1819. "suggest": {
  1820. "hyperf/process": "^2.1"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "hyperf": {
  1825. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1826. },
  1827. "branch-alias": {
  1828. "dev-master": "3.1-dev"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Hyperf\\ConfigCenter\\": "src/"
  1834. }
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT"
  1839. ],
  1840. "description": "The abstraction component of config center",
  1841. "homepage": "https://hyperf.io",
  1842. "keywords": [
  1843. "config-center",
  1844. "hyperf",
  1845. "php"
  1846. ],
  1847. "support": {
  1848. "docs": "https://hyperf.wiki",
  1849. "issues": "https://github.com/hyperf/hyperf/issues",
  1850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1851. "source": "https://github.com/hyperf/hyperf"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://opencollective.com/hyperf",
  1860. "type": "open_collective"
  1861. }
  1862. ],
  1863. "time": "2024-09-25T02:54:12+00:00"
  1864. },
  1865. {
  1866. "name": "hyperf/config-nacos",
  1867. "version": "v3.1.42",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/hyperf/config-nacos.git",
  1871. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1876. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "hyperf/codec": "~3.1.0",
  1881. "hyperf/config-center": "~3.1.0",
  1882. "hyperf/contract": "~3.1.0",
  1883. "hyperf/guzzle": "~3.1.0",
  1884. "hyperf/nacos": "~3.1.0",
  1885. "hyperf/support": "~3.1.0",
  1886. "hyperf/utils": "~3.1.0",
  1887. "jetbrains/phpstorm-attributes": "^1.0",
  1888. "php": ">=8.1"
  1889. },
  1890. "suggest": {
  1891. "ext-json": "*",
  1892. "ext-simplexml": "*",
  1893. "ext-yaml": "*",
  1894. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1895. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1896. "hyperf/process": "Required to use processes. (~2.2.0)"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "hyperf": {
  1901. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1902. },
  1903. "branch-alias": {
  1904. "dev-master": "3.1-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Hyperf\\ConfigNacos\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "description": "A nacos adapter for config center component.",
  1917. "homepage": "https://hyperf.io",
  1918. "keywords": [
  1919. "hyperf",
  1920. "nacos",
  1921. "php",
  1922. "swoole"
  1923. ],
  1924. "support": {
  1925. "docs": "https://hyperf.wiki",
  1926. "issues": "https://github.com/hyperf/hyperf/issues",
  1927. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1928. "source": "https://github.com/hyperf/hyperf"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://opencollective.com/hyperf",
  1937. "type": "open_collective"
  1938. }
  1939. ],
  1940. "time": "2024-09-25T02:54:12+00:00"
  1941. },
  1942. {
  1943. "name": "hyperf/constants",
  1944. "version": "v3.1.42",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/hyperf/constants.git",
  1948. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1953. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "hyperf/di": "~3.1.0",
  1958. "hyperf/support": "~3.1.0",
  1959. "hyperf/utils": "~3.1.0",
  1960. "php": ">=8.1"
  1961. },
  1962. "suggest": {
  1963. "hyperf/translation": "Required to use translation."
  1964. },
  1965. "type": "library",
  1966. "extra": {
  1967. "hyperf": {
  1968. "config": "Hyperf\\Constants\\ConfigProvider"
  1969. },
  1970. "branch-alias": {
  1971. "dev-master": "3.1-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Hyperf\\Constants\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "description": "A constants component for hyperf.",
  1984. "homepage": "https://hyperf.io",
  1985. "keywords": [
  1986. "constants",
  1987. "hyperf",
  1988. "php"
  1989. ],
  1990. "support": {
  1991. "docs": "https://hyperf.wiki",
  1992. "issues": "https://github.com/hyperf/hyperf/issues",
  1993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1994. "source": "https://github.com/hyperf/hyperf"
  1995. },
  1996. "funding": [
  1997. {
  1998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1999. "type": "custom"
  2000. },
  2001. {
  2002. "url": "https://opencollective.com/hyperf",
  2003. "type": "open_collective"
  2004. }
  2005. ],
  2006. "time": "2024-09-25T02:54:12+00:00"
  2007. },
  2008. {
  2009. "name": "hyperf/consul",
  2010. "version": "v3.1.42",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hyperf/consul.git",
  2014. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2019. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2024. "php": ">=8.1"
  2025. },
  2026. "type": "library",
  2027. "extra": {
  2028. "hyperf": {
  2029. "config": "Hyperf\\Consul\\ConfigProvider"
  2030. },
  2031. "branch-alias": {
  2032. "dev-master": "3.1-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Hyperf\\Consul\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "description": "A Consul Client for Hyperf.",
  2045. "homepage": "https://hyperf.io",
  2046. "keywords": [
  2047. "consul",
  2048. "consul-client",
  2049. "hyperf",
  2050. "php",
  2051. "swoole"
  2052. ],
  2053. "support": {
  2054. "docs": "https://hyperf.wiki",
  2055. "issues": "https://github.com/hyperf/hyperf/issues",
  2056. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2057. "source": "https://github.com/hyperf/hyperf"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://opencollective.com/hyperf",
  2066. "type": "open_collective"
  2067. }
  2068. ],
  2069. "time": "2024-09-25T02:54:12+00:00"
  2070. },
  2071. {
  2072. "name": "hyperf/context",
  2073. "version": "v3.1.42",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/hyperf/context.git",
  2077. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2082. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "hyperf/engine": "^2.0",
  2087. "php": ">=8.1"
  2088. },
  2089. "suggest": {
  2090. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "3.1-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "psr-4": {
  2100. "Hyperf\\Context\\": "src/"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "MIT"
  2106. ],
  2107. "description": "A coroutine/application context library.",
  2108. "homepage": "https://hyperf.io",
  2109. "keywords": [
  2110. "Context",
  2111. "hyperf",
  2112. "php",
  2113. "swoole"
  2114. ],
  2115. "support": {
  2116. "docs": "https://hyperf.wiki",
  2117. "issues": "https://github.com/hyperf/hyperf/issues",
  2118. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2119. "source": "https://github.com/hyperf/hyperf"
  2120. },
  2121. "funding": [
  2122. {
  2123. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2124. "type": "custom"
  2125. },
  2126. {
  2127. "url": "https://opencollective.com/hyperf",
  2128. "type": "open_collective"
  2129. }
  2130. ],
  2131. "time": "2024-09-25T02:54:12+00:00"
  2132. },
  2133. {
  2134. "name": "hyperf/contract",
  2135. "version": "v3.1.42",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/hyperf/contract.git",
  2139. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2144. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=8.1"
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "3.1-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Hyperf\\Contract\\": "src/"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "description": "The contracts of Hyperf.",
  2166. "homepage": "https://hyperf.io",
  2167. "keywords": [
  2168. "hyperf",
  2169. "php",
  2170. "swoole"
  2171. ],
  2172. "support": {
  2173. "docs": "https://hyperf.wiki",
  2174. "issues": "https://github.com/hyperf/hyperf/issues",
  2175. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2176. "source": "https://github.com/hyperf/hyperf"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2181. "type": "custom"
  2182. },
  2183. {
  2184. "url": "https://opencollective.com/hyperf",
  2185. "type": "open_collective"
  2186. }
  2187. ],
  2188. "time": "2024-09-25T02:54:12+00:00"
  2189. },
  2190. {
  2191. "name": "hyperf/coordinator",
  2192. "version": "v3.1.42",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/hyperf/coordinator.git",
  2196. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2201. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "hyperf/engine": "^2.0",
  2206. "php": ">=8.1"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "3.1-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "files": [
  2216. "src/Functions.php"
  2217. ],
  2218. "psr-4": {
  2219. "Hyperf\\Coordinator\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "Hyperf Coordinator",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "Coordinator",
  2230. "hyperf",
  2231. "php",
  2232. "swoole"
  2233. ],
  2234. "support": {
  2235. "docs": "https://hyperf.wiki",
  2236. "issues": "https://github.com/hyperf/hyperf/issues",
  2237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2238. "source": "https://github.com/hyperf/hyperf"
  2239. },
  2240. "funding": [
  2241. {
  2242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2243. "type": "custom"
  2244. },
  2245. {
  2246. "url": "https://opencollective.com/hyperf",
  2247. "type": "open_collective"
  2248. }
  2249. ],
  2250. "time": "2024-09-25T02:54:12+00:00"
  2251. },
  2252. {
  2253. "name": "hyperf/coroutine",
  2254. "version": "v3.1.50",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/hyperf/coroutine.git",
  2258. "reference": "c353b3fbd86e30b5b51219e8867d479ea11e6811"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/c353b3fbd86e30b5b51219e8867d479ea11e6811",
  2263. "reference": "c353b3fbd86e30b5b51219e8867d479ea11e6811",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "hyperf/context": "~3.1.0",
  2268. "hyperf/contract": "~3.1.0",
  2269. "hyperf/engine": "^2.0",
  2270. "php": ">=8.1"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "3.1-dev"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "files": [
  2280. "src/Functions.php"
  2281. ],
  2282. "psr-4": {
  2283. "Hyperf\\Coroutine\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "description": "Hyperf Coroutine",
  2291. "homepage": "https://hyperf.io",
  2292. "keywords": [
  2293. "coroutine",
  2294. "hyperf",
  2295. "php",
  2296. "swoole"
  2297. ],
  2298. "support": {
  2299. "docs": "https://hyperf.wiki",
  2300. "issues": "https://github.com/hyperf/hyperf/issues",
  2301. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2302. "source": "https://github.com/hyperf/hyperf"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2307. "type": "custom"
  2308. },
  2309. {
  2310. "url": "https://opencollective.com/hyperf",
  2311. "type": "open_collective"
  2312. }
  2313. ],
  2314. "time": "2024-12-24T08:59:48+00:00"
  2315. },
  2316. {
  2317. "name": "hyperf/database",
  2318. "version": "v3.1.48",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/hyperf/database.git",
  2322. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2327. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "hyperf/code-parser": "~3.1.0",
  2332. "hyperf/collection": "~3.1.23",
  2333. "hyperf/conditionable": "~3.1.0",
  2334. "hyperf/macroable": "~3.1.0",
  2335. "hyperf/support": "~3.1.0",
  2336. "hyperf/tappable": "~3.1.0",
  2337. "hyperf/utils": "~3.1.0",
  2338. "nesbot/carbon": "^2.0",
  2339. "php": ">=8.1",
  2340. "psr/container": "^1.0 || ^2.0",
  2341. "psr/event-dispatcher": "^1.0"
  2342. },
  2343. "suggest": {
  2344. "doctrine/dbal": "Required to rename columns (^3.0).",
  2345. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2346. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2347. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "3.1-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\Database\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A flexible database library.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "database",
  2368. "hyperf",
  2369. "php"
  2370. ],
  2371. "support": {
  2372. "docs": "https://hyperf.wiki",
  2373. "issues": "https://github.com/hyperf/hyperf/issues",
  2374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2375. "source": "https://github.com/hyperf/hyperf"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://opencollective.com/hyperf",
  2384. "type": "open_collective"
  2385. }
  2386. ],
  2387. "time": "2024-12-12T01:58:16+00:00"
  2388. },
  2389. {
  2390. "name": "hyperf/db-connection",
  2391. "version": "v3.1.44",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/hyperf/db-connection.git",
  2395. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2400. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "hyperf/database": "~3.1.0",
  2405. "hyperf/di": "~3.1.0",
  2406. "hyperf/framework": "~3.1.0",
  2407. "hyperf/model-listener": "~3.1.0",
  2408. "hyperf/pool": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "hyperf/utils": "~3.1.0",
  2411. "php": ">=8.1",
  2412. "psr/container": "^1.0 || ^2.0"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "hyperf": {
  2417. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2418. },
  2419. "branch-alias": {
  2420. "dev-master": "3.1-dev"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "psr-4": {
  2425. "Hyperf\\DbConnection\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "description": "A hyperf db connection handler for hyperf/database.",
  2433. "homepage": "https://hyperf.io",
  2434. "keywords": [
  2435. "Connection",
  2436. "database",
  2437. "hyperf",
  2438. "php"
  2439. ],
  2440. "support": {
  2441. "docs": "https://hyperf.wiki",
  2442. "issues": "https://github.com/hyperf/hyperf/issues",
  2443. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2444. "source": "https://github.com/hyperf/hyperf"
  2445. },
  2446. "funding": [
  2447. {
  2448. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2449. "type": "custom"
  2450. },
  2451. {
  2452. "url": "https://opencollective.com/hyperf",
  2453. "type": "open_collective"
  2454. }
  2455. ],
  2456. "time": "2024-10-11T08:58:16+00:00"
  2457. },
  2458. {
  2459. "name": "hyperf/di",
  2460. "version": "v3.1.42",
  2461. "source": {
  2462. "type": "git",
  2463. "url": "https://github.com/hyperf/di.git",
  2464. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2465. },
  2466. "dist": {
  2467. "type": "zip",
  2468. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2469. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2470. "shasum": ""
  2471. },
  2472. "require": {
  2473. "doctrine/instantiator": "^1.0",
  2474. "hyperf/code-parser": "~3.1.0",
  2475. "hyperf/pipeline": "~3.1.0",
  2476. "hyperf/stdlib": "~3.1.0",
  2477. "hyperf/support": "~3.1.0",
  2478. "nikic/php-parser": "^4.1",
  2479. "php": ">=8.1",
  2480. "php-di/phpdoc-reader": "^2.2",
  2481. "psr/container": "^1.0 || ^2.0",
  2482. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2483. "vlucas/phpdotenv": "^5.0"
  2484. },
  2485. "suggest": {
  2486. "ext-pcntl": "Required to scan annotations.",
  2487. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2488. },
  2489. "type": "library",
  2490. "extra": {
  2491. "hyperf": {
  2492. "config": "Hyperf\\Di\\ConfigProvider"
  2493. },
  2494. "branch-alias": {
  2495. "dev-master": "3.1-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Hyperf\\Di\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "description": "A DI for Hyperf.",
  2508. "homepage": "https://hyperf.io",
  2509. "keywords": [
  2510. "annotation",
  2511. "di",
  2512. "hyperf",
  2513. "php",
  2514. "swoole"
  2515. ],
  2516. "support": {
  2517. "docs": "https://hyperf.wiki",
  2518. "issues": "https://github.com/hyperf/hyperf/issues",
  2519. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2520. "source": "https://github.com/hyperf/hyperf"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2525. "type": "custom"
  2526. },
  2527. {
  2528. "url": "https://opencollective.com/hyperf",
  2529. "type": "open_collective"
  2530. }
  2531. ],
  2532. "time": "2024-09-25T02:54:12+00:00"
  2533. },
  2534. {
  2535. "name": "hyperf/dispatcher",
  2536. "version": "v3.1.42",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/hyperf/dispatcher.git",
  2540. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2545. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2546. "shasum": ""
  2547. },
  2548. "require": {
  2549. "hyperf/contract": "~3.1.0",
  2550. "php": ">=8.1",
  2551. "psr/container": "^1.0 || ^2.0",
  2552. "psr/http-message": "^1.0 || ^2.0",
  2553. "psr/http-server-middleware": "^1.0"
  2554. },
  2555. "type": "library",
  2556. "extra": {
  2557. "hyperf": {
  2558. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2559. },
  2560. "branch-alias": {
  2561. "dev-master": "3.1-dev"
  2562. }
  2563. },
  2564. "autoload": {
  2565. "psr-4": {
  2566. "Hyperf\\Dispatcher\\": "src/"
  2567. }
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "description": "A HTTP Server for Hyperf.",
  2574. "homepage": "https://hyperf.io",
  2575. "keywords": [
  2576. "dispatcher",
  2577. "filter",
  2578. "hyperf",
  2579. "middleware",
  2580. "php",
  2581. "swoole"
  2582. ],
  2583. "support": {
  2584. "docs": "https://hyperf.wiki",
  2585. "issues": "https://github.com/hyperf/hyperf/issues",
  2586. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2587. "source": "https://github.com/hyperf/hyperf"
  2588. },
  2589. "funding": [
  2590. {
  2591. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2592. "type": "custom"
  2593. },
  2594. {
  2595. "url": "https://opencollective.com/hyperf",
  2596. "type": "open_collective"
  2597. }
  2598. ],
  2599. "time": "2024-09-25T02:54:12+00:00"
  2600. },
  2601. {
  2602. "name": "hyperf/engine",
  2603. "version": "v2.12.1",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/hyperf/engine.git",
  2607. "reference": "90be8143841482dcd00051050986251e126c6132"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2612. "reference": "90be8143841482dcd00051050986251e126c6132",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "hyperf/engine-contract": "~1.11.0",
  2617. "php": ">=8.0"
  2618. },
  2619. "conflict": {
  2620. "ext-swoole": "<5.0"
  2621. },
  2622. "require-dev": {
  2623. "friendsofphp/php-cs-fixer": "^3.0",
  2624. "hyperf/guzzle": "^3.0",
  2625. "hyperf/http-message": "^3.0",
  2626. "mockery/mockery": "^1.5",
  2627. "phpstan/phpstan": "^1.0",
  2628. "phpunit/phpunit": "^9.4",
  2629. "swoole/ide-helper": "5.*"
  2630. },
  2631. "suggest": {
  2632. "ext-sockets": "*",
  2633. "ext-swoole": ">=5.0",
  2634. "hyperf/http-message": "Required to use ResponseEmitter.",
  2635. "psr/http-message": "Required to use WebSocket Frame."
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "hyperf": {
  2640. "config": "Hyperf\\Engine\\ConfigProvider"
  2641. },
  2642. "branch-alias": {
  2643. "dev-master": "2.12-dev"
  2644. }
  2645. },
  2646. "autoload": {
  2647. "files": [
  2648. "src/Functions.php"
  2649. ],
  2650. "psr-4": {
  2651. "Hyperf\\Engine\\": "src/"
  2652. }
  2653. },
  2654. "notification-url": "https://packagist.org/downloads/",
  2655. "license": [
  2656. "MIT"
  2657. ],
  2658. "description": "Coroutine engine provided by swoole.",
  2659. "keywords": [
  2660. "engine",
  2661. "hyperf",
  2662. "php",
  2663. "swoole"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/hyperf/engine/issues",
  2667. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2668. },
  2669. "funding": [
  2670. {
  2671. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2672. "type": "custom"
  2673. },
  2674. {
  2675. "url": "https://opencollective.com/hyperf",
  2676. "type": "open_collective"
  2677. }
  2678. ],
  2679. "time": "2024-12-17T12:36:21+00:00"
  2680. },
  2681. {
  2682. "name": "hyperf/engine-contract",
  2683. "version": "v1.11.0",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/hyperf/engine-contract.git",
  2687. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2692. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "php": ">=8.0"
  2697. },
  2698. "require-dev": {
  2699. "friendsofphp/php-cs-fixer": "^3.0",
  2700. "mockery/mockery": "^1.0",
  2701. "phpstan/phpstan": "^1.0",
  2702. "phpunit/phpunit": ">=7.0",
  2703. "psr/http-message": "^1.0",
  2704. "swoole/ide-helper": "^4.5"
  2705. },
  2706. "suggest": {
  2707. "psr/http-message": "Required to use WebSocket Frame."
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "1.9-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "Hyperf\\Engine\\Contract\\": "src/"
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "MIT"
  2723. ],
  2724. "description": "Contract for Coroutine Engine",
  2725. "keywords": [
  2726. "contract",
  2727. "coroutine",
  2728. "engine",
  2729. "hyperf",
  2730. "php"
  2731. ],
  2732. "support": {
  2733. "issues": "https://github.com/hyperf/engine-contract/issues",
  2734. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2739. "type": "custom"
  2740. },
  2741. {
  2742. "url": "https://opencollective.com/hyperf",
  2743. "type": "open_collective"
  2744. }
  2745. ],
  2746. "time": "2024-11-19T04:15:31+00:00"
  2747. },
  2748. {
  2749. "name": "hyperf/event",
  2750. "version": "v3.1.42",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/hyperf/event.git",
  2754. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2759. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2760. "shasum": ""
  2761. },
  2762. "require": {
  2763. "hyperf/contract": "~3.1.0",
  2764. "hyperf/stdlib": "~3.1.0",
  2765. "php": ">=8.1",
  2766. "psr/event-dispatcher": "^1.0"
  2767. },
  2768. "suggest": {
  2769. "hyperf/di": "Required to use annotatioins."
  2770. },
  2771. "type": "library",
  2772. "extra": {
  2773. "hyperf": {
  2774. "config": "Hyperf\\Event\\ConfigProvider"
  2775. },
  2776. "branch-alias": {
  2777. "dev-master": "3.1-dev"
  2778. }
  2779. },
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Hyperf\\Event\\": "src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "description": "an event manager that implements PSR-14.",
  2790. "homepage": "https://hyperf.io",
  2791. "keywords": [
  2792. "event",
  2793. "hyperf",
  2794. "php",
  2795. "swoole"
  2796. ],
  2797. "support": {
  2798. "docs": "https://hyperf.wiki",
  2799. "issues": "https://github.com/hyperf/hyperf/issues",
  2800. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2801. "source": "https://github.com/hyperf/hyperf"
  2802. },
  2803. "funding": [
  2804. {
  2805. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2806. "type": "custom"
  2807. },
  2808. {
  2809. "url": "https://opencollective.com/hyperf",
  2810. "type": "open_collective"
  2811. }
  2812. ],
  2813. "time": "2024-09-25T02:54:12+00:00"
  2814. },
  2815. {
  2816. "name": "hyperf/exception-handler",
  2817. "version": "v3.1.42",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/hyperf/exception-handler.git",
  2821. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2826. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "hyperf/context": "~3.1.0",
  2831. "hyperf/contract": "~3.1.0",
  2832. "hyperf/dispatcher": "~3.1.0",
  2833. "hyperf/http-message": "~3.1.0",
  2834. "hyperf/stdlib": "~3.1.0",
  2835. "hyperf/support": "~3.1.0",
  2836. "php": ">=8.1",
  2837. "psr/container": "^1.0 || ^2.0",
  2838. "psr/http-message": "^1.0 || ^2.0",
  2839. "swow/psr7-plus": "^1.0"
  2840. },
  2841. "suggest": {
  2842. "hyperf/di": "Required to use #[ExceptionHandler]",
  2843. "hyperf/event": "Required to use listeners",
  2844. "hyperf/framework": "Required to use listeners",
  2845. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "hyperf": {
  2850. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2851. },
  2852. "branch-alias": {
  2853. "dev-master": "3.1-dev"
  2854. }
  2855. },
  2856. "autoload": {
  2857. "psr-4": {
  2858. "Hyperf\\ExceptionHandler\\": "src/"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "description": "Exception handler for hyperf",
  2866. "homepage": "https://hyperf.io",
  2867. "keywords": [
  2868. "exception-handler",
  2869. "php",
  2870. "swoole"
  2871. ],
  2872. "support": {
  2873. "docs": "https://hyperf.wiki",
  2874. "issues": "https://github.com/hyperf/hyperf/issues",
  2875. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2876. "source": "https://github.com/hyperf/hyperf"
  2877. },
  2878. "funding": [
  2879. {
  2880. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2881. "type": "custom"
  2882. },
  2883. {
  2884. "url": "https://opencollective.com/hyperf",
  2885. "type": "open_collective"
  2886. }
  2887. ],
  2888. "time": "2024-09-25T02:54:12+00:00"
  2889. },
  2890. {
  2891. "name": "hyperf/framework",
  2892. "version": "v3.1.42",
  2893. "source": {
  2894. "type": "git",
  2895. "url": "https://github.com/hyperf/framework.git",
  2896. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2897. },
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2901. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2902. "shasum": ""
  2903. },
  2904. "require": {
  2905. "fig/http-message-util": "^1.1.2",
  2906. "hyperf/contract": "~3.1.0",
  2907. "hyperf/coordinator": "~3.1.0",
  2908. "hyperf/coroutine": "~3.1.0",
  2909. "php": ">=8.1",
  2910. "psr/container": "^1.0 || ^2.0",
  2911. "psr/event-dispatcher": "^1.0",
  2912. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2913. },
  2914. "suggest": {
  2915. "ext-swoole": "Required to use swoole engine.",
  2916. "hyperf/command": "Required to use Command annotation.",
  2917. "hyperf/di": "Required to use Command annotation.",
  2918. "hyperf/dispatcher": "Required to use BootApplication event.",
  2919. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "hyperf": {
  2924. "config": "Hyperf\\Framework\\ConfigProvider"
  2925. },
  2926. "branch-alias": {
  2927. "dev-master": "3.1-dev"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Hyperf\\Framework\\": "src/"
  2933. }
  2934. },
  2935. "notification-url": "https://packagist.org/downloads/",
  2936. "license": [
  2937. "MIT"
  2938. ],
  2939. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2940. "homepage": "https://hyperf.io",
  2941. "keywords": [
  2942. "Microservice",
  2943. "framework",
  2944. "hyperf",
  2945. "middleware",
  2946. "php",
  2947. "swoole"
  2948. ],
  2949. "support": {
  2950. "docs": "https://hyperf.wiki",
  2951. "issues": "https://github.com/hyperf/hyperf/issues",
  2952. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2953. "source": "https://github.com/hyperf/hyperf"
  2954. },
  2955. "funding": [
  2956. {
  2957. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2958. "type": "custom"
  2959. },
  2960. {
  2961. "url": "https://opencollective.com/hyperf",
  2962. "type": "open_collective"
  2963. }
  2964. ],
  2965. "time": "2024-09-25T02:54:12+00:00"
  2966. },
  2967. {
  2968. "name": "hyperf/guzzle",
  2969. "version": "v3.1.42",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/hyperf/guzzle.git",
  2973. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2978. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2983. "php": ">=8.1",
  2984. "psr/container": "^1.0 || ^2.0",
  2985. "psr/http-message": "^1.0 || ^2.0"
  2986. },
  2987. "suggest": {
  2988. "ext-curl": "Required for CURL handler support",
  2989. "hyperf/pool": "Required to use pool handler."
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "hyperf": {
  2994. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2995. },
  2996. "branch-alias": {
  2997. "dev-master": "3.1-dev"
  2998. }
  2999. },
  3000. "autoload": {
  3001. "psr-4": {
  3002. "Hyperf\\Guzzle\\": "src/"
  3003. }
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "description": "Swoole coroutine handler for guzzle",
  3010. "keywords": [
  3011. "Guzzle",
  3012. "handler",
  3013. "php",
  3014. "swoole"
  3015. ],
  3016. "support": {
  3017. "issues": "https://github.com/hyperf/guzzle/issues",
  3018. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  3019. },
  3020. "funding": [
  3021. {
  3022. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3023. "type": "custom"
  3024. },
  3025. {
  3026. "url": "https://opencollective.com/hyperf",
  3027. "type": "open_collective"
  3028. }
  3029. ],
  3030. "time": "2024-09-25T02:54:12+00:00"
  3031. },
  3032. {
  3033. "name": "hyperf/http-message",
  3034. "version": "v3.1.48",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://github.com/hyperf/http-message.git",
  3038. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3043. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3044. "shasum": ""
  3045. },
  3046. "require": {
  3047. "hyperf/codec": "~3.1.0",
  3048. "hyperf/engine": "^2.11",
  3049. "hyperf/support": "~3.1.0",
  3050. "laminas/laminas-mime": "^2.7",
  3051. "php": ">=8.1",
  3052. "psr/http-message": "^1.0 || ^2.0",
  3053. "swow/psr7-plus": "^1.0"
  3054. },
  3055. "suggest": {
  3056. "psr/container": "Required to replace RequestParserInterface."
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "hyperf": {
  3061. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3062. },
  3063. "branch-alias": {
  3064. "dev-master": "3.1-dev"
  3065. }
  3066. },
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Hyperf\\HttpMessage\\": "src/"
  3070. }
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "description": "microservice framework base on swoole",
  3077. "keywords": [
  3078. "http-message",
  3079. "hyperf",
  3080. "php",
  3081. "swoole"
  3082. ],
  3083. "support": {
  3084. "issues": "https://github.com/hyperf/http-message/issues",
  3085. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3086. },
  3087. "funding": [
  3088. {
  3089. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3090. "type": "custom"
  3091. },
  3092. {
  3093. "url": "https://opencollective.com/hyperf",
  3094. "type": "open_collective"
  3095. }
  3096. ],
  3097. "time": "2024-12-05T02:41:08+00:00"
  3098. },
  3099. {
  3100. "name": "hyperf/http-server",
  3101. "version": "v3.1.42",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/hyperf/http-server.git",
  3105. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3110. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "hyperf/codec": "~3.1.0",
  3115. "hyperf/collection": "~3.1.0",
  3116. "hyperf/context": "~3.1.0",
  3117. "hyperf/contract": "~3.1.0",
  3118. "hyperf/coroutine": "~3.1.0",
  3119. "hyperf/dispatcher": "~3.1.0",
  3120. "hyperf/event": "~3.1.0",
  3121. "hyperf/exception-handler": "~3.1.0",
  3122. "hyperf/http-message": "~3.1.0",
  3123. "hyperf/macroable": "~3.1.0",
  3124. "hyperf/serializer": "~3.1.0",
  3125. "hyperf/server": "~3.1.0",
  3126. "hyperf/stdlib": "~3.1.0",
  3127. "hyperf/support": "~3.1.0",
  3128. "nikic/fast-route": "^1.3",
  3129. "php": ">=8.1",
  3130. "psr/container": "^1.0 || ^2.0",
  3131. "swow/psr7-plus": "^1.0"
  3132. },
  3133. "suggest": {
  3134. "hyperf/di": "Required to use annotations."
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "hyperf": {
  3139. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3140. },
  3141. "branch-alias": {
  3142. "dev-master": "3.1-dev"
  3143. }
  3144. },
  3145. "autoload": {
  3146. "psr-4": {
  3147. "Hyperf\\HttpServer\\": "src/"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "description": "A HTTP Server for Hyperf.",
  3155. "homepage": "https://hyperf.io",
  3156. "keywords": [
  3157. "http",
  3158. "http-server",
  3159. "hyperf",
  3160. "php",
  3161. "swoole"
  3162. ],
  3163. "support": {
  3164. "docs": "https://hyperf.wiki",
  3165. "issues": "https://github.com/hyperf/hyperf/issues",
  3166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3167. "source": "https://github.com/hyperf/hyperf"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://opencollective.com/hyperf",
  3176. "type": "open_collective"
  3177. }
  3178. ],
  3179. "time": "2024-09-25T02:54:12+00:00"
  3180. },
  3181. {
  3182. "name": "hyperf/json-rpc",
  3183. "version": "v3.1.47",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/hyperf/json-rpc.git",
  3187. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3192. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "hyperf/codec": "~3.1.0",
  3197. "hyperf/context": "~3.1.0",
  3198. "hyperf/contract": "~3.1.0",
  3199. "hyperf/engine": "^2.0",
  3200. "hyperf/http-message": "~3.1.0",
  3201. "hyperf/load-balancer": "~3.1.0",
  3202. "hyperf/rpc": "~3.1.0",
  3203. "hyperf/serializer": "~3.1.0",
  3204. "hyperf/support": "~3.1.0",
  3205. "hyperf/utils": "~3.1.0",
  3206. "php": ">=8.1",
  3207. "psr/container": "^1.0 || ^2.0",
  3208. "swow/psr7-plus": "^1.0"
  3209. },
  3210. "suggest": {
  3211. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3212. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3213. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3214. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3215. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3216. },
  3217. "type": "library",
  3218. "extra": {
  3219. "hyperf": {
  3220. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3221. },
  3222. "branch-alias": {
  3223. "dev-master": "3.1-dev"
  3224. }
  3225. },
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Hyperf\\JsonRpc\\": "src/"
  3229. }
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "MIT"
  3234. ],
  3235. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3236. "homepage": "https://hyperf.io",
  3237. "keywords": [
  3238. "hyperf",
  3239. "json-rpc",
  3240. "php",
  3241. "swoole"
  3242. ],
  3243. "support": {
  3244. "docs": "https://hyperf.wiki",
  3245. "issues": "https://github.com/hyperf/hyperf/issues",
  3246. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3247. "source": "https://github.com/hyperf/hyperf"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://opencollective.com/hyperf",
  3256. "type": "open_collective"
  3257. }
  3258. ],
  3259. "time": "2024-11-28T01:51:55+00:00"
  3260. },
  3261. {
  3262. "name": "hyperf/load-balancer",
  3263. "version": "v3.1.42",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/hyperf/load-balancer.git",
  3267. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3272. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "hyperf/coordinator": "~3.1.0",
  3277. "hyperf/coroutine": "~3.1.0",
  3278. "markrogoyski/math-php": "^2.0",
  3279. "php": ">=8.1",
  3280. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3281. },
  3282. "type": "library",
  3283. "extra": {
  3284. "hyperf": {
  3285. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3286. },
  3287. "branch-alias": {
  3288. "dev-master": "3.1-dev"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "psr-4": {
  3293. "Hyperf\\LoadBalancer\\": "src/"
  3294. }
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "description": "A load balancer library for Hyperf.",
  3301. "homepage": "https://hyperf.io",
  3302. "keywords": [
  3303. "hyperf",
  3304. "load-balancer",
  3305. "php",
  3306. "swoole"
  3307. ],
  3308. "support": {
  3309. "docs": "https://hyperf.wiki",
  3310. "issues": "https://github.com/hyperf/hyperf/issues",
  3311. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3312. "source": "https://github.com/hyperf/hyperf"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://opencollective.com/hyperf",
  3321. "type": "open_collective"
  3322. }
  3323. ],
  3324. "time": "2024-09-25T02:54:12+00:00"
  3325. },
  3326. {
  3327. "name": "hyperf/logger",
  3328. "version": "v3.1.42",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/hyperf/logger.git",
  3332. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3337. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "hyperf/contract": "~3.1.0",
  3342. "hyperf/support": "~3.1.0",
  3343. "hyperf/utils": "~3.1.0",
  3344. "monolog/monolog": "^2.7 || ^3.1",
  3345. "php": ">=8.1",
  3346. "psr/container": "^1.0 || ^2.0",
  3347. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3348. },
  3349. "type": "library",
  3350. "extra": {
  3351. "hyperf": {
  3352. "config": "Hyperf\\Logger\\ConfigProvider"
  3353. },
  3354. "branch-alias": {
  3355. "dev-master": "3.1-dev"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "Hyperf\\Logger\\": "src/"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "MIT"
  3366. ],
  3367. "description": "A logger component for hyperf.",
  3368. "homepage": "https://hyperf.io",
  3369. "keywords": [
  3370. "hyperf",
  3371. "logger",
  3372. "php"
  3373. ],
  3374. "support": {
  3375. "docs": "https://hyperf.wiki",
  3376. "issues": "https://github.com/hyperf/hyperf/issues",
  3377. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3378. "source": "https://github.com/hyperf/hyperf"
  3379. },
  3380. "funding": [
  3381. {
  3382. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3383. "type": "custom"
  3384. },
  3385. {
  3386. "url": "https://opencollective.com/hyperf",
  3387. "type": "open_collective"
  3388. }
  3389. ],
  3390. "time": "2024-09-25T02:54:12+00:00"
  3391. },
  3392. {
  3393. "name": "hyperf/macroable",
  3394. "version": "v3.1.42",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/hyperf/macroable.git",
  3398. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3403. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": ">=8.1"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "3.1-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "Hyperf\\Macroable\\": "src/"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3425. "homepage": "https://hyperf.io",
  3426. "keywords": [
  3427. "hyperf",
  3428. "macroable",
  3429. "php",
  3430. "swoole"
  3431. ],
  3432. "support": {
  3433. "docs": "https://hyperf.wiki",
  3434. "issues": "https://github.com/hyperf/hyperf/issues",
  3435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3436. "source": "https://github.com/hyperf/hyperf"
  3437. },
  3438. "funding": [
  3439. {
  3440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3441. "type": "custom"
  3442. },
  3443. {
  3444. "url": "https://opencollective.com/hyperf",
  3445. "type": "open_collective"
  3446. }
  3447. ],
  3448. "time": "2024-09-25T02:54:12+00:00"
  3449. },
  3450. {
  3451. "name": "hyperf/memory",
  3452. "version": "v3.1.42",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/hyperf/memory.git",
  3456. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3461. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "php": ">=8.1"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "hyperf": {
  3470. "config": "Hyperf\\Memory\\ConfigProvider"
  3471. },
  3472. "branch-alias": {
  3473. "dev-master": "3.1-dev"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Hyperf\\Memory\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "description": "An independent component that use to operate and manage memory.",
  3486. "homepage": "https://hyperf.io",
  3487. "keywords": [
  3488. "hyperf",
  3489. "memory",
  3490. "php",
  3491. "swoole"
  3492. ],
  3493. "support": {
  3494. "docs": "https://hyperf.wiki",
  3495. "issues": "https://github.com/hyperf/hyperf/issues",
  3496. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3497. "source": "https://github.com/hyperf/hyperf"
  3498. },
  3499. "funding": [
  3500. {
  3501. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3502. "type": "custom"
  3503. },
  3504. {
  3505. "url": "https://opencollective.com/hyperf",
  3506. "type": "open_collective"
  3507. }
  3508. ],
  3509. "time": "2024-09-25T02:54:12+00:00"
  3510. },
  3511. {
  3512. "name": "hyperf/model-listener",
  3513. "version": "v3.1.42",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/hyperf/model-listener.git",
  3517. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3522. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "hyperf/contract": "~3.1.0",
  3527. "hyperf/database": "~3.1.0",
  3528. "hyperf/di": "~3.1.0",
  3529. "hyperf/event": "~3.1.0",
  3530. "hyperf/support": "~3.1.0",
  3531. "hyperf/utils": "~3.1.0",
  3532. "php": ">=8.1",
  3533. "psr/container": "^1.0 || ^2.0"
  3534. },
  3535. "type": "library",
  3536. "extra": {
  3537. "hyperf": {
  3538. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3539. },
  3540. "branch-alias": {
  3541. "dev-master": "3.1-dev"
  3542. }
  3543. },
  3544. "autoload": {
  3545. "psr-4": {
  3546. "Hyperf\\ModelListener\\": "src/"
  3547. }
  3548. },
  3549. "notification-url": "https://packagist.org/downloads/",
  3550. "license": [
  3551. "MIT"
  3552. ],
  3553. "description": "A model listener for Hyperf.",
  3554. "homepage": "https://hyperf.io",
  3555. "keywords": [
  3556. "hyperf",
  3557. "model-listener",
  3558. "php",
  3559. "swoole"
  3560. ],
  3561. "support": {
  3562. "docs": "https://hyperf.wiki",
  3563. "issues": "https://github.com/hyperf/hyperf/issues",
  3564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3565. "source": "https://github.com/hyperf/hyperf"
  3566. },
  3567. "funding": [
  3568. {
  3569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3570. "type": "custom"
  3571. },
  3572. {
  3573. "url": "https://opencollective.com/hyperf",
  3574. "type": "open_collective"
  3575. }
  3576. ],
  3577. "time": "2024-09-25T02:54:12+00:00"
  3578. },
  3579. {
  3580. "name": "hyperf/nacos",
  3581. "version": "v3.1.42",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://github.com/hyperf/nacos.git",
  3585. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3590. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3591. "shasum": ""
  3592. },
  3593. "require": {
  3594. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3595. "hyperf/codec": "~3.1.0",
  3596. "hyperf/contract": "~3.1.0",
  3597. "hyperf/support": "~3.1.0",
  3598. "hyperf/utils": "~3.1.0",
  3599. "jetbrains/phpstorm-attributes": "^1.0",
  3600. "php": ">=8.1"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "hyperf": {
  3605. "config": "Hyperf\\Nacos\\ConfigProvider"
  3606. },
  3607. "branch-alias": {
  3608. "dev-master": "3.1-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Hyperf\\Nacos\\": "src/"
  3614. }
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "description": "Nacos SDK",
  3621. "keywords": [
  3622. "hyperf",
  3623. "nacos",
  3624. "php"
  3625. ],
  3626. "support": {
  3627. "issues": "https://github.com/hyperf/nacos/issues",
  3628. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://opencollective.com/hyperf",
  3637. "type": "open_collective"
  3638. }
  3639. ],
  3640. "time": "2024-09-25T02:54:12+00:00"
  3641. },
  3642. {
  3643. "name": "hyperf/paginator",
  3644. "version": "v3.1.49",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/hyperf/paginator.git",
  3648. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3653. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "hyperf/contract": "~3.1.0",
  3658. "hyperf/support": "~3.1.0",
  3659. "hyperf/utils": "~3.1.0",
  3660. "php": ">=8.1"
  3661. },
  3662. "suggest": {
  3663. "hyperf/event": "Reqiured to use PageResolverListener.",
  3664. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3665. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3666. },
  3667. "type": "library",
  3668. "extra": {
  3669. "hyperf": {
  3670. "config": "Hyperf\\Paginator\\ConfigProvider"
  3671. },
  3672. "branch-alias": {
  3673. "dev-master": "3.1-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Hyperf\\Paginator\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "description": "A paginator component for hyperf.",
  3686. "homepage": "https://hyperf.io",
  3687. "keywords": [
  3688. "hyperf",
  3689. "paginator",
  3690. "php"
  3691. ],
  3692. "support": {
  3693. "docs": "https://hyperf.wiki",
  3694. "issues": "https://github.com/hyperf/hyperf/issues",
  3695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3696. "source": "https://github.com/hyperf/hyperf"
  3697. },
  3698. "funding": [
  3699. {
  3700. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3701. "type": "custom"
  3702. },
  3703. {
  3704. "url": "https://opencollective.com/hyperf",
  3705. "type": "open_collective"
  3706. }
  3707. ],
  3708. "time": "2024-12-17T09:42:13+00:00"
  3709. },
  3710. {
  3711. "name": "hyperf/pipeline",
  3712. "version": "v3.1.42",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/hyperf/pipeline.git",
  3716. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3721. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=8.1",
  3726. "psr/container": "^1.0 || ^2.0"
  3727. },
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "3.1-dev"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-4": {
  3736. "Hyperf\\Pipeline\\": "src/"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3744. "homepage": "https://hyperf.io",
  3745. "keywords": [
  3746. "hyperf",
  3747. "php",
  3748. "pipeline",
  3749. "swoole"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-09-25T02:54:12+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/pool",
  3771. "version": "v3.1.42",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/pool.git",
  3775. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3780. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "hyperf/contract": "~3.1.0",
  3785. "hyperf/support": "~3.1.0",
  3786. "hyperf/utils": "~3.1.0",
  3787. "php": ">=8.1",
  3788. "psr/container": "^1.0 || ^2.0"
  3789. },
  3790. "suggest": {
  3791. "psr/event-dispatcher": "Required to use events."
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "hyperf": {
  3796. "config": "Hyperf\\Pool\\ConfigProvider"
  3797. },
  3798. "branch-alias": {
  3799. "dev-master": "3.1-dev"
  3800. }
  3801. },
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Hyperf\\Pool\\": "src/"
  3805. }
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "description": "An independent universal connection pool component.",
  3812. "homepage": "https://hyperf.io",
  3813. "keywords": [
  3814. "connection-pool",
  3815. "hyperf",
  3816. "php",
  3817. "swoole"
  3818. ],
  3819. "support": {
  3820. "docs": "https://hyperf.wiki",
  3821. "issues": "https://github.com/hyperf/hyperf/issues",
  3822. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3823. "source": "https://github.com/hyperf/hyperf"
  3824. },
  3825. "funding": [
  3826. {
  3827. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3828. "type": "custom"
  3829. },
  3830. {
  3831. "url": "https://opencollective.com/hyperf",
  3832. "type": "open_collective"
  3833. }
  3834. ],
  3835. "time": "2024-09-25T02:54:12+00:00"
  3836. },
  3837. {
  3838. "name": "hyperf/process",
  3839. "version": "v3.1.48",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/hyperf/process.git",
  3843. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3848. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "hyperf/contract": "~3.1.0",
  3853. "hyperf/support": "~3.1.0",
  3854. "hyperf/utils": "~3.1.0",
  3855. "php": ">=8.1",
  3856. "psr/container": "^1.0 || ^2.0",
  3857. "psr/event-dispatcher": "^1.0"
  3858. },
  3859. "suggest": {
  3860. "hyperf/di": "Required to use annotations.",
  3861. "hyperf/event": "Required to dump the message before and after process.",
  3862. "hyperf/framework": "Required to use BootProcessListener."
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "hyperf": {
  3867. "config": "Hyperf\\Process\\ConfigProvider"
  3868. },
  3869. "branch-alias": {
  3870. "dev-master": "3.1-dev"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Hyperf\\Process\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "description": "A process component for hyperf.",
  3883. "homepage": "https://hyperf.io",
  3884. "keywords": [
  3885. "hyperf",
  3886. "php",
  3887. "process"
  3888. ],
  3889. "support": {
  3890. "docs": "https://hyperf.wiki",
  3891. "issues": "https://github.com/hyperf/hyperf/issues",
  3892. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3893. "source": "https://github.com/hyperf/hyperf"
  3894. },
  3895. "funding": [
  3896. {
  3897. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3898. "type": "custom"
  3899. },
  3900. {
  3901. "url": "https://opencollective.com/hyperf",
  3902. "type": "open_collective"
  3903. }
  3904. ],
  3905. "time": "2024-12-02T10:54:30+00:00"
  3906. },
  3907. {
  3908. "name": "hyperf/redis",
  3909. "version": "v3.1.42",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/hyperf/redis.git",
  3913. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3918. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "ext-redis": "^5.0 || ^6.0",
  3923. "hyperf/contract": "~3.1.0",
  3924. "hyperf/pool": "~3.1.0",
  3925. "hyperf/support": "~3.1.0",
  3926. "hyperf/tappable": "~3.1.0",
  3927. "hyperf/utils": "~3.1.0",
  3928. "php": ">=8.1",
  3929. "psr/container": "^1.0 || ^2.0"
  3930. },
  3931. "suggest": {
  3932. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3933. "hyperf/di": "Create the RedisPool via dependency injection."
  3934. },
  3935. "type": "library",
  3936. "extra": {
  3937. "hyperf": {
  3938. "config": "Hyperf\\Redis\\ConfigProvider"
  3939. },
  3940. "branch-alias": {
  3941. "dev-master": "3.1-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Hyperf\\Redis\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "description": "A redis component for hyperf.",
  3954. "homepage": "https://hyperf.io",
  3955. "keywords": [
  3956. "hyperf",
  3957. "php",
  3958. "pool",
  3959. "redis"
  3960. ],
  3961. "support": {
  3962. "docs": "https://hyperf.wiki",
  3963. "issues": "https://github.com/hyperf/hyperf/issues",
  3964. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3965. "source": "https://github.com/hyperf/hyperf"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3970. "type": "custom"
  3971. },
  3972. {
  3973. "url": "https://opencollective.com/hyperf",
  3974. "type": "open_collective"
  3975. }
  3976. ],
  3977. "time": "2024-09-25T02:54:12+00:00"
  3978. },
  3979. {
  3980. "name": "hyperf/rpc",
  3981. "version": "v3.1.42",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/hyperf/rpc.git",
  3985. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3990. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "hyperf/codec": "~3.1.0",
  3995. "hyperf/contract": "~3.1.0",
  3996. "hyperf/support": "~3.1.0",
  3997. "jetbrains/phpstorm-attributes": "^1.0",
  3998. "php": ">=8.1"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "hyperf": [],
  4003. "branch-alias": {
  4004. "dev-master": "3.1-dev"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "psr-4": {
  4009. "Hyperf\\Rpc\\": "src/"
  4010. }
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "description": "A rpc basic library for Hyperf.",
  4017. "homepage": "https://hyperf.io",
  4018. "keywords": [
  4019. "hyperf",
  4020. "php",
  4021. "rpc",
  4022. "swoole"
  4023. ],
  4024. "support": {
  4025. "docs": "https://hyperf.wiki",
  4026. "issues": "https://github.com/hyperf/hyperf/issues",
  4027. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4028. "source": "https://github.com/hyperf/hyperf"
  4029. },
  4030. "funding": [
  4031. {
  4032. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4033. "type": "custom"
  4034. },
  4035. {
  4036. "url": "https://opencollective.com/hyperf",
  4037. "type": "open_collective"
  4038. }
  4039. ],
  4040. "time": "2024-09-25T02:54:12+00:00"
  4041. },
  4042. {
  4043. "name": "hyperf/rpc-client",
  4044. "version": "v3.1.42",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/hyperf/rpc-client.git",
  4048. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4053. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4054. "shasum": ""
  4055. },
  4056. "require": {
  4057. "hyperf/code-parser": "~3.1.0",
  4058. "hyperf/load-balancer": "~3.1.0",
  4059. "hyperf/rpc": "~3.1.0",
  4060. "hyperf/support": "~3.1.0",
  4061. "hyperf/utils": "~3.1.0",
  4062. "jetbrains/phpstorm-attributes": "^1.0",
  4063. "php": ">=8.1",
  4064. "psr/container": "^1.0 || ^2.0"
  4065. },
  4066. "suggest": {
  4067. "hyperf/di": "For better container experience.",
  4068. "hyperf/pool": "Required to use connection pool.",
  4069. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "hyperf": {
  4074. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4075. },
  4076. "branch-alias": {
  4077. "dev-master": "3.1-dev"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Hyperf\\RpcClient\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "An abstract rpc server component for Hyperf.",
  4090. "homepage": "https://hyperf.io",
  4091. "keywords": [
  4092. "hyperf",
  4093. "json-rpc",
  4094. "php",
  4095. "rpc",
  4096. "rpc-client",
  4097. "swoole"
  4098. ],
  4099. "support": {
  4100. "docs": "https://hyperf.wiki",
  4101. "issues": "https://github.com/hyperf/hyperf/issues",
  4102. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4103. "source": "https://github.com/hyperf/hyperf"
  4104. },
  4105. "funding": [
  4106. {
  4107. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://opencollective.com/hyperf",
  4112. "type": "open_collective"
  4113. }
  4114. ],
  4115. "time": "2024-09-25T02:54:12+00:00"
  4116. },
  4117. {
  4118. "name": "hyperf/rpc-server",
  4119. "version": "v3.1.42",
  4120. "source": {
  4121. "type": "git",
  4122. "url": "https://github.com/hyperf/rpc-server.git",
  4123. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4124. },
  4125. "dist": {
  4126. "type": "zip",
  4127. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4128. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4129. "shasum": ""
  4130. },
  4131. "require": {
  4132. "hyperf/http-server": "~3.1.0",
  4133. "hyperf/rpc": "~3.1.0",
  4134. "php": ">=8.1"
  4135. },
  4136. "suggest": {
  4137. "hyperf/di": "Required to use annotations."
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "hyperf": {
  4142. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4143. },
  4144. "branch-alias": {
  4145. "dev-master": "3.1-dev"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Hyperf\\RpcServer\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "description": "An abstract rpc server component for Hyperf.",
  4158. "homepage": "https://hyperf.io",
  4159. "keywords": [
  4160. "hyperf",
  4161. "php",
  4162. "rpc",
  4163. "rpc-server",
  4164. "swoole"
  4165. ],
  4166. "support": {
  4167. "docs": "https://hyperf.wiki",
  4168. "issues": "https://github.com/hyperf/hyperf/issues",
  4169. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4170. "source": "https://github.com/hyperf/hyperf"
  4171. },
  4172. "funding": [
  4173. {
  4174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4175. "type": "custom"
  4176. },
  4177. {
  4178. "url": "https://opencollective.com/hyperf",
  4179. "type": "open_collective"
  4180. }
  4181. ],
  4182. "time": "2024-09-25T02:54:12+00:00"
  4183. },
  4184. {
  4185. "name": "hyperf/serializer",
  4186. "version": "v3.1.42",
  4187. "source": {
  4188. "type": "git",
  4189. "url": "https://github.com/hyperf/serializer.git",
  4190. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4191. },
  4192. "dist": {
  4193. "type": "zip",
  4194. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4195. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4196. "shasum": ""
  4197. },
  4198. "require": {
  4199. "hyperf/contract": "~3.1.0",
  4200. "php": ">=8.1"
  4201. },
  4202. "suggest": {
  4203. "hyperf/di": "Required to use ExceptionNormalizer",
  4204. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4205. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4206. },
  4207. "type": "library",
  4208. "extra": {
  4209. "hyperf": {
  4210. "config": "Hyperf\\Serializer\\ConfigProvider"
  4211. },
  4212. "branch-alias": {
  4213. "dev-master": "3.1-dev"
  4214. }
  4215. },
  4216. "autoload": {
  4217. "psr-4": {
  4218. "Hyperf\\Serializer\\": "src/"
  4219. }
  4220. },
  4221. "notification-url": "https://packagist.org/downloads/",
  4222. "license": [
  4223. "MIT"
  4224. ],
  4225. "description": "A serializer component for Hyperf.",
  4226. "homepage": "https://hyperf.io",
  4227. "keywords": [
  4228. "hyperf",
  4229. "php",
  4230. "swoole",
  4231. "tappable"
  4232. ],
  4233. "support": {
  4234. "docs": "https://hyperf.wiki",
  4235. "issues": "https://github.com/hyperf/hyperf/issues",
  4236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4237. "source": "https://github.com/hyperf/hyperf"
  4238. },
  4239. "funding": [
  4240. {
  4241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4242. "type": "custom"
  4243. },
  4244. {
  4245. "url": "https://opencollective.com/hyperf",
  4246. "type": "open_collective"
  4247. }
  4248. ],
  4249. "time": "2024-09-25T02:54:12+00:00"
  4250. },
  4251. {
  4252. "name": "hyperf/server",
  4253. "version": "v3.1.42",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/hyperf/server.git",
  4257. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4262. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "hyperf/contract": "~3.1.0",
  4267. "hyperf/coordinator": "~3.1.0",
  4268. "hyperf/engine": "^2.8",
  4269. "hyperf/support": "~3.1.0",
  4270. "hyperf/tappable": "~3.1.0",
  4271. "php": ">=8.1",
  4272. "psr/container": "^1.0 || ^2.0",
  4273. "psr/event-dispatcher": "^1.0",
  4274. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4275. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4276. },
  4277. "suggest": {
  4278. "hyperf/event": "Dump the info after server start.",
  4279. "hyperf/framework": "Dump the info after server start."
  4280. },
  4281. "type": "library",
  4282. "extra": {
  4283. "hyperf": {
  4284. "config": "Hyperf\\Server\\ConfigProvider"
  4285. },
  4286. "branch-alias": {
  4287. "dev-master": "3.1-dev"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Hyperf\\Server\\": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "description": "A base server library for Hyperf.",
  4300. "homepage": "https://hyperf.io",
  4301. "keywords": [
  4302. "hyperf",
  4303. "php",
  4304. "server",
  4305. "swoole"
  4306. ],
  4307. "support": {
  4308. "docs": "https://hyperf.wiki",
  4309. "issues": "https://github.com/hyperf/hyperf/issues",
  4310. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4311. "source": "https://github.com/hyperf/hyperf"
  4312. },
  4313. "funding": [
  4314. {
  4315. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4316. "type": "custom"
  4317. },
  4318. {
  4319. "url": "https://opencollective.com/hyperf",
  4320. "type": "open_collective"
  4321. }
  4322. ],
  4323. "time": "2024-09-25T02:54:12+00:00"
  4324. },
  4325. {
  4326. "name": "hyperf/service-governance",
  4327. "version": "v3.1.42",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/hyperf/service-governance.git",
  4331. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4336. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4337. "shasum": ""
  4338. },
  4339. "require": {
  4340. "hyperf/contract": "~3.1.0",
  4341. "hyperf/support": "~3.1.0",
  4342. "jetbrains/phpstorm-attributes": "^1.0",
  4343. "php": ">=8.1"
  4344. },
  4345. "suggest": {
  4346. "hyperf/event": "Required to use RegisterServiceListener.",
  4347. "hyperf/framework": "Required to use RegisterServiceListener.",
  4348. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4349. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4350. },
  4351. "type": "library",
  4352. "extra": {
  4353. "hyperf": {
  4354. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4355. },
  4356. "branch-alias": {
  4357. "dev-master": "3.1-dev"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "psr-4": {
  4362. "Hyperf\\ServiceGovernance\\": "src/"
  4363. }
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "description": "A service governance component for Hyperf.",
  4370. "homepage": "https://hyperf.io",
  4371. "keywords": [
  4372. "hyperf",
  4373. "php",
  4374. "service-governance",
  4375. "swoole"
  4376. ],
  4377. "support": {
  4378. "docs": "https://hyperf.wiki",
  4379. "issues": "https://github.com/hyperf/hyperf/issues",
  4380. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4381. "source": "https://github.com/hyperf/hyperf"
  4382. },
  4383. "funding": [
  4384. {
  4385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4386. "type": "custom"
  4387. },
  4388. {
  4389. "url": "https://opencollective.com/hyperf",
  4390. "type": "open_collective"
  4391. }
  4392. ],
  4393. "time": "2024-09-25T02:54:12+00:00"
  4394. },
  4395. {
  4396. "name": "hyperf/service-governance-consul",
  4397. "version": "v3.1.42",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/hyperf/service-governance-consul.git",
  4401. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4406. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "hyperf/consul": "~3.1.0",
  4411. "hyperf/contract": "~3.1.0",
  4412. "hyperf/service-governance": "~3.1.0",
  4413. "hyperf/support": "~3.1.0",
  4414. "hyperf/utils": "~3.1.0",
  4415. "php": ">=8.1"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "hyperf": {
  4420. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4421. },
  4422. "branch-alias": {
  4423. "dev-master": "3.1-dev"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A consul adapter for service governance.",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "consul-adapter",
  4439. "hyperf",
  4440. "php",
  4441. "service-governance",
  4442. "swoole"
  4443. ],
  4444. "support": {
  4445. "docs": "https://hyperf.wiki",
  4446. "issues": "https://github.com/hyperf/hyperf/issues",
  4447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4448. "source": "https://github.com/hyperf/hyperf"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://opencollective.com/hyperf",
  4457. "type": "open_collective"
  4458. }
  4459. ],
  4460. "time": "2024-09-25T02:54:12+00:00"
  4461. },
  4462. {
  4463. "name": "hyperf/service-governance-nacos",
  4464. "version": "v3.1.42",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4468. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4473. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "hyperf/codec": "~3.1.0",
  4478. "hyperf/contract": "~3.1.0",
  4479. "hyperf/nacos": "~3.1.0",
  4480. "hyperf/service-governance": "~3.1.0",
  4481. "hyperf/support": "~3.1.0",
  4482. "hyperf/utils": "~3.1.0",
  4483. "php": ">=8.1"
  4484. },
  4485. "type": "library",
  4486. "extra": {
  4487. "hyperf": {
  4488. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4489. },
  4490. "branch-alias": {
  4491. "dev-master": "3.1-dev"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "psr-4": {
  4496. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4497. }
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "description": "A nacos adapter for service governance.",
  4504. "homepage": "https://hyperf.io",
  4505. "keywords": [
  4506. "hyperf",
  4507. "nacos-adapter",
  4508. "php",
  4509. "service-governance",
  4510. "swoole"
  4511. ],
  4512. "support": {
  4513. "docs": "https://hyperf.wiki",
  4514. "issues": "https://github.com/hyperf/hyperf/issues",
  4515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4516. "source": "https://github.com/hyperf/hyperf"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4521. "type": "custom"
  4522. },
  4523. {
  4524. "url": "https://opencollective.com/hyperf",
  4525. "type": "open_collective"
  4526. }
  4527. ],
  4528. "time": "2024-09-25T02:54:12+00:00"
  4529. },
  4530. {
  4531. "name": "hyperf/snowflake",
  4532. "version": "v3.1.42",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/hyperf/snowflake.git",
  4536. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4541. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "hyperf/contract": "~3.1.0",
  4546. "php": ">=8.1"
  4547. },
  4548. "suggest": {
  4549. "hyperf/config": "Required to read snowflake config.",
  4550. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4551. "psr/container": "Required to use MetaGeneratorFactory."
  4552. },
  4553. "type": "library",
  4554. "extra": {
  4555. "hyperf": {
  4556. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4557. },
  4558. "branch-alias": {
  4559. "dev-master": "3.1-dev"
  4560. }
  4561. },
  4562. "autoload": {
  4563. "psr-4": {
  4564. "Hyperf\\Snowflake\\": "src/"
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "description": "A snowflake library",
  4572. "homepage": "https://hyperf.io",
  4573. "keywords": [
  4574. "php",
  4575. "snowflake"
  4576. ],
  4577. "support": {
  4578. "docs": "https://hyperf.wiki",
  4579. "issues": "https://github.com/hyperf/hyperf/issues",
  4580. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4581. "source": "https://github.com/hyperf/hyperf"
  4582. },
  4583. "funding": [
  4584. {
  4585. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4586. "type": "custom"
  4587. },
  4588. {
  4589. "url": "https://opencollective.com/hyperf",
  4590. "type": "open_collective"
  4591. }
  4592. ],
  4593. "time": "2024-09-25T02:54:12+00:00"
  4594. },
  4595. {
  4596. "name": "hyperf/stdlib",
  4597. "version": "v3.1.42",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/hyperf/stdlib.git",
  4601. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4606. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "php": ">=8.1"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "psr-4": {
  4620. "Hyperf\\Stdlib\\": "src/"
  4621. }
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "description": "A stdlib component for Hyperf.",
  4628. "homepage": "https://hyperf.io",
  4629. "keywords": [
  4630. "hyperf",
  4631. "php",
  4632. "stdlib",
  4633. "swoole"
  4634. ],
  4635. "support": {
  4636. "docs": "https://hyperf.wiki",
  4637. "issues": "https://github.com/hyperf/hyperf/issues",
  4638. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4639. "source": "https://github.com/hyperf/hyperf"
  4640. },
  4641. "funding": [
  4642. {
  4643. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4644. "type": "custom"
  4645. },
  4646. {
  4647. "url": "https://opencollective.com/hyperf",
  4648. "type": "open_collective"
  4649. }
  4650. ],
  4651. "time": "2024-09-25T02:54:12+00:00"
  4652. },
  4653. {
  4654. "name": "hyperf/stringable",
  4655. "version": "v3.1.50",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/hyperf/stringable.git",
  4659. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/hyperf/stringable/zipball/89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4664. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "ext-mbstring": "*",
  4669. "hyperf/collection": "~3.1.0",
  4670. "hyperf/conditionable": "~3.1.0",
  4671. "hyperf/macroable": "~3.1.0",
  4672. "hyperf/tappable": "~3.1.0",
  4673. "php": ">=8.1"
  4674. },
  4675. "suggest": {
  4676. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4677. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4678. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "branch-alias": {
  4683. "dev-master": "3.1-dev"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "files": [
  4688. "src/Functions.php"
  4689. ],
  4690. "psr-4": {
  4691. "Hyperf\\Stringable\\": "src/"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "description": "Hyperf Stringable package which come from illuminate/support",
  4699. "homepage": "https://hyperf.io",
  4700. "keywords": [
  4701. "hyperf",
  4702. "php",
  4703. "stringable",
  4704. "swoole"
  4705. ],
  4706. "support": {
  4707. "docs": "https://hyperf.wiki",
  4708. "issues": "https://github.com/hyperf/hyperf/issues",
  4709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4710. "source": "https://github.com/hyperf/hyperf"
  4711. },
  4712. "funding": [
  4713. {
  4714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4715. "type": "custom"
  4716. },
  4717. {
  4718. "url": "https://opencollective.com/hyperf",
  4719. "type": "open_collective"
  4720. }
  4721. ],
  4722. "time": "2025-01-08T06:57:58+00:00"
  4723. },
  4724. {
  4725. "name": "hyperf/support",
  4726. "version": "v3.1.50",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/hyperf/support.git",
  4730. "reference": "899b7dbfe39b60d25ec71da3ad445d9db0bbce1a"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/hyperf/support/zipball/899b7dbfe39b60d25ec71da3ad445d9db0bbce1a",
  4735. "reference": "899b7dbfe39b60d25ec71da3ad445d9db0bbce1a",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "hyperf/collection": "~3.1.0",
  4740. "hyperf/context": "~3.1.0",
  4741. "hyperf/contract": "~3.1.0",
  4742. "hyperf/coroutine": "~3.1.0",
  4743. "hyperf/macroable": "~3.1.0",
  4744. "hyperf/stringable": "~3.1.0",
  4745. "php": ">=8.1"
  4746. },
  4747. "suggest": {
  4748. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4749. },
  4750. "type": "library",
  4751. "extra": {
  4752. "branch-alias": {
  4753. "dev-master": "3.1-dev"
  4754. }
  4755. },
  4756. "autoload": {
  4757. "files": [
  4758. "src/Functions.php"
  4759. ],
  4760. "psr-4": {
  4761. "Hyperf\\Support\\": "src/"
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "description": "A support component for Hyperf.",
  4769. "homepage": "https://hyperf.io",
  4770. "keywords": [
  4771. "hyperf",
  4772. "php",
  4773. "support",
  4774. "swoole"
  4775. ],
  4776. "support": {
  4777. "docs": "https://hyperf.wiki",
  4778. "issues": "https://github.com/hyperf/hyperf/issues",
  4779. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4780. "source": "https://github.com/hyperf/hyperf"
  4781. },
  4782. "funding": [
  4783. {
  4784. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4785. "type": "custom"
  4786. },
  4787. {
  4788. "url": "https://opencollective.com/hyperf",
  4789. "type": "open_collective"
  4790. }
  4791. ],
  4792. "time": "2025-01-08T07:28:13+00:00"
  4793. },
  4794. {
  4795. "name": "hyperf/tappable",
  4796. "version": "v3.1.42",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/hyperf/tappable.git",
  4800. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4805. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4806. "shasum": ""
  4807. },
  4808. "require": {
  4809. "php": ">=8.1"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "3.1-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "files": [
  4819. "src/Functions.php"
  4820. ],
  4821. "psr-4": {
  4822. "Hyperf\\Tappable\\": "src/"
  4823. }
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4830. "homepage": "https://hyperf.io",
  4831. "keywords": [
  4832. "hyperf",
  4833. "php",
  4834. "swoole",
  4835. "tappable"
  4836. ],
  4837. "support": {
  4838. "docs": "https://hyperf.wiki",
  4839. "issues": "https://github.com/hyperf/hyperf/issues",
  4840. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4841. "source": "https://github.com/hyperf/hyperf"
  4842. },
  4843. "funding": [
  4844. {
  4845. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4846. "type": "custom"
  4847. },
  4848. {
  4849. "url": "https://opencollective.com/hyperf",
  4850. "type": "open_collective"
  4851. }
  4852. ],
  4853. "time": "2024-09-25T02:54:12+00:00"
  4854. },
  4855. {
  4856. "name": "hyperf/translation",
  4857. "version": "v3.1.42",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://github.com/hyperf/translation.git",
  4861. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4866. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4867. "shasum": ""
  4868. },
  4869. "require": {
  4870. "hyperf/contract": "~3.1.0",
  4871. "hyperf/macroable": "~3.1.0",
  4872. "hyperf/support": "~3.1.0",
  4873. "hyperf/utils": "~3.1.0",
  4874. "php": ">=8.1",
  4875. "psr/container": "^1.0 || ^2.0"
  4876. },
  4877. "type": "library",
  4878. "extra": {
  4879. "hyperf": {
  4880. "config": "Hyperf\\Translation\\ConfigProvider"
  4881. },
  4882. "branch-alias": {
  4883. "dev-master": "3.1-dev"
  4884. }
  4885. },
  4886. "autoload": {
  4887. "files": [
  4888. "src/Functions.php"
  4889. ],
  4890. "psr-4": {
  4891. "Hyperf\\Translation\\": "src/"
  4892. }
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "MIT"
  4897. ],
  4898. "description": "An independent translation component, forked by illuminate/translation.",
  4899. "keywords": [
  4900. "hyperf",
  4901. "translation"
  4902. ],
  4903. "support": {
  4904. "issues": "https://github.com/hyperf/translation/issues",
  4905. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4906. },
  4907. "funding": [
  4908. {
  4909. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4910. "type": "custom"
  4911. },
  4912. {
  4913. "url": "https://opencollective.com/hyperf",
  4914. "type": "open_collective"
  4915. }
  4916. ],
  4917. "time": "2024-09-25T02:54:12+00:00"
  4918. },
  4919. {
  4920. "name": "hyperf/utils",
  4921. "version": "v3.1.42",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/hyperf/utils.git",
  4925. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4930. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "doctrine/inflector": "^2.0",
  4935. "hyperf/code-parser": "~3.1.0",
  4936. "hyperf/codec": "~3.1.0",
  4937. "hyperf/collection": "~3.1.0",
  4938. "hyperf/context": "~3.1.0",
  4939. "hyperf/contract": "~3.1.0",
  4940. "hyperf/coordinator": "~3.1.0",
  4941. "hyperf/coroutine": "~3.1.0",
  4942. "hyperf/engine": "^2.0",
  4943. "hyperf/macroable": "~3.1.0",
  4944. "hyperf/serializer": "~3.1.0",
  4945. "hyperf/stringable": "~3.1.0",
  4946. "hyperf/support": "~3.1.0",
  4947. "php": ">=8.1"
  4948. },
  4949. "type": "library",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-master": "3.1-dev"
  4953. }
  4954. },
  4955. "notification-url": "https://packagist.org/downloads/",
  4956. "license": [
  4957. "MIT"
  4958. ],
  4959. "description": "A tools package that could help developer solved the problem quickly.",
  4960. "homepage": "https://hyperf.io",
  4961. "keywords": [
  4962. "hyperf",
  4963. "php",
  4964. "swoole",
  4965. "utils"
  4966. ],
  4967. "support": {
  4968. "docs": "https://hyperf.wiki",
  4969. "issues": "https://github.com/hyperf/hyperf/issues",
  4970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4971. "source": "https://github.com/hyperf/hyperf"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://opencollective.com/hyperf",
  4980. "type": "open_collective"
  4981. }
  4982. ],
  4983. "time": "2024-09-25T02:54:12+00:00"
  4984. },
  4985. {
  4986. "name": "hyperf/validation",
  4987. "version": "v3.1.47",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/hyperf/validation.git",
  4991. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4996. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4997. "shasum": ""
  4998. },
  4999. "require": {
  5000. "egulias/email-validator": "^3.0",
  5001. "hyperf/collection": "~3.1.0",
  5002. "hyperf/conditionable": "~3.1.0",
  5003. "hyperf/contract": "~3.1.0",
  5004. "hyperf/di": "~3.1.0",
  5005. "hyperf/framework": "~3.1.0",
  5006. "hyperf/macroable": "~3.1.0",
  5007. "hyperf/stringable": "~3.1.0",
  5008. "hyperf/support": "~3.1.0",
  5009. "hyperf/tappable": "~3.1.0",
  5010. "hyperf/translation": "~3.1.0",
  5011. "hyperf/utils": "~3.1.0",
  5012. "nesbot/carbon": "^2.21",
  5013. "php": ">=8.1",
  5014. "psr/container": "^1.0 || ^2.0",
  5015. "psr/event-dispatcher": "^1.0",
  5016. "psr/http-message": "^1.0 || ^2.0"
  5017. },
  5018. "suggest": {
  5019. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5020. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5021. },
  5022. "type": "library",
  5023. "extra": {
  5024. "hyperf": {
  5025. "config": "Hyperf\\Validation\\ConfigProvider"
  5026. },
  5027. "branch-alias": {
  5028. "dev-master": "3.1-dev"
  5029. }
  5030. },
  5031. "autoload": {
  5032. "psr-4": {
  5033. "Hyperf\\Validation\\": "src/"
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "description": "hyperf validation",
  5041. "keywords": [
  5042. "hyperf",
  5043. "validation"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/hyperf/validation/issues",
  5047. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5052. "type": "custom"
  5053. },
  5054. {
  5055. "url": "https://opencollective.com/hyperf",
  5056. "type": "open_collective"
  5057. }
  5058. ],
  5059. "time": "2024-11-28T01:51:55+00:00"
  5060. },
  5061. {
  5062. "name": "hyperf/websocket-server",
  5063. "version": "v3.1.50",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/hyperf/websocket-server.git",
  5067. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/c770ebf0208738bbb21000db01f09a48e15023a5",
  5072. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "hyperf/collection": "~3.1.0",
  5077. "hyperf/contract": "~3.1.0",
  5078. "hyperf/exception-handler": "~3.1.0",
  5079. "hyperf/http-server": "~3.1.0",
  5080. "hyperf/support": "~3.1.0",
  5081. "hyperf/utils": "~3.1.0",
  5082. "php": ">=8.1",
  5083. "psr/container": "^1.0 || ^2.0",
  5084. "psr/event-dispatcher": "^1.0"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "hyperf": {
  5089. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5090. },
  5091. "branch-alias": {
  5092. "dev-master": "3.1-dev"
  5093. }
  5094. },
  5095. "autoload": {
  5096. "psr-4": {
  5097. "Hyperf\\WebSocketServer\\": "src/"
  5098. }
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "MIT"
  5103. ],
  5104. "description": "A websocket server library for Hyperf.",
  5105. "homepage": "https://hyperf.io",
  5106. "keywords": [
  5107. "hyperf",
  5108. "php",
  5109. "swoole",
  5110. "websocket"
  5111. ],
  5112. "support": {
  5113. "docs": "https://hyperf.wiki",
  5114. "issues": "https://github.com/hyperf/hyperf/issues",
  5115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5116. "source": "https://github.com/hyperf/hyperf"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5121. "type": "custom"
  5122. },
  5123. {
  5124. "url": "https://opencollective.com/hyperf",
  5125. "type": "open_collective"
  5126. }
  5127. ],
  5128. "time": "2025-01-08T02:18:30+00:00"
  5129. },
  5130. {
  5131. "name": "jetbrains/phpstorm-attributes",
  5132. "version": "1.2",
  5133. "source": {
  5134. "type": "git",
  5135. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5136. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5137. },
  5138. "dist": {
  5139. "type": "zip",
  5140. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5141. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5142. "shasum": ""
  5143. },
  5144. "type": "library",
  5145. "autoload": {
  5146. "psr-4": {
  5147. "JetBrains\\PhpStorm\\": "src/"
  5148. }
  5149. },
  5150. "notification-url": "https://packagist.org/downloads/",
  5151. "license": [
  5152. "Apache-2.0"
  5153. ],
  5154. "authors": [
  5155. {
  5156. "name": "JetBrains",
  5157. "homepage": "https://www.jetbrains.com"
  5158. }
  5159. ],
  5160. "description": "PhpStorm specific attributes",
  5161. "keywords": [
  5162. "attributes",
  5163. "jetbrains",
  5164. "phpstorm"
  5165. ],
  5166. "support": {
  5167. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5168. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5169. },
  5170. "time": "2024-10-11T10:46:19+00:00"
  5171. },
  5172. {
  5173. "name": "laminas/laminas-mime",
  5174. "version": "2.12.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/laminas/laminas-mime.git",
  5178. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5183. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5188. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5189. },
  5190. "conflict": {
  5191. "zendframework/zend-mime": "*"
  5192. },
  5193. "require-dev": {
  5194. "laminas/laminas-coding-standard": "~2.4.0",
  5195. "laminas/laminas-mail": "^2.19.0",
  5196. "phpunit/phpunit": "~9.5.25"
  5197. },
  5198. "suggest": {
  5199. "laminas/laminas-mail": "Laminas\\Mail component"
  5200. },
  5201. "type": "library",
  5202. "autoload": {
  5203. "psr-4": {
  5204. "Laminas\\Mime\\": "src/"
  5205. }
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "BSD-3-Clause"
  5210. ],
  5211. "description": "Create and parse MIME messages and parts",
  5212. "homepage": "https://laminas.dev",
  5213. "keywords": [
  5214. "laminas",
  5215. "mime"
  5216. ],
  5217. "support": {
  5218. "chat": "https://laminas.dev/chat",
  5219. "docs": "https://docs.laminas.dev/laminas-mime/",
  5220. "forum": "https://discourse.laminas.dev",
  5221. "issues": "https://github.com/laminas/laminas-mime/issues",
  5222. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5223. "source": "https://github.com/laminas/laminas-mime"
  5224. },
  5225. "funding": [
  5226. {
  5227. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5228. "type": "community_bridge"
  5229. }
  5230. ],
  5231. "abandoned": "symfony/mime",
  5232. "time": "2023-11-02T16:47:19+00:00"
  5233. },
  5234. {
  5235. "name": "laminas/laminas-stdlib",
  5236. "version": "3.20.0",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/laminas/laminas-stdlib.git",
  5240. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5245. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5246. "shasum": ""
  5247. },
  5248. "require": {
  5249. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5250. },
  5251. "conflict": {
  5252. "zendframework/zend-stdlib": "*"
  5253. },
  5254. "require-dev": {
  5255. "laminas/laminas-coding-standard": "^3.0",
  5256. "phpbench/phpbench": "^1.3.1",
  5257. "phpunit/phpunit": "^10.5.38",
  5258. "psalm/plugin-phpunit": "^0.19.0",
  5259. "vimeo/psalm": "^5.26.1"
  5260. },
  5261. "type": "library",
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Laminas\\Stdlib\\": "src/"
  5265. }
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "license": [
  5269. "BSD-3-Clause"
  5270. ],
  5271. "description": "SPL extensions, array utilities, error handlers, and more",
  5272. "homepage": "https://laminas.dev",
  5273. "keywords": [
  5274. "laminas",
  5275. "stdlib"
  5276. ],
  5277. "support": {
  5278. "chat": "https://laminas.dev/chat",
  5279. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5280. "forum": "https://discourse.laminas.dev",
  5281. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5282. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5283. "source": "https://github.com/laminas/laminas-stdlib"
  5284. },
  5285. "funding": [
  5286. {
  5287. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5288. "type": "community_bridge"
  5289. }
  5290. ],
  5291. "time": "2024-10-29T13:46:07+00:00"
  5292. },
  5293. {
  5294. "name": "lcobucci/clock",
  5295. "version": "2.3.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/lcobucci/clock.git",
  5299. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5304. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "php": "~8.1.0 || ~8.2.0",
  5309. "stella-maris/clock": "^0.1.7"
  5310. },
  5311. "provide": {
  5312. "psr/clock-implementation": "1.0"
  5313. },
  5314. "require-dev": {
  5315. "infection/infection": "^0.26",
  5316. "lcobucci/coding-standard": "^9.0",
  5317. "phpstan/extension-installer": "^1.2",
  5318. "phpstan/phpstan": "^1.9.4",
  5319. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5320. "phpstan/phpstan-phpunit": "^1.3.2",
  5321. "phpstan/phpstan-strict-rules": "^1.4.4",
  5322. "phpunit/phpunit": "^9.5.27"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Lcobucci\\Clock\\": "src"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "MIT"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Luís Cobucci",
  5337. "email": "lcobucci@gmail.com"
  5338. }
  5339. ],
  5340. "description": "Yet another clock abstraction",
  5341. "support": {
  5342. "issues": "https://github.com/lcobucci/clock/issues",
  5343. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5344. },
  5345. "funding": [
  5346. {
  5347. "url": "https://github.com/lcobucci",
  5348. "type": "github"
  5349. },
  5350. {
  5351. "url": "https://www.patreon.com/lcobucci",
  5352. "type": "patreon"
  5353. }
  5354. ],
  5355. "time": "2022-12-19T14:38:11+00:00"
  5356. },
  5357. {
  5358. "name": "lcobucci/jwt",
  5359. "version": "4.1.5",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/lcobucci/jwt.git",
  5363. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5368. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "ext-hash": "*",
  5373. "ext-json": "*",
  5374. "ext-mbstring": "*",
  5375. "ext-openssl": "*",
  5376. "ext-sodium": "*",
  5377. "lcobucci/clock": "^2.0",
  5378. "php": "^7.4 || ^8.0"
  5379. },
  5380. "require-dev": {
  5381. "infection/infection": "^0.21",
  5382. "lcobucci/coding-standard": "^6.0",
  5383. "mikey179/vfsstream": "^1.6.7",
  5384. "phpbench/phpbench": "^1.0",
  5385. "phpstan/extension-installer": "^1.0",
  5386. "phpstan/phpstan": "^0.12",
  5387. "phpstan/phpstan-deprecation-rules": "^0.12",
  5388. "phpstan/phpstan-phpunit": "^0.12",
  5389. "phpstan/phpstan-strict-rules": "^0.12",
  5390. "phpunit/php-invoker": "^3.1",
  5391. "phpunit/phpunit": "^9.5"
  5392. },
  5393. "type": "library",
  5394. "autoload": {
  5395. "psr-4": {
  5396. "Lcobucci\\JWT\\": "src"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "BSD-3-Clause"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Luís Cobucci",
  5406. "email": "lcobucci@gmail.com",
  5407. "role": "Developer"
  5408. }
  5409. ],
  5410. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5411. "keywords": [
  5412. "JWS",
  5413. "jwt"
  5414. ],
  5415. "support": {
  5416. "issues": "https://github.com/lcobucci/jwt/issues",
  5417. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5418. },
  5419. "funding": [
  5420. {
  5421. "url": "https://github.com/lcobucci",
  5422. "type": "github"
  5423. },
  5424. {
  5425. "url": "https://www.patreon.com/lcobucci",
  5426. "type": "patreon"
  5427. }
  5428. ],
  5429. "time": "2021-09-28T19:34:56+00:00"
  5430. },
  5431. {
  5432. "name": "markrogoyski/math-php",
  5433. "version": "v2.10.0",
  5434. "source": {
  5435. "type": "git",
  5436. "url": "https://github.com/markrogoyski/math-php.git",
  5437. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5438. },
  5439. "dist": {
  5440. "type": "zip",
  5441. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5442. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5443. "shasum": ""
  5444. },
  5445. "require": {
  5446. "ext-json": "*",
  5447. "php": ">=7.2.0"
  5448. },
  5449. "require-dev": {
  5450. "php-coveralls/php-coveralls": "^2.0",
  5451. "php-parallel-lint/php-parallel-lint": "^1.2",
  5452. "phploc/phploc": "*",
  5453. "phpmd/phpmd": "^2.6",
  5454. "phpstan/phpstan": "^1.10",
  5455. "phpunit/phpunit": "^8.5",
  5456. "squizlabs/php_codesniffer": "3.*"
  5457. },
  5458. "type": "library",
  5459. "autoload": {
  5460. "psr-4": {
  5461. "MathPHP\\": "src/"
  5462. }
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Mark Rogoyski",
  5471. "email": "mark@rogoyski.com",
  5472. "homepage": "https://github.com/markrogoyski",
  5473. "role": "Lead developer"
  5474. },
  5475. {
  5476. "name": "Kevin Nowaczyk",
  5477. "homepage": "https://github.com/Beakerboy",
  5478. "role": "Developer"
  5479. },
  5480. {
  5481. "name": "MathPHP Community of Contributors",
  5482. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5483. }
  5484. ],
  5485. "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",
  5486. "homepage": "https://github.com/markrogoyski/math-php/",
  5487. "keywords": [
  5488. "algebra",
  5489. "combinatorics",
  5490. "distributions",
  5491. "linear algebra",
  5492. "math",
  5493. "mathematics",
  5494. "matrix",
  5495. "numerical analysis",
  5496. "probability",
  5497. "regressions",
  5498. "statistics"
  5499. ],
  5500. "support": {
  5501. "issues": "https://github.com/markrogoyski/math-php/issues",
  5502. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5503. },
  5504. "time": "2024-04-17T00:09:51+00:00"
  5505. },
  5506. {
  5507. "name": "monolog/monolog",
  5508. "version": "3.8.1",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/Seldaek/monolog.git",
  5512. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5517. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5518. "shasum": ""
  5519. },
  5520. "require": {
  5521. "php": ">=8.1",
  5522. "psr/log": "^2.0 || ^3.0"
  5523. },
  5524. "provide": {
  5525. "psr/log-implementation": "3.0.0"
  5526. },
  5527. "require-dev": {
  5528. "aws/aws-sdk-php": "^3.0",
  5529. "doctrine/couchdb": "~1.0@dev",
  5530. "elasticsearch/elasticsearch": "^7 || ^8",
  5531. "ext-json": "*",
  5532. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5533. "guzzlehttp/guzzle": "^7.4.5",
  5534. "guzzlehttp/psr7": "^2.2",
  5535. "mongodb/mongodb": "^1.8",
  5536. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5537. "php-console/php-console": "^3.1.8",
  5538. "phpstan/phpstan": "^2",
  5539. "phpstan/phpstan-deprecation-rules": "^2",
  5540. "phpstan/phpstan-strict-rules": "^2",
  5541. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5542. "predis/predis": "^1.1 || ^2",
  5543. "rollbar/rollbar": "^4.0",
  5544. "ruflin/elastica": "^7 || ^8",
  5545. "symfony/mailer": "^5.4 || ^6",
  5546. "symfony/mime": "^5.4 || ^6"
  5547. },
  5548. "suggest": {
  5549. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5550. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5551. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5552. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5553. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5554. "ext-mbstring": "Allow to work properly with unicode symbols",
  5555. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5556. "ext-openssl": "Required to send log messages using SSL",
  5557. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5558. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5559. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5560. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5561. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5562. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "branch-alias": {
  5567. "dev-main": "3.x-dev"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "psr-4": {
  5572. "Monolog\\": "src/Monolog"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "MIT"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "Jordi Boggiano",
  5582. "email": "j.boggiano@seld.be",
  5583. "homepage": "https://seld.be"
  5584. }
  5585. ],
  5586. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5587. "homepage": "https://github.com/Seldaek/monolog",
  5588. "keywords": [
  5589. "log",
  5590. "logging",
  5591. "psr-3"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/Seldaek/monolog/issues",
  5595. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5596. },
  5597. "funding": [
  5598. {
  5599. "url": "https://github.com/Seldaek",
  5600. "type": "github"
  5601. },
  5602. {
  5603. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5604. "type": "tidelift"
  5605. }
  5606. ],
  5607. "time": "2024-12-05T17:15:07+00:00"
  5608. },
  5609. {
  5610. "name": "nesbot/carbon",
  5611. "version": "2.72.6",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/CarbonPHP/carbon.git",
  5615. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5620. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "carbonphp/carbon-doctrine-types": "*",
  5625. "ext-json": "*",
  5626. "php": "^7.1.8 || ^8.0",
  5627. "psr/clock": "^1.0",
  5628. "symfony/polyfill-mbstring": "^1.0",
  5629. "symfony/polyfill-php80": "^1.16",
  5630. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5631. },
  5632. "provide": {
  5633. "psr/clock-implementation": "1.0"
  5634. },
  5635. "require-dev": {
  5636. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5637. "doctrine/orm": "^2.7 || ^3.0",
  5638. "friendsofphp/php-cs-fixer": "^3.0",
  5639. "kylekatarnls/multi-tester": "^2.0",
  5640. "ondrejmirtes/better-reflection": "<6",
  5641. "phpmd/phpmd": "^2.9",
  5642. "phpstan/extension-installer": "^1.0",
  5643. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5644. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5645. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5646. "squizlabs/php_codesniffer": "^3.4"
  5647. },
  5648. "bin": [
  5649. "bin/carbon"
  5650. ],
  5651. "type": "library",
  5652. "extra": {
  5653. "laravel": {
  5654. "providers": [
  5655. "Carbon\\Laravel\\ServiceProvider"
  5656. ]
  5657. },
  5658. "phpstan": {
  5659. "includes": [
  5660. "extension.neon"
  5661. ]
  5662. },
  5663. "branch-alias": {
  5664. "dev-2.x": "2.x-dev",
  5665. "dev-master": "3.x-dev"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Carbon\\": "src/Carbon/"
  5671. }
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "MIT"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "Brian Nesbitt",
  5680. "email": "brian@nesbot.com",
  5681. "homepage": "https://markido.com"
  5682. },
  5683. {
  5684. "name": "kylekatarnls",
  5685. "homepage": "https://github.com/kylekatarnls"
  5686. }
  5687. ],
  5688. "description": "An API extension for DateTime that supports 281 different languages.",
  5689. "homepage": "https://carbon.nesbot.com",
  5690. "keywords": [
  5691. "date",
  5692. "datetime",
  5693. "time"
  5694. ],
  5695. "support": {
  5696. "docs": "https://carbon.nesbot.com/docs",
  5697. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5698. "source": "https://github.com/briannesbitt/Carbon"
  5699. },
  5700. "funding": [
  5701. {
  5702. "url": "https://github.com/sponsors/kylekatarnls",
  5703. "type": "github"
  5704. },
  5705. {
  5706. "url": "https://opencollective.com/Carbon#sponsor",
  5707. "type": "opencollective"
  5708. },
  5709. {
  5710. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5711. "type": "tidelift"
  5712. }
  5713. ],
  5714. "time": "2024-12-27T09:28:11+00:00"
  5715. },
  5716. {
  5717. "name": "nikic/fast-route",
  5718. "version": "v1.3.0",
  5719. "source": {
  5720. "type": "git",
  5721. "url": "https://github.com/nikic/FastRoute.git",
  5722. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5723. },
  5724. "dist": {
  5725. "type": "zip",
  5726. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5727. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5728. "shasum": ""
  5729. },
  5730. "require": {
  5731. "php": ">=5.4.0"
  5732. },
  5733. "require-dev": {
  5734. "phpunit/phpunit": "^4.8.35|~5.7"
  5735. },
  5736. "type": "library",
  5737. "autoload": {
  5738. "files": [
  5739. "src/functions.php"
  5740. ],
  5741. "psr-4": {
  5742. "FastRoute\\": "src/"
  5743. }
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "BSD-3-Clause"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Nikita Popov",
  5752. "email": "nikic@php.net"
  5753. }
  5754. ],
  5755. "description": "Fast request router for PHP",
  5756. "keywords": [
  5757. "router",
  5758. "routing"
  5759. ],
  5760. "support": {
  5761. "issues": "https://github.com/nikic/FastRoute/issues",
  5762. "source": "https://github.com/nikic/FastRoute/tree/master"
  5763. },
  5764. "time": "2018-02-13T20:26:39+00:00"
  5765. },
  5766. {
  5767. "name": "nikic/php-parser",
  5768. "version": "v4.19.4",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/nikic/PHP-Parser.git",
  5772. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5777. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5778. "shasum": ""
  5779. },
  5780. "require": {
  5781. "ext-tokenizer": "*",
  5782. "php": ">=7.1"
  5783. },
  5784. "require-dev": {
  5785. "ircmaxell/php-yacc": "^0.0.7",
  5786. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5787. },
  5788. "bin": [
  5789. "bin/php-parse"
  5790. ],
  5791. "type": "library",
  5792. "extra": {
  5793. "branch-alias": {
  5794. "dev-master": "4.9-dev"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "psr-4": {
  5799. "PhpParser\\": "lib/PhpParser"
  5800. }
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "BSD-3-Clause"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Nikita Popov"
  5809. }
  5810. ],
  5811. "description": "A PHP parser written in PHP",
  5812. "keywords": [
  5813. "parser",
  5814. "php"
  5815. ],
  5816. "support": {
  5817. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5818. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5819. },
  5820. "time": "2024-09-29T15:01:53+00:00"
  5821. },
  5822. {
  5823. "name": "openai-php/client",
  5824. "version": "v0.10.3",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/openai-php/client.git",
  5828. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5833. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": "^8.1.0",
  5838. "php-http/discovery": "^1.20.0",
  5839. "php-http/multipart-stream-builder": "^1.4.2",
  5840. "psr/http-client": "^1.0.3",
  5841. "psr/http-client-implementation": "^1.0.1",
  5842. "psr/http-factory-implementation": "*",
  5843. "psr/http-message": "^1.1.0|^2.0.0"
  5844. },
  5845. "require-dev": {
  5846. "guzzlehttp/guzzle": "^7.9.2",
  5847. "guzzlehttp/psr7": "^2.7.0",
  5848. "laravel/pint": "^1.18.1",
  5849. "mockery/mockery": "^1.6.12",
  5850. "nunomaduro/collision": "^7.11.0|^8.5.0",
  5851. "pestphp/pest": "^2.36.0|^3.5.0",
  5852. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  5853. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  5854. "phpstan/phpstan": "^1.12.7",
  5855. "symfony/var-dumper": "^6.4.11|^7.1.5"
  5856. },
  5857. "type": "library",
  5858. "autoload": {
  5859. "files": [
  5860. "src/OpenAI.php"
  5861. ],
  5862. "psr-4": {
  5863. "OpenAI\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "Nuno Maduro",
  5873. "email": "enunomaduro@gmail.com"
  5874. },
  5875. {
  5876. "name": "Sandro Gehri"
  5877. }
  5878. ],
  5879. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  5880. "keywords": [
  5881. "GPT-3",
  5882. "api",
  5883. "client",
  5884. "codex",
  5885. "dall-e",
  5886. "language",
  5887. "natural",
  5888. "openai",
  5889. "php",
  5890. "processing",
  5891. "sdk"
  5892. ],
  5893. "support": {
  5894. "issues": "https://github.com/openai-php/client/issues",
  5895. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  5896. },
  5897. "funding": [
  5898. {
  5899. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5900. "type": "custom"
  5901. },
  5902. {
  5903. "url": "https://github.com/gehrisandro",
  5904. "type": "github"
  5905. },
  5906. {
  5907. "url": "https://github.com/nunomaduro",
  5908. "type": "github"
  5909. }
  5910. ],
  5911. "time": "2024-11-12T20:51:16+00:00"
  5912. },
  5913. {
  5914. "name": "paragonie/constant_time_encoding",
  5915. "version": "v3.0.0",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5919. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5924. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": "^8"
  5929. },
  5930. "require-dev": {
  5931. "phpunit/phpunit": "^9",
  5932. "vimeo/psalm": "^4|^5"
  5933. },
  5934. "type": "library",
  5935. "autoload": {
  5936. "psr-4": {
  5937. "ParagonIE\\ConstantTime\\": "src/"
  5938. }
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Paragon Initiative Enterprises",
  5947. "email": "security@paragonie.com",
  5948. "homepage": "https://paragonie.com",
  5949. "role": "Maintainer"
  5950. },
  5951. {
  5952. "name": "Steve 'Sc00bz' Thomas",
  5953. "email": "steve@tobtu.com",
  5954. "homepage": "https://www.tobtu.com",
  5955. "role": "Original Developer"
  5956. }
  5957. ],
  5958. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5959. "keywords": [
  5960. "base16",
  5961. "base32",
  5962. "base32_decode",
  5963. "base32_encode",
  5964. "base64",
  5965. "base64_decode",
  5966. "base64_encode",
  5967. "bin2hex",
  5968. "encoding",
  5969. "hex",
  5970. "hex2bin",
  5971. "rfc4648"
  5972. ],
  5973. "support": {
  5974. "email": "info@paragonie.com",
  5975. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5976. "source": "https://github.com/paragonie/constant_time_encoding"
  5977. },
  5978. "time": "2024-05-08T12:36:18+00:00"
  5979. },
  5980. {
  5981. "name": "paragonie/random_compat",
  5982. "version": "v9.99.100",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/paragonie/random_compat.git",
  5986. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5991. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5992. "shasum": ""
  5993. },
  5994. "require": {
  5995. "php": ">= 7"
  5996. },
  5997. "require-dev": {
  5998. "phpunit/phpunit": "4.*|5.*",
  5999. "vimeo/psalm": "^1"
  6000. },
  6001. "suggest": {
  6002. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6003. },
  6004. "type": "library",
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "MIT"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "Paragon Initiative Enterprises",
  6012. "email": "security@paragonie.com",
  6013. "homepage": "https://paragonie.com"
  6014. }
  6015. ],
  6016. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6017. "keywords": [
  6018. "csprng",
  6019. "polyfill",
  6020. "pseudorandom",
  6021. "random"
  6022. ],
  6023. "support": {
  6024. "email": "info@paragonie.com",
  6025. "issues": "https://github.com/paragonie/random_compat/issues",
  6026. "source": "https://github.com/paragonie/random_compat"
  6027. },
  6028. "time": "2020-10-15T08:29:30+00:00"
  6029. },
  6030. {
  6031. "name": "php-amqplib/php-amqplib",
  6032. "version": "v3.7.2",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6036. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6041. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "ext-mbstring": "*",
  6046. "ext-sockets": "*",
  6047. "php": "^7.2||^8.0",
  6048. "phpseclib/phpseclib": "^2.0|^3.0"
  6049. },
  6050. "conflict": {
  6051. "php": "7.4.0 - 7.4.1"
  6052. },
  6053. "replace": {
  6054. "videlalvaro/php-amqplib": "self.version"
  6055. },
  6056. "require-dev": {
  6057. "ext-curl": "*",
  6058. "nategood/httpful": "^0.2.20",
  6059. "phpunit/phpunit": "^7.5|^9.5",
  6060. "squizlabs/php_codesniffer": "^3.6"
  6061. },
  6062. "type": "library",
  6063. "extra": {
  6064. "branch-alias": {
  6065. "dev-master": "3.0-dev"
  6066. }
  6067. },
  6068. "autoload": {
  6069. "psr-4": {
  6070. "PhpAmqpLib\\": "PhpAmqpLib/"
  6071. }
  6072. },
  6073. "notification-url": "https://packagist.org/downloads/",
  6074. "license": [
  6075. "LGPL-2.1-or-later"
  6076. ],
  6077. "authors": [
  6078. {
  6079. "name": "Alvaro Videla",
  6080. "role": "Original Maintainer"
  6081. },
  6082. {
  6083. "name": "Raúl Araya",
  6084. "email": "nubeiro@gmail.com",
  6085. "role": "Maintainer"
  6086. },
  6087. {
  6088. "name": "Luke Bakken",
  6089. "email": "luke@bakken.io",
  6090. "role": "Maintainer"
  6091. },
  6092. {
  6093. "name": "Ramūnas Dronga",
  6094. "email": "github@ramuno.lt",
  6095. "role": "Maintainer"
  6096. }
  6097. ],
  6098. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6099. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6100. "keywords": [
  6101. "message",
  6102. "queue",
  6103. "rabbitmq"
  6104. ],
  6105. "support": {
  6106. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6107. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  6108. },
  6109. "time": "2024-11-21T09:21:41+00:00"
  6110. },
  6111. {
  6112. "name": "php-di/phpdoc-reader",
  6113. "version": "2.2.1",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6117. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6122. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "php": ">=7.2.0"
  6127. },
  6128. "require-dev": {
  6129. "mnapoli/hard-mode": "~0.3.0",
  6130. "phpunit/phpunit": "^8.5|^9.0"
  6131. },
  6132. "type": "library",
  6133. "autoload": {
  6134. "psr-4": {
  6135. "PhpDocReader\\": "src/PhpDocReader"
  6136. }
  6137. },
  6138. "notification-url": "https://packagist.org/downloads/",
  6139. "license": [
  6140. "MIT"
  6141. ],
  6142. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6143. "keywords": [
  6144. "phpdoc",
  6145. "reflection"
  6146. ],
  6147. "support": {
  6148. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6149. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6150. },
  6151. "time": "2020-10-12T12:39:22+00:00"
  6152. },
  6153. {
  6154. "name": "php-http/discovery",
  6155. "version": "1.20.0",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/php-http/discovery.git",
  6159. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6164. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "composer-plugin-api": "^1.0|^2.0",
  6169. "php": "^7.1 || ^8.0"
  6170. },
  6171. "conflict": {
  6172. "nyholm/psr7": "<1.0",
  6173. "zendframework/zend-diactoros": "*"
  6174. },
  6175. "provide": {
  6176. "php-http/async-client-implementation": "*",
  6177. "php-http/client-implementation": "*",
  6178. "psr/http-client-implementation": "*",
  6179. "psr/http-factory-implementation": "*",
  6180. "psr/http-message-implementation": "*"
  6181. },
  6182. "require-dev": {
  6183. "composer/composer": "^1.0.2|^2.0",
  6184. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6185. "php-http/httplug": "^1.0 || ^2.0",
  6186. "php-http/message-factory": "^1.0",
  6187. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6188. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6189. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6190. },
  6191. "type": "composer-plugin",
  6192. "extra": {
  6193. "class": "Http\\Discovery\\Composer\\Plugin",
  6194. "plugin-optional": true
  6195. },
  6196. "autoload": {
  6197. "psr-4": {
  6198. "Http\\Discovery\\": "src/"
  6199. },
  6200. "exclude-from-classmap": [
  6201. "src/Composer/Plugin.php"
  6202. ]
  6203. },
  6204. "notification-url": "https://packagist.org/downloads/",
  6205. "license": [
  6206. "MIT"
  6207. ],
  6208. "authors": [
  6209. {
  6210. "name": "Márk Sági-Kazár",
  6211. "email": "mark.sagikazar@gmail.com"
  6212. }
  6213. ],
  6214. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6215. "homepage": "http://php-http.org",
  6216. "keywords": [
  6217. "adapter",
  6218. "client",
  6219. "discovery",
  6220. "factory",
  6221. "http",
  6222. "message",
  6223. "psr17",
  6224. "psr7"
  6225. ],
  6226. "support": {
  6227. "issues": "https://github.com/php-http/discovery/issues",
  6228. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6229. },
  6230. "time": "2024-10-02T11:20:13+00:00"
  6231. },
  6232. {
  6233. "name": "php-http/multipart-stream-builder",
  6234. "version": "1.4.2",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/php-http/multipart-stream-builder.git",
  6238. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  6243. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  6244. "shasum": ""
  6245. },
  6246. "require": {
  6247. "php": "^7.1 || ^8.0",
  6248. "php-http/discovery": "^1.15",
  6249. "psr/http-factory-implementation": "^1.0"
  6250. },
  6251. "require-dev": {
  6252. "nyholm/psr7": "^1.0",
  6253. "php-http/message": "^1.5",
  6254. "php-http/message-factory": "^1.0.2",
  6255. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  6256. },
  6257. "type": "library",
  6258. "autoload": {
  6259. "psr-4": {
  6260. "Http\\Message\\MultipartStream\\": "src/"
  6261. }
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "MIT"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Tobias Nyholm",
  6270. "email": "tobias.nyholm@gmail.com"
  6271. }
  6272. ],
  6273. "description": "A builder class that help you create a multipart stream",
  6274. "homepage": "http://php-http.org",
  6275. "keywords": [
  6276. "factory",
  6277. "http",
  6278. "message",
  6279. "multipart stream",
  6280. "stream"
  6281. ],
  6282. "support": {
  6283. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  6284. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  6285. },
  6286. "time": "2024-09-04T13:22:54+00:00"
  6287. },
  6288. {
  6289. "name": "phper666/jwt-auth",
  6290. "version": "v4.0.11",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/phper666/jwt-auth.git",
  6294. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6299. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "ext-swoole": ">=4.4",
  6304. "lcobucci/jwt": "4.1.5",
  6305. "nesbot/carbon": "^1.0 || ^2.0",
  6306. "php": ">=7.4"
  6307. },
  6308. "suggest": {
  6309. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6310. "hyperf/command": "required hyperf/command ~2.2.0",
  6311. "hyperf/config": "required hyperf/config ~2.2.0",
  6312. "hyperf/di": "required hyperf/di ~2.2.0"
  6313. },
  6314. "type": "library",
  6315. "extra": {
  6316. "hyperf": {
  6317. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6318. }
  6319. },
  6320. "autoload": {
  6321. "files": [
  6322. "src/Functions.php"
  6323. ],
  6324. "psr-4": {
  6325. "Phper666\\JWTAuth\\": "src/"
  6326. }
  6327. },
  6328. "notification-url": "https://packagist.org/downloads/",
  6329. "license": [
  6330. "MIT"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Li Yuzhao",
  6335. "email": "562405704@qq.com",
  6336. "homepage": "https://github.com/phper666/jwt-auth",
  6337. "role": "Developer"
  6338. }
  6339. ],
  6340. "description": "jwt-auth Component",
  6341. "keywords": [
  6342. "hyperf",
  6343. "php"
  6344. ],
  6345. "support": {
  6346. "issues": "https://github.com/phper666/jwt-auth/issues",
  6347. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6348. },
  6349. "time": "2024-02-02T13:24:54+00:00"
  6350. },
  6351. {
  6352. "name": "phpoption/phpoption",
  6353. "version": "1.9.3",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/schmittjoh/php-option.git",
  6357. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6362. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "php": "^7.2.5 || ^8.0"
  6367. },
  6368. "require-dev": {
  6369. "bamarni/composer-bin-plugin": "^1.8.2",
  6370. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "bamarni-bin": {
  6375. "bin-links": true,
  6376. "forward-command": false
  6377. },
  6378. "branch-alias": {
  6379. "dev-master": "1.9-dev"
  6380. }
  6381. },
  6382. "autoload": {
  6383. "psr-4": {
  6384. "PhpOption\\": "src/PhpOption/"
  6385. }
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "Apache-2.0"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Johannes M. Schmitt",
  6394. "email": "schmittjoh@gmail.com",
  6395. "homepage": "https://github.com/schmittjoh"
  6396. },
  6397. {
  6398. "name": "Graham Campbell",
  6399. "email": "hello@gjcampbell.co.uk",
  6400. "homepage": "https://github.com/GrahamCampbell"
  6401. }
  6402. ],
  6403. "description": "Option Type for PHP",
  6404. "keywords": [
  6405. "language",
  6406. "option",
  6407. "php",
  6408. "type"
  6409. ],
  6410. "support": {
  6411. "issues": "https://github.com/schmittjoh/php-option/issues",
  6412. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://github.com/GrahamCampbell",
  6417. "type": "github"
  6418. },
  6419. {
  6420. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6421. "type": "tidelift"
  6422. }
  6423. ],
  6424. "time": "2024-07-20T21:41:07+00:00"
  6425. },
  6426. {
  6427. "name": "phpseclib/phpseclib",
  6428. "version": "3.0.43",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://github.com/phpseclib/phpseclib.git",
  6432. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6433. },
  6434. "dist": {
  6435. "type": "zip",
  6436. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6437. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6438. "shasum": ""
  6439. },
  6440. "require": {
  6441. "paragonie/constant_time_encoding": "^1|^2|^3",
  6442. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6443. "php": ">=5.6.1"
  6444. },
  6445. "require-dev": {
  6446. "phpunit/phpunit": "*"
  6447. },
  6448. "suggest": {
  6449. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6450. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6451. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6452. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6453. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "files": [
  6458. "phpseclib/bootstrap.php"
  6459. ],
  6460. "psr-4": {
  6461. "phpseclib3\\": "phpseclib/"
  6462. }
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Jim Wigginton",
  6471. "email": "terrafrost@php.net",
  6472. "role": "Lead Developer"
  6473. },
  6474. {
  6475. "name": "Patrick Monnerat",
  6476. "email": "pm@datasphere.ch",
  6477. "role": "Developer"
  6478. },
  6479. {
  6480. "name": "Andreas Fischer",
  6481. "email": "bantu@phpbb.com",
  6482. "role": "Developer"
  6483. },
  6484. {
  6485. "name": "Hans-Jürgen Petrich",
  6486. "email": "petrich@tronic-media.com",
  6487. "role": "Developer"
  6488. },
  6489. {
  6490. "name": "Graham Campbell",
  6491. "email": "graham@alt-three.com",
  6492. "role": "Developer"
  6493. }
  6494. ],
  6495. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6496. "homepage": "http://phpseclib.sourceforge.net",
  6497. "keywords": [
  6498. "BigInteger",
  6499. "aes",
  6500. "asn.1",
  6501. "asn1",
  6502. "blowfish",
  6503. "crypto",
  6504. "cryptography",
  6505. "encryption",
  6506. "rsa",
  6507. "security",
  6508. "sftp",
  6509. "signature",
  6510. "signing",
  6511. "ssh",
  6512. "twofish",
  6513. "x.509",
  6514. "x509"
  6515. ],
  6516. "support": {
  6517. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6518. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6519. },
  6520. "funding": [
  6521. {
  6522. "url": "https://github.com/terrafrost",
  6523. "type": "github"
  6524. },
  6525. {
  6526. "url": "https://www.patreon.com/phpseclib",
  6527. "type": "patreon"
  6528. },
  6529. {
  6530. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6531. "type": "tidelift"
  6532. }
  6533. ],
  6534. "time": "2024-12-14T21:12:59+00:00"
  6535. },
  6536. {
  6537. "name": "psr/cache",
  6538. "version": "3.0.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/php-fig/cache.git",
  6542. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6547. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=8.0.0"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "branch-alias": {
  6556. "dev-master": "1.0.x-dev"
  6557. }
  6558. },
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Psr\\Cache\\": "src/"
  6562. }
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "license": [
  6566. "MIT"
  6567. ],
  6568. "authors": [
  6569. {
  6570. "name": "PHP-FIG",
  6571. "homepage": "https://www.php-fig.org/"
  6572. }
  6573. ],
  6574. "description": "Common interface for caching libraries",
  6575. "keywords": [
  6576. "cache",
  6577. "psr",
  6578. "psr-6"
  6579. ],
  6580. "support": {
  6581. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6582. },
  6583. "time": "2021-02-03T23:26:27+00:00"
  6584. },
  6585. {
  6586. "name": "psr/clock",
  6587. "version": "1.0.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/php-fig/clock.git",
  6591. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6596. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "php": "^7.0 || ^8.0"
  6601. },
  6602. "type": "library",
  6603. "autoload": {
  6604. "psr-4": {
  6605. "Psr\\Clock\\": "src/"
  6606. }
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "PHP-FIG",
  6615. "homepage": "https://www.php-fig.org/"
  6616. }
  6617. ],
  6618. "description": "Common interface for reading the clock.",
  6619. "homepage": "https://github.com/php-fig/clock",
  6620. "keywords": [
  6621. "clock",
  6622. "now",
  6623. "psr",
  6624. "psr-20",
  6625. "time"
  6626. ],
  6627. "support": {
  6628. "issues": "https://github.com/php-fig/clock/issues",
  6629. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6630. },
  6631. "time": "2022-11-25T14:36:26+00:00"
  6632. },
  6633. {
  6634. "name": "psr/container",
  6635. "version": "2.0.2",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/php-fig/container.git",
  6639. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6644. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=7.4.0"
  6649. },
  6650. "type": "library",
  6651. "extra": {
  6652. "branch-alias": {
  6653. "dev-master": "2.0.x-dev"
  6654. }
  6655. },
  6656. "autoload": {
  6657. "psr-4": {
  6658. "Psr\\Container\\": "src/"
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "PHP-FIG",
  6668. "homepage": "https://www.php-fig.org/"
  6669. }
  6670. ],
  6671. "description": "Common Container Interface (PHP FIG PSR-11)",
  6672. "homepage": "https://github.com/php-fig/container",
  6673. "keywords": [
  6674. "PSR-11",
  6675. "container",
  6676. "container-interface",
  6677. "container-interop",
  6678. "psr"
  6679. ],
  6680. "support": {
  6681. "issues": "https://github.com/php-fig/container/issues",
  6682. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6683. },
  6684. "time": "2021-11-05T16:47:00+00:00"
  6685. },
  6686. {
  6687. "name": "psr/event-dispatcher",
  6688. "version": "1.0.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/php-fig/event-dispatcher.git",
  6692. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6697. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=7.2.0"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-master": "1.0.x-dev"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Psr\\EventDispatcher\\": "src/"
  6712. }
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "PHP-FIG",
  6721. "homepage": "http://www.php-fig.org/"
  6722. }
  6723. ],
  6724. "description": "Standard interfaces for event handling.",
  6725. "keywords": [
  6726. "events",
  6727. "psr",
  6728. "psr-14"
  6729. ],
  6730. "support": {
  6731. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6732. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6733. },
  6734. "time": "2019-01-08T18:20:26+00:00"
  6735. },
  6736. {
  6737. "name": "psr/http-client",
  6738. "version": "1.0.3",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/php-fig/http-client.git",
  6742. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6747. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": "^7.0 || ^8.0",
  6752. "psr/http-message": "^1.0 || ^2.0"
  6753. },
  6754. "type": "library",
  6755. "extra": {
  6756. "branch-alias": {
  6757. "dev-master": "1.0.x-dev"
  6758. }
  6759. },
  6760. "autoload": {
  6761. "psr-4": {
  6762. "Psr\\Http\\Client\\": "src/"
  6763. }
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "MIT"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "PHP-FIG",
  6772. "homepage": "https://www.php-fig.org/"
  6773. }
  6774. ],
  6775. "description": "Common interface for HTTP clients",
  6776. "homepage": "https://github.com/php-fig/http-client",
  6777. "keywords": [
  6778. "http",
  6779. "http-client",
  6780. "psr",
  6781. "psr-18"
  6782. ],
  6783. "support": {
  6784. "source": "https://github.com/php-fig/http-client"
  6785. },
  6786. "time": "2023-09-23T14:17:50+00:00"
  6787. },
  6788. {
  6789. "name": "psr/http-factory",
  6790. "version": "1.1.0",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/php-fig/http-factory.git",
  6794. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6799. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": ">=7.1",
  6804. "psr/http-message": "^1.0 || ^2.0"
  6805. },
  6806. "type": "library",
  6807. "extra": {
  6808. "branch-alias": {
  6809. "dev-master": "1.0.x-dev"
  6810. }
  6811. },
  6812. "autoload": {
  6813. "psr-4": {
  6814. "Psr\\Http\\Message\\": "src/"
  6815. }
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "MIT"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "PHP-FIG",
  6824. "homepage": "https://www.php-fig.org/"
  6825. }
  6826. ],
  6827. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6828. "keywords": [
  6829. "factory",
  6830. "http",
  6831. "message",
  6832. "psr",
  6833. "psr-17",
  6834. "psr-7",
  6835. "request",
  6836. "response"
  6837. ],
  6838. "support": {
  6839. "source": "https://github.com/php-fig/http-factory"
  6840. },
  6841. "time": "2024-04-15T12:06:14+00:00"
  6842. },
  6843. {
  6844. "name": "psr/http-message",
  6845. "version": "2.0",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/php-fig/http-message.git",
  6849. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6854. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": "^7.2 || ^8.0"
  6859. },
  6860. "type": "library",
  6861. "extra": {
  6862. "branch-alias": {
  6863. "dev-master": "2.0.x-dev"
  6864. }
  6865. },
  6866. "autoload": {
  6867. "psr-4": {
  6868. "Psr\\Http\\Message\\": "src/"
  6869. }
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "license": [
  6873. "MIT"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "PHP-FIG",
  6878. "homepage": "https://www.php-fig.org/"
  6879. }
  6880. ],
  6881. "description": "Common interface for HTTP messages",
  6882. "homepage": "https://github.com/php-fig/http-message",
  6883. "keywords": [
  6884. "http",
  6885. "http-message",
  6886. "psr",
  6887. "psr-7",
  6888. "request",
  6889. "response"
  6890. ],
  6891. "support": {
  6892. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6893. },
  6894. "time": "2023-04-04T09:54:51+00:00"
  6895. },
  6896. {
  6897. "name": "psr/http-server-handler",
  6898. "version": "1.0.2",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://github.com/php-fig/http-server-handler.git",
  6902. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6907. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6908. "shasum": ""
  6909. },
  6910. "require": {
  6911. "php": ">=7.0",
  6912. "psr/http-message": "^1.0 || ^2.0"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-master": "1.0.x-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "psr-4": {
  6922. "Psr\\Http\\Server\\": "src/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "PHP-FIG",
  6932. "homepage": "https://www.php-fig.org/"
  6933. }
  6934. ],
  6935. "description": "Common interface for HTTP server-side request handler",
  6936. "keywords": [
  6937. "handler",
  6938. "http",
  6939. "http-interop",
  6940. "psr",
  6941. "psr-15",
  6942. "psr-7",
  6943. "request",
  6944. "response",
  6945. "server"
  6946. ],
  6947. "support": {
  6948. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6949. },
  6950. "time": "2023-04-10T20:06:20+00:00"
  6951. },
  6952. {
  6953. "name": "psr/http-server-middleware",
  6954. "version": "1.0.2",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/php-fig/http-server-middleware.git",
  6958. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6963. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=7.0",
  6968. "psr/http-message": "^1.0 || ^2.0",
  6969. "psr/http-server-handler": "^1.0"
  6970. },
  6971. "type": "library",
  6972. "extra": {
  6973. "branch-alias": {
  6974. "dev-master": "1.0.x-dev"
  6975. }
  6976. },
  6977. "autoload": {
  6978. "psr-4": {
  6979. "Psr\\Http\\Server\\": "src/"
  6980. }
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "PHP-FIG",
  6989. "homepage": "https://www.php-fig.org/"
  6990. }
  6991. ],
  6992. "description": "Common interface for HTTP server-side middleware",
  6993. "keywords": [
  6994. "http",
  6995. "http-interop",
  6996. "middleware",
  6997. "psr",
  6998. "psr-15",
  6999. "psr-7",
  7000. "request",
  7001. "response"
  7002. ],
  7003. "support": {
  7004. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7005. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7006. },
  7007. "time": "2023-04-11T06:14:47+00:00"
  7008. },
  7009. {
  7010. "name": "psr/log",
  7011. "version": "3.0.2",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/php-fig/log.git",
  7015. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7020. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "php": ">=8.0.0"
  7025. },
  7026. "type": "library",
  7027. "extra": {
  7028. "branch-alias": {
  7029. "dev-master": "3.x-dev"
  7030. }
  7031. },
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Psr\\Log\\": "src"
  7035. }
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "PHP-FIG",
  7044. "homepage": "https://www.php-fig.org/"
  7045. }
  7046. ],
  7047. "description": "Common interface for logging libraries",
  7048. "homepage": "https://github.com/php-fig/log",
  7049. "keywords": [
  7050. "log",
  7051. "psr",
  7052. "psr-3"
  7053. ],
  7054. "support": {
  7055. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7056. },
  7057. "time": "2024-09-11T13:17:53+00:00"
  7058. },
  7059. {
  7060. "name": "psr/simple-cache",
  7061. "version": "3.0.0",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/php-fig/simple-cache.git",
  7065. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7070. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7071. "shasum": ""
  7072. },
  7073. "require": {
  7074. "php": ">=8.0.0"
  7075. },
  7076. "type": "library",
  7077. "extra": {
  7078. "branch-alias": {
  7079. "dev-master": "3.0.x-dev"
  7080. }
  7081. },
  7082. "autoload": {
  7083. "psr-4": {
  7084. "Psr\\SimpleCache\\": "src/"
  7085. }
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "PHP-FIG",
  7094. "homepage": "https://www.php-fig.org/"
  7095. }
  7096. ],
  7097. "description": "Common interfaces for simple caching",
  7098. "keywords": [
  7099. "cache",
  7100. "caching",
  7101. "psr",
  7102. "psr-16",
  7103. "simple-cache"
  7104. ],
  7105. "support": {
  7106. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7107. },
  7108. "time": "2021-10-29T13:26:27+00:00"
  7109. },
  7110. {
  7111. "name": "ralouphie/getallheaders",
  7112. "version": "3.0.3",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/ralouphie/getallheaders.git",
  7116. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7121. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7122. "shasum": ""
  7123. },
  7124. "require": {
  7125. "php": ">=5.6"
  7126. },
  7127. "require-dev": {
  7128. "php-coveralls/php-coveralls": "^2.1",
  7129. "phpunit/phpunit": "^5 || ^6.5"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "files": [
  7134. "src/getallheaders.php"
  7135. ]
  7136. },
  7137. "notification-url": "https://packagist.org/downloads/",
  7138. "license": [
  7139. "MIT"
  7140. ],
  7141. "authors": [
  7142. {
  7143. "name": "Ralph Khattar",
  7144. "email": "ralph.khattar@gmail.com"
  7145. }
  7146. ],
  7147. "description": "A polyfill for getallheaders.",
  7148. "support": {
  7149. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7150. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7151. },
  7152. "time": "2019-03-08T08:55:37+00:00"
  7153. },
  7154. {
  7155. "name": "stella-maris/clock",
  7156. "version": "0.1.7",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/stella-maris-solutions/clock.git",
  7160. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7165. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": "^7.0|^8.0",
  7170. "psr/clock": "^1.0"
  7171. },
  7172. "type": "library",
  7173. "autoload": {
  7174. "psr-4": {
  7175. "StellaMaris\\Clock\\": "src"
  7176. }
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Andreas Heigl",
  7185. "role": "Maintainer"
  7186. }
  7187. ],
  7188. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  7189. "homepage": "https://gitlab.com/stella-maris/clock",
  7190. "keywords": [
  7191. "clock",
  7192. "datetime",
  7193. "point in time",
  7194. "psr20"
  7195. ],
  7196. "support": {
  7197. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  7198. },
  7199. "time": "2022-11-25T16:15:06+00:00"
  7200. },
  7201. {
  7202. "name": "swow/psr7-plus",
  7203. "version": "v1.1.2",
  7204. "source": {
  7205. "type": "git",
  7206. "url": "https://github.com/swow/psr7-plus.git",
  7207. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  7208. },
  7209. "dist": {
  7210. "type": "zip",
  7211. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  7212. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  7213. "shasum": ""
  7214. },
  7215. "require": {
  7216. "php": ">=8.0",
  7217. "psr/http-client": "^1.0",
  7218. "psr/http-factory": "^1.0",
  7219. "psr/http-message": "^1.1|^2.0"
  7220. },
  7221. "type": "library",
  7222. "autoload": {
  7223. "psr-4": {
  7224. "Swow\\Psr7\\Message\\": "src/Message/"
  7225. }
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "Apache-2.0"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "twose",
  7234. "email": "twosee@php.net"
  7235. }
  7236. ],
  7237. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  7238. "keywords": [
  7239. "http",
  7240. "psr17",
  7241. "psr7",
  7242. "swow",
  7243. "websocket"
  7244. ],
  7245. "support": {
  7246. "issues": "https://github.com/swow/swow",
  7247. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  7248. },
  7249. "time": "2023-06-15T09:18:11+00:00"
  7250. },
  7251. {
  7252. "name": "symfony/console",
  7253. "version": "v6.4.17",
  7254. "source": {
  7255. "type": "git",
  7256. "url": "https://github.com/symfony/console.git",
  7257. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04"
  7258. },
  7259. "dist": {
  7260. "type": "zip",
  7261. "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04",
  7262. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  7263. "shasum": ""
  7264. },
  7265. "require": {
  7266. "php": ">=8.1",
  7267. "symfony/deprecation-contracts": "^2.5|^3",
  7268. "symfony/polyfill-mbstring": "~1.0",
  7269. "symfony/service-contracts": "^2.5|^3",
  7270. "symfony/string": "^5.4|^6.0|^7.0"
  7271. },
  7272. "conflict": {
  7273. "symfony/dependency-injection": "<5.4",
  7274. "symfony/dotenv": "<5.4",
  7275. "symfony/event-dispatcher": "<5.4",
  7276. "symfony/lock": "<5.4",
  7277. "symfony/process": "<5.4"
  7278. },
  7279. "provide": {
  7280. "psr/log-implementation": "1.0|2.0|3.0"
  7281. },
  7282. "require-dev": {
  7283. "psr/log": "^1|^2|^3",
  7284. "symfony/config": "^5.4|^6.0|^7.0",
  7285. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7286. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7287. "symfony/http-foundation": "^6.4|^7.0",
  7288. "symfony/http-kernel": "^6.4|^7.0",
  7289. "symfony/lock": "^5.4|^6.0|^7.0",
  7290. "symfony/messenger": "^5.4|^6.0|^7.0",
  7291. "symfony/process": "^5.4|^6.0|^7.0",
  7292. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7293. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7294. },
  7295. "type": "library",
  7296. "autoload": {
  7297. "psr-4": {
  7298. "Symfony\\Component\\Console\\": ""
  7299. },
  7300. "exclude-from-classmap": [
  7301. "/Tests/"
  7302. ]
  7303. },
  7304. "notification-url": "https://packagist.org/downloads/",
  7305. "license": [
  7306. "MIT"
  7307. ],
  7308. "authors": [
  7309. {
  7310. "name": "Fabien Potencier",
  7311. "email": "fabien@symfony.com"
  7312. },
  7313. {
  7314. "name": "Symfony Community",
  7315. "homepage": "https://symfony.com/contributors"
  7316. }
  7317. ],
  7318. "description": "Eases the creation of beautiful and testable command line interfaces",
  7319. "homepage": "https://symfony.com",
  7320. "keywords": [
  7321. "cli",
  7322. "command-line",
  7323. "console",
  7324. "terminal"
  7325. ],
  7326. "support": {
  7327. "source": "https://github.com/symfony/console/tree/v6.4.17"
  7328. },
  7329. "funding": [
  7330. {
  7331. "url": "https://symfony.com/sponsor",
  7332. "type": "custom"
  7333. },
  7334. {
  7335. "url": "https://github.com/fabpot",
  7336. "type": "github"
  7337. },
  7338. {
  7339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7340. "type": "tidelift"
  7341. }
  7342. ],
  7343. "time": "2024-12-07T12:07:30+00:00"
  7344. },
  7345. {
  7346. "name": "symfony/deprecation-contracts",
  7347. "version": "v3.5.1",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/symfony/deprecation-contracts.git",
  7351. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7356. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "php": ">=8.1"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "thanks": {
  7365. "url": "https://github.com/symfony/contracts",
  7366. "name": "symfony/contracts"
  7367. },
  7368. "branch-alias": {
  7369. "dev-main": "3.5-dev"
  7370. }
  7371. },
  7372. "autoload": {
  7373. "files": [
  7374. "function.php"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Nicolas Grekas",
  7384. "email": "p@tchwork.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "A generic function and convention to trigger deprecation notices",
  7392. "homepage": "https://symfony.com",
  7393. "support": {
  7394. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2024-09-25T14:20:29+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/finder",
  7414. "version": "v6.4.17",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/finder.git",
  7418. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7423. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": ">=8.1"
  7428. },
  7429. "require-dev": {
  7430. "symfony/filesystem": "^6.0|^7.0"
  7431. },
  7432. "type": "library",
  7433. "autoload": {
  7434. "psr-4": {
  7435. "Symfony\\Component\\Finder\\": ""
  7436. },
  7437. "exclude-from-classmap": [
  7438. "/Tests/"
  7439. ]
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Fabien Potencier",
  7448. "email": "fabien@symfony.com"
  7449. },
  7450. {
  7451. "name": "Symfony Community",
  7452. "homepage": "https://symfony.com/contributors"
  7453. }
  7454. ],
  7455. "description": "Finds files and directories via an intuitive fluent interface",
  7456. "homepage": "https://symfony.com",
  7457. "support": {
  7458. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7459. },
  7460. "funding": [
  7461. {
  7462. "url": "https://symfony.com/sponsor",
  7463. "type": "custom"
  7464. },
  7465. {
  7466. "url": "https://github.com/fabpot",
  7467. "type": "github"
  7468. },
  7469. {
  7470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7471. "type": "tidelift"
  7472. }
  7473. ],
  7474. "time": "2024-12-29T13:51:37+00:00"
  7475. },
  7476. {
  7477. "name": "symfony/polyfill-ctype",
  7478. "version": "v1.31.0",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/symfony/polyfill-ctype.git",
  7482. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7487. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7488. "shasum": ""
  7489. },
  7490. "require": {
  7491. "php": ">=7.2"
  7492. },
  7493. "provide": {
  7494. "ext-ctype": "*"
  7495. },
  7496. "suggest": {
  7497. "ext-ctype": "For best performance"
  7498. },
  7499. "type": "library",
  7500. "extra": {
  7501. "thanks": {
  7502. "url": "https://github.com/symfony/polyfill",
  7503. "name": "symfony/polyfill"
  7504. }
  7505. },
  7506. "autoload": {
  7507. "files": [
  7508. "bootstrap.php"
  7509. ],
  7510. "psr-4": {
  7511. "Symfony\\Polyfill\\Ctype\\": ""
  7512. }
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "Gert de Pagter",
  7521. "email": "BackEndTea@gmail.com"
  7522. },
  7523. {
  7524. "name": "Symfony Community",
  7525. "homepage": "https://symfony.com/contributors"
  7526. }
  7527. ],
  7528. "description": "Symfony polyfill for ctype functions",
  7529. "homepage": "https://symfony.com",
  7530. "keywords": [
  7531. "compatibility",
  7532. "ctype",
  7533. "polyfill",
  7534. "portable"
  7535. ],
  7536. "support": {
  7537. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7538. },
  7539. "funding": [
  7540. {
  7541. "url": "https://symfony.com/sponsor",
  7542. "type": "custom"
  7543. },
  7544. {
  7545. "url": "https://github.com/fabpot",
  7546. "type": "github"
  7547. },
  7548. {
  7549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7550. "type": "tidelift"
  7551. }
  7552. ],
  7553. "time": "2024-09-09T11:45:10+00:00"
  7554. },
  7555. {
  7556. "name": "symfony/polyfill-intl-grapheme",
  7557. "version": "v1.31.0",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7561. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7566. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=7.2"
  7571. },
  7572. "suggest": {
  7573. "ext-intl": "For best performance"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "thanks": {
  7578. "url": "https://github.com/symfony/polyfill",
  7579. "name": "symfony/polyfill"
  7580. }
  7581. },
  7582. "autoload": {
  7583. "files": [
  7584. "bootstrap.php"
  7585. ],
  7586. "psr-4": {
  7587. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nicolas Grekas",
  7597. "email": "p@tchwork.com"
  7598. },
  7599. {
  7600. "name": "Symfony Community",
  7601. "homepage": "https://symfony.com/contributors"
  7602. }
  7603. ],
  7604. "description": "Symfony polyfill for intl's grapheme_* functions",
  7605. "homepage": "https://symfony.com",
  7606. "keywords": [
  7607. "compatibility",
  7608. "grapheme",
  7609. "intl",
  7610. "polyfill",
  7611. "portable",
  7612. "shim"
  7613. ],
  7614. "support": {
  7615. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7616. },
  7617. "funding": [
  7618. {
  7619. "url": "https://symfony.com/sponsor",
  7620. "type": "custom"
  7621. },
  7622. {
  7623. "url": "https://github.com/fabpot",
  7624. "type": "github"
  7625. },
  7626. {
  7627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7628. "type": "tidelift"
  7629. }
  7630. ],
  7631. "time": "2024-09-09T11:45:10+00:00"
  7632. },
  7633. {
  7634. "name": "symfony/polyfill-intl-idn",
  7635. "version": "v1.31.0",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7639. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7644. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "php": ">=7.2",
  7649. "symfony/polyfill-intl-normalizer": "^1.10"
  7650. },
  7651. "suggest": {
  7652. "ext-intl": "For best performance"
  7653. },
  7654. "type": "library",
  7655. "extra": {
  7656. "thanks": {
  7657. "url": "https://github.com/symfony/polyfill",
  7658. "name": "symfony/polyfill"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "files": [
  7663. "bootstrap.php"
  7664. ],
  7665. "psr-4": {
  7666. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Laurent Bassin",
  7676. "email": "laurent@bassin.info"
  7677. },
  7678. {
  7679. "name": "Trevor Rowbotham",
  7680. "email": "trevor.rowbotham@pm.me"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7688. "homepage": "https://symfony.com",
  7689. "keywords": [
  7690. "compatibility",
  7691. "idn",
  7692. "intl",
  7693. "polyfill",
  7694. "portable",
  7695. "shim"
  7696. ],
  7697. "support": {
  7698. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7699. },
  7700. "funding": [
  7701. {
  7702. "url": "https://symfony.com/sponsor",
  7703. "type": "custom"
  7704. },
  7705. {
  7706. "url": "https://github.com/fabpot",
  7707. "type": "github"
  7708. },
  7709. {
  7710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7711. "type": "tidelift"
  7712. }
  7713. ],
  7714. "time": "2024-09-09T11:45:10+00:00"
  7715. },
  7716. {
  7717. "name": "symfony/polyfill-intl-normalizer",
  7718. "version": "v1.31.0",
  7719. "source": {
  7720. "type": "git",
  7721. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7722. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7723. },
  7724. "dist": {
  7725. "type": "zip",
  7726. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7727. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7728. "shasum": ""
  7729. },
  7730. "require": {
  7731. "php": ">=7.2"
  7732. },
  7733. "suggest": {
  7734. "ext-intl": "For best performance"
  7735. },
  7736. "type": "library",
  7737. "extra": {
  7738. "thanks": {
  7739. "url": "https://github.com/symfony/polyfill",
  7740. "name": "symfony/polyfill"
  7741. }
  7742. },
  7743. "autoload": {
  7744. "files": [
  7745. "bootstrap.php"
  7746. ],
  7747. "psr-4": {
  7748. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7749. },
  7750. "classmap": [
  7751. "Resources/stubs"
  7752. ]
  7753. },
  7754. "notification-url": "https://packagist.org/downloads/",
  7755. "license": [
  7756. "MIT"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "Nicolas Grekas",
  7761. "email": "p@tchwork.com"
  7762. },
  7763. {
  7764. "name": "Symfony Community",
  7765. "homepage": "https://symfony.com/contributors"
  7766. }
  7767. ],
  7768. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7769. "homepage": "https://symfony.com",
  7770. "keywords": [
  7771. "compatibility",
  7772. "intl",
  7773. "normalizer",
  7774. "polyfill",
  7775. "portable",
  7776. "shim"
  7777. ],
  7778. "support": {
  7779. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7780. },
  7781. "funding": [
  7782. {
  7783. "url": "https://symfony.com/sponsor",
  7784. "type": "custom"
  7785. },
  7786. {
  7787. "url": "https://github.com/fabpot",
  7788. "type": "github"
  7789. },
  7790. {
  7791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7792. "type": "tidelift"
  7793. }
  7794. ],
  7795. "time": "2024-09-09T11:45:10+00:00"
  7796. },
  7797. {
  7798. "name": "symfony/polyfill-mbstring",
  7799. "version": "v1.31.0",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7803. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7808. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7809. "shasum": ""
  7810. },
  7811. "require": {
  7812. "php": ">=7.2"
  7813. },
  7814. "provide": {
  7815. "ext-mbstring": "*"
  7816. },
  7817. "suggest": {
  7818. "ext-mbstring": "For best performance"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "thanks": {
  7823. "url": "https://github.com/symfony/polyfill",
  7824. "name": "symfony/polyfill"
  7825. }
  7826. },
  7827. "autoload": {
  7828. "files": [
  7829. "bootstrap.php"
  7830. ],
  7831. "psr-4": {
  7832. "Symfony\\Polyfill\\Mbstring\\": ""
  7833. }
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Nicolas Grekas",
  7842. "email": "p@tchwork.com"
  7843. },
  7844. {
  7845. "name": "Symfony Community",
  7846. "homepage": "https://symfony.com/contributors"
  7847. }
  7848. ],
  7849. "description": "Symfony polyfill for the Mbstring extension",
  7850. "homepage": "https://symfony.com",
  7851. "keywords": [
  7852. "compatibility",
  7853. "mbstring",
  7854. "polyfill",
  7855. "portable",
  7856. "shim"
  7857. ],
  7858. "support": {
  7859. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7860. },
  7861. "funding": [
  7862. {
  7863. "url": "https://symfony.com/sponsor",
  7864. "type": "custom"
  7865. },
  7866. {
  7867. "url": "https://github.com/fabpot",
  7868. "type": "github"
  7869. },
  7870. {
  7871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7872. "type": "tidelift"
  7873. }
  7874. ],
  7875. "time": "2024-09-09T11:45:10+00:00"
  7876. },
  7877. {
  7878. "name": "symfony/polyfill-php80",
  7879. "version": "v1.31.0",
  7880. "source": {
  7881. "type": "git",
  7882. "url": "https://github.com/symfony/polyfill-php80.git",
  7883. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7884. },
  7885. "dist": {
  7886. "type": "zip",
  7887. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7888. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7889. "shasum": ""
  7890. },
  7891. "require": {
  7892. "php": ">=7.2"
  7893. },
  7894. "type": "library",
  7895. "extra": {
  7896. "thanks": {
  7897. "url": "https://github.com/symfony/polyfill",
  7898. "name": "symfony/polyfill"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "files": [
  7903. "bootstrap.php"
  7904. ],
  7905. "psr-4": {
  7906. "Symfony\\Polyfill\\Php80\\": ""
  7907. },
  7908. "classmap": [
  7909. "Resources/stubs"
  7910. ]
  7911. },
  7912. "notification-url": "https://packagist.org/downloads/",
  7913. "license": [
  7914. "MIT"
  7915. ],
  7916. "authors": [
  7917. {
  7918. "name": "Ion Bazan",
  7919. "email": "ion.bazan@gmail.com"
  7920. },
  7921. {
  7922. "name": "Nicolas Grekas",
  7923. "email": "p@tchwork.com"
  7924. },
  7925. {
  7926. "name": "Symfony Community",
  7927. "homepage": "https://symfony.com/contributors"
  7928. }
  7929. ],
  7930. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7931. "homepage": "https://symfony.com",
  7932. "keywords": [
  7933. "compatibility",
  7934. "polyfill",
  7935. "portable",
  7936. "shim"
  7937. ],
  7938. "support": {
  7939. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7940. },
  7941. "funding": [
  7942. {
  7943. "url": "https://symfony.com/sponsor",
  7944. "type": "custom"
  7945. },
  7946. {
  7947. "url": "https://github.com/fabpot",
  7948. "type": "github"
  7949. },
  7950. {
  7951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7952. "type": "tidelift"
  7953. }
  7954. ],
  7955. "time": "2024-09-09T11:45:10+00:00"
  7956. },
  7957. {
  7958. "name": "symfony/service-contracts",
  7959. "version": "v3.5.1",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://github.com/symfony/service-contracts.git",
  7963. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7968. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7969. "shasum": ""
  7970. },
  7971. "require": {
  7972. "php": ">=8.1",
  7973. "psr/container": "^1.1|^2.0",
  7974. "symfony/deprecation-contracts": "^2.5|^3"
  7975. },
  7976. "conflict": {
  7977. "ext-psr": "<1.1|>=2"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "thanks": {
  7982. "url": "https://github.com/symfony/contracts",
  7983. "name": "symfony/contracts"
  7984. },
  7985. "branch-alias": {
  7986. "dev-main": "3.5-dev"
  7987. }
  7988. },
  7989. "autoload": {
  7990. "psr-4": {
  7991. "Symfony\\Contracts\\Service\\": ""
  7992. },
  7993. "exclude-from-classmap": [
  7994. "/Test/"
  7995. ]
  7996. },
  7997. "notification-url": "https://packagist.org/downloads/",
  7998. "license": [
  7999. "MIT"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "Nicolas Grekas",
  8004. "email": "p@tchwork.com"
  8005. },
  8006. {
  8007. "name": "Symfony Community",
  8008. "homepage": "https://symfony.com/contributors"
  8009. }
  8010. ],
  8011. "description": "Generic abstractions related to writing services",
  8012. "homepage": "https://symfony.com",
  8013. "keywords": [
  8014. "abstractions",
  8015. "contracts",
  8016. "decoupling",
  8017. "interfaces",
  8018. "interoperability",
  8019. "standards"
  8020. ],
  8021. "support": {
  8022. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8023. },
  8024. "funding": [
  8025. {
  8026. "url": "https://symfony.com/sponsor",
  8027. "type": "custom"
  8028. },
  8029. {
  8030. "url": "https://github.com/fabpot",
  8031. "type": "github"
  8032. },
  8033. {
  8034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8035. "type": "tidelift"
  8036. }
  8037. ],
  8038. "time": "2024-09-25T14:20:29+00:00"
  8039. },
  8040. {
  8041. "name": "symfony/string",
  8042. "version": "v6.4.15",
  8043. "source": {
  8044. "type": "git",
  8045. "url": "https://github.com/symfony/string.git",
  8046. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  8047. },
  8048. "dist": {
  8049. "type": "zip",
  8050. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8051. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8052. "shasum": ""
  8053. },
  8054. "require": {
  8055. "php": ">=8.1",
  8056. "symfony/polyfill-ctype": "~1.8",
  8057. "symfony/polyfill-intl-grapheme": "~1.0",
  8058. "symfony/polyfill-intl-normalizer": "~1.0",
  8059. "symfony/polyfill-mbstring": "~1.0"
  8060. },
  8061. "conflict": {
  8062. "symfony/translation-contracts": "<2.5"
  8063. },
  8064. "require-dev": {
  8065. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8066. "symfony/http-client": "^5.4|^6.0|^7.0",
  8067. "symfony/intl": "^6.2|^7.0",
  8068. "symfony/translation-contracts": "^2.5|^3.0",
  8069. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8070. },
  8071. "type": "library",
  8072. "autoload": {
  8073. "files": [
  8074. "Resources/functions.php"
  8075. ],
  8076. "psr-4": {
  8077. "Symfony\\Component\\String\\": ""
  8078. },
  8079. "exclude-from-classmap": [
  8080. "/Tests/"
  8081. ]
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "Nicolas Grekas",
  8090. "email": "p@tchwork.com"
  8091. },
  8092. {
  8093. "name": "Symfony Community",
  8094. "homepage": "https://symfony.com/contributors"
  8095. }
  8096. ],
  8097. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8098. "homepage": "https://symfony.com",
  8099. "keywords": [
  8100. "grapheme",
  8101. "i18n",
  8102. "string",
  8103. "unicode",
  8104. "utf-8",
  8105. "utf8"
  8106. ],
  8107. "support": {
  8108. "source": "https://github.com/symfony/string/tree/v6.4.15"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://symfony.com/sponsor",
  8113. "type": "custom"
  8114. },
  8115. {
  8116. "url": "https://github.com/fabpot",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8121. "type": "tidelift"
  8122. }
  8123. ],
  8124. "time": "2024-11-13T13:31:12+00:00"
  8125. },
  8126. {
  8127. "name": "symfony/translation",
  8128. "version": "v6.4.13",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/symfony/translation.git",
  8132. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8137. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8138. "shasum": ""
  8139. },
  8140. "require": {
  8141. "php": ">=8.1",
  8142. "symfony/deprecation-contracts": "^2.5|^3",
  8143. "symfony/polyfill-mbstring": "~1.0",
  8144. "symfony/translation-contracts": "^2.5|^3.0"
  8145. },
  8146. "conflict": {
  8147. "symfony/config": "<5.4",
  8148. "symfony/console": "<5.4",
  8149. "symfony/dependency-injection": "<5.4",
  8150. "symfony/http-client-contracts": "<2.5",
  8151. "symfony/http-kernel": "<5.4",
  8152. "symfony/service-contracts": "<2.5",
  8153. "symfony/twig-bundle": "<5.4",
  8154. "symfony/yaml": "<5.4"
  8155. },
  8156. "provide": {
  8157. "symfony/translation-implementation": "2.3|3.0"
  8158. },
  8159. "require-dev": {
  8160. "nikic/php-parser": "^4.18|^5.0",
  8161. "psr/log": "^1|^2|^3",
  8162. "symfony/config": "^5.4|^6.0|^7.0",
  8163. "symfony/console": "^5.4|^6.0|^7.0",
  8164. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8165. "symfony/finder": "^5.4|^6.0|^7.0",
  8166. "symfony/http-client-contracts": "^2.5|^3.0",
  8167. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8168. "symfony/intl": "^5.4|^6.0|^7.0",
  8169. "symfony/polyfill-intl-icu": "^1.21",
  8170. "symfony/routing": "^5.4|^6.0|^7.0",
  8171. "symfony/service-contracts": "^2.5|^3",
  8172. "symfony/yaml": "^5.4|^6.0|^7.0"
  8173. },
  8174. "type": "library",
  8175. "autoload": {
  8176. "files": [
  8177. "Resources/functions.php"
  8178. ],
  8179. "psr-4": {
  8180. "Symfony\\Component\\Translation\\": ""
  8181. },
  8182. "exclude-from-classmap": [
  8183. "/Tests/"
  8184. ]
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Fabien Potencier",
  8193. "email": "fabien@symfony.com"
  8194. },
  8195. {
  8196. "name": "Symfony Community",
  8197. "homepage": "https://symfony.com/contributors"
  8198. }
  8199. ],
  8200. "description": "Provides tools to internationalize your application",
  8201. "homepage": "https://symfony.com",
  8202. "support": {
  8203. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  8204. },
  8205. "funding": [
  8206. {
  8207. "url": "https://symfony.com/sponsor",
  8208. "type": "custom"
  8209. },
  8210. {
  8211. "url": "https://github.com/fabpot",
  8212. "type": "github"
  8213. },
  8214. {
  8215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8216. "type": "tidelift"
  8217. }
  8218. ],
  8219. "time": "2024-09-27T18:14:25+00:00"
  8220. },
  8221. {
  8222. "name": "symfony/translation-contracts",
  8223. "version": "v3.5.1",
  8224. "source": {
  8225. "type": "git",
  8226. "url": "https://github.com/symfony/translation-contracts.git",
  8227. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8228. },
  8229. "dist": {
  8230. "type": "zip",
  8231. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8232. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8233. "shasum": ""
  8234. },
  8235. "require": {
  8236. "php": ">=8.1"
  8237. },
  8238. "type": "library",
  8239. "extra": {
  8240. "thanks": {
  8241. "url": "https://github.com/symfony/contracts",
  8242. "name": "symfony/contracts"
  8243. },
  8244. "branch-alias": {
  8245. "dev-main": "3.5-dev"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "psr-4": {
  8250. "Symfony\\Contracts\\Translation\\": ""
  8251. },
  8252. "exclude-from-classmap": [
  8253. "/Test/"
  8254. ]
  8255. },
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "MIT"
  8259. ],
  8260. "authors": [
  8261. {
  8262. "name": "Nicolas Grekas",
  8263. "email": "p@tchwork.com"
  8264. },
  8265. {
  8266. "name": "Symfony Community",
  8267. "homepage": "https://symfony.com/contributors"
  8268. }
  8269. ],
  8270. "description": "Generic abstractions related to translation",
  8271. "homepage": "https://symfony.com",
  8272. "keywords": [
  8273. "abstractions",
  8274. "contracts",
  8275. "decoupling",
  8276. "interfaces",
  8277. "interoperability",
  8278. "standards"
  8279. ],
  8280. "support": {
  8281. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8282. },
  8283. "funding": [
  8284. {
  8285. "url": "https://symfony.com/sponsor",
  8286. "type": "custom"
  8287. },
  8288. {
  8289. "url": "https://github.com/fabpot",
  8290. "type": "github"
  8291. },
  8292. {
  8293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8294. "type": "tidelift"
  8295. }
  8296. ],
  8297. "time": "2024-09-25T14:20:29+00:00"
  8298. },
  8299. {
  8300. "name": "vlucas/phpdotenv",
  8301. "version": "v5.6.1",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/vlucas/phpdotenv.git",
  8305. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8310. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8311. "shasum": ""
  8312. },
  8313. "require": {
  8314. "ext-pcre": "*",
  8315. "graham-campbell/result-type": "^1.1.3",
  8316. "php": "^7.2.5 || ^8.0",
  8317. "phpoption/phpoption": "^1.9.3",
  8318. "symfony/polyfill-ctype": "^1.24",
  8319. "symfony/polyfill-mbstring": "^1.24",
  8320. "symfony/polyfill-php80": "^1.24"
  8321. },
  8322. "require-dev": {
  8323. "bamarni/composer-bin-plugin": "^1.8.2",
  8324. "ext-filter": "*",
  8325. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8326. },
  8327. "suggest": {
  8328. "ext-filter": "Required to use the boolean validator."
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "bamarni-bin": {
  8333. "bin-links": true,
  8334. "forward-command": false
  8335. },
  8336. "branch-alias": {
  8337. "dev-master": "5.6-dev"
  8338. }
  8339. },
  8340. "autoload": {
  8341. "psr-4": {
  8342. "Dotenv\\": "src/"
  8343. }
  8344. },
  8345. "notification-url": "https://packagist.org/downloads/",
  8346. "license": [
  8347. "BSD-3-Clause"
  8348. ],
  8349. "authors": [
  8350. {
  8351. "name": "Graham Campbell",
  8352. "email": "hello@gjcampbell.co.uk",
  8353. "homepage": "https://github.com/GrahamCampbell"
  8354. },
  8355. {
  8356. "name": "Vance Lucas",
  8357. "email": "vance@vancelucas.com",
  8358. "homepage": "https://github.com/vlucas"
  8359. }
  8360. ],
  8361. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8362. "keywords": [
  8363. "dotenv",
  8364. "env",
  8365. "environment"
  8366. ],
  8367. "support": {
  8368. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8369. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8370. },
  8371. "funding": [
  8372. {
  8373. "url": "https://github.com/GrahamCampbell",
  8374. "type": "github"
  8375. },
  8376. {
  8377. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8378. "type": "tidelift"
  8379. }
  8380. ],
  8381. "time": "2024-07-20T21:52:34+00:00"
  8382. }
  8383. ],
  8384. "packages-dev": [
  8385. {
  8386. "name": "clue/ndjson-react",
  8387. "version": "v1.3.0",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/clue/reactphp-ndjson.git",
  8391. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8396. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8397. "shasum": ""
  8398. },
  8399. "require": {
  8400. "php": ">=5.3",
  8401. "react/stream": "^1.2"
  8402. },
  8403. "require-dev": {
  8404. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8405. "react/event-loop": "^1.2"
  8406. },
  8407. "type": "library",
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Clue\\React\\NDJson\\": "src/"
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Christian Lück",
  8420. "email": "christian@clue.engineering"
  8421. }
  8422. ],
  8423. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8424. "homepage": "https://github.com/clue/reactphp-ndjson",
  8425. "keywords": [
  8426. "NDJSON",
  8427. "json",
  8428. "jsonlines",
  8429. "newline",
  8430. "reactphp",
  8431. "streaming"
  8432. ],
  8433. "support": {
  8434. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8435. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8436. },
  8437. "funding": [
  8438. {
  8439. "url": "https://clue.engineering/support",
  8440. "type": "custom"
  8441. },
  8442. {
  8443. "url": "https://github.com/clue",
  8444. "type": "github"
  8445. }
  8446. ],
  8447. "time": "2022-12-23T10:58:28+00:00"
  8448. },
  8449. {
  8450. "name": "composer/pcre",
  8451. "version": "3.3.2",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/composer/pcre.git",
  8455. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8460. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": "^7.4 || ^8.0"
  8465. },
  8466. "conflict": {
  8467. "phpstan/phpstan": "<1.11.10"
  8468. },
  8469. "require-dev": {
  8470. "phpstan/phpstan": "^1.12 || ^2",
  8471. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8472. "phpunit/phpunit": "^8 || ^9"
  8473. },
  8474. "type": "library",
  8475. "extra": {
  8476. "phpstan": {
  8477. "includes": [
  8478. "extension.neon"
  8479. ]
  8480. },
  8481. "branch-alias": {
  8482. "dev-main": "3.x-dev"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "psr-4": {
  8487. "Composer\\Pcre\\": "src"
  8488. }
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "MIT"
  8493. ],
  8494. "authors": [
  8495. {
  8496. "name": "Jordi Boggiano",
  8497. "email": "j.boggiano@seld.be",
  8498. "homepage": "http://seld.be"
  8499. }
  8500. ],
  8501. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8502. "keywords": [
  8503. "PCRE",
  8504. "preg",
  8505. "regex",
  8506. "regular expression"
  8507. ],
  8508. "support": {
  8509. "issues": "https://github.com/composer/pcre/issues",
  8510. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8511. },
  8512. "funding": [
  8513. {
  8514. "url": "https://packagist.com",
  8515. "type": "custom"
  8516. },
  8517. {
  8518. "url": "https://github.com/composer",
  8519. "type": "github"
  8520. },
  8521. {
  8522. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8523. "type": "tidelift"
  8524. }
  8525. ],
  8526. "time": "2024-11-12T16:29:46+00:00"
  8527. },
  8528. {
  8529. "name": "composer/semver",
  8530. "version": "3.4.3",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/composer/semver.git",
  8534. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8539. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8540. "shasum": ""
  8541. },
  8542. "require": {
  8543. "php": "^5.3.2 || ^7.0 || ^8.0"
  8544. },
  8545. "require-dev": {
  8546. "phpstan/phpstan": "^1.11",
  8547. "symfony/phpunit-bridge": "^3 || ^7"
  8548. },
  8549. "type": "library",
  8550. "extra": {
  8551. "branch-alias": {
  8552. "dev-main": "3.x-dev"
  8553. }
  8554. },
  8555. "autoload": {
  8556. "psr-4": {
  8557. "Composer\\Semver\\": "src"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Nils Adermann",
  8567. "email": "naderman@naderman.de",
  8568. "homepage": "http://www.naderman.de"
  8569. },
  8570. {
  8571. "name": "Jordi Boggiano",
  8572. "email": "j.boggiano@seld.be",
  8573. "homepage": "http://seld.be"
  8574. },
  8575. {
  8576. "name": "Rob Bast",
  8577. "email": "rob.bast@gmail.com",
  8578. "homepage": "http://robbast.nl"
  8579. }
  8580. ],
  8581. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8582. "keywords": [
  8583. "semantic",
  8584. "semver",
  8585. "validation",
  8586. "versioning"
  8587. ],
  8588. "support": {
  8589. "irc": "ircs://irc.libera.chat:6697/composer",
  8590. "issues": "https://github.com/composer/semver/issues",
  8591. "source": "https://github.com/composer/semver/tree/3.4.3"
  8592. },
  8593. "funding": [
  8594. {
  8595. "url": "https://packagist.com",
  8596. "type": "custom"
  8597. },
  8598. {
  8599. "url": "https://github.com/composer",
  8600. "type": "github"
  8601. },
  8602. {
  8603. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8604. "type": "tidelift"
  8605. }
  8606. ],
  8607. "time": "2024-09-19T14:15:21+00:00"
  8608. },
  8609. {
  8610. "name": "composer/xdebug-handler",
  8611. "version": "3.0.5",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/composer/xdebug-handler.git",
  8615. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8620. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "composer/pcre": "^1 || ^2 || ^3",
  8625. "php": "^7.2.5 || ^8.0",
  8626. "psr/log": "^1 || ^2 || ^3"
  8627. },
  8628. "require-dev": {
  8629. "phpstan/phpstan": "^1.0",
  8630. "phpstan/phpstan-strict-rules": "^1.1",
  8631. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8632. },
  8633. "type": "library",
  8634. "autoload": {
  8635. "psr-4": {
  8636. "Composer\\XdebugHandler\\": "src"
  8637. }
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "MIT"
  8642. ],
  8643. "authors": [
  8644. {
  8645. "name": "John Stevenson",
  8646. "email": "john-stevenson@blueyonder.co.uk"
  8647. }
  8648. ],
  8649. "description": "Restarts a process without Xdebug.",
  8650. "keywords": [
  8651. "Xdebug",
  8652. "performance"
  8653. ],
  8654. "support": {
  8655. "irc": "ircs://irc.libera.chat:6697/composer",
  8656. "issues": "https://github.com/composer/xdebug-handler/issues",
  8657. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://packagist.com",
  8662. "type": "custom"
  8663. },
  8664. {
  8665. "url": "https://github.com/composer",
  8666. "type": "github"
  8667. },
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2024-05-06T16:37:16+00:00"
  8674. },
  8675. {
  8676. "name": "evenement/evenement",
  8677. "version": "v3.0.2",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/igorw/evenement.git",
  8681. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8686. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=7.0"
  8691. },
  8692. "require-dev": {
  8693. "phpunit/phpunit": "^9 || ^6"
  8694. },
  8695. "type": "library",
  8696. "autoload": {
  8697. "psr-4": {
  8698. "Evenement\\": "src/"
  8699. }
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "MIT"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Igor Wiedler",
  8708. "email": "igor@wiedler.ch"
  8709. }
  8710. ],
  8711. "description": "Événement is a very simple event dispatching library for PHP",
  8712. "keywords": [
  8713. "event-dispatcher",
  8714. "event-emitter"
  8715. ],
  8716. "support": {
  8717. "issues": "https://github.com/igorw/evenement/issues",
  8718. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8719. },
  8720. "time": "2023-08-08T05:53:35+00:00"
  8721. },
  8722. {
  8723. "name": "fidry/cpu-core-counter",
  8724. "version": "1.2.0",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8728. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8733. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "php": "^7.2 || ^8.0"
  8738. },
  8739. "require-dev": {
  8740. "fidry/makefile": "^0.2.0",
  8741. "fidry/php-cs-fixer-config": "^1.1.2",
  8742. "phpstan/extension-installer": "^1.2.0",
  8743. "phpstan/phpstan": "^1.9.2",
  8744. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8745. "phpstan/phpstan-phpunit": "^1.2.2",
  8746. "phpstan/phpstan-strict-rules": "^1.4.4",
  8747. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8748. "webmozarts/strict-phpunit": "^7.5"
  8749. },
  8750. "type": "library",
  8751. "autoload": {
  8752. "psr-4": {
  8753. "Fidry\\CpuCoreCounter\\": "src/"
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "MIT"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Théo FIDRY",
  8763. "email": "theo.fidry@gmail.com"
  8764. }
  8765. ],
  8766. "description": "Tiny utility to get the number of CPU cores.",
  8767. "keywords": [
  8768. "CPU",
  8769. "core"
  8770. ],
  8771. "support": {
  8772. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8773. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8774. },
  8775. "funding": [
  8776. {
  8777. "url": "https://github.com/theofidry",
  8778. "type": "github"
  8779. }
  8780. ],
  8781. "time": "2024-08-06T10:04:20+00:00"
  8782. },
  8783. {
  8784. "name": "friendsofphp/php-cs-fixer",
  8785. "version": "v3.68.1",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8789. "reference": "b9db2b2ea3cdba7201067acee46f984ef2397cff"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/b9db2b2ea3cdba7201067acee46f984ef2397cff",
  8794. "reference": "b9db2b2ea3cdba7201067acee46f984ef2397cff",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "clue/ndjson-react": "^1.0",
  8799. "composer/semver": "^3.4",
  8800. "composer/xdebug-handler": "^3.0.3",
  8801. "ext-filter": "*",
  8802. "ext-json": "*",
  8803. "ext-tokenizer": "*",
  8804. "fidry/cpu-core-counter": "^1.2",
  8805. "php": "^7.4 || ^8.0",
  8806. "react/child-process": "^0.6.5",
  8807. "react/event-loop": "^1.0",
  8808. "react/promise": "^2.0 || ^3.0",
  8809. "react/socket": "^1.0",
  8810. "react/stream": "^1.0",
  8811. "sebastian/diff": "^4.0 || ^5.1 || ^6.0",
  8812. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  8813. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  8814. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  8815. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  8816. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  8817. "symfony/polyfill-mbstring": "^1.31",
  8818. "symfony/polyfill-php80": "^1.31",
  8819. "symfony/polyfill-php81": "^1.31",
  8820. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  8821. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  8822. },
  8823. "require-dev": {
  8824. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8825. "infection/infection": "^0.29.8",
  8826. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8827. "keradus/cli-executor": "^2.1",
  8828. "mikey179/vfsstream": "^1.6.12",
  8829. "php-coveralls/php-coveralls": "^2.7",
  8830. "php-cs-fixer/accessible-object": "^1.1",
  8831. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8832. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8833. "phpunit/phpunit": "^9.6.22 || ^10.5.40 || ^11.5.2",
  8834. "symfony/var-dumper": "^5.4.48 || ^6.4.15 || ^7.2.0",
  8835. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.2.0"
  8836. },
  8837. "suggest": {
  8838. "ext-dom": "For handling output formats in XML",
  8839. "ext-mbstring": "For handling non-UTF8 characters."
  8840. },
  8841. "bin": [
  8842. "php-cs-fixer"
  8843. ],
  8844. "type": "application",
  8845. "autoload": {
  8846. "psr-4": {
  8847. "PhpCsFixer\\": "src/"
  8848. },
  8849. "exclude-from-classmap": [
  8850. "src/Fixer/Internal/*"
  8851. ]
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Fabien Potencier",
  8860. "email": "fabien@symfony.com"
  8861. },
  8862. {
  8863. "name": "Dariusz Rumiński",
  8864. "email": "dariusz.ruminski@gmail.com"
  8865. }
  8866. ],
  8867. "description": "A tool to automatically fix PHP code style",
  8868. "keywords": [
  8869. "Static code analysis",
  8870. "fixer",
  8871. "standards",
  8872. "static analysis"
  8873. ],
  8874. "support": {
  8875. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8876. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.68.1"
  8877. },
  8878. "funding": [
  8879. {
  8880. "url": "https://github.com/keradus",
  8881. "type": "github"
  8882. }
  8883. ],
  8884. "time": "2025-01-17T09:20:36+00:00"
  8885. },
  8886. {
  8887. "name": "hamcrest/hamcrest-php",
  8888. "version": "v2.0.1",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8892. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8897. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8898. "shasum": ""
  8899. },
  8900. "require": {
  8901. "php": "^5.3|^7.0|^8.0"
  8902. },
  8903. "replace": {
  8904. "cordoval/hamcrest-php": "*",
  8905. "davedevelopment/hamcrest-php": "*",
  8906. "kodova/hamcrest-php": "*"
  8907. },
  8908. "require-dev": {
  8909. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8910. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "2.1-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "classmap": [
  8920. "hamcrest"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "BSD-3-Clause"
  8926. ],
  8927. "description": "This is the PHP port of Hamcrest Matchers",
  8928. "keywords": [
  8929. "test"
  8930. ],
  8931. "support": {
  8932. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8933. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8934. },
  8935. "time": "2020-07-09T08:09:16+00:00"
  8936. },
  8937. {
  8938. "name": "hyperf/devtool",
  8939. "version": "v3.1.42",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/hyperf/devtool.git",
  8943. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8948. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "hyperf/code-parser": "~3.1.0",
  8953. "hyperf/command": "~3.1.0",
  8954. "hyperf/contract": "~3.1.0",
  8955. "hyperf/di": "~3.1.0",
  8956. "hyperf/support": "~3.1.0",
  8957. "hyperf/utils": "~3.1.0",
  8958. "php": ">=8.1"
  8959. },
  8960. "type": "library",
  8961. "extra": {
  8962. "hyperf": {
  8963. "config": "Hyperf\\Devtool\\ConfigProvider"
  8964. },
  8965. "branch-alias": {
  8966. "dev-master": "3.1-dev"
  8967. }
  8968. },
  8969. "autoload": {
  8970. "psr-4": {
  8971. "Hyperf\\Devtool\\": "src/"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "description": "A Devtool for Hyperf.",
  8979. "homepage": "https://hyperf.io",
  8980. "keywords": [
  8981. "dev",
  8982. "devtool",
  8983. "hyperf",
  8984. "php",
  8985. "swoole"
  8986. ],
  8987. "support": {
  8988. "docs": "https://hyperf.wiki",
  8989. "issues": "https://github.com/hyperf/hyperf/issues",
  8990. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8991. "source": "https://github.com/hyperf/hyperf"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8996. "type": "custom"
  8997. },
  8998. {
  8999. "url": "https://opencollective.com/hyperf",
  9000. "type": "open_collective"
  9001. }
  9002. ],
  9003. "time": "2024-09-25T02:54:12+00:00"
  9004. },
  9005. {
  9006. "name": "hyperf/testing",
  9007. "version": "v3.1.48",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/hyperf/testing.git",
  9011. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9016. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "hyperf/codec": "~3.1.0",
  9021. "hyperf/collection": "~3.1.0",
  9022. "hyperf/contract": "~3.1.0",
  9023. "hyperf/coroutine": "~3.1.0",
  9024. "hyperf/http-message": "~3.1.0",
  9025. "hyperf/http-server": "~3.1.0",
  9026. "hyperf/support": "~3.1.0",
  9027. "hyperf/utils": "~3.1.0",
  9028. "php": ">=8.1",
  9029. "phpunit/phpunit": "^10.0",
  9030. "psr/container": "^1.0 || ^2.0",
  9031. "symfony/http-foundation": "^5.4 || ^6.0"
  9032. },
  9033. "suggest": {
  9034. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9035. },
  9036. "bin": [
  9037. "co-phpunit"
  9038. ],
  9039. "type": "library",
  9040. "extra": {
  9041. "branch-alias": {
  9042. "dev-master": "3.1-dev"
  9043. }
  9044. },
  9045. "autoload": {
  9046. "psr-4": {
  9047. "Hyperf\\Testing\\": "src/"
  9048. }
  9049. },
  9050. "notification-url": "https://packagist.org/downloads/",
  9051. "license": [
  9052. "MIT"
  9053. ],
  9054. "description": "Testing for hyperf",
  9055. "keywords": [
  9056. "dev",
  9057. "php",
  9058. "swoole",
  9059. "testing"
  9060. ],
  9061. "support": {
  9062. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  9063. },
  9064. "funding": [
  9065. {
  9066. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9067. "type": "custom"
  9068. },
  9069. {
  9070. "url": "https://opencollective.com/hyperf",
  9071. "type": "open_collective"
  9072. }
  9073. ],
  9074. "time": "2024-12-12T02:12:29+00:00"
  9075. },
  9076. {
  9077. "name": "hyperf/watcher",
  9078. "version": "v3.1.43",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/hyperf/watcher.git",
  9082. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9087. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9088. "shasum": ""
  9089. },
  9090. "require": {
  9091. "ext-posix": "*",
  9092. "hyperf/codec": "~3.1.0",
  9093. "hyperf/command": "~3.1.0",
  9094. "hyperf/di": "~3.1.0",
  9095. "hyperf/framework": "~3.1.0",
  9096. "hyperf/support": "~3.1.0",
  9097. "php": ">=8.1"
  9098. },
  9099. "type": "library",
  9100. "extra": {
  9101. "hyperf": {
  9102. "config": "Hyperf\\Watcher\\ConfigProvider"
  9103. },
  9104. "branch-alias": {
  9105. "dev-master": "3.1-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "files": [
  9110. "src/Functions.php"
  9111. ],
  9112. "psr-4": {
  9113. "Hyperf\\Watcher\\": "src/"
  9114. }
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "MIT"
  9119. ],
  9120. "description": "Hot reload watcher for Hyperf",
  9121. "keywords": [
  9122. "dev",
  9123. "hyperf",
  9124. "php"
  9125. ],
  9126. "support": {
  9127. "issues": "https://github.com/hyperf/watcher/issues",
  9128. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9133. "type": "custom"
  9134. },
  9135. {
  9136. "url": "https://opencollective.com/hyperf",
  9137. "type": "open_collective"
  9138. }
  9139. ],
  9140. "time": "2024-10-06T12:33:12+00:00"
  9141. },
  9142. {
  9143. "name": "mockery/mockery",
  9144. "version": "1.6.12",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/mockery/mockery.git",
  9148. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9153. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9154. "shasum": ""
  9155. },
  9156. "require": {
  9157. "hamcrest/hamcrest-php": "^2.0.1",
  9158. "lib-pcre": ">=7.0",
  9159. "php": ">=7.3"
  9160. },
  9161. "conflict": {
  9162. "phpunit/phpunit": "<8.0"
  9163. },
  9164. "require-dev": {
  9165. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9166. "symplify/easy-coding-standard": "^12.1.14"
  9167. },
  9168. "type": "library",
  9169. "autoload": {
  9170. "files": [
  9171. "library/helpers.php",
  9172. "library/Mockery.php"
  9173. ],
  9174. "psr-4": {
  9175. "Mockery\\": "library/Mockery"
  9176. }
  9177. },
  9178. "notification-url": "https://packagist.org/downloads/",
  9179. "license": [
  9180. "BSD-3-Clause"
  9181. ],
  9182. "authors": [
  9183. {
  9184. "name": "Pádraic Brady",
  9185. "email": "padraic.brady@gmail.com",
  9186. "homepage": "https://github.com/padraic",
  9187. "role": "Author"
  9188. },
  9189. {
  9190. "name": "Dave Marshall",
  9191. "email": "dave.marshall@atstsolutions.co.uk",
  9192. "homepage": "https://davedevelopment.co.uk",
  9193. "role": "Developer"
  9194. },
  9195. {
  9196. "name": "Nathanael Esayeas",
  9197. "email": "nathanael.esayeas@protonmail.com",
  9198. "homepage": "https://github.com/ghostwriter",
  9199. "role": "Lead Developer"
  9200. }
  9201. ],
  9202. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9203. "homepage": "https://github.com/mockery/mockery",
  9204. "keywords": [
  9205. "BDD",
  9206. "TDD",
  9207. "library",
  9208. "mock",
  9209. "mock objects",
  9210. "mockery",
  9211. "stub",
  9212. "test",
  9213. "test double",
  9214. "testing"
  9215. ],
  9216. "support": {
  9217. "docs": "https://docs.mockery.io/",
  9218. "issues": "https://github.com/mockery/mockery/issues",
  9219. "rss": "https://github.com/mockery/mockery/releases.atom",
  9220. "security": "https://github.com/mockery/mockery/security/advisories",
  9221. "source": "https://github.com/mockery/mockery"
  9222. },
  9223. "time": "2024-05-16T03:13:13+00:00"
  9224. },
  9225. {
  9226. "name": "myclabs/deep-copy",
  9227. "version": "1.12.1",
  9228. "source": {
  9229. "type": "git",
  9230. "url": "https://github.com/myclabs/DeepCopy.git",
  9231. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9232. },
  9233. "dist": {
  9234. "type": "zip",
  9235. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9236. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9237. "shasum": ""
  9238. },
  9239. "require": {
  9240. "php": "^7.1 || ^8.0"
  9241. },
  9242. "conflict": {
  9243. "doctrine/collections": "<1.6.8",
  9244. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9245. },
  9246. "require-dev": {
  9247. "doctrine/collections": "^1.6.8",
  9248. "doctrine/common": "^2.13.3 || ^3.2.2",
  9249. "phpspec/prophecy": "^1.10",
  9250. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9251. },
  9252. "type": "library",
  9253. "autoload": {
  9254. "files": [
  9255. "src/DeepCopy/deep_copy.php"
  9256. ],
  9257. "psr-4": {
  9258. "DeepCopy\\": "src/DeepCopy/"
  9259. }
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "MIT"
  9264. ],
  9265. "description": "Create deep copies (clones) of your objects",
  9266. "keywords": [
  9267. "clone",
  9268. "copy",
  9269. "duplicate",
  9270. "object",
  9271. "object graph"
  9272. ],
  9273. "support": {
  9274. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9275. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9276. },
  9277. "funding": [
  9278. {
  9279. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9280. "type": "tidelift"
  9281. }
  9282. ],
  9283. "time": "2024-11-08T17:47:46+00:00"
  9284. },
  9285. {
  9286. "name": "phar-io/manifest",
  9287. "version": "2.0.4",
  9288. "source": {
  9289. "type": "git",
  9290. "url": "https://github.com/phar-io/manifest.git",
  9291. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9292. },
  9293. "dist": {
  9294. "type": "zip",
  9295. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9296. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9297. "shasum": ""
  9298. },
  9299. "require": {
  9300. "ext-dom": "*",
  9301. "ext-libxml": "*",
  9302. "ext-phar": "*",
  9303. "ext-xmlwriter": "*",
  9304. "phar-io/version": "^3.0.1",
  9305. "php": "^7.2 || ^8.0"
  9306. },
  9307. "type": "library",
  9308. "extra": {
  9309. "branch-alias": {
  9310. "dev-master": "2.0.x-dev"
  9311. }
  9312. },
  9313. "autoload": {
  9314. "classmap": [
  9315. "src/"
  9316. ]
  9317. },
  9318. "notification-url": "https://packagist.org/downloads/",
  9319. "license": [
  9320. "BSD-3-Clause"
  9321. ],
  9322. "authors": [
  9323. {
  9324. "name": "Arne Blankerts",
  9325. "email": "arne@blankerts.de",
  9326. "role": "Developer"
  9327. },
  9328. {
  9329. "name": "Sebastian Heuer",
  9330. "email": "sebastian@phpeople.de",
  9331. "role": "Developer"
  9332. },
  9333. {
  9334. "name": "Sebastian Bergmann",
  9335. "email": "sebastian@phpunit.de",
  9336. "role": "Developer"
  9337. }
  9338. ],
  9339. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9340. "support": {
  9341. "issues": "https://github.com/phar-io/manifest/issues",
  9342. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://github.com/theseer",
  9347. "type": "github"
  9348. }
  9349. ],
  9350. "time": "2024-03-03T12:33:53+00:00"
  9351. },
  9352. {
  9353. "name": "phar-io/version",
  9354. "version": "3.2.1",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/phar-io/version.git",
  9358. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9363. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9364. "shasum": ""
  9365. },
  9366. "require": {
  9367. "php": "^7.2 || ^8.0"
  9368. },
  9369. "type": "library",
  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": "Arne Blankerts",
  9382. "email": "arne@blankerts.de",
  9383. "role": "Developer"
  9384. },
  9385. {
  9386. "name": "Sebastian Heuer",
  9387. "email": "sebastian@phpeople.de",
  9388. "role": "Developer"
  9389. },
  9390. {
  9391. "name": "Sebastian Bergmann",
  9392. "email": "sebastian@phpunit.de",
  9393. "role": "Developer"
  9394. }
  9395. ],
  9396. "description": "Library for handling version information and constraints",
  9397. "support": {
  9398. "issues": "https://github.com/phar-io/version/issues",
  9399. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9400. },
  9401. "time": "2022-02-21T01:04:05+00:00"
  9402. },
  9403. {
  9404. "name": "phpstan/phpstan",
  9405. "version": "1.12.15",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/phpstan/phpstan.git",
  9409. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c91d4e8bc056f46cf653656e6f71004b254574d1",
  9414. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1",
  9415. "shasum": ""
  9416. },
  9417. "require": {
  9418. "php": "^7.2|^8.0"
  9419. },
  9420. "conflict": {
  9421. "phpstan/phpstan-shim": "*"
  9422. },
  9423. "bin": [
  9424. "phpstan",
  9425. "phpstan.phar"
  9426. ],
  9427. "type": "library",
  9428. "autoload": {
  9429. "files": [
  9430. "bootstrap.php"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "description": "PHPStan - PHP Static Analysis Tool",
  9438. "keywords": [
  9439. "dev",
  9440. "static analysis"
  9441. ],
  9442. "support": {
  9443. "docs": "https://phpstan.org/user-guide/getting-started",
  9444. "forum": "https://github.com/phpstan/phpstan/discussions",
  9445. "issues": "https://github.com/phpstan/phpstan/issues",
  9446. "security": "https://github.com/phpstan/phpstan/security/policy",
  9447. "source": "https://github.com/phpstan/phpstan-src"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/ondrejmirtes",
  9452. "type": "github"
  9453. },
  9454. {
  9455. "url": "https://github.com/phpstan",
  9456. "type": "github"
  9457. }
  9458. ],
  9459. "time": "2025-01-05T16:40:22+00:00"
  9460. },
  9461. {
  9462. "name": "phpunit/php-code-coverage",
  9463. "version": "10.1.16",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9467. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9472. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9473. "shasum": ""
  9474. },
  9475. "require": {
  9476. "ext-dom": "*",
  9477. "ext-libxml": "*",
  9478. "ext-xmlwriter": "*",
  9479. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9480. "php": ">=8.1",
  9481. "phpunit/php-file-iterator": "^4.1.0",
  9482. "phpunit/php-text-template": "^3.0.1",
  9483. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9484. "sebastian/complexity": "^3.2.0",
  9485. "sebastian/environment": "^6.1.0",
  9486. "sebastian/lines-of-code": "^2.0.2",
  9487. "sebastian/version": "^4.0.1",
  9488. "theseer/tokenizer": "^1.2.3"
  9489. },
  9490. "require-dev": {
  9491. "phpunit/phpunit": "^10.1"
  9492. },
  9493. "suggest": {
  9494. "ext-pcov": "PHP extension that provides line coverage",
  9495. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9496. },
  9497. "type": "library",
  9498. "extra": {
  9499. "branch-alias": {
  9500. "dev-main": "10.1.x-dev"
  9501. }
  9502. },
  9503. "autoload": {
  9504. "classmap": [
  9505. "src/"
  9506. ]
  9507. },
  9508. "notification-url": "https://packagist.org/downloads/",
  9509. "license": [
  9510. "BSD-3-Clause"
  9511. ],
  9512. "authors": [
  9513. {
  9514. "name": "Sebastian Bergmann",
  9515. "email": "sebastian@phpunit.de",
  9516. "role": "lead"
  9517. }
  9518. ],
  9519. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9520. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9521. "keywords": [
  9522. "coverage",
  9523. "testing",
  9524. "xunit"
  9525. ],
  9526. "support": {
  9527. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9528. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9529. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9530. },
  9531. "funding": [
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. }
  9536. ],
  9537. "time": "2024-08-22T04:31:57+00:00"
  9538. },
  9539. {
  9540. "name": "phpunit/php-file-iterator",
  9541. "version": "4.1.0",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9545. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9550. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": ">=8.1"
  9555. },
  9556. "require-dev": {
  9557. "phpunit/phpunit": "^10.0"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "branch-alias": {
  9562. "dev-main": "4.0-dev"
  9563. }
  9564. },
  9565. "autoload": {
  9566. "classmap": [
  9567. "src/"
  9568. ]
  9569. },
  9570. "notification-url": "https://packagist.org/downloads/",
  9571. "license": [
  9572. "BSD-3-Clause"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Sebastian Bergmann",
  9577. "email": "sebastian@phpunit.de",
  9578. "role": "lead"
  9579. }
  9580. ],
  9581. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9582. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9583. "keywords": [
  9584. "filesystem",
  9585. "iterator"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9589. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9590. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9591. },
  9592. "funding": [
  9593. {
  9594. "url": "https://github.com/sebastianbergmann",
  9595. "type": "github"
  9596. }
  9597. ],
  9598. "time": "2023-08-31T06:24:48+00:00"
  9599. },
  9600. {
  9601. "name": "phpunit/php-invoker",
  9602. "version": "4.0.0",
  9603. "source": {
  9604. "type": "git",
  9605. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9606. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9607. },
  9608. "dist": {
  9609. "type": "zip",
  9610. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9611. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9612. "shasum": ""
  9613. },
  9614. "require": {
  9615. "php": ">=8.1"
  9616. },
  9617. "require-dev": {
  9618. "ext-pcntl": "*",
  9619. "phpunit/phpunit": "^10.0"
  9620. },
  9621. "suggest": {
  9622. "ext-pcntl": "*"
  9623. },
  9624. "type": "library",
  9625. "extra": {
  9626. "branch-alias": {
  9627. "dev-main": "4.0-dev"
  9628. }
  9629. },
  9630. "autoload": {
  9631. "classmap": [
  9632. "src/"
  9633. ]
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "BSD-3-Clause"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Sebastian Bergmann",
  9642. "email": "sebastian@phpunit.de",
  9643. "role": "lead"
  9644. }
  9645. ],
  9646. "description": "Invoke callables with a timeout",
  9647. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9648. "keywords": [
  9649. "process"
  9650. ],
  9651. "support": {
  9652. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9653. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9654. },
  9655. "funding": [
  9656. {
  9657. "url": "https://github.com/sebastianbergmann",
  9658. "type": "github"
  9659. }
  9660. ],
  9661. "time": "2023-02-03T06:56:09+00:00"
  9662. },
  9663. {
  9664. "name": "phpunit/php-text-template",
  9665. "version": "3.0.1",
  9666. "source": {
  9667. "type": "git",
  9668. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9669. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9670. },
  9671. "dist": {
  9672. "type": "zip",
  9673. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9674. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9675. "shasum": ""
  9676. },
  9677. "require": {
  9678. "php": ">=8.1"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^10.0"
  9682. },
  9683. "type": "library",
  9684. "extra": {
  9685. "branch-alias": {
  9686. "dev-main": "3.0-dev"
  9687. }
  9688. },
  9689. "autoload": {
  9690. "classmap": [
  9691. "src/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "BSD-3-Clause"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Sebastian Bergmann",
  9701. "email": "sebastian@phpunit.de",
  9702. "role": "lead"
  9703. }
  9704. ],
  9705. "description": "Simple template engine.",
  9706. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9707. "keywords": [
  9708. "template"
  9709. ],
  9710. "support": {
  9711. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9712. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9713. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9714. },
  9715. "funding": [
  9716. {
  9717. "url": "https://github.com/sebastianbergmann",
  9718. "type": "github"
  9719. }
  9720. ],
  9721. "time": "2023-08-31T14:07:24+00:00"
  9722. },
  9723. {
  9724. "name": "phpunit/php-timer",
  9725. "version": "6.0.0",
  9726. "source": {
  9727. "type": "git",
  9728. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9729. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9730. },
  9731. "dist": {
  9732. "type": "zip",
  9733. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9734. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9735. "shasum": ""
  9736. },
  9737. "require": {
  9738. "php": ">=8.1"
  9739. },
  9740. "require-dev": {
  9741. "phpunit/phpunit": "^10.0"
  9742. },
  9743. "type": "library",
  9744. "extra": {
  9745. "branch-alias": {
  9746. "dev-main": "6.0-dev"
  9747. }
  9748. },
  9749. "autoload": {
  9750. "classmap": [
  9751. "src/"
  9752. ]
  9753. },
  9754. "notification-url": "https://packagist.org/downloads/",
  9755. "license": [
  9756. "BSD-3-Clause"
  9757. ],
  9758. "authors": [
  9759. {
  9760. "name": "Sebastian Bergmann",
  9761. "email": "sebastian@phpunit.de",
  9762. "role": "lead"
  9763. }
  9764. ],
  9765. "description": "Utility class for timing",
  9766. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9767. "keywords": [
  9768. "timer"
  9769. ],
  9770. "support": {
  9771. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9772. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9773. },
  9774. "funding": [
  9775. {
  9776. "url": "https://github.com/sebastianbergmann",
  9777. "type": "github"
  9778. }
  9779. ],
  9780. "time": "2023-02-03T06:57:52+00:00"
  9781. },
  9782. {
  9783. "name": "phpunit/phpunit",
  9784. "version": "10.5.41",
  9785. "source": {
  9786. "type": "git",
  9787. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9788. "reference": "e76586fa3d49714f230221734b44892e384109d7"
  9789. },
  9790. "dist": {
  9791. "type": "zip",
  9792. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e76586fa3d49714f230221734b44892e384109d7",
  9793. "reference": "e76586fa3d49714f230221734b44892e384109d7",
  9794. "shasum": ""
  9795. },
  9796. "require": {
  9797. "ext-dom": "*",
  9798. "ext-json": "*",
  9799. "ext-libxml": "*",
  9800. "ext-mbstring": "*",
  9801. "ext-xml": "*",
  9802. "ext-xmlwriter": "*",
  9803. "myclabs/deep-copy": "^1.12.1",
  9804. "phar-io/manifest": "^2.0.4",
  9805. "phar-io/version": "^3.2.1",
  9806. "php": ">=8.1",
  9807. "phpunit/php-code-coverage": "^10.1.16",
  9808. "phpunit/php-file-iterator": "^4.1.0",
  9809. "phpunit/php-invoker": "^4.0.0",
  9810. "phpunit/php-text-template": "^3.0.1",
  9811. "phpunit/php-timer": "^6.0.0",
  9812. "sebastian/cli-parser": "^2.0.1",
  9813. "sebastian/code-unit": "^2.0.0",
  9814. "sebastian/comparator": "^5.0.3",
  9815. "sebastian/diff": "^5.1.1",
  9816. "sebastian/environment": "^6.1.0",
  9817. "sebastian/exporter": "^5.1.2",
  9818. "sebastian/global-state": "^6.0.2",
  9819. "sebastian/object-enumerator": "^5.0.0",
  9820. "sebastian/recursion-context": "^5.0.0",
  9821. "sebastian/type": "^4.0.0",
  9822. "sebastian/version": "^4.0.1"
  9823. },
  9824. "suggest": {
  9825. "ext-soap": "To be able to generate mocks based on WSDL files"
  9826. },
  9827. "bin": [
  9828. "phpunit"
  9829. ],
  9830. "type": "library",
  9831. "extra": {
  9832. "branch-alias": {
  9833. "dev-main": "10.5-dev"
  9834. }
  9835. },
  9836. "autoload": {
  9837. "files": [
  9838. "src/Framework/Assert/Functions.php"
  9839. ],
  9840. "classmap": [
  9841. "src/"
  9842. ]
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "BSD-3-Clause"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Sebastian Bergmann",
  9851. "email": "sebastian@phpunit.de",
  9852. "role": "lead"
  9853. }
  9854. ],
  9855. "description": "The PHP Unit Testing framework.",
  9856. "homepage": "https://phpunit.de/",
  9857. "keywords": [
  9858. "phpunit",
  9859. "testing",
  9860. "xunit"
  9861. ],
  9862. "support": {
  9863. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9864. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9865. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.41"
  9866. },
  9867. "funding": [
  9868. {
  9869. "url": "https://phpunit.de/sponsors.html",
  9870. "type": "custom"
  9871. },
  9872. {
  9873. "url": "https://github.com/sebastianbergmann",
  9874. "type": "github"
  9875. },
  9876. {
  9877. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9878. "type": "tidelift"
  9879. }
  9880. ],
  9881. "time": "2025-01-13T09:33:05+00:00"
  9882. },
  9883. {
  9884. "name": "react/cache",
  9885. "version": "v1.2.0",
  9886. "source": {
  9887. "type": "git",
  9888. "url": "https://github.com/reactphp/cache.git",
  9889. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9890. },
  9891. "dist": {
  9892. "type": "zip",
  9893. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9894. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9895. "shasum": ""
  9896. },
  9897. "require": {
  9898. "php": ">=5.3.0",
  9899. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9900. },
  9901. "require-dev": {
  9902. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9903. },
  9904. "type": "library",
  9905. "autoload": {
  9906. "psr-4": {
  9907. "React\\Cache\\": "src/"
  9908. }
  9909. },
  9910. "notification-url": "https://packagist.org/downloads/",
  9911. "license": [
  9912. "MIT"
  9913. ],
  9914. "authors": [
  9915. {
  9916. "name": "Christian Lück",
  9917. "email": "christian@clue.engineering",
  9918. "homepage": "https://clue.engineering/"
  9919. },
  9920. {
  9921. "name": "Cees-Jan Kiewiet",
  9922. "email": "reactphp@ceesjankiewiet.nl",
  9923. "homepage": "https://wyrihaximus.net/"
  9924. },
  9925. {
  9926. "name": "Jan Sorgalla",
  9927. "email": "jsorgalla@gmail.com",
  9928. "homepage": "https://sorgalla.com/"
  9929. },
  9930. {
  9931. "name": "Chris Boden",
  9932. "email": "cboden@gmail.com",
  9933. "homepage": "https://cboden.dev/"
  9934. }
  9935. ],
  9936. "description": "Async, Promise-based cache interface for ReactPHP",
  9937. "keywords": [
  9938. "cache",
  9939. "caching",
  9940. "promise",
  9941. "reactphp"
  9942. ],
  9943. "support": {
  9944. "issues": "https://github.com/reactphp/cache/issues",
  9945. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9946. },
  9947. "funding": [
  9948. {
  9949. "url": "https://opencollective.com/reactphp",
  9950. "type": "open_collective"
  9951. }
  9952. ],
  9953. "time": "2022-11-30T15:59:55+00:00"
  9954. },
  9955. {
  9956. "name": "react/child-process",
  9957. "version": "v0.6.6",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/reactphp/child-process.git",
  9961. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9966. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9971. "php": ">=5.3.0",
  9972. "react/event-loop": "^1.2",
  9973. "react/stream": "^1.4"
  9974. },
  9975. "require-dev": {
  9976. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9977. "react/socket": "^1.16",
  9978. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9979. },
  9980. "type": "library",
  9981. "autoload": {
  9982. "psr-4": {
  9983. "React\\ChildProcess\\": "src/"
  9984. }
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "MIT"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Christian Lück",
  9993. "email": "christian@clue.engineering",
  9994. "homepage": "https://clue.engineering/"
  9995. },
  9996. {
  9997. "name": "Cees-Jan Kiewiet",
  9998. "email": "reactphp@ceesjankiewiet.nl",
  9999. "homepage": "https://wyrihaximus.net/"
  10000. },
  10001. {
  10002. "name": "Jan Sorgalla",
  10003. "email": "jsorgalla@gmail.com",
  10004. "homepage": "https://sorgalla.com/"
  10005. },
  10006. {
  10007. "name": "Chris Boden",
  10008. "email": "cboden@gmail.com",
  10009. "homepage": "https://cboden.dev/"
  10010. }
  10011. ],
  10012. "description": "Event-driven library for executing child processes with ReactPHP.",
  10013. "keywords": [
  10014. "event-driven",
  10015. "process",
  10016. "reactphp"
  10017. ],
  10018. "support": {
  10019. "issues": "https://github.com/reactphp/child-process/issues",
  10020. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  10021. },
  10022. "funding": [
  10023. {
  10024. "url": "https://opencollective.com/reactphp",
  10025. "type": "open_collective"
  10026. }
  10027. ],
  10028. "time": "2025-01-01T16:37:48+00:00"
  10029. },
  10030. {
  10031. "name": "react/dns",
  10032. "version": "v1.13.0",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/reactphp/dns.git",
  10036. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10041. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": ">=5.3.0",
  10046. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10047. "react/event-loop": "^1.2",
  10048. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  10049. },
  10050. "require-dev": {
  10051. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10052. "react/async": "^4.3 || ^3 || ^2",
  10053. "react/promise-timer": "^1.11"
  10054. },
  10055. "type": "library",
  10056. "autoload": {
  10057. "psr-4": {
  10058. "React\\Dns\\": "src/"
  10059. }
  10060. },
  10061. "notification-url": "https://packagist.org/downloads/",
  10062. "license": [
  10063. "MIT"
  10064. ],
  10065. "authors": [
  10066. {
  10067. "name": "Christian Lück",
  10068. "email": "christian@clue.engineering",
  10069. "homepage": "https://clue.engineering/"
  10070. },
  10071. {
  10072. "name": "Cees-Jan Kiewiet",
  10073. "email": "reactphp@ceesjankiewiet.nl",
  10074. "homepage": "https://wyrihaximus.net/"
  10075. },
  10076. {
  10077. "name": "Jan Sorgalla",
  10078. "email": "jsorgalla@gmail.com",
  10079. "homepage": "https://sorgalla.com/"
  10080. },
  10081. {
  10082. "name": "Chris Boden",
  10083. "email": "cboden@gmail.com",
  10084. "homepage": "https://cboden.dev/"
  10085. }
  10086. ],
  10087. "description": "Async DNS resolver for ReactPHP",
  10088. "keywords": [
  10089. "async",
  10090. "dns",
  10091. "dns-resolver",
  10092. "reactphp"
  10093. ],
  10094. "support": {
  10095. "issues": "https://github.com/reactphp/dns/issues",
  10096. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  10097. },
  10098. "funding": [
  10099. {
  10100. "url": "https://opencollective.com/reactphp",
  10101. "type": "open_collective"
  10102. }
  10103. ],
  10104. "time": "2024-06-13T14:18:03+00:00"
  10105. },
  10106. {
  10107. "name": "react/event-loop",
  10108. "version": "v1.5.0",
  10109. "source": {
  10110. "type": "git",
  10111. "url": "https://github.com/reactphp/event-loop.git",
  10112. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10113. },
  10114. "dist": {
  10115. "type": "zip",
  10116. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10117. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10118. "shasum": ""
  10119. },
  10120. "require": {
  10121. "php": ">=5.3.0"
  10122. },
  10123. "require-dev": {
  10124. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10125. },
  10126. "suggest": {
  10127. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10128. },
  10129. "type": "library",
  10130. "autoload": {
  10131. "psr-4": {
  10132. "React\\EventLoop\\": "src/"
  10133. }
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "MIT"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Christian Lück",
  10142. "email": "christian@clue.engineering",
  10143. "homepage": "https://clue.engineering/"
  10144. },
  10145. {
  10146. "name": "Cees-Jan Kiewiet",
  10147. "email": "reactphp@ceesjankiewiet.nl",
  10148. "homepage": "https://wyrihaximus.net/"
  10149. },
  10150. {
  10151. "name": "Jan Sorgalla",
  10152. "email": "jsorgalla@gmail.com",
  10153. "homepage": "https://sorgalla.com/"
  10154. },
  10155. {
  10156. "name": "Chris Boden",
  10157. "email": "cboden@gmail.com",
  10158. "homepage": "https://cboden.dev/"
  10159. }
  10160. ],
  10161. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10162. "keywords": [
  10163. "asynchronous",
  10164. "event-loop"
  10165. ],
  10166. "support": {
  10167. "issues": "https://github.com/reactphp/event-loop/issues",
  10168. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10169. },
  10170. "funding": [
  10171. {
  10172. "url": "https://opencollective.com/reactphp",
  10173. "type": "open_collective"
  10174. }
  10175. ],
  10176. "time": "2023-11-13T13:48:05+00:00"
  10177. },
  10178. {
  10179. "name": "react/promise",
  10180. "version": "v3.2.0",
  10181. "source": {
  10182. "type": "git",
  10183. "url": "https://github.com/reactphp/promise.git",
  10184. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  10185. },
  10186. "dist": {
  10187. "type": "zip",
  10188. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  10189. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  10190. "shasum": ""
  10191. },
  10192. "require": {
  10193. "php": ">=7.1.0"
  10194. },
  10195. "require-dev": {
  10196. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10197. "phpunit/phpunit": "^9.6 || ^7.5"
  10198. },
  10199. "type": "library",
  10200. "autoload": {
  10201. "files": [
  10202. "src/functions_include.php"
  10203. ],
  10204. "psr-4": {
  10205. "React\\Promise\\": "src/"
  10206. }
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "MIT"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Jan Sorgalla",
  10215. "email": "jsorgalla@gmail.com",
  10216. "homepage": "https://sorgalla.com/"
  10217. },
  10218. {
  10219. "name": "Christian Lück",
  10220. "email": "christian@clue.engineering",
  10221. "homepage": "https://clue.engineering/"
  10222. },
  10223. {
  10224. "name": "Cees-Jan Kiewiet",
  10225. "email": "reactphp@ceesjankiewiet.nl",
  10226. "homepage": "https://wyrihaximus.net/"
  10227. },
  10228. {
  10229. "name": "Chris Boden",
  10230. "email": "cboden@gmail.com",
  10231. "homepage": "https://cboden.dev/"
  10232. }
  10233. ],
  10234. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10235. "keywords": [
  10236. "promise",
  10237. "promises"
  10238. ],
  10239. "support": {
  10240. "issues": "https://github.com/reactphp/promise/issues",
  10241. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  10242. },
  10243. "funding": [
  10244. {
  10245. "url": "https://opencollective.com/reactphp",
  10246. "type": "open_collective"
  10247. }
  10248. ],
  10249. "time": "2024-05-24T10:39:05+00:00"
  10250. },
  10251. {
  10252. "name": "react/socket",
  10253. "version": "v1.16.0",
  10254. "source": {
  10255. "type": "git",
  10256. "url": "https://github.com/reactphp/socket.git",
  10257. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  10258. },
  10259. "dist": {
  10260. "type": "zip",
  10261. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10262. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10263. "shasum": ""
  10264. },
  10265. "require": {
  10266. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10267. "php": ">=5.3.0",
  10268. "react/dns": "^1.13",
  10269. "react/event-loop": "^1.2",
  10270. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  10271. "react/stream": "^1.4"
  10272. },
  10273. "require-dev": {
  10274. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10275. "react/async": "^4.3 || ^3.3 || ^2",
  10276. "react/promise-stream": "^1.4",
  10277. "react/promise-timer": "^1.11"
  10278. },
  10279. "type": "library",
  10280. "autoload": {
  10281. "psr-4": {
  10282. "React\\Socket\\": "src/"
  10283. }
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Christian Lück",
  10292. "email": "christian@clue.engineering",
  10293. "homepage": "https://clue.engineering/"
  10294. },
  10295. {
  10296. "name": "Cees-Jan Kiewiet",
  10297. "email": "reactphp@ceesjankiewiet.nl",
  10298. "homepage": "https://wyrihaximus.net/"
  10299. },
  10300. {
  10301. "name": "Jan Sorgalla",
  10302. "email": "jsorgalla@gmail.com",
  10303. "homepage": "https://sorgalla.com/"
  10304. },
  10305. {
  10306. "name": "Chris Boden",
  10307. "email": "cboden@gmail.com",
  10308. "homepage": "https://cboden.dev/"
  10309. }
  10310. ],
  10311. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10312. "keywords": [
  10313. "Connection",
  10314. "Socket",
  10315. "async",
  10316. "reactphp",
  10317. "stream"
  10318. ],
  10319. "support": {
  10320. "issues": "https://github.com/reactphp/socket/issues",
  10321. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10322. },
  10323. "funding": [
  10324. {
  10325. "url": "https://opencollective.com/reactphp",
  10326. "type": "open_collective"
  10327. }
  10328. ],
  10329. "time": "2024-07-26T10:38:09+00:00"
  10330. },
  10331. {
  10332. "name": "react/stream",
  10333. "version": "v1.4.0",
  10334. "source": {
  10335. "type": "git",
  10336. "url": "https://github.com/reactphp/stream.git",
  10337. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10338. },
  10339. "dist": {
  10340. "type": "zip",
  10341. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10342. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10343. "shasum": ""
  10344. },
  10345. "require": {
  10346. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10347. "php": ">=5.3.8",
  10348. "react/event-loop": "^1.2"
  10349. },
  10350. "require-dev": {
  10351. "clue/stream-filter": "~1.2",
  10352. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10353. },
  10354. "type": "library",
  10355. "autoload": {
  10356. "psr-4": {
  10357. "React\\Stream\\": "src/"
  10358. }
  10359. },
  10360. "notification-url": "https://packagist.org/downloads/",
  10361. "license": [
  10362. "MIT"
  10363. ],
  10364. "authors": [
  10365. {
  10366. "name": "Christian Lück",
  10367. "email": "christian@clue.engineering",
  10368. "homepage": "https://clue.engineering/"
  10369. },
  10370. {
  10371. "name": "Cees-Jan Kiewiet",
  10372. "email": "reactphp@ceesjankiewiet.nl",
  10373. "homepage": "https://wyrihaximus.net/"
  10374. },
  10375. {
  10376. "name": "Jan Sorgalla",
  10377. "email": "jsorgalla@gmail.com",
  10378. "homepage": "https://sorgalla.com/"
  10379. },
  10380. {
  10381. "name": "Chris Boden",
  10382. "email": "cboden@gmail.com",
  10383. "homepage": "https://cboden.dev/"
  10384. }
  10385. ],
  10386. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10387. "keywords": [
  10388. "event-driven",
  10389. "io",
  10390. "non-blocking",
  10391. "pipe",
  10392. "reactphp",
  10393. "readable",
  10394. "stream",
  10395. "writable"
  10396. ],
  10397. "support": {
  10398. "issues": "https://github.com/reactphp/stream/issues",
  10399. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://opencollective.com/reactphp",
  10404. "type": "open_collective"
  10405. }
  10406. ],
  10407. "time": "2024-06-11T12:45:25+00:00"
  10408. },
  10409. {
  10410. "name": "sebastian/cli-parser",
  10411. "version": "2.0.1",
  10412. "source": {
  10413. "type": "git",
  10414. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10415. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10416. },
  10417. "dist": {
  10418. "type": "zip",
  10419. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10420. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10421. "shasum": ""
  10422. },
  10423. "require": {
  10424. "php": ">=8.1"
  10425. },
  10426. "require-dev": {
  10427. "phpunit/phpunit": "^10.0"
  10428. },
  10429. "type": "library",
  10430. "extra": {
  10431. "branch-alias": {
  10432. "dev-main": "2.0-dev"
  10433. }
  10434. },
  10435. "autoload": {
  10436. "classmap": [
  10437. "src/"
  10438. ]
  10439. },
  10440. "notification-url": "https://packagist.org/downloads/",
  10441. "license": [
  10442. "BSD-3-Clause"
  10443. ],
  10444. "authors": [
  10445. {
  10446. "name": "Sebastian Bergmann",
  10447. "email": "sebastian@phpunit.de",
  10448. "role": "lead"
  10449. }
  10450. ],
  10451. "description": "Library for parsing CLI options",
  10452. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10453. "support": {
  10454. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10455. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10456. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10457. },
  10458. "funding": [
  10459. {
  10460. "url": "https://github.com/sebastianbergmann",
  10461. "type": "github"
  10462. }
  10463. ],
  10464. "time": "2024-03-02T07:12:49+00:00"
  10465. },
  10466. {
  10467. "name": "sebastian/code-unit",
  10468. "version": "2.0.0",
  10469. "source": {
  10470. "type": "git",
  10471. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10472. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10473. },
  10474. "dist": {
  10475. "type": "zip",
  10476. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10477. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10478. "shasum": ""
  10479. },
  10480. "require": {
  10481. "php": ">=8.1"
  10482. },
  10483. "require-dev": {
  10484. "phpunit/phpunit": "^10.0"
  10485. },
  10486. "type": "library",
  10487. "extra": {
  10488. "branch-alias": {
  10489. "dev-main": "2.0-dev"
  10490. }
  10491. },
  10492. "autoload": {
  10493. "classmap": [
  10494. "src/"
  10495. ]
  10496. },
  10497. "notification-url": "https://packagist.org/downloads/",
  10498. "license": [
  10499. "BSD-3-Clause"
  10500. ],
  10501. "authors": [
  10502. {
  10503. "name": "Sebastian Bergmann",
  10504. "email": "sebastian@phpunit.de",
  10505. "role": "lead"
  10506. }
  10507. ],
  10508. "description": "Collection of value objects that represent the PHP code units",
  10509. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10510. "support": {
  10511. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10512. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10513. },
  10514. "funding": [
  10515. {
  10516. "url": "https://github.com/sebastianbergmann",
  10517. "type": "github"
  10518. }
  10519. ],
  10520. "time": "2023-02-03T06:58:43+00:00"
  10521. },
  10522. {
  10523. "name": "sebastian/code-unit-reverse-lookup",
  10524. "version": "3.0.0",
  10525. "source": {
  10526. "type": "git",
  10527. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10528. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10529. },
  10530. "dist": {
  10531. "type": "zip",
  10532. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10533. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10534. "shasum": ""
  10535. },
  10536. "require": {
  10537. "php": ">=8.1"
  10538. },
  10539. "require-dev": {
  10540. "phpunit/phpunit": "^10.0"
  10541. },
  10542. "type": "library",
  10543. "extra": {
  10544. "branch-alias": {
  10545. "dev-main": "3.0-dev"
  10546. }
  10547. },
  10548. "autoload": {
  10549. "classmap": [
  10550. "src/"
  10551. ]
  10552. },
  10553. "notification-url": "https://packagist.org/downloads/",
  10554. "license": [
  10555. "BSD-3-Clause"
  10556. ],
  10557. "authors": [
  10558. {
  10559. "name": "Sebastian Bergmann",
  10560. "email": "sebastian@phpunit.de"
  10561. }
  10562. ],
  10563. "description": "Looks up which function or method a line of code belongs to",
  10564. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10565. "support": {
  10566. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10567. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10568. },
  10569. "funding": [
  10570. {
  10571. "url": "https://github.com/sebastianbergmann",
  10572. "type": "github"
  10573. }
  10574. ],
  10575. "time": "2023-02-03T06:59:15+00:00"
  10576. },
  10577. {
  10578. "name": "sebastian/comparator",
  10579. "version": "5.0.3",
  10580. "source": {
  10581. "type": "git",
  10582. "url": "https://github.com/sebastianbergmann/comparator.git",
  10583. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10584. },
  10585. "dist": {
  10586. "type": "zip",
  10587. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10588. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10589. "shasum": ""
  10590. },
  10591. "require": {
  10592. "ext-dom": "*",
  10593. "ext-mbstring": "*",
  10594. "php": ">=8.1",
  10595. "sebastian/diff": "^5.0",
  10596. "sebastian/exporter": "^5.0"
  10597. },
  10598. "require-dev": {
  10599. "phpunit/phpunit": "^10.5"
  10600. },
  10601. "type": "library",
  10602. "extra": {
  10603. "branch-alias": {
  10604. "dev-main": "5.0-dev"
  10605. }
  10606. },
  10607. "autoload": {
  10608. "classmap": [
  10609. "src/"
  10610. ]
  10611. },
  10612. "notification-url": "https://packagist.org/downloads/",
  10613. "license": [
  10614. "BSD-3-Clause"
  10615. ],
  10616. "authors": [
  10617. {
  10618. "name": "Sebastian Bergmann",
  10619. "email": "sebastian@phpunit.de"
  10620. },
  10621. {
  10622. "name": "Jeff Welch",
  10623. "email": "whatthejeff@gmail.com"
  10624. },
  10625. {
  10626. "name": "Volker Dusch",
  10627. "email": "github@wallbash.com"
  10628. },
  10629. {
  10630. "name": "Bernhard Schussek",
  10631. "email": "bschussek@2bepublished.at"
  10632. }
  10633. ],
  10634. "description": "Provides the functionality to compare PHP values for equality",
  10635. "homepage": "https://github.com/sebastianbergmann/comparator",
  10636. "keywords": [
  10637. "comparator",
  10638. "compare",
  10639. "equality"
  10640. ],
  10641. "support": {
  10642. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10643. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10644. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10645. },
  10646. "funding": [
  10647. {
  10648. "url": "https://github.com/sebastianbergmann",
  10649. "type": "github"
  10650. }
  10651. ],
  10652. "time": "2024-10-18T14:56:07+00:00"
  10653. },
  10654. {
  10655. "name": "sebastian/complexity",
  10656. "version": "3.2.0",
  10657. "source": {
  10658. "type": "git",
  10659. "url": "https://github.com/sebastianbergmann/complexity.git",
  10660. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10661. },
  10662. "dist": {
  10663. "type": "zip",
  10664. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10665. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10666. "shasum": ""
  10667. },
  10668. "require": {
  10669. "nikic/php-parser": "^4.18 || ^5.0",
  10670. "php": ">=8.1"
  10671. },
  10672. "require-dev": {
  10673. "phpunit/phpunit": "^10.0"
  10674. },
  10675. "type": "library",
  10676. "extra": {
  10677. "branch-alias": {
  10678. "dev-main": "3.2-dev"
  10679. }
  10680. },
  10681. "autoload": {
  10682. "classmap": [
  10683. "src/"
  10684. ]
  10685. },
  10686. "notification-url": "https://packagist.org/downloads/",
  10687. "license": [
  10688. "BSD-3-Clause"
  10689. ],
  10690. "authors": [
  10691. {
  10692. "name": "Sebastian Bergmann",
  10693. "email": "sebastian@phpunit.de",
  10694. "role": "lead"
  10695. }
  10696. ],
  10697. "description": "Library for calculating the complexity of PHP code units",
  10698. "homepage": "https://github.com/sebastianbergmann/complexity",
  10699. "support": {
  10700. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10701. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10702. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10703. },
  10704. "funding": [
  10705. {
  10706. "url": "https://github.com/sebastianbergmann",
  10707. "type": "github"
  10708. }
  10709. ],
  10710. "time": "2023-12-21T08:37:17+00:00"
  10711. },
  10712. {
  10713. "name": "sebastian/diff",
  10714. "version": "5.1.1",
  10715. "source": {
  10716. "type": "git",
  10717. "url": "https://github.com/sebastianbergmann/diff.git",
  10718. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10719. },
  10720. "dist": {
  10721. "type": "zip",
  10722. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10723. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10724. "shasum": ""
  10725. },
  10726. "require": {
  10727. "php": ">=8.1"
  10728. },
  10729. "require-dev": {
  10730. "phpunit/phpunit": "^10.0",
  10731. "symfony/process": "^6.4"
  10732. },
  10733. "type": "library",
  10734. "extra": {
  10735. "branch-alias": {
  10736. "dev-main": "5.1-dev"
  10737. }
  10738. },
  10739. "autoload": {
  10740. "classmap": [
  10741. "src/"
  10742. ]
  10743. },
  10744. "notification-url": "https://packagist.org/downloads/",
  10745. "license": [
  10746. "BSD-3-Clause"
  10747. ],
  10748. "authors": [
  10749. {
  10750. "name": "Sebastian Bergmann",
  10751. "email": "sebastian@phpunit.de"
  10752. },
  10753. {
  10754. "name": "Kore Nordmann",
  10755. "email": "mail@kore-nordmann.de"
  10756. }
  10757. ],
  10758. "description": "Diff implementation",
  10759. "homepage": "https://github.com/sebastianbergmann/diff",
  10760. "keywords": [
  10761. "diff",
  10762. "udiff",
  10763. "unidiff",
  10764. "unified diff"
  10765. ],
  10766. "support": {
  10767. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10768. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10769. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://github.com/sebastianbergmann",
  10774. "type": "github"
  10775. }
  10776. ],
  10777. "time": "2024-03-02T07:15:17+00:00"
  10778. },
  10779. {
  10780. "name": "sebastian/environment",
  10781. "version": "6.1.0",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/sebastianbergmann/environment.git",
  10785. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10790. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10791. "shasum": ""
  10792. },
  10793. "require": {
  10794. "php": ">=8.1"
  10795. },
  10796. "require-dev": {
  10797. "phpunit/phpunit": "^10.0"
  10798. },
  10799. "suggest": {
  10800. "ext-posix": "*"
  10801. },
  10802. "type": "library",
  10803. "extra": {
  10804. "branch-alias": {
  10805. "dev-main": "6.1-dev"
  10806. }
  10807. },
  10808. "autoload": {
  10809. "classmap": [
  10810. "src/"
  10811. ]
  10812. },
  10813. "notification-url": "https://packagist.org/downloads/",
  10814. "license": [
  10815. "BSD-3-Clause"
  10816. ],
  10817. "authors": [
  10818. {
  10819. "name": "Sebastian Bergmann",
  10820. "email": "sebastian@phpunit.de"
  10821. }
  10822. ],
  10823. "description": "Provides functionality to handle HHVM/PHP environments",
  10824. "homepage": "https://github.com/sebastianbergmann/environment",
  10825. "keywords": [
  10826. "Xdebug",
  10827. "environment",
  10828. "hhvm"
  10829. ],
  10830. "support": {
  10831. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10832. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10833. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10834. },
  10835. "funding": [
  10836. {
  10837. "url": "https://github.com/sebastianbergmann",
  10838. "type": "github"
  10839. }
  10840. ],
  10841. "time": "2024-03-23T08:47:14+00:00"
  10842. },
  10843. {
  10844. "name": "sebastian/exporter",
  10845. "version": "5.1.2",
  10846. "source": {
  10847. "type": "git",
  10848. "url": "https://github.com/sebastianbergmann/exporter.git",
  10849. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10850. },
  10851. "dist": {
  10852. "type": "zip",
  10853. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10854. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10855. "shasum": ""
  10856. },
  10857. "require": {
  10858. "ext-mbstring": "*",
  10859. "php": ">=8.1",
  10860. "sebastian/recursion-context": "^5.0"
  10861. },
  10862. "require-dev": {
  10863. "phpunit/phpunit": "^10.0"
  10864. },
  10865. "type": "library",
  10866. "extra": {
  10867. "branch-alias": {
  10868. "dev-main": "5.1-dev"
  10869. }
  10870. },
  10871. "autoload": {
  10872. "classmap": [
  10873. "src/"
  10874. ]
  10875. },
  10876. "notification-url": "https://packagist.org/downloads/",
  10877. "license": [
  10878. "BSD-3-Clause"
  10879. ],
  10880. "authors": [
  10881. {
  10882. "name": "Sebastian Bergmann",
  10883. "email": "sebastian@phpunit.de"
  10884. },
  10885. {
  10886. "name": "Jeff Welch",
  10887. "email": "whatthejeff@gmail.com"
  10888. },
  10889. {
  10890. "name": "Volker Dusch",
  10891. "email": "github@wallbash.com"
  10892. },
  10893. {
  10894. "name": "Adam Harvey",
  10895. "email": "aharvey@php.net"
  10896. },
  10897. {
  10898. "name": "Bernhard Schussek",
  10899. "email": "bschussek@gmail.com"
  10900. }
  10901. ],
  10902. "description": "Provides the functionality to export PHP variables for visualization",
  10903. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10904. "keywords": [
  10905. "export",
  10906. "exporter"
  10907. ],
  10908. "support": {
  10909. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10910. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10911. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10912. },
  10913. "funding": [
  10914. {
  10915. "url": "https://github.com/sebastianbergmann",
  10916. "type": "github"
  10917. }
  10918. ],
  10919. "time": "2024-03-02T07:17:12+00:00"
  10920. },
  10921. {
  10922. "name": "sebastian/global-state",
  10923. "version": "6.0.2",
  10924. "source": {
  10925. "type": "git",
  10926. "url": "https://github.com/sebastianbergmann/global-state.git",
  10927. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10928. },
  10929. "dist": {
  10930. "type": "zip",
  10931. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10932. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10933. "shasum": ""
  10934. },
  10935. "require": {
  10936. "php": ">=8.1",
  10937. "sebastian/object-reflector": "^3.0",
  10938. "sebastian/recursion-context": "^5.0"
  10939. },
  10940. "require-dev": {
  10941. "ext-dom": "*",
  10942. "phpunit/phpunit": "^10.0"
  10943. },
  10944. "type": "library",
  10945. "extra": {
  10946. "branch-alias": {
  10947. "dev-main": "6.0-dev"
  10948. }
  10949. },
  10950. "autoload": {
  10951. "classmap": [
  10952. "src/"
  10953. ]
  10954. },
  10955. "notification-url": "https://packagist.org/downloads/",
  10956. "license": [
  10957. "BSD-3-Clause"
  10958. ],
  10959. "authors": [
  10960. {
  10961. "name": "Sebastian Bergmann",
  10962. "email": "sebastian@phpunit.de"
  10963. }
  10964. ],
  10965. "description": "Snapshotting of global state",
  10966. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10967. "keywords": [
  10968. "global state"
  10969. ],
  10970. "support": {
  10971. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10972. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10973. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10974. },
  10975. "funding": [
  10976. {
  10977. "url": "https://github.com/sebastianbergmann",
  10978. "type": "github"
  10979. }
  10980. ],
  10981. "time": "2024-03-02T07:19:19+00:00"
  10982. },
  10983. {
  10984. "name": "sebastian/lines-of-code",
  10985. "version": "2.0.2",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10989. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10994. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "nikic/php-parser": "^4.18 || ^5.0",
  10999. "php": ">=8.1"
  11000. },
  11001. "require-dev": {
  11002. "phpunit/phpunit": "^10.0"
  11003. },
  11004. "type": "library",
  11005. "extra": {
  11006. "branch-alias": {
  11007. "dev-main": "2.0-dev"
  11008. }
  11009. },
  11010. "autoload": {
  11011. "classmap": [
  11012. "src/"
  11013. ]
  11014. },
  11015. "notification-url": "https://packagist.org/downloads/",
  11016. "license": [
  11017. "BSD-3-Clause"
  11018. ],
  11019. "authors": [
  11020. {
  11021. "name": "Sebastian Bergmann",
  11022. "email": "sebastian@phpunit.de",
  11023. "role": "lead"
  11024. }
  11025. ],
  11026. "description": "Library for counting the lines of code in PHP source code",
  11027. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11028. "support": {
  11029. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11030. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11031. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11032. },
  11033. "funding": [
  11034. {
  11035. "url": "https://github.com/sebastianbergmann",
  11036. "type": "github"
  11037. }
  11038. ],
  11039. "time": "2023-12-21T08:38:20+00:00"
  11040. },
  11041. {
  11042. "name": "sebastian/object-enumerator",
  11043. "version": "5.0.0",
  11044. "source": {
  11045. "type": "git",
  11046. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11047. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11048. },
  11049. "dist": {
  11050. "type": "zip",
  11051. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11052. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11053. "shasum": ""
  11054. },
  11055. "require": {
  11056. "php": ">=8.1",
  11057. "sebastian/object-reflector": "^3.0",
  11058. "sebastian/recursion-context": "^5.0"
  11059. },
  11060. "require-dev": {
  11061. "phpunit/phpunit": "^10.0"
  11062. },
  11063. "type": "library",
  11064. "extra": {
  11065. "branch-alias": {
  11066. "dev-main": "5.0-dev"
  11067. }
  11068. },
  11069. "autoload": {
  11070. "classmap": [
  11071. "src/"
  11072. ]
  11073. },
  11074. "notification-url": "https://packagist.org/downloads/",
  11075. "license": [
  11076. "BSD-3-Clause"
  11077. ],
  11078. "authors": [
  11079. {
  11080. "name": "Sebastian Bergmann",
  11081. "email": "sebastian@phpunit.de"
  11082. }
  11083. ],
  11084. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11085. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11086. "support": {
  11087. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11088. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11089. },
  11090. "funding": [
  11091. {
  11092. "url": "https://github.com/sebastianbergmann",
  11093. "type": "github"
  11094. }
  11095. ],
  11096. "time": "2023-02-03T07:08:32+00:00"
  11097. },
  11098. {
  11099. "name": "sebastian/object-reflector",
  11100. "version": "3.0.0",
  11101. "source": {
  11102. "type": "git",
  11103. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11104. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11105. },
  11106. "dist": {
  11107. "type": "zip",
  11108. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11109. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11110. "shasum": ""
  11111. },
  11112. "require": {
  11113. "php": ">=8.1"
  11114. },
  11115. "require-dev": {
  11116. "phpunit/phpunit": "^10.0"
  11117. },
  11118. "type": "library",
  11119. "extra": {
  11120. "branch-alias": {
  11121. "dev-main": "3.0-dev"
  11122. }
  11123. },
  11124. "autoload": {
  11125. "classmap": [
  11126. "src/"
  11127. ]
  11128. },
  11129. "notification-url": "https://packagist.org/downloads/",
  11130. "license": [
  11131. "BSD-3-Clause"
  11132. ],
  11133. "authors": [
  11134. {
  11135. "name": "Sebastian Bergmann",
  11136. "email": "sebastian@phpunit.de"
  11137. }
  11138. ],
  11139. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11140. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11141. "support": {
  11142. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11143. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11144. },
  11145. "funding": [
  11146. {
  11147. "url": "https://github.com/sebastianbergmann",
  11148. "type": "github"
  11149. }
  11150. ],
  11151. "time": "2023-02-03T07:06:18+00:00"
  11152. },
  11153. {
  11154. "name": "sebastian/recursion-context",
  11155. "version": "5.0.0",
  11156. "source": {
  11157. "type": "git",
  11158. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11159. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11160. },
  11161. "dist": {
  11162. "type": "zip",
  11163. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11164. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11165. "shasum": ""
  11166. },
  11167. "require": {
  11168. "php": ">=8.1"
  11169. },
  11170. "require-dev": {
  11171. "phpunit/phpunit": "^10.0"
  11172. },
  11173. "type": "library",
  11174. "extra": {
  11175. "branch-alias": {
  11176. "dev-main": "5.0-dev"
  11177. }
  11178. },
  11179. "autoload": {
  11180. "classmap": [
  11181. "src/"
  11182. ]
  11183. },
  11184. "notification-url": "https://packagist.org/downloads/",
  11185. "license": [
  11186. "BSD-3-Clause"
  11187. ],
  11188. "authors": [
  11189. {
  11190. "name": "Sebastian Bergmann",
  11191. "email": "sebastian@phpunit.de"
  11192. },
  11193. {
  11194. "name": "Jeff Welch",
  11195. "email": "whatthejeff@gmail.com"
  11196. },
  11197. {
  11198. "name": "Adam Harvey",
  11199. "email": "aharvey@php.net"
  11200. }
  11201. ],
  11202. "description": "Provides functionality to recursively process PHP variables",
  11203. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11204. "support": {
  11205. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11206. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11207. },
  11208. "funding": [
  11209. {
  11210. "url": "https://github.com/sebastianbergmann",
  11211. "type": "github"
  11212. }
  11213. ],
  11214. "time": "2023-02-03T07:05:40+00:00"
  11215. },
  11216. {
  11217. "name": "sebastian/type",
  11218. "version": "4.0.0",
  11219. "source": {
  11220. "type": "git",
  11221. "url": "https://github.com/sebastianbergmann/type.git",
  11222. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11223. },
  11224. "dist": {
  11225. "type": "zip",
  11226. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11227. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11228. "shasum": ""
  11229. },
  11230. "require": {
  11231. "php": ">=8.1"
  11232. },
  11233. "require-dev": {
  11234. "phpunit/phpunit": "^10.0"
  11235. },
  11236. "type": "library",
  11237. "extra": {
  11238. "branch-alias": {
  11239. "dev-main": "4.0-dev"
  11240. }
  11241. },
  11242. "autoload": {
  11243. "classmap": [
  11244. "src/"
  11245. ]
  11246. },
  11247. "notification-url": "https://packagist.org/downloads/",
  11248. "license": [
  11249. "BSD-3-Clause"
  11250. ],
  11251. "authors": [
  11252. {
  11253. "name": "Sebastian Bergmann",
  11254. "email": "sebastian@phpunit.de",
  11255. "role": "lead"
  11256. }
  11257. ],
  11258. "description": "Collection of value objects that represent the types of the PHP type system",
  11259. "homepage": "https://github.com/sebastianbergmann/type",
  11260. "support": {
  11261. "issues": "https://github.com/sebastianbergmann/type/issues",
  11262. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11263. },
  11264. "funding": [
  11265. {
  11266. "url": "https://github.com/sebastianbergmann",
  11267. "type": "github"
  11268. }
  11269. ],
  11270. "time": "2023-02-03T07:10:45+00:00"
  11271. },
  11272. {
  11273. "name": "sebastian/version",
  11274. "version": "4.0.1",
  11275. "source": {
  11276. "type": "git",
  11277. "url": "https://github.com/sebastianbergmann/version.git",
  11278. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11279. },
  11280. "dist": {
  11281. "type": "zip",
  11282. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11283. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11284. "shasum": ""
  11285. },
  11286. "require": {
  11287. "php": ">=8.1"
  11288. },
  11289. "type": "library",
  11290. "extra": {
  11291. "branch-alias": {
  11292. "dev-main": "4.0-dev"
  11293. }
  11294. },
  11295. "autoload": {
  11296. "classmap": [
  11297. "src/"
  11298. ]
  11299. },
  11300. "notification-url": "https://packagist.org/downloads/",
  11301. "license": [
  11302. "BSD-3-Clause"
  11303. ],
  11304. "authors": [
  11305. {
  11306. "name": "Sebastian Bergmann",
  11307. "email": "sebastian@phpunit.de",
  11308. "role": "lead"
  11309. }
  11310. ],
  11311. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11312. "homepage": "https://github.com/sebastianbergmann/version",
  11313. "support": {
  11314. "issues": "https://github.com/sebastianbergmann/version/issues",
  11315. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11316. },
  11317. "funding": [
  11318. {
  11319. "url": "https://github.com/sebastianbergmann",
  11320. "type": "github"
  11321. }
  11322. ],
  11323. "time": "2023-02-07T11:34:05+00:00"
  11324. },
  11325. {
  11326. "name": "swoole/ide-helper",
  11327. "version": "5.1.6",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://github.com/swoole/ide-helper.git",
  11331. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  11332. },
  11333. "dist": {
  11334. "type": "zip",
  11335. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11336. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11337. "shasum": ""
  11338. },
  11339. "type": "library",
  11340. "notification-url": "https://packagist.org/downloads/",
  11341. "license": [
  11342. "Apache-2.0"
  11343. ],
  11344. "authors": [
  11345. {
  11346. "name": "Team Swoole",
  11347. "email": "team@swoole.com"
  11348. }
  11349. ],
  11350. "description": "IDE help files for Swoole.",
  11351. "support": {
  11352. "issues": "https://github.com/swoole/ide-helper/issues",
  11353. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  11354. },
  11355. "time": "2024-11-29T07:21:36+00:00"
  11356. },
  11357. {
  11358. "name": "symfony/event-dispatcher",
  11359. "version": "v6.4.13",
  11360. "source": {
  11361. "type": "git",
  11362. "url": "https://github.com/symfony/event-dispatcher.git",
  11363. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11364. },
  11365. "dist": {
  11366. "type": "zip",
  11367. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11368. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11369. "shasum": ""
  11370. },
  11371. "require": {
  11372. "php": ">=8.1",
  11373. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11374. },
  11375. "conflict": {
  11376. "symfony/dependency-injection": "<5.4",
  11377. "symfony/service-contracts": "<2.5"
  11378. },
  11379. "provide": {
  11380. "psr/event-dispatcher-implementation": "1.0",
  11381. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11382. },
  11383. "require-dev": {
  11384. "psr/log": "^1|^2|^3",
  11385. "symfony/config": "^5.4|^6.0|^7.0",
  11386. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11387. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11388. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11389. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11390. "symfony/service-contracts": "^2.5|^3",
  11391. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11392. },
  11393. "type": "library",
  11394. "autoload": {
  11395. "psr-4": {
  11396. "Symfony\\Component\\EventDispatcher\\": ""
  11397. },
  11398. "exclude-from-classmap": [
  11399. "/Tests/"
  11400. ]
  11401. },
  11402. "notification-url": "https://packagist.org/downloads/",
  11403. "license": [
  11404. "MIT"
  11405. ],
  11406. "authors": [
  11407. {
  11408. "name": "Fabien Potencier",
  11409. "email": "fabien@symfony.com"
  11410. },
  11411. {
  11412. "name": "Symfony Community",
  11413. "homepage": "https://symfony.com/contributors"
  11414. }
  11415. ],
  11416. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11417. "homepage": "https://symfony.com",
  11418. "support": {
  11419. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11420. },
  11421. "funding": [
  11422. {
  11423. "url": "https://symfony.com/sponsor",
  11424. "type": "custom"
  11425. },
  11426. {
  11427. "url": "https://github.com/fabpot",
  11428. "type": "github"
  11429. },
  11430. {
  11431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11432. "type": "tidelift"
  11433. }
  11434. ],
  11435. "time": "2024-09-25T14:18:03+00:00"
  11436. },
  11437. {
  11438. "name": "symfony/event-dispatcher-contracts",
  11439. "version": "v3.5.1",
  11440. "source": {
  11441. "type": "git",
  11442. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11443. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11444. },
  11445. "dist": {
  11446. "type": "zip",
  11447. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11448. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11449. "shasum": ""
  11450. },
  11451. "require": {
  11452. "php": ">=8.1",
  11453. "psr/event-dispatcher": "^1"
  11454. },
  11455. "type": "library",
  11456. "extra": {
  11457. "thanks": {
  11458. "url": "https://github.com/symfony/contracts",
  11459. "name": "symfony/contracts"
  11460. },
  11461. "branch-alias": {
  11462. "dev-main": "3.5-dev"
  11463. }
  11464. },
  11465. "autoload": {
  11466. "psr-4": {
  11467. "Symfony\\Contracts\\EventDispatcher\\": ""
  11468. }
  11469. },
  11470. "notification-url": "https://packagist.org/downloads/",
  11471. "license": [
  11472. "MIT"
  11473. ],
  11474. "authors": [
  11475. {
  11476. "name": "Nicolas Grekas",
  11477. "email": "p@tchwork.com"
  11478. },
  11479. {
  11480. "name": "Symfony Community",
  11481. "homepage": "https://symfony.com/contributors"
  11482. }
  11483. ],
  11484. "description": "Generic abstractions related to dispatching event",
  11485. "homepage": "https://symfony.com",
  11486. "keywords": [
  11487. "abstractions",
  11488. "contracts",
  11489. "decoupling",
  11490. "interfaces",
  11491. "interoperability",
  11492. "standards"
  11493. ],
  11494. "support": {
  11495. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11496. },
  11497. "funding": [
  11498. {
  11499. "url": "https://symfony.com/sponsor",
  11500. "type": "custom"
  11501. },
  11502. {
  11503. "url": "https://github.com/fabpot",
  11504. "type": "github"
  11505. },
  11506. {
  11507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11508. "type": "tidelift"
  11509. }
  11510. ],
  11511. "time": "2024-09-25T14:20:29+00:00"
  11512. },
  11513. {
  11514. "name": "symfony/filesystem",
  11515. "version": "v6.4.13",
  11516. "source": {
  11517. "type": "git",
  11518. "url": "https://github.com/symfony/filesystem.git",
  11519. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11520. },
  11521. "dist": {
  11522. "type": "zip",
  11523. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11524. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11525. "shasum": ""
  11526. },
  11527. "require": {
  11528. "php": ">=8.1",
  11529. "symfony/polyfill-ctype": "~1.8",
  11530. "symfony/polyfill-mbstring": "~1.8"
  11531. },
  11532. "require-dev": {
  11533. "symfony/process": "^5.4|^6.4|^7.0"
  11534. },
  11535. "type": "library",
  11536. "autoload": {
  11537. "psr-4": {
  11538. "Symfony\\Component\\Filesystem\\": ""
  11539. },
  11540. "exclude-from-classmap": [
  11541. "/Tests/"
  11542. ]
  11543. },
  11544. "notification-url": "https://packagist.org/downloads/",
  11545. "license": [
  11546. "MIT"
  11547. ],
  11548. "authors": [
  11549. {
  11550. "name": "Fabien Potencier",
  11551. "email": "fabien@symfony.com"
  11552. },
  11553. {
  11554. "name": "Symfony Community",
  11555. "homepage": "https://symfony.com/contributors"
  11556. }
  11557. ],
  11558. "description": "Provides basic utilities for the filesystem",
  11559. "homepage": "https://symfony.com",
  11560. "support": {
  11561. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11562. },
  11563. "funding": [
  11564. {
  11565. "url": "https://symfony.com/sponsor",
  11566. "type": "custom"
  11567. },
  11568. {
  11569. "url": "https://github.com/fabpot",
  11570. "type": "github"
  11571. },
  11572. {
  11573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11574. "type": "tidelift"
  11575. }
  11576. ],
  11577. "time": "2024-10-25T15:07:50+00:00"
  11578. },
  11579. {
  11580. "name": "symfony/http-foundation",
  11581. "version": "v6.4.16",
  11582. "source": {
  11583. "type": "git",
  11584. "url": "https://github.com/symfony/http-foundation.git",
  11585. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11586. },
  11587. "dist": {
  11588. "type": "zip",
  11589. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11590. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11591. "shasum": ""
  11592. },
  11593. "require": {
  11594. "php": ">=8.1",
  11595. "symfony/deprecation-contracts": "^2.5|^3",
  11596. "symfony/polyfill-mbstring": "~1.1",
  11597. "symfony/polyfill-php83": "^1.27"
  11598. },
  11599. "conflict": {
  11600. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11601. },
  11602. "require-dev": {
  11603. "doctrine/dbal": "^2.13.1|^3|^4",
  11604. "predis/predis": "^1.1|^2.0",
  11605. "symfony/cache": "^6.4.12|^7.1.5",
  11606. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11607. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11608. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11609. "symfony/mime": "^5.4|^6.0|^7.0",
  11610. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11611. },
  11612. "type": "library",
  11613. "autoload": {
  11614. "psr-4": {
  11615. "Symfony\\Component\\HttpFoundation\\": ""
  11616. },
  11617. "exclude-from-classmap": [
  11618. "/Tests/"
  11619. ]
  11620. },
  11621. "notification-url": "https://packagist.org/downloads/",
  11622. "license": [
  11623. "MIT"
  11624. ],
  11625. "authors": [
  11626. {
  11627. "name": "Fabien Potencier",
  11628. "email": "fabien@symfony.com"
  11629. },
  11630. {
  11631. "name": "Symfony Community",
  11632. "homepage": "https://symfony.com/contributors"
  11633. }
  11634. ],
  11635. "description": "Defines an object-oriented layer for the HTTP specification",
  11636. "homepage": "https://symfony.com",
  11637. "support": {
  11638. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11639. },
  11640. "funding": [
  11641. {
  11642. "url": "https://symfony.com/sponsor",
  11643. "type": "custom"
  11644. },
  11645. {
  11646. "url": "https://github.com/fabpot",
  11647. "type": "github"
  11648. },
  11649. {
  11650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11651. "type": "tidelift"
  11652. }
  11653. ],
  11654. "time": "2024-11-13T18:58:10+00:00"
  11655. },
  11656. {
  11657. "name": "symfony/options-resolver",
  11658. "version": "v6.4.16",
  11659. "source": {
  11660. "type": "git",
  11661. "url": "https://github.com/symfony/options-resolver.git",
  11662. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11663. },
  11664. "dist": {
  11665. "type": "zip",
  11666. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11667. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11668. "shasum": ""
  11669. },
  11670. "require": {
  11671. "php": ">=8.1",
  11672. "symfony/deprecation-contracts": "^2.5|^3"
  11673. },
  11674. "type": "library",
  11675. "autoload": {
  11676. "psr-4": {
  11677. "Symfony\\Component\\OptionsResolver\\": ""
  11678. },
  11679. "exclude-from-classmap": [
  11680. "/Tests/"
  11681. ]
  11682. },
  11683. "notification-url": "https://packagist.org/downloads/",
  11684. "license": [
  11685. "MIT"
  11686. ],
  11687. "authors": [
  11688. {
  11689. "name": "Fabien Potencier",
  11690. "email": "fabien@symfony.com"
  11691. },
  11692. {
  11693. "name": "Symfony Community",
  11694. "homepage": "https://symfony.com/contributors"
  11695. }
  11696. ],
  11697. "description": "Provides an improved replacement for the array_replace PHP function",
  11698. "homepage": "https://symfony.com",
  11699. "keywords": [
  11700. "config",
  11701. "configuration",
  11702. "options"
  11703. ],
  11704. "support": {
  11705. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11706. },
  11707. "funding": [
  11708. {
  11709. "url": "https://symfony.com/sponsor",
  11710. "type": "custom"
  11711. },
  11712. {
  11713. "url": "https://github.com/fabpot",
  11714. "type": "github"
  11715. },
  11716. {
  11717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11718. "type": "tidelift"
  11719. }
  11720. ],
  11721. "time": "2024-11-20T10:57:02+00:00"
  11722. },
  11723. {
  11724. "name": "symfony/polyfill-php81",
  11725. "version": "v1.31.0",
  11726. "source": {
  11727. "type": "git",
  11728. "url": "https://github.com/symfony/polyfill-php81.git",
  11729. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11730. },
  11731. "dist": {
  11732. "type": "zip",
  11733. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11734. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11735. "shasum": ""
  11736. },
  11737. "require": {
  11738. "php": ">=7.2"
  11739. },
  11740. "type": "library",
  11741. "extra": {
  11742. "thanks": {
  11743. "url": "https://github.com/symfony/polyfill",
  11744. "name": "symfony/polyfill"
  11745. }
  11746. },
  11747. "autoload": {
  11748. "files": [
  11749. "bootstrap.php"
  11750. ],
  11751. "psr-4": {
  11752. "Symfony\\Polyfill\\Php81\\": ""
  11753. },
  11754. "classmap": [
  11755. "Resources/stubs"
  11756. ]
  11757. },
  11758. "notification-url": "https://packagist.org/downloads/",
  11759. "license": [
  11760. "MIT"
  11761. ],
  11762. "authors": [
  11763. {
  11764. "name": "Nicolas Grekas",
  11765. "email": "p@tchwork.com"
  11766. },
  11767. {
  11768. "name": "Symfony Community",
  11769. "homepage": "https://symfony.com/contributors"
  11770. }
  11771. ],
  11772. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11773. "homepage": "https://symfony.com",
  11774. "keywords": [
  11775. "compatibility",
  11776. "polyfill",
  11777. "portable",
  11778. "shim"
  11779. ],
  11780. "support": {
  11781. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11782. },
  11783. "funding": [
  11784. {
  11785. "url": "https://symfony.com/sponsor",
  11786. "type": "custom"
  11787. },
  11788. {
  11789. "url": "https://github.com/fabpot",
  11790. "type": "github"
  11791. },
  11792. {
  11793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11794. "type": "tidelift"
  11795. }
  11796. ],
  11797. "time": "2024-09-09T11:45:10+00:00"
  11798. },
  11799. {
  11800. "name": "symfony/polyfill-php83",
  11801. "version": "v1.31.0",
  11802. "source": {
  11803. "type": "git",
  11804. "url": "https://github.com/symfony/polyfill-php83.git",
  11805. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11806. },
  11807. "dist": {
  11808. "type": "zip",
  11809. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11810. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11811. "shasum": ""
  11812. },
  11813. "require": {
  11814. "php": ">=7.2"
  11815. },
  11816. "type": "library",
  11817. "extra": {
  11818. "thanks": {
  11819. "url": "https://github.com/symfony/polyfill",
  11820. "name": "symfony/polyfill"
  11821. }
  11822. },
  11823. "autoload": {
  11824. "files": [
  11825. "bootstrap.php"
  11826. ],
  11827. "psr-4": {
  11828. "Symfony\\Polyfill\\Php83\\": ""
  11829. },
  11830. "classmap": [
  11831. "Resources/stubs"
  11832. ]
  11833. },
  11834. "notification-url": "https://packagist.org/downloads/",
  11835. "license": [
  11836. "MIT"
  11837. ],
  11838. "authors": [
  11839. {
  11840. "name": "Nicolas Grekas",
  11841. "email": "p@tchwork.com"
  11842. },
  11843. {
  11844. "name": "Symfony Community",
  11845. "homepage": "https://symfony.com/contributors"
  11846. }
  11847. ],
  11848. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11849. "homepage": "https://symfony.com",
  11850. "keywords": [
  11851. "compatibility",
  11852. "polyfill",
  11853. "portable",
  11854. "shim"
  11855. ],
  11856. "support": {
  11857. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11858. },
  11859. "funding": [
  11860. {
  11861. "url": "https://symfony.com/sponsor",
  11862. "type": "custom"
  11863. },
  11864. {
  11865. "url": "https://github.com/fabpot",
  11866. "type": "github"
  11867. },
  11868. {
  11869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11870. "type": "tidelift"
  11871. }
  11872. ],
  11873. "time": "2024-09-09T11:45:10+00:00"
  11874. },
  11875. {
  11876. "name": "symfony/process",
  11877. "version": "v6.4.15",
  11878. "source": {
  11879. "type": "git",
  11880. "url": "https://github.com/symfony/process.git",
  11881. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11882. },
  11883. "dist": {
  11884. "type": "zip",
  11885. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11886. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11887. "shasum": ""
  11888. },
  11889. "require": {
  11890. "php": ">=8.1"
  11891. },
  11892. "type": "library",
  11893. "autoload": {
  11894. "psr-4": {
  11895. "Symfony\\Component\\Process\\": ""
  11896. },
  11897. "exclude-from-classmap": [
  11898. "/Tests/"
  11899. ]
  11900. },
  11901. "notification-url": "https://packagist.org/downloads/",
  11902. "license": [
  11903. "MIT"
  11904. ],
  11905. "authors": [
  11906. {
  11907. "name": "Fabien Potencier",
  11908. "email": "fabien@symfony.com"
  11909. },
  11910. {
  11911. "name": "Symfony Community",
  11912. "homepage": "https://symfony.com/contributors"
  11913. }
  11914. ],
  11915. "description": "Executes commands in sub-processes",
  11916. "homepage": "https://symfony.com",
  11917. "support": {
  11918. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11919. },
  11920. "funding": [
  11921. {
  11922. "url": "https://symfony.com/sponsor",
  11923. "type": "custom"
  11924. },
  11925. {
  11926. "url": "https://github.com/fabpot",
  11927. "type": "github"
  11928. },
  11929. {
  11930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11931. "type": "tidelift"
  11932. }
  11933. ],
  11934. "time": "2024-11-06T14:19:14+00:00"
  11935. },
  11936. {
  11937. "name": "symfony/stopwatch",
  11938. "version": "v6.4.13",
  11939. "source": {
  11940. "type": "git",
  11941. "url": "https://github.com/symfony/stopwatch.git",
  11942. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11943. },
  11944. "dist": {
  11945. "type": "zip",
  11946. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11947. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11948. "shasum": ""
  11949. },
  11950. "require": {
  11951. "php": ">=8.1",
  11952. "symfony/service-contracts": "^2.5|^3"
  11953. },
  11954. "type": "library",
  11955. "autoload": {
  11956. "psr-4": {
  11957. "Symfony\\Component\\Stopwatch\\": ""
  11958. },
  11959. "exclude-from-classmap": [
  11960. "/Tests/"
  11961. ]
  11962. },
  11963. "notification-url": "https://packagist.org/downloads/",
  11964. "license": [
  11965. "MIT"
  11966. ],
  11967. "authors": [
  11968. {
  11969. "name": "Fabien Potencier",
  11970. "email": "fabien@symfony.com"
  11971. },
  11972. {
  11973. "name": "Symfony Community",
  11974. "homepage": "https://symfony.com/contributors"
  11975. }
  11976. ],
  11977. "description": "Provides a way to profile code",
  11978. "homepage": "https://symfony.com",
  11979. "support": {
  11980. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11981. },
  11982. "funding": [
  11983. {
  11984. "url": "https://symfony.com/sponsor",
  11985. "type": "custom"
  11986. },
  11987. {
  11988. "url": "https://github.com/fabpot",
  11989. "type": "github"
  11990. },
  11991. {
  11992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11993. "type": "tidelift"
  11994. }
  11995. ],
  11996. "time": "2024-09-25T14:18:03+00:00"
  11997. },
  11998. {
  11999. "name": "theseer/tokenizer",
  12000. "version": "1.2.3",
  12001. "source": {
  12002. "type": "git",
  12003. "url": "https://github.com/theseer/tokenizer.git",
  12004. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12005. },
  12006. "dist": {
  12007. "type": "zip",
  12008. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12009. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12010. "shasum": ""
  12011. },
  12012. "require": {
  12013. "ext-dom": "*",
  12014. "ext-tokenizer": "*",
  12015. "ext-xmlwriter": "*",
  12016. "php": "^7.2 || ^8.0"
  12017. },
  12018. "type": "library",
  12019. "autoload": {
  12020. "classmap": [
  12021. "src/"
  12022. ]
  12023. },
  12024. "notification-url": "https://packagist.org/downloads/",
  12025. "license": [
  12026. "BSD-3-Clause"
  12027. ],
  12028. "authors": [
  12029. {
  12030. "name": "Arne Blankerts",
  12031. "email": "arne@blankerts.de",
  12032. "role": "Developer"
  12033. }
  12034. ],
  12035. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12036. "support": {
  12037. "issues": "https://github.com/theseer/tokenizer/issues",
  12038. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12039. },
  12040. "funding": [
  12041. {
  12042. "url": "https://github.com/theseer",
  12043. "type": "github"
  12044. }
  12045. ],
  12046. "time": "2024-03-03T12:36:25+00:00"
  12047. },
  12048. {
  12049. "name": "zx/php-tools",
  12050. "version": "v0.0.1",
  12051. "source": {
  12052. "type": "git",
  12053. "url": "https://gitee.com/open-php/php-tools.git",
  12054. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  12055. },
  12056. "require": {
  12057. "php": ">=7.0"
  12058. },
  12059. "type": "library",
  12060. "autoload": {
  12061. "psr-4": {
  12062. "ZX\\": "src/"
  12063. }
  12064. },
  12065. "notification-url": "https://packagist.org/downloads/",
  12066. "license": [
  12067. "mit"
  12068. ],
  12069. "authors": [
  12070. {
  12071. "name": "zx",
  12072. "email": "903464207@qq.com"
  12073. }
  12074. ],
  12075. "description": "php-tools",
  12076. "time": "2023-06-25T06:24:10+00:00"
  12077. }
  12078. ],
  12079. "aliases": [],
  12080. "minimum-stability": "dev",
  12081. "stability-flags": [],
  12082. "prefer-stable": true,
  12083. "prefer-lowest": false,
  12084. "platform": {
  12085. "php": ">=8.1"
  12086. },
  12087. "platform-dev": [],
  12088. "plugin-api-version": "2.6.0"
  12089. }