composer.lock 479 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391
  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": "38b67762f870df573a4d5ca8969673c8",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.5"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  34. "yoast/phpunit-polyfills": "^1.0"
  35. },
  36. "suggest": {
  37. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "classmap": [
  42. "src/"
  43. ]
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "Apache-2.0"
  48. ],
  49. "authors": [
  50. {
  51. "name": "AWS SDK Common Runtime Team",
  52. "email": "aws-sdk-common-runtime@amazon.com"
  53. }
  54. ],
  55. "description": "AWS Common Runtime for PHP",
  56. "homepage": "https://github.com/awslabs/aws-crt-php",
  57. "keywords": [
  58. "amazon",
  59. "aws",
  60. "crt",
  61. "sdk"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  65. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  66. },
  67. "time": "2024-10-18T22:15:13+00:00"
  68. },
  69. {
  70. "name": "aws/aws-sdk-php",
  71. "version": "3.337.3",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/aws/aws-sdk-php.git",
  75. "reference": "06dfc8f76423b49aaa181debd25bbdc724c346d6"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/06dfc8f76423b49aaa181debd25bbdc724c346d6",
  80. "reference": "06dfc8f76423b49aaa181debd25bbdc724c346d6",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "aws/aws-crt-php": "^1.2.3",
  91. "ext-json": "*",
  92. "ext-pcre": "*",
  93. "ext-simplexml": "*",
  94. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  95. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  96. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  97. "mtdowling/jmespath.php": "^2.6",
  98. "php": ">=7.2.5",
  99. "psr/http-message": "^1.0 || ^2.0"
  100. },
  101. "require-dev": {
  102. "andrewsville/php-token-reflection": "^1.4",
  103. "aws/aws-php-sns-message-validator": "~1.0",
  104. "behat/behat": "~3.0",
  105. "composer/composer": "^1.10.22",
  106. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  107. "doctrine/cache": "~1.4",
  108. "ext-dom": "*",
  109. "ext-openssl": "*",
  110. "ext-pcntl": "*",
  111. "ext-sockets": "*",
  112. "nette/neon": "^2.3",
  113. "paragonie/random_compat": ">= 2",
  114. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  115. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  116. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  117. "sebastian/comparator": "^1.2.3 || ^4.0",
  118. "yoast/phpunit-polyfills": "^1.0"
  119. },
  120. "suggest": {
  121. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  122. "doctrine/cache": "To use the DoctrineCacheAdapter",
  123. "ext-curl": "To send requests using cURL",
  124. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  125. "ext-sockets": "To use client-side monitoring"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "3.0-dev"
  131. }
  132. },
  133. "autoload": {
  134. "files": [
  135. "src/functions.php"
  136. ],
  137. "psr-4": {
  138. "Aws\\": "src/"
  139. },
  140. "exclude-from-classmap": [
  141. "src/data/"
  142. ]
  143. },
  144. "notification-url": "https://packagist.org/downloads/",
  145. "license": [
  146. "Apache-2.0"
  147. ],
  148. "authors": [
  149. {
  150. "name": "Amazon Web Services",
  151. "homepage": "http://aws.amazon.com"
  152. }
  153. ],
  154. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  155. "homepage": "http://aws.amazon.com/sdkforphp",
  156. "keywords": [
  157. "amazon",
  158. "aws",
  159. "cloud",
  160. "dynamodb",
  161. "ec2",
  162. "glacier",
  163. "s3",
  164. "sdk"
  165. ],
  166. "support": {
  167. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  168. "issues": "https://github.com/aws/aws-sdk-php/issues",
  169. "source": "https://github.com/aws/aws-sdk-php/tree/3.337.3"
  170. },
  171. "time": "2025-01-21T19:10:05+00:00"
  172. },
  173. {
  174. "name": "carbonphp/carbon-doctrine-types",
  175. "version": "3.2.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  179. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  184. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  185. "shasum": "",
  186. "mirrors": [
  187. {
  188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  189. "preferred": true
  190. }
  191. ]
  192. },
  193. "require": {
  194. "php": "^8.1"
  195. },
  196. "conflict": {
  197. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  198. },
  199. "require-dev": {
  200. "doctrine/dbal": "^4.0.0",
  201. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  202. "phpunit/phpunit": "^10.3"
  203. },
  204. "type": "library",
  205. "autoload": {
  206. "psr-4": {
  207. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "KyleKatarn",
  217. "email": "kylekatarnls@gmail.com"
  218. }
  219. ],
  220. "description": "Types to use Carbon in Doctrine",
  221. "keywords": [
  222. "carbon",
  223. "date",
  224. "datetime",
  225. "doctrine",
  226. "time"
  227. ],
  228. "support": {
  229. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  230. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  231. },
  232. "funding": [
  233. {
  234. "url": "https://github.com/kylekatarnls",
  235. "type": "github"
  236. },
  237. {
  238. "url": "https://opencollective.com/Carbon",
  239. "type": "open_collective"
  240. },
  241. {
  242. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  243. "type": "tidelift"
  244. }
  245. ],
  246. "time": "2024-02-09T16:56:22+00:00"
  247. },
  248. {
  249. "name": "death_satan/hyperf-validate",
  250. "version": "v3.71",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  254. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  259. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "hyperf/config": "~3.0",
  270. "hyperf/db-connection": "~3.0",
  271. "hyperf/di": "~3.0",
  272. "hyperf/framework": "~3.0",
  273. "hyperf/validation": "~3.0",
  274. "php": ">=8.0"
  275. },
  276. "require-dev": {
  277. "friendsofphp/php-cs-fixer": "^3.0",
  278. "hyperf/testing": "~3.0",
  279. "mockery/mockery": "^1.0",
  280. "phpstan/phpstan": "^1.0",
  281. "swoole/ide-helper": "^4.5"
  282. },
  283. "suggest": {
  284. "swow/swow": "Required to create swow components."
  285. },
  286. "type": "library",
  287. "extra": {
  288. "hyperf": {
  289. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  290. }
  291. },
  292. "autoload": {
  293. "psr-4": {
  294. "DeathSatan\\Hyperf\\Validate\\": "src/"
  295. }
  296. },
  297. "notification-url": "https://packagist.org/downloads/",
  298. "license": [
  299. "MIT"
  300. ],
  301. "description": "Hyperf Validate",
  302. "keywords": [
  303. "hyperf",
  304. "php",
  305. "validate"
  306. ],
  307. "support": {
  308. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  309. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  310. },
  311. "time": "2023-04-03T17:22:13+00:00"
  312. },
  313. {
  314. "name": "doctrine/annotations",
  315. "version": "2.0.1",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/doctrine/annotations.git",
  319. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  324. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  325. "shasum": "",
  326. "mirrors": [
  327. {
  328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  329. "preferred": true
  330. }
  331. ]
  332. },
  333. "require": {
  334. "doctrine/lexer": "^2 || ^3",
  335. "ext-tokenizer": "*",
  336. "php": "^7.2 || ^8.0",
  337. "psr/cache": "^1 || ^2 || ^3"
  338. },
  339. "require-dev": {
  340. "doctrine/cache": "^2.0",
  341. "doctrine/coding-standard": "^10",
  342. "phpstan/phpstan": "^1.8.0",
  343. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  344. "symfony/cache": "^5.4 || ^6",
  345. "vimeo/psalm": "^4.10"
  346. },
  347. "suggest": {
  348. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  349. },
  350. "type": "library",
  351. "autoload": {
  352. "psr-4": {
  353. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  354. }
  355. },
  356. "notification-url": "https://packagist.org/downloads/",
  357. "license": [
  358. "MIT"
  359. ],
  360. "authors": [
  361. {
  362. "name": "Guilherme Blanco",
  363. "email": "guilhermeblanco@gmail.com"
  364. },
  365. {
  366. "name": "Roman Borschel",
  367. "email": "roman@code-factory.org"
  368. },
  369. {
  370. "name": "Benjamin Eberlei",
  371. "email": "kontakt@beberlei.de"
  372. },
  373. {
  374. "name": "Jonathan Wage",
  375. "email": "jonwage@gmail.com"
  376. },
  377. {
  378. "name": "Johannes Schmitt",
  379. "email": "schmittjoh@gmail.com"
  380. }
  381. ],
  382. "description": "Docblock Annotations Parser",
  383. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  384. "keywords": [
  385. "annotations",
  386. "docblock",
  387. "parser"
  388. ],
  389. "support": {
  390. "issues": "https://github.com/doctrine/annotations/issues",
  391. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  392. },
  393. "time": "2023-02-02T22:02:53+00:00"
  394. },
  395. {
  396. "name": "doctrine/deprecations",
  397. "version": "1.1.4",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/doctrine/deprecations.git",
  401. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  406. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  407. "shasum": "",
  408. "mirrors": [
  409. {
  410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  411. "preferred": true
  412. }
  413. ]
  414. },
  415. "require": {
  416. "php": "^7.1 || ^8.0"
  417. },
  418. "require-dev": {
  419. "doctrine/coding-standard": "^9 || ^12",
  420. "phpstan/phpstan": "1.4.10 || 2.0.3",
  421. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  422. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  423. "psr/log": "^1 || ^2 || ^3"
  424. },
  425. "suggest": {
  426. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  427. },
  428. "type": "library",
  429. "autoload": {
  430. "psr-4": {
  431. "Doctrine\\Deprecations\\": "src"
  432. }
  433. },
  434. "notification-url": "https://packagist.org/downloads/",
  435. "license": [
  436. "MIT"
  437. ],
  438. "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.",
  439. "homepage": "https://www.doctrine-project.org/",
  440. "support": {
  441. "issues": "https://github.com/doctrine/deprecations/issues",
  442. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  443. },
  444. "time": "2024-12-07T21:18:45+00:00"
  445. },
  446. {
  447. "name": "doctrine/inflector",
  448. "version": "2.0.10",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/doctrine/inflector.git",
  452. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  457. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  458. "shasum": "",
  459. "mirrors": [
  460. {
  461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  462. "preferred": true
  463. }
  464. ]
  465. },
  466. "require": {
  467. "php": "^7.2 || ^8.0"
  468. },
  469. "require-dev": {
  470. "doctrine/coding-standard": "^11.0",
  471. "phpstan/phpstan": "^1.8",
  472. "phpstan/phpstan-phpunit": "^1.1",
  473. "phpstan/phpstan-strict-rules": "^1.3",
  474. "phpunit/phpunit": "^8.5 || ^9.5",
  475. "vimeo/psalm": "^4.25 || ^5.4"
  476. },
  477. "type": "library",
  478. "autoload": {
  479. "psr-4": {
  480. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "Guilherme Blanco",
  490. "email": "guilhermeblanco@gmail.com"
  491. },
  492. {
  493. "name": "Roman Borschel",
  494. "email": "roman@code-factory.org"
  495. },
  496. {
  497. "name": "Benjamin Eberlei",
  498. "email": "kontakt@beberlei.de"
  499. },
  500. {
  501. "name": "Jonathan Wage",
  502. "email": "jonwage@gmail.com"
  503. },
  504. {
  505. "name": "Johannes Schmitt",
  506. "email": "schmittjoh@gmail.com"
  507. }
  508. ],
  509. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  510. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  511. "keywords": [
  512. "inflection",
  513. "inflector",
  514. "lowercase",
  515. "manipulation",
  516. "php",
  517. "plural",
  518. "singular",
  519. "strings",
  520. "uppercase",
  521. "words"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/doctrine/inflector/issues",
  525. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  526. },
  527. "funding": [
  528. {
  529. "url": "https://www.doctrine-project.org/sponsorship.html",
  530. "type": "custom"
  531. },
  532. {
  533. "url": "https://www.patreon.com/phpdoctrine",
  534. "type": "patreon"
  535. },
  536. {
  537. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  538. "type": "tidelift"
  539. }
  540. ],
  541. "time": "2024-02-18T20:23:39+00:00"
  542. },
  543. {
  544. "name": "doctrine/instantiator",
  545. "version": "1.5.0",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/doctrine/instantiator.git",
  549. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  554. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  555. "shasum": "",
  556. "mirrors": [
  557. {
  558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  559. "preferred": true
  560. }
  561. ]
  562. },
  563. "require": {
  564. "php": "^7.1 || ^8.0"
  565. },
  566. "require-dev": {
  567. "doctrine/coding-standard": "^9 || ^11",
  568. "ext-pdo": "*",
  569. "ext-phar": "*",
  570. "phpbench/phpbench": "^0.16 || ^1",
  571. "phpstan/phpstan": "^1.4",
  572. "phpstan/phpstan-phpunit": "^1",
  573. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  574. "vimeo/psalm": "^4.30 || ^5.4"
  575. },
  576. "type": "library",
  577. "autoload": {
  578. "psr-4": {
  579. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "Marco Pivetta",
  589. "email": "ocramius@gmail.com",
  590. "homepage": "https://ocramius.github.io/"
  591. }
  592. ],
  593. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  594. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  595. "keywords": [
  596. "constructor",
  597. "instantiate"
  598. ],
  599. "support": {
  600. "issues": "https://github.com/doctrine/instantiator/issues",
  601. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  602. },
  603. "funding": [
  604. {
  605. "url": "https://www.doctrine-project.org/sponsorship.html",
  606. "type": "custom"
  607. },
  608. {
  609. "url": "https://www.patreon.com/phpdoctrine",
  610. "type": "patreon"
  611. },
  612. {
  613. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  614. "type": "tidelift"
  615. }
  616. ],
  617. "time": "2022-12-30T00:15:36+00:00"
  618. },
  619. {
  620. "name": "doctrine/lexer",
  621. "version": "2.1.1",
  622. "source": {
  623. "type": "git",
  624. "url": "https://github.com/doctrine/lexer.git",
  625. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  626. },
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  630. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  631. "shasum": "",
  632. "mirrors": [
  633. {
  634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  635. "preferred": true
  636. }
  637. ]
  638. },
  639. "require": {
  640. "doctrine/deprecations": "^1.0",
  641. "php": "^7.1 || ^8.0"
  642. },
  643. "require-dev": {
  644. "doctrine/coding-standard": "^9 || ^12",
  645. "phpstan/phpstan": "^1.3",
  646. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  647. "psalm/plugin-phpunit": "^0.18.3",
  648. "vimeo/psalm": "^4.11 || ^5.21"
  649. },
  650. "type": "library",
  651. "autoload": {
  652. "psr-4": {
  653. "Doctrine\\Common\\Lexer\\": "src"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Guilherme Blanco",
  663. "email": "guilhermeblanco@gmail.com"
  664. },
  665. {
  666. "name": "Roman Borschel",
  667. "email": "roman@code-factory.org"
  668. },
  669. {
  670. "name": "Johannes Schmitt",
  671. "email": "schmittjoh@gmail.com"
  672. }
  673. ],
  674. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  675. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  676. "keywords": [
  677. "annotations",
  678. "docblock",
  679. "lexer",
  680. "parser",
  681. "php"
  682. ],
  683. "support": {
  684. "issues": "https://github.com/doctrine/lexer/issues",
  685. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  686. },
  687. "funding": [
  688. {
  689. "url": "https://www.doctrine-project.org/sponsorship.html",
  690. "type": "custom"
  691. },
  692. {
  693. "url": "https://www.patreon.com/phpdoctrine",
  694. "type": "patreon"
  695. },
  696. {
  697. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  698. "type": "tidelift"
  699. }
  700. ],
  701. "time": "2024-02-05T11:35:39+00:00"
  702. },
  703. {
  704. "name": "easyswoole/spl",
  705. "version": "2.1.3",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/easy-swoole/spl.git",
  709. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  714. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  715. "shasum": "",
  716. "mirrors": [
  717. {
  718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  719. "preferred": true
  720. }
  721. ]
  722. },
  723. "require": {
  724. "ext-dom": "*",
  725. "ext-json": "*",
  726. "ext-simplexml": "*",
  727. "php": ">=8.1.0"
  728. },
  729. "require-dev": {
  730. "easyswoole/phpunit": "^1.0",
  731. "easyswoole/swoole-ide-helper": "^1.0"
  732. },
  733. "type": "library",
  734. "autoload": {
  735. "psr-4": {
  736. "EasySwoole\\Spl\\": "src/",
  737. "EasySwoole\\Spl\\Test\\": "test/"
  738. }
  739. },
  740. "notification-url": "https://packagist.org/downloads/",
  741. "license": [
  742. "Apache-2.0"
  743. ],
  744. "authors": [
  745. {
  746. "name": "YF",
  747. "email": "291323003@qq.com"
  748. }
  749. ],
  750. "description": "php stander lib",
  751. "homepage": "https://www.easyswoole.com/",
  752. "keywords": [
  753. "async",
  754. "easyswoole",
  755. "framework",
  756. "swoole"
  757. ],
  758. "support": {
  759. "issues": "https://github.com/easy-swoole/spl/issues",
  760. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  761. },
  762. "time": "2024-07-09T14:44:25+00:00"
  763. },
  764. {
  765. "name": "easyswoole/verifycode",
  766. "version": "3.1.2",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/easy-swoole/verify-code.git",
  770. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  775. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  776. "shasum": "",
  777. "mirrors": [
  778. {
  779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  780. "preferred": true
  781. }
  782. ]
  783. },
  784. "require": {
  785. "easyswoole/spl": "^2.0",
  786. "ext-gd": "*",
  787. "php": ">=8.1"
  788. },
  789. "type": "library",
  790. "autoload": {
  791. "psr-4": {
  792. "EasySwoole\\VerifyCode\\": "src"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "Apache-2.0"
  798. ],
  799. "authors": [
  800. {
  801. "name": "YF",
  802. "email": "291323003@qq.com"
  803. },
  804. {
  805. "name": "evalor",
  806. "email": "mipone@foxmail.com"
  807. }
  808. ],
  809. "support": {
  810. "issues": "https://github.com/easy-swoole/verify-code/issues",
  811. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  812. },
  813. "time": "2023-09-06T06:45:56+00:00"
  814. },
  815. {
  816. "name": "egulias/email-validator",
  817. "version": "3.2.6",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/egulias/EmailValidator.git",
  821. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  826. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  827. "shasum": "",
  828. "mirrors": [
  829. {
  830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  831. "preferred": true
  832. }
  833. ]
  834. },
  835. "require": {
  836. "doctrine/lexer": "^1.2|^2",
  837. "php": ">=7.2",
  838. "symfony/polyfill-intl-idn": "^1.15"
  839. },
  840. "require-dev": {
  841. "phpunit/phpunit": "^8.5.8|^9.3.3",
  842. "vimeo/psalm": "^4"
  843. },
  844. "suggest": {
  845. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  846. },
  847. "type": "library",
  848. "extra": {
  849. "branch-alias": {
  850. "dev-master": "3.0.x-dev"
  851. }
  852. },
  853. "autoload": {
  854. "psr-4": {
  855. "Egulias\\EmailValidator\\": "src"
  856. }
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "MIT"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Eduardo Gulias Davis"
  865. }
  866. ],
  867. "description": "A library for validating emails against several RFCs",
  868. "homepage": "https://github.com/egulias/EmailValidator",
  869. "keywords": [
  870. "email",
  871. "emailvalidation",
  872. "emailvalidator",
  873. "validation",
  874. "validator"
  875. ],
  876. "support": {
  877. "issues": "https://github.com/egulias/EmailValidator/issues",
  878. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  879. },
  880. "funding": [
  881. {
  882. "url": "https://github.com/egulias",
  883. "type": "github"
  884. }
  885. ],
  886. "time": "2023-06-01T07:04:22+00:00"
  887. },
  888. {
  889. "name": "fig/http-message-util",
  890. "version": "1.1.5",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/php-fig/http-message-util.git",
  894. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  899. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  900. "shasum": "",
  901. "mirrors": [
  902. {
  903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  904. "preferred": true
  905. }
  906. ]
  907. },
  908. "require": {
  909. "php": "^5.3 || ^7.0 || ^8.0"
  910. },
  911. "suggest": {
  912. "psr/http-message": "The package containing the PSR-7 interfaces"
  913. },
  914. "type": "library",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "1.1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Fig\\Http\\Message\\": "src/"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "PHP-FIG",
  932. "homepage": "https://www.php-fig.org/"
  933. }
  934. ],
  935. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  936. "keywords": [
  937. "http",
  938. "http-message",
  939. "psr",
  940. "psr-7",
  941. "request",
  942. "response"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/php-fig/http-message-util/issues",
  946. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  947. },
  948. "time": "2020-11-24T22:02:12+00:00"
  949. },
  950. {
  951. "name": "friendsofhyperf/openai-client",
  952. "version": "v3.1.62",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/friendsofhyperf/openai-client.git",
  956. "reference": "85f01a47f89e33b7623193dbe86846245106da6e"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/friendsofhyperf/openai-client/zipball/85f01a47f89e33b7623193dbe86846245106da6e",
  961. "reference": "85f01a47f89e33b7623193dbe86846245106da6e",
  962. "shasum": "",
  963. "mirrors": [
  964. {
  965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  966. "preferred": true
  967. }
  968. ]
  969. },
  970. "require": {
  971. "hyperf/config": "~3.1.0",
  972. "hyperf/di": "~3.1.0",
  973. "hyperf/guzzle": "~3.1.0",
  974. "openai-php/client": ">=0.10.0"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "hyperf": {
  979. "config": "FriendsOfHyperf\\OpenAi\\ConfigProvider"
  980. },
  981. "branch-alias": {
  982. "dev-main": "3.1-dev"
  983. }
  984. },
  985. "autoload": {
  986. "psr-4": {
  987. "FriendsOfHyperf\\OpenAi\\": "src/"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "huangdijia",
  997. "email": "huangdijia@gmail.com"
  998. }
  999. ],
  1000. "description": "The openai client component for Hyperf.",
  1001. "homepage": "https://github.com/friendsofhyperf/openai-client",
  1002. "keywords": [
  1003. "hyperf",
  1004. "openai",
  1005. "v3.1"
  1006. ],
  1007. "support": {
  1008. "docs": "https://hyperf.fans",
  1009. "issues": "https://github.com/friendsofhyperf/components/issues",
  1010. "pull-request": "https://github.com/friendsofhyperf/components/pulls",
  1011. "source": "https://github.com/friendsofhyperf/components"
  1012. },
  1013. "funding": [
  1014. {
  1015. "url": "https://hdj.me/sponsors/",
  1016. "type": "custom"
  1017. },
  1018. {
  1019. "url": "https://github.com/huangdijia",
  1020. "type": "github"
  1021. }
  1022. ],
  1023. "time": "2025-05-15T03:52:00+00:00"
  1024. },
  1025. {
  1026. "name": "graham-campbell/result-type",
  1027. "version": "1.1.x-dev",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1031. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1036. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1037. "shasum": "",
  1038. "mirrors": [
  1039. {
  1040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1041. "preferred": true
  1042. }
  1043. ]
  1044. },
  1045. "require": {
  1046. "php": "^7.2.5 || ^8.0",
  1047. "phpoption/phpoption": "^1.9.3"
  1048. },
  1049. "require-dev": {
  1050. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1051. },
  1052. "default-branch": true,
  1053. "type": "library",
  1054. "autoload": {
  1055. "psr-4": {
  1056. "GrahamCampbell\\ResultType\\": "src/"
  1057. }
  1058. },
  1059. "notification-url": "https://packagist.org/downloads/",
  1060. "license": [
  1061. "MIT"
  1062. ],
  1063. "authors": [
  1064. {
  1065. "name": "Graham Campbell",
  1066. "email": "hello@gjcampbell.co.uk",
  1067. "homepage": "https://github.com/GrahamCampbell"
  1068. }
  1069. ],
  1070. "description": "An Implementation Of The Result Type",
  1071. "keywords": [
  1072. "Graham Campbell",
  1073. "GrahamCampbell",
  1074. "Result Type",
  1075. "Result-Type",
  1076. "result"
  1077. ],
  1078. "support": {
  1079. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1080. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1081. },
  1082. "funding": [
  1083. {
  1084. "url": "https://github.com/GrahamCampbell",
  1085. "type": "github"
  1086. },
  1087. {
  1088. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1089. "type": "tidelift"
  1090. }
  1091. ],
  1092. "time": "2025-02-09T22:43:44+00:00"
  1093. },
  1094. {
  1095. "name": "guzzlehttp/guzzle",
  1096. "version": "7.9.2",
  1097. "source": {
  1098. "type": "git",
  1099. "url": "https://github.com/guzzle/guzzle.git",
  1100. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1101. },
  1102. "dist": {
  1103. "type": "zip",
  1104. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1105. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1106. "shasum": "",
  1107. "mirrors": [
  1108. {
  1109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1110. "preferred": true
  1111. }
  1112. ]
  1113. },
  1114. "require": {
  1115. "ext-json": "*",
  1116. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1117. "guzzlehttp/psr7": "^2.7.0",
  1118. "php": "^7.2.5 || ^8.0",
  1119. "psr/http-client": "^1.0",
  1120. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1121. },
  1122. "provide": {
  1123. "psr/http-client-implementation": "1.0"
  1124. },
  1125. "require-dev": {
  1126. "bamarni/composer-bin-plugin": "^1.8.2",
  1127. "ext-curl": "*",
  1128. "guzzle/client-integration-tests": "3.0.2",
  1129. "php-http/message-factory": "^1.1",
  1130. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1131. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1132. },
  1133. "suggest": {
  1134. "ext-curl": "Required for CURL handler support",
  1135. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1136. "psr/log": "Required for using the Log middleware"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "bamarni-bin": {
  1141. "bin-links": true,
  1142. "forward-command": false
  1143. }
  1144. },
  1145. "autoload": {
  1146. "files": [
  1147. "src/functions_include.php"
  1148. ],
  1149. "psr-4": {
  1150. "GuzzleHttp\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Graham Campbell",
  1160. "email": "hello@gjcampbell.co.uk",
  1161. "homepage": "https://github.com/GrahamCampbell"
  1162. },
  1163. {
  1164. "name": "Michael Dowling",
  1165. "email": "mtdowling@gmail.com",
  1166. "homepage": "https://github.com/mtdowling"
  1167. },
  1168. {
  1169. "name": "Jeremy Lindblom",
  1170. "email": "jeremeamia@gmail.com",
  1171. "homepage": "https://github.com/jeremeamia"
  1172. },
  1173. {
  1174. "name": "George Mponos",
  1175. "email": "gmponos@gmail.com",
  1176. "homepage": "https://github.com/gmponos"
  1177. },
  1178. {
  1179. "name": "Tobias Nyholm",
  1180. "email": "tobias.nyholm@gmail.com",
  1181. "homepage": "https://github.com/Nyholm"
  1182. },
  1183. {
  1184. "name": "Márk Sági-Kazár",
  1185. "email": "mark.sagikazar@gmail.com",
  1186. "homepage": "https://github.com/sagikazarmark"
  1187. },
  1188. {
  1189. "name": "Tobias Schultze",
  1190. "email": "webmaster@tubo-world.de",
  1191. "homepage": "https://github.com/Tobion"
  1192. }
  1193. ],
  1194. "description": "Guzzle is a PHP HTTP client library",
  1195. "keywords": [
  1196. "client",
  1197. "curl",
  1198. "framework",
  1199. "http",
  1200. "http client",
  1201. "psr-18",
  1202. "psr-7",
  1203. "rest",
  1204. "web service"
  1205. ],
  1206. "support": {
  1207. "issues": "https://github.com/guzzle/guzzle/issues",
  1208. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1209. },
  1210. "funding": [
  1211. {
  1212. "url": "https://github.com/GrahamCampbell",
  1213. "type": "github"
  1214. },
  1215. {
  1216. "url": "https://github.com/Nyholm",
  1217. "type": "github"
  1218. },
  1219. {
  1220. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1221. "type": "tidelift"
  1222. }
  1223. ],
  1224. "time": "2024-07-24T11:22:20+00:00"
  1225. },
  1226. {
  1227. "name": "guzzlehttp/promises",
  1228. "version": "2.2.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/guzzle/promises.git",
  1232. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1237. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1238. "shasum": "",
  1239. "mirrors": [
  1240. {
  1241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1242. "preferred": true
  1243. }
  1244. ]
  1245. },
  1246. "require": {
  1247. "php": "^7.2.5 || ^8.0"
  1248. },
  1249. "require-dev": {
  1250. "bamarni/composer-bin-plugin": "^1.8.2",
  1251. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1252. },
  1253. "type": "library",
  1254. "extra": {
  1255. "bamarni-bin": {
  1256. "bin-links": true,
  1257. "forward-command": false
  1258. }
  1259. },
  1260. "autoload": {
  1261. "psr-4": {
  1262. "GuzzleHttp\\Promise\\": "src/"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Graham Campbell",
  1272. "email": "hello@gjcampbell.co.uk",
  1273. "homepage": "https://github.com/GrahamCampbell"
  1274. },
  1275. {
  1276. "name": "Michael Dowling",
  1277. "email": "mtdowling@gmail.com",
  1278. "homepage": "https://github.com/mtdowling"
  1279. },
  1280. {
  1281. "name": "Tobias Nyholm",
  1282. "email": "tobias.nyholm@gmail.com",
  1283. "homepage": "https://github.com/Nyholm"
  1284. },
  1285. {
  1286. "name": "Tobias Schultze",
  1287. "email": "webmaster@tubo-world.de",
  1288. "homepage": "https://github.com/Tobion"
  1289. }
  1290. ],
  1291. "description": "Guzzle promises library",
  1292. "keywords": [
  1293. "promise"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/guzzle/promises/issues",
  1297. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  1298. },
  1299. "funding": [
  1300. {
  1301. "url": "https://github.com/GrahamCampbell",
  1302. "type": "github"
  1303. },
  1304. {
  1305. "url": "https://github.com/Nyholm",
  1306. "type": "github"
  1307. },
  1308. {
  1309. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1310. "type": "tidelift"
  1311. }
  1312. ],
  1313. "time": "2025-03-27T13:27:01+00:00"
  1314. },
  1315. {
  1316. "name": "guzzlehttp/psr7",
  1317. "version": "2.7.1",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/guzzle/psr7.git",
  1321. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1326. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1327. "shasum": "",
  1328. "mirrors": [
  1329. {
  1330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1331. "preferred": true
  1332. }
  1333. ]
  1334. },
  1335. "require": {
  1336. "php": "^7.2.5 || ^8.0",
  1337. "psr/http-factory": "^1.0",
  1338. "psr/http-message": "^1.1 || ^2.0",
  1339. "ralouphie/getallheaders": "^3.0"
  1340. },
  1341. "provide": {
  1342. "psr/http-factory-implementation": "1.0",
  1343. "psr/http-message-implementation": "1.0"
  1344. },
  1345. "require-dev": {
  1346. "bamarni/composer-bin-plugin": "^1.8.2",
  1347. "http-interop/http-factory-tests": "0.9.0",
  1348. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1349. },
  1350. "suggest": {
  1351. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "bamarni-bin": {
  1356. "bin-links": true,
  1357. "forward-command": false
  1358. }
  1359. },
  1360. "autoload": {
  1361. "psr-4": {
  1362. "GuzzleHttp\\Psr7\\": "src/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Graham Campbell",
  1372. "email": "hello@gjcampbell.co.uk",
  1373. "homepage": "https://github.com/GrahamCampbell"
  1374. },
  1375. {
  1376. "name": "Michael Dowling",
  1377. "email": "mtdowling@gmail.com",
  1378. "homepage": "https://github.com/mtdowling"
  1379. },
  1380. {
  1381. "name": "George Mponos",
  1382. "email": "gmponos@gmail.com",
  1383. "homepage": "https://github.com/gmponos"
  1384. },
  1385. {
  1386. "name": "Tobias Nyholm",
  1387. "email": "tobias.nyholm@gmail.com",
  1388. "homepage": "https://github.com/Nyholm"
  1389. },
  1390. {
  1391. "name": "Márk Sági-Kazár",
  1392. "email": "mark.sagikazar@gmail.com",
  1393. "homepage": "https://github.com/sagikazarmark"
  1394. },
  1395. {
  1396. "name": "Tobias Schultze",
  1397. "email": "webmaster@tubo-world.de",
  1398. "homepage": "https://github.com/Tobion"
  1399. },
  1400. {
  1401. "name": "Márk Sági-Kazár",
  1402. "email": "mark.sagikazar@gmail.com",
  1403. "homepage": "https://sagikazarmark.hu"
  1404. }
  1405. ],
  1406. "description": "PSR-7 message implementation that also provides common utility methods",
  1407. "keywords": [
  1408. "http",
  1409. "message",
  1410. "psr-7",
  1411. "request",
  1412. "response",
  1413. "stream",
  1414. "uri",
  1415. "url"
  1416. ],
  1417. "support": {
  1418. "issues": "https://github.com/guzzle/psr7/issues",
  1419. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1420. },
  1421. "funding": [
  1422. {
  1423. "url": "https://github.com/GrahamCampbell",
  1424. "type": "github"
  1425. },
  1426. {
  1427. "url": "https://github.com/Nyholm",
  1428. "type": "github"
  1429. },
  1430. {
  1431. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1432. "type": "tidelift"
  1433. }
  1434. ],
  1435. "time": "2025-03-27T12:30:47+00:00"
  1436. },
  1437. {
  1438. "name": "hyperf/amqp",
  1439. "version": "v3.1.50",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/hyperf/amqp.git",
  1443. "reference": "db5e24822f2dcc3af055b5c985702f59901be380"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/hyperf/amqp/zipball/db5e24822f2dcc3af055b5c985702f59901be380",
  1448. "reference": "db5e24822f2dcc3af055b5c985702f59901be380",
  1449. "shasum": "",
  1450. "mirrors": [
  1451. {
  1452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1453. "preferred": true
  1454. }
  1455. ]
  1456. },
  1457. "require": {
  1458. "doctrine/instantiator": "^1.2.0",
  1459. "hyperf/codec": "~3.1.0",
  1460. "hyperf/contract": "~3.1.0",
  1461. "hyperf/coroutine": "~3.1.0",
  1462. "hyperf/pool": "~3.1.0",
  1463. "hyperf/process": "~3.1.0",
  1464. "hyperf/support": "~3.1.0",
  1465. "hyperf/utils": "~3.1.0",
  1466. "php": ">=8.1",
  1467. "php-amqplib/php-amqplib": "^3.5",
  1468. "psr/container": "^1.0 || ^2.0",
  1469. "psr/event-dispatcher": "^1.0",
  1470. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1471. },
  1472. "suggest": {
  1473. "hyperf/di": "Required to use annotations.",
  1474. "hyperf/event": "Declare queue and start consumers automatically."
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "hyperf": {
  1479. "config": "Hyperf\\Amqp\\ConfigProvider"
  1480. },
  1481. "branch-alias": {
  1482. "dev-master": "3.1-dev"
  1483. }
  1484. },
  1485. "autoload": {
  1486. "psr-4": {
  1487. "Hyperf\\Amqp\\": "src/"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "description": "A amqplib for hyperf.",
  1495. "homepage": "https://hyperf.io",
  1496. "keywords": [
  1497. "AMQP",
  1498. "hyperf",
  1499. "php"
  1500. ],
  1501. "support": {
  1502. "docs": "https://hyperf.wiki",
  1503. "issues": "https://github.com/hyperf/hyperf/issues",
  1504. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1505. "source": "https://github.com/hyperf/hyperf"
  1506. },
  1507. "funding": [
  1508. {
  1509. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1510. "type": "custom"
  1511. },
  1512. {
  1513. "url": "https://opencollective.com/hyperf",
  1514. "type": "open_collective"
  1515. }
  1516. ],
  1517. "time": "2025-01-08T08:57:09+00:00"
  1518. },
  1519. {
  1520. "name": "hyperf/async-queue",
  1521. "version": "v3.1.51",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/hyperf/async-queue.git",
  1525. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1530. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1531. "shasum": "",
  1532. "mirrors": [
  1533. {
  1534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1535. "preferred": true
  1536. }
  1537. ]
  1538. },
  1539. "require": {
  1540. "hyperf/codec": "~3.1.0",
  1541. "hyperf/collection": "~3.1.0",
  1542. "hyperf/command": "~3.1.0",
  1543. "hyperf/contract": "~3.1.0",
  1544. "hyperf/support": "~3.1.0",
  1545. "hyperf/utils": "~3.1.0",
  1546. "php": ">=8.1",
  1547. "psr/container": "^1.0 || ^2.0",
  1548. "psr/event-dispatcher": "^1.0"
  1549. },
  1550. "suggest": {
  1551. "hyperf/di": "Required to use annotations.",
  1552. "hyperf/event": "Required to dispatch a event.",
  1553. "hyperf/logger": "Required to use QueueHandleListener.",
  1554. "hyperf/process": "Auto register the consumer process for server."
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "hyperf": {
  1559. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1560. },
  1561. "branch-alias": {
  1562. "dev-master": "3.1-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "files": [
  1567. "src/Functions.php"
  1568. ],
  1569. "psr-4": {
  1570. "Hyperf\\AsyncQueue\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "description": "A async queue component for hyperf.",
  1578. "homepage": "https://hyperf.io",
  1579. "keywords": [
  1580. "async-queue",
  1581. "hyperf",
  1582. "php"
  1583. ],
  1584. "support": {
  1585. "docs": "https://hyperf.wiki",
  1586. "issues": "https://github.com/hyperf/hyperf/issues",
  1587. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1588. "source": "https://github.com/hyperf/hyperf"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1593. "type": "custom"
  1594. },
  1595. {
  1596. "url": "https://opencollective.com/hyperf",
  1597. "type": "open_collective"
  1598. }
  1599. ],
  1600. "time": "2025-01-14T06:55:15+00:00"
  1601. },
  1602. {
  1603. "name": "hyperf/cache",
  1604. "version": "v3.1.56",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/hyperf/cache.git",
  1608. "reference": "4848c733560941490d9bf3aa8605deb4cce8fbf1"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/hyperf/cache/zipball/4848c733560941490d9bf3aa8605deb4cce8fbf1",
  1613. "reference": "4848c733560941490d9bf3aa8605deb4cce8fbf1",
  1614. "shasum": "",
  1615. "mirrors": [
  1616. {
  1617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1618. "preferred": true
  1619. }
  1620. ]
  1621. },
  1622. "require": {
  1623. "hyperf/codec": "~3.1.0",
  1624. "hyperf/collection": "~3.1.0",
  1625. "hyperf/contract": "~3.1.0",
  1626. "hyperf/support": "~3.1.0",
  1627. "hyperf/utils": "~3.1.0",
  1628. "php": ">=8.1",
  1629. "psr/container": "^1.0 || ^2.0",
  1630. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1631. },
  1632. "suggest": {
  1633. "hyperf/di": "Use cache annotations.",
  1634. "hyperf/event": "Use listener to delete annotation cache."
  1635. },
  1636. "type": "library",
  1637. "extra": {
  1638. "hyperf": {
  1639. "config": "Hyperf\\Cache\\ConfigProvider"
  1640. },
  1641. "branch-alias": {
  1642. "dev-master": "3.1-dev"
  1643. }
  1644. },
  1645. "autoload": {
  1646. "psr-4": {
  1647. "Hyperf\\Cache\\": "src/"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "description": "A cache component for hyperf.",
  1655. "homepage": "https://hyperf.io",
  1656. "keywords": [
  1657. "cache",
  1658. "hyperf",
  1659. "php"
  1660. ],
  1661. "support": {
  1662. "docs": "https://hyperf.wiki",
  1663. "issues": "https://github.com/hyperf/hyperf/issues",
  1664. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1665. "source": "https://github.com/hyperf/hyperf"
  1666. },
  1667. "funding": [
  1668. {
  1669. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1670. "type": "custom"
  1671. },
  1672. {
  1673. "url": "https://opencollective.com/hyperf",
  1674. "type": "open_collective"
  1675. }
  1676. ],
  1677. "time": "2025-06-05T06:13:29+00:00"
  1678. },
  1679. {
  1680. "name": "hyperf/code-parser",
  1681. "version": "v3.1.52",
  1682. "source": {
  1683. "type": "git",
  1684. "url": "https://github.com/hyperf/code-parser.git",
  1685. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1686. },
  1687. "dist": {
  1688. "type": "zip",
  1689. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1690. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1691. "shasum": "",
  1692. "mirrors": [
  1693. {
  1694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1695. "preferred": true
  1696. }
  1697. ]
  1698. },
  1699. "require": {
  1700. "hyperf/collection": "~3.1.0",
  1701. "hyperf/stringable": "~3.1.0",
  1702. "hyperf/support": "~3.1.0",
  1703. "php": ">=8.1"
  1704. },
  1705. "suggest": {
  1706. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1707. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "3.1-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Hyperf\\CodeParser\\": "src/"
  1718. }
  1719. },
  1720. "notification-url": "https://packagist.org/downloads/",
  1721. "license": [
  1722. "MIT"
  1723. ],
  1724. "description": "A code parser component for Hyperf.",
  1725. "homepage": "https://hyperf.io",
  1726. "keywords": [
  1727. "code-parser",
  1728. "hyperf",
  1729. "php",
  1730. "swoole"
  1731. ],
  1732. "support": {
  1733. "docs": "https://hyperf.wiki",
  1734. "issues": "https://github.com/hyperf/hyperf/issues",
  1735. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1736. "source": "https://github.com/hyperf/hyperf"
  1737. },
  1738. "funding": [
  1739. {
  1740. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1741. "type": "custom"
  1742. },
  1743. {
  1744. "url": "https://opencollective.com/hyperf",
  1745. "type": "open_collective"
  1746. }
  1747. ],
  1748. "time": "2025-02-27T07:40:13+00:00"
  1749. },
  1750. {
  1751. "name": "hyperf/codec",
  1752. "version": "v3.1.42",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://github.com/hyperf/codec.git",
  1756. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1761. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1762. "shasum": "",
  1763. "mirrors": [
  1764. {
  1765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1766. "preferred": true
  1767. }
  1768. ]
  1769. },
  1770. "require": {
  1771. "ext-json": "*",
  1772. "ext-xml": "*",
  1773. "hyperf/contract": "~3.1.0",
  1774. "php": ">=8.1"
  1775. },
  1776. "suggest": {
  1777. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1778. },
  1779. "type": "library",
  1780. "extra": {
  1781. "branch-alias": {
  1782. "dev-master": "3.1-dev"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "psr-4": {
  1787. "Hyperf\\Codec\\": "src/"
  1788. }
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "MIT"
  1793. ],
  1794. "description": "A codec component for Hyperf.",
  1795. "homepage": "https://hyperf.io",
  1796. "keywords": [
  1797. "codec",
  1798. "hyperf",
  1799. "php",
  1800. "swoole"
  1801. ],
  1802. "support": {
  1803. "docs": "https://hyperf.wiki",
  1804. "issues": "https://github.com/hyperf/hyperf/issues",
  1805. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1806. "source": "https://github.com/hyperf/hyperf"
  1807. },
  1808. "funding": [
  1809. {
  1810. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1811. "type": "custom"
  1812. },
  1813. {
  1814. "url": "https://opencollective.com/hyperf",
  1815. "type": "open_collective"
  1816. }
  1817. ],
  1818. "time": "2024-09-25T02:54:12+00:00"
  1819. },
  1820. {
  1821. "name": "hyperf/collection",
  1822. "version": "v3.1.52",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/hyperf/collection.git",
  1826. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1831. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1832. "shasum": "",
  1833. "mirrors": [
  1834. {
  1835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1836. "preferred": true
  1837. }
  1838. ]
  1839. },
  1840. "require": {
  1841. "hyperf/conditionable": "~3.1.0",
  1842. "hyperf/contract": "~3.1.0",
  1843. "hyperf/macroable": "~3.1.0",
  1844. "hyperf/stringable": "~3.1.0",
  1845. "php": ">=8.1"
  1846. },
  1847. "type": "library",
  1848. "extra": {
  1849. "branch-alias": {
  1850. "dev-master": "3.1-dev"
  1851. }
  1852. },
  1853. "autoload": {
  1854. "files": [
  1855. "src/Functions.php"
  1856. ],
  1857. "psr-4": {
  1858. "Hyperf\\Collection\\": "src/"
  1859. }
  1860. },
  1861. "notification-url": "https://packagist.org/downloads/",
  1862. "license": [
  1863. "MIT"
  1864. ],
  1865. "description": "Hyperf Collection package which come from illuminate/collections",
  1866. "homepage": "https://hyperf.io",
  1867. "keywords": [
  1868. "collection",
  1869. "hyperf",
  1870. "php",
  1871. "swoole"
  1872. ],
  1873. "support": {
  1874. "docs": "https://hyperf.wiki",
  1875. "issues": "https://github.com/hyperf/hyperf/issues",
  1876. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1877. "source": "https://github.com/hyperf/hyperf"
  1878. },
  1879. "funding": [
  1880. {
  1881. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1882. "type": "custom"
  1883. },
  1884. {
  1885. "url": "https://opencollective.com/hyperf",
  1886. "type": "open_collective"
  1887. }
  1888. ],
  1889. "time": "2025-02-17T03:58:59+00:00"
  1890. },
  1891. {
  1892. "name": "hyperf/command",
  1893. "version": "v3.1.56",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/hyperf/command.git",
  1897. "reference": "79188b44faff62e305fdb34cf2929ff517430e34"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/hyperf/command/zipball/79188b44faff62e305fdb34cf2929ff517430e34",
  1902. "reference": "79188b44faff62e305fdb34cf2929ff517430e34",
  1903. "shasum": "",
  1904. "mirrors": [
  1905. {
  1906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1907. "preferred": true
  1908. }
  1909. ]
  1910. },
  1911. "require": {
  1912. "hyperf/collection": "~3.1.0",
  1913. "hyperf/context": "~3.1.0",
  1914. "hyperf/contract": "~3.1.0",
  1915. "hyperf/coroutine": "~3.1.0",
  1916. "hyperf/di": "~3.1.0",
  1917. "hyperf/stringable": "~3.1.0",
  1918. "hyperf/support": "~3.1.0",
  1919. "hyperf/tappable": "~3.1.0",
  1920. "php": ">=8.1",
  1921. "psr/event-dispatcher": "^1.0",
  1922. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1923. },
  1924. "suggest": {
  1925. "hyperf/di": "Required to use annotations.",
  1926. "hyperf/event": "Required to use listeners."
  1927. },
  1928. "type": "library",
  1929. "extra": {
  1930. "hyperf": {
  1931. "config": "Hyperf\\Command\\ConfigProvider"
  1932. },
  1933. "branch-alias": {
  1934. "dev-master": "3.1-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Hyperf\\Command\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "description": "Command for hyperf",
  1947. "keywords": [
  1948. "command",
  1949. "php",
  1950. "swoole"
  1951. ],
  1952. "support": {
  1953. "issues": "https://github.com/hyperf/command/issues",
  1954. "source": "https://github.com/hyperf/command/tree/v3.1.56"
  1955. },
  1956. "funding": [
  1957. {
  1958. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1959. "type": "custom"
  1960. },
  1961. {
  1962. "url": "https://opencollective.com/hyperf",
  1963. "type": "open_collective"
  1964. }
  1965. ],
  1966. "time": "2025-06-03T08:26:34+00:00"
  1967. },
  1968. {
  1969. "name": "hyperf/conditionable",
  1970. "version": "v3.1.42",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/hyperf/conditionable.git",
  1974. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1979. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1980. "shasum": "",
  1981. "mirrors": [
  1982. {
  1983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1984. "preferred": true
  1985. }
  1986. ]
  1987. },
  1988. "require": {
  1989. "php": ">=8.1"
  1990. },
  1991. "type": "library",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "3.1-dev"
  1995. }
  1996. },
  1997. "autoload": {
  1998. "psr-4": {
  1999. "Hyperf\\Conditionable\\": "src/"
  2000. }
  2001. },
  2002. "notification-url": "https://packagist.org/downloads/",
  2003. "license": [
  2004. "MIT"
  2005. ],
  2006. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  2007. "homepage": "https://hyperf.io",
  2008. "keywords": [
  2009. "conditionable",
  2010. "hyperf",
  2011. "php",
  2012. "swoole"
  2013. ],
  2014. "support": {
  2015. "docs": "https://hyperf.wiki",
  2016. "issues": "https://github.com/hyperf/hyperf/issues",
  2017. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2018. "source": "https://github.com/hyperf/hyperf"
  2019. },
  2020. "funding": [
  2021. {
  2022. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2023. "type": "custom"
  2024. },
  2025. {
  2026. "url": "https://opencollective.com/hyperf",
  2027. "type": "open_collective"
  2028. }
  2029. ],
  2030. "time": "2024-09-25T02:54:12+00:00"
  2031. },
  2032. {
  2033. "name": "hyperf/config",
  2034. "version": "v3.1.42",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/hyperf/config.git",
  2038. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  2043. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "hyperf/collection": "~3.1.0",
  2054. "hyperf/contract": "~3.1.0",
  2055. "hyperf/support": "~3.1.0",
  2056. "php": ">=8.1",
  2057. "psr/container": "^1.0 || ^2.0",
  2058. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  2059. },
  2060. "suggest": {
  2061. "hyperf/context": "Required to use config()",
  2062. "hyperf/di": "Allows using @Value annotation",
  2063. "hyperf/event": "Allows using @Value annotation",
  2064. "hyperf/framework": "Allows using @Value annotation",
  2065. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  2066. },
  2067. "type": "library",
  2068. "extra": {
  2069. "hyperf": {
  2070. "config": "Hyperf\\Config\\ConfigProvider"
  2071. },
  2072. "branch-alias": {
  2073. "dev-master": "3.1-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "files": [
  2078. "./src/Functions.php"
  2079. ],
  2080. "psr-4": {
  2081. "Hyperf\\Config\\": "src/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "description": "An independent component that provides configuration container.",
  2089. "homepage": "https://hyperf.io",
  2090. "keywords": [
  2091. "config",
  2092. "configuration",
  2093. "hyperf",
  2094. "php",
  2095. "swoole"
  2096. ],
  2097. "support": {
  2098. "docs": "https://hyperf.wiki",
  2099. "issues": "https://github.com/hyperf/hyperf/issues",
  2100. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2101. "source": "https://github.com/hyperf/hyperf"
  2102. },
  2103. "funding": [
  2104. {
  2105. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2106. "type": "custom"
  2107. },
  2108. {
  2109. "url": "https://opencollective.com/hyperf",
  2110. "type": "open_collective"
  2111. }
  2112. ],
  2113. "time": "2024-09-25T02:54:12+00:00"
  2114. },
  2115. {
  2116. "name": "hyperf/config-center",
  2117. "version": "v3.1.42",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/hyperf/config-center.git",
  2121. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  2126. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  2127. "shasum": "",
  2128. "mirrors": [
  2129. {
  2130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2131. "preferred": true
  2132. }
  2133. ]
  2134. },
  2135. "require": {
  2136. "hyperf/support": "~3.1.0",
  2137. "php": ">=8.1"
  2138. },
  2139. "suggest": {
  2140. "hyperf/process": "^2.1"
  2141. },
  2142. "type": "library",
  2143. "extra": {
  2144. "hyperf": {
  2145. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  2146. },
  2147. "branch-alias": {
  2148. "dev-master": "3.1-dev"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "psr-4": {
  2153. "Hyperf\\ConfigCenter\\": "src/"
  2154. }
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "description": "The abstraction component of config center",
  2161. "homepage": "https://hyperf.io",
  2162. "keywords": [
  2163. "config-center",
  2164. "hyperf",
  2165. "php"
  2166. ],
  2167. "support": {
  2168. "docs": "https://hyperf.wiki",
  2169. "issues": "https://github.com/hyperf/hyperf/issues",
  2170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2171. "source": "https://github.com/hyperf/hyperf"
  2172. },
  2173. "funding": [
  2174. {
  2175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2176. "type": "custom"
  2177. },
  2178. {
  2179. "url": "https://opencollective.com/hyperf",
  2180. "type": "open_collective"
  2181. }
  2182. ],
  2183. "time": "2024-09-25T02:54:12+00:00"
  2184. },
  2185. {
  2186. "name": "hyperf/config-nacos",
  2187. "version": "v3.1.42",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/hyperf/config-nacos.git",
  2191. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  2196. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  2197. "shasum": "",
  2198. "mirrors": [
  2199. {
  2200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2201. "preferred": true
  2202. }
  2203. ]
  2204. },
  2205. "require": {
  2206. "hyperf/codec": "~3.1.0",
  2207. "hyperf/config-center": "~3.1.0",
  2208. "hyperf/contract": "~3.1.0",
  2209. "hyperf/guzzle": "~3.1.0",
  2210. "hyperf/nacos": "~3.1.0",
  2211. "hyperf/support": "~3.1.0",
  2212. "hyperf/utils": "~3.1.0",
  2213. "jetbrains/phpstorm-attributes": "^1.0",
  2214. "php": ">=8.1"
  2215. },
  2216. "suggest": {
  2217. "ext-json": "*",
  2218. "ext-simplexml": "*",
  2219. "ext-yaml": "*",
  2220. "hyperf/event": "Required to use listeners. (~2.2.0)",
  2221. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  2222. "hyperf/process": "Required to use processes. (~2.2.0)"
  2223. },
  2224. "type": "library",
  2225. "extra": {
  2226. "hyperf": {
  2227. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  2228. },
  2229. "branch-alias": {
  2230. "dev-master": "3.1-dev"
  2231. }
  2232. },
  2233. "autoload": {
  2234. "psr-4": {
  2235. "Hyperf\\ConfigNacos\\": "src/"
  2236. }
  2237. },
  2238. "notification-url": "https://packagist.org/downloads/",
  2239. "license": [
  2240. "MIT"
  2241. ],
  2242. "description": "A nacos adapter for config center component.",
  2243. "homepage": "https://hyperf.io",
  2244. "keywords": [
  2245. "hyperf",
  2246. "nacos",
  2247. "php",
  2248. "swoole"
  2249. ],
  2250. "support": {
  2251. "docs": "https://hyperf.wiki",
  2252. "issues": "https://github.com/hyperf/hyperf/issues",
  2253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2254. "source": "https://github.com/hyperf/hyperf"
  2255. },
  2256. "funding": [
  2257. {
  2258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2259. "type": "custom"
  2260. },
  2261. {
  2262. "url": "https://opencollective.com/hyperf",
  2263. "type": "open_collective"
  2264. }
  2265. ],
  2266. "time": "2024-09-25T02:54:12+00:00"
  2267. },
  2268. {
  2269. "name": "hyperf/constants",
  2270. "version": "v3.1.42",
  2271. "source": {
  2272. "type": "git",
  2273. "url": "https://github.com/hyperf/constants.git",
  2274. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  2275. },
  2276. "dist": {
  2277. "type": "zip",
  2278. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  2279. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  2280. "shasum": "",
  2281. "mirrors": [
  2282. {
  2283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2284. "preferred": true
  2285. }
  2286. ]
  2287. },
  2288. "require": {
  2289. "hyperf/di": "~3.1.0",
  2290. "hyperf/support": "~3.1.0",
  2291. "hyperf/utils": "~3.1.0",
  2292. "php": ">=8.1"
  2293. },
  2294. "suggest": {
  2295. "hyperf/translation": "Required to use translation."
  2296. },
  2297. "type": "library",
  2298. "extra": {
  2299. "hyperf": {
  2300. "config": "Hyperf\\Constants\\ConfigProvider"
  2301. },
  2302. "branch-alias": {
  2303. "dev-master": "3.1-dev"
  2304. }
  2305. },
  2306. "autoload": {
  2307. "psr-4": {
  2308. "Hyperf\\Constants\\": "src/"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "description": "A constants component for hyperf.",
  2316. "homepage": "https://hyperf.io",
  2317. "keywords": [
  2318. "constants",
  2319. "hyperf",
  2320. "php"
  2321. ],
  2322. "support": {
  2323. "docs": "https://hyperf.wiki",
  2324. "issues": "https://github.com/hyperf/hyperf/issues",
  2325. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2326. "source": "https://github.com/hyperf/hyperf"
  2327. },
  2328. "funding": [
  2329. {
  2330. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2331. "type": "custom"
  2332. },
  2333. {
  2334. "url": "https://opencollective.com/hyperf",
  2335. "type": "open_collective"
  2336. }
  2337. ],
  2338. "time": "2024-09-25T02:54:12+00:00"
  2339. },
  2340. {
  2341. "name": "hyperf/consul",
  2342. "version": "v3.1.42",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/hyperf/consul.git",
  2346. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2351. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2352. "shasum": "",
  2353. "mirrors": [
  2354. {
  2355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2356. "preferred": true
  2357. }
  2358. ]
  2359. },
  2360. "require": {
  2361. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2362. "php": ">=8.1"
  2363. },
  2364. "type": "library",
  2365. "extra": {
  2366. "hyperf": {
  2367. "config": "Hyperf\\Consul\\ConfigProvider"
  2368. },
  2369. "branch-alias": {
  2370. "dev-master": "3.1-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "psr-4": {
  2375. "Hyperf\\Consul\\": "src/"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "description": "A Consul Client for Hyperf.",
  2383. "homepage": "https://hyperf.io",
  2384. "keywords": [
  2385. "consul",
  2386. "consul-client",
  2387. "hyperf",
  2388. "php",
  2389. "swoole"
  2390. ],
  2391. "support": {
  2392. "docs": "https://hyperf.wiki",
  2393. "issues": "https://github.com/hyperf/hyperf/issues",
  2394. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2395. "source": "https://github.com/hyperf/hyperf"
  2396. },
  2397. "funding": [
  2398. {
  2399. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2400. "type": "custom"
  2401. },
  2402. {
  2403. "url": "https://opencollective.com/hyperf",
  2404. "type": "open_collective"
  2405. }
  2406. ],
  2407. "time": "2024-09-25T02:54:12+00:00"
  2408. },
  2409. {
  2410. "name": "hyperf/context",
  2411. "version": "v3.1.42",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://github.com/hyperf/context.git",
  2415. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2420. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2421. "shasum": "",
  2422. "mirrors": [
  2423. {
  2424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2425. "preferred": true
  2426. }
  2427. ]
  2428. },
  2429. "require": {
  2430. "hyperf/engine": "^2.0",
  2431. "php": ">=8.1"
  2432. },
  2433. "suggest": {
  2434. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2435. },
  2436. "type": "library",
  2437. "extra": {
  2438. "branch-alias": {
  2439. "dev-master": "3.1-dev"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Hyperf\\Context\\": "src/"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "description": "A coroutine/application context library.",
  2452. "homepage": "https://hyperf.io",
  2453. "keywords": [
  2454. "Context",
  2455. "hyperf",
  2456. "php",
  2457. "swoole"
  2458. ],
  2459. "support": {
  2460. "docs": "https://hyperf.wiki",
  2461. "issues": "https://github.com/hyperf/hyperf/issues",
  2462. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2463. "source": "https://github.com/hyperf/hyperf"
  2464. },
  2465. "funding": [
  2466. {
  2467. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2468. "type": "custom"
  2469. },
  2470. {
  2471. "url": "https://opencollective.com/hyperf",
  2472. "type": "open_collective"
  2473. }
  2474. ],
  2475. "time": "2024-09-25T02:54:12+00:00"
  2476. },
  2477. {
  2478. "name": "hyperf/contract",
  2479. "version": "v3.1.42",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/hyperf/contract.git",
  2483. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2488. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2489. "shasum": "",
  2490. "mirrors": [
  2491. {
  2492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2493. "preferred": true
  2494. }
  2495. ]
  2496. },
  2497. "require": {
  2498. "php": ">=8.1"
  2499. },
  2500. "type": "library",
  2501. "extra": {
  2502. "branch-alias": {
  2503. "dev-master": "3.1-dev"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "Hyperf\\Contract\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "description": "The contracts of Hyperf.",
  2516. "homepage": "https://hyperf.io",
  2517. "keywords": [
  2518. "hyperf",
  2519. "php",
  2520. "swoole"
  2521. ],
  2522. "support": {
  2523. "docs": "https://hyperf.wiki",
  2524. "issues": "https://github.com/hyperf/hyperf/issues",
  2525. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2526. "source": "https://github.com/hyperf/hyperf"
  2527. },
  2528. "funding": [
  2529. {
  2530. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2531. "type": "custom"
  2532. },
  2533. {
  2534. "url": "https://opencollective.com/hyperf",
  2535. "type": "open_collective"
  2536. }
  2537. ],
  2538. "time": "2024-09-25T02:54:12+00:00"
  2539. },
  2540. {
  2541. "name": "hyperf/coordinator",
  2542. "version": "v3.1.42",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/hyperf/coordinator.git",
  2546. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2551. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2552. "shasum": "",
  2553. "mirrors": [
  2554. {
  2555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2556. "preferred": true
  2557. }
  2558. ]
  2559. },
  2560. "require": {
  2561. "hyperf/engine": "^2.0",
  2562. "php": ">=8.1"
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "3.1-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "files": [
  2572. "src/Functions.php"
  2573. ],
  2574. "psr-4": {
  2575. "Hyperf\\Coordinator\\": "src/"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "description": "Hyperf Coordinator",
  2583. "homepage": "https://hyperf.io",
  2584. "keywords": [
  2585. "Coordinator",
  2586. "hyperf",
  2587. "php",
  2588. "swoole"
  2589. ],
  2590. "support": {
  2591. "docs": "https://hyperf.wiki",
  2592. "issues": "https://github.com/hyperf/hyperf/issues",
  2593. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2594. "source": "https://github.com/hyperf/hyperf"
  2595. },
  2596. "funding": [
  2597. {
  2598. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2599. "type": "custom"
  2600. },
  2601. {
  2602. "url": "https://opencollective.com/hyperf",
  2603. "type": "open_collective"
  2604. }
  2605. ],
  2606. "time": "2024-09-25T02:54:12+00:00"
  2607. },
  2608. {
  2609. "name": "hyperf/coroutine",
  2610. "version": "v3.1.54",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/hyperf/coroutine.git",
  2614. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/5b474c4bb46be015f1340939d92931b96a0b0cad",
  2619. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad",
  2620. "shasum": "",
  2621. "mirrors": [
  2622. {
  2623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2624. "preferred": true
  2625. }
  2626. ]
  2627. },
  2628. "require": {
  2629. "hyperf/context": "~3.1.0",
  2630. "hyperf/contract": "~3.1.0",
  2631. "hyperf/engine": "^2.14.0",
  2632. "php": ">=8.1"
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-master": "3.1-dev"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "files": [
  2642. "src/Functions.php"
  2643. ],
  2644. "psr-4": {
  2645. "Hyperf\\Coroutine\\": "src/"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "description": "Hyperf Coroutine",
  2653. "homepage": "https://hyperf.io",
  2654. "keywords": [
  2655. "coroutine",
  2656. "hyperf",
  2657. "php",
  2658. "swoole"
  2659. ],
  2660. "support": {
  2661. "docs": "https://hyperf.wiki",
  2662. "issues": "https://github.com/hyperf/hyperf/issues",
  2663. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2664. "source": "https://github.com/hyperf/hyperf"
  2665. },
  2666. "funding": [
  2667. {
  2668. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2669. "type": "custom"
  2670. },
  2671. {
  2672. "url": "https://opencollective.com/hyperf",
  2673. "type": "open_collective"
  2674. }
  2675. ],
  2676. "time": "2025-04-14T01:38:29+00:00"
  2677. },
  2678. {
  2679. "name": "hyperf/crontab",
  2680. "version": "v3.1.42",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/hyperf/crontab.git",
  2684. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/hyperf/crontab/zipball/be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  2689. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  2690. "shasum": "",
  2691. "mirrors": [
  2692. {
  2693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2694. "preferred": true
  2695. }
  2696. ]
  2697. },
  2698. "require": {
  2699. "hyperf/conditionable": "~3.1.0",
  2700. "hyperf/framework": "~3.1.0",
  2701. "hyperf/support": "~3.1.0",
  2702. "hyperf/tappable": "~3.1.0",
  2703. "hyperf/utils": "~3.1.0",
  2704. "nesbot/carbon": "^2.0",
  2705. "php": ">=8.1"
  2706. },
  2707. "suggest": {
  2708. "hyperf/command": "Required to use command trigger.",
  2709. "hyperf/process": "Auto register the Crontab process for server."
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "hyperf": {
  2714. "config": "Hyperf\\Crontab\\ConfigProvider"
  2715. },
  2716. "branch-alias": {
  2717. "dev-master": "3.1-dev"
  2718. }
  2719. },
  2720. "autoload": {
  2721. "psr-4": {
  2722. "Hyperf\\Crontab\\": "src/"
  2723. }
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "MIT"
  2728. ],
  2729. "description": "A crontab component for Hyperf.",
  2730. "homepage": "https://hyperf.io",
  2731. "keywords": [
  2732. "crontab",
  2733. "hyperf",
  2734. "php",
  2735. "swoole"
  2736. ],
  2737. "support": {
  2738. "docs": "https://hyperf.wiki",
  2739. "issues": "https://github.com/hyperf/hyperf/issues",
  2740. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2741. "source": "https://github.com/hyperf/hyperf"
  2742. },
  2743. "funding": [
  2744. {
  2745. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2746. "type": "custom"
  2747. },
  2748. {
  2749. "url": "https://opencollective.com/hyperf",
  2750. "type": "open_collective"
  2751. }
  2752. ],
  2753. "time": "2024-09-25T02:54:12+00:00"
  2754. },
  2755. {
  2756. "name": "hyperf/database",
  2757. "version": "v3.1.56",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/hyperf/database.git",
  2761. "reference": "a4e5f11df6a74337836f1690c05506adf6e82f0f"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/hyperf/database/zipball/a4e5f11df6a74337836f1690c05506adf6e82f0f",
  2766. "reference": "a4e5f11df6a74337836f1690c05506adf6e82f0f",
  2767. "shasum": "",
  2768. "mirrors": [
  2769. {
  2770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2771. "preferred": true
  2772. }
  2773. ]
  2774. },
  2775. "require": {
  2776. "hyperf/code-parser": "~3.1.0",
  2777. "hyperf/collection": "~3.1.23",
  2778. "hyperf/conditionable": "~3.1.0",
  2779. "hyperf/macroable": "~3.1.0",
  2780. "hyperf/support": "~3.1.0",
  2781. "hyperf/tappable": "~3.1.0",
  2782. "hyperf/utils": "~3.1.0",
  2783. "nesbot/carbon": "^2.0",
  2784. "php": ">=8.1",
  2785. "psr/container": "^1.0 || ^2.0",
  2786. "psr/event-dispatcher": "^1.0"
  2787. },
  2788. "suggest": {
  2789. "doctrine/dbal": "Required to rename columns (^3.0).",
  2790. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2791. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2792. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-master": "3.1-dev"
  2798. }
  2799. },
  2800. "autoload": {
  2801. "psr-4": {
  2802. "Hyperf\\Database\\": "src/"
  2803. }
  2804. },
  2805. "notification-url": "https://packagist.org/downloads/",
  2806. "license": [
  2807. "MIT"
  2808. ],
  2809. "description": "A flexible database library.",
  2810. "homepage": "https://hyperf.io",
  2811. "keywords": [
  2812. "database",
  2813. "hyperf",
  2814. "php"
  2815. ],
  2816. "support": {
  2817. "docs": "https://hyperf.wiki",
  2818. "issues": "https://github.com/hyperf/hyperf/issues",
  2819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2820. "source": "https://github.com/hyperf/hyperf"
  2821. },
  2822. "funding": [
  2823. {
  2824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2825. "type": "custom"
  2826. },
  2827. {
  2828. "url": "https://opencollective.com/hyperf",
  2829. "type": "open_collective"
  2830. }
  2831. ],
  2832. "time": "2025-05-30T09:09:02+00:00"
  2833. },
  2834. {
  2835. "name": "hyperf/db-connection",
  2836. "version": "v3.1.44",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/hyperf/db-connection.git",
  2840. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2845. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2846. "shasum": "",
  2847. "mirrors": [
  2848. {
  2849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2850. "preferred": true
  2851. }
  2852. ]
  2853. },
  2854. "require": {
  2855. "hyperf/database": "~3.1.0",
  2856. "hyperf/di": "~3.1.0",
  2857. "hyperf/framework": "~3.1.0",
  2858. "hyperf/model-listener": "~3.1.0",
  2859. "hyperf/pool": "~3.1.0",
  2860. "hyperf/support": "~3.1.0",
  2861. "hyperf/utils": "~3.1.0",
  2862. "php": ">=8.1",
  2863. "psr/container": "^1.0 || ^2.0"
  2864. },
  2865. "type": "library",
  2866. "extra": {
  2867. "hyperf": {
  2868. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2869. },
  2870. "branch-alias": {
  2871. "dev-master": "3.1-dev"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "psr-4": {
  2876. "Hyperf\\DbConnection\\": "src/"
  2877. }
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "description": "A hyperf db connection handler for hyperf/database.",
  2884. "homepage": "https://hyperf.io",
  2885. "keywords": [
  2886. "Connection",
  2887. "database",
  2888. "hyperf",
  2889. "php"
  2890. ],
  2891. "support": {
  2892. "docs": "https://hyperf.wiki",
  2893. "issues": "https://github.com/hyperf/hyperf/issues",
  2894. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2895. "source": "https://github.com/hyperf/hyperf"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2900. "type": "custom"
  2901. },
  2902. {
  2903. "url": "https://opencollective.com/hyperf",
  2904. "type": "open_collective"
  2905. }
  2906. ],
  2907. "time": "2024-10-11T08:58:16+00:00"
  2908. },
  2909. {
  2910. "name": "hyperf/di",
  2911. "version": "v3.1.53",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/hyperf/di.git",
  2915. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  2920. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  2921. "shasum": "",
  2922. "mirrors": [
  2923. {
  2924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2925. "preferred": true
  2926. }
  2927. ]
  2928. },
  2929. "require": {
  2930. "doctrine/instantiator": "^1.0",
  2931. "hyperf/code-parser": "~3.1.0",
  2932. "hyperf/pipeline": "~3.1.0",
  2933. "hyperf/stdlib": "~3.1.0",
  2934. "hyperf/support": "~3.1.0",
  2935. "nikic/php-parser": "^4.1",
  2936. "php": ">=8.1",
  2937. "php-di/phpdoc-reader": "^2.2",
  2938. "psr/container": "^1.0 || ^2.0",
  2939. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2940. "vlucas/phpdotenv": "^5.0"
  2941. },
  2942. "suggest": {
  2943. "ext-pcntl": "Required to scan annotations.",
  2944. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2945. },
  2946. "type": "library",
  2947. "extra": {
  2948. "hyperf": {
  2949. "config": "Hyperf\\Di\\ConfigProvider"
  2950. },
  2951. "branch-alias": {
  2952. "dev-master": "3.1-dev"
  2953. }
  2954. },
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Hyperf\\Di\\": "src/"
  2958. }
  2959. },
  2960. "notification-url": "https://packagist.org/downloads/",
  2961. "license": [
  2962. "MIT"
  2963. ],
  2964. "description": "A DI for Hyperf.",
  2965. "homepage": "https://hyperf.io",
  2966. "keywords": [
  2967. "annotation",
  2968. "di",
  2969. "hyperf",
  2970. "php",
  2971. "swoole"
  2972. ],
  2973. "support": {
  2974. "docs": "https://hyperf.wiki",
  2975. "issues": "https://github.com/hyperf/hyperf/issues",
  2976. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2977. "source": "https://github.com/hyperf/hyperf"
  2978. },
  2979. "funding": [
  2980. {
  2981. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2982. "type": "custom"
  2983. },
  2984. {
  2985. "url": "https://opencollective.com/hyperf",
  2986. "type": "open_collective"
  2987. }
  2988. ],
  2989. "time": "2025-04-03T08:36:04+00:00"
  2990. },
  2991. {
  2992. "name": "hyperf/dispatcher",
  2993. "version": "v3.1.42",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/hyperf/dispatcher.git",
  2997. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  3002. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  3003. "shasum": "",
  3004. "mirrors": [
  3005. {
  3006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3007. "preferred": true
  3008. }
  3009. ]
  3010. },
  3011. "require": {
  3012. "hyperf/contract": "~3.1.0",
  3013. "php": ">=8.1",
  3014. "psr/container": "^1.0 || ^2.0",
  3015. "psr/http-message": "^1.0 || ^2.0",
  3016. "psr/http-server-middleware": "^1.0"
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "hyperf": {
  3021. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  3022. },
  3023. "branch-alias": {
  3024. "dev-master": "3.1-dev"
  3025. }
  3026. },
  3027. "autoload": {
  3028. "psr-4": {
  3029. "Hyperf\\Dispatcher\\": "src/"
  3030. }
  3031. },
  3032. "notification-url": "https://packagist.org/downloads/",
  3033. "license": [
  3034. "MIT"
  3035. ],
  3036. "description": "A HTTP Server for Hyperf.",
  3037. "homepage": "https://hyperf.io",
  3038. "keywords": [
  3039. "dispatcher",
  3040. "filter",
  3041. "hyperf",
  3042. "middleware",
  3043. "php",
  3044. "swoole"
  3045. ],
  3046. "support": {
  3047. "docs": "https://hyperf.wiki",
  3048. "issues": "https://github.com/hyperf/hyperf/issues",
  3049. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3050. "source": "https://github.com/hyperf/hyperf"
  3051. },
  3052. "funding": [
  3053. {
  3054. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3055. "type": "custom"
  3056. },
  3057. {
  3058. "url": "https://opencollective.com/hyperf",
  3059. "type": "open_collective"
  3060. }
  3061. ],
  3062. "time": "2024-09-25T02:54:12+00:00"
  3063. },
  3064. {
  3065. "name": "hyperf/engine",
  3066. "version": "v2.14.0",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/hyperf/engine.git",
  3070. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  3075. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  3076. "shasum": "",
  3077. "mirrors": [
  3078. {
  3079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3080. "preferred": true
  3081. }
  3082. ]
  3083. },
  3084. "require": {
  3085. "hyperf/engine-contract": "~1.13.0",
  3086. "php": ">=8.0"
  3087. },
  3088. "conflict": {
  3089. "ext-swoole": "<5.0"
  3090. },
  3091. "require-dev": {
  3092. "friendsofphp/php-cs-fixer": "^3.0",
  3093. "hyperf/guzzle": "^3.0",
  3094. "hyperf/http-message": "^3.0",
  3095. "mockery/mockery": "^1.5",
  3096. "phpstan/phpstan": "^1.0",
  3097. "phpunit/phpunit": "^9.4",
  3098. "swoole/ide-helper": "5.*"
  3099. },
  3100. "suggest": {
  3101. "ext-sockets": "*",
  3102. "ext-swoole": ">=5.0",
  3103. "hyperf/http-message": "Required to use ResponseEmitter.",
  3104. "psr/http-message": "Required to use WebSocket Frame."
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "hyperf": {
  3109. "config": "Hyperf\\Engine\\ConfigProvider"
  3110. },
  3111. "branch-alias": {
  3112. "dev-master": "2.14-dev"
  3113. }
  3114. },
  3115. "autoload": {
  3116. "files": [
  3117. "src/Functions.php"
  3118. ],
  3119. "psr-4": {
  3120. "Hyperf\\Engine\\": "src/"
  3121. }
  3122. },
  3123. "notification-url": "https://packagist.org/downloads/",
  3124. "license": [
  3125. "MIT"
  3126. ],
  3127. "description": "Coroutine engine provided by swoole.",
  3128. "keywords": [
  3129. "engine",
  3130. "hyperf",
  3131. "php",
  3132. "swoole"
  3133. ],
  3134. "support": {
  3135. "issues": "https://github.com/hyperf/engine/issues",
  3136. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  3137. },
  3138. "funding": [
  3139. {
  3140. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3141. "type": "custom"
  3142. },
  3143. {
  3144. "url": "https://opencollective.com/hyperf",
  3145. "type": "open_collective"
  3146. }
  3147. ],
  3148. "time": "2025-04-13T15:11:22+00:00"
  3149. },
  3150. {
  3151. "name": "hyperf/engine-contract",
  3152. "version": "v1.13.0",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/hyperf/engine-contract.git",
  3156. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  3161. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  3162. "shasum": "",
  3163. "mirrors": [
  3164. {
  3165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3166. "preferred": true
  3167. }
  3168. ]
  3169. },
  3170. "require": {
  3171. "php": ">=8.0"
  3172. },
  3173. "require-dev": {
  3174. "friendsofphp/php-cs-fixer": "^3.0",
  3175. "mockery/mockery": "^1.0",
  3176. "phpstan/phpstan": "^1.0",
  3177. "phpunit/phpunit": ">=7.0",
  3178. "psr/http-message": "^1.0",
  3179. "swoole/ide-helper": "^4.5"
  3180. },
  3181. "suggest": {
  3182. "psr/http-message": "Required to use WebSocket Frame."
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "branch-alias": {
  3187. "dev-master": "1.11-dev"
  3188. }
  3189. },
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Hyperf\\Engine\\Contract\\": "src/"
  3193. }
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "description": "Contract for Coroutine Engine",
  3200. "keywords": [
  3201. "contract",
  3202. "coroutine",
  3203. "engine",
  3204. "hyperf",
  3205. "php"
  3206. ],
  3207. "support": {
  3208. "issues": "https://github.com/hyperf/engine-contract/issues",
  3209. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  3210. },
  3211. "funding": [
  3212. {
  3213. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3214. "type": "custom"
  3215. },
  3216. {
  3217. "url": "https://opencollective.com/hyperf",
  3218. "type": "open_collective"
  3219. }
  3220. ],
  3221. "time": "2025-04-13T14:48:14+00:00"
  3222. },
  3223. {
  3224. "name": "hyperf/event",
  3225. "version": "v3.1.42",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/hyperf/event.git",
  3229. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  3234. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  3235. "shasum": "",
  3236. "mirrors": [
  3237. {
  3238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3239. "preferred": true
  3240. }
  3241. ]
  3242. },
  3243. "require": {
  3244. "hyperf/contract": "~3.1.0",
  3245. "hyperf/stdlib": "~3.1.0",
  3246. "php": ">=8.1",
  3247. "psr/event-dispatcher": "^1.0"
  3248. },
  3249. "suggest": {
  3250. "hyperf/di": "Required to use annotatioins."
  3251. },
  3252. "type": "library",
  3253. "extra": {
  3254. "hyperf": {
  3255. "config": "Hyperf\\Event\\ConfigProvider"
  3256. },
  3257. "branch-alias": {
  3258. "dev-master": "3.1-dev"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "psr-4": {
  3263. "Hyperf\\Event\\": "src/"
  3264. }
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "description": "an event manager that implements PSR-14.",
  3271. "homepage": "https://hyperf.io",
  3272. "keywords": [
  3273. "event",
  3274. "hyperf",
  3275. "php",
  3276. "swoole"
  3277. ],
  3278. "support": {
  3279. "docs": "https://hyperf.wiki",
  3280. "issues": "https://github.com/hyperf/hyperf/issues",
  3281. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3282. "source": "https://github.com/hyperf/hyperf"
  3283. },
  3284. "funding": [
  3285. {
  3286. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3287. "type": "custom"
  3288. },
  3289. {
  3290. "url": "https://opencollective.com/hyperf",
  3291. "type": "open_collective"
  3292. }
  3293. ],
  3294. "time": "2024-09-25T02:54:12+00:00"
  3295. },
  3296. {
  3297. "name": "hyperf/exception-handler",
  3298. "version": "v3.1.42",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/hyperf/exception-handler.git",
  3302. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  3307. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  3308. "shasum": "",
  3309. "mirrors": [
  3310. {
  3311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3312. "preferred": true
  3313. }
  3314. ]
  3315. },
  3316. "require": {
  3317. "hyperf/context": "~3.1.0",
  3318. "hyperf/contract": "~3.1.0",
  3319. "hyperf/dispatcher": "~3.1.0",
  3320. "hyperf/http-message": "~3.1.0",
  3321. "hyperf/stdlib": "~3.1.0",
  3322. "hyperf/support": "~3.1.0",
  3323. "php": ">=8.1",
  3324. "psr/container": "^1.0 || ^2.0",
  3325. "psr/http-message": "^1.0 || ^2.0",
  3326. "swow/psr7-plus": "^1.0"
  3327. },
  3328. "suggest": {
  3329. "hyperf/di": "Required to use #[ExceptionHandler]",
  3330. "hyperf/event": "Required to use listeners",
  3331. "hyperf/framework": "Required to use listeners",
  3332. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "hyperf": {
  3337. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  3338. },
  3339. "branch-alias": {
  3340. "dev-master": "3.1-dev"
  3341. }
  3342. },
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Hyperf\\ExceptionHandler\\": "src/"
  3346. }
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "MIT"
  3351. ],
  3352. "description": "Exception handler for hyperf",
  3353. "homepage": "https://hyperf.io",
  3354. "keywords": [
  3355. "exception-handler",
  3356. "php",
  3357. "swoole"
  3358. ],
  3359. "support": {
  3360. "docs": "https://hyperf.wiki",
  3361. "issues": "https://github.com/hyperf/hyperf/issues",
  3362. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3363. "source": "https://github.com/hyperf/hyperf"
  3364. },
  3365. "funding": [
  3366. {
  3367. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3368. "type": "custom"
  3369. },
  3370. {
  3371. "url": "https://opencollective.com/hyperf",
  3372. "type": "open_collective"
  3373. }
  3374. ],
  3375. "time": "2024-09-25T02:54:12+00:00"
  3376. },
  3377. {
  3378. "name": "hyperf/framework",
  3379. "version": "v3.1.42",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/hyperf/framework.git",
  3383. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  3388. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  3389. "shasum": "",
  3390. "mirrors": [
  3391. {
  3392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3393. "preferred": true
  3394. }
  3395. ]
  3396. },
  3397. "require": {
  3398. "fig/http-message-util": "^1.1.2",
  3399. "hyperf/contract": "~3.1.0",
  3400. "hyperf/coordinator": "~3.1.0",
  3401. "hyperf/coroutine": "~3.1.0",
  3402. "php": ">=8.1",
  3403. "psr/container": "^1.0 || ^2.0",
  3404. "psr/event-dispatcher": "^1.0",
  3405. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3406. },
  3407. "suggest": {
  3408. "ext-swoole": "Required to use swoole engine.",
  3409. "hyperf/command": "Required to use Command annotation.",
  3410. "hyperf/di": "Required to use Command annotation.",
  3411. "hyperf/dispatcher": "Required to use BootApplication event.",
  3412. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  3413. },
  3414. "type": "library",
  3415. "extra": {
  3416. "hyperf": {
  3417. "config": "Hyperf\\Framework\\ConfigProvider"
  3418. },
  3419. "branch-alias": {
  3420. "dev-master": "3.1-dev"
  3421. }
  3422. },
  3423. "autoload": {
  3424. "psr-4": {
  3425. "Hyperf\\Framework\\": "src/"
  3426. }
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  3433. "homepage": "https://hyperf.io",
  3434. "keywords": [
  3435. "Microservice",
  3436. "framework",
  3437. "hyperf",
  3438. "middleware",
  3439. "php",
  3440. "swoole"
  3441. ],
  3442. "support": {
  3443. "docs": "https://hyperf.wiki",
  3444. "issues": "https://github.com/hyperf/hyperf/issues",
  3445. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3446. "source": "https://github.com/hyperf/hyperf"
  3447. },
  3448. "funding": [
  3449. {
  3450. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3451. "type": "custom"
  3452. },
  3453. {
  3454. "url": "https://opencollective.com/hyperf",
  3455. "type": "open_collective"
  3456. }
  3457. ],
  3458. "time": "2024-09-25T02:54:12+00:00"
  3459. },
  3460. {
  3461. "name": "hyperf/guzzle",
  3462. "version": "v3.1.42",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/hyperf/guzzle.git",
  3466. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  3471. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  3472. "shasum": "",
  3473. "mirrors": [
  3474. {
  3475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3476. "preferred": true
  3477. }
  3478. ]
  3479. },
  3480. "require": {
  3481. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  3482. "php": ">=8.1",
  3483. "psr/container": "^1.0 || ^2.0",
  3484. "psr/http-message": "^1.0 || ^2.0"
  3485. },
  3486. "suggest": {
  3487. "ext-curl": "Required for CURL handler support",
  3488. "hyperf/pool": "Required to use pool handler."
  3489. },
  3490. "type": "library",
  3491. "extra": {
  3492. "hyperf": {
  3493. "config": "Hyperf\\Guzzle\\ConfigProvider"
  3494. },
  3495. "branch-alias": {
  3496. "dev-master": "3.1-dev"
  3497. }
  3498. },
  3499. "autoload": {
  3500. "psr-4": {
  3501. "Hyperf\\Guzzle\\": "src/"
  3502. }
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "description": "Swoole coroutine handler for guzzle",
  3509. "keywords": [
  3510. "Guzzle",
  3511. "handler",
  3512. "php",
  3513. "swoole"
  3514. ],
  3515. "support": {
  3516. "issues": "https://github.com/hyperf/guzzle/issues",
  3517. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  3518. },
  3519. "funding": [
  3520. {
  3521. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3522. "type": "custom"
  3523. },
  3524. {
  3525. "url": "https://opencollective.com/hyperf",
  3526. "type": "open_collective"
  3527. }
  3528. ],
  3529. "time": "2024-09-25T02:54:12+00:00"
  3530. },
  3531. {
  3532. "name": "hyperf/http-message",
  3533. "version": "v3.1.48",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/hyperf/http-message.git",
  3537. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3542. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3543. "shasum": "",
  3544. "mirrors": [
  3545. {
  3546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3547. "preferred": true
  3548. }
  3549. ]
  3550. },
  3551. "require": {
  3552. "hyperf/codec": "~3.1.0",
  3553. "hyperf/engine": "^2.11",
  3554. "hyperf/support": "~3.1.0",
  3555. "laminas/laminas-mime": "^2.7",
  3556. "php": ">=8.1",
  3557. "psr/http-message": "^1.0 || ^2.0",
  3558. "swow/psr7-plus": "^1.0"
  3559. },
  3560. "suggest": {
  3561. "psr/container": "Required to replace RequestParserInterface."
  3562. },
  3563. "type": "library",
  3564. "extra": {
  3565. "hyperf": {
  3566. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3567. },
  3568. "branch-alias": {
  3569. "dev-master": "3.1-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Hyperf\\HttpMessage\\": "src/"
  3575. }
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "MIT"
  3580. ],
  3581. "description": "microservice framework base on swoole",
  3582. "keywords": [
  3583. "http-message",
  3584. "hyperf",
  3585. "php",
  3586. "swoole"
  3587. ],
  3588. "support": {
  3589. "issues": "https://github.com/hyperf/http-message/issues",
  3590. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3591. },
  3592. "funding": [
  3593. {
  3594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3595. "type": "custom"
  3596. },
  3597. {
  3598. "url": "https://opencollective.com/hyperf",
  3599. "type": "open_collective"
  3600. }
  3601. ],
  3602. "time": "2024-12-05T02:41:08+00:00"
  3603. },
  3604. {
  3605. "name": "hyperf/http-server",
  3606. "version": "v3.1.55",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/hyperf/http-server.git",
  3610. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/hyperf/http-server/zipball/96a1d80cd9482942899d7068af0e6ecb78d382ce",
  3615. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce",
  3616. "shasum": "",
  3617. "mirrors": [
  3618. {
  3619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3620. "preferred": true
  3621. }
  3622. ]
  3623. },
  3624. "require": {
  3625. "hyperf/codec": "~3.1.0",
  3626. "hyperf/collection": "~3.1.0",
  3627. "hyperf/context": "~3.1.0",
  3628. "hyperf/contract": "~3.1.0",
  3629. "hyperf/coroutine": "~3.1.0",
  3630. "hyperf/dispatcher": "~3.1.0",
  3631. "hyperf/event": "~3.1.0",
  3632. "hyperf/exception-handler": "~3.1.0",
  3633. "hyperf/http-message": "~3.1.0",
  3634. "hyperf/macroable": "~3.1.0",
  3635. "hyperf/serializer": "~3.1.0",
  3636. "hyperf/server": "~3.1.0",
  3637. "hyperf/stdlib": "~3.1.0",
  3638. "hyperf/support": "~3.1.0",
  3639. "nikic/fast-route": "^1.3",
  3640. "php": ">=8.1",
  3641. "psr/container": "^1.0 || ^2.0",
  3642. "swow/psr7-plus": "^1.0"
  3643. },
  3644. "suggest": {
  3645. "hyperf/di": "Required to use annotations."
  3646. },
  3647. "type": "library",
  3648. "extra": {
  3649. "hyperf": {
  3650. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3651. },
  3652. "branch-alias": {
  3653. "dev-master": "3.1-dev"
  3654. }
  3655. },
  3656. "autoload": {
  3657. "psr-4": {
  3658. "Hyperf\\HttpServer\\": "src/"
  3659. }
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "description": "A HTTP Server for Hyperf.",
  3666. "homepage": "https://hyperf.io",
  3667. "keywords": [
  3668. "http",
  3669. "http-server",
  3670. "hyperf",
  3671. "php",
  3672. "swoole"
  3673. ],
  3674. "support": {
  3675. "docs": "https://hyperf.wiki",
  3676. "issues": "https://github.com/hyperf/hyperf/issues",
  3677. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3678. "source": "https://github.com/hyperf/hyperf"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://opencollective.com/hyperf",
  3687. "type": "open_collective"
  3688. }
  3689. ],
  3690. "time": "2025-05-14T07:44:25+00:00"
  3691. },
  3692. {
  3693. "name": "hyperf/json-rpc",
  3694. "version": "v3.1.47",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/hyperf/json-rpc.git",
  3698. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3703. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3704. "shasum": "",
  3705. "mirrors": [
  3706. {
  3707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3708. "preferred": true
  3709. }
  3710. ]
  3711. },
  3712. "require": {
  3713. "hyperf/codec": "~3.1.0",
  3714. "hyperf/context": "~3.1.0",
  3715. "hyperf/contract": "~3.1.0",
  3716. "hyperf/engine": "^2.0",
  3717. "hyperf/http-message": "~3.1.0",
  3718. "hyperf/load-balancer": "~3.1.0",
  3719. "hyperf/rpc": "~3.1.0",
  3720. "hyperf/serializer": "~3.1.0",
  3721. "hyperf/support": "~3.1.0",
  3722. "hyperf/utils": "~3.1.0",
  3723. "php": ">=8.1",
  3724. "psr/container": "^1.0 || ^2.0",
  3725. "swow/psr7-plus": "^1.0"
  3726. },
  3727. "suggest": {
  3728. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3729. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3730. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3731. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3732. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3733. },
  3734. "type": "library",
  3735. "extra": {
  3736. "hyperf": {
  3737. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3738. },
  3739. "branch-alias": {
  3740. "dev-master": "3.1-dev"
  3741. }
  3742. },
  3743. "autoload": {
  3744. "psr-4": {
  3745. "Hyperf\\JsonRpc\\": "src/"
  3746. }
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3753. "homepage": "https://hyperf.io",
  3754. "keywords": [
  3755. "hyperf",
  3756. "json-rpc",
  3757. "php",
  3758. "swoole"
  3759. ],
  3760. "support": {
  3761. "docs": "https://hyperf.wiki",
  3762. "issues": "https://github.com/hyperf/hyperf/issues",
  3763. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3764. "source": "https://github.com/hyperf/hyperf"
  3765. },
  3766. "funding": [
  3767. {
  3768. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3769. "type": "custom"
  3770. },
  3771. {
  3772. "url": "https://opencollective.com/hyperf",
  3773. "type": "open_collective"
  3774. }
  3775. ],
  3776. "time": "2024-11-28T01:51:55+00:00"
  3777. },
  3778. {
  3779. "name": "hyperf/load-balancer",
  3780. "version": "v3.1.42",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/hyperf/load-balancer.git",
  3784. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3789. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3790. "shasum": "",
  3791. "mirrors": [
  3792. {
  3793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3794. "preferred": true
  3795. }
  3796. ]
  3797. },
  3798. "require": {
  3799. "hyperf/coordinator": "~3.1.0",
  3800. "hyperf/coroutine": "~3.1.0",
  3801. "markrogoyski/math-php": "^2.0",
  3802. "php": ">=8.1",
  3803. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3804. },
  3805. "type": "library",
  3806. "extra": {
  3807. "hyperf": {
  3808. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3809. },
  3810. "branch-alias": {
  3811. "dev-master": "3.1-dev"
  3812. }
  3813. },
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Hyperf\\LoadBalancer\\": "src/"
  3817. }
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "MIT"
  3822. ],
  3823. "description": "A load balancer library for Hyperf.",
  3824. "homepage": "https://hyperf.io",
  3825. "keywords": [
  3826. "hyperf",
  3827. "load-balancer",
  3828. "php",
  3829. "swoole"
  3830. ],
  3831. "support": {
  3832. "docs": "https://hyperf.wiki",
  3833. "issues": "https://github.com/hyperf/hyperf/issues",
  3834. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3835. "source": "https://github.com/hyperf/hyperf"
  3836. },
  3837. "funding": [
  3838. {
  3839. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3840. "type": "custom"
  3841. },
  3842. {
  3843. "url": "https://opencollective.com/hyperf",
  3844. "type": "open_collective"
  3845. }
  3846. ],
  3847. "time": "2024-09-25T02:54:12+00:00"
  3848. },
  3849. {
  3850. "name": "hyperf/logger",
  3851. "version": "v3.1.55",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/hyperf/logger.git",
  3855. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/hyperf/logger/zipball/8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3860. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  3861. "shasum": "",
  3862. "mirrors": [
  3863. {
  3864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3865. "preferred": true
  3866. }
  3867. ]
  3868. },
  3869. "require": {
  3870. "hyperf/contract": "~3.1.0",
  3871. "hyperf/support": "~3.1.0",
  3872. "hyperf/utils": "~3.1.0",
  3873. "monolog/monolog": "^2.7 || ^3.1",
  3874. "php": ">=8.1",
  3875. "psr/container": "^1.0 || ^2.0",
  3876. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3877. },
  3878. "type": "library",
  3879. "extra": {
  3880. "hyperf": {
  3881. "config": "Hyperf\\Logger\\ConfigProvider"
  3882. },
  3883. "branch-alias": {
  3884. "dev-master": "3.1-dev"
  3885. }
  3886. },
  3887. "autoload": {
  3888. "psr-4": {
  3889. "Hyperf\\Logger\\": "src/"
  3890. }
  3891. },
  3892. "notification-url": "https://packagist.org/downloads/",
  3893. "license": [
  3894. "MIT"
  3895. ],
  3896. "description": "A logger component for hyperf.",
  3897. "homepage": "https://hyperf.io",
  3898. "keywords": [
  3899. "hyperf",
  3900. "logger",
  3901. "php"
  3902. ],
  3903. "support": {
  3904. "docs": "https://hyperf.wiki",
  3905. "issues": "https://github.com/hyperf/hyperf/issues",
  3906. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3907. "source": "https://github.com/hyperf/hyperf"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3912. "type": "custom"
  3913. },
  3914. {
  3915. "url": "https://opencollective.com/hyperf",
  3916. "type": "open_collective"
  3917. }
  3918. ],
  3919. "time": "2025-05-14T08:25:19+00:00"
  3920. },
  3921. {
  3922. "name": "hyperf/macroable",
  3923. "version": "v3.1.42",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/hyperf/macroable.git",
  3927. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3932. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3933. "shasum": "",
  3934. "mirrors": [
  3935. {
  3936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3937. "preferred": true
  3938. }
  3939. ]
  3940. },
  3941. "require": {
  3942. "php": ">=8.1"
  3943. },
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-master": "3.1-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "psr-4": {
  3952. "Hyperf\\Macroable\\": "src/"
  3953. }
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3960. "homepage": "https://hyperf.io",
  3961. "keywords": [
  3962. "hyperf",
  3963. "macroable",
  3964. "php",
  3965. "swoole"
  3966. ],
  3967. "support": {
  3968. "docs": "https://hyperf.wiki",
  3969. "issues": "https://github.com/hyperf/hyperf/issues",
  3970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3971. "source": "https://github.com/hyperf/hyperf"
  3972. },
  3973. "funding": [
  3974. {
  3975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3976. "type": "custom"
  3977. },
  3978. {
  3979. "url": "https://opencollective.com/hyperf",
  3980. "type": "open_collective"
  3981. }
  3982. ],
  3983. "time": "2024-09-25T02:54:12+00:00"
  3984. },
  3985. {
  3986. "name": "hyperf/memory",
  3987. "version": "v3.1.53",
  3988. "source": {
  3989. "type": "git",
  3990. "url": "https://github.com/hyperf/memory.git",
  3991. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  3992. },
  3993. "dist": {
  3994. "type": "zip",
  3995. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  3996. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  3997. "shasum": "",
  3998. "mirrors": [
  3999. {
  4000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4001. "preferred": true
  4002. }
  4003. ]
  4004. },
  4005. "require": {
  4006. "php": ">=8.1"
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "hyperf": {
  4011. "config": "Hyperf\\Memory\\ConfigProvider"
  4012. },
  4013. "branch-alias": {
  4014. "dev-master": "3.1-dev"
  4015. }
  4016. },
  4017. "autoload": {
  4018. "psr-4": {
  4019. "Hyperf\\Memory\\": "src/"
  4020. }
  4021. },
  4022. "notification-url": "https://packagist.org/downloads/",
  4023. "license": [
  4024. "MIT"
  4025. ],
  4026. "description": "An independent component that use to operate and manage memory.",
  4027. "homepage": "https://hyperf.io",
  4028. "keywords": [
  4029. "hyperf",
  4030. "memory",
  4031. "php",
  4032. "swoole"
  4033. ],
  4034. "support": {
  4035. "docs": "https://hyperf.wiki",
  4036. "issues": "https://github.com/hyperf/hyperf/issues",
  4037. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4038. "source": "https://github.com/hyperf/hyperf"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://opencollective.com/hyperf",
  4047. "type": "open_collective"
  4048. }
  4049. ],
  4050. "time": "2025-04-03T09:12:55+00:00"
  4051. },
  4052. {
  4053. "name": "hyperf/model-listener",
  4054. "version": "v3.1.42",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/hyperf/model-listener.git",
  4058. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  4063. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  4064. "shasum": "",
  4065. "mirrors": [
  4066. {
  4067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4068. "preferred": true
  4069. }
  4070. ]
  4071. },
  4072. "require": {
  4073. "hyperf/contract": "~3.1.0",
  4074. "hyperf/database": "~3.1.0",
  4075. "hyperf/di": "~3.1.0",
  4076. "hyperf/event": "~3.1.0",
  4077. "hyperf/support": "~3.1.0",
  4078. "hyperf/utils": "~3.1.0",
  4079. "php": ">=8.1",
  4080. "psr/container": "^1.0 || ^2.0"
  4081. },
  4082. "type": "library",
  4083. "extra": {
  4084. "hyperf": {
  4085. "config": "Hyperf\\ModelListener\\ConfigProvider"
  4086. },
  4087. "branch-alias": {
  4088. "dev-master": "3.1-dev"
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Hyperf\\ModelListener\\": "src/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "description": "A model listener for Hyperf.",
  4101. "homepage": "https://hyperf.io",
  4102. "keywords": [
  4103. "hyperf",
  4104. "model-listener",
  4105. "php",
  4106. "swoole"
  4107. ],
  4108. "support": {
  4109. "docs": "https://hyperf.wiki",
  4110. "issues": "https://github.com/hyperf/hyperf/issues",
  4111. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4112. "source": "https://github.com/hyperf/hyperf"
  4113. },
  4114. "funding": [
  4115. {
  4116. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4117. "type": "custom"
  4118. },
  4119. {
  4120. "url": "https://opencollective.com/hyperf",
  4121. "type": "open_collective"
  4122. }
  4123. ],
  4124. "time": "2024-09-25T02:54:12+00:00"
  4125. },
  4126. {
  4127. "name": "hyperf/nacos",
  4128. "version": "v3.1.52",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://github.com/hyperf/nacos.git",
  4132. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://api.github.com/repos/hyperf/nacos/zipball/6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  4137. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  4138. "shasum": "",
  4139. "mirrors": [
  4140. {
  4141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4142. "preferred": true
  4143. }
  4144. ]
  4145. },
  4146. "require": {
  4147. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  4148. "hyperf/codec": "~3.1.0",
  4149. "hyperf/contract": "~3.1.0",
  4150. "hyperf/support": "~3.1.0",
  4151. "hyperf/utils": "~3.1.0",
  4152. "jetbrains/phpstorm-attributes": "^1.0",
  4153. "php": ">=8.1"
  4154. },
  4155. "type": "library",
  4156. "extra": {
  4157. "hyperf": {
  4158. "config": "Hyperf\\Nacos\\ConfigProvider"
  4159. },
  4160. "branch-alias": {
  4161. "dev-master": "3.1-dev"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Hyperf\\Nacos\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "description": "Nacos SDK",
  4174. "keywords": [
  4175. "hyperf",
  4176. "nacos",
  4177. "php"
  4178. ],
  4179. "support": {
  4180. "issues": "https://github.com/hyperf/nacos/issues",
  4181. "source": "https://github.com/hyperf/nacos/tree/v3.1.52"
  4182. },
  4183. "funding": [
  4184. {
  4185. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4186. "type": "custom"
  4187. },
  4188. {
  4189. "url": "https://opencollective.com/hyperf",
  4190. "type": "open_collective"
  4191. }
  4192. ],
  4193. "time": "2025-02-27T06:49:30+00:00"
  4194. },
  4195. {
  4196. "name": "hyperf/pipeline",
  4197. "version": "v3.1.42",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://github.com/hyperf/pipeline.git",
  4201. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  4206. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  4207. "shasum": "",
  4208. "mirrors": [
  4209. {
  4210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4211. "preferred": true
  4212. }
  4213. ]
  4214. },
  4215. "require": {
  4216. "php": ">=8.1",
  4217. "psr/container": "^1.0 || ^2.0"
  4218. },
  4219. "type": "library",
  4220. "extra": {
  4221. "branch-alias": {
  4222. "dev-master": "3.1-dev"
  4223. }
  4224. },
  4225. "autoload": {
  4226. "psr-4": {
  4227. "Hyperf\\Pipeline\\": "src/"
  4228. }
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  4235. "homepage": "https://hyperf.io",
  4236. "keywords": [
  4237. "hyperf",
  4238. "php",
  4239. "pipeline",
  4240. "swoole"
  4241. ],
  4242. "support": {
  4243. "docs": "https://hyperf.wiki",
  4244. "issues": "https://github.com/hyperf/hyperf/issues",
  4245. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4246. "source": "https://github.com/hyperf/hyperf"
  4247. },
  4248. "funding": [
  4249. {
  4250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4251. "type": "custom"
  4252. },
  4253. {
  4254. "url": "https://opencollective.com/hyperf",
  4255. "type": "open_collective"
  4256. }
  4257. ],
  4258. "time": "2024-09-25T02:54:12+00:00"
  4259. },
  4260. {
  4261. "name": "hyperf/pool",
  4262. "version": "v3.1.42",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/hyperf/pool.git",
  4266. "reference": "004dd811bf760ea0032913a31284102742abb737"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  4271. "reference": "004dd811bf760ea0032913a31284102742abb737",
  4272. "shasum": "",
  4273. "mirrors": [
  4274. {
  4275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4276. "preferred": true
  4277. }
  4278. ]
  4279. },
  4280. "require": {
  4281. "hyperf/contract": "~3.1.0",
  4282. "hyperf/support": "~3.1.0",
  4283. "hyperf/utils": "~3.1.0",
  4284. "php": ">=8.1",
  4285. "psr/container": "^1.0 || ^2.0"
  4286. },
  4287. "suggest": {
  4288. "psr/event-dispatcher": "Required to use events."
  4289. },
  4290. "type": "library",
  4291. "extra": {
  4292. "hyperf": {
  4293. "config": "Hyperf\\Pool\\ConfigProvider"
  4294. },
  4295. "branch-alias": {
  4296. "dev-master": "3.1-dev"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "psr-4": {
  4301. "Hyperf\\Pool\\": "src/"
  4302. }
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "description": "An independent universal connection pool component.",
  4309. "homepage": "https://hyperf.io",
  4310. "keywords": [
  4311. "connection-pool",
  4312. "hyperf",
  4313. "php",
  4314. "swoole"
  4315. ],
  4316. "support": {
  4317. "docs": "https://hyperf.wiki",
  4318. "issues": "https://github.com/hyperf/hyperf/issues",
  4319. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4320. "source": "https://github.com/hyperf/hyperf"
  4321. },
  4322. "funding": [
  4323. {
  4324. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4325. "type": "custom"
  4326. },
  4327. {
  4328. "url": "https://opencollective.com/hyperf",
  4329. "type": "open_collective"
  4330. }
  4331. ],
  4332. "time": "2024-09-25T02:54:12+00:00"
  4333. },
  4334. {
  4335. "name": "hyperf/process",
  4336. "version": "v3.1.48",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/hyperf/process.git",
  4340. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  4345. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  4346. "shasum": "",
  4347. "mirrors": [
  4348. {
  4349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4350. "preferred": true
  4351. }
  4352. ]
  4353. },
  4354. "require": {
  4355. "hyperf/contract": "~3.1.0",
  4356. "hyperf/support": "~3.1.0",
  4357. "hyperf/utils": "~3.1.0",
  4358. "php": ">=8.1",
  4359. "psr/container": "^1.0 || ^2.0",
  4360. "psr/event-dispatcher": "^1.0"
  4361. },
  4362. "suggest": {
  4363. "hyperf/di": "Required to use annotations.",
  4364. "hyperf/event": "Required to dump the message before and after process.",
  4365. "hyperf/framework": "Required to use BootProcessListener."
  4366. },
  4367. "type": "library",
  4368. "extra": {
  4369. "hyperf": {
  4370. "config": "Hyperf\\Process\\ConfigProvider"
  4371. },
  4372. "branch-alias": {
  4373. "dev-master": "3.1-dev"
  4374. }
  4375. },
  4376. "autoload": {
  4377. "psr-4": {
  4378. "Hyperf\\Process\\": "src/"
  4379. }
  4380. },
  4381. "notification-url": "https://packagist.org/downloads/",
  4382. "license": [
  4383. "MIT"
  4384. ],
  4385. "description": "A process component for hyperf.",
  4386. "homepage": "https://hyperf.io",
  4387. "keywords": [
  4388. "hyperf",
  4389. "php",
  4390. "process"
  4391. ],
  4392. "support": {
  4393. "docs": "https://hyperf.wiki",
  4394. "issues": "https://github.com/hyperf/hyperf/issues",
  4395. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4396. "source": "https://github.com/hyperf/hyperf"
  4397. },
  4398. "funding": [
  4399. {
  4400. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4401. "type": "custom"
  4402. },
  4403. {
  4404. "url": "https://opencollective.com/hyperf",
  4405. "type": "open_collective"
  4406. }
  4407. ],
  4408. "time": "2024-12-02T10:54:30+00:00"
  4409. },
  4410. {
  4411. "name": "hyperf/redis",
  4412. "version": "v3.1.53",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/hyperf/redis.git",
  4416. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  4421. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  4422. "shasum": "",
  4423. "mirrors": [
  4424. {
  4425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4426. "preferred": true
  4427. }
  4428. ]
  4429. },
  4430. "require": {
  4431. "ext-redis": "^5.0 || ^6.0",
  4432. "hyperf/contract": "~3.1.0",
  4433. "hyperf/pool": "~3.1.0",
  4434. "hyperf/support": "~3.1.0",
  4435. "hyperf/tappable": "~3.1.0",
  4436. "hyperf/utils": "~3.1.0",
  4437. "php": ">=8.1",
  4438. "psr/container": "^1.0 || ^2.0"
  4439. },
  4440. "suggest": {
  4441. "ext-redis": "Required to use sentinel mode (>=5.2).",
  4442. "hyperf/di": "Create the RedisPool via dependency injection."
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "hyperf": {
  4447. "config": "Hyperf\\Redis\\ConfigProvider"
  4448. },
  4449. "branch-alias": {
  4450. "dev-master": "3.1-dev"
  4451. }
  4452. },
  4453. "autoload": {
  4454. "psr-4": {
  4455. "Hyperf\\Redis\\": "src/"
  4456. }
  4457. },
  4458. "notification-url": "https://packagist.org/downloads/",
  4459. "license": [
  4460. "MIT"
  4461. ],
  4462. "description": "A redis component for hyperf.",
  4463. "homepage": "https://hyperf.io",
  4464. "keywords": [
  4465. "hyperf",
  4466. "php",
  4467. "pool",
  4468. "redis"
  4469. ],
  4470. "support": {
  4471. "docs": "https://hyperf.wiki",
  4472. "issues": "https://github.com/hyperf/hyperf/issues",
  4473. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4474. "source": "https://github.com/hyperf/hyperf"
  4475. },
  4476. "funding": [
  4477. {
  4478. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4479. "type": "custom"
  4480. },
  4481. {
  4482. "url": "https://opencollective.com/hyperf",
  4483. "type": "open_collective"
  4484. }
  4485. ],
  4486. "time": "2025-04-03T07:31:20+00:00"
  4487. },
  4488. {
  4489. "name": "hyperf/rpc",
  4490. "version": "v3.1.42",
  4491. "source": {
  4492. "type": "git",
  4493. "url": "https://github.com/hyperf/rpc.git",
  4494. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  4495. },
  4496. "dist": {
  4497. "type": "zip",
  4498. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4499. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4500. "shasum": "",
  4501. "mirrors": [
  4502. {
  4503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4504. "preferred": true
  4505. }
  4506. ]
  4507. },
  4508. "require": {
  4509. "hyperf/codec": "~3.1.0",
  4510. "hyperf/contract": "~3.1.0",
  4511. "hyperf/support": "~3.1.0",
  4512. "jetbrains/phpstorm-attributes": "^1.0",
  4513. "php": ">=8.1"
  4514. },
  4515. "type": "library",
  4516. "extra": {
  4517. "hyperf": [],
  4518. "branch-alias": {
  4519. "dev-master": "3.1-dev"
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Hyperf\\Rpc\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "description": "A rpc basic library for Hyperf.",
  4532. "homepage": "https://hyperf.io",
  4533. "keywords": [
  4534. "hyperf",
  4535. "php",
  4536. "rpc",
  4537. "swoole"
  4538. ],
  4539. "support": {
  4540. "docs": "https://hyperf.wiki",
  4541. "issues": "https://github.com/hyperf/hyperf/issues",
  4542. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4543. "source": "https://github.com/hyperf/hyperf"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4548. "type": "custom"
  4549. },
  4550. {
  4551. "url": "https://opencollective.com/hyperf",
  4552. "type": "open_collective"
  4553. }
  4554. ],
  4555. "time": "2024-09-25T02:54:12+00:00"
  4556. },
  4557. {
  4558. "name": "hyperf/rpc-client",
  4559. "version": "v3.1.42",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/hyperf/rpc-client.git",
  4563. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4568. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4569. "shasum": "",
  4570. "mirrors": [
  4571. {
  4572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4573. "preferred": true
  4574. }
  4575. ]
  4576. },
  4577. "require": {
  4578. "hyperf/code-parser": "~3.1.0",
  4579. "hyperf/load-balancer": "~3.1.0",
  4580. "hyperf/rpc": "~3.1.0",
  4581. "hyperf/support": "~3.1.0",
  4582. "hyperf/utils": "~3.1.0",
  4583. "jetbrains/phpstorm-attributes": "^1.0",
  4584. "php": ">=8.1",
  4585. "psr/container": "^1.0 || ^2.0"
  4586. },
  4587. "suggest": {
  4588. "hyperf/di": "For better container experience.",
  4589. "hyperf/pool": "Required to use connection pool.",
  4590. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4591. },
  4592. "type": "library",
  4593. "extra": {
  4594. "hyperf": {
  4595. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4596. },
  4597. "branch-alias": {
  4598. "dev-master": "3.1-dev"
  4599. }
  4600. },
  4601. "autoload": {
  4602. "psr-4": {
  4603. "Hyperf\\RpcClient\\": "src/"
  4604. }
  4605. },
  4606. "notification-url": "https://packagist.org/downloads/",
  4607. "license": [
  4608. "MIT"
  4609. ],
  4610. "description": "An abstract rpc server component for Hyperf.",
  4611. "homepage": "https://hyperf.io",
  4612. "keywords": [
  4613. "hyperf",
  4614. "json-rpc",
  4615. "php",
  4616. "rpc",
  4617. "rpc-client",
  4618. "swoole"
  4619. ],
  4620. "support": {
  4621. "docs": "https://hyperf.wiki",
  4622. "issues": "https://github.com/hyperf/hyperf/issues",
  4623. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4624. "source": "https://github.com/hyperf/hyperf"
  4625. },
  4626. "funding": [
  4627. {
  4628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4629. "type": "custom"
  4630. },
  4631. {
  4632. "url": "https://opencollective.com/hyperf",
  4633. "type": "open_collective"
  4634. }
  4635. ],
  4636. "time": "2024-09-25T02:54:12+00:00"
  4637. },
  4638. {
  4639. "name": "hyperf/rpc-server",
  4640. "version": "v3.1.42",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/hyperf/rpc-server.git",
  4644. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4649. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4650. "shasum": "",
  4651. "mirrors": [
  4652. {
  4653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4654. "preferred": true
  4655. }
  4656. ]
  4657. },
  4658. "require": {
  4659. "hyperf/http-server": "~3.1.0",
  4660. "hyperf/rpc": "~3.1.0",
  4661. "php": ">=8.1"
  4662. },
  4663. "suggest": {
  4664. "hyperf/di": "Required to use annotations."
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "hyperf": {
  4669. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4670. },
  4671. "branch-alias": {
  4672. "dev-master": "3.1-dev"
  4673. }
  4674. },
  4675. "autoload": {
  4676. "psr-4": {
  4677. "Hyperf\\RpcServer\\": "src/"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "MIT"
  4683. ],
  4684. "description": "An abstract rpc server component for Hyperf.",
  4685. "homepage": "https://hyperf.io",
  4686. "keywords": [
  4687. "hyperf",
  4688. "php",
  4689. "rpc",
  4690. "rpc-server",
  4691. "swoole"
  4692. ],
  4693. "support": {
  4694. "docs": "https://hyperf.wiki",
  4695. "issues": "https://github.com/hyperf/hyperf/issues",
  4696. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4697. "source": "https://github.com/hyperf/hyperf"
  4698. },
  4699. "funding": [
  4700. {
  4701. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4702. "type": "custom"
  4703. },
  4704. {
  4705. "url": "https://opencollective.com/hyperf",
  4706. "type": "open_collective"
  4707. }
  4708. ],
  4709. "time": "2024-09-25T02:54:12+00:00"
  4710. },
  4711. {
  4712. "name": "hyperf/serializer",
  4713. "version": "v3.1.42",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/hyperf/serializer.git",
  4717. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4722. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4723. "shasum": "",
  4724. "mirrors": [
  4725. {
  4726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4727. "preferred": true
  4728. }
  4729. ]
  4730. },
  4731. "require": {
  4732. "hyperf/contract": "~3.1.0",
  4733. "php": ">=8.1"
  4734. },
  4735. "suggest": {
  4736. "hyperf/di": "Required to use ExceptionNormalizer",
  4737. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4738. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4739. },
  4740. "type": "library",
  4741. "extra": {
  4742. "hyperf": {
  4743. "config": "Hyperf\\Serializer\\ConfigProvider"
  4744. },
  4745. "branch-alias": {
  4746. "dev-master": "3.1-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "psr-4": {
  4751. "Hyperf\\Serializer\\": "src/"
  4752. }
  4753. },
  4754. "notification-url": "https://packagist.org/downloads/",
  4755. "license": [
  4756. "MIT"
  4757. ],
  4758. "description": "A serializer component for Hyperf.",
  4759. "homepage": "https://hyperf.io",
  4760. "keywords": [
  4761. "hyperf",
  4762. "php",
  4763. "swoole",
  4764. "tappable"
  4765. ],
  4766. "support": {
  4767. "docs": "https://hyperf.wiki",
  4768. "issues": "https://github.com/hyperf/hyperf/issues",
  4769. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4770. "source": "https://github.com/hyperf/hyperf"
  4771. },
  4772. "funding": [
  4773. {
  4774. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4775. "type": "custom"
  4776. },
  4777. {
  4778. "url": "https://opencollective.com/hyperf",
  4779. "type": "open_collective"
  4780. }
  4781. ],
  4782. "time": "2024-09-25T02:54:12+00:00"
  4783. },
  4784. {
  4785. "name": "hyperf/server",
  4786. "version": "v3.1.42",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/hyperf/server.git",
  4790. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4795. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4796. "shasum": "",
  4797. "mirrors": [
  4798. {
  4799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4800. "preferred": true
  4801. }
  4802. ]
  4803. },
  4804. "require": {
  4805. "hyperf/contract": "~3.1.0",
  4806. "hyperf/coordinator": "~3.1.0",
  4807. "hyperf/engine": "^2.8",
  4808. "hyperf/support": "~3.1.0",
  4809. "hyperf/tappable": "~3.1.0",
  4810. "php": ">=8.1",
  4811. "psr/container": "^1.0 || ^2.0",
  4812. "psr/event-dispatcher": "^1.0",
  4813. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4814. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4815. },
  4816. "suggest": {
  4817. "hyperf/event": "Dump the info after server start.",
  4818. "hyperf/framework": "Dump the info after server start."
  4819. },
  4820. "type": "library",
  4821. "extra": {
  4822. "hyperf": {
  4823. "config": "Hyperf\\Server\\ConfigProvider"
  4824. },
  4825. "branch-alias": {
  4826. "dev-master": "3.1-dev"
  4827. }
  4828. },
  4829. "autoload": {
  4830. "psr-4": {
  4831. "Hyperf\\Server\\": "src/"
  4832. }
  4833. },
  4834. "notification-url": "https://packagist.org/downloads/",
  4835. "license": [
  4836. "MIT"
  4837. ],
  4838. "description": "A base server library for Hyperf.",
  4839. "homepage": "https://hyperf.io",
  4840. "keywords": [
  4841. "hyperf",
  4842. "php",
  4843. "server",
  4844. "swoole"
  4845. ],
  4846. "support": {
  4847. "docs": "https://hyperf.wiki",
  4848. "issues": "https://github.com/hyperf/hyperf/issues",
  4849. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4850. "source": "https://github.com/hyperf/hyperf"
  4851. },
  4852. "funding": [
  4853. {
  4854. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4855. "type": "custom"
  4856. },
  4857. {
  4858. "url": "https://opencollective.com/hyperf",
  4859. "type": "open_collective"
  4860. }
  4861. ],
  4862. "time": "2024-09-25T02:54:12+00:00"
  4863. },
  4864. {
  4865. "name": "hyperf/service-governance",
  4866. "version": "v3.1.42",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/hyperf/service-governance.git",
  4870. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4875. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4876. "shasum": "",
  4877. "mirrors": [
  4878. {
  4879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4880. "preferred": true
  4881. }
  4882. ]
  4883. },
  4884. "require": {
  4885. "hyperf/contract": "~3.1.0",
  4886. "hyperf/support": "~3.1.0",
  4887. "jetbrains/phpstorm-attributes": "^1.0",
  4888. "php": ">=8.1"
  4889. },
  4890. "suggest": {
  4891. "hyperf/event": "Required to use RegisterServiceListener.",
  4892. "hyperf/framework": "Required to use RegisterServiceListener.",
  4893. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4894. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4895. },
  4896. "type": "library",
  4897. "extra": {
  4898. "hyperf": {
  4899. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4900. },
  4901. "branch-alias": {
  4902. "dev-master": "3.1-dev"
  4903. }
  4904. },
  4905. "autoload": {
  4906. "psr-4": {
  4907. "Hyperf\\ServiceGovernance\\": "src/"
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "description": "A service governance component for Hyperf.",
  4915. "homepage": "https://hyperf.io",
  4916. "keywords": [
  4917. "hyperf",
  4918. "php",
  4919. "service-governance",
  4920. "swoole"
  4921. ],
  4922. "support": {
  4923. "docs": "https://hyperf.wiki",
  4924. "issues": "https://github.com/hyperf/hyperf/issues",
  4925. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4926. "source": "https://github.com/hyperf/hyperf"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4931. "type": "custom"
  4932. },
  4933. {
  4934. "url": "https://opencollective.com/hyperf",
  4935. "type": "open_collective"
  4936. }
  4937. ],
  4938. "time": "2024-09-25T02:54:12+00:00"
  4939. },
  4940. {
  4941. "name": "hyperf/service-governance-consul",
  4942. "version": "v3.1.42",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/hyperf/service-governance-consul.git",
  4946. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4951. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4952. "shasum": "",
  4953. "mirrors": [
  4954. {
  4955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4956. "preferred": true
  4957. }
  4958. ]
  4959. },
  4960. "require": {
  4961. "hyperf/consul": "~3.1.0",
  4962. "hyperf/contract": "~3.1.0",
  4963. "hyperf/service-governance": "~3.1.0",
  4964. "hyperf/support": "~3.1.0",
  4965. "hyperf/utils": "~3.1.0",
  4966. "php": ">=8.1"
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "hyperf": {
  4971. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4972. },
  4973. "branch-alias": {
  4974. "dev-master": "3.1-dev"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4980. }
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "description": "A consul adapter for service governance.",
  4987. "homepage": "https://hyperf.io",
  4988. "keywords": [
  4989. "consul-adapter",
  4990. "hyperf",
  4991. "php",
  4992. "service-governance",
  4993. "swoole"
  4994. ],
  4995. "support": {
  4996. "docs": "https://hyperf.wiki",
  4997. "issues": "https://github.com/hyperf/hyperf/issues",
  4998. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4999. "source": "https://github.com/hyperf/hyperf"
  5000. },
  5001. "funding": [
  5002. {
  5003. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5004. "type": "custom"
  5005. },
  5006. {
  5007. "url": "https://opencollective.com/hyperf",
  5008. "type": "open_collective"
  5009. }
  5010. ],
  5011. "time": "2024-09-25T02:54:12+00:00"
  5012. },
  5013. {
  5014. "name": "hyperf/service-governance-nacos",
  5015. "version": "v3.1.42",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://github.com/hyperf/service-governance-nacos.git",
  5019. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  5024. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  5025. "shasum": "",
  5026. "mirrors": [
  5027. {
  5028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5029. "preferred": true
  5030. }
  5031. ]
  5032. },
  5033. "require": {
  5034. "hyperf/codec": "~3.1.0",
  5035. "hyperf/contract": "~3.1.0",
  5036. "hyperf/nacos": "~3.1.0",
  5037. "hyperf/service-governance": "~3.1.0",
  5038. "hyperf/support": "~3.1.0",
  5039. "hyperf/utils": "~3.1.0",
  5040. "php": ">=8.1"
  5041. },
  5042. "type": "library",
  5043. "extra": {
  5044. "hyperf": {
  5045. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  5046. },
  5047. "branch-alias": {
  5048. "dev-master": "3.1-dev"
  5049. }
  5050. },
  5051. "autoload": {
  5052. "psr-4": {
  5053. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  5054. }
  5055. },
  5056. "notification-url": "https://packagist.org/downloads/",
  5057. "license": [
  5058. "MIT"
  5059. ],
  5060. "description": "A nacos adapter for service governance.",
  5061. "homepage": "https://hyperf.io",
  5062. "keywords": [
  5063. "hyperf",
  5064. "nacos-adapter",
  5065. "php",
  5066. "service-governance",
  5067. "swoole"
  5068. ],
  5069. "support": {
  5070. "docs": "https://hyperf.wiki",
  5071. "issues": "https://github.com/hyperf/hyperf/issues",
  5072. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5073. "source": "https://github.com/hyperf/hyperf"
  5074. },
  5075. "funding": [
  5076. {
  5077. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5078. "type": "custom"
  5079. },
  5080. {
  5081. "url": "https://opencollective.com/hyperf",
  5082. "type": "open_collective"
  5083. }
  5084. ],
  5085. "time": "2024-09-25T02:54:12+00:00"
  5086. },
  5087. {
  5088. "name": "hyperf/snowflake",
  5089. "version": "v3.1.42",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/hyperf/snowflake.git",
  5093. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  5098. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  5099. "shasum": "",
  5100. "mirrors": [
  5101. {
  5102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5103. "preferred": true
  5104. }
  5105. ]
  5106. },
  5107. "require": {
  5108. "hyperf/contract": "~3.1.0",
  5109. "php": ">=8.1"
  5110. },
  5111. "suggest": {
  5112. "hyperf/config": "Required to read snowflake config.",
  5113. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  5114. "psr/container": "Required to use MetaGeneratorFactory."
  5115. },
  5116. "type": "library",
  5117. "extra": {
  5118. "hyperf": {
  5119. "config": "Hyperf\\Snowflake\\ConfigProvider"
  5120. },
  5121. "branch-alias": {
  5122. "dev-master": "3.1-dev"
  5123. }
  5124. },
  5125. "autoload": {
  5126. "psr-4": {
  5127. "Hyperf\\Snowflake\\": "src/"
  5128. }
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "MIT"
  5133. ],
  5134. "description": "A snowflake library",
  5135. "homepage": "https://hyperf.io",
  5136. "keywords": [
  5137. "php",
  5138. "snowflake"
  5139. ],
  5140. "support": {
  5141. "docs": "https://hyperf.wiki",
  5142. "issues": "https://github.com/hyperf/hyperf/issues",
  5143. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5144. "source": "https://github.com/hyperf/hyperf"
  5145. },
  5146. "funding": [
  5147. {
  5148. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5149. "type": "custom"
  5150. },
  5151. {
  5152. "url": "https://opencollective.com/hyperf",
  5153. "type": "open_collective"
  5154. }
  5155. ],
  5156. "time": "2024-09-25T02:54:12+00:00"
  5157. },
  5158. {
  5159. "name": "hyperf/stdlib",
  5160. "version": "v3.1.42",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/hyperf/stdlib.git",
  5164. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  5169. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  5170. "shasum": "",
  5171. "mirrors": [
  5172. {
  5173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5174. "preferred": true
  5175. }
  5176. ]
  5177. },
  5178. "require": {
  5179. "php": ">=8.1"
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-master": "3.1-dev"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Hyperf\\Stdlib\\": "src/"
  5190. }
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "description": "A stdlib component for Hyperf.",
  5197. "homepage": "https://hyperf.io",
  5198. "keywords": [
  5199. "hyperf",
  5200. "php",
  5201. "stdlib",
  5202. "swoole"
  5203. ],
  5204. "support": {
  5205. "docs": "https://hyperf.wiki",
  5206. "issues": "https://github.com/hyperf/hyperf/issues",
  5207. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5208. "source": "https://github.com/hyperf/hyperf"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://opencollective.com/hyperf",
  5217. "type": "open_collective"
  5218. }
  5219. ],
  5220. "time": "2024-09-25T02:54:12+00:00"
  5221. },
  5222. {
  5223. "name": "hyperf/stringable",
  5224. "version": "v3.1.55",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://github.com/hyperf/stringable.git",
  5228. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  5233. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  5234. "shasum": "",
  5235. "mirrors": [
  5236. {
  5237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5238. "preferred": true
  5239. }
  5240. ]
  5241. },
  5242. "require": {
  5243. "ext-mbstring": "*",
  5244. "hyperf/collection": "~3.1.0",
  5245. "hyperf/conditionable": "~3.1.0",
  5246. "hyperf/macroable": "~3.1.0",
  5247. "hyperf/tappable": "~3.1.0",
  5248. "php": ">=8.1"
  5249. },
  5250. "suggest": {
  5251. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  5252. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  5253. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  5254. },
  5255. "type": "library",
  5256. "extra": {
  5257. "branch-alias": {
  5258. "dev-master": "3.1-dev"
  5259. }
  5260. },
  5261. "autoload": {
  5262. "files": [
  5263. "src/Functions.php"
  5264. ],
  5265. "psr-4": {
  5266. "Hyperf\\Stringable\\": "src/"
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "description": "Hyperf Stringable package which come from illuminate/support",
  5274. "homepage": "https://hyperf.io",
  5275. "keywords": [
  5276. "hyperf",
  5277. "php",
  5278. "stringable",
  5279. "swoole"
  5280. ],
  5281. "support": {
  5282. "docs": "https://hyperf.wiki",
  5283. "issues": "https://github.com/hyperf/hyperf/issues",
  5284. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5285. "source": "https://github.com/hyperf/hyperf"
  5286. },
  5287. "funding": [
  5288. {
  5289. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5290. "type": "custom"
  5291. },
  5292. {
  5293. "url": "https://opencollective.com/hyperf",
  5294. "type": "open_collective"
  5295. }
  5296. ],
  5297. "time": "2025-05-02T14:13:24+00:00"
  5298. },
  5299. {
  5300. "name": "hyperf/support",
  5301. "version": "v3.1.51",
  5302. "source": {
  5303. "type": "git",
  5304. "url": "https://github.com/hyperf/support.git",
  5305. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  5306. },
  5307. "dist": {
  5308. "type": "zip",
  5309. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  5310. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  5311. "shasum": "",
  5312. "mirrors": [
  5313. {
  5314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5315. "preferred": true
  5316. }
  5317. ]
  5318. },
  5319. "require": {
  5320. "hyperf/collection": "~3.1.0",
  5321. "hyperf/context": "~3.1.0",
  5322. "hyperf/contract": "~3.1.0",
  5323. "hyperf/coroutine": "~3.1.0",
  5324. "hyperf/macroable": "~3.1.0",
  5325. "hyperf/stringable": "~3.1.0",
  5326. "php": ">=8.1"
  5327. },
  5328. "suggest": {
  5329. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  5330. },
  5331. "type": "library",
  5332. "extra": {
  5333. "branch-alias": {
  5334. "dev-master": "3.1-dev"
  5335. }
  5336. },
  5337. "autoload": {
  5338. "files": [
  5339. "src/Functions.php"
  5340. ],
  5341. "psr-4": {
  5342. "Hyperf\\Support\\": "src/"
  5343. }
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "MIT"
  5348. ],
  5349. "description": "A support component for Hyperf.",
  5350. "homepage": "https://hyperf.io",
  5351. "keywords": [
  5352. "hyperf",
  5353. "php",
  5354. "support",
  5355. "swoole"
  5356. ],
  5357. "support": {
  5358. "docs": "https://hyperf.wiki",
  5359. "issues": "https://github.com/hyperf/hyperf/issues",
  5360. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5361. "source": "https://github.com/hyperf/hyperf"
  5362. },
  5363. "funding": [
  5364. {
  5365. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5366. "type": "custom"
  5367. },
  5368. {
  5369. "url": "https://opencollective.com/hyperf",
  5370. "type": "open_collective"
  5371. }
  5372. ],
  5373. "time": "2025-02-06T07:02:37+00:00"
  5374. },
  5375. {
  5376. "name": "hyperf/tappable",
  5377. "version": "v3.1.42",
  5378. "source": {
  5379. "type": "git",
  5380. "url": "https://github.com/hyperf/tappable.git",
  5381. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  5382. },
  5383. "dist": {
  5384. "type": "zip",
  5385. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  5386. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  5387. "shasum": "",
  5388. "mirrors": [
  5389. {
  5390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5391. "preferred": true
  5392. }
  5393. ]
  5394. },
  5395. "require": {
  5396. "php": ">=8.1"
  5397. },
  5398. "type": "library",
  5399. "extra": {
  5400. "branch-alias": {
  5401. "dev-master": "3.1-dev"
  5402. }
  5403. },
  5404. "autoload": {
  5405. "files": [
  5406. "src/Functions.php"
  5407. ],
  5408. "psr-4": {
  5409. "Hyperf\\Tappable\\": "src/"
  5410. }
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "description": "Hyperf Macroable package which come from illuminate/tappable",
  5417. "homepage": "https://hyperf.io",
  5418. "keywords": [
  5419. "hyperf",
  5420. "php",
  5421. "swoole",
  5422. "tappable"
  5423. ],
  5424. "support": {
  5425. "docs": "https://hyperf.wiki",
  5426. "issues": "https://github.com/hyperf/hyperf/issues",
  5427. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5428. "source": "https://github.com/hyperf/hyperf"
  5429. },
  5430. "funding": [
  5431. {
  5432. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5433. "type": "custom"
  5434. },
  5435. {
  5436. "url": "https://opencollective.com/hyperf",
  5437. "type": "open_collective"
  5438. }
  5439. ],
  5440. "time": "2024-09-25T02:54:12+00:00"
  5441. },
  5442. {
  5443. "name": "hyperf/translation",
  5444. "version": "v3.1.42",
  5445. "source": {
  5446. "type": "git",
  5447. "url": "https://github.com/hyperf/translation.git",
  5448. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  5449. },
  5450. "dist": {
  5451. "type": "zip",
  5452. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  5453. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  5454. "shasum": "",
  5455. "mirrors": [
  5456. {
  5457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5458. "preferred": true
  5459. }
  5460. ]
  5461. },
  5462. "require": {
  5463. "hyperf/contract": "~3.1.0",
  5464. "hyperf/macroable": "~3.1.0",
  5465. "hyperf/support": "~3.1.0",
  5466. "hyperf/utils": "~3.1.0",
  5467. "php": ">=8.1",
  5468. "psr/container": "^1.0 || ^2.0"
  5469. },
  5470. "type": "library",
  5471. "extra": {
  5472. "hyperf": {
  5473. "config": "Hyperf\\Translation\\ConfigProvider"
  5474. },
  5475. "branch-alias": {
  5476. "dev-master": "3.1-dev"
  5477. }
  5478. },
  5479. "autoload": {
  5480. "files": [
  5481. "src/Functions.php"
  5482. ],
  5483. "psr-4": {
  5484. "Hyperf\\Translation\\": "src/"
  5485. }
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "MIT"
  5490. ],
  5491. "description": "An independent translation component, forked by illuminate/translation.",
  5492. "keywords": [
  5493. "hyperf",
  5494. "translation"
  5495. ],
  5496. "support": {
  5497. "issues": "https://github.com/hyperf/translation/issues",
  5498. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  5499. },
  5500. "funding": [
  5501. {
  5502. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5503. "type": "custom"
  5504. },
  5505. {
  5506. "url": "https://opencollective.com/hyperf",
  5507. "type": "open_collective"
  5508. }
  5509. ],
  5510. "time": "2024-09-25T02:54:12+00:00"
  5511. },
  5512. {
  5513. "name": "hyperf/utils",
  5514. "version": "v3.1.42",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://github.com/hyperf/utils.git",
  5518. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5523. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5524. "shasum": "",
  5525. "mirrors": [
  5526. {
  5527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5528. "preferred": true
  5529. }
  5530. ]
  5531. },
  5532. "require": {
  5533. "doctrine/inflector": "^2.0",
  5534. "hyperf/code-parser": "~3.1.0",
  5535. "hyperf/codec": "~3.1.0",
  5536. "hyperf/collection": "~3.1.0",
  5537. "hyperf/context": "~3.1.0",
  5538. "hyperf/contract": "~3.1.0",
  5539. "hyperf/coordinator": "~3.1.0",
  5540. "hyperf/coroutine": "~3.1.0",
  5541. "hyperf/engine": "^2.0",
  5542. "hyperf/macroable": "~3.1.0",
  5543. "hyperf/serializer": "~3.1.0",
  5544. "hyperf/stringable": "~3.1.0",
  5545. "hyperf/support": "~3.1.0",
  5546. "php": ">=8.1"
  5547. },
  5548. "type": "library",
  5549. "extra": {
  5550. "branch-alias": {
  5551. "dev-master": "3.1-dev"
  5552. }
  5553. },
  5554. "notification-url": "https://packagist.org/downloads/",
  5555. "license": [
  5556. "MIT"
  5557. ],
  5558. "description": "A tools package that could help developer solved the problem quickly.",
  5559. "homepage": "https://hyperf.io",
  5560. "keywords": [
  5561. "hyperf",
  5562. "php",
  5563. "swoole",
  5564. "utils"
  5565. ],
  5566. "support": {
  5567. "docs": "https://hyperf.wiki",
  5568. "issues": "https://github.com/hyperf/hyperf/issues",
  5569. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5570. "source": "https://github.com/hyperf/hyperf"
  5571. },
  5572. "funding": [
  5573. {
  5574. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5575. "type": "custom"
  5576. },
  5577. {
  5578. "url": "https://opencollective.com/hyperf",
  5579. "type": "open_collective"
  5580. }
  5581. ],
  5582. "time": "2024-09-25T02:54:12+00:00"
  5583. },
  5584. {
  5585. "name": "hyperf/validation",
  5586. "version": "v3.1.53",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://github.com/hyperf/validation.git",
  5590. "reference": "476ccad33326073cd07ca66b7c6d5c1f4f3c7f53"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://api.github.com/repos/hyperf/validation/zipball/476ccad33326073cd07ca66b7c6d5c1f4f3c7f53",
  5595. "reference": "476ccad33326073cd07ca66b7c6d5c1f4f3c7f53",
  5596. "shasum": "",
  5597. "mirrors": [
  5598. {
  5599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5600. "preferred": true
  5601. }
  5602. ]
  5603. },
  5604. "require": {
  5605. "egulias/email-validator": "^3.0",
  5606. "hyperf/collection": "~3.1.0",
  5607. "hyperf/conditionable": "~3.1.0",
  5608. "hyperf/contract": "~3.1.0",
  5609. "hyperf/di": "~3.1.0",
  5610. "hyperf/framework": "~3.1.0",
  5611. "hyperf/macroable": "~3.1.0",
  5612. "hyperf/stringable": "~3.1.0",
  5613. "hyperf/support": "~3.1.0",
  5614. "hyperf/tappable": "~3.1.0",
  5615. "hyperf/translation": "~3.1.0",
  5616. "hyperf/utils": "~3.1.0",
  5617. "nesbot/carbon": "^2.21",
  5618. "php": ">=8.1",
  5619. "psr/container": "^1.0 || ^2.0",
  5620. "psr/event-dispatcher": "^1.0",
  5621. "psr/http-message": "^1.0 || ^2.0"
  5622. },
  5623. "suggest": {
  5624. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5625. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "hyperf": {
  5630. "config": "Hyperf\\Validation\\ConfigProvider"
  5631. },
  5632. "branch-alias": {
  5633. "dev-master": "3.1-dev"
  5634. }
  5635. },
  5636. "autoload": {
  5637. "psr-4": {
  5638. "Hyperf\\Validation\\": "src/"
  5639. }
  5640. },
  5641. "notification-url": "https://packagist.org/downloads/",
  5642. "license": [
  5643. "MIT"
  5644. ],
  5645. "description": "hyperf validation",
  5646. "keywords": [
  5647. "hyperf",
  5648. "validation"
  5649. ],
  5650. "support": {
  5651. "issues": "https://github.com/hyperf/validation/issues",
  5652. "source": "https://github.com/hyperf/validation/tree/v3.1.53"
  5653. },
  5654. "funding": [
  5655. {
  5656. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5657. "type": "custom"
  5658. },
  5659. {
  5660. "url": "https://opencollective.com/hyperf",
  5661. "type": "open_collective"
  5662. }
  5663. ],
  5664. "time": "2025-04-03T07:47:47+00:00"
  5665. },
  5666. {
  5667. "name": "hyperf/websocket-server",
  5668. "version": "v3.1.50",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/hyperf/websocket-server.git",
  5672. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/c770ebf0208738bbb21000db01f09a48e15023a5",
  5677. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5",
  5678. "shasum": "",
  5679. "mirrors": [
  5680. {
  5681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5682. "preferred": true
  5683. }
  5684. ]
  5685. },
  5686. "require": {
  5687. "hyperf/collection": "~3.1.0",
  5688. "hyperf/contract": "~3.1.0",
  5689. "hyperf/exception-handler": "~3.1.0",
  5690. "hyperf/http-server": "~3.1.0",
  5691. "hyperf/support": "~3.1.0",
  5692. "hyperf/utils": "~3.1.0",
  5693. "php": ">=8.1",
  5694. "psr/container": "^1.0 || ^2.0",
  5695. "psr/event-dispatcher": "^1.0"
  5696. },
  5697. "type": "library",
  5698. "extra": {
  5699. "hyperf": {
  5700. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5701. },
  5702. "branch-alias": {
  5703. "dev-master": "3.1-dev"
  5704. }
  5705. },
  5706. "autoload": {
  5707. "psr-4": {
  5708. "Hyperf\\WebSocketServer\\": "src/"
  5709. }
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "description": "A websocket server library for Hyperf.",
  5716. "homepage": "https://hyperf.io",
  5717. "keywords": [
  5718. "hyperf",
  5719. "php",
  5720. "swoole",
  5721. "websocket"
  5722. ],
  5723. "support": {
  5724. "docs": "https://hyperf.wiki",
  5725. "issues": "https://github.com/hyperf/hyperf/issues",
  5726. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5727. "source": "https://github.com/hyperf/hyperf"
  5728. },
  5729. "funding": [
  5730. {
  5731. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5732. "type": "custom"
  5733. },
  5734. {
  5735. "url": "https://opencollective.com/hyperf",
  5736. "type": "open_collective"
  5737. }
  5738. ],
  5739. "time": "2025-01-08T02:18:30+00:00"
  5740. },
  5741. {
  5742. "name": "jetbrains/phpstorm-attributes",
  5743. "version": "1.2",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5747. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5752. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5753. "shasum": "",
  5754. "mirrors": [
  5755. {
  5756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5757. "preferred": true
  5758. }
  5759. ]
  5760. },
  5761. "type": "library",
  5762. "autoload": {
  5763. "psr-4": {
  5764. "JetBrains\\PhpStorm\\": "src/"
  5765. }
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "Apache-2.0"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "JetBrains",
  5774. "homepage": "https://www.jetbrains.com"
  5775. }
  5776. ],
  5777. "description": "PhpStorm specific attributes",
  5778. "keywords": [
  5779. "attributes",
  5780. "jetbrains",
  5781. "phpstorm"
  5782. ],
  5783. "support": {
  5784. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5785. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5786. },
  5787. "time": "2024-10-11T10:46:19+00:00"
  5788. },
  5789. {
  5790. "name": "laminas/laminas-mime",
  5791. "version": "2.12.0",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/laminas/laminas-mime.git",
  5795. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5800. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5801. "shasum": "",
  5802. "mirrors": [
  5803. {
  5804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5805. "preferred": true
  5806. }
  5807. ]
  5808. },
  5809. "require": {
  5810. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5811. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5812. },
  5813. "conflict": {
  5814. "zendframework/zend-mime": "*"
  5815. },
  5816. "require-dev": {
  5817. "laminas/laminas-coding-standard": "~2.4.0",
  5818. "laminas/laminas-mail": "^2.19.0",
  5819. "phpunit/phpunit": "~9.5.25"
  5820. },
  5821. "suggest": {
  5822. "laminas/laminas-mail": "Laminas\\Mail component"
  5823. },
  5824. "type": "library",
  5825. "autoload": {
  5826. "psr-4": {
  5827. "Laminas\\Mime\\": "src/"
  5828. }
  5829. },
  5830. "notification-url": "https://packagist.org/downloads/",
  5831. "license": [
  5832. "BSD-3-Clause"
  5833. ],
  5834. "description": "Create and parse MIME messages and parts",
  5835. "homepage": "https://laminas.dev",
  5836. "keywords": [
  5837. "laminas",
  5838. "mime"
  5839. ],
  5840. "support": {
  5841. "chat": "https://laminas.dev/chat",
  5842. "docs": "https://docs.laminas.dev/laminas-mime/",
  5843. "forum": "https://discourse.laminas.dev",
  5844. "issues": "https://github.com/laminas/laminas-mime/issues",
  5845. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5846. "source": "https://github.com/laminas/laminas-mime"
  5847. },
  5848. "funding": [
  5849. {
  5850. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5851. "type": "community_bridge"
  5852. }
  5853. ],
  5854. "time": "2023-11-02T16:47:19+00:00"
  5855. },
  5856. {
  5857. "name": "laminas/laminas-stdlib",
  5858. "version": "3.20.0",
  5859. "source": {
  5860. "type": "git",
  5861. "url": "https://github.com/laminas/laminas-stdlib.git",
  5862. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5863. },
  5864. "dist": {
  5865. "type": "zip",
  5866. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5867. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5868. "shasum": "",
  5869. "mirrors": [
  5870. {
  5871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5872. "preferred": true
  5873. }
  5874. ]
  5875. },
  5876. "require": {
  5877. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5878. },
  5879. "conflict": {
  5880. "zendframework/zend-stdlib": "*"
  5881. },
  5882. "require-dev": {
  5883. "laminas/laminas-coding-standard": "^3.0",
  5884. "phpbench/phpbench": "^1.3.1",
  5885. "phpunit/phpunit": "^10.5.38",
  5886. "psalm/plugin-phpunit": "^0.19.0",
  5887. "vimeo/psalm": "^5.26.1"
  5888. },
  5889. "type": "library",
  5890. "autoload": {
  5891. "psr-4": {
  5892. "Laminas\\Stdlib\\": "src/"
  5893. }
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "BSD-3-Clause"
  5898. ],
  5899. "description": "SPL extensions, array utilities, error handlers, and more",
  5900. "homepage": "https://laminas.dev",
  5901. "keywords": [
  5902. "laminas",
  5903. "stdlib"
  5904. ],
  5905. "support": {
  5906. "chat": "https://laminas.dev/chat",
  5907. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5908. "forum": "https://discourse.laminas.dev",
  5909. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5910. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5911. "source": "https://github.com/laminas/laminas-stdlib"
  5912. },
  5913. "funding": [
  5914. {
  5915. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5916. "type": "community_bridge"
  5917. }
  5918. ],
  5919. "time": "2024-10-29T13:46:07+00:00"
  5920. },
  5921. {
  5922. "name": "lcobucci/clock",
  5923. "version": "2.3.0",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/lcobucci/clock.git",
  5927. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5932. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5933. "shasum": "",
  5934. "mirrors": [
  5935. {
  5936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5937. "preferred": true
  5938. }
  5939. ]
  5940. },
  5941. "require": {
  5942. "php": "~8.1.0 || ~8.2.0",
  5943. "stella-maris/clock": "^0.1.7"
  5944. },
  5945. "provide": {
  5946. "psr/clock-implementation": "1.0"
  5947. },
  5948. "require-dev": {
  5949. "infection/infection": "^0.26",
  5950. "lcobucci/coding-standard": "^9.0",
  5951. "phpstan/extension-installer": "^1.2",
  5952. "phpstan/phpstan": "^1.9.4",
  5953. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5954. "phpstan/phpstan-phpunit": "^1.3.2",
  5955. "phpstan/phpstan-strict-rules": "^1.4.4",
  5956. "phpunit/phpunit": "^9.5.27"
  5957. },
  5958. "type": "library",
  5959. "autoload": {
  5960. "psr-4": {
  5961. "Lcobucci\\Clock\\": "src"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Luís Cobucci",
  5971. "email": "lcobucci@gmail.com"
  5972. }
  5973. ],
  5974. "description": "Yet another clock abstraction",
  5975. "support": {
  5976. "issues": "https://github.com/lcobucci/clock/issues",
  5977. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://github.com/lcobucci",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://www.patreon.com/lcobucci",
  5986. "type": "patreon"
  5987. }
  5988. ],
  5989. "time": "2022-12-19T14:38:11+00:00"
  5990. },
  5991. {
  5992. "name": "lcobucci/jwt",
  5993. "version": "4.1.5",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/lcobucci/jwt.git",
  5997. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  6002. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  6003. "shasum": "",
  6004. "mirrors": [
  6005. {
  6006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6007. "preferred": true
  6008. }
  6009. ]
  6010. },
  6011. "require": {
  6012. "ext-hash": "*",
  6013. "ext-json": "*",
  6014. "ext-mbstring": "*",
  6015. "ext-openssl": "*",
  6016. "ext-sodium": "*",
  6017. "lcobucci/clock": "^2.0",
  6018. "php": "^7.4 || ^8.0"
  6019. },
  6020. "require-dev": {
  6021. "infection/infection": "^0.21",
  6022. "lcobucci/coding-standard": "^6.0",
  6023. "mikey179/vfsstream": "^1.6.7",
  6024. "phpbench/phpbench": "^1.0",
  6025. "phpstan/extension-installer": "^1.0",
  6026. "phpstan/phpstan": "^0.12",
  6027. "phpstan/phpstan-deprecation-rules": "^0.12",
  6028. "phpstan/phpstan-phpunit": "^0.12",
  6029. "phpstan/phpstan-strict-rules": "^0.12",
  6030. "phpunit/php-invoker": "^3.1",
  6031. "phpunit/phpunit": "^9.5"
  6032. },
  6033. "type": "library",
  6034. "autoload": {
  6035. "psr-4": {
  6036. "Lcobucci\\JWT\\": "src"
  6037. }
  6038. },
  6039. "notification-url": "https://packagist.org/downloads/",
  6040. "license": [
  6041. "BSD-3-Clause"
  6042. ],
  6043. "authors": [
  6044. {
  6045. "name": "Luís Cobucci",
  6046. "email": "lcobucci@gmail.com",
  6047. "role": "Developer"
  6048. }
  6049. ],
  6050. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  6051. "keywords": [
  6052. "JWS",
  6053. "jwt"
  6054. ],
  6055. "support": {
  6056. "issues": "https://github.com/lcobucci/jwt/issues",
  6057. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  6058. },
  6059. "funding": [
  6060. {
  6061. "url": "https://github.com/lcobucci",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://www.patreon.com/lcobucci",
  6066. "type": "patreon"
  6067. }
  6068. ],
  6069. "time": "2021-09-28T19:34:56+00:00"
  6070. },
  6071. {
  6072. "name": "markrogoyski/math-php",
  6073. "version": "v2.11.0",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/markrogoyski/math-php.git",
  6077. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  6082. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  6083. "shasum": "",
  6084. "mirrors": [
  6085. {
  6086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6087. "preferred": true
  6088. }
  6089. ]
  6090. },
  6091. "require": {
  6092. "ext-json": "*",
  6093. "php": ">=7.2.0"
  6094. },
  6095. "require-dev": {
  6096. "php-coveralls/php-coveralls": "^2.0",
  6097. "php-parallel-lint/php-parallel-lint": "^1.2",
  6098. "phploc/phploc": "*",
  6099. "phpmd/phpmd": "^2.6",
  6100. "phpstan/phpstan": "^1.10",
  6101. "phpunit/phpunit": "^8.5",
  6102. "squizlabs/php_codesniffer": "3.*"
  6103. },
  6104. "type": "library",
  6105. "autoload": {
  6106. "psr-4": {
  6107. "MathPHP\\": "src/"
  6108. }
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Mark Rogoyski",
  6117. "email": "mark@rogoyski.com",
  6118. "homepage": "https://github.com/markrogoyski",
  6119. "role": "Lead developer"
  6120. },
  6121. {
  6122. "name": "Kevin Nowaczyk",
  6123. "homepage": "https://github.com/Beakerboy",
  6124. "role": "Developer"
  6125. },
  6126. {
  6127. "name": "MathPHP Community of Contributors",
  6128. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  6129. }
  6130. ],
  6131. "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",
  6132. "homepage": "https://github.com/markrogoyski/math-php/",
  6133. "keywords": [
  6134. "algebra",
  6135. "combinatorics",
  6136. "distributions",
  6137. "linear algebra",
  6138. "math",
  6139. "mathematics",
  6140. "matrix",
  6141. "numerical analysis",
  6142. "probability",
  6143. "regressions",
  6144. "statistics"
  6145. ],
  6146. "support": {
  6147. "issues": "https://github.com/markrogoyski/math-php/issues",
  6148. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  6149. },
  6150. "time": "2025-01-26T20:16:06+00:00"
  6151. },
  6152. {
  6153. "name": "monolog/monolog",
  6154. "version": "3.9.0",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://github.com/Seldaek/monolog.git",
  6158. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  6163. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  6164. "shasum": "",
  6165. "mirrors": [
  6166. {
  6167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6168. "preferred": true
  6169. }
  6170. ]
  6171. },
  6172. "require": {
  6173. "php": ">=8.1",
  6174. "psr/log": "^2.0 || ^3.0"
  6175. },
  6176. "provide": {
  6177. "psr/log-implementation": "3.0.0"
  6178. },
  6179. "require-dev": {
  6180. "aws/aws-sdk-php": "^3.0",
  6181. "doctrine/couchdb": "~1.0@dev",
  6182. "elasticsearch/elasticsearch": "^7 || ^8",
  6183. "ext-json": "*",
  6184. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  6185. "guzzlehttp/guzzle": "^7.4.5",
  6186. "guzzlehttp/psr7": "^2.2",
  6187. "mongodb/mongodb": "^1.8",
  6188. "php-amqplib/php-amqplib": "~2.4 || ^3",
  6189. "php-console/php-console": "^3.1.8",
  6190. "phpstan/phpstan": "^2",
  6191. "phpstan/phpstan-deprecation-rules": "^2",
  6192. "phpstan/phpstan-strict-rules": "^2",
  6193. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  6194. "predis/predis": "^1.1 || ^2",
  6195. "rollbar/rollbar": "^4.0",
  6196. "ruflin/elastica": "^7 || ^8",
  6197. "symfony/mailer": "^5.4 || ^6",
  6198. "symfony/mime": "^5.4 || ^6"
  6199. },
  6200. "suggest": {
  6201. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  6202. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  6203. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  6204. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  6205. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  6206. "ext-mbstring": "Allow to work properly with unicode symbols",
  6207. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  6208. "ext-openssl": "Required to send log messages using SSL",
  6209. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  6210. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  6211. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  6212. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  6213. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  6214. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  6215. },
  6216. "type": "library",
  6217. "extra": {
  6218. "branch-alias": {
  6219. "dev-main": "3.x-dev"
  6220. }
  6221. },
  6222. "autoload": {
  6223. "psr-4": {
  6224. "Monolog\\": "src/Monolog"
  6225. }
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Jordi Boggiano",
  6234. "email": "j.boggiano@seld.be",
  6235. "homepage": "https://seld.be"
  6236. }
  6237. ],
  6238. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  6239. "homepage": "https://github.com/Seldaek/monolog",
  6240. "keywords": [
  6241. "log",
  6242. "logging",
  6243. "psr-3"
  6244. ],
  6245. "support": {
  6246. "issues": "https://github.com/Seldaek/monolog/issues",
  6247. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  6248. },
  6249. "funding": [
  6250. {
  6251. "url": "https://github.com/Seldaek",
  6252. "type": "github"
  6253. },
  6254. {
  6255. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  6256. "type": "tidelift"
  6257. }
  6258. ],
  6259. "time": "2025-03-24T10:02:05+00:00"
  6260. },
  6261. {
  6262. "name": "mtdowling/jmespath.php",
  6263. "version": "2.7.0",
  6264. "source": {
  6265. "type": "git",
  6266. "url": "https://github.com/jmespath/jmespath.php.git",
  6267. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  6268. },
  6269. "dist": {
  6270. "type": "zip",
  6271. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  6272. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  6273. "shasum": "",
  6274. "mirrors": [
  6275. {
  6276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6277. "preferred": true
  6278. }
  6279. ]
  6280. },
  6281. "require": {
  6282. "php": "^7.2.5 || ^8.0",
  6283. "symfony/polyfill-mbstring": "^1.17"
  6284. },
  6285. "require-dev": {
  6286. "composer/xdebug-handler": "^3.0.3",
  6287. "phpunit/phpunit": "^8.5.33"
  6288. },
  6289. "bin": [
  6290. "bin/jp.php"
  6291. ],
  6292. "type": "library",
  6293. "extra": {
  6294. "branch-alias": {
  6295. "dev-master": "2.7-dev"
  6296. }
  6297. },
  6298. "autoload": {
  6299. "files": [
  6300. "src/JmesPath.php"
  6301. ],
  6302. "psr-4": {
  6303. "JmesPath\\": "src/"
  6304. }
  6305. },
  6306. "notification-url": "https://packagist.org/downloads/",
  6307. "license": [
  6308. "MIT"
  6309. ],
  6310. "authors": [
  6311. {
  6312. "name": "Graham Campbell",
  6313. "email": "hello@gjcampbell.co.uk",
  6314. "homepage": "https://github.com/GrahamCampbell"
  6315. },
  6316. {
  6317. "name": "Michael Dowling",
  6318. "email": "mtdowling@gmail.com",
  6319. "homepage": "https://github.com/mtdowling"
  6320. }
  6321. ],
  6322. "description": "Declaratively specify how to extract elements from a JSON document",
  6323. "keywords": [
  6324. "json",
  6325. "jsonpath"
  6326. ],
  6327. "support": {
  6328. "issues": "https://github.com/jmespath/jmespath.php/issues",
  6329. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  6330. },
  6331. "time": "2023-08-25T10:54:48+00:00"
  6332. },
  6333. {
  6334. "name": "nesbot/carbon",
  6335. "version": "2.73.0",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/CarbonPHP/carbon.git",
  6339. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  6344. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  6345. "shasum": "",
  6346. "mirrors": [
  6347. {
  6348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6349. "preferred": true
  6350. }
  6351. ]
  6352. },
  6353. "require": {
  6354. "carbonphp/carbon-doctrine-types": "*",
  6355. "ext-json": "*",
  6356. "php": "^7.1.8 || ^8.0",
  6357. "psr/clock": "^1.0",
  6358. "symfony/polyfill-mbstring": "^1.0",
  6359. "symfony/polyfill-php80": "^1.16",
  6360. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  6361. },
  6362. "provide": {
  6363. "psr/clock-implementation": "1.0"
  6364. },
  6365. "require-dev": {
  6366. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  6367. "doctrine/orm": "^2.7 || ^3.0",
  6368. "friendsofphp/php-cs-fixer": "^3.0",
  6369. "kylekatarnls/multi-tester": "^2.0",
  6370. "ondrejmirtes/better-reflection": "<6",
  6371. "phpmd/phpmd": "^2.9",
  6372. "phpstan/extension-installer": "^1.0",
  6373. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  6374. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  6375. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  6376. "squizlabs/php_codesniffer": "^3.4"
  6377. },
  6378. "bin": [
  6379. "bin/carbon"
  6380. ],
  6381. "type": "library",
  6382. "extra": {
  6383. "laravel": {
  6384. "providers": [
  6385. "Carbon\\Laravel\\ServiceProvider"
  6386. ]
  6387. },
  6388. "phpstan": {
  6389. "includes": [
  6390. "extension.neon"
  6391. ]
  6392. },
  6393. "branch-alias": {
  6394. "dev-2.x": "2.x-dev",
  6395. "dev-master": "3.x-dev"
  6396. }
  6397. },
  6398. "autoload": {
  6399. "psr-4": {
  6400. "Carbon\\": "src/Carbon/"
  6401. }
  6402. },
  6403. "notification-url": "https://packagist.org/downloads/",
  6404. "license": [
  6405. "MIT"
  6406. ],
  6407. "authors": [
  6408. {
  6409. "name": "Brian Nesbitt",
  6410. "email": "brian@nesbot.com",
  6411. "homepage": "https://markido.com"
  6412. },
  6413. {
  6414. "name": "kylekatarnls",
  6415. "homepage": "https://github.com/kylekatarnls"
  6416. }
  6417. ],
  6418. "description": "An API extension for DateTime that supports 281 different languages.",
  6419. "homepage": "https://carbon.nesbot.com",
  6420. "keywords": [
  6421. "date",
  6422. "datetime",
  6423. "time"
  6424. ],
  6425. "support": {
  6426. "docs": "https://carbon.nesbot.com/docs",
  6427. "issues": "https://github.com/briannesbitt/Carbon/issues",
  6428. "source": "https://github.com/briannesbitt/Carbon"
  6429. },
  6430. "funding": [
  6431. {
  6432. "url": "https://github.com/sponsors/kylekatarnls",
  6433. "type": "github"
  6434. },
  6435. {
  6436. "url": "https://opencollective.com/Carbon#sponsor",
  6437. "type": "opencollective"
  6438. },
  6439. {
  6440. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  6441. "type": "tidelift"
  6442. }
  6443. ],
  6444. "time": "2025-01-08T20:10:23+00:00"
  6445. },
  6446. {
  6447. "name": "nikic/fast-route",
  6448. "version": "v1.3.0",
  6449. "source": {
  6450. "type": "git",
  6451. "url": "https://github.com/nikic/FastRoute.git",
  6452. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  6453. },
  6454. "dist": {
  6455. "type": "zip",
  6456. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  6457. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  6458. "shasum": "",
  6459. "mirrors": [
  6460. {
  6461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6462. "preferred": true
  6463. }
  6464. ]
  6465. },
  6466. "require": {
  6467. "php": ">=5.4.0"
  6468. },
  6469. "require-dev": {
  6470. "phpunit/phpunit": "^4.8.35|~5.7"
  6471. },
  6472. "type": "library",
  6473. "autoload": {
  6474. "files": [
  6475. "src/functions.php"
  6476. ],
  6477. "psr-4": {
  6478. "FastRoute\\": "src/"
  6479. }
  6480. },
  6481. "notification-url": "https://packagist.org/downloads/",
  6482. "license": [
  6483. "BSD-3-Clause"
  6484. ],
  6485. "authors": [
  6486. {
  6487. "name": "Nikita Popov",
  6488. "email": "nikic@php.net"
  6489. }
  6490. ],
  6491. "description": "Fast request router for PHP",
  6492. "keywords": [
  6493. "router",
  6494. "routing"
  6495. ],
  6496. "support": {
  6497. "issues": "https://github.com/nikic/FastRoute/issues",
  6498. "source": "https://github.com/nikic/FastRoute/tree/master"
  6499. },
  6500. "time": "2018-02-13T20:26:39+00:00"
  6501. },
  6502. {
  6503. "name": "nikic/php-parser",
  6504. "version": "v4.19.4",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/nikic/PHP-Parser.git",
  6508. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  6513. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  6514. "shasum": "",
  6515. "mirrors": [
  6516. {
  6517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6518. "preferred": true
  6519. }
  6520. ]
  6521. },
  6522. "require": {
  6523. "ext-tokenizer": "*",
  6524. "php": ">=7.1"
  6525. },
  6526. "require-dev": {
  6527. "ircmaxell/php-yacc": "^0.0.7",
  6528. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  6529. },
  6530. "bin": [
  6531. "bin/php-parse"
  6532. ],
  6533. "type": "library",
  6534. "extra": {
  6535. "branch-alias": {
  6536. "dev-master": "4.9-dev"
  6537. }
  6538. },
  6539. "autoload": {
  6540. "psr-4": {
  6541. "PhpParser\\": "lib/PhpParser"
  6542. }
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "BSD-3-Clause"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Nikita Popov"
  6551. }
  6552. ],
  6553. "description": "A PHP parser written in PHP",
  6554. "keywords": [
  6555. "parser",
  6556. "php"
  6557. ],
  6558. "support": {
  6559. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6560. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  6561. },
  6562. "time": "2024-09-29T15:01:53+00:00"
  6563. },
  6564. {
  6565. "name": "openai-php/client",
  6566. "version": "v0.10.3",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/openai-php/client.git",
  6570. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6575. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6576. "shasum": "",
  6577. "mirrors": [
  6578. {
  6579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6580. "preferred": true
  6581. }
  6582. ]
  6583. },
  6584. "require": {
  6585. "php": "^8.1.0",
  6586. "php-http/discovery": "^1.20.0",
  6587. "php-http/multipart-stream-builder": "^1.4.2",
  6588. "psr/http-client": "^1.0.3",
  6589. "psr/http-client-implementation": "^1.0.1",
  6590. "psr/http-factory-implementation": "*",
  6591. "psr/http-message": "^1.1.0|^2.0.0"
  6592. },
  6593. "require-dev": {
  6594. "guzzlehttp/guzzle": "^7.9.2",
  6595. "guzzlehttp/psr7": "^2.7.0",
  6596. "laravel/pint": "^1.18.1",
  6597. "mockery/mockery": "^1.6.12",
  6598. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6599. "pestphp/pest": "^2.36.0|^3.5.0",
  6600. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6601. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6602. "phpstan/phpstan": "^1.12.7",
  6603. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "files": [
  6608. "src/OpenAI.php"
  6609. ],
  6610. "psr-4": {
  6611. "OpenAI\\": "src/"
  6612. }
  6613. },
  6614. "notification-url": "https://packagist.org/downloads/",
  6615. "license": [
  6616. "MIT"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Nuno Maduro",
  6621. "email": "enunomaduro@gmail.com"
  6622. },
  6623. {
  6624. "name": "Sandro Gehri"
  6625. }
  6626. ],
  6627. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6628. "keywords": [
  6629. "GPT-3",
  6630. "api",
  6631. "client",
  6632. "codex",
  6633. "dall-e",
  6634. "language",
  6635. "natural",
  6636. "openai",
  6637. "php",
  6638. "processing",
  6639. "sdk"
  6640. ],
  6641. "support": {
  6642. "issues": "https://github.com/openai-php/client/issues",
  6643. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6644. },
  6645. "funding": [
  6646. {
  6647. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6648. "type": "custom"
  6649. },
  6650. {
  6651. "url": "https://github.com/gehrisandro",
  6652. "type": "github"
  6653. },
  6654. {
  6655. "url": "https://github.com/nunomaduro",
  6656. "type": "github"
  6657. }
  6658. ],
  6659. "time": "2024-11-12T20:51:16+00:00"
  6660. },
  6661. {
  6662. "name": "paragonie/constant_time_encoding",
  6663. "version": "v3.0.0",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6667. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6672. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6673. "shasum": "",
  6674. "mirrors": [
  6675. {
  6676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6677. "preferred": true
  6678. }
  6679. ]
  6680. },
  6681. "require": {
  6682. "php": "^8"
  6683. },
  6684. "require-dev": {
  6685. "phpunit/phpunit": "^9",
  6686. "vimeo/psalm": "^4|^5"
  6687. },
  6688. "type": "library",
  6689. "autoload": {
  6690. "psr-4": {
  6691. "ParagonIE\\ConstantTime\\": "src/"
  6692. }
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Paragon Initiative Enterprises",
  6701. "email": "security@paragonie.com",
  6702. "homepage": "https://paragonie.com",
  6703. "role": "Maintainer"
  6704. },
  6705. {
  6706. "name": "Steve 'Sc00bz' Thomas",
  6707. "email": "steve@tobtu.com",
  6708. "homepage": "https://www.tobtu.com",
  6709. "role": "Original Developer"
  6710. }
  6711. ],
  6712. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6713. "keywords": [
  6714. "base16",
  6715. "base32",
  6716. "base32_decode",
  6717. "base32_encode",
  6718. "base64",
  6719. "base64_decode",
  6720. "base64_encode",
  6721. "bin2hex",
  6722. "encoding",
  6723. "hex",
  6724. "hex2bin",
  6725. "rfc4648"
  6726. ],
  6727. "support": {
  6728. "email": "info@paragonie.com",
  6729. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6730. "source": "https://github.com/paragonie/constant_time_encoding"
  6731. },
  6732. "time": "2024-05-08T12:36:18+00:00"
  6733. },
  6734. {
  6735. "name": "paragonie/random_compat",
  6736. "version": "v9.99.100",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/paragonie/random_compat.git",
  6740. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6745. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6746. "shasum": "",
  6747. "mirrors": [
  6748. {
  6749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6750. "preferred": true
  6751. }
  6752. ]
  6753. },
  6754. "require": {
  6755. "php": ">= 7"
  6756. },
  6757. "require-dev": {
  6758. "phpunit/phpunit": "4.*|5.*",
  6759. "vimeo/psalm": "^1"
  6760. },
  6761. "suggest": {
  6762. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6763. },
  6764. "type": "library",
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "MIT"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Paragon Initiative Enterprises",
  6772. "email": "security@paragonie.com",
  6773. "homepage": "https://paragonie.com"
  6774. }
  6775. ],
  6776. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6777. "keywords": [
  6778. "csprng",
  6779. "polyfill",
  6780. "pseudorandom",
  6781. "random"
  6782. ],
  6783. "support": {
  6784. "email": "info@paragonie.com",
  6785. "issues": "https://github.com/paragonie/random_compat/issues",
  6786. "source": "https://github.com/paragonie/random_compat"
  6787. },
  6788. "time": "2020-10-15T08:29:30+00:00"
  6789. },
  6790. {
  6791. "name": "php-amqplib/php-amqplib",
  6792. "version": "v3.6.1",
  6793. "source": {
  6794. "type": "git",
  6795. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6796. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  6797. },
  6798. "dist": {
  6799. "type": "zip",
  6800. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6801. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6802. "shasum": "",
  6803. "mirrors": [
  6804. {
  6805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6806. "preferred": true
  6807. }
  6808. ]
  6809. },
  6810. "require": {
  6811. "ext-mbstring": "*",
  6812. "ext-sockets": "*",
  6813. "php": "^7.2||^8.0",
  6814. "phpseclib/phpseclib": "^2.0|^3.0"
  6815. },
  6816. "conflict": {
  6817. "php": "7.4.0 - 7.4.1"
  6818. },
  6819. "replace": {
  6820. "videlalvaro/php-amqplib": "self.version"
  6821. },
  6822. "require-dev": {
  6823. "ext-curl": "*",
  6824. "nategood/httpful": "^0.2.20",
  6825. "phpunit/phpunit": "^7.5|^9.5",
  6826. "squizlabs/php_codesniffer": "^3.6"
  6827. },
  6828. "type": "library",
  6829. "extra": {
  6830. "branch-alias": {
  6831. "dev-master": "3.0-dev"
  6832. }
  6833. },
  6834. "autoload": {
  6835. "psr-4": {
  6836. "PhpAmqpLib\\": "PhpAmqpLib/"
  6837. }
  6838. },
  6839. "notification-url": "https://packagist.org/downloads/",
  6840. "license": [
  6841. "LGPL-2.1-or-later"
  6842. ],
  6843. "authors": [
  6844. {
  6845. "name": "Alvaro Videla",
  6846. "role": "Original Maintainer"
  6847. },
  6848. {
  6849. "name": "Raúl Araya",
  6850. "email": "nubeiro@gmail.com",
  6851. "role": "Maintainer"
  6852. },
  6853. {
  6854. "name": "Luke Bakken",
  6855. "email": "luke@bakken.io",
  6856. "role": "Maintainer"
  6857. },
  6858. {
  6859. "name": "Ramūnas Dronga",
  6860. "email": "github@ramuno.lt",
  6861. "role": "Maintainer"
  6862. }
  6863. ],
  6864. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6865. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6866. "keywords": [
  6867. "message",
  6868. "queue",
  6869. "rabbitmq"
  6870. ],
  6871. "support": {
  6872. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6873. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  6874. },
  6875. "time": "2024-02-07T17:21:26+00:00"
  6876. },
  6877. {
  6878. "name": "php-di/phpdoc-reader",
  6879. "version": "2.2.1",
  6880. "source": {
  6881. "type": "git",
  6882. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6883. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6884. },
  6885. "dist": {
  6886. "type": "zip",
  6887. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6888. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6889. "shasum": "",
  6890. "mirrors": [
  6891. {
  6892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6893. "preferred": true
  6894. }
  6895. ]
  6896. },
  6897. "require": {
  6898. "php": ">=7.2.0"
  6899. },
  6900. "require-dev": {
  6901. "mnapoli/hard-mode": "~0.3.0",
  6902. "phpunit/phpunit": "^8.5|^9.0"
  6903. },
  6904. "type": "library",
  6905. "autoload": {
  6906. "psr-4": {
  6907. "PhpDocReader\\": "src/PhpDocReader"
  6908. }
  6909. },
  6910. "notification-url": "https://packagist.org/downloads/",
  6911. "license": [
  6912. "MIT"
  6913. ],
  6914. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6915. "keywords": [
  6916. "phpdoc",
  6917. "reflection"
  6918. ],
  6919. "support": {
  6920. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6921. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6922. },
  6923. "time": "2020-10-12T12:39:22+00:00"
  6924. },
  6925. {
  6926. "name": "php-http/discovery",
  6927. "version": "1.20.0",
  6928. "source": {
  6929. "type": "git",
  6930. "url": "https://github.com/php-http/discovery.git",
  6931. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6932. },
  6933. "dist": {
  6934. "type": "zip",
  6935. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6936. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6937. "shasum": "",
  6938. "mirrors": [
  6939. {
  6940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6941. "preferred": true
  6942. }
  6943. ]
  6944. },
  6945. "require": {
  6946. "composer-plugin-api": "^1.0|^2.0",
  6947. "php": "^7.1 || ^8.0"
  6948. },
  6949. "conflict": {
  6950. "nyholm/psr7": "<1.0",
  6951. "zendframework/zend-diactoros": "*"
  6952. },
  6953. "provide": {
  6954. "php-http/async-client-implementation": "*",
  6955. "php-http/client-implementation": "*",
  6956. "psr/http-client-implementation": "*",
  6957. "psr/http-factory-implementation": "*",
  6958. "psr/http-message-implementation": "*"
  6959. },
  6960. "require-dev": {
  6961. "composer/composer": "^1.0.2|^2.0",
  6962. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6963. "php-http/httplug": "^1.0 || ^2.0",
  6964. "php-http/message-factory": "^1.0",
  6965. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6966. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6967. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6968. },
  6969. "type": "composer-plugin",
  6970. "extra": {
  6971. "class": "Http\\Discovery\\Composer\\Plugin",
  6972. "plugin-optional": true
  6973. },
  6974. "autoload": {
  6975. "psr-4": {
  6976. "Http\\Discovery\\": "src/"
  6977. },
  6978. "exclude-from-classmap": [
  6979. "src/Composer/Plugin.php"
  6980. ]
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "Márk Sági-Kazár",
  6989. "email": "mark.sagikazar@gmail.com"
  6990. }
  6991. ],
  6992. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6993. "homepage": "http://php-http.org",
  6994. "keywords": [
  6995. "adapter",
  6996. "client",
  6997. "discovery",
  6998. "factory",
  6999. "http",
  7000. "message",
  7001. "psr17",
  7002. "psr7"
  7003. ],
  7004. "support": {
  7005. "issues": "https://github.com/php-http/discovery/issues",
  7006. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  7007. },
  7008. "time": "2024-10-02T11:20:13+00:00"
  7009. },
  7010. {
  7011. "name": "php-http/multipart-stream-builder",
  7012. "version": "1.x-dev",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://github.com/php-http/multipart-stream-builder.git",
  7016. "reference": "afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7",
  7021. "reference": "afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7",
  7022. "shasum": "",
  7023. "mirrors": [
  7024. {
  7025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7026. "preferred": true
  7027. }
  7028. ]
  7029. },
  7030. "require": {
  7031. "php": "^7.1 || ^8.0",
  7032. "php-http/discovery": "^1.15",
  7033. "psr/http-factory-implementation": "^1.0"
  7034. },
  7035. "require-dev": {
  7036. "nyholm/psr7": "^1.0",
  7037. "php-http/message": "^1.5",
  7038. "php-http/message-factory": "^1.0.2",
  7039. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  7040. },
  7041. "default-branch": true,
  7042. "type": "library",
  7043. "autoload": {
  7044. "psr-4": {
  7045. "Http\\Message\\MultipartStream\\": "src/"
  7046. }
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Tobias Nyholm",
  7055. "email": "tobias.nyholm@gmail.com"
  7056. }
  7057. ],
  7058. "description": "A builder class that help you create a multipart stream",
  7059. "homepage": "http://php-http.org",
  7060. "keywords": [
  7061. "factory",
  7062. "http",
  7063. "message",
  7064. "multipart stream",
  7065. "stream"
  7066. ],
  7067. "support": {
  7068. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  7069. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.x"
  7070. },
  7071. "time": "2024-10-02T11:51:28+00:00"
  7072. },
  7073. {
  7074. "name": "phper666/jwt-auth",
  7075. "version": "v4.0.11",
  7076. "source": {
  7077. "type": "git",
  7078. "url": "https://github.com/phper666/jwt-auth.git",
  7079. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  7080. },
  7081. "dist": {
  7082. "type": "zip",
  7083. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  7084. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  7085. "shasum": "",
  7086. "mirrors": [
  7087. {
  7088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7089. "preferred": true
  7090. }
  7091. ]
  7092. },
  7093. "require": {
  7094. "ext-swoole": ">=4.4",
  7095. "lcobucci/jwt": "4.1.5",
  7096. "nesbot/carbon": "^1.0 || ^2.0",
  7097. "php": ">=7.4"
  7098. },
  7099. "suggest": {
  7100. "hyperf/cache": "required hyperf/cache ~2.2.0",
  7101. "hyperf/command": "required hyperf/command ~2.2.0",
  7102. "hyperf/config": "required hyperf/config ~2.2.0",
  7103. "hyperf/di": "required hyperf/di ~2.2.0"
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "hyperf": {
  7108. "config": "Phper666\\JWTAuth\\ConfigProvider"
  7109. }
  7110. },
  7111. "autoload": {
  7112. "files": [
  7113. "src/Functions.php"
  7114. ],
  7115. "psr-4": {
  7116. "Phper666\\JWTAuth\\": "src/"
  7117. }
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "Li Yuzhao",
  7126. "email": "562405704@qq.com",
  7127. "homepage": "https://github.com/phper666/jwt-auth",
  7128. "role": "Developer"
  7129. }
  7130. ],
  7131. "description": "jwt-auth Component",
  7132. "keywords": [
  7133. "hyperf",
  7134. "php"
  7135. ],
  7136. "support": {
  7137. "issues": "https://github.com/phper666/jwt-auth/issues",
  7138. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  7139. },
  7140. "time": "2024-02-02T13:24:54+00:00"
  7141. },
  7142. {
  7143. "name": "phpoption/phpoption",
  7144. "version": "1.9.3",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://github.com/schmittjoh/php-option.git",
  7148. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7153. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7154. "shasum": "",
  7155. "mirrors": [
  7156. {
  7157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7158. "preferred": true
  7159. }
  7160. ]
  7161. },
  7162. "require": {
  7163. "php": "^7.2.5 || ^8.0"
  7164. },
  7165. "require-dev": {
  7166. "bamarni/composer-bin-plugin": "^1.8.2",
  7167. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  7168. },
  7169. "type": "library",
  7170. "extra": {
  7171. "bamarni-bin": {
  7172. "bin-links": true,
  7173. "forward-command": false
  7174. },
  7175. "branch-alias": {
  7176. "dev-master": "1.9-dev"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "PhpOption\\": "src/PhpOption/"
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "Apache-2.0"
  7187. ],
  7188. "authors": [
  7189. {
  7190. "name": "Johannes M. Schmitt",
  7191. "email": "schmittjoh@gmail.com",
  7192. "homepage": "https://github.com/schmittjoh"
  7193. },
  7194. {
  7195. "name": "Graham Campbell",
  7196. "email": "hello@gjcampbell.co.uk",
  7197. "homepage": "https://github.com/GrahamCampbell"
  7198. }
  7199. ],
  7200. "description": "Option Type for PHP",
  7201. "keywords": [
  7202. "language",
  7203. "option",
  7204. "php",
  7205. "type"
  7206. ],
  7207. "support": {
  7208. "issues": "https://github.com/schmittjoh/php-option/issues",
  7209. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  7210. },
  7211. "funding": [
  7212. {
  7213. "url": "https://github.com/GrahamCampbell",
  7214. "type": "github"
  7215. },
  7216. {
  7217. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  7218. "type": "tidelift"
  7219. }
  7220. ],
  7221. "time": "2024-07-20T21:41:07+00:00"
  7222. },
  7223. {
  7224. "name": "phpseclib/phpseclib",
  7225. "version": "3.0.43",
  7226. "source": {
  7227. "type": "git",
  7228. "url": "https://github.com/phpseclib/phpseclib.git",
  7229. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  7230. },
  7231. "dist": {
  7232. "type": "zip",
  7233. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  7234. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  7235. "shasum": "",
  7236. "mirrors": [
  7237. {
  7238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7239. "preferred": true
  7240. }
  7241. ]
  7242. },
  7243. "require": {
  7244. "paragonie/constant_time_encoding": "^1|^2|^3",
  7245. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  7246. "php": ">=5.6.1"
  7247. },
  7248. "require-dev": {
  7249. "phpunit/phpunit": "*"
  7250. },
  7251. "suggest": {
  7252. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  7253. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  7254. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  7255. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  7256. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  7257. },
  7258. "type": "library",
  7259. "autoload": {
  7260. "files": [
  7261. "phpseclib/bootstrap.php"
  7262. ],
  7263. "psr-4": {
  7264. "phpseclib3\\": "phpseclib/"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Jim Wigginton",
  7274. "email": "terrafrost@php.net",
  7275. "role": "Lead Developer"
  7276. },
  7277. {
  7278. "name": "Patrick Monnerat",
  7279. "email": "pm@datasphere.ch",
  7280. "role": "Developer"
  7281. },
  7282. {
  7283. "name": "Andreas Fischer",
  7284. "email": "bantu@phpbb.com",
  7285. "role": "Developer"
  7286. },
  7287. {
  7288. "name": "Hans-Jürgen Petrich",
  7289. "email": "petrich@tronic-media.com",
  7290. "role": "Developer"
  7291. },
  7292. {
  7293. "name": "Graham Campbell",
  7294. "email": "graham@alt-three.com",
  7295. "role": "Developer"
  7296. }
  7297. ],
  7298. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  7299. "homepage": "http://phpseclib.sourceforge.net",
  7300. "keywords": [
  7301. "BigInteger",
  7302. "aes",
  7303. "asn.1",
  7304. "asn1",
  7305. "blowfish",
  7306. "crypto",
  7307. "cryptography",
  7308. "encryption",
  7309. "rsa",
  7310. "security",
  7311. "sftp",
  7312. "signature",
  7313. "signing",
  7314. "ssh",
  7315. "twofish",
  7316. "x.509",
  7317. "x509"
  7318. ],
  7319. "support": {
  7320. "issues": "https://github.com/phpseclib/phpseclib/issues",
  7321. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  7322. },
  7323. "funding": [
  7324. {
  7325. "url": "https://github.com/terrafrost",
  7326. "type": "github"
  7327. },
  7328. {
  7329. "url": "https://www.patreon.com/phpseclib",
  7330. "type": "patreon"
  7331. },
  7332. {
  7333. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  7334. "type": "tidelift"
  7335. }
  7336. ],
  7337. "time": "2024-12-14T21:12:59+00:00"
  7338. },
  7339. {
  7340. "name": "psr/cache",
  7341. "version": "3.0.0",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/php-fig/cache.git",
  7345. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7350. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7351. "shasum": "",
  7352. "mirrors": [
  7353. {
  7354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7355. "preferred": true
  7356. }
  7357. ]
  7358. },
  7359. "require": {
  7360. "php": ">=8.0.0"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "1.0.x-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "psr-4": {
  7370. "Psr\\Cache\\": "src/"
  7371. }
  7372. },
  7373. "notification-url": "https://packagist.org/downloads/",
  7374. "license": [
  7375. "MIT"
  7376. ],
  7377. "authors": [
  7378. {
  7379. "name": "PHP-FIG",
  7380. "homepage": "https://www.php-fig.org/"
  7381. }
  7382. ],
  7383. "description": "Common interface for caching libraries",
  7384. "keywords": [
  7385. "cache",
  7386. "psr",
  7387. "psr-6"
  7388. ],
  7389. "support": {
  7390. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7391. },
  7392. "time": "2021-02-03T23:26:27+00:00"
  7393. },
  7394. {
  7395. "name": "psr/clock",
  7396. "version": "1.0.0",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/php-fig/clock.git",
  7400. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7405. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7406. "shasum": "",
  7407. "mirrors": [
  7408. {
  7409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7410. "preferred": true
  7411. }
  7412. ]
  7413. },
  7414. "require": {
  7415. "php": "^7.0 || ^8.0"
  7416. },
  7417. "type": "library",
  7418. "autoload": {
  7419. "psr-4": {
  7420. "Psr\\Clock\\": "src/"
  7421. }
  7422. },
  7423. "notification-url": "https://packagist.org/downloads/",
  7424. "license": [
  7425. "MIT"
  7426. ],
  7427. "authors": [
  7428. {
  7429. "name": "PHP-FIG",
  7430. "homepage": "https://www.php-fig.org/"
  7431. }
  7432. ],
  7433. "description": "Common interface for reading the clock.",
  7434. "homepage": "https://github.com/php-fig/clock",
  7435. "keywords": [
  7436. "clock",
  7437. "now",
  7438. "psr",
  7439. "psr-20",
  7440. "time"
  7441. ],
  7442. "support": {
  7443. "issues": "https://github.com/php-fig/clock/issues",
  7444. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  7445. },
  7446. "time": "2022-11-25T14:36:26+00:00"
  7447. },
  7448. {
  7449. "name": "psr/container",
  7450. "version": "2.0.2",
  7451. "source": {
  7452. "type": "git",
  7453. "url": "https://github.com/php-fig/container.git",
  7454. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7455. },
  7456. "dist": {
  7457. "type": "zip",
  7458. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7459. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7460. "shasum": "",
  7461. "mirrors": [
  7462. {
  7463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7464. "preferred": true
  7465. }
  7466. ]
  7467. },
  7468. "require": {
  7469. "php": ">=7.4.0"
  7470. },
  7471. "type": "library",
  7472. "extra": {
  7473. "branch-alias": {
  7474. "dev-master": "2.0.x-dev"
  7475. }
  7476. },
  7477. "autoload": {
  7478. "psr-4": {
  7479. "Psr\\Container\\": "src/"
  7480. }
  7481. },
  7482. "notification-url": "https://packagist.org/downloads/",
  7483. "license": [
  7484. "MIT"
  7485. ],
  7486. "authors": [
  7487. {
  7488. "name": "PHP-FIG",
  7489. "homepage": "https://www.php-fig.org/"
  7490. }
  7491. ],
  7492. "description": "Common Container Interface (PHP FIG PSR-11)",
  7493. "homepage": "https://github.com/php-fig/container",
  7494. "keywords": [
  7495. "PSR-11",
  7496. "container",
  7497. "container-interface",
  7498. "container-interop",
  7499. "psr"
  7500. ],
  7501. "support": {
  7502. "issues": "https://github.com/php-fig/container/issues",
  7503. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7504. },
  7505. "time": "2021-11-05T16:47:00+00:00"
  7506. },
  7507. {
  7508. "name": "psr/event-dispatcher",
  7509. "version": "1.0.0",
  7510. "source": {
  7511. "type": "git",
  7512. "url": "https://github.com/php-fig/event-dispatcher.git",
  7513. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7514. },
  7515. "dist": {
  7516. "type": "zip",
  7517. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7518. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7519. "shasum": "",
  7520. "mirrors": [
  7521. {
  7522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7523. "preferred": true
  7524. }
  7525. ]
  7526. },
  7527. "require": {
  7528. "php": ">=7.2.0"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "1.0.x-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "psr-4": {
  7538. "Psr\\EventDispatcher\\": "src/"
  7539. }
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "MIT"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "PHP-FIG",
  7548. "homepage": "http://www.php-fig.org/"
  7549. }
  7550. ],
  7551. "description": "Standard interfaces for event handling.",
  7552. "keywords": [
  7553. "events",
  7554. "psr",
  7555. "psr-14"
  7556. ],
  7557. "support": {
  7558. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7559. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7560. },
  7561. "time": "2019-01-08T18:20:26+00:00"
  7562. },
  7563. {
  7564. "name": "psr/http-client",
  7565. "version": "1.0.3",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/php-fig/http-client.git",
  7569. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7574. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7575. "shasum": "",
  7576. "mirrors": [
  7577. {
  7578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7579. "preferred": true
  7580. }
  7581. ]
  7582. },
  7583. "require": {
  7584. "php": "^7.0 || ^8.0",
  7585. "psr/http-message": "^1.0 || ^2.0"
  7586. },
  7587. "type": "library",
  7588. "extra": {
  7589. "branch-alias": {
  7590. "dev-master": "1.0.x-dev"
  7591. }
  7592. },
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Psr\\Http\\Client\\": "src/"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "PHP-FIG",
  7605. "homepage": "https://www.php-fig.org/"
  7606. }
  7607. ],
  7608. "description": "Common interface for HTTP clients",
  7609. "homepage": "https://github.com/php-fig/http-client",
  7610. "keywords": [
  7611. "http",
  7612. "http-client",
  7613. "psr",
  7614. "psr-18"
  7615. ],
  7616. "support": {
  7617. "source": "https://github.com/php-fig/http-client"
  7618. },
  7619. "time": "2023-09-23T14:17:50+00:00"
  7620. },
  7621. {
  7622. "name": "psr/http-factory",
  7623. "version": "1.0.2",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/php-fig/http-factory.git",
  7627. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7632. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7633. "shasum": "",
  7634. "mirrors": [
  7635. {
  7636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7637. "preferred": true
  7638. }
  7639. ]
  7640. },
  7641. "require": {
  7642. "php": ">=7.0.0",
  7643. "psr/http-message": "^1.0 || ^2.0"
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "branch-alias": {
  7648. "dev-master": "1.0.x-dev"
  7649. }
  7650. },
  7651. "autoload": {
  7652. "psr-4": {
  7653. "Psr\\Http\\Message\\": "src/"
  7654. }
  7655. },
  7656. "notification-url": "https://packagist.org/downloads/",
  7657. "license": [
  7658. "MIT"
  7659. ],
  7660. "authors": [
  7661. {
  7662. "name": "PHP-FIG",
  7663. "homepage": "https://www.php-fig.org/"
  7664. }
  7665. ],
  7666. "description": "Common interfaces for PSR-7 HTTP message factories",
  7667. "keywords": [
  7668. "factory",
  7669. "http",
  7670. "message",
  7671. "psr",
  7672. "psr-17",
  7673. "psr-7",
  7674. "request",
  7675. "response"
  7676. ],
  7677. "support": {
  7678. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7679. },
  7680. "time": "2023-04-10T20:10:41+00:00"
  7681. },
  7682. {
  7683. "name": "psr/http-message",
  7684. "version": "2.0",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/php-fig/http-message.git",
  7688. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7693. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7694. "shasum": "",
  7695. "mirrors": [
  7696. {
  7697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7698. "preferred": true
  7699. }
  7700. ]
  7701. },
  7702. "require": {
  7703. "php": "^7.2 || ^8.0"
  7704. },
  7705. "type": "library",
  7706. "extra": {
  7707. "branch-alias": {
  7708. "dev-master": "2.0.x-dev"
  7709. }
  7710. },
  7711. "autoload": {
  7712. "psr-4": {
  7713. "Psr\\Http\\Message\\": "src/"
  7714. }
  7715. },
  7716. "notification-url": "https://packagist.org/downloads/",
  7717. "license": [
  7718. "MIT"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "PHP-FIG",
  7723. "homepage": "https://www.php-fig.org/"
  7724. }
  7725. ],
  7726. "description": "Common interface for HTTP messages",
  7727. "homepage": "https://github.com/php-fig/http-message",
  7728. "keywords": [
  7729. "http",
  7730. "http-message",
  7731. "psr",
  7732. "psr-7",
  7733. "request",
  7734. "response"
  7735. ],
  7736. "support": {
  7737. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7738. },
  7739. "time": "2023-04-04T09:54:51+00:00"
  7740. },
  7741. {
  7742. "name": "psr/http-server-handler",
  7743. "version": "1.0.2",
  7744. "source": {
  7745. "type": "git",
  7746. "url": "https://github.com/php-fig/http-server-handler.git",
  7747. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  7748. },
  7749. "dist": {
  7750. "type": "zip",
  7751. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  7752. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  7753. "shasum": "",
  7754. "mirrors": [
  7755. {
  7756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7757. "preferred": true
  7758. }
  7759. ]
  7760. },
  7761. "require": {
  7762. "php": ">=7.0",
  7763. "psr/http-message": "^1.0 || ^2.0"
  7764. },
  7765. "type": "library",
  7766. "extra": {
  7767. "branch-alias": {
  7768. "dev-master": "1.0.x-dev"
  7769. }
  7770. },
  7771. "autoload": {
  7772. "psr-4": {
  7773. "Psr\\Http\\Server\\": "src/"
  7774. }
  7775. },
  7776. "notification-url": "https://packagist.org/downloads/",
  7777. "license": [
  7778. "MIT"
  7779. ],
  7780. "authors": [
  7781. {
  7782. "name": "PHP-FIG",
  7783. "homepage": "https://www.php-fig.org/"
  7784. }
  7785. ],
  7786. "description": "Common interface for HTTP server-side request handler",
  7787. "keywords": [
  7788. "handler",
  7789. "http",
  7790. "http-interop",
  7791. "psr",
  7792. "psr-15",
  7793. "psr-7",
  7794. "request",
  7795. "response",
  7796. "server"
  7797. ],
  7798. "support": {
  7799. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  7800. },
  7801. "time": "2023-04-10T20:06:20+00:00"
  7802. },
  7803. {
  7804. "name": "psr/http-server-middleware",
  7805. "version": "1.0.2",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/php-fig/http-server-middleware.git",
  7809. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7814. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7815. "shasum": "",
  7816. "mirrors": [
  7817. {
  7818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7819. "preferred": true
  7820. }
  7821. ]
  7822. },
  7823. "require": {
  7824. "php": ">=7.0",
  7825. "psr/http-message": "^1.0 || ^2.0",
  7826. "psr/http-server-handler": "^1.0"
  7827. },
  7828. "type": "library",
  7829. "extra": {
  7830. "branch-alias": {
  7831. "dev-master": "1.0.x-dev"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "psr-4": {
  7836. "Psr\\Http\\Server\\": "src/"
  7837. }
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "MIT"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "PHP-FIG",
  7846. "homepage": "https://www.php-fig.org/"
  7847. }
  7848. ],
  7849. "description": "Common interface for HTTP server-side middleware",
  7850. "keywords": [
  7851. "http",
  7852. "http-interop",
  7853. "middleware",
  7854. "psr",
  7855. "psr-15",
  7856. "psr-7",
  7857. "request",
  7858. "response"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7862. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7863. },
  7864. "time": "2023-04-11T06:14:47+00:00"
  7865. },
  7866. {
  7867. "name": "psr/log",
  7868. "version": "3.0.1",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/php-fig/log.git",
  7872. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  7877. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  7878. "shasum": "",
  7879. "mirrors": [
  7880. {
  7881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7882. "preferred": true
  7883. }
  7884. ]
  7885. },
  7886. "require": {
  7887. "php": ">=8.0.0"
  7888. },
  7889. "type": "library",
  7890. "extra": {
  7891. "branch-alias": {
  7892. "dev-master": "3.x-dev"
  7893. }
  7894. },
  7895. "autoload": {
  7896. "psr-4": {
  7897. "Psr\\Log\\": "src"
  7898. }
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "MIT"
  7903. ],
  7904. "authors": [
  7905. {
  7906. "name": "PHP-FIG",
  7907. "homepage": "https://www.php-fig.org/"
  7908. }
  7909. ],
  7910. "description": "Common interface for logging libraries",
  7911. "homepage": "https://github.com/php-fig/log",
  7912. "keywords": [
  7913. "log",
  7914. "psr",
  7915. "psr-3"
  7916. ],
  7917. "support": {
  7918. "source": "https://github.com/php-fig/log/tree/3.0.1"
  7919. },
  7920. "time": "2024-08-21T13:31:24+00:00"
  7921. },
  7922. {
  7923. "name": "psr/simple-cache",
  7924. "version": "3.0.0",
  7925. "source": {
  7926. "type": "git",
  7927. "url": "https://github.com/php-fig/simple-cache.git",
  7928. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7929. },
  7930. "dist": {
  7931. "type": "zip",
  7932. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7933. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7934. "shasum": "",
  7935. "mirrors": [
  7936. {
  7937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7938. "preferred": true
  7939. }
  7940. ]
  7941. },
  7942. "require": {
  7943. "php": ">=8.0.0"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "branch-alias": {
  7948. "dev-master": "3.0.x-dev"
  7949. }
  7950. },
  7951. "autoload": {
  7952. "psr-4": {
  7953. "Psr\\SimpleCache\\": "src/"
  7954. }
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "MIT"
  7959. ],
  7960. "authors": [
  7961. {
  7962. "name": "PHP-FIG",
  7963. "homepage": "https://www.php-fig.org/"
  7964. }
  7965. ],
  7966. "description": "Common interfaces for simple caching",
  7967. "keywords": [
  7968. "cache",
  7969. "caching",
  7970. "psr",
  7971. "psr-16",
  7972. "simple-cache"
  7973. ],
  7974. "support": {
  7975. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7976. },
  7977. "time": "2021-10-29T13:26:27+00:00"
  7978. },
  7979. {
  7980. "name": "ralouphie/getallheaders",
  7981. "version": "3.0.3",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/ralouphie/getallheaders.git",
  7985. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7990. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7991. "shasum": "",
  7992. "mirrors": [
  7993. {
  7994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7995. "preferred": true
  7996. }
  7997. ]
  7998. },
  7999. "require": {
  8000. "php": ">=5.6"
  8001. },
  8002. "require-dev": {
  8003. "php-coveralls/php-coveralls": "^2.1",
  8004. "phpunit/phpunit": "^5 || ^6.5"
  8005. },
  8006. "type": "library",
  8007. "autoload": {
  8008. "files": [
  8009. "src/getallheaders.php"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Ralph Khattar",
  8019. "email": "ralph.khattar@gmail.com"
  8020. }
  8021. ],
  8022. "description": "A polyfill for getallheaders.",
  8023. "support": {
  8024. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8025. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8026. },
  8027. "time": "2019-03-08T08:55:37+00:00"
  8028. },
  8029. {
  8030. "name": "stella-maris/clock",
  8031. "version": "0.1.7",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/stella-maris-solutions/clock.git",
  8035. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  8040. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  8041. "shasum": "",
  8042. "mirrors": [
  8043. {
  8044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8045. "preferred": true
  8046. }
  8047. ]
  8048. },
  8049. "require": {
  8050. "php": "^7.0|^8.0",
  8051. "psr/clock": "^1.0"
  8052. },
  8053. "type": "library",
  8054. "autoload": {
  8055. "psr-4": {
  8056. "StellaMaris\\Clock\\": "src"
  8057. }
  8058. },
  8059. "notification-url": "https://packagist.org/downloads/",
  8060. "license": [
  8061. "MIT"
  8062. ],
  8063. "authors": [
  8064. {
  8065. "name": "Andreas Heigl",
  8066. "role": "Maintainer"
  8067. }
  8068. ],
  8069. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  8070. "homepage": "https://gitlab.com/stella-maris/clock",
  8071. "keywords": [
  8072. "clock",
  8073. "datetime",
  8074. "point in time",
  8075. "psr20"
  8076. ],
  8077. "support": {
  8078. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  8079. },
  8080. "time": "2022-11-25T16:15:06+00:00"
  8081. },
  8082. {
  8083. "name": "swow/psr7-plus",
  8084. "version": "v1.1.2",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/swow/psr7-plus.git",
  8088. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  8093. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  8094. "shasum": "",
  8095. "mirrors": [
  8096. {
  8097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8098. "preferred": true
  8099. }
  8100. ]
  8101. },
  8102. "require": {
  8103. "php": ">=8.0",
  8104. "psr/http-client": "^1.0",
  8105. "psr/http-factory": "^1.0",
  8106. "psr/http-message": "^1.1|^2.0"
  8107. },
  8108. "type": "library",
  8109. "autoload": {
  8110. "psr-4": {
  8111. "Swow\\Psr7\\Message\\": "src/Message/"
  8112. }
  8113. },
  8114. "notification-url": "https://packagist.org/downloads/",
  8115. "license": [
  8116. "Apache-2.0"
  8117. ],
  8118. "authors": [
  8119. {
  8120. "name": "twose",
  8121. "email": "twosee@php.net"
  8122. }
  8123. ],
  8124. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  8125. "keywords": [
  8126. "http",
  8127. "psr17",
  8128. "psr7",
  8129. "swow",
  8130. "websocket"
  8131. ],
  8132. "support": {
  8133. "issues": "https://github.com/swow/swow",
  8134. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  8135. },
  8136. "time": "2023-06-15T09:18:11+00:00"
  8137. },
  8138. {
  8139. "name": "symfony/console",
  8140. "version": "v6.4.21",
  8141. "source": {
  8142. "type": "git",
  8143. "url": "https://github.com/symfony/console.git",
  8144. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
  8145. },
  8146. "dist": {
  8147. "type": "zip",
  8148. "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  8149. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  8150. "shasum": "",
  8151. "mirrors": [
  8152. {
  8153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8154. "preferred": true
  8155. }
  8156. ]
  8157. },
  8158. "require": {
  8159. "php": ">=8.1",
  8160. "symfony/deprecation-contracts": "^2.5|^3",
  8161. "symfony/polyfill-mbstring": "~1.0",
  8162. "symfony/service-contracts": "^2.5|^3",
  8163. "symfony/string": "^5.4|^6.0|^7.0"
  8164. },
  8165. "conflict": {
  8166. "symfony/dependency-injection": "<5.4",
  8167. "symfony/dotenv": "<5.4",
  8168. "symfony/event-dispatcher": "<5.4",
  8169. "symfony/lock": "<5.4",
  8170. "symfony/process": "<5.4"
  8171. },
  8172. "provide": {
  8173. "psr/log-implementation": "1.0|2.0|3.0"
  8174. },
  8175. "require-dev": {
  8176. "psr/log": "^1|^2|^3",
  8177. "symfony/config": "^5.4|^6.0|^7.0",
  8178. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8179. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8180. "symfony/http-foundation": "^6.4|^7.0",
  8181. "symfony/http-kernel": "^6.4|^7.0",
  8182. "symfony/lock": "^5.4|^6.0|^7.0",
  8183. "symfony/messenger": "^5.4|^6.0|^7.0",
  8184. "symfony/process": "^5.4|^6.0|^7.0",
  8185. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8186. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8187. },
  8188. "type": "library",
  8189. "autoload": {
  8190. "psr-4": {
  8191. "Symfony\\Component\\Console\\": ""
  8192. },
  8193. "exclude-from-classmap": [
  8194. "/Tests/"
  8195. ]
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "Fabien Potencier",
  8204. "email": "fabien@symfony.com"
  8205. },
  8206. {
  8207. "name": "Symfony Community",
  8208. "homepage": "https://symfony.com/contributors"
  8209. }
  8210. ],
  8211. "description": "Eases the creation of beautiful and testable command line interfaces",
  8212. "homepage": "https://symfony.com",
  8213. "keywords": [
  8214. "cli",
  8215. "command-line",
  8216. "console",
  8217. "terminal"
  8218. ],
  8219. "support": {
  8220. "source": "https://github.com/symfony/console/tree/v6.4.21"
  8221. },
  8222. "funding": [
  8223. {
  8224. "url": "https://symfony.com/sponsor",
  8225. "type": "custom"
  8226. },
  8227. {
  8228. "url": "https://github.com/fabpot",
  8229. "type": "github"
  8230. },
  8231. {
  8232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8233. "type": "tidelift"
  8234. }
  8235. ],
  8236. "time": "2025-04-07T15:42:41+00:00"
  8237. },
  8238. {
  8239. "name": "symfony/deprecation-contracts",
  8240. "version": "v3.5.1",
  8241. "source": {
  8242. "type": "git",
  8243. "url": "https://github.com/symfony/deprecation-contracts.git",
  8244. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  8245. },
  8246. "dist": {
  8247. "type": "zip",
  8248. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  8249. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  8250. "shasum": "",
  8251. "mirrors": [
  8252. {
  8253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8254. "preferred": true
  8255. }
  8256. ]
  8257. },
  8258. "require": {
  8259. "php": ">=8.1"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "thanks": {
  8264. "url": "https://github.com/symfony/contracts",
  8265. "name": "symfony/contracts"
  8266. },
  8267. "branch-alias": {
  8268. "dev-main": "3.5-dev"
  8269. }
  8270. },
  8271. "autoload": {
  8272. "files": [
  8273. "function.php"
  8274. ]
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "Nicolas Grekas",
  8283. "email": "p@tchwork.com"
  8284. },
  8285. {
  8286. "name": "Symfony Community",
  8287. "homepage": "https://symfony.com/contributors"
  8288. }
  8289. ],
  8290. "description": "A generic function and convention to trigger deprecation notices",
  8291. "homepage": "https://symfony.com",
  8292. "support": {
  8293. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://symfony.com/sponsor",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/fabpot",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8306. "type": "tidelift"
  8307. }
  8308. ],
  8309. "time": "2024-09-25T14:20:29+00:00"
  8310. },
  8311. {
  8312. "name": "symfony/finder",
  8313. "version": "v6.4.17",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/symfony/finder.git",
  8317. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  8322. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  8323. "shasum": "",
  8324. "mirrors": [
  8325. {
  8326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8327. "preferred": true
  8328. }
  8329. ]
  8330. },
  8331. "require": {
  8332. "php": ">=8.1"
  8333. },
  8334. "require-dev": {
  8335. "symfony/filesystem": "^6.0|^7.0"
  8336. },
  8337. "type": "library",
  8338. "autoload": {
  8339. "psr-4": {
  8340. "Symfony\\Component\\Finder\\": ""
  8341. },
  8342. "exclude-from-classmap": [
  8343. "/Tests/"
  8344. ]
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "MIT"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Fabien Potencier",
  8353. "email": "fabien@symfony.com"
  8354. },
  8355. {
  8356. "name": "Symfony Community",
  8357. "homepage": "https://symfony.com/contributors"
  8358. }
  8359. ],
  8360. "description": "Finds files and directories via an intuitive fluent interface",
  8361. "homepage": "https://symfony.com",
  8362. "support": {
  8363. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  8364. },
  8365. "funding": [
  8366. {
  8367. "url": "https://symfony.com/sponsor",
  8368. "type": "custom"
  8369. },
  8370. {
  8371. "url": "https://github.com/fabpot",
  8372. "type": "github"
  8373. },
  8374. {
  8375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8376. "type": "tidelift"
  8377. }
  8378. ],
  8379. "time": "2024-12-29T13:51:37+00:00"
  8380. },
  8381. {
  8382. "name": "symfony/polyfill-ctype",
  8383. "version": "v1.31.0",
  8384. "source": {
  8385. "type": "git",
  8386. "url": "https://github.com/symfony/polyfill-ctype.git",
  8387. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8388. },
  8389. "dist": {
  8390. "type": "zip",
  8391. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8392. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8393. "shasum": "",
  8394. "mirrors": [
  8395. {
  8396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8397. "preferred": true
  8398. }
  8399. ]
  8400. },
  8401. "require": {
  8402. "php": ">=7.2"
  8403. },
  8404. "provide": {
  8405. "ext-ctype": "*"
  8406. },
  8407. "suggest": {
  8408. "ext-ctype": "For best performance"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "thanks": {
  8413. "url": "https://github.com/symfony/polyfill",
  8414. "name": "symfony/polyfill"
  8415. }
  8416. },
  8417. "autoload": {
  8418. "files": [
  8419. "bootstrap.php"
  8420. ],
  8421. "psr-4": {
  8422. "Symfony\\Polyfill\\Ctype\\": ""
  8423. }
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Gert de Pagter",
  8432. "email": "BackEndTea@gmail.com"
  8433. },
  8434. {
  8435. "name": "Symfony Community",
  8436. "homepage": "https://symfony.com/contributors"
  8437. }
  8438. ],
  8439. "description": "Symfony polyfill for ctype functions",
  8440. "homepage": "https://symfony.com",
  8441. "keywords": [
  8442. "compatibility",
  8443. "ctype",
  8444. "polyfill",
  8445. "portable"
  8446. ],
  8447. "support": {
  8448. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  8449. },
  8450. "funding": [
  8451. {
  8452. "url": "https://symfony.com/sponsor",
  8453. "type": "custom"
  8454. },
  8455. {
  8456. "url": "https://github.com/fabpot",
  8457. "type": "github"
  8458. },
  8459. {
  8460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8461. "type": "tidelift"
  8462. }
  8463. ],
  8464. "time": "2024-09-09T11:45:10+00:00"
  8465. },
  8466. {
  8467. "name": "symfony/polyfill-intl-grapheme",
  8468. "version": "v1.31.0",
  8469. "source": {
  8470. "type": "git",
  8471. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8472. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  8473. },
  8474. "dist": {
  8475. "type": "zip",
  8476. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8477. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8478. "shasum": "",
  8479. "mirrors": [
  8480. {
  8481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8482. "preferred": true
  8483. }
  8484. ]
  8485. },
  8486. "require": {
  8487. "php": ">=7.2"
  8488. },
  8489. "suggest": {
  8490. "ext-intl": "For best performance"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "thanks": {
  8495. "url": "https://github.com/symfony/polyfill",
  8496. "name": "symfony/polyfill"
  8497. }
  8498. },
  8499. "autoload": {
  8500. "files": [
  8501. "bootstrap.php"
  8502. ],
  8503. "psr-4": {
  8504. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8505. }
  8506. },
  8507. "notification-url": "https://packagist.org/downloads/",
  8508. "license": [
  8509. "MIT"
  8510. ],
  8511. "authors": [
  8512. {
  8513. "name": "Nicolas Grekas",
  8514. "email": "p@tchwork.com"
  8515. },
  8516. {
  8517. "name": "Symfony Community",
  8518. "homepage": "https://symfony.com/contributors"
  8519. }
  8520. ],
  8521. "description": "Symfony polyfill for intl's grapheme_* functions",
  8522. "homepage": "https://symfony.com",
  8523. "keywords": [
  8524. "compatibility",
  8525. "grapheme",
  8526. "intl",
  8527. "polyfill",
  8528. "portable",
  8529. "shim"
  8530. ],
  8531. "support": {
  8532. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  8533. },
  8534. "funding": [
  8535. {
  8536. "url": "https://symfony.com/sponsor",
  8537. "type": "custom"
  8538. },
  8539. {
  8540. "url": "https://github.com/fabpot",
  8541. "type": "github"
  8542. },
  8543. {
  8544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8545. "type": "tidelift"
  8546. }
  8547. ],
  8548. "time": "2024-09-09T11:45:10+00:00"
  8549. },
  8550. {
  8551. "name": "symfony/polyfill-intl-idn",
  8552. "version": "v1.31.0",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8556. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  8561. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  8562. "shasum": "",
  8563. "mirrors": [
  8564. {
  8565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8566. "preferred": true
  8567. }
  8568. ]
  8569. },
  8570. "require": {
  8571. "php": ">=7.2",
  8572. "symfony/polyfill-intl-normalizer": "^1.10"
  8573. },
  8574. "suggest": {
  8575. "ext-intl": "For best performance"
  8576. },
  8577. "type": "library",
  8578. "extra": {
  8579. "thanks": {
  8580. "url": "https://github.com/symfony/polyfill",
  8581. "name": "symfony/polyfill"
  8582. }
  8583. },
  8584. "autoload": {
  8585. "files": [
  8586. "bootstrap.php"
  8587. ],
  8588. "psr-4": {
  8589. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8590. }
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "MIT"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Laurent Bassin",
  8599. "email": "laurent@bassin.info"
  8600. },
  8601. {
  8602. "name": "Trevor Rowbotham",
  8603. "email": "trevor.rowbotham@pm.me"
  8604. },
  8605. {
  8606. "name": "Symfony Community",
  8607. "homepage": "https://symfony.com/contributors"
  8608. }
  8609. ],
  8610. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8611. "homepage": "https://symfony.com",
  8612. "keywords": [
  8613. "compatibility",
  8614. "idn",
  8615. "intl",
  8616. "polyfill",
  8617. "portable",
  8618. "shim"
  8619. ],
  8620. "support": {
  8621. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://symfony.com/sponsor",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://github.com/fabpot",
  8630. "type": "github"
  8631. },
  8632. {
  8633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8634. "type": "tidelift"
  8635. }
  8636. ],
  8637. "time": "2024-09-09T11:45:10+00:00"
  8638. },
  8639. {
  8640. "name": "symfony/polyfill-intl-normalizer",
  8641. "version": "v1.31.0",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8645. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8650. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8651. "shasum": "",
  8652. "mirrors": [
  8653. {
  8654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8655. "preferred": true
  8656. }
  8657. ]
  8658. },
  8659. "require": {
  8660. "php": ">=7.2"
  8661. },
  8662. "suggest": {
  8663. "ext-intl": "For best performance"
  8664. },
  8665. "type": "library",
  8666. "extra": {
  8667. "thanks": {
  8668. "url": "https://github.com/symfony/polyfill",
  8669. "name": "symfony/polyfill"
  8670. }
  8671. },
  8672. "autoload": {
  8673. "files": [
  8674. "bootstrap.php"
  8675. ],
  8676. "psr-4": {
  8677. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8678. },
  8679. "classmap": [
  8680. "Resources/stubs"
  8681. ]
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "MIT"
  8686. ],
  8687. "authors": [
  8688. {
  8689. "name": "Nicolas Grekas",
  8690. "email": "p@tchwork.com"
  8691. },
  8692. {
  8693. "name": "Symfony Community",
  8694. "homepage": "https://symfony.com/contributors"
  8695. }
  8696. ],
  8697. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8698. "homepage": "https://symfony.com",
  8699. "keywords": [
  8700. "compatibility",
  8701. "intl",
  8702. "normalizer",
  8703. "polyfill",
  8704. "portable",
  8705. "shim"
  8706. ],
  8707. "support": {
  8708. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8709. },
  8710. "funding": [
  8711. {
  8712. "url": "https://symfony.com/sponsor",
  8713. "type": "custom"
  8714. },
  8715. {
  8716. "url": "https://github.com/fabpot",
  8717. "type": "github"
  8718. },
  8719. {
  8720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8721. "type": "tidelift"
  8722. }
  8723. ],
  8724. "time": "2024-09-09T11:45:10+00:00"
  8725. },
  8726. {
  8727. "name": "symfony/polyfill-mbstring",
  8728. "version": "v1.31.0",
  8729. "source": {
  8730. "type": "git",
  8731. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8732. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8733. },
  8734. "dist": {
  8735. "type": "zip",
  8736. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8737. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8738. "shasum": "",
  8739. "mirrors": [
  8740. {
  8741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8742. "preferred": true
  8743. }
  8744. ]
  8745. },
  8746. "require": {
  8747. "php": ">=7.2"
  8748. },
  8749. "provide": {
  8750. "ext-mbstring": "*"
  8751. },
  8752. "suggest": {
  8753. "ext-mbstring": "For best performance"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "thanks": {
  8758. "name": "symfony/polyfill",
  8759. "url": "https://github.com/symfony/polyfill"
  8760. }
  8761. },
  8762. "autoload": {
  8763. "files": [
  8764. "bootstrap.php"
  8765. ],
  8766. "psr-4": {
  8767. "Symfony\\Polyfill\\Mbstring\\": ""
  8768. }
  8769. },
  8770. "notification-url": "https://packagist.org/downloads/",
  8771. "license": [
  8772. "MIT"
  8773. ],
  8774. "authors": [
  8775. {
  8776. "name": "Nicolas Grekas",
  8777. "email": "p@tchwork.com"
  8778. },
  8779. {
  8780. "name": "Symfony Community",
  8781. "homepage": "https://symfony.com/contributors"
  8782. }
  8783. ],
  8784. "description": "Symfony polyfill for the Mbstring extension",
  8785. "homepage": "https://symfony.com",
  8786. "keywords": [
  8787. "compatibility",
  8788. "mbstring",
  8789. "polyfill",
  8790. "portable",
  8791. "shim"
  8792. ],
  8793. "support": {
  8794. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://symfony.com/sponsor",
  8799. "type": "custom"
  8800. },
  8801. {
  8802. "url": "https://github.com/fabpot",
  8803. "type": "github"
  8804. },
  8805. {
  8806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8807. "type": "tidelift"
  8808. }
  8809. ],
  8810. "time": "2024-09-09T11:45:10+00:00"
  8811. },
  8812. {
  8813. "name": "symfony/polyfill-php80",
  8814. "version": "v1.31.0",
  8815. "source": {
  8816. "type": "git",
  8817. "url": "https://github.com/symfony/polyfill-php80.git",
  8818. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8819. },
  8820. "dist": {
  8821. "type": "zip",
  8822. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8823. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8824. "shasum": "",
  8825. "mirrors": [
  8826. {
  8827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8828. "preferred": true
  8829. }
  8830. ]
  8831. },
  8832. "require": {
  8833. "php": ">=7.2"
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "thanks": {
  8838. "url": "https://github.com/symfony/polyfill",
  8839. "name": "symfony/polyfill"
  8840. }
  8841. },
  8842. "autoload": {
  8843. "files": [
  8844. "bootstrap.php"
  8845. ],
  8846. "psr-4": {
  8847. "Symfony\\Polyfill\\Php80\\": ""
  8848. },
  8849. "classmap": [
  8850. "Resources/stubs"
  8851. ]
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Ion Bazan",
  8860. "email": "ion.bazan@gmail.com"
  8861. },
  8862. {
  8863. "name": "Nicolas Grekas",
  8864. "email": "p@tchwork.com"
  8865. },
  8866. {
  8867. "name": "Symfony Community",
  8868. "homepage": "https://symfony.com/contributors"
  8869. }
  8870. ],
  8871. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8872. "homepage": "https://symfony.com",
  8873. "keywords": [
  8874. "compatibility",
  8875. "polyfill",
  8876. "portable",
  8877. "shim"
  8878. ],
  8879. "support": {
  8880. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8881. },
  8882. "funding": [
  8883. {
  8884. "url": "https://symfony.com/sponsor",
  8885. "type": "custom"
  8886. },
  8887. {
  8888. "url": "https://github.com/fabpot",
  8889. "type": "github"
  8890. },
  8891. {
  8892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8893. "type": "tidelift"
  8894. }
  8895. ],
  8896. "time": "2024-09-09T11:45:10+00:00"
  8897. },
  8898. {
  8899. "name": "symfony/service-contracts",
  8900. "version": "v3.5.1",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/symfony/service-contracts.git",
  8904. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8909. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8910. "shasum": "",
  8911. "mirrors": [
  8912. {
  8913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8914. "preferred": true
  8915. }
  8916. ]
  8917. },
  8918. "require": {
  8919. "php": ">=8.1",
  8920. "psr/container": "^1.1|^2.0",
  8921. "symfony/deprecation-contracts": "^2.5|^3"
  8922. },
  8923. "conflict": {
  8924. "ext-psr": "<1.1|>=2"
  8925. },
  8926. "type": "library",
  8927. "extra": {
  8928. "thanks": {
  8929. "url": "https://github.com/symfony/contracts",
  8930. "name": "symfony/contracts"
  8931. },
  8932. "branch-alias": {
  8933. "dev-main": "3.5-dev"
  8934. }
  8935. },
  8936. "autoload": {
  8937. "psr-4": {
  8938. "Symfony\\Contracts\\Service\\": ""
  8939. },
  8940. "exclude-from-classmap": [
  8941. "/Test/"
  8942. ]
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "MIT"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Nicolas Grekas",
  8951. "email": "p@tchwork.com"
  8952. },
  8953. {
  8954. "name": "Symfony Community",
  8955. "homepage": "https://symfony.com/contributors"
  8956. }
  8957. ],
  8958. "description": "Generic abstractions related to writing services",
  8959. "homepage": "https://symfony.com",
  8960. "keywords": [
  8961. "abstractions",
  8962. "contracts",
  8963. "decoupling",
  8964. "interfaces",
  8965. "interoperability",
  8966. "standards"
  8967. ],
  8968. "support": {
  8969. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://symfony.com/sponsor",
  8974. "type": "custom"
  8975. },
  8976. {
  8977. "url": "https://github.com/fabpot",
  8978. "type": "github"
  8979. },
  8980. {
  8981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8982. "type": "tidelift"
  8983. }
  8984. ],
  8985. "time": "2024-09-25T14:20:29+00:00"
  8986. },
  8987. {
  8988. "name": "symfony/string",
  8989. "version": "v6.4.21",
  8990. "source": {
  8991. "type": "git",
  8992. "url": "https://github.com/symfony/string.git",
  8993. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  8994. },
  8995. "dist": {
  8996. "type": "zip",
  8997. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  8998. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  8999. "shasum": "",
  9000. "mirrors": [
  9001. {
  9002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9003. "preferred": true
  9004. }
  9005. ]
  9006. },
  9007. "require": {
  9008. "php": ">=8.1",
  9009. "symfony/polyfill-ctype": "~1.8",
  9010. "symfony/polyfill-intl-grapheme": "~1.0",
  9011. "symfony/polyfill-intl-normalizer": "~1.0",
  9012. "symfony/polyfill-mbstring": "~1.0"
  9013. },
  9014. "conflict": {
  9015. "symfony/translation-contracts": "<2.5"
  9016. },
  9017. "require-dev": {
  9018. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9019. "symfony/http-client": "^5.4|^6.0|^7.0",
  9020. "symfony/intl": "^6.2|^7.0",
  9021. "symfony/translation-contracts": "^2.5|^3.0",
  9022. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9023. },
  9024. "type": "library",
  9025. "autoload": {
  9026. "files": [
  9027. "Resources/functions.php"
  9028. ],
  9029. "psr-4": {
  9030. "Symfony\\Component\\String\\": ""
  9031. },
  9032. "exclude-from-classmap": [
  9033. "/Tests/"
  9034. ]
  9035. },
  9036. "notification-url": "https://packagist.org/downloads/",
  9037. "license": [
  9038. "MIT"
  9039. ],
  9040. "authors": [
  9041. {
  9042. "name": "Nicolas Grekas",
  9043. "email": "p@tchwork.com"
  9044. },
  9045. {
  9046. "name": "Symfony Community",
  9047. "homepage": "https://symfony.com/contributors"
  9048. }
  9049. ],
  9050. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9051. "homepage": "https://symfony.com",
  9052. "keywords": [
  9053. "grapheme",
  9054. "i18n",
  9055. "string",
  9056. "unicode",
  9057. "utf-8",
  9058. "utf8"
  9059. ],
  9060. "support": {
  9061. "source": "https://github.com/symfony/string/tree/v6.4.21"
  9062. },
  9063. "funding": [
  9064. {
  9065. "url": "https://symfony.com/sponsor",
  9066. "type": "custom"
  9067. },
  9068. {
  9069. "url": "https://github.com/fabpot",
  9070. "type": "github"
  9071. },
  9072. {
  9073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9074. "type": "tidelift"
  9075. }
  9076. ],
  9077. "time": "2025-04-18T15:23:29+00:00"
  9078. },
  9079. {
  9080. "name": "symfony/translation",
  9081. "version": "v6.4.21",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/symfony/translation.git",
  9085. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  9090. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  9091. "shasum": "",
  9092. "mirrors": [
  9093. {
  9094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9095. "preferred": true
  9096. }
  9097. ]
  9098. },
  9099. "require": {
  9100. "php": ">=8.1",
  9101. "symfony/deprecation-contracts": "^2.5|^3",
  9102. "symfony/polyfill-mbstring": "~1.0",
  9103. "symfony/translation-contracts": "^2.5|^3.0"
  9104. },
  9105. "conflict": {
  9106. "symfony/config": "<5.4",
  9107. "symfony/console": "<5.4",
  9108. "symfony/dependency-injection": "<5.4",
  9109. "symfony/http-client-contracts": "<2.5",
  9110. "symfony/http-kernel": "<5.4",
  9111. "symfony/service-contracts": "<2.5",
  9112. "symfony/twig-bundle": "<5.4",
  9113. "symfony/yaml": "<5.4"
  9114. },
  9115. "provide": {
  9116. "symfony/translation-implementation": "2.3|3.0"
  9117. },
  9118. "require-dev": {
  9119. "nikic/php-parser": "^4.18|^5.0",
  9120. "psr/log": "^1|^2|^3",
  9121. "symfony/config": "^5.4|^6.0|^7.0",
  9122. "symfony/console": "^5.4|^6.0|^7.0",
  9123. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9124. "symfony/finder": "^5.4|^6.0|^7.0",
  9125. "symfony/http-client-contracts": "^2.5|^3.0",
  9126. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9127. "symfony/intl": "^5.4|^6.0|^7.0",
  9128. "symfony/polyfill-intl-icu": "^1.21",
  9129. "symfony/routing": "^5.4|^6.0|^7.0",
  9130. "symfony/service-contracts": "^2.5|^3",
  9131. "symfony/yaml": "^5.4|^6.0|^7.0"
  9132. },
  9133. "type": "library",
  9134. "autoload": {
  9135. "files": [
  9136. "Resources/functions.php"
  9137. ],
  9138. "psr-4": {
  9139. "Symfony\\Component\\Translation\\": ""
  9140. },
  9141. "exclude-from-classmap": [
  9142. "/Tests/"
  9143. ]
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "MIT"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Fabien Potencier",
  9152. "email": "fabien@symfony.com"
  9153. },
  9154. {
  9155. "name": "Symfony Community",
  9156. "homepage": "https://symfony.com/contributors"
  9157. }
  9158. ],
  9159. "description": "Provides tools to internationalize your application",
  9160. "homepage": "https://symfony.com",
  9161. "support": {
  9162. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  9163. },
  9164. "funding": [
  9165. {
  9166. "url": "https://symfony.com/sponsor",
  9167. "type": "custom"
  9168. },
  9169. {
  9170. "url": "https://github.com/fabpot",
  9171. "type": "github"
  9172. },
  9173. {
  9174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9175. "type": "tidelift"
  9176. }
  9177. ],
  9178. "time": "2025-04-07T19:02:30+00:00"
  9179. },
  9180. {
  9181. "name": "symfony/translation-contracts",
  9182. "version": "v3.5.1",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/symfony/translation-contracts.git",
  9186. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  9191. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  9192. "shasum": "",
  9193. "mirrors": [
  9194. {
  9195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9196. "preferred": true
  9197. }
  9198. ]
  9199. },
  9200. "require": {
  9201. "php": ">=8.1"
  9202. },
  9203. "type": "library",
  9204. "extra": {
  9205. "thanks": {
  9206. "url": "https://github.com/symfony/contracts",
  9207. "name": "symfony/contracts"
  9208. },
  9209. "branch-alias": {
  9210. "dev-main": "3.5-dev"
  9211. }
  9212. },
  9213. "autoload": {
  9214. "psr-4": {
  9215. "Symfony\\Contracts\\Translation\\": ""
  9216. },
  9217. "exclude-from-classmap": [
  9218. "/Test/"
  9219. ]
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Nicolas Grekas",
  9228. "email": "p@tchwork.com"
  9229. },
  9230. {
  9231. "name": "Symfony Community",
  9232. "homepage": "https://symfony.com/contributors"
  9233. }
  9234. ],
  9235. "description": "Generic abstractions related to translation",
  9236. "homepage": "https://symfony.com",
  9237. "keywords": [
  9238. "abstractions",
  9239. "contracts",
  9240. "decoupling",
  9241. "interfaces",
  9242. "interoperability",
  9243. "standards"
  9244. ],
  9245. "support": {
  9246. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  9247. },
  9248. "funding": [
  9249. {
  9250. "url": "https://symfony.com/sponsor",
  9251. "type": "custom"
  9252. },
  9253. {
  9254. "url": "https://github.com/fabpot",
  9255. "type": "github"
  9256. },
  9257. {
  9258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9259. "type": "tidelift"
  9260. }
  9261. ],
  9262. "time": "2024-09-25T14:20:29+00:00"
  9263. },
  9264. {
  9265. "name": "vlucas/phpdotenv",
  9266. "version": "v5.6.1",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/vlucas/phpdotenv.git",
  9270. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9275. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9276. "shasum": "",
  9277. "mirrors": [
  9278. {
  9279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9280. "preferred": true
  9281. }
  9282. ]
  9283. },
  9284. "require": {
  9285. "ext-pcre": "*",
  9286. "graham-campbell/result-type": "^1.1.3",
  9287. "php": "^7.2.5 || ^8.0",
  9288. "phpoption/phpoption": "^1.9.3",
  9289. "symfony/polyfill-ctype": "^1.24",
  9290. "symfony/polyfill-mbstring": "^1.24",
  9291. "symfony/polyfill-php80": "^1.24"
  9292. },
  9293. "require-dev": {
  9294. "bamarni/composer-bin-plugin": "^1.8.2",
  9295. "ext-filter": "*",
  9296. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9297. },
  9298. "suggest": {
  9299. "ext-filter": "Required to use the boolean validator."
  9300. },
  9301. "type": "library",
  9302. "extra": {
  9303. "bamarni-bin": {
  9304. "bin-links": true,
  9305. "forward-command": false
  9306. },
  9307. "branch-alias": {
  9308. "dev-master": "5.6-dev"
  9309. }
  9310. },
  9311. "autoload": {
  9312. "psr-4": {
  9313. "Dotenv\\": "src/"
  9314. }
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "BSD-3-Clause"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Graham Campbell",
  9323. "email": "hello@gjcampbell.co.uk",
  9324. "homepage": "https://github.com/GrahamCampbell"
  9325. },
  9326. {
  9327. "name": "Vance Lucas",
  9328. "email": "vance@vancelucas.com",
  9329. "homepage": "https://github.com/vlucas"
  9330. }
  9331. ],
  9332. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9333. "keywords": [
  9334. "dotenv",
  9335. "env",
  9336. "environment"
  9337. ],
  9338. "support": {
  9339. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9340. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9341. },
  9342. "funding": [
  9343. {
  9344. "url": "https://github.com/GrahamCampbell",
  9345. "type": "github"
  9346. },
  9347. {
  9348. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9349. "type": "tidelift"
  9350. }
  9351. ],
  9352. "time": "2024-07-20T21:52:34+00:00"
  9353. }
  9354. ],
  9355. "packages-dev": [
  9356. {
  9357. "name": "clue/ndjson-react",
  9358. "version": "v1.3.0",
  9359. "source": {
  9360. "type": "git",
  9361. "url": "https://github.com/clue/reactphp-ndjson.git",
  9362. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  9363. },
  9364. "dist": {
  9365. "type": "zip",
  9366. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  9367. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  9368. "shasum": "",
  9369. "mirrors": [
  9370. {
  9371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9372. "preferred": true
  9373. }
  9374. ]
  9375. },
  9376. "require": {
  9377. "php": ">=5.3",
  9378. "react/stream": "^1.2"
  9379. },
  9380. "require-dev": {
  9381. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  9382. "react/event-loop": "^1.2"
  9383. },
  9384. "type": "library",
  9385. "autoload": {
  9386. "psr-4": {
  9387. "Clue\\React\\NDJson\\": "src/"
  9388. }
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "MIT"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Christian Lück",
  9397. "email": "christian@clue.engineering"
  9398. }
  9399. ],
  9400. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  9401. "homepage": "https://github.com/clue/reactphp-ndjson",
  9402. "keywords": [
  9403. "NDJSON",
  9404. "json",
  9405. "jsonlines",
  9406. "newline",
  9407. "reactphp",
  9408. "streaming"
  9409. ],
  9410. "support": {
  9411. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  9412. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  9413. },
  9414. "funding": [
  9415. {
  9416. "url": "https://clue.engineering/support",
  9417. "type": "custom"
  9418. },
  9419. {
  9420. "url": "https://github.com/clue",
  9421. "type": "github"
  9422. }
  9423. ],
  9424. "time": "2022-12-23T10:58:28+00:00"
  9425. },
  9426. {
  9427. "name": "composer/pcre",
  9428. "version": "3.3.2",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/composer/pcre.git",
  9432. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9437. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9438. "shasum": "",
  9439. "mirrors": [
  9440. {
  9441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9442. "preferred": true
  9443. }
  9444. ]
  9445. },
  9446. "require": {
  9447. "php": "^7.4 || ^8.0"
  9448. },
  9449. "conflict": {
  9450. "phpstan/phpstan": "<1.11.10"
  9451. },
  9452. "require-dev": {
  9453. "phpstan/phpstan": "^1.12 || ^2",
  9454. "phpstan/phpstan-strict-rules": "^1 || ^2",
  9455. "phpunit/phpunit": "^8 || ^9"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-main": "3.x-dev"
  9461. },
  9462. "phpstan": {
  9463. "includes": [
  9464. "extension.neon"
  9465. ]
  9466. }
  9467. },
  9468. "autoload": {
  9469. "psr-4": {
  9470. "Composer\\Pcre\\": "src"
  9471. }
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "MIT"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Jordi Boggiano",
  9480. "email": "j.boggiano@seld.be",
  9481. "homepage": "http://seld.be"
  9482. }
  9483. ],
  9484. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9485. "keywords": [
  9486. "PCRE",
  9487. "preg",
  9488. "regex",
  9489. "regular expression"
  9490. ],
  9491. "support": {
  9492. "issues": "https://github.com/composer/pcre/issues",
  9493. "source": "https://github.com/composer/pcre/tree/3.3.2"
  9494. },
  9495. "funding": [
  9496. {
  9497. "url": "https://packagist.com",
  9498. "type": "custom"
  9499. },
  9500. {
  9501. "url": "https://github.com/composer",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9506. "type": "tidelift"
  9507. }
  9508. ],
  9509. "time": "2024-11-12T16:29:46+00:00"
  9510. },
  9511. {
  9512. "name": "composer/semver",
  9513. "version": "3.4.2",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/composer/semver.git",
  9517. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  9522. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  9523. "shasum": "",
  9524. "mirrors": [
  9525. {
  9526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9527. "preferred": true
  9528. }
  9529. ]
  9530. },
  9531. "require": {
  9532. "php": "^5.3.2 || ^7.0 || ^8.0"
  9533. },
  9534. "require-dev": {
  9535. "phpstan/phpstan": "^1.4",
  9536. "symfony/phpunit-bridge": "^4.2 || ^5"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-main": "3.x-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "psr-4": {
  9546. "Composer\\Semver\\": "src"
  9547. }
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "MIT"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Nils Adermann",
  9556. "email": "naderman@naderman.de",
  9557. "homepage": "http://www.naderman.de"
  9558. },
  9559. {
  9560. "name": "Jordi Boggiano",
  9561. "email": "j.boggiano@seld.be",
  9562. "homepage": "http://seld.be"
  9563. },
  9564. {
  9565. "name": "Rob Bast",
  9566. "email": "rob.bast@gmail.com",
  9567. "homepage": "http://robbast.nl"
  9568. }
  9569. ],
  9570. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9571. "keywords": [
  9572. "semantic",
  9573. "semver",
  9574. "validation",
  9575. "versioning"
  9576. ],
  9577. "support": {
  9578. "irc": "ircs://irc.libera.chat:6697/composer",
  9579. "issues": "https://github.com/composer/semver/issues",
  9580. "source": "https://github.com/composer/semver/tree/3.4.2"
  9581. },
  9582. "funding": [
  9583. {
  9584. "url": "https://packagist.com",
  9585. "type": "custom"
  9586. },
  9587. {
  9588. "url": "https://github.com/composer",
  9589. "type": "github"
  9590. },
  9591. {
  9592. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9593. "type": "tidelift"
  9594. }
  9595. ],
  9596. "time": "2024-07-12T11:35:52+00:00"
  9597. },
  9598. {
  9599. "name": "composer/xdebug-handler",
  9600. "version": "3.0.3",
  9601. "source": {
  9602. "type": "git",
  9603. "url": "https://github.com/composer/xdebug-handler.git",
  9604. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  9605. },
  9606. "dist": {
  9607. "type": "zip",
  9608. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  9609. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  9610. "shasum": "",
  9611. "mirrors": [
  9612. {
  9613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9614. "preferred": true
  9615. }
  9616. ]
  9617. },
  9618. "require": {
  9619. "composer/pcre": "^1 || ^2 || ^3",
  9620. "php": "^7.2.5 || ^8.0",
  9621. "psr/log": "^1 || ^2 || ^3"
  9622. },
  9623. "require-dev": {
  9624. "phpstan/phpstan": "^1.0",
  9625. "phpstan/phpstan-strict-rules": "^1.1",
  9626. "symfony/phpunit-bridge": "^6.0"
  9627. },
  9628. "type": "library",
  9629. "autoload": {
  9630. "psr-4": {
  9631. "Composer\\XdebugHandler\\": "src"
  9632. }
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "MIT"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "John Stevenson",
  9641. "email": "john-stevenson@blueyonder.co.uk"
  9642. }
  9643. ],
  9644. "description": "Restarts a process without Xdebug.",
  9645. "keywords": [
  9646. "Xdebug",
  9647. "performance"
  9648. ],
  9649. "support": {
  9650. "irc": "irc://irc.freenode.org/composer",
  9651. "issues": "https://github.com/composer/xdebug-handler/issues",
  9652. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  9653. },
  9654. "funding": [
  9655. {
  9656. "url": "https://packagist.com",
  9657. "type": "custom"
  9658. },
  9659. {
  9660. "url": "https://github.com/composer",
  9661. "type": "github"
  9662. },
  9663. {
  9664. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9665. "type": "tidelift"
  9666. }
  9667. ],
  9668. "time": "2022-02-25T21:32:43+00:00"
  9669. },
  9670. {
  9671. "name": "evenement/evenement",
  9672. "version": "v3.0.2",
  9673. "source": {
  9674. "type": "git",
  9675. "url": "https://github.com/igorw/evenement.git",
  9676. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  9677. },
  9678. "dist": {
  9679. "type": "zip",
  9680. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  9681. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  9682. "shasum": "",
  9683. "mirrors": [
  9684. {
  9685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9686. "preferred": true
  9687. }
  9688. ]
  9689. },
  9690. "require": {
  9691. "php": ">=7.0"
  9692. },
  9693. "require-dev": {
  9694. "phpunit/phpunit": "^9 || ^6"
  9695. },
  9696. "type": "library",
  9697. "autoload": {
  9698. "psr-4": {
  9699. "Evenement\\": "src/"
  9700. }
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "MIT"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Igor Wiedler",
  9709. "email": "igor@wiedler.ch"
  9710. }
  9711. ],
  9712. "description": "Événement is a very simple event dispatching library for PHP",
  9713. "keywords": [
  9714. "event-dispatcher",
  9715. "event-emitter"
  9716. ],
  9717. "support": {
  9718. "issues": "https://github.com/igorw/evenement/issues",
  9719. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  9720. },
  9721. "time": "2023-08-08T05:53:35+00:00"
  9722. },
  9723. {
  9724. "name": "fidry/cpu-core-counter",
  9725. "version": "1.1.0",
  9726. "source": {
  9727. "type": "git",
  9728. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9729. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  9730. },
  9731. "dist": {
  9732. "type": "zip",
  9733. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  9734. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  9735. "shasum": "",
  9736. "mirrors": [
  9737. {
  9738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9739. "preferred": true
  9740. }
  9741. ]
  9742. },
  9743. "require": {
  9744. "php": "^7.2 || ^8.0"
  9745. },
  9746. "require-dev": {
  9747. "fidry/makefile": "^0.2.0",
  9748. "fidry/php-cs-fixer-config": "^1.1.2",
  9749. "phpstan/extension-installer": "^1.2.0",
  9750. "phpstan/phpstan": "^1.9.2",
  9751. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9752. "phpstan/phpstan-phpunit": "^1.2.2",
  9753. "phpstan/phpstan-strict-rules": "^1.4.4",
  9754. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9755. "webmozarts/strict-phpunit": "^7.5"
  9756. },
  9757. "type": "library",
  9758. "autoload": {
  9759. "psr-4": {
  9760. "Fidry\\CpuCoreCounter\\": "src/"
  9761. }
  9762. },
  9763. "notification-url": "https://packagist.org/downloads/",
  9764. "license": [
  9765. "MIT"
  9766. ],
  9767. "authors": [
  9768. {
  9769. "name": "Théo FIDRY",
  9770. "email": "theo.fidry@gmail.com"
  9771. }
  9772. ],
  9773. "description": "Tiny utility to get the number of CPU cores.",
  9774. "keywords": [
  9775. "CPU",
  9776. "core"
  9777. ],
  9778. "support": {
  9779. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9780. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  9781. },
  9782. "funding": [
  9783. {
  9784. "url": "https://github.com/theofidry",
  9785. "type": "github"
  9786. }
  9787. ],
  9788. "time": "2024-02-07T09:43:46+00:00"
  9789. },
  9790. {
  9791. "name": "friendsofphp/php-cs-fixer",
  9792. "version": "v3.64.0",
  9793. "source": {
  9794. "type": "git",
  9795. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  9796. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  9797. },
  9798. "dist": {
  9799. "type": "zip",
  9800. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  9801. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  9802. "shasum": "",
  9803. "mirrors": [
  9804. {
  9805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9806. "preferred": true
  9807. }
  9808. ]
  9809. },
  9810. "require": {
  9811. "clue/ndjson-react": "^1.0",
  9812. "composer/semver": "^3.4",
  9813. "composer/xdebug-handler": "^3.0.3",
  9814. "ext-filter": "*",
  9815. "ext-json": "*",
  9816. "ext-tokenizer": "*",
  9817. "fidry/cpu-core-counter": "^1.0",
  9818. "php": "^7.4 || ^8.0",
  9819. "react/child-process": "^0.6.5",
  9820. "react/event-loop": "^1.0",
  9821. "react/promise": "^2.0 || ^3.0",
  9822. "react/socket": "^1.0",
  9823. "react/stream": "^1.0",
  9824. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  9825. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  9826. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  9827. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  9828. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  9829. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  9830. "symfony/polyfill-mbstring": "^1.28",
  9831. "symfony/polyfill-php80": "^1.28",
  9832. "symfony/polyfill-php81": "^1.28",
  9833. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  9834. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  9835. },
  9836. "require-dev": {
  9837. "facile-it/paraunit": "^1.3 || ^2.3",
  9838. "infection/infection": "^0.29.5",
  9839. "justinrainbow/json-schema": "^5.2",
  9840. "keradus/cli-executor": "^2.1",
  9841. "mikey179/vfsstream": "^1.6.11",
  9842. "php-coveralls/php-coveralls": "^2.7",
  9843. "php-cs-fixer/accessible-object": "^1.1",
  9844. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  9845. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  9846. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  9847. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  9848. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  9849. },
  9850. "suggest": {
  9851. "ext-dom": "For handling output formats in XML",
  9852. "ext-mbstring": "For handling non-UTF8 characters."
  9853. },
  9854. "bin": [
  9855. "php-cs-fixer"
  9856. ],
  9857. "type": "application",
  9858. "autoload": {
  9859. "psr-4": {
  9860. "PhpCsFixer\\": "src/"
  9861. },
  9862. "exclude-from-classmap": [
  9863. "src/Fixer/Internal/*"
  9864. ]
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Fabien Potencier",
  9873. "email": "fabien@symfony.com"
  9874. },
  9875. {
  9876. "name": "Dariusz Rumiński",
  9877. "email": "dariusz.ruminski@gmail.com"
  9878. }
  9879. ],
  9880. "description": "A tool to automatically fix PHP code style",
  9881. "keywords": [
  9882. "Static code analysis",
  9883. "fixer",
  9884. "standards",
  9885. "static analysis"
  9886. ],
  9887. "support": {
  9888. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  9889. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/keradus",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2024-08-30T23:09:38+00:00"
  9898. },
  9899. {
  9900. "name": "hamcrest/hamcrest-php",
  9901. "version": "v2.0.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9905. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9910. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9911. "shasum": "",
  9912. "mirrors": [
  9913. {
  9914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9915. "preferred": true
  9916. }
  9917. ]
  9918. },
  9919. "require": {
  9920. "php": "^5.3|^7.0|^8.0"
  9921. },
  9922. "replace": {
  9923. "cordoval/hamcrest-php": "*",
  9924. "davedevelopment/hamcrest-php": "*",
  9925. "kodova/hamcrest-php": "*"
  9926. },
  9927. "require-dev": {
  9928. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9929. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9930. },
  9931. "type": "library",
  9932. "extra": {
  9933. "branch-alias": {
  9934. "dev-master": "2.1-dev"
  9935. }
  9936. },
  9937. "autoload": {
  9938. "classmap": [
  9939. "hamcrest"
  9940. ]
  9941. },
  9942. "notification-url": "https://packagist.org/downloads/",
  9943. "license": [
  9944. "BSD-3-Clause"
  9945. ],
  9946. "description": "This is the PHP port of Hamcrest Matchers",
  9947. "keywords": [
  9948. "test"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9952. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9953. },
  9954. "time": "2020-07-09T08:09:16+00:00"
  9955. },
  9956. {
  9957. "name": "hyperf/devtool",
  9958. "version": "v3.1.51",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/hyperf/devtool.git",
  9962. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  9967. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  9968. "shasum": "",
  9969. "mirrors": [
  9970. {
  9971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9972. "preferred": true
  9973. }
  9974. ]
  9975. },
  9976. "require": {
  9977. "hyperf/code-parser": "~3.1.0",
  9978. "hyperf/command": "~3.1.0",
  9979. "hyperf/contract": "~3.1.0",
  9980. "hyperf/di": "~3.1.0",
  9981. "hyperf/support": "~3.1.0",
  9982. "hyperf/utils": "~3.1.0",
  9983. "php": ">=8.1"
  9984. },
  9985. "type": "library",
  9986. "extra": {
  9987. "hyperf": {
  9988. "config": "Hyperf\\Devtool\\ConfigProvider"
  9989. },
  9990. "branch-alias": {
  9991. "dev-master": "3.1-dev"
  9992. }
  9993. },
  9994. "autoload": {
  9995. "psr-4": {
  9996. "Hyperf\\Devtool\\": "src/"
  9997. }
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "MIT"
  10002. ],
  10003. "description": "A Devtool for Hyperf.",
  10004. "homepage": "https://hyperf.io",
  10005. "keywords": [
  10006. "dev",
  10007. "devtool",
  10008. "hyperf",
  10009. "php",
  10010. "swoole"
  10011. ],
  10012. "support": {
  10013. "docs": "https://hyperf.wiki",
  10014. "issues": "https://github.com/hyperf/hyperf/issues",
  10015. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  10016. "source": "https://github.com/hyperf/hyperf"
  10017. },
  10018. "funding": [
  10019. {
  10020. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10021. "type": "custom"
  10022. },
  10023. {
  10024. "url": "https://opencollective.com/hyperf",
  10025. "type": "open_collective"
  10026. }
  10027. ],
  10028. "time": "2025-02-06T06:42:00+00:00"
  10029. },
  10030. {
  10031. "name": "hyperf/testing",
  10032. "version": "v3.1.55",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/hyperf/testing.git",
  10036. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  10041. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  10042. "shasum": "",
  10043. "mirrors": [
  10044. {
  10045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10046. "preferred": true
  10047. }
  10048. ]
  10049. },
  10050. "require": {
  10051. "hyperf/codec": "~3.1.0",
  10052. "hyperf/collection": "~3.1.0",
  10053. "hyperf/contract": "~3.1.0",
  10054. "hyperf/coroutine": "~3.1.0",
  10055. "hyperf/http-message": "~3.1.0",
  10056. "hyperf/http-server": "~3.1.0",
  10057. "hyperf/support": "~3.1.0",
  10058. "hyperf/utils": "~3.1.0",
  10059. "php": ">=8.1",
  10060. "phpunit/phpunit": "^10.0",
  10061. "psr/container": "^1.0 || ^2.0",
  10062. "symfony/http-foundation": "^5.4 || ^6.0"
  10063. },
  10064. "suggest": {
  10065. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  10066. },
  10067. "bin": [
  10068. "co-phpunit"
  10069. ],
  10070. "type": "library",
  10071. "extra": {
  10072. "branch-alias": {
  10073. "dev-master": "3.1-dev"
  10074. }
  10075. },
  10076. "autoload": {
  10077. "psr-4": {
  10078. "Hyperf\\Testing\\": "src/"
  10079. }
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "MIT"
  10084. ],
  10085. "description": "Testing for hyperf",
  10086. "keywords": [
  10087. "dev",
  10088. "php",
  10089. "swoole",
  10090. "testing"
  10091. ],
  10092. "support": {
  10093. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  10094. },
  10095. "funding": [
  10096. {
  10097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10098. "type": "custom"
  10099. },
  10100. {
  10101. "url": "https://opencollective.com/hyperf",
  10102. "type": "open_collective"
  10103. }
  10104. ],
  10105. "time": "2025-05-02T14:13:24+00:00"
  10106. },
  10107. {
  10108. "name": "hyperf/watcher",
  10109. "version": "v3.1.54",
  10110. "source": {
  10111. "type": "git",
  10112. "url": "https://github.com/hyperf/watcher.git",
  10113. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  10114. },
  10115. "dist": {
  10116. "type": "zip",
  10117. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  10118. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  10119. "shasum": "",
  10120. "mirrors": [
  10121. {
  10122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10123. "preferred": true
  10124. }
  10125. ]
  10126. },
  10127. "require": {
  10128. "ext-posix": "*",
  10129. "hyperf/codec": "~3.1.0",
  10130. "hyperf/command": "~3.1.0",
  10131. "hyperf/di": "~3.1.0",
  10132. "hyperf/framework": "~3.1.0",
  10133. "hyperf/support": "~3.1.0",
  10134. "php": ">=8.1"
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "hyperf": {
  10139. "config": "Hyperf\\Watcher\\ConfigProvider"
  10140. },
  10141. "branch-alias": {
  10142. "dev-master": "3.1-dev"
  10143. }
  10144. },
  10145. "autoload": {
  10146. "files": [
  10147. "src/Functions.php"
  10148. ],
  10149. "psr-4": {
  10150. "Hyperf\\Watcher\\": "src/"
  10151. }
  10152. },
  10153. "notification-url": "https://packagist.org/downloads/",
  10154. "license": [
  10155. "MIT"
  10156. ],
  10157. "description": "Hot reload watcher for Hyperf",
  10158. "keywords": [
  10159. "dev",
  10160. "hyperf",
  10161. "php"
  10162. ],
  10163. "support": {
  10164. "issues": "https://github.com/hyperf/watcher/issues",
  10165. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  10166. },
  10167. "funding": [
  10168. {
  10169. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10170. "type": "custom"
  10171. },
  10172. {
  10173. "url": "https://opencollective.com/hyperf",
  10174. "type": "open_collective"
  10175. }
  10176. ],
  10177. "time": "2025-04-26T13:02:01+00:00"
  10178. },
  10179. {
  10180. "name": "mockery/mockery",
  10181. "version": "1.6.12",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/mockery/mockery.git",
  10185. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10190. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10191. "shasum": "",
  10192. "mirrors": [
  10193. {
  10194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10195. "preferred": true
  10196. }
  10197. ]
  10198. },
  10199. "require": {
  10200. "hamcrest/hamcrest-php": "^2.0.1",
  10201. "lib-pcre": ">=7.0",
  10202. "php": ">=7.3"
  10203. },
  10204. "conflict": {
  10205. "phpunit/phpunit": "<8.0"
  10206. },
  10207. "require-dev": {
  10208. "phpunit/phpunit": "^8.5 || ^9.6.17",
  10209. "symplify/easy-coding-standard": "^12.1.14"
  10210. },
  10211. "type": "library",
  10212. "autoload": {
  10213. "files": [
  10214. "library/helpers.php",
  10215. "library/Mockery.php"
  10216. ],
  10217. "psr-4": {
  10218. "Mockery\\": "library/Mockery"
  10219. }
  10220. },
  10221. "notification-url": "https://packagist.org/downloads/",
  10222. "license": [
  10223. "BSD-3-Clause"
  10224. ],
  10225. "authors": [
  10226. {
  10227. "name": "Pádraic Brady",
  10228. "email": "padraic.brady@gmail.com",
  10229. "homepage": "https://github.com/padraic",
  10230. "role": "Author"
  10231. },
  10232. {
  10233. "name": "Dave Marshall",
  10234. "email": "dave.marshall@atstsolutions.co.uk",
  10235. "homepage": "https://davedevelopment.co.uk",
  10236. "role": "Developer"
  10237. },
  10238. {
  10239. "name": "Nathanael Esayeas",
  10240. "email": "nathanael.esayeas@protonmail.com",
  10241. "homepage": "https://github.com/ghostwriter",
  10242. "role": "Lead Developer"
  10243. }
  10244. ],
  10245. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10246. "homepage": "https://github.com/mockery/mockery",
  10247. "keywords": [
  10248. "BDD",
  10249. "TDD",
  10250. "library",
  10251. "mock",
  10252. "mock objects",
  10253. "mockery",
  10254. "stub",
  10255. "test",
  10256. "test double",
  10257. "testing"
  10258. ],
  10259. "support": {
  10260. "docs": "https://docs.mockery.io/",
  10261. "issues": "https://github.com/mockery/mockery/issues",
  10262. "rss": "https://github.com/mockery/mockery/releases.atom",
  10263. "security": "https://github.com/mockery/mockery/security/advisories",
  10264. "source": "https://github.com/mockery/mockery"
  10265. },
  10266. "time": "2024-05-16T03:13:13+00:00"
  10267. },
  10268. {
  10269. "name": "myclabs/deep-copy",
  10270. "version": "1.13.0",
  10271. "source": {
  10272. "type": "git",
  10273. "url": "https://github.com/myclabs/DeepCopy.git",
  10274. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  10275. },
  10276. "dist": {
  10277. "type": "zip",
  10278. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  10279. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  10280. "shasum": "",
  10281. "mirrors": [
  10282. {
  10283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10284. "preferred": true
  10285. }
  10286. ]
  10287. },
  10288. "require": {
  10289. "php": "^7.1 || ^8.0"
  10290. },
  10291. "conflict": {
  10292. "doctrine/collections": "<1.6.8",
  10293. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10294. },
  10295. "require-dev": {
  10296. "doctrine/collections": "^1.6.8",
  10297. "doctrine/common": "^2.13.3 || ^3.2.2",
  10298. "phpspec/prophecy": "^1.10",
  10299. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10300. },
  10301. "type": "library",
  10302. "autoload": {
  10303. "files": [
  10304. "src/DeepCopy/deep_copy.php"
  10305. ],
  10306. "psr-4": {
  10307. "DeepCopy\\": "src/DeepCopy/"
  10308. }
  10309. },
  10310. "notification-url": "https://packagist.org/downloads/",
  10311. "license": [
  10312. "MIT"
  10313. ],
  10314. "description": "Create deep copies (clones) of your objects",
  10315. "keywords": [
  10316. "clone",
  10317. "copy",
  10318. "duplicate",
  10319. "object",
  10320. "object graph"
  10321. ],
  10322. "support": {
  10323. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10324. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10329. "type": "tidelift"
  10330. }
  10331. ],
  10332. "time": "2025-02-12T12:17:51+00:00"
  10333. },
  10334. {
  10335. "name": "phar-io/manifest",
  10336. "version": "dev-master",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/phar-io/manifest.git",
  10340. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10345. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10346. "shasum": "",
  10347. "mirrors": [
  10348. {
  10349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10350. "preferred": true
  10351. }
  10352. ]
  10353. },
  10354. "require": {
  10355. "ext-dom": "*",
  10356. "ext-libxml": "*",
  10357. "ext-phar": "*",
  10358. "ext-xmlwriter": "*",
  10359. "phar-io/version": "^3.0.1",
  10360. "php": "^7.2 || ^8.0"
  10361. },
  10362. "default-branch": true,
  10363. "type": "library",
  10364. "extra": {
  10365. "branch-alias": {
  10366. "dev-master": "2.0.x-dev"
  10367. }
  10368. },
  10369. "autoload": {
  10370. "classmap": [
  10371. "src/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "BSD-3-Clause"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Arne Blankerts",
  10381. "email": "arne@blankerts.de",
  10382. "role": "Developer"
  10383. },
  10384. {
  10385. "name": "Sebastian Heuer",
  10386. "email": "sebastian@phpeople.de",
  10387. "role": "Developer"
  10388. },
  10389. {
  10390. "name": "Sebastian Bergmann",
  10391. "email": "sebastian@phpunit.de",
  10392. "role": "Developer"
  10393. }
  10394. ],
  10395. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10396. "support": {
  10397. "issues": "https://github.com/phar-io/manifest/issues",
  10398. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10399. },
  10400. "funding": [
  10401. {
  10402. "url": "https://github.com/theseer",
  10403. "type": "github"
  10404. }
  10405. ],
  10406. "time": "2024-03-03T12:33:53+00:00"
  10407. },
  10408. {
  10409. "name": "phar-io/version",
  10410. "version": "3.2.1",
  10411. "source": {
  10412. "type": "git",
  10413. "url": "https://github.com/phar-io/version.git",
  10414. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10415. },
  10416. "dist": {
  10417. "type": "zip",
  10418. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10419. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10420. "shasum": "",
  10421. "mirrors": [
  10422. {
  10423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10424. "preferred": true
  10425. }
  10426. ]
  10427. },
  10428. "require": {
  10429. "php": "^7.2 || ^8.0"
  10430. },
  10431. "type": "library",
  10432. "autoload": {
  10433. "classmap": [
  10434. "src/"
  10435. ]
  10436. },
  10437. "notification-url": "https://packagist.org/downloads/",
  10438. "license": [
  10439. "BSD-3-Clause"
  10440. ],
  10441. "authors": [
  10442. {
  10443. "name": "Arne Blankerts",
  10444. "email": "arne@blankerts.de",
  10445. "role": "Developer"
  10446. },
  10447. {
  10448. "name": "Sebastian Heuer",
  10449. "email": "sebastian@phpeople.de",
  10450. "role": "Developer"
  10451. },
  10452. {
  10453. "name": "Sebastian Bergmann",
  10454. "email": "sebastian@phpunit.de",
  10455. "role": "Developer"
  10456. }
  10457. ],
  10458. "description": "Library for handling version information and constraints",
  10459. "support": {
  10460. "issues": "https://github.com/phar-io/version/issues",
  10461. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10462. },
  10463. "time": "2022-02-21T01:04:05+00:00"
  10464. },
  10465. {
  10466. "name": "phpstan/phpstan",
  10467. "version": "1.12.24",
  10468. "source": {
  10469. "type": "git",
  10470. "url": "https://github.com/phpstan/phpstan.git",
  10471. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025"
  10472. },
  10473. "dist": {
  10474. "type": "zip",
  10475. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/338b92068f58d9f8035b76aed6cf2b9e5624c025",
  10476. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025",
  10477. "shasum": "",
  10478. "mirrors": [
  10479. {
  10480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10481. "preferred": true
  10482. }
  10483. ]
  10484. },
  10485. "require": {
  10486. "php": "^7.2|^8.0"
  10487. },
  10488. "conflict": {
  10489. "phpstan/phpstan-shim": "*"
  10490. },
  10491. "bin": [
  10492. "phpstan",
  10493. "phpstan.phar"
  10494. ],
  10495. "type": "library",
  10496. "autoload": {
  10497. "files": [
  10498. "bootstrap.php"
  10499. ]
  10500. },
  10501. "notification-url": "https://packagist.org/downloads/",
  10502. "license": [
  10503. "MIT"
  10504. ],
  10505. "description": "PHPStan - PHP Static Analysis Tool",
  10506. "keywords": [
  10507. "dev",
  10508. "static analysis"
  10509. ],
  10510. "support": {
  10511. "docs": "https://phpstan.org/user-guide/getting-started",
  10512. "forum": "https://github.com/phpstan/phpstan/discussions",
  10513. "issues": "https://github.com/phpstan/phpstan/issues",
  10514. "security": "https://github.com/phpstan/phpstan/security/policy",
  10515. "source": "https://github.com/phpstan/phpstan-src"
  10516. },
  10517. "funding": [
  10518. {
  10519. "url": "https://github.com/ondrejmirtes",
  10520. "type": "github"
  10521. },
  10522. {
  10523. "url": "https://github.com/phpstan",
  10524. "type": "github"
  10525. }
  10526. ],
  10527. "time": "2025-04-16T13:01:53+00:00"
  10528. },
  10529. {
  10530. "name": "phpunit/php-code-coverage",
  10531. "version": "10.1.16",
  10532. "source": {
  10533. "type": "git",
  10534. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10535. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  10536. },
  10537. "dist": {
  10538. "type": "zip",
  10539. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  10540. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  10541. "shasum": "",
  10542. "mirrors": [
  10543. {
  10544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10545. "preferred": true
  10546. }
  10547. ]
  10548. },
  10549. "require": {
  10550. "ext-dom": "*",
  10551. "ext-libxml": "*",
  10552. "ext-xmlwriter": "*",
  10553. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  10554. "php": ">=8.1",
  10555. "phpunit/php-file-iterator": "^4.1.0",
  10556. "phpunit/php-text-template": "^3.0.1",
  10557. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  10558. "sebastian/complexity": "^3.2.0",
  10559. "sebastian/environment": "^6.1.0",
  10560. "sebastian/lines-of-code": "^2.0.2",
  10561. "sebastian/version": "^4.0.1",
  10562. "theseer/tokenizer": "^1.2.3"
  10563. },
  10564. "require-dev": {
  10565. "phpunit/phpunit": "^10.1"
  10566. },
  10567. "suggest": {
  10568. "ext-pcov": "PHP extension that provides line coverage",
  10569. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10570. },
  10571. "type": "library",
  10572. "extra": {
  10573. "branch-alias": {
  10574. "dev-main": "10.1.x-dev"
  10575. }
  10576. },
  10577. "autoload": {
  10578. "classmap": [
  10579. "src/"
  10580. ]
  10581. },
  10582. "notification-url": "https://packagist.org/downloads/",
  10583. "license": [
  10584. "BSD-3-Clause"
  10585. ],
  10586. "authors": [
  10587. {
  10588. "name": "Sebastian Bergmann",
  10589. "email": "sebastian@phpunit.de",
  10590. "role": "lead"
  10591. }
  10592. ],
  10593. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10594. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10595. "keywords": [
  10596. "coverage",
  10597. "testing",
  10598. "xunit"
  10599. ],
  10600. "support": {
  10601. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10602. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10603. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  10604. },
  10605. "funding": [
  10606. {
  10607. "url": "https://github.com/sebastianbergmann",
  10608. "type": "github"
  10609. }
  10610. ],
  10611. "time": "2024-08-22T04:31:57+00:00"
  10612. },
  10613. {
  10614. "name": "phpunit/php-file-iterator",
  10615. "version": "4.1.0",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10619. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10624. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10625. "shasum": "",
  10626. "mirrors": [
  10627. {
  10628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10629. "preferred": true
  10630. }
  10631. ]
  10632. },
  10633. "require": {
  10634. "php": ">=8.1"
  10635. },
  10636. "require-dev": {
  10637. "phpunit/phpunit": "^10.0"
  10638. },
  10639. "type": "library",
  10640. "extra": {
  10641. "branch-alias": {
  10642. "dev-main": "4.0-dev"
  10643. }
  10644. },
  10645. "autoload": {
  10646. "classmap": [
  10647. "src/"
  10648. ]
  10649. },
  10650. "notification-url": "https://packagist.org/downloads/",
  10651. "license": [
  10652. "BSD-3-Clause"
  10653. ],
  10654. "authors": [
  10655. {
  10656. "name": "Sebastian Bergmann",
  10657. "email": "sebastian@phpunit.de",
  10658. "role": "lead"
  10659. }
  10660. ],
  10661. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10662. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10663. "keywords": [
  10664. "filesystem",
  10665. "iterator"
  10666. ],
  10667. "support": {
  10668. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10669. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10670. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10671. },
  10672. "funding": [
  10673. {
  10674. "url": "https://github.com/sebastianbergmann",
  10675. "type": "github"
  10676. }
  10677. ],
  10678. "time": "2023-08-31T06:24:48+00:00"
  10679. },
  10680. {
  10681. "name": "phpunit/php-invoker",
  10682. "version": "4.0.0",
  10683. "source": {
  10684. "type": "git",
  10685. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10686. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10687. },
  10688. "dist": {
  10689. "type": "zip",
  10690. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10691. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10692. "shasum": "",
  10693. "mirrors": [
  10694. {
  10695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10696. "preferred": true
  10697. }
  10698. ]
  10699. },
  10700. "require": {
  10701. "php": ">=8.1"
  10702. },
  10703. "require-dev": {
  10704. "ext-pcntl": "*",
  10705. "phpunit/phpunit": "^10.0"
  10706. },
  10707. "suggest": {
  10708. "ext-pcntl": "*"
  10709. },
  10710. "type": "library",
  10711. "extra": {
  10712. "branch-alias": {
  10713. "dev-main": "4.0-dev"
  10714. }
  10715. },
  10716. "autoload": {
  10717. "classmap": [
  10718. "src/"
  10719. ]
  10720. },
  10721. "notification-url": "https://packagist.org/downloads/",
  10722. "license": [
  10723. "BSD-3-Clause"
  10724. ],
  10725. "authors": [
  10726. {
  10727. "name": "Sebastian Bergmann",
  10728. "email": "sebastian@phpunit.de",
  10729. "role": "lead"
  10730. }
  10731. ],
  10732. "description": "Invoke callables with a timeout",
  10733. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10734. "keywords": [
  10735. "process"
  10736. ],
  10737. "support": {
  10738. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10739. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10740. },
  10741. "funding": [
  10742. {
  10743. "url": "https://github.com/sebastianbergmann",
  10744. "type": "github"
  10745. }
  10746. ],
  10747. "time": "2023-02-03T06:56:09+00:00"
  10748. },
  10749. {
  10750. "name": "phpunit/php-text-template",
  10751. "version": "3.0.1",
  10752. "source": {
  10753. "type": "git",
  10754. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10755. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10756. },
  10757. "dist": {
  10758. "type": "zip",
  10759. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10760. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10761. "shasum": "",
  10762. "mirrors": [
  10763. {
  10764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10765. "preferred": true
  10766. }
  10767. ]
  10768. },
  10769. "require": {
  10770. "php": ">=8.1"
  10771. },
  10772. "require-dev": {
  10773. "phpunit/phpunit": "^10.0"
  10774. },
  10775. "type": "library",
  10776. "extra": {
  10777. "branch-alias": {
  10778. "dev-main": "3.0-dev"
  10779. }
  10780. },
  10781. "autoload": {
  10782. "classmap": [
  10783. "src/"
  10784. ]
  10785. },
  10786. "notification-url": "https://packagist.org/downloads/",
  10787. "license": [
  10788. "BSD-3-Clause"
  10789. ],
  10790. "authors": [
  10791. {
  10792. "name": "Sebastian Bergmann",
  10793. "email": "sebastian@phpunit.de",
  10794. "role": "lead"
  10795. }
  10796. ],
  10797. "description": "Simple template engine.",
  10798. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10799. "keywords": [
  10800. "template"
  10801. ],
  10802. "support": {
  10803. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10804. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10805. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10806. },
  10807. "funding": [
  10808. {
  10809. "url": "https://github.com/sebastianbergmann",
  10810. "type": "github"
  10811. }
  10812. ],
  10813. "time": "2023-08-31T14:07:24+00:00"
  10814. },
  10815. {
  10816. "name": "phpunit/php-timer",
  10817. "version": "6.0.0",
  10818. "source": {
  10819. "type": "git",
  10820. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10821. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10822. },
  10823. "dist": {
  10824. "type": "zip",
  10825. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10826. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10827. "shasum": "",
  10828. "mirrors": [
  10829. {
  10830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10831. "preferred": true
  10832. }
  10833. ]
  10834. },
  10835. "require": {
  10836. "php": ">=8.1"
  10837. },
  10838. "require-dev": {
  10839. "phpunit/phpunit": "^10.0"
  10840. },
  10841. "type": "library",
  10842. "extra": {
  10843. "branch-alias": {
  10844. "dev-main": "6.0-dev"
  10845. }
  10846. },
  10847. "autoload": {
  10848. "classmap": [
  10849. "src/"
  10850. ]
  10851. },
  10852. "notification-url": "https://packagist.org/downloads/",
  10853. "license": [
  10854. "BSD-3-Clause"
  10855. ],
  10856. "authors": [
  10857. {
  10858. "name": "Sebastian Bergmann",
  10859. "email": "sebastian@phpunit.de",
  10860. "role": "lead"
  10861. }
  10862. ],
  10863. "description": "Utility class for timing",
  10864. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10865. "keywords": [
  10866. "timer"
  10867. ],
  10868. "support": {
  10869. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10870. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10871. },
  10872. "funding": [
  10873. {
  10874. "url": "https://github.com/sebastianbergmann",
  10875. "type": "github"
  10876. }
  10877. ],
  10878. "time": "2023-02-03T06:57:52+00:00"
  10879. },
  10880. {
  10881. "name": "phpunit/phpunit",
  10882. "version": "10.5.45",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10886. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  10891. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  10892. "shasum": "",
  10893. "mirrors": [
  10894. {
  10895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10896. "preferred": true
  10897. }
  10898. ]
  10899. },
  10900. "require": {
  10901. "ext-dom": "*",
  10902. "ext-json": "*",
  10903. "ext-libxml": "*",
  10904. "ext-mbstring": "*",
  10905. "ext-xml": "*",
  10906. "ext-xmlwriter": "*",
  10907. "myclabs/deep-copy": "^1.12.1",
  10908. "phar-io/manifest": "^2.0.4",
  10909. "phar-io/version": "^3.2.1",
  10910. "php": ">=8.1",
  10911. "phpunit/php-code-coverage": "^10.1.16",
  10912. "phpunit/php-file-iterator": "^4.1.0",
  10913. "phpunit/php-invoker": "^4.0.0",
  10914. "phpunit/php-text-template": "^3.0.1",
  10915. "phpunit/php-timer": "^6.0.0",
  10916. "sebastian/cli-parser": "^2.0.1",
  10917. "sebastian/code-unit": "^2.0.0",
  10918. "sebastian/comparator": "^5.0.3",
  10919. "sebastian/diff": "^5.1.1",
  10920. "sebastian/environment": "^6.1.0",
  10921. "sebastian/exporter": "^5.1.2",
  10922. "sebastian/global-state": "^6.0.2",
  10923. "sebastian/object-enumerator": "^5.0.0",
  10924. "sebastian/recursion-context": "^5.0.0",
  10925. "sebastian/type": "^4.0.0",
  10926. "sebastian/version": "^4.0.1"
  10927. },
  10928. "suggest": {
  10929. "ext-soap": "To be able to generate mocks based on WSDL files"
  10930. },
  10931. "bin": [
  10932. "phpunit"
  10933. ],
  10934. "type": "library",
  10935. "extra": {
  10936. "branch-alias": {
  10937. "dev-main": "10.5-dev"
  10938. }
  10939. },
  10940. "autoload": {
  10941. "files": [
  10942. "src/Framework/Assert/Functions.php"
  10943. ],
  10944. "classmap": [
  10945. "src/"
  10946. ]
  10947. },
  10948. "notification-url": "https://packagist.org/downloads/",
  10949. "license": [
  10950. "BSD-3-Clause"
  10951. ],
  10952. "authors": [
  10953. {
  10954. "name": "Sebastian Bergmann",
  10955. "email": "sebastian@phpunit.de",
  10956. "role": "lead"
  10957. }
  10958. ],
  10959. "description": "The PHP Unit Testing framework.",
  10960. "homepage": "https://phpunit.de/",
  10961. "keywords": [
  10962. "phpunit",
  10963. "testing",
  10964. "xunit"
  10965. ],
  10966. "support": {
  10967. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10968. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10969. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://phpunit.de/sponsors.html",
  10974. "type": "custom"
  10975. },
  10976. {
  10977. "url": "https://github.com/sebastianbergmann",
  10978. "type": "github"
  10979. },
  10980. {
  10981. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10982. "type": "tidelift"
  10983. }
  10984. ],
  10985. "time": "2025-02-06T16:08:12+00:00"
  10986. },
  10987. {
  10988. "name": "react/cache",
  10989. "version": "v1.2.0",
  10990. "source": {
  10991. "type": "git",
  10992. "url": "https://github.com/reactphp/cache.git",
  10993. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  10994. },
  10995. "dist": {
  10996. "type": "zip",
  10997. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  10998. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  10999. "shasum": "",
  11000. "mirrors": [
  11001. {
  11002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11003. "preferred": true
  11004. }
  11005. ]
  11006. },
  11007. "require": {
  11008. "php": ">=5.3.0",
  11009. "react/promise": "^3.0 || ^2.0 || ^1.1"
  11010. },
  11011. "require-dev": {
  11012. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  11013. },
  11014. "type": "library",
  11015. "autoload": {
  11016. "psr-4": {
  11017. "React\\Cache\\": "src/"
  11018. }
  11019. },
  11020. "notification-url": "https://packagist.org/downloads/",
  11021. "license": [
  11022. "MIT"
  11023. ],
  11024. "authors": [
  11025. {
  11026. "name": "Christian Lück",
  11027. "email": "christian@clue.engineering",
  11028. "homepage": "https://clue.engineering/"
  11029. },
  11030. {
  11031. "name": "Cees-Jan Kiewiet",
  11032. "email": "reactphp@ceesjankiewiet.nl",
  11033. "homepage": "https://wyrihaximus.net/"
  11034. },
  11035. {
  11036. "name": "Jan Sorgalla",
  11037. "email": "jsorgalla@gmail.com",
  11038. "homepage": "https://sorgalla.com/"
  11039. },
  11040. {
  11041. "name": "Chris Boden",
  11042. "email": "cboden@gmail.com",
  11043. "homepage": "https://cboden.dev/"
  11044. }
  11045. ],
  11046. "description": "Async, Promise-based cache interface for ReactPHP",
  11047. "keywords": [
  11048. "cache",
  11049. "caching",
  11050. "promise",
  11051. "reactphp"
  11052. ],
  11053. "support": {
  11054. "issues": "https://github.com/reactphp/cache/issues",
  11055. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  11056. },
  11057. "funding": [
  11058. {
  11059. "url": "https://opencollective.com/reactphp",
  11060. "type": "open_collective"
  11061. }
  11062. ],
  11063. "time": "2022-11-30T15:59:55+00:00"
  11064. },
  11065. {
  11066. "name": "react/child-process",
  11067. "version": "v0.6.6",
  11068. "source": {
  11069. "type": "git",
  11070. "url": "https://github.com/reactphp/child-process.git",
  11071. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  11072. },
  11073. "dist": {
  11074. "type": "zip",
  11075. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  11076. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  11077. "shasum": "",
  11078. "mirrors": [
  11079. {
  11080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11081. "preferred": true
  11082. }
  11083. ]
  11084. },
  11085. "require": {
  11086. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11087. "php": ">=5.3.0",
  11088. "react/event-loop": "^1.2",
  11089. "react/stream": "^1.4"
  11090. },
  11091. "require-dev": {
  11092. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11093. "react/socket": "^1.16",
  11094. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  11095. },
  11096. "type": "library",
  11097. "autoload": {
  11098. "psr-4": {
  11099. "React\\ChildProcess\\": "src/"
  11100. }
  11101. },
  11102. "notification-url": "https://packagist.org/downloads/",
  11103. "license": [
  11104. "MIT"
  11105. ],
  11106. "authors": [
  11107. {
  11108. "name": "Christian Lück",
  11109. "email": "christian@clue.engineering",
  11110. "homepage": "https://clue.engineering/"
  11111. },
  11112. {
  11113. "name": "Cees-Jan Kiewiet",
  11114. "email": "reactphp@ceesjankiewiet.nl",
  11115. "homepage": "https://wyrihaximus.net/"
  11116. },
  11117. {
  11118. "name": "Jan Sorgalla",
  11119. "email": "jsorgalla@gmail.com",
  11120. "homepage": "https://sorgalla.com/"
  11121. },
  11122. {
  11123. "name": "Chris Boden",
  11124. "email": "cboden@gmail.com",
  11125. "homepage": "https://cboden.dev/"
  11126. }
  11127. ],
  11128. "description": "Event-driven library for executing child processes with ReactPHP.",
  11129. "keywords": [
  11130. "event-driven",
  11131. "process",
  11132. "reactphp"
  11133. ],
  11134. "support": {
  11135. "issues": "https://github.com/reactphp/child-process/issues",
  11136. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  11137. },
  11138. "funding": [
  11139. {
  11140. "url": "https://opencollective.com/reactphp",
  11141. "type": "open_collective"
  11142. }
  11143. ],
  11144. "time": "2025-01-01T16:37:48+00:00"
  11145. },
  11146. {
  11147. "name": "react/dns",
  11148. "version": "v1.12.0",
  11149. "source": {
  11150. "type": "git",
  11151. "url": "https://github.com/reactphp/dns.git",
  11152. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  11153. },
  11154. "dist": {
  11155. "type": "zip",
  11156. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  11157. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  11158. "shasum": "",
  11159. "mirrors": [
  11160. {
  11161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11162. "preferred": true
  11163. }
  11164. ]
  11165. },
  11166. "require": {
  11167. "php": ">=5.3.0",
  11168. "react/cache": "^1.0 || ^0.6 || ^0.5",
  11169. "react/event-loop": "^1.2",
  11170. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  11171. },
  11172. "require-dev": {
  11173. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11174. "react/async": "^4 || ^3 || ^2",
  11175. "react/promise-timer": "^1.9"
  11176. },
  11177. "type": "library",
  11178. "autoload": {
  11179. "psr-4": {
  11180. "React\\Dns\\": "src/"
  11181. }
  11182. },
  11183. "notification-url": "https://packagist.org/downloads/",
  11184. "license": [
  11185. "MIT"
  11186. ],
  11187. "authors": [
  11188. {
  11189. "name": "Christian Lück",
  11190. "email": "christian@clue.engineering",
  11191. "homepage": "https://clue.engineering/"
  11192. },
  11193. {
  11194. "name": "Cees-Jan Kiewiet",
  11195. "email": "reactphp@ceesjankiewiet.nl",
  11196. "homepage": "https://wyrihaximus.net/"
  11197. },
  11198. {
  11199. "name": "Jan Sorgalla",
  11200. "email": "jsorgalla@gmail.com",
  11201. "homepage": "https://sorgalla.com/"
  11202. },
  11203. {
  11204. "name": "Chris Boden",
  11205. "email": "cboden@gmail.com",
  11206. "homepage": "https://cboden.dev/"
  11207. }
  11208. ],
  11209. "description": "Async DNS resolver for ReactPHP",
  11210. "keywords": [
  11211. "async",
  11212. "dns",
  11213. "dns-resolver",
  11214. "reactphp"
  11215. ],
  11216. "support": {
  11217. "issues": "https://github.com/reactphp/dns/issues",
  11218. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  11219. },
  11220. "funding": [
  11221. {
  11222. "url": "https://opencollective.com/reactphp",
  11223. "type": "open_collective"
  11224. }
  11225. ],
  11226. "time": "2023-11-29T12:41:06+00:00"
  11227. },
  11228. {
  11229. "name": "react/event-loop",
  11230. "version": "v1.5.0",
  11231. "source": {
  11232. "type": "git",
  11233. "url": "https://github.com/reactphp/event-loop.git",
  11234. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  11235. },
  11236. "dist": {
  11237. "type": "zip",
  11238. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  11239. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  11240. "shasum": "",
  11241. "mirrors": [
  11242. {
  11243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11244. "preferred": true
  11245. }
  11246. ]
  11247. },
  11248. "require": {
  11249. "php": ">=5.3.0"
  11250. },
  11251. "require-dev": {
  11252. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  11253. },
  11254. "suggest": {
  11255. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  11256. },
  11257. "type": "library",
  11258. "autoload": {
  11259. "psr-4": {
  11260. "React\\EventLoop\\": "src/"
  11261. }
  11262. },
  11263. "notification-url": "https://packagist.org/downloads/",
  11264. "license": [
  11265. "MIT"
  11266. ],
  11267. "authors": [
  11268. {
  11269. "name": "Christian Lück",
  11270. "email": "christian@clue.engineering",
  11271. "homepage": "https://clue.engineering/"
  11272. },
  11273. {
  11274. "name": "Cees-Jan Kiewiet",
  11275. "email": "reactphp@ceesjankiewiet.nl",
  11276. "homepage": "https://wyrihaximus.net/"
  11277. },
  11278. {
  11279. "name": "Jan Sorgalla",
  11280. "email": "jsorgalla@gmail.com",
  11281. "homepage": "https://sorgalla.com/"
  11282. },
  11283. {
  11284. "name": "Chris Boden",
  11285. "email": "cboden@gmail.com",
  11286. "homepage": "https://cboden.dev/"
  11287. }
  11288. ],
  11289. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  11290. "keywords": [
  11291. "asynchronous",
  11292. "event-loop"
  11293. ],
  11294. "support": {
  11295. "issues": "https://github.com/reactphp/event-loop/issues",
  11296. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  11297. },
  11298. "funding": [
  11299. {
  11300. "url": "https://opencollective.com/reactphp",
  11301. "type": "open_collective"
  11302. }
  11303. ],
  11304. "time": "2023-11-13T13:48:05+00:00"
  11305. },
  11306. {
  11307. "name": "react/promise",
  11308. "version": "v3.1.0",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/reactphp/promise.git",
  11312. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  11317. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  11318. "shasum": "",
  11319. "mirrors": [
  11320. {
  11321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11322. "preferred": true
  11323. }
  11324. ]
  11325. },
  11326. "require": {
  11327. "php": ">=7.1.0"
  11328. },
  11329. "require-dev": {
  11330. "phpstan/phpstan": "1.10.39 || 1.4.10",
  11331. "phpunit/phpunit": "^9.6 || ^7.5"
  11332. },
  11333. "type": "library",
  11334. "autoload": {
  11335. "files": [
  11336. "src/functions_include.php"
  11337. ],
  11338. "psr-4": {
  11339. "React\\Promise\\": "src/"
  11340. }
  11341. },
  11342. "notification-url": "https://packagist.org/downloads/",
  11343. "license": [
  11344. "MIT"
  11345. ],
  11346. "authors": [
  11347. {
  11348. "name": "Jan Sorgalla",
  11349. "email": "jsorgalla@gmail.com",
  11350. "homepage": "https://sorgalla.com/"
  11351. },
  11352. {
  11353. "name": "Christian Lück",
  11354. "email": "christian@clue.engineering",
  11355. "homepage": "https://clue.engineering/"
  11356. },
  11357. {
  11358. "name": "Cees-Jan Kiewiet",
  11359. "email": "reactphp@ceesjankiewiet.nl",
  11360. "homepage": "https://wyrihaximus.net/"
  11361. },
  11362. {
  11363. "name": "Chris Boden",
  11364. "email": "cboden@gmail.com",
  11365. "homepage": "https://cboden.dev/"
  11366. }
  11367. ],
  11368. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  11369. "keywords": [
  11370. "promise",
  11371. "promises"
  11372. ],
  11373. "support": {
  11374. "issues": "https://github.com/reactphp/promise/issues",
  11375. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  11376. },
  11377. "funding": [
  11378. {
  11379. "url": "https://opencollective.com/reactphp",
  11380. "type": "open_collective"
  11381. }
  11382. ],
  11383. "time": "2023-11-16T16:21:57+00:00"
  11384. },
  11385. {
  11386. "name": "react/socket",
  11387. "version": "v1.15.0",
  11388. "source": {
  11389. "type": "git",
  11390. "url": "https://github.com/reactphp/socket.git",
  11391. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  11392. },
  11393. "dist": {
  11394. "type": "zip",
  11395. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  11396. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  11397. "shasum": "",
  11398. "mirrors": [
  11399. {
  11400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11401. "preferred": true
  11402. }
  11403. ]
  11404. },
  11405. "require": {
  11406. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11407. "php": ">=5.3.0",
  11408. "react/dns": "^1.11",
  11409. "react/event-loop": "^1.2",
  11410. "react/promise": "^3 || ^2.6 || ^1.2.1",
  11411. "react/stream": "^1.2"
  11412. },
  11413. "require-dev": {
  11414. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11415. "react/async": "^4 || ^3 || ^2",
  11416. "react/promise-stream": "^1.4",
  11417. "react/promise-timer": "^1.10"
  11418. },
  11419. "type": "library",
  11420. "autoload": {
  11421. "psr-4": {
  11422. "React\\Socket\\": "src/"
  11423. }
  11424. },
  11425. "notification-url": "https://packagist.org/downloads/",
  11426. "license": [
  11427. "MIT"
  11428. ],
  11429. "authors": [
  11430. {
  11431. "name": "Christian Lück",
  11432. "email": "christian@clue.engineering",
  11433. "homepage": "https://clue.engineering/"
  11434. },
  11435. {
  11436. "name": "Cees-Jan Kiewiet",
  11437. "email": "reactphp@ceesjankiewiet.nl",
  11438. "homepage": "https://wyrihaximus.net/"
  11439. },
  11440. {
  11441. "name": "Jan Sorgalla",
  11442. "email": "jsorgalla@gmail.com",
  11443. "homepage": "https://sorgalla.com/"
  11444. },
  11445. {
  11446. "name": "Chris Boden",
  11447. "email": "cboden@gmail.com",
  11448. "homepage": "https://cboden.dev/"
  11449. }
  11450. ],
  11451. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  11452. "keywords": [
  11453. "Connection",
  11454. "Socket",
  11455. "async",
  11456. "reactphp",
  11457. "stream"
  11458. ],
  11459. "support": {
  11460. "issues": "https://github.com/reactphp/socket/issues",
  11461. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  11462. },
  11463. "funding": [
  11464. {
  11465. "url": "https://opencollective.com/reactphp",
  11466. "type": "open_collective"
  11467. }
  11468. ],
  11469. "time": "2023-12-15T11:02:10+00:00"
  11470. },
  11471. {
  11472. "name": "react/stream",
  11473. "version": "1.x-dev",
  11474. "source": {
  11475. "type": "git",
  11476. "url": "https://github.com/reactphp/stream.git",
  11477. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  11478. },
  11479. "dist": {
  11480. "type": "zip",
  11481. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  11482. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  11483. "shasum": "",
  11484. "mirrors": [
  11485. {
  11486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11487. "preferred": true
  11488. }
  11489. ]
  11490. },
  11491. "require": {
  11492. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11493. "php": ">=5.3.8",
  11494. "react/event-loop": "^1.2"
  11495. },
  11496. "require-dev": {
  11497. "clue/stream-filter": "~1.2",
  11498. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  11499. },
  11500. "type": "library",
  11501. "autoload": {
  11502. "psr-4": {
  11503. "React\\Stream\\": "src/"
  11504. }
  11505. },
  11506. "notification-url": "https://packagist.org/downloads/",
  11507. "license": [
  11508. "MIT"
  11509. ],
  11510. "authors": [
  11511. {
  11512. "name": "Christian Lück",
  11513. "email": "christian@clue.engineering",
  11514. "homepage": "https://clue.engineering/"
  11515. },
  11516. {
  11517. "name": "Cees-Jan Kiewiet",
  11518. "email": "reactphp@ceesjankiewiet.nl",
  11519. "homepage": "https://wyrihaximus.net/"
  11520. },
  11521. {
  11522. "name": "Jan Sorgalla",
  11523. "email": "jsorgalla@gmail.com",
  11524. "homepage": "https://sorgalla.com/"
  11525. },
  11526. {
  11527. "name": "Chris Boden",
  11528. "email": "cboden@gmail.com",
  11529. "homepage": "https://cboden.dev/"
  11530. }
  11531. ],
  11532. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  11533. "keywords": [
  11534. "event-driven",
  11535. "io",
  11536. "non-blocking",
  11537. "pipe",
  11538. "reactphp",
  11539. "readable",
  11540. "stream",
  11541. "writable"
  11542. ],
  11543. "support": {
  11544. "issues": "https://github.com/reactphp/stream/issues",
  11545. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  11546. },
  11547. "funding": [
  11548. {
  11549. "url": "https://opencollective.com/reactphp",
  11550. "type": "open_collective"
  11551. }
  11552. ],
  11553. "time": "2024-06-11T12:45:25+00:00"
  11554. },
  11555. {
  11556. "name": "sebastian/cli-parser",
  11557. "version": "2.0.1",
  11558. "source": {
  11559. "type": "git",
  11560. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11561. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  11562. },
  11563. "dist": {
  11564. "type": "zip",
  11565. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  11566. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  11567. "shasum": "",
  11568. "mirrors": [
  11569. {
  11570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11571. "preferred": true
  11572. }
  11573. ]
  11574. },
  11575. "require": {
  11576. "php": ">=8.1"
  11577. },
  11578. "require-dev": {
  11579. "phpunit/phpunit": "^10.0"
  11580. },
  11581. "type": "library",
  11582. "extra": {
  11583. "branch-alias": {
  11584. "dev-main": "2.0-dev"
  11585. }
  11586. },
  11587. "autoload": {
  11588. "classmap": [
  11589. "src/"
  11590. ]
  11591. },
  11592. "notification-url": "https://packagist.org/downloads/",
  11593. "license": [
  11594. "BSD-3-Clause"
  11595. ],
  11596. "authors": [
  11597. {
  11598. "name": "Sebastian Bergmann",
  11599. "email": "sebastian@phpunit.de",
  11600. "role": "lead"
  11601. }
  11602. ],
  11603. "description": "Library for parsing CLI options",
  11604. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11605. "support": {
  11606. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11607. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11608. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  11609. },
  11610. "funding": [
  11611. {
  11612. "url": "https://github.com/sebastianbergmann",
  11613. "type": "github"
  11614. }
  11615. ],
  11616. "time": "2024-03-02T07:12:49+00:00"
  11617. },
  11618. {
  11619. "name": "sebastian/code-unit",
  11620. "version": "2.0.0",
  11621. "source": {
  11622. "type": "git",
  11623. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11624. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  11625. },
  11626. "dist": {
  11627. "type": "zip",
  11628. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  11629. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  11630. "shasum": "",
  11631. "mirrors": [
  11632. {
  11633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11634. "preferred": true
  11635. }
  11636. ]
  11637. },
  11638. "require": {
  11639. "php": ">=8.1"
  11640. },
  11641. "require-dev": {
  11642. "phpunit/phpunit": "^10.0"
  11643. },
  11644. "type": "library",
  11645. "extra": {
  11646. "branch-alias": {
  11647. "dev-main": "2.0-dev"
  11648. }
  11649. },
  11650. "autoload": {
  11651. "classmap": [
  11652. "src/"
  11653. ]
  11654. },
  11655. "notification-url": "https://packagist.org/downloads/",
  11656. "license": [
  11657. "BSD-3-Clause"
  11658. ],
  11659. "authors": [
  11660. {
  11661. "name": "Sebastian Bergmann",
  11662. "email": "sebastian@phpunit.de",
  11663. "role": "lead"
  11664. }
  11665. ],
  11666. "description": "Collection of value objects that represent the PHP code units",
  11667. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11668. "support": {
  11669. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11670. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  11671. },
  11672. "funding": [
  11673. {
  11674. "url": "https://github.com/sebastianbergmann",
  11675. "type": "github"
  11676. }
  11677. ],
  11678. "time": "2023-02-03T06:58:43+00:00"
  11679. },
  11680. {
  11681. "name": "sebastian/code-unit-reverse-lookup",
  11682. "version": "3.0.0",
  11683. "source": {
  11684. "type": "git",
  11685. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11686. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  11687. },
  11688. "dist": {
  11689. "type": "zip",
  11690. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  11691. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  11692. "shasum": "",
  11693. "mirrors": [
  11694. {
  11695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11696. "preferred": true
  11697. }
  11698. ]
  11699. },
  11700. "require": {
  11701. "php": ">=8.1"
  11702. },
  11703. "require-dev": {
  11704. "phpunit/phpunit": "^10.0"
  11705. },
  11706. "type": "library",
  11707. "extra": {
  11708. "branch-alias": {
  11709. "dev-main": "3.0-dev"
  11710. }
  11711. },
  11712. "autoload": {
  11713. "classmap": [
  11714. "src/"
  11715. ]
  11716. },
  11717. "notification-url": "https://packagist.org/downloads/",
  11718. "license": [
  11719. "BSD-3-Clause"
  11720. ],
  11721. "authors": [
  11722. {
  11723. "name": "Sebastian Bergmann",
  11724. "email": "sebastian@phpunit.de"
  11725. }
  11726. ],
  11727. "description": "Looks up which function or method a line of code belongs to",
  11728. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11729. "support": {
  11730. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11731. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  11732. },
  11733. "funding": [
  11734. {
  11735. "url": "https://github.com/sebastianbergmann",
  11736. "type": "github"
  11737. }
  11738. ],
  11739. "time": "2023-02-03T06:59:15+00:00"
  11740. },
  11741. {
  11742. "name": "sebastian/comparator",
  11743. "version": "5.0.3",
  11744. "source": {
  11745. "type": "git",
  11746. "url": "https://github.com/sebastianbergmann/comparator.git",
  11747. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  11748. },
  11749. "dist": {
  11750. "type": "zip",
  11751. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  11752. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  11753. "shasum": "",
  11754. "mirrors": [
  11755. {
  11756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11757. "preferred": true
  11758. }
  11759. ]
  11760. },
  11761. "require": {
  11762. "ext-dom": "*",
  11763. "ext-mbstring": "*",
  11764. "php": ">=8.1",
  11765. "sebastian/diff": "^5.0",
  11766. "sebastian/exporter": "^5.0"
  11767. },
  11768. "require-dev": {
  11769. "phpunit/phpunit": "^10.5"
  11770. },
  11771. "type": "library",
  11772. "extra": {
  11773. "branch-alias": {
  11774. "dev-main": "5.0-dev"
  11775. }
  11776. },
  11777. "autoload": {
  11778. "classmap": [
  11779. "src/"
  11780. ]
  11781. },
  11782. "notification-url": "https://packagist.org/downloads/",
  11783. "license": [
  11784. "BSD-3-Clause"
  11785. ],
  11786. "authors": [
  11787. {
  11788. "name": "Sebastian Bergmann",
  11789. "email": "sebastian@phpunit.de"
  11790. },
  11791. {
  11792. "name": "Jeff Welch",
  11793. "email": "whatthejeff@gmail.com"
  11794. },
  11795. {
  11796. "name": "Volker Dusch",
  11797. "email": "github@wallbash.com"
  11798. },
  11799. {
  11800. "name": "Bernhard Schussek",
  11801. "email": "bschussek@2bepublished.at"
  11802. }
  11803. ],
  11804. "description": "Provides the functionality to compare PHP values for equality",
  11805. "homepage": "https://github.com/sebastianbergmann/comparator",
  11806. "keywords": [
  11807. "comparator",
  11808. "compare",
  11809. "equality"
  11810. ],
  11811. "support": {
  11812. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11813. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11814. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  11815. },
  11816. "funding": [
  11817. {
  11818. "url": "https://github.com/sebastianbergmann",
  11819. "type": "github"
  11820. }
  11821. ],
  11822. "time": "2024-10-18T14:56:07+00:00"
  11823. },
  11824. {
  11825. "name": "sebastian/complexity",
  11826. "version": "3.2.0",
  11827. "source": {
  11828. "type": "git",
  11829. "url": "https://github.com/sebastianbergmann/complexity.git",
  11830. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  11831. },
  11832. "dist": {
  11833. "type": "zip",
  11834. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  11835. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  11836. "shasum": "",
  11837. "mirrors": [
  11838. {
  11839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11840. "preferred": true
  11841. }
  11842. ]
  11843. },
  11844. "require": {
  11845. "nikic/php-parser": "^4.18 || ^5.0",
  11846. "php": ">=8.1"
  11847. },
  11848. "require-dev": {
  11849. "phpunit/phpunit": "^10.0"
  11850. },
  11851. "type": "library",
  11852. "extra": {
  11853. "branch-alias": {
  11854. "dev-main": "3.2-dev"
  11855. }
  11856. },
  11857. "autoload": {
  11858. "classmap": [
  11859. "src/"
  11860. ]
  11861. },
  11862. "notification-url": "https://packagist.org/downloads/",
  11863. "license": [
  11864. "BSD-3-Clause"
  11865. ],
  11866. "authors": [
  11867. {
  11868. "name": "Sebastian Bergmann",
  11869. "email": "sebastian@phpunit.de",
  11870. "role": "lead"
  11871. }
  11872. ],
  11873. "description": "Library for calculating the complexity of PHP code units",
  11874. "homepage": "https://github.com/sebastianbergmann/complexity",
  11875. "support": {
  11876. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11877. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11878. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11879. },
  11880. "funding": [
  11881. {
  11882. "url": "https://github.com/sebastianbergmann",
  11883. "type": "github"
  11884. }
  11885. ],
  11886. "time": "2023-12-21T08:37:17+00:00"
  11887. },
  11888. {
  11889. "name": "sebastian/diff",
  11890. "version": "5.1.1",
  11891. "source": {
  11892. "type": "git",
  11893. "url": "https://github.com/sebastianbergmann/diff.git",
  11894. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11895. },
  11896. "dist": {
  11897. "type": "zip",
  11898. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11899. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11900. "shasum": "",
  11901. "mirrors": [
  11902. {
  11903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11904. "preferred": true
  11905. }
  11906. ]
  11907. },
  11908. "require": {
  11909. "php": ">=8.1"
  11910. },
  11911. "require-dev": {
  11912. "phpunit/phpunit": "^10.0",
  11913. "symfony/process": "^6.4"
  11914. },
  11915. "type": "library",
  11916. "extra": {
  11917. "branch-alias": {
  11918. "dev-main": "5.1-dev"
  11919. }
  11920. },
  11921. "autoload": {
  11922. "classmap": [
  11923. "src/"
  11924. ]
  11925. },
  11926. "notification-url": "https://packagist.org/downloads/",
  11927. "license": [
  11928. "BSD-3-Clause"
  11929. ],
  11930. "authors": [
  11931. {
  11932. "name": "Sebastian Bergmann",
  11933. "email": "sebastian@phpunit.de"
  11934. },
  11935. {
  11936. "name": "Kore Nordmann",
  11937. "email": "mail@kore-nordmann.de"
  11938. }
  11939. ],
  11940. "description": "Diff implementation",
  11941. "homepage": "https://github.com/sebastianbergmann/diff",
  11942. "keywords": [
  11943. "diff",
  11944. "udiff",
  11945. "unidiff",
  11946. "unified diff"
  11947. ],
  11948. "support": {
  11949. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11950. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11951. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11952. },
  11953. "funding": [
  11954. {
  11955. "url": "https://github.com/sebastianbergmann",
  11956. "type": "github"
  11957. }
  11958. ],
  11959. "time": "2024-03-02T07:15:17+00:00"
  11960. },
  11961. {
  11962. "name": "sebastian/environment",
  11963. "version": "6.1.0",
  11964. "source": {
  11965. "type": "git",
  11966. "url": "https://github.com/sebastianbergmann/environment.git",
  11967. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11968. },
  11969. "dist": {
  11970. "type": "zip",
  11971. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11972. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11973. "shasum": "",
  11974. "mirrors": [
  11975. {
  11976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11977. "preferred": true
  11978. }
  11979. ]
  11980. },
  11981. "require": {
  11982. "php": ">=8.1"
  11983. },
  11984. "require-dev": {
  11985. "phpunit/phpunit": "^10.0"
  11986. },
  11987. "suggest": {
  11988. "ext-posix": "*"
  11989. },
  11990. "type": "library",
  11991. "extra": {
  11992. "branch-alias": {
  11993. "dev-main": "6.1-dev"
  11994. }
  11995. },
  11996. "autoload": {
  11997. "classmap": [
  11998. "src/"
  11999. ]
  12000. },
  12001. "notification-url": "https://packagist.org/downloads/",
  12002. "license": [
  12003. "BSD-3-Clause"
  12004. ],
  12005. "authors": [
  12006. {
  12007. "name": "Sebastian Bergmann",
  12008. "email": "sebastian@phpunit.de"
  12009. }
  12010. ],
  12011. "description": "Provides functionality to handle HHVM/PHP environments",
  12012. "homepage": "https://github.com/sebastianbergmann/environment",
  12013. "keywords": [
  12014. "Xdebug",
  12015. "environment",
  12016. "hhvm"
  12017. ],
  12018. "support": {
  12019. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12020. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  12021. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  12022. },
  12023. "funding": [
  12024. {
  12025. "url": "https://github.com/sebastianbergmann",
  12026. "type": "github"
  12027. }
  12028. ],
  12029. "time": "2024-03-23T08:47:14+00:00"
  12030. },
  12031. {
  12032. "name": "sebastian/exporter",
  12033. "version": "5.1.2",
  12034. "source": {
  12035. "type": "git",
  12036. "url": "https://github.com/sebastianbergmann/exporter.git",
  12037. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  12038. },
  12039. "dist": {
  12040. "type": "zip",
  12041. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  12042. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  12043. "shasum": "",
  12044. "mirrors": [
  12045. {
  12046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12047. "preferred": true
  12048. }
  12049. ]
  12050. },
  12051. "require": {
  12052. "ext-mbstring": "*",
  12053. "php": ">=8.1",
  12054. "sebastian/recursion-context": "^5.0"
  12055. },
  12056. "require-dev": {
  12057. "phpunit/phpunit": "^10.0"
  12058. },
  12059. "type": "library",
  12060. "extra": {
  12061. "branch-alias": {
  12062. "dev-main": "5.1-dev"
  12063. }
  12064. },
  12065. "autoload": {
  12066. "classmap": [
  12067. "src/"
  12068. ]
  12069. },
  12070. "notification-url": "https://packagist.org/downloads/",
  12071. "license": [
  12072. "BSD-3-Clause"
  12073. ],
  12074. "authors": [
  12075. {
  12076. "name": "Sebastian Bergmann",
  12077. "email": "sebastian@phpunit.de"
  12078. },
  12079. {
  12080. "name": "Jeff Welch",
  12081. "email": "whatthejeff@gmail.com"
  12082. },
  12083. {
  12084. "name": "Volker Dusch",
  12085. "email": "github@wallbash.com"
  12086. },
  12087. {
  12088. "name": "Adam Harvey",
  12089. "email": "aharvey@php.net"
  12090. },
  12091. {
  12092. "name": "Bernhard Schussek",
  12093. "email": "bschussek@gmail.com"
  12094. }
  12095. ],
  12096. "description": "Provides the functionality to export PHP variables for visualization",
  12097. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12098. "keywords": [
  12099. "export",
  12100. "exporter"
  12101. ],
  12102. "support": {
  12103. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12104. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12105. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  12106. },
  12107. "funding": [
  12108. {
  12109. "url": "https://github.com/sebastianbergmann",
  12110. "type": "github"
  12111. }
  12112. ],
  12113. "time": "2024-03-02T07:17:12+00:00"
  12114. },
  12115. {
  12116. "name": "sebastian/global-state",
  12117. "version": "6.0.2",
  12118. "source": {
  12119. "type": "git",
  12120. "url": "https://github.com/sebastianbergmann/global-state.git",
  12121. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  12122. },
  12123. "dist": {
  12124. "type": "zip",
  12125. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  12126. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  12127. "shasum": "",
  12128. "mirrors": [
  12129. {
  12130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12131. "preferred": true
  12132. }
  12133. ]
  12134. },
  12135. "require": {
  12136. "php": ">=8.1",
  12137. "sebastian/object-reflector": "^3.0",
  12138. "sebastian/recursion-context": "^5.0"
  12139. },
  12140. "require-dev": {
  12141. "ext-dom": "*",
  12142. "phpunit/phpunit": "^10.0"
  12143. },
  12144. "type": "library",
  12145. "extra": {
  12146. "branch-alias": {
  12147. "dev-main": "6.0-dev"
  12148. }
  12149. },
  12150. "autoload": {
  12151. "classmap": [
  12152. "src/"
  12153. ]
  12154. },
  12155. "notification-url": "https://packagist.org/downloads/",
  12156. "license": [
  12157. "BSD-3-Clause"
  12158. ],
  12159. "authors": [
  12160. {
  12161. "name": "Sebastian Bergmann",
  12162. "email": "sebastian@phpunit.de"
  12163. }
  12164. ],
  12165. "description": "Snapshotting of global state",
  12166. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12167. "keywords": [
  12168. "global state"
  12169. ],
  12170. "support": {
  12171. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12172. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12173. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  12174. },
  12175. "funding": [
  12176. {
  12177. "url": "https://github.com/sebastianbergmann",
  12178. "type": "github"
  12179. }
  12180. ],
  12181. "time": "2024-03-02T07:19:19+00:00"
  12182. },
  12183. {
  12184. "name": "sebastian/lines-of-code",
  12185. "version": "2.0.2",
  12186. "source": {
  12187. "type": "git",
  12188. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12189. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  12190. },
  12191. "dist": {
  12192. "type": "zip",
  12193. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  12194. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  12195. "shasum": "",
  12196. "mirrors": [
  12197. {
  12198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12199. "preferred": true
  12200. }
  12201. ]
  12202. },
  12203. "require": {
  12204. "nikic/php-parser": "^4.18 || ^5.0",
  12205. "php": ">=8.1"
  12206. },
  12207. "require-dev": {
  12208. "phpunit/phpunit": "^10.0"
  12209. },
  12210. "type": "library",
  12211. "extra": {
  12212. "branch-alias": {
  12213. "dev-main": "2.0-dev"
  12214. }
  12215. },
  12216. "autoload": {
  12217. "classmap": [
  12218. "src/"
  12219. ]
  12220. },
  12221. "notification-url": "https://packagist.org/downloads/",
  12222. "license": [
  12223. "BSD-3-Clause"
  12224. ],
  12225. "authors": [
  12226. {
  12227. "name": "Sebastian Bergmann",
  12228. "email": "sebastian@phpunit.de",
  12229. "role": "lead"
  12230. }
  12231. ],
  12232. "description": "Library for counting the lines of code in PHP source code",
  12233. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12234. "support": {
  12235. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12236. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12237. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  12238. },
  12239. "funding": [
  12240. {
  12241. "url": "https://github.com/sebastianbergmann",
  12242. "type": "github"
  12243. }
  12244. ],
  12245. "time": "2023-12-21T08:38:20+00:00"
  12246. },
  12247. {
  12248. "name": "sebastian/object-enumerator",
  12249. "version": "5.0.0",
  12250. "source": {
  12251. "type": "git",
  12252. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12253. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  12254. },
  12255. "dist": {
  12256. "type": "zip",
  12257. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  12258. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  12259. "shasum": "",
  12260. "mirrors": [
  12261. {
  12262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12263. "preferred": true
  12264. }
  12265. ]
  12266. },
  12267. "require": {
  12268. "php": ">=8.1",
  12269. "sebastian/object-reflector": "^3.0",
  12270. "sebastian/recursion-context": "^5.0"
  12271. },
  12272. "require-dev": {
  12273. "phpunit/phpunit": "^10.0"
  12274. },
  12275. "type": "library",
  12276. "extra": {
  12277. "branch-alias": {
  12278. "dev-main": "5.0-dev"
  12279. }
  12280. },
  12281. "autoload": {
  12282. "classmap": [
  12283. "src/"
  12284. ]
  12285. },
  12286. "notification-url": "https://packagist.org/downloads/",
  12287. "license": [
  12288. "BSD-3-Clause"
  12289. ],
  12290. "authors": [
  12291. {
  12292. "name": "Sebastian Bergmann",
  12293. "email": "sebastian@phpunit.de"
  12294. }
  12295. ],
  12296. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12297. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12298. "support": {
  12299. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12300. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  12301. },
  12302. "funding": [
  12303. {
  12304. "url": "https://github.com/sebastianbergmann",
  12305. "type": "github"
  12306. }
  12307. ],
  12308. "time": "2023-02-03T07:08:32+00:00"
  12309. },
  12310. {
  12311. "name": "sebastian/object-reflector",
  12312. "version": "3.0.0",
  12313. "source": {
  12314. "type": "git",
  12315. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12316. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  12317. },
  12318. "dist": {
  12319. "type": "zip",
  12320. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  12321. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  12322. "shasum": "",
  12323. "mirrors": [
  12324. {
  12325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12326. "preferred": true
  12327. }
  12328. ]
  12329. },
  12330. "require": {
  12331. "php": ">=8.1"
  12332. },
  12333. "require-dev": {
  12334. "phpunit/phpunit": "^10.0"
  12335. },
  12336. "type": "library",
  12337. "extra": {
  12338. "branch-alias": {
  12339. "dev-main": "3.0-dev"
  12340. }
  12341. },
  12342. "autoload": {
  12343. "classmap": [
  12344. "src/"
  12345. ]
  12346. },
  12347. "notification-url": "https://packagist.org/downloads/",
  12348. "license": [
  12349. "BSD-3-Clause"
  12350. ],
  12351. "authors": [
  12352. {
  12353. "name": "Sebastian Bergmann",
  12354. "email": "sebastian@phpunit.de"
  12355. }
  12356. ],
  12357. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12358. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12359. "support": {
  12360. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12361. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  12362. },
  12363. "funding": [
  12364. {
  12365. "url": "https://github.com/sebastianbergmann",
  12366. "type": "github"
  12367. }
  12368. ],
  12369. "time": "2023-02-03T07:06:18+00:00"
  12370. },
  12371. {
  12372. "name": "sebastian/recursion-context",
  12373. "version": "5.0.0",
  12374. "source": {
  12375. "type": "git",
  12376. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12377. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  12378. },
  12379. "dist": {
  12380. "type": "zip",
  12381. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  12382. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  12383. "shasum": "",
  12384. "mirrors": [
  12385. {
  12386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12387. "preferred": true
  12388. }
  12389. ]
  12390. },
  12391. "require": {
  12392. "php": ">=8.1"
  12393. },
  12394. "require-dev": {
  12395. "phpunit/phpunit": "^10.0"
  12396. },
  12397. "type": "library",
  12398. "extra": {
  12399. "branch-alias": {
  12400. "dev-main": "5.0-dev"
  12401. }
  12402. },
  12403. "autoload": {
  12404. "classmap": [
  12405. "src/"
  12406. ]
  12407. },
  12408. "notification-url": "https://packagist.org/downloads/",
  12409. "license": [
  12410. "BSD-3-Clause"
  12411. ],
  12412. "authors": [
  12413. {
  12414. "name": "Sebastian Bergmann",
  12415. "email": "sebastian@phpunit.de"
  12416. },
  12417. {
  12418. "name": "Jeff Welch",
  12419. "email": "whatthejeff@gmail.com"
  12420. },
  12421. {
  12422. "name": "Adam Harvey",
  12423. "email": "aharvey@php.net"
  12424. }
  12425. ],
  12426. "description": "Provides functionality to recursively process PHP variables",
  12427. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12428. "support": {
  12429. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12430. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  12431. },
  12432. "funding": [
  12433. {
  12434. "url": "https://github.com/sebastianbergmann",
  12435. "type": "github"
  12436. }
  12437. ],
  12438. "time": "2023-02-03T07:05:40+00:00"
  12439. },
  12440. {
  12441. "name": "sebastian/type",
  12442. "version": "4.0.0",
  12443. "source": {
  12444. "type": "git",
  12445. "url": "https://github.com/sebastianbergmann/type.git",
  12446. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  12447. },
  12448. "dist": {
  12449. "type": "zip",
  12450. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  12451. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  12452. "shasum": "",
  12453. "mirrors": [
  12454. {
  12455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12456. "preferred": true
  12457. }
  12458. ]
  12459. },
  12460. "require": {
  12461. "php": ">=8.1"
  12462. },
  12463. "require-dev": {
  12464. "phpunit/phpunit": "^10.0"
  12465. },
  12466. "type": "library",
  12467. "extra": {
  12468. "branch-alias": {
  12469. "dev-main": "4.0-dev"
  12470. }
  12471. },
  12472. "autoload": {
  12473. "classmap": [
  12474. "src/"
  12475. ]
  12476. },
  12477. "notification-url": "https://packagist.org/downloads/",
  12478. "license": [
  12479. "BSD-3-Clause"
  12480. ],
  12481. "authors": [
  12482. {
  12483. "name": "Sebastian Bergmann",
  12484. "email": "sebastian@phpunit.de",
  12485. "role": "lead"
  12486. }
  12487. ],
  12488. "description": "Collection of value objects that represent the types of the PHP type system",
  12489. "homepage": "https://github.com/sebastianbergmann/type",
  12490. "support": {
  12491. "issues": "https://github.com/sebastianbergmann/type/issues",
  12492. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  12493. },
  12494. "funding": [
  12495. {
  12496. "url": "https://github.com/sebastianbergmann",
  12497. "type": "github"
  12498. }
  12499. ],
  12500. "time": "2023-02-03T07:10:45+00:00"
  12501. },
  12502. {
  12503. "name": "sebastian/version",
  12504. "version": "4.0.1",
  12505. "source": {
  12506. "type": "git",
  12507. "url": "https://github.com/sebastianbergmann/version.git",
  12508. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  12509. },
  12510. "dist": {
  12511. "type": "zip",
  12512. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  12513. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  12514. "shasum": "",
  12515. "mirrors": [
  12516. {
  12517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12518. "preferred": true
  12519. }
  12520. ]
  12521. },
  12522. "require": {
  12523. "php": ">=8.1"
  12524. },
  12525. "type": "library",
  12526. "extra": {
  12527. "branch-alias": {
  12528. "dev-main": "4.0-dev"
  12529. }
  12530. },
  12531. "autoload": {
  12532. "classmap": [
  12533. "src/"
  12534. ]
  12535. },
  12536. "notification-url": "https://packagist.org/downloads/",
  12537. "license": [
  12538. "BSD-3-Clause"
  12539. ],
  12540. "authors": [
  12541. {
  12542. "name": "Sebastian Bergmann",
  12543. "email": "sebastian@phpunit.de",
  12544. "role": "lead"
  12545. }
  12546. ],
  12547. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12548. "homepage": "https://github.com/sebastianbergmann/version",
  12549. "support": {
  12550. "issues": "https://github.com/sebastianbergmann/version/issues",
  12551. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  12552. },
  12553. "funding": [
  12554. {
  12555. "url": "https://github.com/sebastianbergmann",
  12556. "type": "github"
  12557. }
  12558. ],
  12559. "time": "2023-02-07T11:34:05+00:00"
  12560. },
  12561. {
  12562. "name": "swoole/ide-helper",
  12563. "version": "5.1.7",
  12564. "source": {
  12565. "type": "git",
  12566. "url": "https://github.com/swoole/ide-helper.git",
  12567. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  12568. },
  12569. "dist": {
  12570. "type": "zip",
  12571. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  12572. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  12573. "shasum": "",
  12574. "mirrors": [
  12575. {
  12576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12577. "preferred": true
  12578. }
  12579. ]
  12580. },
  12581. "type": "library",
  12582. "notification-url": "https://packagist.org/downloads/",
  12583. "license": [
  12584. "Apache-2.0"
  12585. ],
  12586. "authors": [
  12587. {
  12588. "name": "Team Swoole",
  12589. "email": "team@swoole.com"
  12590. }
  12591. ],
  12592. "description": "IDE help files for Swoole.",
  12593. "support": {
  12594. "issues": "https://github.com/swoole/ide-helper/issues",
  12595. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  12596. },
  12597. "time": "2025-03-22T23:53:02+00:00"
  12598. },
  12599. {
  12600. "name": "symfony/event-dispatcher",
  12601. "version": "v6.4.13",
  12602. "source": {
  12603. "type": "git",
  12604. "url": "https://github.com/symfony/event-dispatcher.git",
  12605. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  12606. },
  12607. "dist": {
  12608. "type": "zip",
  12609. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  12610. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  12611. "shasum": "",
  12612. "mirrors": [
  12613. {
  12614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12615. "preferred": true
  12616. }
  12617. ]
  12618. },
  12619. "require": {
  12620. "php": ">=8.1",
  12621. "symfony/event-dispatcher-contracts": "^2.5|^3"
  12622. },
  12623. "conflict": {
  12624. "symfony/dependency-injection": "<5.4",
  12625. "symfony/service-contracts": "<2.5"
  12626. },
  12627. "provide": {
  12628. "psr/event-dispatcher-implementation": "1.0",
  12629. "symfony/event-dispatcher-implementation": "2.0|3.0"
  12630. },
  12631. "require-dev": {
  12632. "psr/log": "^1|^2|^3",
  12633. "symfony/config": "^5.4|^6.0|^7.0",
  12634. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12635. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12636. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12637. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12638. "symfony/service-contracts": "^2.5|^3",
  12639. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  12640. },
  12641. "type": "library",
  12642. "autoload": {
  12643. "psr-4": {
  12644. "Symfony\\Component\\EventDispatcher\\": ""
  12645. },
  12646. "exclude-from-classmap": [
  12647. "/Tests/"
  12648. ]
  12649. },
  12650. "notification-url": "https://packagist.org/downloads/",
  12651. "license": [
  12652. "MIT"
  12653. ],
  12654. "authors": [
  12655. {
  12656. "name": "Fabien Potencier",
  12657. "email": "fabien@symfony.com"
  12658. },
  12659. {
  12660. "name": "Symfony Community",
  12661. "homepage": "https://symfony.com/contributors"
  12662. }
  12663. ],
  12664. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  12665. "homepage": "https://symfony.com",
  12666. "support": {
  12667. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  12668. },
  12669. "funding": [
  12670. {
  12671. "url": "https://symfony.com/sponsor",
  12672. "type": "custom"
  12673. },
  12674. {
  12675. "url": "https://github.com/fabpot",
  12676. "type": "github"
  12677. },
  12678. {
  12679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12680. "type": "tidelift"
  12681. }
  12682. ],
  12683. "time": "2024-09-25T14:18:03+00:00"
  12684. },
  12685. {
  12686. "name": "symfony/event-dispatcher-contracts",
  12687. "version": "v3.5.1",
  12688. "source": {
  12689. "type": "git",
  12690. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  12691. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  12692. },
  12693. "dist": {
  12694. "type": "zip",
  12695. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  12696. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  12697. "shasum": "",
  12698. "mirrors": [
  12699. {
  12700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12701. "preferred": true
  12702. }
  12703. ]
  12704. },
  12705. "require": {
  12706. "php": ">=8.1",
  12707. "psr/event-dispatcher": "^1"
  12708. },
  12709. "type": "library",
  12710. "extra": {
  12711. "thanks": {
  12712. "url": "https://github.com/symfony/contracts",
  12713. "name": "symfony/contracts"
  12714. },
  12715. "branch-alias": {
  12716. "dev-main": "3.5-dev"
  12717. }
  12718. },
  12719. "autoload": {
  12720. "psr-4": {
  12721. "Symfony\\Contracts\\EventDispatcher\\": ""
  12722. }
  12723. },
  12724. "notification-url": "https://packagist.org/downloads/",
  12725. "license": [
  12726. "MIT"
  12727. ],
  12728. "authors": [
  12729. {
  12730. "name": "Nicolas Grekas",
  12731. "email": "p@tchwork.com"
  12732. },
  12733. {
  12734. "name": "Symfony Community",
  12735. "homepage": "https://symfony.com/contributors"
  12736. }
  12737. ],
  12738. "description": "Generic abstractions related to dispatching event",
  12739. "homepage": "https://symfony.com",
  12740. "keywords": [
  12741. "abstractions",
  12742. "contracts",
  12743. "decoupling",
  12744. "interfaces",
  12745. "interoperability",
  12746. "standards"
  12747. ],
  12748. "support": {
  12749. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  12750. },
  12751. "funding": [
  12752. {
  12753. "url": "https://symfony.com/sponsor",
  12754. "type": "custom"
  12755. },
  12756. {
  12757. "url": "https://github.com/fabpot",
  12758. "type": "github"
  12759. },
  12760. {
  12761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12762. "type": "tidelift"
  12763. }
  12764. ],
  12765. "time": "2024-09-25T14:20:29+00:00"
  12766. },
  12767. {
  12768. "name": "symfony/filesystem",
  12769. "version": "v6.4.13",
  12770. "source": {
  12771. "type": "git",
  12772. "url": "https://github.com/symfony/filesystem.git",
  12773. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  12774. },
  12775. "dist": {
  12776. "type": "zip",
  12777. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  12778. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  12779. "shasum": "",
  12780. "mirrors": [
  12781. {
  12782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12783. "preferred": true
  12784. }
  12785. ]
  12786. },
  12787. "require": {
  12788. "php": ">=8.1",
  12789. "symfony/polyfill-ctype": "~1.8",
  12790. "symfony/polyfill-mbstring": "~1.8"
  12791. },
  12792. "require-dev": {
  12793. "symfony/process": "^5.4|^6.4|^7.0"
  12794. },
  12795. "type": "library",
  12796. "autoload": {
  12797. "psr-4": {
  12798. "Symfony\\Component\\Filesystem\\": ""
  12799. },
  12800. "exclude-from-classmap": [
  12801. "/Tests/"
  12802. ]
  12803. },
  12804. "notification-url": "https://packagist.org/downloads/",
  12805. "license": [
  12806. "MIT"
  12807. ],
  12808. "authors": [
  12809. {
  12810. "name": "Fabien Potencier",
  12811. "email": "fabien@symfony.com"
  12812. },
  12813. {
  12814. "name": "Symfony Community",
  12815. "homepage": "https://symfony.com/contributors"
  12816. }
  12817. ],
  12818. "description": "Provides basic utilities for the filesystem",
  12819. "homepage": "https://symfony.com",
  12820. "support": {
  12821. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  12822. },
  12823. "funding": [
  12824. {
  12825. "url": "https://symfony.com/sponsor",
  12826. "type": "custom"
  12827. },
  12828. {
  12829. "url": "https://github.com/fabpot",
  12830. "type": "github"
  12831. },
  12832. {
  12833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12834. "type": "tidelift"
  12835. }
  12836. ],
  12837. "time": "2024-10-25T15:07:50+00:00"
  12838. },
  12839. {
  12840. "name": "symfony/http-foundation",
  12841. "version": "v6.4.21",
  12842. "source": {
  12843. "type": "git",
  12844. "url": "https://github.com/symfony/http-foundation.git",
  12845. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  12846. },
  12847. "dist": {
  12848. "type": "zip",
  12849. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  12850. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  12851. "shasum": "",
  12852. "mirrors": [
  12853. {
  12854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12855. "preferred": true
  12856. }
  12857. ]
  12858. },
  12859. "require": {
  12860. "php": ">=8.1",
  12861. "symfony/deprecation-contracts": "^2.5|^3",
  12862. "symfony/polyfill-mbstring": "~1.1",
  12863. "symfony/polyfill-php83": "^1.27"
  12864. },
  12865. "conflict": {
  12866. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  12867. },
  12868. "require-dev": {
  12869. "doctrine/dbal": "^2.13.1|^3|^4",
  12870. "predis/predis": "^1.1|^2.0",
  12871. "symfony/cache": "^6.4.12|^7.1.5",
  12872. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12873. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12874. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  12875. "symfony/mime": "^5.4|^6.0|^7.0",
  12876. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  12877. },
  12878. "type": "library",
  12879. "autoload": {
  12880. "psr-4": {
  12881. "Symfony\\Component\\HttpFoundation\\": ""
  12882. },
  12883. "exclude-from-classmap": [
  12884. "/Tests/"
  12885. ]
  12886. },
  12887. "notification-url": "https://packagist.org/downloads/",
  12888. "license": [
  12889. "MIT"
  12890. ],
  12891. "authors": [
  12892. {
  12893. "name": "Fabien Potencier",
  12894. "email": "fabien@symfony.com"
  12895. },
  12896. {
  12897. "name": "Symfony Community",
  12898. "homepage": "https://symfony.com/contributors"
  12899. }
  12900. ],
  12901. "description": "Defines an object-oriented layer for the HTTP specification",
  12902. "homepage": "https://symfony.com",
  12903. "support": {
  12904. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  12905. },
  12906. "funding": [
  12907. {
  12908. "url": "https://symfony.com/sponsor",
  12909. "type": "custom"
  12910. },
  12911. {
  12912. "url": "https://github.com/fabpot",
  12913. "type": "github"
  12914. },
  12915. {
  12916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12917. "type": "tidelift"
  12918. }
  12919. ],
  12920. "time": "2025-04-27T13:27:38+00:00"
  12921. },
  12922. {
  12923. "name": "symfony/options-resolver",
  12924. "version": "v6.4.16",
  12925. "source": {
  12926. "type": "git",
  12927. "url": "https://github.com/symfony/options-resolver.git",
  12928. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  12929. },
  12930. "dist": {
  12931. "type": "zip",
  12932. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  12933. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  12934. "shasum": "",
  12935. "mirrors": [
  12936. {
  12937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12938. "preferred": true
  12939. }
  12940. ]
  12941. },
  12942. "require": {
  12943. "php": ">=8.1",
  12944. "symfony/deprecation-contracts": "^2.5|^3"
  12945. },
  12946. "type": "library",
  12947. "autoload": {
  12948. "psr-4": {
  12949. "Symfony\\Component\\OptionsResolver\\": ""
  12950. },
  12951. "exclude-from-classmap": [
  12952. "/Tests/"
  12953. ]
  12954. },
  12955. "notification-url": "https://packagist.org/downloads/",
  12956. "license": [
  12957. "MIT"
  12958. ],
  12959. "authors": [
  12960. {
  12961. "name": "Fabien Potencier",
  12962. "email": "fabien@symfony.com"
  12963. },
  12964. {
  12965. "name": "Symfony Community",
  12966. "homepage": "https://symfony.com/contributors"
  12967. }
  12968. ],
  12969. "description": "Provides an improved replacement for the array_replace PHP function",
  12970. "homepage": "https://symfony.com",
  12971. "keywords": [
  12972. "config",
  12973. "configuration",
  12974. "options"
  12975. ],
  12976. "support": {
  12977. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  12978. },
  12979. "funding": [
  12980. {
  12981. "url": "https://symfony.com/sponsor",
  12982. "type": "custom"
  12983. },
  12984. {
  12985. "url": "https://github.com/fabpot",
  12986. "type": "github"
  12987. },
  12988. {
  12989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12990. "type": "tidelift"
  12991. }
  12992. ],
  12993. "time": "2024-11-20T10:57:02+00:00"
  12994. },
  12995. {
  12996. "name": "symfony/polyfill-php81",
  12997. "version": "v1.31.0",
  12998. "source": {
  12999. "type": "git",
  13000. "url": "https://github.com/symfony/polyfill-php81.git",
  13001. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  13002. },
  13003. "dist": {
  13004. "type": "zip",
  13005. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13006. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  13007. "shasum": "",
  13008. "mirrors": [
  13009. {
  13010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13011. "preferred": true
  13012. }
  13013. ]
  13014. },
  13015. "require": {
  13016. "php": ">=7.2"
  13017. },
  13018. "type": "library",
  13019. "extra": {
  13020. "thanks": {
  13021. "url": "https://github.com/symfony/polyfill",
  13022. "name": "symfony/polyfill"
  13023. }
  13024. },
  13025. "autoload": {
  13026. "files": [
  13027. "bootstrap.php"
  13028. ],
  13029. "psr-4": {
  13030. "Symfony\\Polyfill\\Php81\\": ""
  13031. },
  13032. "classmap": [
  13033. "Resources/stubs"
  13034. ]
  13035. },
  13036. "notification-url": "https://packagist.org/downloads/",
  13037. "license": [
  13038. "MIT"
  13039. ],
  13040. "authors": [
  13041. {
  13042. "name": "Nicolas Grekas",
  13043. "email": "p@tchwork.com"
  13044. },
  13045. {
  13046. "name": "Symfony Community",
  13047. "homepage": "https://symfony.com/contributors"
  13048. }
  13049. ],
  13050. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  13051. "homepage": "https://symfony.com",
  13052. "keywords": [
  13053. "compatibility",
  13054. "polyfill",
  13055. "portable",
  13056. "shim"
  13057. ],
  13058. "support": {
  13059. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  13060. },
  13061. "funding": [
  13062. {
  13063. "url": "https://symfony.com/sponsor",
  13064. "type": "custom"
  13065. },
  13066. {
  13067. "url": "https://github.com/fabpot",
  13068. "type": "github"
  13069. },
  13070. {
  13071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13072. "type": "tidelift"
  13073. }
  13074. ],
  13075. "time": "2024-09-09T11:45:10+00:00"
  13076. },
  13077. {
  13078. "name": "symfony/polyfill-php83",
  13079. "version": "v1.31.0",
  13080. "source": {
  13081. "type": "git",
  13082. "url": "https://github.com/symfony/polyfill-php83.git",
  13083. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  13084. },
  13085. "dist": {
  13086. "type": "zip",
  13087. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  13088. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  13089. "shasum": "",
  13090. "mirrors": [
  13091. {
  13092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13093. "preferred": true
  13094. }
  13095. ]
  13096. },
  13097. "require": {
  13098. "php": ">=7.2"
  13099. },
  13100. "type": "library",
  13101. "extra": {
  13102. "thanks": {
  13103. "url": "https://github.com/symfony/polyfill",
  13104. "name": "symfony/polyfill"
  13105. }
  13106. },
  13107. "autoload": {
  13108. "files": [
  13109. "bootstrap.php"
  13110. ],
  13111. "psr-4": {
  13112. "Symfony\\Polyfill\\Php83\\": ""
  13113. },
  13114. "classmap": [
  13115. "Resources/stubs"
  13116. ]
  13117. },
  13118. "notification-url": "https://packagist.org/downloads/",
  13119. "license": [
  13120. "MIT"
  13121. ],
  13122. "authors": [
  13123. {
  13124. "name": "Nicolas Grekas",
  13125. "email": "p@tchwork.com"
  13126. },
  13127. {
  13128. "name": "Symfony Community",
  13129. "homepage": "https://symfony.com/contributors"
  13130. }
  13131. ],
  13132. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  13133. "homepage": "https://symfony.com",
  13134. "keywords": [
  13135. "compatibility",
  13136. "polyfill",
  13137. "portable",
  13138. "shim"
  13139. ],
  13140. "support": {
  13141. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  13142. },
  13143. "funding": [
  13144. {
  13145. "url": "https://symfony.com/sponsor",
  13146. "type": "custom"
  13147. },
  13148. {
  13149. "url": "https://github.com/fabpot",
  13150. "type": "github"
  13151. },
  13152. {
  13153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13154. "type": "tidelift"
  13155. }
  13156. ],
  13157. "time": "2024-09-09T11:45:10+00:00"
  13158. },
  13159. {
  13160. "name": "symfony/process",
  13161. "version": "v6.4.20",
  13162. "source": {
  13163. "type": "git",
  13164. "url": "https://github.com/symfony/process.git",
  13165. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  13166. },
  13167. "dist": {
  13168. "type": "zip",
  13169. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  13170. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  13171. "shasum": "",
  13172. "mirrors": [
  13173. {
  13174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13175. "preferred": true
  13176. }
  13177. ]
  13178. },
  13179. "require": {
  13180. "php": ">=8.1"
  13181. },
  13182. "type": "library",
  13183. "autoload": {
  13184. "psr-4": {
  13185. "Symfony\\Component\\Process\\": ""
  13186. },
  13187. "exclude-from-classmap": [
  13188. "/Tests/"
  13189. ]
  13190. },
  13191. "notification-url": "https://packagist.org/downloads/",
  13192. "license": [
  13193. "MIT"
  13194. ],
  13195. "authors": [
  13196. {
  13197. "name": "Fabien Potencier",
  13198. "email": "fabien@symfony.com"
  13199. },
  13200. {
  13201. "name": "Symfony Community",
  13202. "homepage": "https://symfony.com/contributors"
  13203. }
  13204. ],
  13205. "description": "Executes commands in sub-processes",
  13206. "homepage": "https://symfony.com",
  13207. "support": {
  13208. "source": "https://github.com/symfony/process/tree/v6.4.20"
  13209. },
  13210. "funding": [
  13211. {
  13212. "url": "https://symfony.com/sponsor",
  13213. "type": "custom"
  13214. },
  13215. {
  13216. "url": "https://github.com/fabpot",
  13217. "type": "github"
  13218. },
  13219. {
  13220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13221. "type": "tidelift"
  13222. }
  13223. ],
  13224. "time": "2025-03-10T17:11:00+00:00"
  13225. },
  13226. {
  13227. "name": "symfony/stopwatch",
  13228. "version": "v6.4.19",
  13229. "source": {
  13230. "type": "git",
  13231. "url": "https://github.com/symfony/stopwatch.git",
  13232. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  13233. },
  13234. "dist": {
  13235. "type": "zip",
  13236. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  13237. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  13238. "shasum": "",
  13239. "mirrors": [
  13240. {
  13241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13242. "preferred": true
  13243. }
  13244. ]
  13245. },
  13246. "require": {
  13247. "php": ">=8.1",
  13248. "symfony/service-contracts": "^2.5|^3"
  13249. },
  13250. "type": "library",
  13251. "autoload": {
  13252. "psr-4": {
  13253. "Symfony\\Component\\Stopwatch\\": ""
  13254. },
  13255. "exclude-from-classmap": [
  13256. "/Tests/"
  13257. ]
  13258. },
  13259. "notification-url": "https://packagist.org/downloads/",
  13260. "license": [
  13261. "MIT"
  13262. ],
  13263. "authors": [
  13264. {
  13265. "name": "Fabien Potencier",
  13266. "email": "fabien@symfony.com"
  13267. },
  13268. {
  13269. "name": "Symfony Community",
  13270. "homepage": "https://symfony.com/contributors"
  13271. }
  13272. ],
  13273. "description": "Provides a way to profile code",
  13274. "homepage": "https://symfony.com",
  13275. "support": {
  13276. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  13277. },
  13278. "funding": [
  13279. {
  13280. "url": "https://symfony.com/sponsor",
  13281. "type": "custom"
  13282. },
  13283. {
  13284. "url": "https://github.com/fabpot",
  13285. "type": "github"
  13286. },
  13287. {
  13288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13289. "type": "tidelift"
  13290. }
  13291. ],
  13292. "time": "2025-02-21T10:06:30+00:00"
  13293. },
  13294. {
  13295. "name": "theseer/tokenizer",
  13296. "version": "1.2.3",
  13297. "source": {
  13298. "type": "git",
  13299. "url": "https://github.com/theseer/tokenizer.git",
  13300. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13301. },
  13302. "dist": {
  13303. "type": "zip",
  13304. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13305. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13306. "shasum": "",
  13307. "mirrors": [
  13308. {
  13309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13310. "preferred": true
  13311. }
  13312. ]
  13313. },
  13314. "require": {
  13315. "ext-dom": "*",
  13316. "ext-tokenizer": "*",
  13317. "ext-xmlwriter": "*",
  13318. "php": "^7.2 || ^8.0"
  13319. },
  13320. "type": "library",
  13321. "autoload": {
  13322. "classmap": [
  13323. "src/"
  13324. ]
  13325. },
  13326. "notification-url": "https://packagist.org/downloads/",
  13327. "license": [
  13328. "BSD-3-Clause"
  13329. ],
  13330. "authors": [
  13331. {
  13332. "name": "Arne Blankerts",
  13333. "email": "arne@blankerts.de",
  13334. "role": "Developer"
  13335. }
  13336. ],
  13337. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13338. "support": {
  13339. "issues": "https://github.com/theseer/tokenizer/issues",
  13340. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13341. },
  13342. "funding": [
  13343. {
  13344. "url": "https://github.com/theseer",
  13345. "type": "github"
  13346. }
  13347. ],
  13348. "time": "2024-03-03T12:36:25+00:00"
  13349. },
  13350. {
  13351. "name": "zx/php-tools",
  13352. "version": "v0.0.1",
  13353. "source": {
  13354. "type": "git",
  13355. "url": "https://gitee.com/open-php/php-tools.git",
  13356. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  13357. },
  13358. "require": {
  13359. "php": ">=7.0"
  13360. },
  13361. "type": "library",
  13362. "autoload": {
  13363. "psr-4": {
  13364. "ZX\\": "src/"
  13365. }
  13366. },
  13367. "notification-url": "https://packagist.org/downloads/",
  13368. "license": [
  13369. "mit"
  13370. ],
  13371. "authors": [
  13372. {
  13373. "name": "zx",
  13374. "email": "903464207@qq.com"
  13375. }
  13376. ],
  13377. "description": "php-tools",
  13378. "time": "2023-06-25T06:24:10+00:00"
  13379. }
  13380. ],
  13381. "aliases": [],
  13382. "minimum-stability": "dev",
  13383. "stability-flags": {},
  13384. "prefer-stable": true,
  13385. "prefer-lowest": false,
  13386. "platform": {
  13387. "php": ">=8.1"
  13388. },
  13389. "platform-dev": {},
  13390. "plugin-api-version": "2.6.0"
  13391. }