composer.lock 478 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379
  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": "9374f9159fb265d3d3df98964e8b512c",
  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.56",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/hyperf/redis.git",
  4416. "reference": "25667386bb7d0bb1307e9e65d91ca8f80cf68b14"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/hyperf/redis/zipball/25667386bb7d0bb1307e9e65d91ca8f80cf68b14",
  4421. "reference": "25667386bb7d0bb1307e9e65d91ca8f80cf68b14",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "ext-redis": "^5.0 || ^6.0",
  4426. "hyperf/contract": "~3.1.0",
  4427. "hyperf/pool": "~3.1.0",
  4428. "hyperf/support": "~3.1.0",
  4429. "hyperf/tappable": "~3.1.0",
  4430. "hyperf/utils": "~3.1.0",
  4431. "php": ">=8.1",
  4432. "psr/container": "^1.0 || ^2.0"
  4433. },
  4434. "suggest": {
  4435. "ext-redis": "Required to use sentinel mode (>=5.2).",
  4436. "hyperf/di": "Create the RedisPool via dependency injection."
  4437. },
  4438. "type": "library",
  4439. "extra": {
  4440. "hyperf": {
  4441. "config": "Hyperf\\Redis\\ConfigProvider"
  4442. },
  4443. "branch-alias": {
  4444. "dev-master": "3.1-dev"
  4445. }
  4446. },
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Hyperf\\Redis\\": "src/"
  4450. }
  4451. },
  4452. "notification-url": "https://packagist.org/downloads/",
  4453. "license": [
  4454. "MIT"
  4455. ],
  4456. "description": "A redis component for hyperf.",
  4457. "homepage": "https://hyperf.io",
  4458. "keywords": [
  4459. "hyperf",
  4460. "php",
  4461. "pool",
  4462. "redis"
  4463. ],
  4464. "support": {
  4465. "docs": "https://hyperf.wiki",
  4466. "issues": "https://github.com/hyperf/hyperf/issues",
  4467. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4468. "source": "https://github.com/hyperf/hyperf"
  4469. },
  4470. "funding": [
  4471. {
  4472. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4473. "type": "custom"
  4474. },
  4475. {
  4476. "url": "https://opencollective.com/hyperf",
  4477. "type": "open_collective"
  4478. }
  4479. ],
  4480. "time": "2025-06-05T06:49:03+00:00"
  4481. },
  4482. {
  4483. "name": "hyperf/rpc",
  4484. "version": "v3.1.42",
  4485. "source": {
  4486. "type": "git",
  4487. "url": "https://github.com/hyperf/rpc.git",
  4488. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  4489. },
  4490. "dist": {
  4491. "type": "zip",
  4492. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4493. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  4494. "shasum": "",
  4495. "mirrors": [
  4496. {
  4497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4498. "preferred": true
  4499. }
  4500. ]
  4501. },
  4502. "require": {
  4503. "hyperf/codec": "~3.1.0",
  4504. "hyperf/contract": "~3.1.0",
  4505. "hyperf/support": "~3.1.0",
  4506. "jetbrains/phpstorm-attributes": "^1.0",
  4507. "php": ">=8.1"
  4508. },
  4509. "type": "library",
  4510. "extra": {
  4511. "hyperf": [],
  4512. "branch-alias": {
  4513. "dev-master": "3.1-dev"
  4514. }
  4515. },
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Hyperf\\Rpc\\": "src/"
  4519. }
  4520. },
  4521. "notification-url": "https://packagist.org/downloads/",
  4522. "license": [
  4523. "MIT"
  4524. ],
  4525. "description": "A rpc basic library for Hyperf.",
  4526. "homepage": "https://hyperf.io",
  4527. "keywords": [
  4528. "hyperf",
  4529. "php",
  4530. "rpc",
  4531. "swoole"
  4532. ],
  4533. "support": {
  4534. "docs": "https://hyperf.wiki",
  4535. "issues": "https://github.com/hyperf/hyperf/issues",
  4536. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4537. "source": "https://github.com/hyperf/hyperf"
  4538. },
  4539. "funding": [
  4540. {
  4541. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4542. "type": "custom"
  4543. },
  4544. {
  4545. "url": "https://opencollective.com/hyperf",
  4546. "type": "open_collective"
  4547. }
  4548. ],
  4549. "time": "2024-09-25T02:54:12+00:00"
  4550. },
  4551. {
  4552. "name": "hyperf/rpc-client",
  4553. "version": "v3.1.42",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/hyperf/rpc-client.git",
  4557. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4562. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4563. "shasum": "",
  4564. "mirrors": [
  4565. {
  4566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4567. "preferred": true
  4568. }
  4569. ]
  4570. },
  4571. "require": {
  4572. "hyperf/code-parser": "~3.1.0",
  4573. "hyperf/load-balancer": "~3.1.0",
  4574. "hyperf/rpc": "~3.1.0",
  4575. "hyperf/support": "~3.1.0",
  4576. "hyperf/utils": "~3.1.0",
  4577. "jetbrains/phpstorm-attributes": "^1.0",
  4578. "php": ">=8.1",
  4579. "psr/container": "^1.0 || ^2.0"
  4580. },
  4581. "suggest": {
  4582. "hyperf/di": "For better container experience.",
  4583. "hyperf/pool": "Required to use connection pool.",
  4584. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4585. },
  4586. "type": "library",
  4587. "extra": {
  4588. "hyperf": {
  4589. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4590. },
  4591. "branch-alias": {
  4592. "dev-master": "3.1-dev"
  4593. }
  4594. },
  4595. "autoload": {
  4596. "psr-4": {
  4597. "Hyperf\\RpcClient\\": "src/"
  4598. }
  4599. },
  4600. "notification-url": "https://packagist.org/downloads/",
  4601. "license": [
  4602. "MIT"
  4603. ],
  4604. "description": "An abstract rpc server component for Hyperf.",
  4605. "homepage": "https://hyperf.io",
  4606. "keywords": [
  4607. "hyperf",
  4608. "json-rpc",
  4609. "php",
  4610. "rpc",
  4611. "rpc-client",
  4612. "swoole"
  4613. ],
  4614. "support": {
  4615. "docs": "https://hyperf.wiki",
  4616. "issues": "https://github.com/hyperf/hyperf/issues",
  4617. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4618. "source": "https://github.com/hyperf/hyperf"
  4619. },
  4620. "funding": [
  4621. {
  4622. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4623. "type": "custom"
  4624. },
  4625. {
  4626. "url": "https://opencollective.com/hyperf",
  4627. "type": "open_collective"
  4628. }
  4629. ],
  4630. "time": "2024-09-25T02:54:12+00:00"
  4631. },
  4632. {
  4633. "name": "hyperf/rpc-server",
  4634. "version": "v3.1.42",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/hyperf/rpc-server.git",
  4638. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4643. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4644. "shasum": "",
  4645. "mirrors": [
  4646. {
  4647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4648. "preferred": true
  4649. }
  4650. ]
  4651. },
  4652. "require": {
  4653. "hyperf/http-server": "~3.1.0",
  4654. "hyperf/rpc": "~3.1.0",
  4655. "php": ">=8.1"
  4656. },
  4657. "suggest": {
  4658. "hyperf/di": "Required to use annotations."
  4659. },
  4660. "type": "library",
  4661. "extra": {
  4662. "hyperf": {
  4663. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4664. },
  4665. "branch-alias": {
  4666. "dev-master": "3.1-dev"
  4667. }
  4668. },
  4669. "autoload": {
  4670. "psr-4": {
  4671. "Hyperf\\RpcServer\\": "src/"
  4672. }
  4673. },
  4674. "notification-url": "https://packagist.org/downloads/",
  4675. "license": [
  4676. "MIT"
  4677. ],
  4678. "description": "An abstract rpc server component for Hyperf.",
  4679. "homepage": "https://hyperf.io",
  4680. "keywords": [
  4681. "hyperf",
  4682. "php",
  4683. "rpc",
  4684. "rpc-server",
  4685. "swoole"
  4686. ],
  4687. "support": {
  4688. "docs": "https://hyperf.wiki",
  4689. "issues": "https://github.com/hyperf/hyperf/issues",
  4690. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4691. "source": "https://github.com/hyperf/hyperf"
  4692. },
  4693. "funding": [
  4694. {
  4695. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4696. "type": "custom"
  4697. },
  4698. {
  4699. "url": "https://opencollective.com/hyperf",
  4700. "type": "open_collective"
  4701. }
  4702. ],
  4703. "time": "2024-09-25T02:54:12+00:00"
  4704. },
  4705. {
  4706. "name": "hyperf/serializer",
  4707. "version": "v3.1.42",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/hyperf/serializer.git",
  4711. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4716. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4717. "shasum": "",
  4718. "mirrors": [
  4719. {
  4720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4721. "preferred": true
  4722. }
  4723. ]
  4724. },
  4725. "require": {
  4726. "hyperf/contract": "~3.1.0",
  4727. "php": ">=8.1"
  4728. },
  4729. "suggest": {
  4730. "hyperf/di": "Required to use ExceptionNormalizer",
  4731. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4732. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4733. },
  4734. "type": "library",
  4735. "extra": {
  4736. "hyperf": {
  4737. "config": "Hyperf\\Serializer\\ConfigProvider"
  4738. },
  4739. "branch-alias": {
  4740. "dev-master": "3.1-dev"
  4741. }
  4742. },
  4743. "autoload": {
  4744. "psr-4": {
  4745. "Hyperf\\Serializer\\": "src/"
  4746. }
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "description": "A serializer component for Hyperf.",
  4753. "homepage": "https://hyperf.io",
  4754. "keywords": [
  4755. "hyperf",
  4756. "php",
  4757. "swoole",
  4758. "tappable"
  4759. ],
  4760. "support": {
  4761. "docs": "https://hyperf.wiki",
  4762. "issues": "https://github.com/hyperf/hyperf/issues",
  4763. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4764. "source": "https://github.com/hyperf/hyperf"
  4765. },
  4766. "funding": [
  4767. {
  4768. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4769. "type": "custom"
  4770. },
  4771. {
  4772. "url": "https://opencollective.com/hyperf",
  4773. "type": "open_collective"
  4774. }
  4775. ],
  4776. "time": "2024-09-25T02:54:12+00:00"
  4777. },
  4778. {
  4779. "name": "hyperf/server",
  4780. "version": "v3.1.42",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/hyperf/server.git",
  4784. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4789. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4790. "shasum": "",
  4791. "mirrors": [
  4792. {
  4793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4794. "preferred": true
  4795. }
  4796. ]
  4797. },
  4798. "require": {
  4799. "hyperf/contract": "~3.1.0",
  4800. "hyperf/coordinator": "~3.1.0",
  4801. "hyperf/engine": "^2.8",
  4802. "hyperf/support": "~3.1.0",
  4803. "hyperf/tappable": "~3.1.0",
  4804. "php": ">=8.1",
  4805. "psr/container": "^1.0 || ^2.0",
  4806. "psr/event-dispatcher": "^1.0",
  4807. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4808. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4809. },
  4810. "suggest": {
  4811. "hyperf/event": "Dump the info after server start.",
  4812. "hyperf/framework": "Dump the info after server start."
  4813. },
  4814. "type": "library",
  4815. "extra": {
  4816. "hyperf": {
  4817. "config": "Hyperf\\Server\\ConfigProvider"
  4818. },
  4819. "branch-alias": {
  4820. "dev-master": "3.1-dev"
  4821. }
  4822. },
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Hyperf\\Server\\": "src/"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "description": "A base server library for Hyperf.",
  4833. "homepage": "https://hyperf.io",
  4834. "keywords": [
  4835. "hyperf",
  4836. "php",
  4837. "server",
  4838. "swoole"
  4839. ],
  4840. "support": {
  4841. "docs": "https://hyperf.wiki",
  4842. "issues": "https://github.com/hyperf/hyperf/issues",
  4843. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4844. "source": "https://github.com/hyperf/hyperf"
  4845. },
  4846. "funding": [
  4847. {
  4848. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4849. "type": "custom"
  4850. },
  4851. {
  4852. "url": "https://opencollective.com/hyperf",
  4853. "type": "open_collective"
  4854. }
  4855. ],
  4856. "time": "2024-09-25T02:54:12+00:00"
  4857. },
  4858. {
  4859. "name": "hyperf/service-governance",
  4860. "version": "v3.1.42",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/hyperf/service-governance.git",
  4864. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4869. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4870. "shasum": "",
  4871. "mirrors": [
  4872. {
  4873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4874. "preferred": true
  4875. }
  4876. ]
  4877. },
  4878. "require": {
  4879. "hyperf/contract": "~3.1.0",
  4880. "hyperf/support": "~3.1.0",
  4881. "jetbrains/phpstorm-attributes": "^1.0",
  4882. "php": ">=8.1"
  4883. },
  4884. "suggest": {
  4885. "hyperf/event": "Required to use RegisterServiceListener.",
  4886. "hyperf/framework": "Required to use RegisterServiceListener.",
  4887. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4888. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "hyperf": {
  4893. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4894. },
  4895. "branch-alias": {
  4896. "dev-master": "3.1-dev"
  4897. }
  4898. },
  4899. "autoload": {
  4900. "psr-4": {
  4901. "Hyperf\\ServiceGovernance\\": "src/"
  4902. }
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "description": "A service governance component for Hyperf.",
  4909. "homepage": "https://hyperf.io",
  4910. "keywords": [
  4911. "hyperf",
  4912. "php",
  4913. "service-governance",
  4914. "swoole"
  4915. ],
  4916. "support": {
  4917. "docs": "https://hyperf.wiki",
  4918. "issues": "https://github.com/hyperf/hyperf/issues",
  4919. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4920. "source": "https://github.com/hyperf/hyperf"
  4921. },
  4922. "funding": [
  4923. {
  4924. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4925. "type": "custom"
  4926. },
  4927. {
  4928. "url": "https://opencollective.com/hyperf",
  4929. "type": "open_collective"
  4930. }
  4931. ],
  4932. "time": "2024-09-25T02:54:12+00:00"
  4933. },
  4934. {
  4935. "name": "hyperf/service-governance-consul",
  4936. "version": "v3.1.42",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://github.com/hyperf/service-governance-consul.git",
  4940. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4945. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4946. "shasum": "",
  4947. "mirrors": [
  4948. {
  4949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4950. "preferred": true
  4951. }
  4952. ]
  4953. },
  4954. "require": {
  4955. "hyperf/consul": "~3.1.0",
  4956. "hyperf/contract": "~3.1.0",
  4957. "hyperf/service-governance": "~3.1.0",
  4958. "hyperf/support": "~3.1.0",
  4959. "hyperf/utils": "~3.1.0",
  4960. "php": ">=8.1"
  4961. },
  4962. "type": "library",
  4963. "extra": {
  4964. "hyperf": {
  4965. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4966. },
  4967. "branch-alias": {
  4968. "dev-master": "3.1-dev"
  4969. }
  4970. },
  4971. "autoload": {
  4972. "psr-4": {
  4973. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4974. }
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "MIT"
  4979. ],
  4980. "description": "A consul adapter for service governance.",
  4981. "homepage": "https://hyperf.io",
  4982. "keywords": [
  4983. "consul-adapter",
  4984. "hyperf",
  4985. "php",
  4986. "service-governance",
  4987. "swoole"
  4988. ],
  4989. "support": {
  4990. "docs": "https://hyperf.wiki",
  4991. "issues": "https://github.com/hyperf/hyperf/issues",
  4992. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4993. "source": "https://github.com/hyperf/hyperf"
  4994. },
  4995. "funding": [
  4996. {
  4997. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4998. "type": "custom"
  4999. },
  5000. {
  5001. "url": "https://opencollective.com/hyperf",
  5002. "type": "open_collective"
  5003. }
  5004. ],
  5005. "time": "2024-09-25T02:54:12+00:00"
  5006. },
  5007. {
  5008. "name": "hyperf/service-governance-nacos",
  5009. "version": "v3.1.42",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/hyperf/service-governance-nacos.git",
  5013. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  5018. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  5019. "shasum": "",
  5020. "mirrors": [
  5021. {
  5022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5023. "preferred": true
  5024. }
  5025. ]
  5026. },
  5027. "require": {
  5028. "hyperf/codec": "~3.1.0",
  5029. "hyperf/contract": "~3.1.0",
  5030. "hyperf/nacos": "~3.1.0",
  5031. "hyperf/service-governance": "~3.1.0",
  5032. "hyperf/support": "~3.1.0",
  5033. "hyperf/utils": "~3.1.0",
  5034. "php": ">=8.1"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "hyperf": {
  5039. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  5040. },
  5041. "branch-alias": {
  5042. "dev-master": "3.1-dev"
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  5048. }
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "description": "A nacos adapter for service governance.",
  5055. "homepage": "https://hyperf.io",
  5056. "keywords": [
  5057. "hyperf",
  5058. "nacos-adapter",
  5059. "php",
  5060. "service-governance",
  5061. "swoole"
  5062. ],
  5063. "support": {
  5064. "docs": "https://hyperf.wiki",
  5065. "issues": "https://github.com/hyperf/hyperf/issues",
  5066. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5067. "source": "https://github.com/hyperf/hyperf"
  5068. },
  5069. "funding": [
  5070. {
  5071. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5072. "type": "custom"
  5073. },
  5074. {
  5075. "url": "https://opencollective.com/hyperf",
  5076. "type": "open_collective"
  5077. }
  5078. ],
  5079. "time": "2024-09-25T02:54:12+00:00"
  5080. },
  5081. {
  5082. "name": "hyperf/snowflake",
  5083. "version": "v3.1.42",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/hyperf/snowflake.git",
  5087. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  5092. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  5093. "shasum": "",
  5094. "mirrors": [
  5095. {
  5096. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5097. "preferred": true
  5098. }
  5099. ]
  5100. },
  5101. "require": {
  5102. "hyperf/contract": "~3.1.0",
  5103. "php": ">=8.1"
  5104. },
  5105. "suggest": {
  5106. "hyperf/config": "Required to read snowflake config.",
  5107. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  5108. "psr/container": "Required to use MetaGeneratorFactory."
  5109. },
  5110. "type": "library",
  5111. "extra": {
  5112. "hyperf": {
  5113. "config": "Hyperf\\Snowflake\\ConfigProvider"
  5114. },
  5115. "branch-alias": {
  5116. "dev-master": "3.1-dev"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "psr-4": {
  5121. "Hyperf\\Snowflake\\": "src/"
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "description": "A snowflake library",
  5129. "homepage": "https://hyperf.io",
  5130. "keywords": [
  5131. "php",
  5132. "snowflake"
  5133. ],
  5134. "support": {
  5135. "docs": "https://hyperf.wiki",
  5136. "issues": "https://github.com/hyperf/hyperf/issues",
  5137. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5138. "source": "https://github.com/hyperf/hyperf"
  5139. },
  5140. "funding": [
  5141. {
  5142. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5143. "type": "custom"
  5144. },
  5145. {
  5146. "url": "https://opencollective.com/hyperf",
  5147. "type": "open_collective"
  5148. }
  5149. ],
  5150. "time": "2024-09-25T02:54:12+00:00"
  5151. },
  5152. {
  5153. "name": "hyperf/stdlib",
  5154. "version": "v3.1.42",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/hyperf/stdlib.git",
  5158. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  5163. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  5164. "shasum": "",
  5165. "mirrors": [
  5166. {
  5167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5168. "preferred": true
  5169. }
  5170. ]
  5171. },
  5172. "require": {
  5173. "php": ">=8.1"
  5174. },
  5175. "type": "library",
  5176. "extra": {
  5177. "branch-alias": {
  5178. "dev-master": "3.1-dev"
  5179. }
  5180. },
  5181. "autoload": {
  5182. "psr-4": {
  5183. "Hyperf\\Stdlib\\": "src/"
  5184. }
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "description": "A stdlib component for Hyperf.",
  5191. "homepage": "https://hyperf.io",
  5192. "keywords": [
  5193. "hyperf",
  5194. "php",
  5195. "stdlib",
  5196. "swoole"
  5197. ],
  5198. "support": {
  5199. "docs": "https://hyperf.wiki",
  5200. "issues": "https://github.com/hyperf/hyperf/issues",
  5201. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5202. "source": "https://github.com/hyperf/hyperf"
  5203. },
  5204. "funding": [
  5205. {
  5206. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5207. "type": "custom"
  5208. },
  5209. {
  5210. "url": "https://opencollective.com/hyperf",
  5211. "type": "open_collective"
  5212. }
  5213. ],
  5214. "time": "2024-09-25T02:54:12+00:00"
  5215. },
  5216. {
  5217. "name": "hyperf/stringable",
  5218. "version": "v3.1.55",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/hyperf/stringable.git",
  5222. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  5227. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  5228. "shasum": "",
  5229. "mirrors": [
  5230. {
  5231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5232. "preferred": true
  5233. }
  5234. ]
  5235. },
  5236. "require": {
  5237. "ext-mbstring": "*",
  5238. "hyperf/collection": "~3.1.0",
  5239. "hyperf/conditionable": "~3.1.0",
  5240. "hyperf/macroable": "~3.1.0",
  5241. "hyperf/tappable": "~3.1.0",
  5242. "php": ">=8.1"
  5243. },
  5244. "suggest": {
  5245. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  5246. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  5247. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  5248. },
  5249. "type": "library",
  5250. "extra": {
  5251. "branch-alias": {
  5252. "dev-master": "3.1-dev"
  5253. }
  5254. },
  5255. "autoload": {
  5256. "files": [
  5257. "src/Functions.php"
  5258. ],
  5259. "psr-4": {
  5260. "Hyperf\\Stringable\\": "src/"
  5261. }
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "description": "Hyperf Stringable package which come from illuminate/support",
  5268. "homepage": "https://hyperf.io",
  5269. "keywords": [
  5270. "hyperf",
  5271. "php",
  5272. "stringable",
  5273. "swoole"
  5274. ],
  5275. "support": {
  5276. "docs": "https://hyperf.wiki",
  5277. "issues": "https://github.com/hyperf/hyperf/issues",
  5278. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5279. "source": "https://github.com/hyperf/hyperf"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5284. "type": "custom"
  5285. },
  5286. {
  5287. "url": "https://opencollective.com/hyperf",
  5288. "type": "open_collective"
  5289. }
  5290. ],
  5291. "time": "2025-05-02T14:13:24+00:00"
  5292. },
  5293. {
  5294. "name": "hyperf/support",
  5295. "version": "v3.1.51",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/hyperf/support.git",
  5299. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  5304. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  5305. "shasum": "",
  5306. "mirrors": [
  5307. {
  5308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5309. "preferred": true
  5310. }
  5311. ]
  5312. },
  5313. "require": {
  5314. "hyperf/collection": "~3.1.0",
  5315. "hyperf/context": "~3.1.0",
  5316. "hyperf/contract": "~3.1.0",
  5317. "hyperf/coroutine": "~3.1.0",
  5318. "hyperf/macroable": "~3.1.0",
  5319. "hyperf/stringable": "~3.1.0",
  5320. "php": ">=8.1"
  5321. },
  5322. "suggest": {
  5323. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  5324. },
  5325. "type": "library",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-master": "3.1-dev"
  5329. }
  5330. },
  5331. "autoload": {
  5332. "files": [
  5333. "src/Functions.php"
  5334. ],
  5335. "psr-4": {
  5336. "Hyperf\\Support\\": "src/"
  5337. }
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "description": "A support component for Hyperf.",
  5344. "homepage": "https://hyperf.io",
  5345. "keywords": [
  5346. "hyperf",
  5347. "php",
  5348. "support",
  5349. "swoole"
  5350. ],
  5351. "support": {
  5352. "docs": "https://hyperf.wiki",
  5353. "issues": "https://github.com/hyperf/hyperf/issues",
  5354. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5355. "source": "https://github.com/hyperf/hyperf"
  5356. },
  5357. "funding": [
  5358. {
  5359. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5360. "type": "custom"
  5361. },
  5362. {
  5363. "url": "https://opencollective.com/hyperf",
  5364. "type": "open_collective"
  5365. }
  5366. ],
  5367. "time": "2025-02-06T07:02:37+00:00"
  5368. },
  5369. {
  5370. "name": "hyperf/tappable",
  5371. "version": "v3.1.42",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/hyperf/tappable.git",
  5375. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  5380. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  5381. "shasum": "",
  5382. "mirrors": [
  5383. {
  5384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5385. "preferred": true
  5386. }
  5387. ]
  5388. },
  5389. "require": {
  5390. "php": ">=8.1"
  5391. },
  5392. "type": "library",
  5393. "extra": {
  5394. "branch-alias": {
  5395. "dev-master": "3.1-dev"
  5396. }
  5397. },
  5398. "autoload": {
  5399. "files": [
  5400. "src/Functions.php"
  5401. ],
  5402. "psr-4": {
  5403. "Hyperf\\Tappable\\": "src/"
  5404. }
  5405. },
  5406. "notification-url": "https://packagist.org/downloads/",
  5407. "license": [
  5408. "MIT"
  5409. ],
  5410. "description": "Hyperf Macroable package which come from illuminate/tappable",
  5411. "homepage": "https://hyperf.io",
  5412. "keywords": [
  5413. "hyperf",
  5414. "php",
  5415. "swoole",
  5416. "tappable"
  5417. ],
  5418. "support": {
  5419. "docs": "https://hyperf.wiki",
  5420. "issues": "https://github.com/hyperf/hyperf/issues",
  5421. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5422. "source": "https://github.com/hyperf/hyperf"
  5423. },
  5424. "funding": [
  5425. {
  5426. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5427. "type": "custom"
  5428. },
  5429. {
  5430. "url": "https://opencollective.com/hyperf",
  5431. "type": "open_collective"
  5432. }
  5433. ],
  5434. "time": "2024-09-25T02:54:12+00:00"
  5435. },
  5436. {
  5437. "name": "hyperf/translation",
  5438. "version": "v3.1.42",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/hyperf/translation.git",
  5442. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  5447. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  5448. "shasum": "",
  5449. "mirrors": [
  5450. {
  5451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5452. "preferred": true
  5453. }
  5454. ]
  5455. },
  5456. "require": {
  5457. "hyperf/contract": "~3.1.0",
  5458. "hyperf/macroable": "~3.1.0",
  5459. "hyperf/support": "~3.1.0",
  5460. "hyperf/utils": "~3.1.0",
  5461. "php": ">=8.1",
  5462. "psr/container": "^1.0 || ^2.0"
  5463. },
  5464. "type": "library",
  5465. "extra": {
  5466. "hyperf": {
  5467. "config": "Hyperf\\Translation\\ConfigProvider"
  5468. },
  5469. "branch-alias": {
  5470. "dev-master": "3.1-dev"
  5471. }
  5472. },
  5473. "autoload": {
  5474. "files": [
  5475. "src/Functions.php"
  5476. ],
  5477. "psr-4": {
  5478. "Hyperf\\Translation\\": "src/"
  5479. }
  5480. },
  5481. "notification-url": "https://packagist.org/downloads/",
  5482. "license": [
  5483. "MIT"
  5484. ],
  5485. "description": "An independent translation component, forked by illuminate/translation.",
  5486. "keywords": [
  5487. "hyperf",
  5488. "translation"
  5489. ],
  5490. "support": {
  5491. "issues": "https://github.com/hyperf/translation/issues",
  5492. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  5493. },
  5494. "funding": [
  5495. {
  5496. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5497. "type": "custom"
  5498. },
  5499. {
  5500. "url": "https://opencollective.com/hyperf",
  5501. "type": "open_collective"
  5502. }
  5503. ],
  5504. "time": "2024-09-25T02:54:12+00:00"
  5505. },
  5506. {
  5507. "name": "hyperf/utils",
  5508. "version": "v3.1.42",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/hyperf/utils.git",
  5512. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5517. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  5518. "shasum": "",
  5519. "mirrors": [
  5520. {
  5521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5522. "preferred": true
  5523. }
  5524. ]
  5525. },
  5526. "require": {
  5527. "doctrine/inflector": "^2.0",
  5528. "hyperf/code-parser": "~3.1.0",
  5529. "hyperf/codec": "~3.1.0",
  5530. "hyperf/collection": "~3.1.0",
  5531. "hyperf/context": "~3.1.0",
  5532. "hyperf/contract": "~3.1.0",
  5533. "hyperf/coordinator": "~3.1.0",
  5534. "hyperf/coroutine": "~3.1.0",
  5535. "hyperf/engine": "^2.0",
  5536. "hyperf/macroable": "~3.1.0",
  5537. "hyperf/serializer": "~3.1.0",
  5538. "hyperf/stringable": "~3.1.0",
  5539. "hyperf/support": "~3.1.0",
  5540. "php": ">=8.1"
  5541. },
  5542. "type": "library",
  5543. "extra": {
  5544. "branch-alias": {
  5545. "dev-master": "3.1-dev"
  5546. }
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "MIT"
  5551. ],
  5552. "description": "A tools package that could help developer solved the problem quickly.",
  5553. "homepage": "https://hyperf.io",
  5554. "keywords": [
  5555. "hyperf",
  5556. "php",
  5557. "swoole",
  5558. "utils"
  5559. ],
  5560. "support": {
  5561. "docs": "https://hyperf.wiki",
  5562. "issues": "https://github.com/hyperf/hyperf/issues",
  5563. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5564. "source": "https://github.com/hyperf/hyperf"
  5565. },
  5566. "funding": [
  5567. {
  5568. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5569. "type": "custom"
  5570. },
  5571. {
  5572. "url": "https://opencollective.com/hyperf",
  5573. "type": "open_collective"
  5574. }
  5575. ],
  5576. "time": "2024-09-25T02:54:12+00:00"
  5577. },
  5578. {
  5579. "name": "hyperf/validation",
  5580. "version": "v3.1.53",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/hyperf/validation.git",
  5584. "reference": "476ccad33326073cd07ca66b7c6d5c1f4f3c7f53"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/hyperf/validation/zipball/476ccad33326073cd07ca66b7c6d5c1f4f3c7f53",
  5589. "reference": "476ccad33326073cd07ca66b7c6d5c1f4f3c7f53",
  5590. "shasum": "",
  5591. "mirrors": [
  5592. {
  5593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5594. "preferred": true
  5595. }
  5596. ]
  5597. },
  5598. "require": {
  5599. "egulias/email-validator": "^3.0",
  5600. "hyperf/collection": "~3.1.0",
  5601. "hyperf/conditionable": "~3.1.0",
  5602. "hyperf/contract": "~3.1.0",
  5603. "hyperf/di": "~3.1.0",
  5604. "hyperf/framework": "~3.1.0",
  5605. "hyperf/macroable": "~3.1.0",
  5606. "hyperf/stringable": "~3.1.0",
  5607. "hyperf/support": "~3.1.0",
  5608. "hyperf/tappable": "~3.1.0",
  5609. "hyperf/translation": "~3.1.0",
  5610. "hyperf/utils": "~3.1.0",
  5611. "nesbot/carbon": "^2.21",
  5612. "php": ">=8.1",
  5613. "psr/container": "^1.0 || ^2.0",
  5614. "psr/event-dispatcher": "^1.0",
  5615. "psr/http-message": "^1.0 || ^2.0"
  5616. },
  5617. "suggest": {
  5618. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5619. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5620. },
  5621. "type": "library",
  5622. "extra": {
  5623. "hyperf": {
  5624. "config": "Hyperf\\Validation\\ConfigProvider"
  5625. },
  5626. "branch-alias": {
  5627. "dev-master": "3.1-dev"
  5628. }
  5629. },
  5630. "autoload": {
  5631. "psr-4": {
  5632. "Hyperf\\Validation\\": "src/"
  5633. }
  5634. },
  5635. "notification-url": "https://packagist.org/downloads/",
  5636. "license": [
  5637. "MIT"
  5638. ],
  5639. "description": "hyperf validation",
  5640. "keywords": [
  5641. "hyperf",
  5642. "validation"
  5643. ],
  5644. "support": {
  5645. "issues": "https://github.com/hyperf/validation/issues",
  5646. "source": "https://github.com/hyperf/validation/tree/v3.1.53"
  5647. },
  5648. "funding": [
  5649. {
  5650. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5651. "type": "custom"
  5652. },
  5653. {
  5654. "url": "https://opencollective.com/hyperf",
  5655. "type": "open_collective"
  5656. }
  5657. ],
  5658. "time": "2025-04-03T07:47:47+00:00"
  5659. },
  5660. {
  5661. "name": "hyperf/websocket-server",
  5662. "version": "v3.1.50",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/hyperf/websocket-server.git",
  5666. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/c770ebf0208738bbb21000db01f09a48e15023a5",
  5671. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5",
  5672. "shasum": "",
  5673. "mirrors": [
  5674. {
  5675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5676. "preferred": true
  5677. }
  5678. ]
  5679. },
  5680. "require": {
  5681. "hyperf/collection": "~3.1.0",
  5682. "hyperf/contract": "~3.1.0",
  5683. "hyperf/exception-handler": "~3.1.0",
  5684. "hyperf/http-server": "~3.1.0",
  5685. "hyperf/support": "~3.1.0",
  5686. "hyperf/utils": "~3.1.0",
  5687. "php": ">=8.1",
  5688. "psr/container": "^1.0 || ^2.0",
  5689. "psr/event-dispatcher": "^1.0"
  5690. },
  5691. "type": "library",
  5692. "extra": {
  5693. "hyperf": {
  5694. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5695. },
  5696. "branch-alias": {
  5697. "dev-master": "3.1-dev"
  5698. }
  5699. },
  5700. "autoload": {
  5701. "psr-4": {
  5702. "Hyperf\\WebSocketServer\\": "src/"
  5703. }
  5704. },
  5705. "notification-url": "https://packagist.org/downloads/",
  5706. "license": [
  5707. "MIT"
  5708. ],
  5709. "description": "A websocket server library for Hyperf.",
  5710. "homepage": "https://hyperf.io",
  5711. "keywords": [
  5712. "hyperf",
  5713. "php",
  5714. "swoole",
  5715. "websocket"
  5716. ],
  5717. "support": {
  5718. "docs": "https://hyperf.wiki",
  5719. "issues": "https://github.com/hyperf/hyperf/issues",
  5720. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5721. "source": "https://github.com/hyperf/hyperf"
  5722. },
  5723. "funding": [
  5724. {
  5725. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5726. "type": "custom"
  5727. },
  5728. {
  5729. "url": "https://opencollective.com/hyperf",
  5730. "type": "open_collective"
  5731. }
  5732. ],
  5733. "time": "2025-01-08T02:18:30+00:00"
  5734. },
  5735. {
  5736. "name": "jetbrains/phpstorm-attributes",
  5737. "version": "1.2",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5741. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5746. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5747. "shasum": "",
  5748. "mirrors": [
  5749. {
  5750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5751. "preferred": true
  5752. }
  5753. ]
  5754. },
  5755. "type": "library",
  5756. "autoload": {
  5757. "psr-4": {
  5758. "JetBrains\\PhpStorm\\": "src/"
  5759. }
  5760. },
  5761. "notification-url": "https://packagist.org/downloads/",
  5762. "license": [
  5763. "Apache-2.0"
  5764. ],
  5765. "authors": [
  5766. {
  5767. "name": "JetBrains",
  5768. "homepage": "https://www.jetbrains.com"
  5769. }
  5770. ],
  5771. "description": "PhpStorm specific attributes",
  5772. "keywords": [
  5773. "attributes",
  5774. "jetbrains",
  5775. "phpstorm"
  5776. ],
  5777. "support": {
  5778. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5779. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5780. },
  5781. "time": "2024-10-11T10:46:19+00:00"
  5782. },
  5783. {
  5784. "name": "laminas/laminas-mime",
  5785. "version": "2.12.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/laminas/laminas-mime.git",
  5789. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5794. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5795. "shasum": "",
  5796. "mirrors": [
  5797. {
  5798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5799. "preferred": true
  5800. }
  5801. ]
  5802. },
  5803. "require": {
  5804. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5805. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5806. },
  5807. "conflict": {
  5808. "zendframework/zend-mime": "*"
  5809. },
  5810. "require-dev": {
  5811. "laminas/laminas-coding-standard": "~2.4.0",
  5812. "laminas/laminas-mail": "^2.19.0",
  5813. "phpunit/phpunit": "~9.5.25"
  5814. },
  5815. "suggest": {
  5816. "laminas/laminas-mail": "Laminas\\Mail component"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Laminas\\Mime\\": "src/"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "BSD-3-Clause"
  5827. ],
  5828. "description": "Create and parse MIME messages and parts",
  5829. "homepage": "https://laminas.dev",
  5830. "keywords": [
  5831. "laminas",
  5832. "mime"
  5833. ],
  5834. "support": {
  5835. "chat": "https://laminas.dev/chat",
  5836. "docs": "https://docs.laminas.dev/laminas-mime/",
  5837. "forum": "https://discourse.laminas.dev",
  5838. "issues": "https://github.com/laminas/laminas-mime/issues",
  5839. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5840. "source": "https://github.com/laminas/laminas-mime"
  5841. },
  5842. "funding": [
  5843. {
  5844. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5845. "type": "community_bridge"
  5846. }
  5847. ],
  5848. "time": "2023-11-02T16:47:19+00:00"
  5849. },
  5850. {
  5851. "name": "laminas/laminas-stdlib",
  5852. "version": "3.20.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/laminas/laminas-stdlib.git",
  5856. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5861. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5862. "shasum": "",
  5863. "mirrors": [
  5864. {
  5865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5866. "preferred": true
  5867. }
  5868. ]
  5869. },
  5870. "require": {
  5871. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5872. },
  5873. "conflict": {
  5874. "zendframework/zend-stdlib": "*"
  5875. },
  5876. "require-dev": {
  5877. "laminas/laminas-coding-standard": "^3.0",
  5878. "phpbench/phpbench": "^1.3.1",
  5879. "phpunit/phpunit": "^10.5.38",
  5880. "psalm/plugin-phpunit": "^0.19.0",
  5881. "vimeo/psalm": "^5.26.1"
  5882. },
  5883. "type": "library",
  5884. "autoload": {
  5885. "psr-4": {
  5886. "Laminas\\Stdlib\\": "src/"
  5887. }
  5888. },
  5889. "notification-url": "https://packagist.org/downloads/",
  5890. "license": [
  5891. "BSD-3-Clause"
  5892. ],
  5893. "description": "SPL extensions, array utilities, error handlers, and more",
  5894. "homepage": "https://laminas.dev",
  5895. "keywords": [
  5896. "laminas",
  5897. "stdlib"
  5898. ],
  5899. "support": {
  5900. "chat": "https://laminas.dev/chat",
  5901. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5902. "forum": "https://discourse.laminas.dev",
  5903. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5904. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5905. "source": "https://github.com/laminas/laminas-stdlib"
  5906. },
  5907. "funding": [
  5908. {
  5909. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5910. "type": "community_bridge"
  5911. }
  5912. ],
  5913. "time": "2024-10-29T13:46:07+00:00"
  5914. },
  5915. {
  5916. "name": "lcobucci/clock",
  5917. "version": "2.3.0",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/lcobucci/clock.git",
  5921. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5926. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5927. "shasum": "",
  5928. "mirrors": [
  5929. {
  5930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5931. "preferred": true
  5932. }
  5933. ]
  5934. },
  5935. "require": {
  5936. "php": "~8.1.0 || ~8.2.0",
  5937. "stella-maris/clock": "^0.1.7"
  5938. },
  5939. "provide": {
  5940. "psr/clock-implementation": "1.0"
  5941. },
  5942. "require-dev": {
  5943. "infection/infection": "^0.26",
  5944. "lcobucci/coding-standard": "^9.0",
  5945. "phpstan/extension-installer": "^1.2",
  5946. "phpstan/phpstan": "^1.9.4",
  5947. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5948. "phpstan/phpstan-phpunit": "^1.3.2",
  5949. "phpstan/phpstan-strict-rules": "^1.4.4",
  5950. "phpunit/phpunit": "^9.5.27"
  5951. },
  5952. "type": "library",
  5953. "autoload": {
  5954. "psr-4": {
  5955. "Lcobucci\\Clock\\": "src"
  5956. }
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Luís Cobucci",
  5965. "email": "lcobucci@gmail.com"
  5966. }
  5967. ],
  5968. "description": "Yet another clock abstraction",
  5969. "support": {
  5970. "issues": "https://github.com/lcobucci/clock/issues",
  5971. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5972. },
  5973. "funding": [
  5974. {
  5975. "url": "https://github.com/lcobucci",
  5976. "type": "github"
  5977. },
  5978. {
  5979. "url": "https://www.patreon.com/lcobucci",
  5980. "type": "patreon"
  5981. }
  5982. ],
  5983. "time": "2022-12-19T14:38:11+00:00"
  5984. },
  5985. {
  5986. "name": "lcobucci/jwt",
  5987. "version": "4.1.5",
  5988. "source": {
  5989. "type": "git",
  5990. "url": "https://github.com/lcobucci/jwt.git",
  5991. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5992. },
  5993. "dist": {
  5994. "type": "zip",
  5995. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5996. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5997. "shasum": "",
  5998. "mirrors": [
  5999. {
  6000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6001. "preferred": true
  6002. }
  6003. ]
  6004. },
  6005. "require": {
  6006. "ext-hash": "*",
  6007. "ext-json": "*",
  6008. "ext-mbstring": "*",
  6009. "ext-openssl": "*",
  6010. "ext-sodium": "*",
  6011. "lcobucci/clock": "^2.0",
  6012. "php": "^7.4 || ^8.0"
  6013. },
  6014. "require-dev": {
  6015. "infection/infection": "^0.21",
  6016. "lcobucci/coding-standard": "^6.0",
  6017. "mikey179/vfsstream": "^1.6.7",
  6018. "phpbench/phpbench": "^1.0",
  6019. "phpstan/extension-installer": "^1.0",
  6020. "phpstan/phpstan": "^0.12",
  6021. "phpstan/phpstan-deprecation-rules": "^0.12",
  6022. "phpstan/phpstan-phpunit": "^0.12",
  6023. "phpstan/phpstan-strict-rules": "^0.12",
  6024. "phpunit/php-invoker": "^3.1",
  6025. "phpunit/phpunit": "^9.5"
  6026. },
  6027. "type": "library",
  6028. "autoload": {
  6029. "psr-4": {
  6030. "Lcobucci\\JWT\\": "src"
  6031. }
  6032. },
  6033. "notification-url": "https://packagist.org/downloads/",
  6034. "license": [
  6035. "BSD-3-Clause"
  6036. ],
  6037. "authors": [
  6038. {
  6039. "name": "Luís Cobucci",
  6040. "email": "lcobucci@gmail.com",
  6041. "role": "Developer"
  6042. }
  6043. ],
  6044. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  6045. "keywords": [
  6046. "JWS",
  6047. "jwt"
  6048. ],
  6049. "support": {
  6050. "issues": "https://github.com/lcobucci/jwt/issues",
  6051. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  6052. },
  6053. "funding": [
  6054. {
  6055. "url": "https://github.com/lcobucci",
  6056. "type": "github"
  6057. },
  6058. {
  6059. "url": "https://www.patreon.com/lcobucci",
  6060. "type": "patreon"
  6061. }
  6062. ],
  6063. "time": "2021-09-28T19:34:56+00:00"
  6064. },
  6065. {
  6066. "name": "markrogoyski/math-php",
  6067. "version": "v2.11.0",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/markrogoyski/math-php.git",
  6071. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  6076. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  6077. "shasum": "",
  6078. "mirrors": [
  6079. {
  6080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6081. "preferred": true
  6082. }
  6083. ]
  6084. },
  6085. "require": {
  6086. "ext-json": "*",
  6087. "php": ">=7.2.0"
  6088. },
  6089. "require-dev": {
  6090. "php-coveralls/php-coveralls": "^2.0",
  6091. "php-parallel-lint/php-parallel-lint": "^1.2",
  6092. "phploc/phploc": "*",
  6093. "phpmd/phpmd": "^2.6",
  6094. "phpstan/phpstan": "^1.10",
  6095. "phpunit/phpunit": "^8.5",
  6096. "squizlabs/php_codesniffer": "3.*"
  6097. },
  6098. "type": "library",
  6099. "autoload": {
  6100. "psr-4": {
  6101. "MathPHP\\": "src/"
  6102. }
  6103. },
  6104. "notification-url": "https://packagist.org/downloads/",
  6105. "license": [
  6106. "MIT"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Mark Rogoyski",
  6111. "email": "mark@rogoyski.com",
  6112. "homepage": "https://github.com/markrogoyski",
  6113. "role": "Lead developer"
  6114. },
  6115. {
  6116. "name": "Kevin Nowaczyk",
  6117. "homepage": "https://github.com/Beakerboy",
  6118. "role": "Developer"
  6119. },
  6120. {
  6121. "name": "MathPHP Community of Contributors",
  6122. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  6123. }
  6124. ],
  6125. "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",
  6126. "homepage": "https://github.com/markrogoyski/math-php/",
  6127. "keywords": [
  6128. "algebra",
  6129. "combinatorics",
  6130. "distributions",
  6131. "linear algebra",
  6132. "math",
  6133. "mathematics",
  6134. "matrix",
  6135. "numerical analysis",
  6136. "probability",
  6137. "regressions",
  6138. "statistics"
  6139. ],
  6140. "support": {
  6141. "issues": "https://github.com/markrogoyski/math-php/issues",
  6142. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  6143. },
  6144. "time": "2025-01-26T20:16:06+00:00"
  6145. },
  6146. {
  6147. "name": "monolog/monolog",
  6148. "version": "3.9.0",
  6149. "source": {
  6150. "type": "git",
  6151. "url": "https://github.com/Seldaek/monolog.git",
  6152. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  6153. },
  6154. "dist": {
  6155. "type": "zip",
  6156. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  6157. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  6158. "shasum": "",
  6159. "mirrors": [
  6160. {
  6161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6162. "preferred": true
  6163. }
  6164. ]
  6165. },
  6166. "require": {
  6167. "php": ">=8.1",
  6168. "psr/log": "^2.0 || ^3.0"
  6169. },
  6170. "provide": {
  6171. "psr/log-implementation": "3.0.0"
  6172. },
  6173. "require-dev": {
  6174. "aws/aws-sdk-php": "^3.0",
  6175. "doctrine/couchdb": "~1.0@dev",
  6176. "elasticsearch/elasticsearch": "^7 || ^8",
  6177. "ext-json": "*",
  6178. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  6179. "guzzlehttp/guzzle": "^7.4.5",
  6180. "guzzlehttp/psr7": "^2.2",
  6181. "mongodb/mongodb": "^1.8",
  6182. "php-amqplib/php-amqplib": "~2.4 || ^3",
  6183. "php-console/php-console": "^3.1.8",
  6184. "phpstan/phpstan": "^2",
  6185. "phpstan/phpstan-deprecation-rules": "^2",
  6186. "phpstan/phpstan-strict-rules": "^2",
  6187. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  6188. "predis/predis": "^1.1 || ^2",
  6189. "rollbar/rollbar": "^4.0",
  6190. "ruflin/elastica": "^7 || ^8",
  6191. "symfony/mailer": "^5.4 || ^6",
  6192. "symfony/mime": "^5.4 || ^6"
  6193. },
  6194. "suggest": {
  6195. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  6196. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  6197. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  6198. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  6199. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  6200. "ext-mbstring": "Allow to work properly with unicode symbols",
  6201. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  6202. "ext-openssl": "Required to send log messages using SSL",
  6203. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  6204. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  6205. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  6206. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  6207. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  6208. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  6209. },
  6210. "type": "library",
  6211. "extra": {
  6212. "branch-alias": {
  6213. "dev-main": "3.x-dev"
  6214. }
  6215. },
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Monolog\\": "src/Monolog"
  6219. }
  6220. },
  6221. "notification-url": "https://packagist.org/downloads/",
  6222. "license": [
  6223. "MIT"
  6224. ],
  6225. "authors": [
  6226. {
  6227. "name": "Jordi Boggiano",
  6228. "email": "j.boggiano@seld.be",
  6229. "homepage": "https://seld.be"
  6230. }
  6231. ],
  6232. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  6233. "homepage": "https://github.com/Seldaek/monolog",
  6234. "keywords": [
  6235. "log",
  6236. "logging",
  6237. "psr-3"
  6238. ],
  6239. "support": {
  6240. "issues": "https://github.com/Seldaek/monolog/issues",
  6241. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://github.com/Seldaek",
  6246. "type": "github"
  6247. },
  6248. {
  6249. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  6250. "type": "tidelift"
  6251. }
  6252. ],
  6253. "time": "2025-03-24T10:02:05+00:00"
  6254. },
  6255. {
  6256. "name": "mtdowling/jmespath.php",
  6257. "version": "2.7.0",
  6258. "source": {
  6259. "type": "git",
  6260. "url": "https://github.com/jmespath/jmespath.php.git",
  6261. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  6262. },
  6263. "dist": {
  6264. "type": "zip",
  6265. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  6266. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  6267. "shasum": "",
  6268. "mirrors": [
  6269. {
  6270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6271. "preferred": true
  6272. }
  6273. ]
  6274. },
  6275. "require": {
  6276. "php": "^7.2.5 || ^8.0",
  6277. "symfony/polyfill-mbstring": "^1.17"
  6278. },
  6279. "require-dev": {
  6280. "composer/xdebug-handler": "^3.0.3",
  6281. "phpunit/phpunit": "^8.5.33"
  6282. },
  6283. "bin": [
  6284. "bin/jp.php"
  6285. ],
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "2.7-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "files": [
  6294. "src/JmesPath.php"
  6295. ],
  6296. "psr-4": {
  6297. "JmesPath\\": "src/"
  6298. }
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Graham Campbell",
  6307. "email": "hello@gjcampbell.co.uk",
  6308. "homepage": "https://github.com/GrahamCampbell"
  6309. },
  6310. {
  6311. "name": "Michael Dowling",
  6312. "email": "mtdowling@gmail.com",
  6313. "homepage": "https://github.com/mtdowling"
  6314. }
  6315. ],
  6316. "description": "Declaratively specify how to extract elements from a JSON document",
  6317. "keywords": [
  6318. "json",
  6319. "jsonpath"
  6320. ],
  6321. "support": {
  6322. "issues": "https://github.com/jmespath/jmespath.php/issues",
  6323. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  6324. },
  6325. "time": "2023-08-25T10:54:48+00:00"
  6326. },
  6327. {
  6328. "name": "nesbot/carbon",
  6329. "version": "2.73.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/CarbonPHP/carbon.git",
  6333. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  6338. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "carbonphp/carbon-doctrine-types": "*",
  6343. "ext-json": "*",
  6344. "php": "^7.1.8 || ^8.0",
  6345. "psr/clock": "^1.0",
  6346. "symfony/polyfill-mbstring": "^1.0",
  6347. "symfony/polyfill-php80": "^1.16",
  6348. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  6349. },
  6350. "provide": {
  6351. "psr/clock-implementation": "1.0"
  6352. },
  6353. "require-dev": {
  6354. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  6355. "doctrine/orm": "^2.7 || ^3.0",
  6356. "friendsofphp/php-cs-fixer": "^3.0",
  6357. "kylekatarnls/multi-tester": "^2.0",
  6358. "ondrejmirtes/better-reflection": "<6",
  6359. "phpmd/phpmd": "^2.9",
  6360. "phpstan/extension-installer": "^1.0",
  6361. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  6362. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  6363. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  6364. "squizlabs/php_codesniffer": "^3.4"
  6365. },
  6366. "bin": [
  6367. "bin/carbon"
  6368. ],
  6369. "type": "library",
  6370. "extra": {
  6371. "laravel": {
  6372. "providers": [
  6373. "Carbon\\Laravel\\ServiceProvider"
  6374. ]
  6375. },
  6376. "phpstan": {
  6377. "includes": [
  6378. "extension.neon"
  6379. ]
  6380. },
  6381. "branch-alias": {
  6382. "dev-2.x": "2.x-dev",
  6383. "dev-master": "3.x-dev"
  6384. }
  6385. },
  6386. "autoload": {
  6387. "psr-4": {
  6388. "Carbon\\": "src/Carbon/"
  6389. }
  6390. },
  6391. "notification-url": "https://packagist.org/downloads/",
  6392. "license": [
  6393. "MIT"
  6394. ],
  6395. "authors": [
  6396. {
  6397. "name": "Brian Nesbitt",
  6398. "email": "brian@nesbot.com",
  6399. "homepage": "https://markido.com"
  6400. },
  6401. {
  6402. "name": "kylekatarnls",
  6403. "homepage": "https://github.com/kylekatarnls"
  6404. }
  6405. ],
  6406. "description": "An API extension for DateTime that supports 281 different languages.",
  6407. "homepage": "https://carbon.nesbot.com",
  6408. "keywords": [
  6409. "date",
  6410. "datetime",
  6411. "time"
  6412. ],
  6413. "support": {
  6414. "docs": "https://carbon.nesbot.com/docs",
  6415. "issues": "https://github.com/briannesbitt/Carbon/issues",
  6416. "source": "https://github.com/briannesbitt/Carbon"
  6417. },
  6418. "funding": [
  6419. {
  6420. "url": "https://github.com/sponsors/kylekatarnls",
  6421. "type": "github"
  6422. },
  6423. {
  6424. "url": "https://opencollective.com/Carbon#sponsor",
  6425. "type": "opencollective"
  6426. },
  6427. {
  6428. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  6429. "type": "tidelift"
  6430. }
  6431. ],
  6432. "time": "2025-01-08T20:10:23+00:00"
  6433. },
  6434. {
  6435. "name": "nikic/fast-route",
  6436. "version": "v1.3.0",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/nikic/FastRoute.git",
  6440. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  6445. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  6446. "shasum": "",
  6447. "mirrors": [
  6448. {
  6449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6450. "preferred": true
  6451. }
  6452. ]
  6453. },
  6454. "require": {
  6455. "php": ">=5.4.0"
  6456. },
  6457. "require-dev": {
  6458. "phpunit/phpunit": "^4.8.35|~5.7"
  6459. },
  6460. "type": "library",
  6461. "autoload": {
  6462. "files": [
  6463. "src/functions.php"
  6464. ],
  6465. "psr-4": {
  6466. "FastRoute\\": "src/"
  6467. }
  6468. },
  6469. "notification-url": "https://packagist.org/downloads/",
  6470. "license": [
  6471. "BSD-3-Clause"
  6472. ],
  6473. "authors": [
  6474. {
  6475. "name": "Nikita Popov",
  6476. "email": "nikic@php.net"
  6477. }
  6478. ],
  6479. "description": "Fast request router for PHP",
  6480. "keywords": [
  6481. "router",
  6482. "routing"
  6483. ],
  6484. "support": {
  6485. "issues": "https://github.com/nikic/FastRoute/issues",
  6486. "source": "https://github.com/nikic/FastRoute/tree/master"
  6487. },
  6488. "time": "2018-02-13T20:26:39+00:00"
  6489. },
  6490. {
  6491. "name": "nikic/php-parser",
  6492. "version": "v4.19.4",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/nikic/PHP-Parser.git",
  6496. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  6501. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  6502. "shasum": "",
  6503. "mirrors": [
  6504. {
  6505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6506. "preferred": true
  6507. }
  6508. ]
  6509. },
  6510. "require": {
  6511. "ext-tokenizer": "*",
  6512. "php": ">=7.1"
  6513. },
  6514. "require-dev": {
  6515. "ircmaxell/php-yacc": "^0.0.7",
  6516. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  6517. },
  6518. "bin": [
  6519. "bin/php-parse"
  6520. ],
  6521. "type": "library",
  6522. "extra": {
  6523. "branch-alias": {
  6524. "dev-master": "4.9-dev"
  6525. }
  6526. },
  6527. "autoload": {
  6528. "psr-4": {
  6529. "PhpParser\\": "lib/PhpParser"
  6530. }
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "BSD-3-Clause"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Nikita Popov"
  6539. }
  6540. ],
  6541. "description": "A PHP parser written in PHP",
  6542. "keywords": [
  6543. "parser",
  6544. "php"
  6545. ],
  6546. "support": {
  6547. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6548. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  6549. },
  6550. "time": "2024-09-29T15:01:53+00:00"
  6551. },
  6552. {
  6553. "name": "openai-php/client",
  6554. "version": "v0.10.3",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/openai-php/client.git",
  6558. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6563. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  6564. "shasum": "",
  6565. "mirrors": [
  6566. {
  6567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6568. "preferred": true
  6569. }
  6570. ]
  6571. },
  6572. "require": {
  6573. "php": "^8.1.0",
  6574. "php-http/discovery": "^1.20.0",
  6575. "php-http/multipart-stream-builder": "^1.4.2",
  6576. "psr/http-client": "^1.0.3",
  6577. "psr/http-client-implementation": "^1.0.1",
  6578. "psr/http-factory-implementation": "*",
  6579. "psr/http-message": "^1.1.0|^2.0.0"
  6580. },
  6581. "require-dev": {
  6582. "guzzlehttp/guzzle": "^7.9.2",
  6583. "guzzlehttp/psr7": "^2.7.0",
  6584. "laravel/pint": "^1.18.1",
  6585. "mockery/mockery": "^1.6.12",
  6586. "nunomaduro/collision": "^7.11.0|^8.5.0",
  6587. "pestphp/pest": "^2.36.0|^3.5.0",
  6588. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  6589. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  6590. "phpstan/phpstan": "^1.12.7",
  6591. "symfony/var-dumper": "^6.4.11|^7.1.5"
  6592. },
  6593. "type": "library",
  6594. "autoload": {
  6595. "files": [
  6596. "src/OpenAI.php"
  6597. ],
  6598. "psr-4": {
  6599. "OpenAI\\": "src/"
  6600. }
  6601. },
  6602. "notification-url": "https://packagist.org/downloads/",
  6603. "license": [
  6604. "MIT"
  6605. ],
  6606. "authors": [
  6607. {
  6608. "name": "Nuno Maduro",
  6609. "email": "enunomaduro@gmail.com"
  6610. },
  6611. {
  6612. "name": "Sandro Gehri"
  6613. }
  6614. ],
  6615. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  6616. "keywords": [
  6617. "GPT-3",
  6618. "api",
  6619. "client",
  6620. "codex",
  6621. "dall-e",
  6622. "language",
  6623. "natural",
  6624. "openai",
  6625. "php",
  6626. "processing",
  6627. "sdk"
  6628. ],
  6629. "support": {
  6630. "issues": "https://github.com/openai-php/client/issues",
  6631. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  6632. },
  6633. "funding": [
  6634. {
  6635. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6636. "type": "custom"
  6637. },
  6638. {
  6639. "url": "https://github.com/gehrisandro",
  6640. "type": "github"
  6641. },
  6642. {
  6643. "url": "https://github.com/nunomaduro",
  6644. "type": "github"
  6645. }
  6646. ],
  6647. "time": "2024-11-12T20:51:16+00:00"
  6648. },
  6649. {
  6650. "name": "paragonie/constant_time_encoding",
  6651. "version": "v3.0.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/paragonie/constant_time_encoding.git",
  6655. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  6660. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  6661. "shasum": "",
  6662. "mirrors": [
  6663. {
  6664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6665. "preferred": true
  6666. }
  6667. ]
  6668. },
  6669. "require": {
  6670. "php": "^8"
  6671. },
  6672. "require-dev": {
  6673. "phpunit/phpunit": "^9",
  6674. "vimeo/psalm": "^4|^5"
  6675. },
  6676. "type": "library",
  6677. "autoload": {
  6678. "psr-4": {
  6679. "ParagonIE\\ConstantTime\\": "src/"
  6680. }
  6681. },
  6682. "notification-url": "https://packagist.org/downloads/",
  6683. "license": [
  6684. "MIT"
  6685. ],
  6686. "authors": [
  6687. {
  6688. "name": "Paragon Initiative Enterprises",
  6689. "email": "security@paragonie.com",
  6690. "homepage": "https://paragonie.com",
  6691. "role": "Maintainer"
  6692. },
  6693. {
  6694. "name": "Steve 'Sc00bz' Thomas",
  6695. "email": "steve@tobtu.com",
  6696. "homepage": "https://www.tobtu.com",
  6697. "role": "Original Developer"
  6698. }
  6699. ],
  6700. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  6701. "keywords": [
  6702. "base16",
  6703. "base32",
  6704. "base32_decode",
  6705. "base32_encode",
  6706. "base64",
  6707. "base64_decode",
  6708. "base64_encode",
  6709. "bin2hex",
  6710. "encoding",
  6711. "hex",
  6712. "hex2bin",
  6713. "rfc4648"
  6714. ],
  6715. "support": {
  6716. "email": "info@paragonie.com",
  6717. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  6718. "source": "https://github.com/paragonie/constant_time_encoding"
  6719. },
  6720. "time": "2024-05-08T12:36:18+00:00"
  6721. },
  6722. {
  6723. "name": "paragonie/random_compat",
  6724. "version": "v9.99.100",
  6725. "source": {
  6726. "type": "git",
  6727. "url": "https://github.com/paragonie/random_compat.git",
  6728. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  6729. },
  6730. "dist": {
  6731. "type": "zip",
  6732. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6733. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  6734. "shasum": "",
  6735. "mirrors": [
  6736. {
  6737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6738. "preferred": true
  6739. }
  6740. ]
  6741. },
  6742. "require": {
  6743. "php": ">= 7"
  6744. },
  6745. "require-dev": {
  6746. "phpunit/phpunit": "4.*|5.*",
  6747. "vimeo/psalm": "^1"
  6748. },
  6749. "suggest": {
  6750. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6751. },
  6752. "type": "library",
  6753. "notification-url": "https://packagist.org/downloads/",
  6754. "license": [
  6755. "MIT"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Paragon Initiative Enterprises",
  6760. "email": "security@paragonie.com",
  6761. "homepage": "https://paragonie.com"
  6762. }
  6763. ],
  6764. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6765. "keywords": [
  6766. "csprng",
  6767. "polyfill",
  6768. "pseudorandom",
  6769. "random"
  6770. ],
  6771. "support": {
  6772. "email": "info@paragonie.com",
  6773. "issues": "https://github.com/paragonie/random_compat/issues",
  6774. "source": "https://github.com/paragonie/random_compat"
  6775. },
  6776. "time": "2020-10-15T08:29:30+00:00"
  6777. },
  6778. {
  6779. "name": "php-amqplib/php-amqplib",
  6780. "version": "v3.6.1",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6784. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6789. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  6790. "shasum": "",
  6791. "mirrors": [
  6792. {
  6793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6794. "preferred": true
  6795. }
  6796. ]
  6797. },
  6798. "require": {
  6799. "ext-mbstring": "*",
  6800. "ext-sockets": "*",
  6801. "php": "^7.2||^8.0",
  6802. "phpseclib/phpseclib": "^2.0|^3.0"
  6803. },
  6804. "conflict": {
  6805. "php": "7.4.0 - 7.4.1"
  6806. },
  6807. "replace": {
  6808. "videlalvaro/php-amqplib": "self.version"
  6809. },
  6810. "require-dev": {
  6811. "ext-curl": "*",
  6812. "nategood/httpful": "^0.2.20",
  6813. "phpunit/phpunit": "^7.5|^9.5",
  6814. "squizlabs/php_codesniffer": "^3.6"
  6815. },
  6816. "type": "library",
  6817. "extra": {
  6818. "branch-alias": {
  6819. "dev-master": "3.0-dev"
  6820. }
  6821. },
  6822. "autoload": {
  6823. "psr-4": {
  6824. "PhpAmqpLib\\": "PhpAmqpLib/"
  6825. }
  6826. },
  6827. "notification-url": "https://packagist.org/downloads/",
  6828. "license": [
  6829. "LGPL-2.1-or-later"
  6830. ],
  6831. "authors": [
  6832. {
  6833. "name": "Alvaro Videla",
  6834. "role": "Original Maintainer"
  6835. },
  6836. {
  6837. "name": "Raúl Araya",
  6838. "email": "nubeiro@gmail.com",
  6839. "role": "Maintainer"
  6840. },
  6841. {
  6842. "name": "Luke Bakken",
  6843. "email": "luke@bakken.io",
  6844. "role": "Maintainer"
  6845. },
  6846. {
  6847. "name": "Ramūnas Dronga",
  6848. "email": "github@ramuno.lt",
  6849. "role": "Maintainer"
  6850. }
  6851. ],
  6852. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6853. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6854. "keywords": [
  6855. "message",
  6856. "queue",
  6857. "rabbitmq"
  6858. ],
  6859. "support": {
  6860. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6861. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  6862. },
  6863. "time": "2024-02-07T17:21:26+00:00"
  6864. },
  6865. {
  6866. "name": "php-di/phpdoc-reader",
  6867. "version": "2.2.1",
  6868. "source": {
  6869. "type": "git",
  6870. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6871. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6872. },
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6876. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6877. "shasum": "",
  6878. "mirrors": [
  6879. {
  6880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6881. "preferred": true
  6882. }
  6883. ]
  6884. },
  6885. "require": {
  6886. "php": ">=7.2.0"
  6887. },
  6888. "require-dev": {
  6889. "mnapoli/hard-mode": "~0.3.0",
  6890. "phpunit/phpunit": "^8.5|^9.0"
  6891. },
  6892. "type": "library",
  6893. "autoload": {
  6894. "psr-4": {
  6895. "PhpDocReader\\": "src/PhpDocReader"
  6896. }
  6897. },
  6898. "notification-url": "https://packagist.org/downloads/",
  6899. "license": [
  6900. "MIT"
  6901. ],
  6902. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6903. "keywords": [
  6904. "phpdoc",
  6905. "reflection"
  6906. ],
  6907. "support": {
  6908. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6909. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6910. },
  6911. "time": "2020-10-12T12:39:22+00:00"
  6912. },
  6913. {
  6914. "name": "php-http/discovery",
  6915. "version": "1.20.0",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/php-http/discovery.git",
  6919. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6924. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6925. "shasum": "",
  6926. "mirrors": [
  6927. {
  6928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6929. "preferred": true
  6930. }
  6931. ]
  6932. },
  6933. "require": {
  6934. "composer-plugin-api": "^1.0|^2.0",
  6935. "php": "^7.1 || ^8.0"
  6936. },
  6937. "conflict": {
  6938. "nyholm/psr7": "<1.0",
  6939. "zendframework/zend-diactoros": "*"
  6940. },
  6941. "provide": {
  6942. "php-http/async-client-implementation": "*",
  6943. "php-http/client-implementation": "*",
  6944. "psr/http-client-implementation": "*",
  6945. "psr/http-factory-implementation": "*",
  6946. "psr/http-message-implementation": "*"
  6947. },
  6948. "require-dev": {
  6949. "composer/composer": "^1.0.2|^2.0",
  6950. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6951. "php-http/httplug": "^1.0 || ^2.0",
  6952. "php-http/message-factory": "^1.0",
  6953. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6954. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6955. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6956. },
  6957. "type": "composer-plugin",
  6958. "extra": {
  6959. "class": "Http\\Discovery\\Composer\\Plugin",
  6960. "plugin-optional": true
  6961. },
  6962. "autoload": {
  6963. "psr-4": {
  6964. "Http\\Discovery\\": "src/"
  6965. },
  6966. "exclude-from-classmap": [
  6967. "src/Composer/Plugin.php"
  6968. ]
  6969. },
  6970. "notification-url": "https://packagist.org/downloads/",
  6971. "license": [
  6972. "MIT"
  6973. ],
  6974. "authors": [
  6975. {
  6976. "name": "Márk Sági-Kazár",
  6977. "email": "mark.sagikazar@gmail.com"
  6978. }
  6979. ],
  6980. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6981. "homepage": "http://php-http.org",
  6982. "keywords": [
  6983. "adapter",
  6984. "client",
  6985. "discovery",
  6986. "factory",
  6987. "http",
  6988. "message",
  6989. "psr17",
  6990. "psr7"
  6991. ],
  6992. "support": {
  6993. "issues": "https://github.com/php-http/discovery/issues",
  6994. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6995. },
  6996. "time": "2024-10-02T11:20:13+00:00"
  6997. },
  6998. {
  6999. "name": "php-http/multipart-stream-builder",
  7000. "version": "1.x-dev",
  7001. "source": {
  7002. "type": "git",
  7003. "url": "https://github.com/php-http/multipart-stream-builder.git",
  7004. "reference": "afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7"
  7005. },
  7006. "dist": {
  7007. "type": "zip",
  7008. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7",
  7009. "reference": "afaf3dea8d7ffe47cfbb2d8484b9671d9a6e40a7",
  7010. "shasum": "",
  7011. "mirrors": [
  7012. {
  7013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7014. "preferred": true
  7015. }
  7016. ]
  7017. },
  7018. "require": {
  7019. "php": "^7.1 || ^8.0",
  7020. "php-http/discovery": "^1.15",
  7021. "psr/http-factory-implementation": "^1.0"
  7022. },
  7023. "require-dev": {
  7024. "nyholm/psr7": "^1.0",
  7025. "php-http/message": "^1.5",
  7026. "php-http/message-factory": "^1.0.2",
  7027. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  7028. },
  7029. "default-branch": true,
  7030. "type": "library",
  7031. "autoload": {
  7032. "psr-4": {
  7033. "Http\\Message\\MultipartStream\\": "src/"
  7034. }
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Tobias Nyholm",
  7043. "email": "tobias.nyholm@gmail.com"
  7044. }
  7045. ],
  7046. "description": "A builder class that help you create a multipart stream",
  7047. "homepage": "http://php-http.org",
  7048. "keywords": [
  7049. "factory",
  7050. "http",
  7051. "message",
  7052. "multipart stream",
  7053. "stream"
  7054. ],
  7055. "support": {
  7056. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  7057. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.x"
  7058. },
  7059. "time": "2024-10-02T11:51:28+00:00"
  7060. },
  7061. {
  7062. "name": "phper666/jwt-auth",
  7063. "version": "v4.0.11",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/phper666/jwt-auth.git",
  7067. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  7072. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  7073. "shasum": "",
  7074. "mirrors": [
  7075. {
  7076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7077. "preferred": true
  7078. }
  7079. ]
  7080. },
  7081. "require": {
  7082. "ext-swoole": ">=4.4",
  7083. "lcobucci/jwt": "4.1.5",
  7084. "nesbot/carbon": "^1.0 || ^2.0",
  7085. "php": ">=7.4"
  7086. },
  7087. "suggest": {
  7088. "hyperf/cache": "required hyperf/cache ~2.2.0",
  7089. "hyperf/command": "required hyperf/command ~2.2.0",
  7090. "hyperf/config": "required hyperf/config ~2.2.0",
  7091. "hyperf/di": "required hyperf/di ~2.2.0"
  7092. },
  7093. "type": "library",
  7094. "extra": {
  7095. "hyperf": {
  7096. "config": "Phper666\\JWTAuth\\ConfigProvider"
  7097. }
  7098. },
  7099. "autoload": {
  7100. "files": [
  7101. "src/Functions.php"
  7102. ],
  7103. "psr-4": {
  7104. "Phper666\\JWTAuth\\": "src/"
  7105. }
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "MIT"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "Li Yuzhao",
  7114. "email": "562405704@qq.com",
  7115. "homepage": "https://github.com/phper666/jwt-auth",
  7116. "role": "Developer"
  7117. }
  7118. ],
  7119. "description": "jwt-auth Component",
  7120. "keywords": [
  7121. "hyperf",
  7122. "php"
  7123. ],
  7124. "support": {
  7125. "issues": "https://github.com/phper666/jwt-auth/issues",
  7126. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  7127. },
  7128. "time": "2024-02-02T13:24:54+00:00"
  7129. },
  7130. {
  7131. "name": "phpoption/phpoption",
  7132. "version": "1.9.3",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/schmittjoh/php-option.git",
  7136. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7141. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  7142. "shasum": "",
  7143. "mirrors": [
  7144. {
  7145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7146. "preferred": true
  7147. }
  7148. ]
  7149. },
  7150. "require": {
  7151. "php": "^7.2.5 || ^8.0"
  7152. },
  7153. "require-dev": {
  7154. "bamarni/composer-bin-plugin": "^1.8.2",
  7155. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  7156. },
  7157. "type": "library",
  7158. "extra": {
  7159. "bamarni-bin": {
  7160. "bin-links": true,
  7161. "forward-command": false
  7162. },
  7163. "branch-alias": {
  7164. "dev-master": "1.9-dev"
  7165. }
  7166. },
  7167. "autoload": {
  7168. "psr-4": {
  7169. "PhpOption\\": "src/PhpOption/"
  7170. }
  7171. },
  7172. "notification-url": "https://packagist.org/downloads/",
  7173. "license": [
  7174. "Apache-2.0"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "Johannes M. Schmitt",
  7179. "email": "schmittjoh@gmail.com",
  7180. "homepage": "https://github.com/schmittjoh"
  7181. },
  7182. {
  7183. "name": "Graham Campbell",
  7184. "email": "hello@gjcampbell.co.uk",
  7185. "homepage": "https://github.com/GrahamCampbell"
  7186. }
  7187. ],
  7188. "description": "Option Type for PHP",
  7189. "keywords": [
  7190. "language",
  7191. "option",
  7192. "php",
  7193. "type"
  7194. ],
  7195. "support": {
  7196. "issues": "https://github.com/schmittjoh/php-option/issues",
  7197. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  7198. },
  7199. "funding": [
  7200. {
  7201. "url": "https://github.com/GrahamCampbell",
  7202. "type": "github"
  7203. },
  7204. {
  7205. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  7206. "type": "tidelift"
  7207. }
  7208. ],
  7209. "time": "2024-07-20T21:41:07+00:00"
  7210. },
  7211. {
  7212. "name": "phpseclib/phpseclib",
  7213. "version": "3.0.43",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/phpseclib/phpseclib.git",
  7217. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  7222. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  7223. "shasum": "",
  7224. "mirrors": [
  7225. {
  7226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7227. "preferred": true
  7228. }
  7229. ]
  7230. },
  7231. "require": {
  7232. "paragonie/constant_time_encoding": "^1|^2|^3",
  7233. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  7234. "php": ">=5.6.1"
  7235. },
  7236. "require-dev": {
  7237. "phpunit/phpunit": "*"
  7238. },
  7239. "suggest": {
  7240. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  7241. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  7242. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  7243. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  7244. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  7245. },
  7246. "type": "library",
  7247. "autoload": {
  7248. "files": [
  7249. "phpseclib/bootstrap.php"
  7250. ],
  7251. "psr-4": {
  7252. "phpseclib3\\": "phpseclib/"
  7253. }
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "MIT"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Jim Wigginton",
  7262. "email": "terrafrost@php.net",
  7263. "role": "Lead Developer"
  7264. },
  7265. {
  7266. "name": "Patrick Monnerat",
  7267. "email": "pm@datasphere.ch",
  7268. "role": "Developer"
  7269. },
  7270. {
  7271. "name": "Andreas Fischer",
  7272. "email": "bantu@phpbb.com",
  7273. "role": "Developer"
  7274. },
  7275. {
  7276. "name": "Hans-Jürgen Petrich",
  7277. "email": "petrich@tronic-media.com",
  7278. "role": "Developer"
  7279. },
  7280. {
  7281. "name": "Graham Campbell",
  7282. "email": "graham@alt-three.com",
  7283. "role": "Developer"
  7284. }
  7285. ],
  7286. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  7287. "homepage": "http://phpseclib.sourceforge.net",
  7288. "keywords": [
  7289. "BigInteger",
  7290. "aes",
  7291. "asn.1",
  7292. "asn1",
  7293. "blowfish",
  7294. "crypto",
  7295. "cryptography",
  7296. "encryption",
  7297. "rsa",
  7298. "security",
  7299. "sftp",
  7300. "signature",
  7301. "signing",
  7302. "ssh",
  7303. "twofish",
  7304. "x.509",
  7305. "x509"
  7306. ],
  7307. "support": {
  7308. "issues": "https://github.com/phpseclib/phpseclib/issues",
  7309. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  7310. },
  7311. "funding": [
  7312. {
  7313. "url": "https://github.com/terrafrost",
  7314. "type": "github"
  7315. },
  7316. {
  7317. "url": "https://www.patreon.com/phpseclib",
  7318. "type": "patreon"
  7319. },
  7320. {
  7321. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  7322. "type": "tidelift"
  7323. }
  7324. ],
  7325. "time": "2024-12-14T21:12:59+00:00"
  7326. },
  7327. {
  7328. "name": "psr/cache",
  7329. "version": "3.0.0",
  7330. "source": {
  7331. "type": "git",
  7332. "url": "https://github.com/php-fig/cache.git",
  7333. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7334. },
  7335. "dist": {
  7336. "type": "zip",
  7337. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7338. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7339. "shasum": "",
  7340. "mirrors": [
  7341. {
  7342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7343. "preferred": true
  7344. }
  7345. ]
  7346. },
  7347. "require": {
  7348. "php": ">=8.0.0"
  7349. },
  7350. "type": "library",
  7351. "extra": {
  7352. "branch-alias": {
  7353. "dev-master": "1.0.x-dev"
  7354. }
  7355. },
  7356. "autoload": {
  7357. "psr-4": {
  7358. "Psr\\Cache\\": "src/"
  7359. }
  7360. },
  7361. "notification-url": "https://packagist.org/downloads/",
  7362. "license": [
  7363. "MIT"
  7364. ],
  7365. "authors": [
  7366. {
  7367. "name": "PHP-FIG",
  7368. "homepage": "https://www.php-fig.org/"
  7369. }
  7370. ],
  7371. "description": "Common interface for caching libraries",
  7372. "keywords": [
  7373. "cache",
  7374. "psr",
  7375. "psr-6"
  7376. ],
  7377. "support": {
  7378. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7379. },
  7380. "time": "2021-02-03T23:26:27+00:00"
  7381. },
  7382. {
  7383. "name": "psr/clock",
  7384. "version": "1.0.0",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/php-fig/clock.git",
  7388. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7393. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  7394. "shasum": "",
  7395. "mirrors": [
  7396. {
  7397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7398. "preferred": true
  7399. }
  7400. ]
  7401. },
  7402. "require": {
  7403. "php": "^7.0 || ^8.0"
  7404. },
  7405. "type": "library",
  7406. "autoload": {
  7407. "psr-4": {
  7408. "Psr\\Clock\\": "src/"
  7409. }
  7410. },
  7411. "notification-url": "https://packagist.org/downloads/",
  7412. "license": [
  7413. "MIT"
  7414. ],
  7415. "authors": [
  7416. {
  7417. "name": "PHP-FIG",
  7418. "homepage": "https://www.php-fig.org/"
  7419. }
  7420. ],
  7421. "description": "Common interface for reading the clock.",
  7422. "homepage": "https://github.com/php-fig/clock",
  7423. "keywords": [
  7424. "clock",
  7425. "now",
  7426. "psr",
  7427. "psr-20",
  7428. "time"
  7429. ],
  7430. "support": {
  7431. "issues": "https://github.com/php-fig/clock/issues",
  7432. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  7433. },
  7434. "time": "2022-11-25T14:36:26+00:00"
  7435. },
  7436. {
  7437. "name": "psr/container",
  7438. "version": "2.0.2",
  7439. "source": {
  7440. "type": "git",
  7441. "url": "https://github.com/php-fig/container.git",
  7442. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7443. },
  7444. "dist": {
  7445. "type": "zip",
  7446. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7447. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7448. "shasum": "",
  7449. "mirrors": [
  7450. {
  7451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7452. "preferred": true
  7453. }
  7454. ]
  7455. },
  7456. "require": {
  7457. "php": ">=7.4.0"
  7458. },
  7459. "type": "library",
  7460. "extra": {
  7461. "branch-alias": {
  7462. "dev-master": "2.0.x-dev"
  7463. }
  7464. },
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Psr\\Container\\": "src/"
  7468. }
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "PHP-FIG",
  7477. "homepage": "https://www.php-fig.org/"
  7478. }
  7479. ],
  7480. "description": "Common Container Interface (PHP FIG PSR-11)",
  7481. "homepage": "https://github.com/php-fig/container",
  7482. "keywords": [
  7483. "PSR-11",
  7484. "container",
  7485. "container-interface",
  7486. "container-interop",
  7487. "psr"
  7488. ],
  7489. "support": {
  7490. "issues": "https://github.com/php-fig/container/issues",
  7491. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7492. },
  7493. "time": "2021-11-05T16:47:00+00:00"
  7494. },
  7495. {
  7496. "name": "psr/event-dispatcher",
  7497. "version": "1.0.0",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/php-fig/event-dispatcher.git",
  7501. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7506. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7507. "shasum": "",
  7508. "mirrors": [
  7509. {
  7510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7511. "preferred": true
  7512. }
  7513. ]
  7514. },
  7515. "require": {
  7516. "php": ">=7.2.0"
  7517. },
  7518. "type": "library",
  7519. "extra": {
  7520. "branch-alias": {
  7521. "dev-master": "1.0.x-dev"
  7522. }
  7523. },
  7524. "autoload": {
  7525. "psr-4": {
  7526. "Psr\\EventDispatcher\\": "src/"
  7527. }
  7528. },
  7529. "notification-url": "https://packagist.org/downloads/",
  7530. "license": [
  7531. "MIT"
  7532. ],
  7533. "authors": [
  7534. {
  7535. "name": "PHP-FIG",
  7536. "homepage": "http://www.php-fig.org/"
  7537. }
  7538. ],
  7539. "description": "Standard interfaces for event handling.",
  7540. "keywords": [
  7541. "events",
  7542. "psr",
  7543. "psr-14"
  7544. ],
  7545. "support": {
  7546. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7547. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7548. },
  7549. "time": "2019-01-08T18:20:26+00:00"
  7550. },
  7551. {
  7552. "name": "psr/http-client",
  7553. "version": "1.0.3",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/php-fig/http-client.git",
  7557. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7562. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7563. "shasum": "",
  7564. "mirrors": [
  7565. {
  7566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7567. "preferred": true
  7568. }
  7569. ]
  7570. },
  7571. "require": {
  7572. "php": "^7.0 || ^8.0",
  7573. "psr/http-message": "^1.0 || ^2.0"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "branch-alias": {
  7578. "dev-master": "1.0.x-dev"
  7579. }
  7580. },
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Psr\\Http\\Client\\": "src/"
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "PHP-FIG",
  7593. "homepage": "https://www.php-fig.org/"
  7594. }
  7595. ],
  7596. "description": "Common interface for HTTP clients",
  7597. "homepage": "https://github.com/php-fig/http-client",
  7598. "keywords": [
  7599. "http",
  7600. "http-client",
  7601. "psr",
  7602. "psr-18"
  7603. ],
  7604. "support": {
  7605. "source": "https://github.com/php-fig/http-client"
  7606. },
  7607. "time": "2023-09-23T14:17:50+00:00"
  7608. },
  7609. {
  7610. "name": "psr/http-factory",
  7611. "version": "1.0.2",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/php-fig/http-factory.git",
  7615. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7620. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7621. "shasum": "",
  7622. "mirrors": [
  7623. {
  7624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7625. "preferred": true
  7626. }
  7627. ]
  7628. },
  7629. "require": {
  7630. "php": ">=7.0.0",
  7631. "psr/http-message": "^1.0 || ^2.0"
  7632. },
  7633. "type": "library",
  7634. "extra": {
  7635. "branch-alias": {
  7636. "dev-master": "1.0.x-dev"
  7637. }
  7638. },
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Psr\\Http\\Message\\": "src/"
  7642. }
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "PHP-FIG",
  7651. "homepage": "https://www.php-fig.org/"
  7652. }
  7653. ],
  7654. "description": "Common interfaces for PSR-7 HTTP message factories",
  7655. "keywords": [
  7656. "factory",
  7657. "http",
  7658. "message",
  7659. "psr",
  7660. "psr-17",
  7661. "psr-7",
  7662. "request",
  7663. "response"
  7664. ],
  7665. "support": {
  7666. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7667. },
  7668. "time": "2023-04-10T20:10:41+00:00"
  7669. },
  7670. {
  7671. "name": "psr/http-message",
  7672. "version": "2.0",
  7673. "source": {
  7674. "type": "git",
  7675. "url": "https://github.com/php-fig/http-message.git",
  7676. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7677. },
  7678. "dist": {
  7679. "type": "zip",
  7680. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7681. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7682. "shasum": "",
  7683. "mirrors": [
  7684. {
  7685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7686. "preferred": true
  7687. }
  7688. ]
  7689. },
  7690. "require": {
  7691. "php": "^7.2 || ^8.0"
  7692. },
  7693. "type": "library",
  7694. "extra": {
  7695. "branch-alias": {
  7696. "dev-master": "2.0.x-dev"
  7697. }
  7698. },
  7699. "autoload": {
  7700. "psr-4": {
  7701. "Psr\\Http\\Message\\": "src/"
  7702. }
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "PHP-FIG",
  7711. "homepage": "https://www.php-fig.org/"
  7712. }
  7713. ],
  7714. "description": "Common interface for HTTP messages",
  7715. "homepage": "https://github.com/php-fig/http-message",
  7716. "keywords": [
  7717. "http",
  7718. "http-message",
  7719. "psr",
  7720. "psr-7",
  7721. "request",
  7722. "response"
  7723. ],
  7724. "support": {
  7725. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7726. },
  7727. "time": "2023-04-04T09:54:51+00:00"
  7728. },
  7729. {
  7730. "name": "psr/http-server-handler",
  7731. "version": "1.0.2",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/php-fig/http-server-handler.git",
  7735. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  7740. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  7741. "shasum": "",
  7742. "mirrors": [
  7743. {
  7744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7745. "preferred": true
  7746. }
  7747. ]
  7748. },
  7749. "require": {
  7750. "php": ">=7.0",
  7751. "psr/http-message": "^1.0 || ^2.0"
  7752. },
  7753. "type": "library",
  7754. "extra": {
  7755. "branch-alias": {
  7756. "dev-master": "1.0.x-dev"
  7757. }
  7758. },
  7759. "autoload": {
  7760. "psr-4": {
  7761. "Psr\\Http\\Server\\": "src/"
  7762. }
  7763. },
  7764. "notification-url": "https://packagist.org/downloads/",
  7765. "license": [
  7766. "MIT"
  7767. ],
  7768. "authors": [
  7769. {
  7770. "name": "PHP-FIG",
  7771. "homepage": "https://www.php-fig.org/"
  7772. }
  7773. ],
  7774. "description": "Common interface for HTTP server-side request handler",
  7775. "keywords": [
  7776. "handler",
  7777. "http",
  7778. "http-interop",
  7779. "psr",
  7780. "psr-15",
  7781. "psr-7",
  7782. "request",
  7783. "response",
  7784. "server"
  7785. ],
  7786. "support": {
  7787. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  7788. },
  7789. "time": "2023-04-10T20:06:20+00:00"
  7790. },
  7791. {
  7792. "name": "psr/http-server-middleware",
  7793. "version": "1.0.2",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/php-fig/http-server-middleware.git",
  7797. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7802. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  7803. "shasum": "",
  7804. "mirrors": [
  7805. {
  7806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7807. "preferred": true
  7808. }
  7809. ]
  7810. },
  7811. "require": {
  7812. "php": ">=7.0",
  7813. "psr/http-message": "^1.0 || ^2.0",
  7814. "psr/http-server-handler": "^1.0"
  7815. },
  7816. "type": "library",
  7817. "extra": {
  7818. "branch-alias": {
  7819. "dev-master": "1.0.x-dev"
  7820. }
  7821. },
  7822. "autoload": {
  7823. "psr-4": {
  7824. "Psr\\Http\\Server\\": "src/"
  7825. }
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "MIT"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "PHP-FIG",
  7834. "homepage": "https://www.php-fig.org/"
  7835. }
  7836. ],
  7837. "description": "Common interface for HTTP server-side middleware",
  7838. "keywords": [
  7839. "http",
  7840. "http-interop",
  7841. "middleware",
  7842. "psr",
  7843. "psr-15",
  7844. "psr-7",
  7845. "request",
  7846. "response"
  7847. ],
  7848. "support": {
  7849. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7850. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7851. },
  7852. "time": "2023-04-11T06:14:47+00:00"
  7853. },
  7854. {
  7855. "name": "psr/log",
  7856. "version": "3.0.1",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/php-fig/log.git",
  7860. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  7865. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  7866. "shasum": "",
  7867. "mirrors": [
  7868. {
  7869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7870. "preferred": true
  7871. }
  7872. ]
  7873. },
  7874. "require": {
  7875. "php": ">=8.0.0"
  7876. },
  7877. "type": "library",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-master": "3.x-dev"
  7881. }
  7882. },
  7883. "autoload": {
  7884. "psr-4": {
  7885. "Psr\\Log\\": "src"
  7886. }
  7887. },
  7888. "notification-url": "https://packagist.org/downloads/",
  7889. "license": [
  7890. "MIT"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "PHP-FIG",
  7895. "homepage": "https://www.php-fig.org/"
  7896. }
  7897. ],
  7898. "description": "Common interface for logging libraries",
  7899. "homepage": "https://github.com/php-fig/log",
  7900. "keywords": [
  7901. "log",
  7902. "psr",
  7903. "psr-3"
  7904. ],
  7905. "support": {
  7906. "source": "https://github.com/php-fig/log/tree/3.0.1"
  7907. },
  7908. "time": "2024-08-21T13:31:24+00:00"
  7909. },
  7910. {
  7911. "name": "psr/simple-cache",
  7912. "version": "3.0.0",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/php-fig/simple-cache.git",
  7916. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7921. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7922. "shasum": "",
  7923. "mirrors": [
  7924. {
  7925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7926. "preferred": true
  7927. }
  7928. ]
  7929. },
  7930. "require": {
  7931. "php": ">=8.0.0"
  7932. },
  7933. "type": "library",
  7934. "extra": {
  7935. "branch-alias": {
  7936. "dev-master": "3.0.x-dev"
  7937. }
  7938. },
  7939. "autoload": {
  7940. "psr-4": {
  7941. "Psr\\SimpleCache\\": "src/"
  7942. }
  7943. },
  7944. "notification-url": "https://packagist.org/downloads/",
  7945. "license": [
  7946. "MIT"
  7947. ],
  7948. "authors": [
  7949. {
  7950. "name": "PHP-FIG",
  7951. "homepage": "https://www.php-fig.org/"
  7952. }
  7953. ],
  7954. "description": "Common interfaces for simple caching",
  7955. "keywords": [
  7956. "cache",
  7957. "caching",
  7958. "psr",
  7959. "psr-16",
  7960. "simple-cache"
  7961. ],
  7962. "support": {
  7963. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7964. },
  7965. "time": "2021-10-29T13:26:27+00:00"
  7966. },
  7967. {
  7968. "name": "ralouphie/getallheaders",
  7969. "version": "3.0.3",
  7970. "source": {
  7971. "type": "git",
  7972. "url": "https://github.com/ralouphie/getallheaders.git",
  7973. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7974. },
  7975. "dist": {
  7976. "type": "zip",
  7977. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7978. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7979. "shasum": "",
  7980. "mirrors": [
  7981. {
  7982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7983. "preferred": true
  7984. }
  7985. ]
  7986. },
  7987. "require": {
  7988. "php": ">=5.6"
  7989. },
  7990. "require-dev": {
  7991. "php-coveralls/php-coveralls": "^2.1",
  7992. "phpunit/phpunit": "^5 || ^6.5"
  7993. },
  7994. "type": "library",
  7995. "autoload": {
  7996. "files": [
  7997. "src/getallheaders.php"
  7998. ]
  7999. },
  8000. "notification-url": "https://packagist.org/downloads/",
  8001. "license": [
  8002. "MIT"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Ralph Khattar",
  8007. "email": "ralph.khattar@gmail.com"
  8008. }
  8009. ],
  8010. "description": "A polyfill for getallheaders.",
  8011. "support": {
  8012. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8013. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8014. },
  8015. "time": "2019-03-08T08:55:37+00:00"
  8016. },
  8017. {
  8018. "name": "stella-maris/clock",
  8019. "version": "0.1.7",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/stella-maris-solutions/clock.git",
  8023. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  8028. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  8029. "shasum": "",
  8030. "mirrors": [
  8031. {
  8032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8033. "preferred": true
  8034. }
  8035. ]
  8036. },
  8037. "require": {
  8038. "php": "^7.0|^8.0",
  8039. "psr/clock": "^1.0"
  8040. },
  8041. "type": "library",
  8042. "autoload": {
  8043. "psr-4": {
  8044. "StellaMaris\\Clock\\": "src"
  8045. }
  8046. },
  8047. "notification-url": "https://packagist.org/downloads/",
  8048. "license": [
  8049. "MIT"
  8050. ],
  8051. "authors": [
  8052. {
  8053. "name": "Andreas Heigl",
  8054. "role": "Maintainer"
  8055. }
  8056. ],
  8057. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  8058. "homepage": "https://gitlab.com/stella-maris/clock",
  8059. "keywords": [
  8060. "clock",
  8061. "datetime",
  8062. "point in time",
  8063. "psr20"
  8064. ],
  8065. "support": {
  8066. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  8067. },
  8068. "time": "2022-11-25T16:15:06+00:00"
  8069. },
  8070. {
  8071. "name": "swow/psr7-plus",
  8072. "version": "v1.1.2",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/swow/psr7-plus.git",
  8076. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  8081. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  8082. "shasum": "",
  8083. "mirrors": [
  8084. {
  8085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8086. "preferred": true
  8087. }
  8088. ]
  8089. },
  8090. "require": {
  8091. "php": ">=8.0",
  8092. "psr/http-client": "^1.0",
  8093. "psr/http-factory": "^1.0",
  8094. "psr/http-message": "^1.1|^2.0"
  8095. },
  8096. "type": "library",
  8097. "autoload": {
  8098. "psr-4": {
  8099. "Swow\\Psr7\\Message\\": "src/Message/"
  8100. }
  8101. },
  8102. "notification-url": "https://packagist.org/downloads/",
  8103. "license": [
  8104. "Apache-2.0"
  8105. ],
  8106. "authors": [
  8107. {
  8108. "name": "twose",
  8109. "email": "twosee@php.net"
  8110. }
  8111. ],
  8112. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  8113. "keywords": [
  8114. "http",
  8115. "psr17",
  8116. "psr7",
  8117. "swow",
  8118. "websocket"
  8119. ],
  8120. "support": {
  8121. "issues": "https://github.com/swow/swow",
  8122. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  8123. },
  8124. "time": "2023-06-15T09:18:11+00:00"
  8125. },
  8126. {
  8127. "name": "symfony/console",
  8128. "version": "v6.4.21",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/symfony/console.git",
  8132. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  8137. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  8138. "shasum": "",
  8139. "mirrors": [
  8140. {
  8141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8142. "preferred": true
  8143. }
  8144. ]
  8145. },
  8146. "require": {
  8147. "php": ">=8.1",
  8148. "symfony/deprecation-contracts": "^2.5|^3",
  8149. "symfony/polyfill-mbstring": "~1.0",
  8150. "symfony/service-contracts": "^2.5|^3",
  8151. "symfony/string": "^5.4|^6.0|^7.0"
  8152. },
  8153. "conflict": {
  8154. "symfony/dependency-injection": "<5.4",
  8155. "symfony/dotenv": "<5.4",
  8156. "symfony/event-dispatcher": "<5.4",
  8157. "symfony/lock": "<5.4",
  8158. "symfony/process": "<5.4"
  8159. },
  8160. "provide": {
  8161. "psr/log-implementation": "1.0|2.0|3.0"
  8162. },
  8163. "require-dev": {
  8164. "psr/log": "^1|^2|^3",
  8165. "symfony/config": "^5.4|^6.0|^7.0",
  8166. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8167. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8168. "symfony/http-foundation": "^6.4|^7.0",
  8169. "symfony/http-kernel": "^6.4|^7.0",
  8170. "symfony/lock": "^5.4|^6.0|^7.0",
  8171. "symfony/messenger": "^5.4|^6.0|^7.0",
  8172. "symfony/process": "^5.4|^6.0|^7.0",
  8173. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8174. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8175. },
  8176. "type": "library",
  8177. "autoload": {
  8178. "psr-4": {
  8179. "Symfony\\Component\\Console\\": ""
  8180. },
  8181. "exclude-from-classmap": [
  8182. "/Tests/"
  8183. ]
  8184. },
  8185. "notification-url": "https://packagist.org/downloads/",
  8186. "license": [
  8187. "MIT"
  8188. ],
  8189. "authors": [
  8190. {
  8191. "name": "Fabien Potencier",
  8192. "email": "fabien@symfony.com"
  8193. },
  8194. {
  8195. "name": "Symfony Community",
  8196. "homepage": "https://symfony.com/contributors"
  8197. }
  8198. ],
  8199. "description": "Eases the creation of beautiful and testable command line interfaces",
  8200. "homepage": "https://symfony.com",
  8201. "keywords": [
  8202. "cli",
  8203. "command-line",
  8204. "console",
  8205. "terminal"
  8206. ],
  8207. "support": {
  8208. "source": "https://github.com/symfony/console/tree/v6.4.21"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://symfony.com/sponsor",
  8213. "type": "custom"
  8214. },
  8215. {
  8216. "url": "https://github.com/fabpot",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2025-04-07T15:42:41+00:00"
  8225. },
  8226. {
  8227. "name": "symfony/deprecation-contracts",
  8228. "version": "v3.5.1",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/symfony/deprecation-contracts.git",
  8232. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  8237. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  8238. "shasum": "",
  8239. "mirrors": [
  8240. {
  8241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8242. "preferred": true
  8243. }
  8244. ]
  8245. },
  8246. "require": {
  8247. "php": ">=8.1"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "thanks": {
  8252. "url": "https://github.com/symfony/contracts",
  8253. "name": "symfony/contracts"
  8254. },
  8255. "branch-alias": {
  8256. "dev-main": "3.5-dev"
  8257. }
  8258. },
  8259. "autoload": {
  8260. "files": [
  8261. "function.php"
  8262. ]
  8263. },
  8264. "notification-url": "https://packagist.org/downloads/",
  8265. "license": [
  8266. "MIT"
  8267. ],
  8268. "authors": [
  8269. {
  8270. "name": "Nicolas Grekas",
  8271. "email": "p@tchwork.com"
  8272. },
  8273. {
  8274. "name": "Symfony Community",
  8275. "homepage": "https://symfony.com/contributors"
  8276. }
  8277. ],
  8278. "description": "A generic function and convention to trigger deprecation notices",
  8279. "homepage": "https://symfony.com",
  8280. "support": {
  8281. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  8282. },
  8283. "funding": [
  8284. {
  8285. "url": "https://symfony.com/sponsor",
  8286. "type": "custom"
  8287. },
  8288. {
  8289. "url": "https://github.com/fabpot",
  8290. "type": "github"
  8291. },
  8292. {
  8293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8294. "type": "tidelift"
  8295. }
  8296. ],
  8297. "time": "2024-09-25T14:20:29+00:00"
  8298. },
  8299. {
  8300. "name": "symfony/finder",
  8301. "version": "v6.4.17",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/symfony/finder.git",
  8305. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  8310. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  8311. "shasum": "",
  8312. "mirrors": [
  8313. {
  8314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8315. "preferred": true
  8316. }
  8317. ]
  8318. },
  8319. "require": {
  8320. "php": ">=8.1"
  8321. },
  8322. "require-dev": {
  8323. "symfony/filesystem": "^6.0|^7.0"
  8324. },
  8325. "type": "library",
  8326. "autoload": {
  8327. "psr-4": {
  8328. "Symfony\\Component\\Finder\\": ""
  8329. },
  8330. "exclude-from-classmap": [
  8331. "/Tests/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "MIT"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Fabien Potencier",
  8341. "email": "fabien@symfony.com"
  8342. },
  8343. {
  8344. "name": "Symfony Community",
  8345. "homepage": "https://symfony.com/contributors"
  8346. }
  8347. ],
  8348. "description": "Finds files and directories via an intuitive fluent interface",
  8349. "homepage": "https://symfony.com",
  8350. "support": {
  8351. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  8352. },
  8353. "funding": [
  8354. {
  8355. "url": "https://symfony.com/sponsor",
  8356. "type": "custom"
  8357. },
  8358. {
  8359. "url": "https://github.com/fabpot",
  8360. "type": "github"
  8361. },
  8362. {
  8363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8364. "type": "tidelift"
  8365. }
  8366. ],
  8367. "time": "2024-12-29T13:51:37+00:00"
  8368. },
  8369. {
  8370. "name": "symfony/polyfill-ctype",
  8371. "version": "v1.31.0",
  8372. "source": {
  8373. "type": "git",
  8374. "url": "https://github.com/symfony/polyfill-ctype.git",
  8375. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8376. },
  8377. "dist": {
  8378. "type": "zip",
  8379. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8380. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8381. "shasum": "",
  8382. "mirrors": [
  8383. {
  8384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8385. "preferred": true
  8386. }
  8387. ]
  8388. },
  8389. "require": {
  8390. "php": ">=7.2"
  8391. },
  8392. "provide": {
  8393. "ext-ctype": "*"
  8394. },
  8395. "suggest": {
  8396. "ext-ctype": "For best performance"
  8397. },
  8398. "type": "library",
  8399. "extra": {
  8400. "thanks": {
  8401. "url": "https://github.com/symfony/polyfill",
  8402. "name": "symfony/polyfill"
  8403. }
  8404. },
  8405. "autoload": {
  8406. "files": [
  8407. "bootstrap.php"
  8408. ],
  8409. "psr-4": {
  8410. "Symfony\\Polyfill\\Ctype\\": ""
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Gert de Pagter",
  8420. "email": "BackEndTea@gmail.com"
  8421. },
  8422. {
  8423. "name": "Symfony Community",
  8424. "homepage": "https://symfony.com/contributors"
  8425. }
  8426. ],
  8427. "description": "Symfony polyfill for ctype functions",
  8428. "homepage": "https://symfony.com",
  8429. "keywords": [
  8430. "compatibility",
  8431. "ctype",
  8432. "polyfill",
  8433. "portable"
  8434. ],
  8435. "support": {
  8436. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://symfony.com/sponsor",
  8441. "type": "custom"
  8442. },
  8443. {
  8444. "url": "https://github.com/fabpot",
  8445. "type": "github"
  8446. },
  8447. {
  8448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8449. "type": "tidelift"
  8450. }
  8451. ],
  8452. "time": "2024-09-09T11:45:10+00:00"
  8453. },
  8454. {
  8455. "name": "symfony/polyfill-intl-grapheme",
  8456. "version": "v1.31.0",
  8457. "source": {
  8458. "type": "git",
  8459. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8460. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  8461. },
  8462. "dist": {
  8463. "type": "zip",
  8464. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8465. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8466. "shasum": "",
  8467. "mirrors": [
  8468. {
  8469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8470. "preferred": true
  8471. }
  8472. ]
  8473. },
  8474. "require": {
  8475. "php": ">=7.2"
  8476. },
  8477. "suggest": {
  8478. "ext-intl": "For best performance"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "thanks": {
  8483. "url": "https://github.com/symfony/polyfill",
  8484. "name": "symfony/polyfill"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "files": [
  8489. "bootstrap.php"
  8490. ],
  8491. "psr-4": {
  8492. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8493. }
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Nicolas Grekas",
  8502. "email": "p@tchwork.com"
  8503. },
  8504. {
  8505. "name": "Symfony Community",
  8506. "homepage": "https://symfony.com/contributors"
  8507. }
  8508. ],
  8509. "description": "Symfony polyfill for intl's grapheme_* functions",
  8510. "homepage": "https://symfony.com",
  8511. "keywords": [
  8512. "compatibility",
  8513. "grapheme",
  8514. "intl",
  8515. "polyfill",
  8516. "portable",
  8517. "shim"
  8518. ],
  8519. "support": {
  8520. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  8521. },
  8522. "funding": [
  8523. {
  8524. "url": "https://symfony.com/sponsor",
  8525. "type": "custom"
  8526. },
  8527. {
  8528. "url": "https://github.com/fabpot",
  8529. "type": "github"
  8530. },
  8531. {
  8532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8533. "type": "tidelift"
  8534. }
  8535. ],
  8536. "time": "2024-09-09T11:45:10+00:00"
  8537. },
  8538. {
  8539. "name": "symfony/polyfill-intl-idn",
  8540. "version": "v1.31.0",
  8541. "source": {
  8542. "type": "git",
  8543. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8544. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  8545. },
  8546. "dist": {
  8547. "type": "zip",
  8548. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  8549. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  8550. "shasum": "",
  8551. "mirrors": [
  8552. {
  8553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8554. "preferred": true
  8555. }
  8556. ]
  8557. },
  8558. "require": {
  8559. "php": ">=7.2",
  8560. "symfony/polyfill-intl-normalizer": "^1.10"
  8561. },
  8562. "suggest": {
  8563. "ext-intl": "For best performance"
  8564. },
  8565. "type": "library",
  8566. "extra": {
  8567. "thanks": {
  8568. "url": "https://github.com/symfony/polyfill",
  8569. "name": "symfony/polyfill"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "files": [
  8574. "bootstrap.php"
  8575. ],
  8576. "psr-4": {
  8577. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8578. }
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "MIT"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Laurent Bassin",
  8587. "email": "laurent@bassin.info"
  8588. },
  8589. {
  8590. "name": "Trevor Rowbotham",
  8591. "email": "trevor.rowbotham@pm.me"
  8592. },
  8593. {
  8594. "name": "Symfony Community",
  8595. "homepage": "https://symfony.com/contributors"
  8596. }
  8597. ],
  8598. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8599. "homepage": "https://symfony.com",
  8600. "keywords": [
  8601. "compatibility",
  8602. "idn",
  8603. "intl",
  8604. "polyfill",
  8605. "portable",
  8606. "shim"
  8607. ],
  8608. "support": {
  8609. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8610. },
  8611. "funding": [
  8612. {
  8613. "url": "https://symfony.com/sponsor",
  8614. "type": "custom"
  8615. },
  8616. {
  8617. "url": "https://github.com/fabpot",
  8618. "type": "github"
  8619. },
  8620. {
  8621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8622. "type": "tidelift"
  8623. }
  8624. ],
  8625. "time": "2024-09-09T11:45:10+00:00"
  8626. },
  8627. {
  8628. "name": "symfony/polyfill-intl-normalizer",
  8629. "version": "v1.31.0",
  8630. "source": {
  8631. "type": "git",
  8632. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8633. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8634. },
  8635. "dist": {
  8636. "type": "zip",
  8637. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8638. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8639. "shasum": "",
  8640. "mirrors": [
  8641. {
  8642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8643. "preferred": true
  8644. }
  8645. ]
  8646. },
  8647. "require": {
  8648. "php": ">=7.2"
  8649. },
  8650. "suggest": {
  8651. "ext-intl": "For best performance"
  8652. },
  8653. "type": "library",
  8654. "extra": {
  8655. "thanks": {
  8656. "url": "https://github.com/symfony/polyfill",
  8657. "name": "symfony/polyfill"
  8658. }
  8659. },
  8660. "autoload": {
  8661. "files": [
  8662. "bootstrap.php"
  8663. ],
  8664. "psr-4": {
  8665. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8666. },
  8667. "classmap": [
  8668. "Resources/stubs"
  8669. ]
  8670. },
  8671. "notification-url": "https://packagist.org/downloads/",
  8672. "license": [
  8673. "MIT"
  8674. ],
  8675. "authors": [
  8676. {
  8677. "name": "Nicolas Grekas",
  8678. "email": "p@tchwork.com"
  8679. },
  8680. {
  8681. "name": "Symfony Community",
  8682. "homepage": "https://symfony.com/contributors"
  8683. }
  8684. ],
  8685. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8686. "homepage": "https://symfony.com",
  8687. "keywords": [
  8688. "compatibility",
  8689. "intl",
  8690. "normalizer",
  8691. "polyfill",
  8692. "portable",
  8693. "shim"
  8694. ],
  8695. "support": {
  8696. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8697. },
  8698. "funding": [
  8699. {
  8700. "url": "https://symfony.com/sponsor",
  8701. "type": "custom"
  8702. },
  8703. {
  8704. "url": "https://github.com/fabpot",
  8705. "type": "github"
  8706. },
  8707. {
  8708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8709. "type": "tidelift"
  8710. }
  8711. ],
  8712. "time": "2024-09-09T11:45:10+00:00"
  8713. },
  8714. {
  8715. "name": "symfony/polyfill-mbstring",
  8716. "version": "v1.31.0",
  8717. "source": {
  8718. "type": "git",
  8719. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8720. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8721. },
  8722. "dist": {
  8723. "type": "zip",
  8724. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8725. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8726. "shasum": "",
  8727. "mirrors": [
  8728. {
  8729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8730. "preferred": true
  8731. }
  8732. ]
  8733. },
  8734. "require": {
  8735. "php": ">=7.2"
  8736. },
  8737. "provide": {
  8738. "ext-mbstring": "*"
  8739. },
  8740. "suggest": {
  8741. "ext-mbstring": "For best performance"
  8742. },
  8743. "type": "library",
  8744. "extra": {
  8745. "thanks": {
  8746. "name": "symfony/polyfill",
  8747. "url": "https://github.com/symfony/polyfill"
  8748. }
  8749. },
  8750. "autoload": {
  8751. "files": [
  8752. "bootstrap.php"
  8753. ],
  8754. "psr-4": {
  8755. "Symfony\\Polyfill\\Mbstring\\": ""
  8756. }
  8757. },
  8758. "notification-url": "https://packagist.org/downloads/",
  8759. "license": [
  8760. "MIT"
  8761. ],
  8762. "authors": [
  8763. {
  8764. "name": "Nicolas Grekas",
  8765. "email": "p@tchwork.com"
  8766. },
  8767. {
  8768. "name": "Symfony Community",
  8769. "homepage": "https://symfony.com/contributors"
  8770. }
  8771. ],
  8772. "description": "Symfony polyfill for the Mbstring extension",
  8773. "homepage": "https://symfony.com",
  8774. "keywords": [
  8775. "compatibility",
  8776. "mbstring",
  8777. "polyfill",
  8778. "portable",
  8779. "shim"
  8780. ],
  8781. "support": {
  8782. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8783. },
  8784. "funding": [
  8785. {
  8786. "url": "https://symfony.com/sponsor",
  8787. "type": "custom"
  8788. },
  8789. {
  8790. "url": "https://github.com/fabpot",
  8791. "type": "github"
  8792. },
  8793. {
  8794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8795. "type": "tidelift"
  8796. }
  8797. ],
  8798. "time": "2024-09-09T11:45:10+00:00"
  8799. },
  8800. {
  8801. "name": "symfony/polyfill-php80",
  8802. "version": "v1.31.0",
  8803. "source": {
  8804. "type": "git",
  8805. "url": "https://github.com/symfony/polyfill-php80.git",
  8806. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8807. },
  8808. "dist": {
  8809. "type": "zip",
  8810. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8811. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8812. "shasum": "",
  8813. "mirrors": [
  8814. {
  8815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8816. "preferred": true
  8817. }
  8818. ]
  8819. },
  8820. "require": {
  8821. "php": ">=7.2"
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "thanks": {
  8826. "url": "https://github.com/symfony/polyfill",
  8827. "name": "symfony/polyfill"
  8828. }
  8829. },
  8830. "autoload": {
  8831. "files": [
  8832. "bootstrap.php"
  8833. ],
  8834. "psr-4": {
  8835. "Symfony\\Polyfill\\Php80\\": ""
  8836. },
  8837. "classmap": [
  8838. "Resources/stubs"
  8839. ]
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "MIT"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Ion Bazan",
  8848. "email": "ion.bazan@gmail.com"
  8849. },
  8850. {
  8851. "name": "Nicolas Grekas",
  8852. "email": "p@tchwork.com"
  8853. },
  8854. {
  8855. "name": "Symfony Community",
  8856. "homepage": "https://symfony.com/contributors"
  8857. }
  8858. ],
  8859. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8860. "homepage": "https://symfony.com",
  8861. "keywords": [
  8862. "compatibility",
  8863. "polyfill",
  8864. "portable",
  8865. "shim"
  8866. ],
  8867. "support": {
  8868. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://symfony.com/sponsor",
  8873. "type": "custom"
  8874. },
  8875. {
  8876. "url": "https://github.com/fabpot",
  8877. "type": "github"
  8878. },
  8879. {
  8880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8881. "type": "tidelift"
  8882. }
  8883. ],
  8884. "time": "2024-09-09T11:45:10+00:00"
  8885. },
  8886. {
  8887. "name": "symfony/service-contracts",
  8888. "version": "v3.5.1",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/symfony/service-contracts.git",
  8892. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8897. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8898. "shasum": "",
  8899. "mirrors": [
  8900. {
  8901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8902. "preferred": true
  8903. }
  8904. ]
  8905. },
  8906. "require": {
  8907. "php": ">=8.1",
  8908. "psr/container": "^1.1|^2.0",
  8909. "symfony/deprecation-contracts": "^2.5|^3"
  8910. },
  8911. "conflict": {
  8912. "ext-psr": "<1.1|>=2"
  8913. },
  8914. "type": "library",
  8915. "extra": {
  8916. "thanks": {
  8917. "url": "https://github.com/symfony/contracts",
  8918. "name": "symfony/contracts"
  8919. },
  8920. "branch-alias": {
  8921. "dev-main": "3.5-dev"
  8922. }
  8923. },
  8924. "autoload": {
  8925. "psr-4": {
  8926. "Symfony\\Contracts\\Service\\": ""
  8927. },
  8928. "exclude-from-classmap": [
  8929. "/Test/"
  8930. ]
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "MIT"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Nicolas Grekas",
  8939. "email": "p@tchwork.com"
  8940. },
  8941. {
  8942. "name": "Symfony Community",
  8943. "homepage": "https://symfony.com/contributors"
  8944. }
  8945. ],
  8946. "description": "Generic abstractions related to writing services",
  8947. "homepage": "https://symfony.com",
  8948. "keywords": [
  8949. "abstractions",
  8950. "contracts",
  8951. "decoupling",
  8952. "interfaces",
  8953. "interoperability",
  8954. "standards"
  8955. ],
  8956. "support": {
  8957. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8958. },
  8959. "funding": [
  8960. {
  8961. "url": "https://symfony.com/sponsor",
  8962. "type": "custom"
  8963. },
  8964. {
  8965. "url": "https://github.com/fabpot",
  8966. "type": "github"
  8967. },
  8968. {
  8969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8970. "type": "tidelift"
  8971. }
  8972. ],
  8973. "time": "2024-09-25T14:20:29+00:00"
  8974. },
  8975. {
  8976. "name": "symfony/string",
  8977. "version": "v6.4.21",
  8978. "source": {
  8979. "type": "git",
  8980. "url": "https://github.com/symfony/string.git",
  8981. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  8982. },
  8983. "dist": {
  8984. "type": "zip",
  8985. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  8986. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  8987. "shasum": "",
  8988. "mirrors": [
  8989. {
  8990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8991. "preferred": true
  8992. }
  8993. ]
  8994. },
  8995. "require": {
  8996. "php": ">=8.1",
  8997. "symfony/polyfill-ctype": "~1.8",
  8998. "symfony/polyfill-intl-grapheme": "~1.0",
  8999. "symfony/polyfill-intl-normalizer": "~1.0",
  9000. "symfony/polyfill-mbstring": "~1.0"
  9001. },
  9002. "conflict": {
  9003. "symfony/translation-contracts": "<2.5"
  9004. },
  9005. "require-dev": {
  9006. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9007. "symfony/http-client": "^5.4|^6.0|^7.0",
  9008. "symfony/intl": "^6.2|^7.0",
  9009. "symfony/translation-contracts": "^2.5|^3.0",
  9010. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9011. },
  9012. "type": "library",
  9013. "autoload": {
  9014. "files": [
  9015. "Resources/functions.php"
  9016. ],
  9017. "psr-4": {
  9018. "Symfony\\Component\\String\\": ""
  9019. },
  9020. "exclude-from-classmap": [
  9021. "/Tests/"
  9022. ]
  9023. },
  9024. "notification-url": "https://packagist.org/downloads/",
  9025. "license": [
  9026. "MIT"
  9027. ],
  9028. "authors": [
  9029. {
  9030. "name": "Nicolas Grekas",
  9031. "email": "p@tchwork.com"
  9032. },
  9033. {
  9034. "name": "Symfony Community",
  9035. "homepage": "https://symfony.com/contributors"
  9036. }
  9037. ],
  9038. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9039. "homepage": "https://symfony.com",
  9040. "keywords": [
  9041. "grapheme",
  9042. "i18n",
  9043. "string",
  9044. "unicode",
  9045. "utf-8",
  9046. "utf8"
  9047. ],
  9048. "support": {
  9049. "source": "https://github.com/symfony/string/tree/v6.4.21"
  9050. },
  9051. "funding": [
  9052. {
  9053. "url": "https://symfony.com/sponsor",
  9054. "type": "custom"
  9055. },
  9056. {
  9057. "url": "https://github.com/fabpot",
  9058. "type": "github"
  9059. },
  9060. {
  9061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9062. "type": "tidelift"
  9063. }
  9064. ],
  9065. "time": "2025-04-18T15:23:29+00:00"
  9066. },
  9067. {
  9068. "name": "symfony/translation",
  9069. "version": "v6.4.21",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/symfony/translation.git",
  9073. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  9078. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  9079. "shasum": "",
  9080. "mirrors": [
  9081. {
  9082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9083. "preferred": true
  9084. }
  9085. ]
  9086. },
  9087. "require": {
  9088. "php": ">=8.1",
  9089. "symfony/deprecation-contracts": "^2.5|^3",
  9090. "symfony/polyfill-mbstring": "~1.0",
  9091. "symfony/translation-contracts": "^2.5|^3.0"
  9092. },
  9093. "conflict": {
  9094. "symfony/config": "<5.4",
  9095. "symfony/console": "<5.4",
  9096. "symfony/dependency-injection": "<5.4",
  9097. "symfony/http-client-contracts": "<2.5",
  9098. "symfony/http-kernel": "<5.4",
  9099. "symfony/service-contracts": "<2.5",
  9100. "symfony/twig-bundle": "<5.4",
  9101. "symfony/yaml": "<5.4"
  9102. },
  9103. "provide": {
  9104. "symfony/translation-implementation": "2.3|3.0"
  9105. },
  9106. "require-dev": {
  9107. "nikic/php-parser": "^4.18|^5.0",
  9108. "psr/log": "^1|^2|^3",
  9109. "symfony/config": "^5.4|^6.0|^7.0",
  9110. "symfony/console": "^5.4|^6.0|^7.0",
  9111. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9112. "symfony/finder": "^5.4|^6.0|^7.0",
  9113. "symfony/http-client-contracts": "^2.5|^3.0",
  9114. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9115. "symfony/intl": "^5.4|^6.0|^7.0",
  9116. "symfony/polyfill-intl-icu": "^1.21",
  9117. "symfony/routing": "^5.4|^6.0|^7.0",
  9118. "symfony/service-contracts": "^2.5|^3",
  9119. "symfony/yaml": "^5.4|^6.0|^7.0"
  9120. },
  9121. "type": "library",
  9122. "autoload": {
  9123. "files": [
  9124. "Resources/functions.php"
  9125. ],
  9126. "psr-4": {
  9127. "Symfony\\Component\\Translation\\": ""
  9128. },
  9129. "exclude-from-classmap": [
  9130. "/Tests/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "MIT"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Fabien Potencier",
  9140. "email": "fabien@symfony.com"
  9141. },
  9142. {
  9143. "name": "Symfony Community",
  9144. "homepage": "https://symfony.com/contributors"
  9145. }
  9146. ],
  9147. "description": "Provides tools to internationalize your application",
  9148. "homepage": "https://symfony.com",
  9149. "support": {
  9150. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  9151. },
  9152. "funding": [
  9153. {
  9154. "url": "https://symfony.com/sponsor",
  9155. "type": "custom"
  9156. },
  9157. {
  9158. "url": "https://github.com/fabpot",
  9159. "type": "github"
  9160. },
  9161. {
  9162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9163. "type": "tidelift"
  9164. }
  9165. ],
  9166. "time": "2025-04-07T19:02:30+00:00"
  9167. },
  9168. {
  9169. "name": "symfony/translation-contracts",
  9170. "version": "v3.5.1",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/symfony/translation-contracts.git",
  9174. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  9179. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  9180. "shasum": "",
  9181. "mirrors": [
  9182. {
  9183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9184. "preferred": true
  9185. }
  9186. ]
  9187. },
  9188. "require": {
  9189. "php": ">=8.1"
  9190. },
  9191. "type": "library",
  9192. "extra": {
  9193. "thanks": {
  9194. "url": "https://github.com/symfony/contracts",
  9195. "name": "symfony/contracts"
  9196. },
  9197. "branch-alias": {
  9198. "dev-main": "3.5-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "psr-4": {
  9203. "Symfony\\Contracts\\Translation\\": ""
  9204. },
  9205. "exclude-from-classmap": [
  9206. "/Test/"
  9207. ]
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "MIT"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Nicolas Grekas",
  9216. "email": "p@tchwork.com"
  9217. },
  9218. {
  9219. "name": "Symfony Community",
  9220. "homepage": "https://symfony.com/contributors"
  9221. }
  9222. ],
  9223. "description": "Generic abstractions related to translation",
  9224. "homepage": "https://symfony.com",
  9225. "keywords": [
  9226. "abstractions",
  9227. "contracts",
  9228. "decoupling",
  9229. "interfaces",
  9230. "interoperability",
  9231. "standards"
  9232. ],
  9233. "support": {
  9234. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  9235. },
  9236. "funding": [
  9237. {
  9238. "url": "https://symfony.com/sponsor",
  9239. "type": "custom"
  9240. },
  9241. {
  9242. "url": "https://github.com/fabpot",
  9243. "type": "github"
  9244. },
  9245. {
  9246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9247. "type": "tidelift"
  9248. }
  9249. ],
  9250. "time": "2024-09-25T14:20:29+00:00"
  9251. },
  9252. {
  9253. "name": "vlucas/phpdotenv",
  9254. "version": "v5.6.1",
  9255. "source": {
  9256. "type": "git",
  9257. "url": "https://github.com/vlucas/phpdotenv.git",
  9258. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9259. },
  9260. "dist": {
  9261. "type": "zip",
  9262. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9263. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9264. "shasum": "",
  9265. "mirrors": [
  9266. {
  9267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9268. "preferred": true
  9269. }
  9270. ]
  9271. },
  9272. "require": {
  9273. "ext-pcre": "*",
  9274. "graham-campbell/result-type": "^1.1.3",
  9275. "php": "^7.2.5 || ^8.0",
  9276. "phpoption/phpoption": "^1.9.3",
  9277. "symfony/polyfill-ctype": "^1.24",
  9278. "symfony/polyfill-mbstring": "^1.24",
  9279. "symfony/polyfill-php80": "^1.24"
  9280. },
  9281. "require-dev": {
  9282. "bamarni/composer-bin-plugin": "^1.8.2",
  9283. "ext-filter": "*",
  9284. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9285. },
  9286. "suggest": {
  9287. "ext-filter": "Required to use the boolean validator."
  9288. },
  9289. "type": "library",
  9290. "extra": {
  9291. "bamarni-bin": {
  9292. "bin-links": true,
  9293. "forward-command": false
  9294. },
  9295. "branch-alias": {
  9296. "dev-master": "5.6-dev"
  9297. }
  9298. },
  9299. "autoload": {
  9300. "psr-4": {
  9301. "Dotenv\\": "src/"
  9302. }
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "BSD-3-Clause"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "Graham Campbell",
  9311. "email": "hello@gjcampbell.co.uk",
  9312. "homepage": "https://github.com/GrahamCampbell"
  9313. },
  9314. {
  9315. "name": "Vance Lucas",
  9316. "email": "vance@vancelucas.com",
  9317. "homepage": "https://github.com/vlucas"
  9318. }
  9319. ],
  9320. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9321. "keywords": [
  9322. "dotenv",
  9323. "env",
  9324. "environment"
  9325. ],
  9326. "support": {
  9327. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9328. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9329. },
  9330. "funding": [
  9331. {
  9332. "url": "https://github.com/GrahamCampbell",
  9333. "type": "github"
  9334. },
  9335. {
  9336. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9337. "type": "tidelift"
  9338. }
  9339. ],
  9340. "time": "2024-07-20T21:52:34+00:00"
  9341. }
  9342. ],
  9343. "packages-dev": [
  9344. {
  9345. "name": "clue/ndjson-react",
  9346. "version": "v1.3.0",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/clue/reactphp-ndjson.git",
  9350. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  9355. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  9356. "shasum": "",
  9357. "mirrors": [
  9358. {
  9359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9360. "preferred": true
  9361. }
  9362. ]
  9363. },
  9364. "require": {
  9365. "php": ">=5.3",
  9366. "react/stream": "^1.2"
  9367. },
  9368. "require-dev": {
  9369. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  9370. "react/event-loop": "^1.2"
  9371. },
  9372. "type": "library",
  9373. "autoload": {
  9374. "psr-4": {
  9375. "Clue\\React\\NDJson\\": "src/"
  9376. }
  9377. },
  9378. "notification-url": "https://packagist.org/downloads/",
  9379. "license": [
  9380. "MIT"
  9381. ],
  9382. "authors": [
  9383. {
  9384. "name": "Christian Lück",
  9385. "email": "christian@clue.engineering"
  9386. }
  9387. ],
  9388. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  9389. "homepage": "https://github.com/clue/reactphp-ndjson",
  9390. "keywords": [
  9391. "NDJSON",
  9392. "json",
  9393. "jsonlines",
  9394. "newline",
  9395. "reactphp",
  9396. "streaming"
  9397. ],
  9398. "support": {
  9399. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  9400. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  9401. },
  9402. "funding": [
  9403. {
  9404. "url": "https://clue.engineering/support",
  9405. "type": "custom"
  9406. },
  9407. {
  9408. "url": "https://github.com/clue",
  9409. "type": "github"
  9410. }
  9411. ],
  9412. "time": "2022-12-23T10:58:28+00:00"
  9413. },
  9414. {
  9415. "name": "composer/pcre",
  9416. "version": "3.3.2",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/composer/pcre.git",
  9420. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9425. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9426. "shasum": "",
  9427. "mirrors": [
  9428. {
  9429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9430. "preferred": true
  9431. }
  9432. ]
  9433. },
  9434. "require": {
  9435. "php": "^7.4 || ^8.0"
  9436. },
  9437. "conflict": {
  9438. "phpstan/phpstan": "<1.11.10"
  9439. },
  9440. "require-dev": {
  9441. "phpstan/phpstan": "^1.12 || ^2",
  9442. "phpstan/phpstan-strict-rules": "^1 || ^2",
  9443. "phpunit/phpunit": "^8 || ^9"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-main": "3.x-dev"
  9449. },
  9450. "phpstan": {
  9451. "includes": [
  9452. "extension.neon"
  9453. ]
  9454. }
  9455. },
  9456. "autoload": {
  9457. "psr-4": {
  9458. "Composer\\Pcre\\": "src"
  9459. }
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "MIT"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Jordi Boggiano",
  9468. "email": "j.boggiano@seld.be",
  9469. "homepage": "http://seld.be"
  9470. }
  9471. ],
  9472. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9473. "keywords": [
  9474. "PCRE",
  9475. "preg",
  9476. "regex",
  9477. "regular expression"
  9478. ],
  9479. "support": {
  9480. "issues": "https://github.com/composer/pcre/issues",
  9481. "source": "https://github.com/composer/pcre/tree/3.3.2"
  9482. },
  9483. "funding": [
  9484. {
  9485. "url": "https://packagist.com",
  9486. "type": "custom"
  9487. },
  9488. {
  9489. "url": "https://github.com/composer",
  9490. "type": "github"
  9491. },
  9492. {
  9493. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9494. "type": "tidelift"
  9495. }
  9496. ],
  9497. "time": "2024-11-12T16:29:46+00:00"
  9498. },
  9499. {
  9500. "name": "composer/semver",
  9501. "version": "3.4.2",
  9502. "source": {
  9503. "type": "git",
  9504. "url": "https://github.com/composer/semver.git",
  9505. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  9506. },
  9507. "dist": {
  9508. "type": "zip",
  9509. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  9510. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  9511. "shasum": "",
  9512. "mirrors": [
  9513. {
  9514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9515. "preferred": true
  9516. }
  9517. ]
  9518. },
  9519. "require": {
  9520. "php": "^5.3.2 || ^7.0 || ^8.0"
  9521. },
  9522. "require-dev": {
  9523. "phpstan/phpstan": "^1.4",
  9524. "symfony/phpunit-bridge": "^4.2 || ^5"
  9525. },
  9526. "type": "library",
  9527. "extra": {
  9528. "branch-alias": {
  9529. "dev-main": "3.x-dev"
  9530. }
  9531. },
  9532. "autoload": {
  9533. "psr-4": {
  9534. "Composer\\Semver\\": "src"
  9535. }
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Nils Adermann",
  9544. "email": "naderman@naderman.de",
  9545. "homepage": "http://www.naderman.de"
  9546. },
  9547. {
  9548. "name": "Jordi Boggiano",
  9549. "email": "j.boggiano@seld.be",
  9550. "homepage": "http://seld.be"
  9551. },
  9552. {
  9553. "name": "Rob Bast",
  9554. "email": "rob.bast@gmail.com",
  9555. "homepage": "http://robbast.nl"
  9556. }
  9557. ],
  9558. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9559. "keywords": [
  9560. "semantic",
  9561. "semver",
  9562. "validation",
  9563. "versioning"
  9564. ],
  9565. "support": {
  9566. "irc": "ircs://irc.libera.chat:6697/composer",
  9567. "issues": "https://github.com/composer/semver/issues",
  9568. "source": "https://github.com/composer/semver/tree/3.4.2"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://packagist.com",
  9573. "type": "custom"
  9574. },
  9575. {
  9576. "url": "https://github.com/composer",
  9577. "type": "github"
  9578. },
  9579. {
  9580. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9581. "type": "tidelift"
  9582. }
  9583. ],
  9584. "time": "2024-07-12T11:35:52+00:00"
  9585. },
  9586. {
  9587. "name": "composer/xdebug-handler",
  9588. "version": "3.0.3",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/composer/xdebug-handler.git",
  9592. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  9597. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  9598. "shasum": "",
  9599. "mirrors": [
  9600. {
  9601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9602. "preferred": true
  9603. }
  9604. ]
  9605. },
  9606. "require": {
  9607. "composer/pcre": "^1 || ^2 || ^3",
  9608. "php": "^7.2.5 || ^8.0",
  9609. "psr/log": "^1 || ^2 || ^3"
  9610. },
  9611. "require-dev": {
  9612. "phpstan/phpstan": "^1.0",
  9613. "phpstan/phpstan-strict-rules": "^1.1",
  9614. "symfony/phpunit-bridge": "^6.0"
  9615. },
  9616. "type": "library",
  9617. "autoload": {
  9618. "psr-4": {
  9619. "Composer\\XdebugHandler\\": "src"
  9620. }
  9621. },
  9622. "notification-url": "https://packagist.org/downloads/",
  9623. "license": [
  9624. "MIT"
  9625. ],
  9626. "authors": [
  9627. {
  9628. "name": "John Stevenson",
  9629. "email": "john-stevenson@blueyonder.co.uk"
  9630. }
  9631. ],
  9632. "description": "Restarts a process without Xdebug.",
  9633. "keywords": [
  9634. "Xdebug",
  9635. "performance"
  9636. ],
  9637. "support": {
  9638. "irc": "irc://irc.freenode.org/composer",
  9639. "issues": "https://github.com/composer/xdebug-handler/issues",
  9640. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  9641. },
  9642. "funding": [
  9643. {
  9644. "url": "https://packagist.com",
  9645. "type": "custom"
  9646. },
  9647. {
  9648. "url": "https://github.com/composer",
  9649. "type": "github"
  9650. },
  9651. {
  9652. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9653. "type": "tidelift"
  9654. }
  9655. ],
  9656. "time": "2022-02-25T21:32:43+00:00"
  9657. },
  9658. {
  9659. "name": "evenement/evenement",
  9660. "version": "v3.0.2",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/igorw/evenement.git",
  9664. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  9669. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  9670. "shasum": "",
  9671. "mirrors": [
  9672. {
  9673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9674. "preferred": true
  9675. }
  9676. ]
  9677. },
  9678. "require": {
  9679. "php": ">=7.0"
  9680. },
  9681. "require-dev": {
  9682. "phpunit/phpunit": "^9 || ^6"
  9683. },
  9684. "type": "library",
  9685. "autoload": {
  9686. "psr-4": {
  9687. "Evenement\\": "src/"
  9688. }
  9689. },
  9690. "notification-url": "https://packagist.org/downloads/",
  9691. "license": [
  9692. "MIT"
  9693. ],
  9694. "authors": [
  9695. {
  9696. "name": "Igor Wiedler",
  9697. "email": "igor@wiedler.ch"
  9698. }
  9699. ],
  9700. "description": "Événement is a very simple event dispatching library for PHP",
  9701. "keywords": [
  9702. "event-dispatcher",
  9703. "event-emitter"
  9704. ],
  9705. "support": {
  9706. "issues": "https://github.com/igorw/evenement/issues",
  9707. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  9708. },
  9709. "time": "2023-08-08T05:53:35+00:00"
  9710. },
  9711. {
  9712. "name": "fidry/cpu-core-counter",
  9713. "version": "1.1.0",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9717. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  9722. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  9723. "shasum": "",
  9724. "mirrors": [
  9725. {
  9726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9727. "preferred": true
  9728. }
  9729. ]
  9730. },
  9731. "require": {
  9732. "php": "^7.2 || ^8.0"
  9733. },
  9734. "require-dev": {
  9735. "fidry/makefile": "^0.2.0",
  9736. "fidry/php-cs-fixer-config": "^1.1.2",
  9737. "phpstan/extension-installer": "^1.2.0",
  9738. "phpstan/phpstan": "^1.9.2",
  9739. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9740. "phpstan/phpstan-phpunit": "^1.2.2",
  9741. "phpstan/phpstan-strict-rules": "^1.4.4",
  9742. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9743. "webmozarts/strict-phpunit": "^7.5"
  9744. },
  9745. "type": "library",
  9746. "autoload": {
  9747. "psr-4": {
  9748. "Fidry\\CpuCoreCounter\\": "src/"
  9749. }
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Théo FIDRY",
  9758. "email": "theo.fidry@gmail.com"
  9759. }
  9760. ],
  9761. "description": "Tiny utility to get the number of CPU cores.",
  9762. "keywords": [
  9763. "CPU",
  9764. "core"
  9765. ],
  9766. "support": {
  9767. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9768. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  9769. },
  9770. "funding": [
  9771. {
  9772. "url": "https://github.com/theofidry",
  9773. "type": "github"
  9774. }
  9775. ],
  9776. "time": "2024-02-07T09:43:46+00:00"
  9777. },
  9778. {
  9779. "name": "friendsofphp/php-cs-fixer",
  9780. "version": "v3.64.0",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  9784. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  9789. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  9790. "shasum": "",
  9791. "mirrors": [
  9792. {
  9793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9794. "preferred": true
  9795. }
  9796. ]
  9797. },
  9798. "require": {
  9799. "clue/ndjson-react": "^1.0",
  9800. "composer/semver": "^3.4",
  9801. "composer/xdebug-handler": "^3.0.3",
  9802. "ext-filter": "*",
  9803. "ext-json": "*",
  9804. "ext-tokenizer": "*",
  9805. "fidry/cpu-core-counter": "^1.0",
  9806. "php": "^7.4 || ^8.0",
  9807. "react/child-process": "^0.6.5",
  9808. "react/event-loop": "^1.0",
  9809. "react/promise": "^2.0 || ^3.0",
  9810. "react/socket": "^1.0",
  9811. "react/stream": "^1.0",
  9812. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  9813. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  9814. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  9815. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  9816. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  9817. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  9818. "symfony/polyfill-mbstring": "^1.28",
  9819. "symfony/polyfill-php80": "^1.28",
  9820. "symfony/polyfill-php81": "^1.28",
  9821. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  9822. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  9823. },
  9824. "require-dev": {
  9825. "facile-it/paraunit": "^1.3 || ^2.3",
  9826. "infection/infection": "^0.29.5",
  9827. "justinrainbow/json-schema": "^5.2",
  9828. "keradus/cli-executor": "^2.1",
  9829. "mikey179/vfsstream": "^1.6.11",
  9830. "php-coveralls/php-coveralls": "^2.7",
  9831. "php-cs-fixer/accessible-object": "^1.1",
  9832. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  9833. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  9834. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  9835. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  9836. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  9837. },
  9838. "suggest": {
  9839. "ext-dom": "For handling output formats in XML",
  9840. "ext-mbstring": "For handling non-UTF8 characters."
  9841. },
  9842. "bin": [
  9843. "php-cs-fixer"
  9844. ],
  9845. "type": "application",
  9846. "autoload": {
  9847. "psr-4": {
  9848. "PhpCsFixer\\": "src/"
  9849. },
  9850. "exclude-from-classmap": [
  9851. "src/Fixer/Internal/*"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "MIT"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "Fabien Potencier",
  9861. "email": "fabien@symfony.com"
  9862. },
  9863. {
  9864. "name": "Dariusz Rumiński",
  9865. "email": "dariusz.ruminski@gmail.com"
  9866. }
  9867. ],
  9868. "description": "A tool to automatically fix PHP code style",
  9869. "keywords": [
  9870. "Static code analysis",
  9871. "fixer",
  9872. "standards",
  9873. "static analysis"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  9877. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/keradus",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2024-08-30T23:09:38+00:00"
  9886. },
  9887. {
  9888. "name": "hamcrest/hamcrest-php",
  9889. "version": "v2.0.1",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9893. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9898. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9899. "shasum": "",
  9900. "mirrors": [
  9901. {
  9902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9903. "preferred": true
  9904. }
  9905. ]
  9906. },
  9907. "require": {
  9908. "php": "^5.3|^7.0|^8.0"
  9909. },
  9910. "replace": {
  9911. "cordoval/hamcrest-php": "*",
  9912. "davedevelopment/hamcrest-php": "*",
  9913. "kodova/hamcrest-php": "*"
  9914. },
  9915. "require-dev": {
  9916. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9917. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9918. },
  9919. "type": "library",
  9920. "extra": {
  9921. "branch-alias": {
  9922. "dev-master": "2.1-dev"
  9923. }
  9924. },
  9925. "autoload": {
  9926. "classmap": [
  9927. "hamcrest"
  9928. ]
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "BSD-3-Clause"
  9933. ],
  9934. "description": "This is the PHP port of Hamcrest Matchers",
  9935. "keywords": [
  9936. "test"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9940. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9941. },
  9942. "time": "2020-07-09T08:09:16+00:00"
  9943. },
  9944. {
  9945. "name": "hyperf/devtool",
  9946. "version": "v3.1.51",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/hyperf/devtool.git",
  9950. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  9955. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  9956. "shasum": "",
  9957. "mirrors": [
  9958. {
  9959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9960. "preferred": true
  9961. }
  9962. ]
  9963. },
  9964. "require": {
  9965. "hyperf/code-parser": "~3.1.0",
  9966. "hyperf/command": "~3.1.0",
  9967. "hyperf/contract": "~3.1.0",
  9968. "hyperf/di": "~3.1.0",
  9969. "hyperf/support": "~3.1.0",
  9970. "hyperf/utils": "~3.1.0",
  9971. "php": ">=8.1"
  9972. },
  9973. "type": "library",
  9974. "extra": {
  9975. "hyperf": {
  9976. "config": "Hyperf\\Devtool\\ConfigProvider"
  9977. },
  9978. "branch-alias": {
  9979. "dev-master": "3.1-dev"
  9980. }
  9981. },
  9982. "autoload": {
  9983. "psr-4": {
  9984. "Hyperf\\Devtool\\": "src/"
  9985. }
  9986. },
  9987. "notification-url": "https://packagist.org/downloads/",
  9988. "license": [
  9989. "MIT"
  9990. ],
  9991. "description": "A Devtool for Hyperf.",
  9992. "homepage": "https://hyperf.io",
  9993. "keywords": [
  9994. "dev",
  9995. "devtool",
  9996. "hyperf",
  9997. "php",
  9998. "swoole"
  9999. ],
  10000. "support": {
  10001. "docs": "https://hyperf.wiki",
  10002. "issues": "https://github.com/hyperf/hyperf/issues",
  10003. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  10004. "source": "https://github.com/hyperf/hyperf"
  10005. },
  10006. "funding": [
  10007. {
  10008. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10009. "type": "custom"
  10010. },
  10011. {
  10012. "url": "https://opencollective.com/hyperf",
  10013. "type": "open_collective"
  10014. }
  10015. ],
  10016. "time": "2025-02-06T06:42:00+00:00"
  10017. },
  10018. {
  10019. "name": "hyperf/testing",
  10020. "version": "v3.1.55",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/hyperf/testing.git",
  10024. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  10029. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  10030. "shasum": "",
  10031. "mirrors": [
  10032. {
  10033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10034. "preferred": true
  10035. }
  10036. ]
  10037. },
  10038. "require": {
  10039. "hyperf/codec": "~3.1.0",
  10040. "hyperf/collection": "~3.1.0",
  10041. "hyperf/contract": "~3.1.0",
  10042. "hyperf/coroutine": "~3.1.0",
  10043. "hyperf/http-message": "~3.1.0",
  10044. "hyperf/http-server": "~3.1.0",
  10045. "hyperf/support": "~3.1.0",
  10046. "hyperf/utils": "~3.1.0",
  10047. "php": ">=8.1",
  10048. "phpunit/phpunit": "^10.0",
  10049. "psr/container": "^1.0 || ^2.0",
  10050. "symfony/http-foundation": "^5.4 || ^6.0"
  10051. },
  10052. "suggest": {
  10053. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  10054. },
  10055. "bin": [
  10056. "co-phpunit"
  10057. ],
  10058. "type": "library",
  10059. "extra": {
  10060. "branch-alias": {
  10061. "dev-master": "3.1-dev"
  10062. }
  10063. },
  10064. "autoload": {
  10065. "psr-4": {
  10066. "Hyperf\\Testing\\": "src/"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "description": "Testing for hyperf",
  10074. "keywords": [
  10075. "dev",
  10076. "php",
  10077. "swoole",
  10078. "testing"
  10079. ],
  10080. "support": {
  10081. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  10082. },
  10083. "funding": [
  10084. {
  10085. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10086. "type": "custom"
  10087. },
  10088. {
  10089. "url": "https://opencollective.com/hyperf",
  10090. "type": "open_collective"
  10091. }
  10092. ],
  10093. "time": "2025-05-02T14:13:24+00:00"
  10094. },
  10095. {
  10096. "name": "hyperf/watcher",
  10097. "version": "v3.1.54",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/hyperf/watcher.git",
  10101. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  10106. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  10107. "shasum": "",
  10108. "mirrors": [
  10109. {
  10110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10111. "preferred": true
  10112. }
  10113. ]
  10114. },
  10115. "require": {
  10116. "ext-posix": "*",
  10117. "hyperf/codec": "~3.1.0",
  10118. "hyperf/command": "~3.1.0",
  10119. "hyperf/di": "~3.1.0",
  10120. "hyperf/framework": "~3.1.0",
  10121. "hyperf/support": "~3.1.0",
  10122. "php": ">=8.1"
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "hyperf": {
  10127. "config": "Hyperf\\Watcher\\ConfigProvider"
  10128. },
  10129. "branch-alias": {
  10130. "dev-master": "3.1-dev"
  10131. }
  10132. },
  10133. "autoload": {
  10134. "files": [
  10135. "src/Functions.php"
  10136. ],
  10137. "psr-4": {
  10138. "Hyperf\\Watcher\\": "src/"
  10139. }
  10140. },
  10141. "notification-url": "https://packagist.org/downloads/",
  10142. "license": [
  10143. "MIT"
  10144. ],
  10145. "description": "Hot reload watcher for Hyperf",
  10146. "keywords": [
  10147. "dev",
  10148. "hyperf",
  10149. "php"
  10150. ],
  10151. "support": {
  10152. "issues": "https://github.com/hyperf/watcher/issues",
  10153. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  10154. },
  10155. "funding": [
  10156. {
  10157. "url": "https://hyperf.wiki/#/zh-cn/donate",
  10158. "type": "custom"
  10159. },
  10160. {
  10161. "url": "https://opencollective.com/hyperf",
  10162. "type": "open_collective"
  10163. }
  10164. ],
  10165. "time": "2025-04-26T13:02:01+00:00"
  10166. },
  10167. {
  10168. "name": "mockery/mockery",
  10169. "version": "1.6.12",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/mockery/mockery.git",
  10173. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10178. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10179. "shasum": "",
  10180. "mirrors": [
  10181. {
  10182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10183. "preferred": true
  10184. }
  10185. ]
  10186. },
  10187. "require": {
  10188. "hamcrest/hamcrest-php": "^2.0.1",
  10189. "lib-pcre": ">=7.0",
  10190. "php": ">=7.3"
  10191. },
  10192. "conflict": {
  10193. "phpunit/phpunit": "<8.0"
  10194. },
  10195. "require-dev": {
  10196. "phpunit/phpunit": "^8.5 || ^9.6.17",
  10197. "symplify/easy-coding-standard": "^12.1.14"
  10198. },
  10199. "type": "library",
  10200. "autoload": {
  10201. "files": [
  10202. "library/helpers.php",
  10203. "library/Mockery.php"
  10204. ],
  10205. "psr-4": {
  10206. "Mockery\\": "library/Mockery"
  10207. }
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "BSD-3-Clause"
  10212. ],
  10213. "authors": [
  10214. {
  10215. "name": "Pádraic Brady",
  10216. "email": "padraic.brady@gmail.com",
  10217. "homepage": "https://github.com/padraic",
  10218. "role": "Author"
  10219. },
  10220. {
  10221. "name": "Dave Marshall",
  10222. "email": "dave.marshall@atstsolutions.co.uk",
  10223. "homepage": "https://davedevelopment.co.uk",
  10224. "role": "Developer"
  10225. },
  10226. {
  10227. "name": "Nathanael Esayeas",
  10228. "email": "nathanael.esayeas@protonmail.com",
  10229. "homepage": "https://github.com/ghostwriter",
  10230. "role": "Lead Developer"
  10231. }
  10232. ],
  10233. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10234. "homepage": "https://github.com/mockery/mockery",
  10235. "keywords": [
  10236. "BDD",
  10237. "TDD",
  10238. "library",
  10239. "mock",
  10240. "mock objects",
  10241. "mockery",
  10242. "stub",
  10243. "test",
  10244. "test double",
  10245. "testing"
  10246. ],
  10247. "support": {
  10248. "docs": "https://docs.mockery.io/",
  10249. "issues": "https://github.com/mockery/mockery/issues",
  10250. "rss": "https://github.com/mockery/mockery/releases.atom",
  10251. "security": "https://github.com/mockery/mockery/security/advisories",
  10252. "source": "https://github.com/mockery/mockery"
  10253. },
  10254. "time": "2024-05-16T03:13:13+00:00"
  10255. },
  10256. {
  10257. "name": "myclabs/deep-copy",
  10258. "version": "1.13.0",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/myclabs/DeepCopy.git",
  10262. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  10267. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": "^7.1 || ^8.0"
  10278. },
  10279. "conflict": {
  10280. "doctrine/collections": "<1.6.8",
  10281. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10282. },
  10283. "require-dev": {
  10284. "doctrine/collections": "^1.6.8",
  10285. "doctrine/common": "^2.13.3 || ^3.2.2",
  10286. "phpspec/prophecy": "^1.10",
  10287. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10288. },
  10289. "type": "library",
  10290. "autoload": {
  10291. "files": [
  10292. "src/DeepCopy/deep_copy.php"
  10293. ],
  10294. "psr-4": {
  10295. "DeepCopy\\": "src/DeepCopy/"
  10296. }
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "MIT"
  10301. ],
  10302. "description": "Create deep copies (clones) of your objects",
  10303. "keywords": [
  10304. "clone",
  10305. "copy",
  10306. "duplicate",
  10307. "object",
  10308. "object graph"
  10309. ],
  10310. "support": {
  10311. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10312. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  10313. },
  10314. "funding": [
  10315. {
  10316. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10317. "type": "tidelift"
  10318. }
  10319. ],
  10320. "time": "2025-02-12T12:17:51+00:00"
  10321. },
  10322. {
  10323. "name": "phar-io/manifest",
  10324. "version": "dev-master",
  10325. "source": {
  10326. "type": "git",
  10327. "url": "https://github.com/phar-io/manifest.git",
  10328. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10329. },
  10330. "dist": {
  10331. "type": "zip",
  10332. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10333. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10334. "shasum": "",
  10335. "mirrors": [
  10336. {
  10337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10338. "preferred": true
  10339. }
  10340. ]
  10341. },
  10342. "require": {
  10343. "ext-dom": "*",
  10344. "ext-libxml": "*",
  10345. "ext-phar": "*",
  10346. "ext-xmlwriter": "*",
  10347. "phar-io/version": "^3.0.1",
  10348. "php": "^7.2 || ^8.0"
  10349. },
  10350. "default-branch": true,
  10351. "type": "library",
  10352. "extra": {
  10353. "branch-alias": {
  10354. "dev-master": "2.0.x-dev"
  10355. }
  10356. },
  10357. "autoload": {
  10358. "classmap": [
  10359. "src/"
  10360. ]
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "BSD-3-Clause"
  10365. ],
  10366. "authors": [
  10367. {
  10368. "name": "Arne Blankerts",
  10369. "email": "arne@blankerts.de",
  10370. "role": "Developer"
  10371. },
  10372. {
  10373. "name": "Sebastian Heuer",
  10374. "email": "sebastian@phpeople.de",
  10375. "role": "Developer"
  10376. },
  10377. {
  10378. "name": "Sebastian Bergmann",
  10379. "email": "sebastian@phpunit.de",
  10380. "role": "Developer"
  10381. }
  10382. ],
  10383. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10384. "support": {
  10385. "issues": "https://github.com/phar-io/manifest/issues",
  10386. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10387. },
  10388. "funding": [
  10389. {
  10390. "url": "https://github.com/theseer",
  10391. "type": "github"
  10392. }
  10393. ],
  10394. "time": "2024-03-03T12:33:53+00:00"
  10395. },
  10396. {
  10397. "name": "phar-io/version",
  10398. "version": "3.2.1",
  10399. "source": {
  10400. "type": "git",
  10401. "url": "https://github.com/phar-io/version.git",
  10402. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10403. },
  10404. "dist": {
  10405. "type": "zip",
  10406. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10407. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10408. "shasum": "",
  10409. "mirrors": [
  10410. {
  10411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10412. "preferred": true
  10413. }
  10414. ]
  10415. },
  10416. "require": {
  10417. "php": "^7.2 || ^8.0"
  10418. },
  10419. "type": "library",
  10420. "autoload": {
  10421. "classmap": [
  10422. "src/"
  10423. ]
  10424. },
  10425. "notification-url": "https://packagist.org/downloads/",
  10426. "license": [
  10427. "BSD-3-Clause"
  10428. ],
  10429. "authors": [
  10430. {
  10431. "name": "Arne Blankerts",
  10432. "email": "arne@blankerts.de",
  10433. "role": "Developer"
  10434. },
  10435. {
  10436. "name": "Sebastian Heuer",
  10437. "email": "sebastian@phpeople.de",
  10438. "role": "Developer"
  10439. },
  10440. {
  10441. "name": "Sebastian Bergmann",
  10442. "email": "sebastian@phpunit.de",
  10443. "role": "Developer"
  10444. }
  10445. ],
  10446. "description": "Library for handling version information and constraints",
  10447. "support": {
  10448. "issues": "https://github.com/phar-io/version/issues",
  10449. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10450. },
  10451. "time": "2022-02-21T01:04:05+00:00"
  10452. },
  10453. {
  10454. "name": "phpstan/phpstan",
  10455. "version": "1.12.24",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/phpstan/phpstan.git",
  10459. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/338b92068f58d9f8035b76aed6cf2b9e5624c025",
  10464. "reference": "338b92068f58d9f8035b76aed6cf2b9e5624c025",
  10465. "shasum": "",
  10466. "mirrors": [
  10467. {
  10468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10469. "preferred": true
  10470. }
  10471. ]
  10472. },
  10473. "require": {
  10474. "php": "^7.2|^8.0"
  10475. },
  10476. "conflict": {
  10477. "phpstan/phpstan-shim": "*"
  10478. },
  10479. "bin": [
  10480. "phpstan",
  10481. "phpstan.phar"
  10482. ],
  10483. "type": "library",
  10484. "autoload": {
  10485. "files": [
  10486. "bootstrap.php"
  10487. ]
  10488. },
  10489. "notification-url": "https://packagist.org/downloads/",
  10490. "license": [
  10491. "MIT"
  10492. ],
  10493. "description": "PHPStan - PHP Static Analysis Tool",
  10494. "keywords": [
  10495. "dev",
  10496. "static analysis"
  10497. ],
  10498. "support": {
  10499. "docs": "https://phpstan.org/user-guide/getting-started",
  10500. "forum": "https://github.com/phpstan/phpstan/discussions",
  10501. "issues": "https://github.com/phpstan/phpstan/issues",
  10502. "security": "https://github.com/phpstan/phpstan/security/policy",
  10503. "source": "https://github.com/phpstan/phpstan-src"
  10504. },
  10505. "funding": [
  10506. {
  10507. "url": "https://github.com/ondrejmirtes",
  10508. "type": "github"
  10509. },
  10510. {
  10511. "url": "https://github.com/phpstan",
  10512. "type": "github"
  10513. }
  10514. ],
  10515. "time": "2025-04-16T13:01:53+00:00"
  10516. },
  10517. {
  10518. "name": "phpunit/php-code-coverage",
  10519. "version": "10.1.16",
  10520. "source": {
  10521. "type": "git",
  10522. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10523. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  10524. },
  10525. "dist": {
  10526. "type": "zip",
  10527. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  10528. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  10529. "shasum": "",
  10530. "mirrors": [
  10531. {
  10532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10533. "preferred": true
  10534. }
  10535. ]
  10536. },
  10537. "require": {
  10538. "ext-dom": "*",
  10539. "ext-libxml": "*",
  10540. "ext-xmlwriter": "*",
  10541. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  10542. "php": ">=8.1",
  10543. "phpunit/php-file-iterator": "^4.1.0",
  10544. "phpunit/php-text-template": "^3.0.1",
  10545. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  10546. "sebastian/complexity": "^3.2.0",
  10547. "sebastian/environment": "^6.1.0",
  10548. "sebastian/lines-of-code": "^2.0.2",
  10549. "sebastian/version": "^4.0.1",
  10550. "theseer/tokenizer": "^1.2.3"
  10551. },
  10552. "require-dev": {
  10553. "phpunit/phpunit": "^10.1"
  10554. },
  10555. "suggest": {
  10556. "ext-pcov": "PHP extension that provides line coverage",
  10557. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10558. },
  10559. "type": "library",
  10560. "extra": {
  10561. "branch-alias": {
  10562. "dev-main": "10.1.x-dev"
  10563. }
  10564. },
  10565. "autoload": {
  10566. "classmap": [
  10567. "src/"
  10568. ]
  10569. },
  10570. "notification-url": "https://packagist.org/downloads/",
  10571. "license": [
  10572. "BSD-3-Clause"
  10573. ],
  10574. "authors": [
  10575. {
  10576. "name": "Sebastian Bergmann",
  10577. "email": "sebastian@phpunit.de",
  10578. "role": "lead"
  10579. }
  10580. ],
  10581. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10582. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10583. "keywords": [
  10584. "coverage",
  10585. "testing",
  10586. "xunit"
  10587. ],
  10588. "support": {
  10589. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10590. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10591. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://github.com/sebastianbergmann",
  10596. "type": "github"
  10597. }
  10598. ],
  10599. "time": "2024-08-22T04:31:57+00:00"
  10600. },
  10601. {
  10602. "name": "phpunit/php-file-iterator",
  10603. "version": "4.1.0",
  10604. "source": {
  10605. "type": "git",
  10606. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10607. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10608. },
  10609. "dist": {
  10610. "type": "zip",
  10611. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10612. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10613. "shasum": "",
  10614. "mirrors": [
  10615. {
  10616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10617. "preferred": true
  10618. }
  10619. ]
  10620. },
  10621. "require": {
  10622. "php": ">=8.1"
  10623. },
  10624. "require-dev": {
  10625. "phpunit/phpunit": "^10.0"
  10626. },
  10627. "type": "library",
  10628. "extra": {
  10629. "branch-alias": {
  10630. "dev-main": "4.0-dev"
  10631. }
  10632. },
  10633. "autoload": {
  10634. "classmap": [
  10635. "src/"
  10636. ]
  10637. },
  10638. "notification-url": "https://packagist.org/downloads/",
  10639. "license": [
  10640. "BSD-3-Clause"
  10641. ],
  10642. "authors": [
  10643. {
  10644. "name": "Sebastian Bergmann",
  10645. "email": "sebastian@phpunit.de",
  10646. "role": "lead"
  10647. }
  10648. ],
  10649. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10650. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10651. "keywords": [
  10652. "filesystem",
  10653. "iterator"
  10654. ],
  10655. "support": {
  10656. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10657. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10658. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10659. },
  10660. "funding": [
  10661. {
  10662. "url": "https://github.com/sebastianbergmann",
  10663. "type": "github"
  10664. }
  10665. ],
  10666. "time": "2023-08-31T06:24:48+00:00"
  10667. },
  10668. {
  10669. "name": "phpunit/php-invoker",
  10670. "version": "4.0.0",
  10671. "source": {
  10672. "type": "git",
  10673. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10674. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10675. },
  10676. "dist": {
  10677. "type": "zip",
  10678. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10679. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10680. "shasum": "",
  10681. "mirrors": [
  10682. {
  10683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10684. "preferred": true
  10685. }
  10686. ]
  10687. },
  10688. "require": {
  10689. "php": ">=8.1"
  10690. },
  10691. "require-dev": {
  10692. "ext-pcntl": "*",
  10693. "phpunit/phpunit": "^10.0"
  10694. },
  10695. "suggest": {
  10696. "ext-pcntl": "*"
  10697. },
  10698. "type": "library",
  10699. "extra": {
  10700. "branch-alias": {
  10701. "dev-main": "4.0-dev"
  10702. }
  10703. },
  10704. "autoload": {
  10705. "classmap": [
  10706. "src/"
  10707. ]
  10708. },
  10709. "notification-url": "https://packagist.org/downloads/",
  10710. "license": [
  10711. "BSD-3-Clause"
  10712. ],
  10713. "authors": [
  10714. {
  10715. "name": "Sebastian Bergmann",
  10716. "email": "sebastian@phpunit.de",
  10717. "role": "lead"
  10718. }
  10719. ],
  10720. "description": "Invoke callables with a timeout",
  10721. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10722. "keywords": [
  10723. "process"
  10724. ],
  10725. "support": {
  10726. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10727. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10728. },
  10729. "funding": [
  10730. {
  10731. "url": "https://github.com/sebastianbergmann",
  10732. "type": "github"
  10733. }
  10734. ],
  10735. "time": "2023-02-03T06:56:09+00:00"
  10736. },
  10737. {
  10738. "name": "phpunit/php-text-template",
  10739. "version": "3.0.1",
  10740. "source": {
  10741. "type": "git",
  10742. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10743. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10744. },
  10745. "dist": {
  10746. "type": "zip",
  10747. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10748. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10749. "shasum": "",
  10750. "mirrors": [
  10751. {
  10752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10753. "preferred": true
  10754. }
  10755. ]
  10756. },
  10757. "require": {
  10758. "php": ">=8.1"
  10759. },
  10760. "require-dev": {
  10761. "phpunit/phpunit": "^10.0"
  10762. },
  10763. "type": "library",
  10764. "extra": {
  10765. "branch-alias": {
  10766. "dev-main": "3.0-dev"
  10767. }
  10768. },
  10769. "autoload": {
  10770. "classmap": [
  10771. "src/"
  10772. ]
  10773. },
  10774. "notification-url": "https://packagist.org/downloads/",
  10775. "license": [
  10776. "BSD-3-Clause"
  10777. ],
  10778. "authors": [
  10779. {
  10780. "name": "Sebastian Bergmann",
  10781. "email": "sebastian@phpunit.de",
  10782. "role": "lead"
  10783. }
  10784. ],
  10785. "description": "Simple template engine.",
  10786. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10787. "keywords": [
  10788. "template"
  10789. ],
  10790. "support": {
  10791. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10792. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10793. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10794. },
  10795. "funding": [
  10796. {
  10797. "url": "https://github.com/sebastianbergmann",
  10798. "type": "github"
  10799. }
  10800. ],
  10801. "time": "2023-08-31T14:07:24+00:00"
  10802. },
  10803. {
  10804. "name": "phpunit/php-timer",
  10805. "version": "6.0.0",
  10806. "source": {
  10807. "type": "git",
  10808. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10809. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10810. },
  10811. "dist": {
  10812. "type": "zip",
  10813. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10814. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10815. "shasum": "",
  10816. "mirrors": [
  10817. {
  10818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10819. "preferred": true
  10820. }
  10821. ]
  10822. },
  10823. "require": {
  10824. "php": ">=8.1"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^10.0"
  10828. },
  10829. "type": "library",
  10830. "extra": {
  10831. "branch-alias": {
  10832. "dev-main": "6.0-dev"
  10833. }
  10834. },
  10835. "autoload": {
  10836. "classmap": [
  10837. "src/"
  10838. ]
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "BSD-3-Clause"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Sebastian Bergmann",
  10847. "email": "sebastian@phpunit.de",
  10848. "role": "lead"
  10849. }
  10850. ],
  10851. "description": "Utility class for timing",
  10852. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10853. "keywords": [
  10854. "timer"
  10855. ],
  10856. "support": {
  10857. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10858. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10859. },
  10860. "funding": [
  10861. {
  10862. "url": "https://github.com/sebastianbergmann",
  10863. "type": "github"
  10864. }
  10865. ],
  10866. "time": "2023-02-03T06:57:52+00:00"
  10867. },
  10868. {
  10869. "name": "phpunit/phpunit",
  10870. "version": "10.5.45",
  10871. "source": {
  10872. "type": "git",
  10873. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10874. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  10875. },
  10876. "dist": {
  10877. "type": "zip",
  10878. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  10879. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  10880. "shasum": "",
  10881. "mirrors": [
  10882. {
  10883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10884. "preferred": true
  10885. }
  10886. ]
  10887. },
  10888. "require": {
  10889. "ext-dom": "*",
  10890. "ext-json": "*",
  10891. "ext-libxml": "*",
  10892. "ext-mbstring": "*",
  10893. "ext-xml": "*",
  10894. "ext-xmlwriter": "*",
  10895. "myclabs/deep-copy": "^1.12.1",
  10896. "phar-io/manifest": "^2.0.4",
  10897. "phar-io/version": "^3.2.1",
  10898. "php": ">=8.1",
  10899. "phpunit/php-code-coverage": "^10.1.16",
  10900. "phpunit/php-file-iterator": "^4.1.0",
  10901. "phpunit/php-invoker": "^4.0.0",
  10902. "phpunit/php-text-template": "^3.0.1",
  10903. "phpunit/php-timer": "^6.0.0",
  10904. "sebastian/cli-parser": "^2.0.1",
  10905. "sebastian/code-unit": "^2.0.0",
  10906. "sebastian/comparator": "^5.0.3",
  10907. "sebastian/diff": "^5.1.1",
  10908. "sebastian/environment": "^6.1.0",
  10909. "sebastian/exporter": "^5.1.2",
  10910. "sebastian/global-state": "^6.0.2",
  10911. "sebastian/object-enumerator": "^5.0.0",
  10912. "sebastian/recursion-context": "^5.0.0",
  10913. "sebastian/type": "^4.0.0",
  10914. "sebastian/version": "^4.0.1"
  10915. },
  10916. "suggest": {
  10917. "ext-soap": "To be able to generate mocks based on WSDL files"
  10918. },
  10919. "bin": [
  10920. "phpunit"
  10921. ],
  10922. "type": "library",
  10923. "extra": {
  10924. "branch-alias": {
  10925. "dev-main": "10.5-dev"
  10926. }
  10927. },
  10928. "autoload": {
  10929. "files": [
  10930. "src/Framework/Assert/Functions.php"
  10931. ],
  10932. "classmap": [
  10933. "src/"
  10934. ]
  10935. },
  10936. "notification-url": "https://packagist.org/downloads/",
  10937. "license": [
  10938. "BSD-3-Clause"
  10939. ],
  10940. "authors": [
  10941. {
  10942. "name": "Sebastian Bergmann",
  10943. "email": "sebastian@phpunit.de",
  10944. "role": "lead"
  10945. }
  10946. ],
  10947. "description": "The PHP Unit Testing framework.",
  10948. "homepage": "https://phpunit.de/",
  10949. "keywords": [
  10950. "phpunit",
  10951. "testing",
  10952. "xunit"
  10953. ],
  10954. "support": {
  10955. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10956. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10957. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  10958. },
  10959. "funding": [
  10960. {
  10961. "url": "https://phpunit.de/sponsors.html",
  10962. "type": "custom"
  10963. },
  10964. {
  10965. "url": "https://github.com/sebastianbergmann",
  10966. "type": "github"
  10967. },
  10968. {
  10969. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10970. "type": "tidelift"
  10971. }
  10972. ],
  10973. "time": "2025-02-06T16:08:12+00:00"
  10974. },
  10975. {
  10976. "name": "react/cache",
  10977. "version": "v1.2.0",
  10978. "source": {
  10979. "type": "git",
  10980. "url": "https://github.com/reactphp/cache.git",
  10981. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  10982. },
  10983. "dist": {
  10984. "type": "zip",
  10985. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  10986. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  10987. "shasum": "",
  10988. "mirrors": [
  10989. {
  10990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10991. "preferred": true
  10992. }
  10993. ]
  10994. },
  10995. "require": {
  10996. "php": ">=5.3.0",
  10997. "react/promise": "^3.0 || ^2.0 || ^1.1"
  10998. },
  10999. "require-dev": {
  11000. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  11001. },
  11002. "type": "library",
  11003. "autoload": {
  11004. "psr-4": {
  11005. "React\\Cache\\": "src/"
  11006. }
  11007. },
  11008. "notification-url": "https://packagist.org/downloads/",
  11009. "license": [
  11010. "MIT"
  11011. ],
  11012. "authors": [
  11013. {
  11014. "name": "Christian Lück",
  11015. "email": "christian@clue.engineering",
  11016. "homepage": "https://clue.engineering/"
  11017. },
  11018. {
  11019. "name": "Cees-Jan Kiewiet",
  11020. "email": "reactphp@ceesjankiewiet.nl",
  11021. "homepage": "https://wyrihaximus.net/"
  11022. },
  11023. {
  11024. "name": "Jan Sorgalla",
  11025. "email": "jsorgalla@gmail.com",
  11026. "homepage": "https://sorgalla.com/"
  11027. },
  11028. {
  11029. "name": "Chris Boden",
  11030. "email": "cboden@gmail.com",
  11031. "homepage": "https://cboden.dev/"
  11032. }
  11033. ],
  11034. "description": "Async, Promise-based cache interface for ReactPHP",
  11035. "keywords": [
  11036. "cache",
  11037. "caching",
  11038. "promise",
  11039. "reactphp"
  11040. ],
  11041. "support": {
  11042. "issues": "https://github.com/reactphp/cache/issues",
  11043. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  11044. },
  11045. "funding": [
  11046. {
  11047. "url": "https://opencollective.com/reactphp",
  11048. "type": "open_collective"
  11049. }
  11050. ],
  11051. "time": "2022-11-30T15:59:55+00:00"
  11052. },
  11053. {
  11054. "name": "react/child-process",
  11055. "version": "v0.6.6",
  11056. "source": {
  11057. "type": "git",
  11058. "url": "https://github.com/reactphp/child-process.git",
  11059. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  11060. },
  11061. "dist": {
  11062. "type": "zip",
  11063. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  11064. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  11065. "shasum": "",
  11066. "mirrors": [
  11067. {
  11068. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11069. "preferred": true
  11070. }
  11071. ]
  11072. },
  11073. "require": {
  11074. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11075. "php": ">=5.3.0",
  11076. "react/event-loop": "^1.2",
  11077. "react/stream": "^1.4"
  11078. },
  11079. "require-dev": {
  11080. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11081. "react/socket": "^1.16",
  11082. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  11083. },
  11084. "type": "library",
  11085. "autoload": {
  11086. "psr-4": {
  11087. "React\\ChildProcess\\": "src/"
  11088. }
  11089. },
  11090. "notification-url": "https://packagist.org/downloads/",
  11091. "license": [
  11092. "MIT"
  11093. ],
  11094. "authors": [
  11095. {
  11096. "name": "Christian Lück",
  11097. "email": "christian@clue.engineering",
  11098. "homepage": "https://clue.engineering/"
  11099. },
  11100. {
  11101. "name": "Cees-Jan Kiewiet",
  11102. "email": "reactphp@ceesjankiewiet.nl",
  11103. "homepage": "https://wyrihaximus.net/"
  11104. },
  11105. {
  11106. "name": "Jan Sorgalla",
  11107. "email": "jsorgalla@gmail.com",
  11108. "homepage": "https://sorgalla.com/"
  11109. },
  11110. {
  11111. "name": "Chris Boden",
  11112. "email": "cboden@gmail.com",
  11113. "homepage": "https://cboden.dev/"
  11114. }
  11115. ],
  11116. "description": "Event-driven library for executing child processes with ReactPHP.",
  11117. "keywords": [
  11118. "event-driven",
  11119. "process",
  11120. "reactphp"
  11121. ],
  11122. "support": {
  11123. "issues": "https://github.com/reactphp/child-process/issues",
  11124. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  11125. },
  11126. "funding": [
  11127. {
  11128. "url": "https://opencollective.com/reactphp",
  11129. "type": "open_collective"
  11130. }
  11131. ],
  11132. "time": "2025-01-01T16:37:48+00:00"
  11133. },
  11134. {
  11135. "name": "react/dns",
  11136. "version": "v1.12.0",
  11137. "source": {
  11138. "type": "git",
  11139. "url": "https://github.com/reactphp/dns.git",
  11140. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  11141. },
  11142. "dist": {
  11143. "type": "zip",
  11144. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  11145. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  11146. "shasum": "",
  11147. "mirrors": [
  11148. {
  11149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11150. "preferred": true
  11151. }
  11152. ]
  11153. },
  11154. "require": {
  11155. "php": ">=5.3.0",
  11156. "react/cache": "^1.0 || ^0.6 || ^0.5",
  11157. "react/event-loop": "^1.2",
  11158. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  11159. },
  11160. "require-dev": {
  11161. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11162. "react/async": "^4 || ^3 || ^2",
  11163. "react/promise-timer": "^1.9"
  11164. },
  11165. "type": "library",
  11166. "autoload": {
  11167. "psr-4": {
  11168. "React\\Dns\\": "src/"
  11169. }
  11170. },
  11171. "notification-url": "https://packagist.org/downloads/",
  11172. "license": [
  11173. "MIT"
  11174. ],
  11175. "authors": [
  11176. {
  11177. "name": "Christian Lück",
  11178. "email": "christian@clue.engineering",
  11179. "homepage": "https://clue.engineering/"
  11180. },
  11181. {
  11182. "name": "Cees-Jan Kiewiet",
  11183. "email": "reactphp@ceesjankiewiet.nl",
  11184. "homepage": "https://wyrihaximus.net/"
  11185. },
  11186. {
  11187. "name": "Jan Sorgalla",
  11188. "email": "jsorgalla@gmail.com",
  11189. "homepage": "https://sorgalla.com/"
  11190. },
  11191. {
  11192. "name": "Chris Boden",
  11193. "email": "cboden@gmail.com",
  11194. "homepage": "https://cboden.dev/"
  11195. }
  11196. ],
  11197. "description": "Async DNS resolver for ReactPHP",
  11198. "keywords": [
  11199. "async",
  11200. "dns",
  11201. "dns-resolver",
  11202. "reactphp"
  11203. ],
  11204. "support": {
  11205. "issues": "https://github.com/reactphp/dns/issues",
  11206. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  11207. },
  11208. "funding": [
  11209. {
  11210. "url": "https://opencollective.com/reactphp",
  11211. "type": "open_collective"
  11212. }
  11213. ],
  11214. "time": "2023-11-29T12:41:06+00:00"
  11215. },
  11216. {
  11217. "name": "react/event-loop",
  11218. "version": "v1.5.0",
  11219. "source": {
  11220. "type": "git",
  11221. "url": "https://github.com/reactphp/event-loop.git",
  11222. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  11223. },
  11224. "dist": {
  11225. "type": "zip",
  11226. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  11227. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  11228. "shasum": "",
  11229. "mirrors": [
  11230. {
  11231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11232. "preferred": true
  11233. }
  11234. ]
  11235. },
  11236. "require": {
  11237. "php": ">=5.3.0"
  11238. },
  11239. "require-dev": {
  11240. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  11241. },
  11242. "suggest": {
  11243. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  11244. },
  11245. "type": "library",
  11246. "autoload": {
  11247. "psr-4": {
  11248. "React\\EventLoop\\": "src/"
  11249. }
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "MIT"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Christian Lück",
  11258. "email": "christian@clue.engineering",
  11259. "homepage": "https://clue.engineering/"
  11260. },
  11261. {
  11262. "name": "Cees-Jan Kiewiet",
  11263. "email": "reactphp@ceesjankiewiet.nl",
  11264. "homepage": "https://wyrihaximus.net/"
  11265. },
  11266. {
  11267. "name": "Jan Sorgalla",
  11268. "email": "jsorgalla@gmail.com",
  11269. "homepage": "https://sorgalla.com/"
  11270. },
  11271. {
  11272. "name": "Chris Boden",
  11273. "email": "cboden@gmail.com",
  11274. "homepage": "https://cboden.dev/"
  11275. }
  11276. ],
  11277. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  11278. "keywords": [
  11279. "asynchronous",
  11280. "event-loop"
  11281. ],
  11282. "support": {
  11283. "issues": "https://github.com/reactphp/event-loop/issues",
  11284. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  11285. },
  11286. "funding": [
  11287. {
  11288. "url": "https://opencollective.com/reactphp",
  11289. "type": "open_collective"
  11290. }
  11291. ],
  11292. "time": "2023-11-13T13:48:05+00:00"
  11293. },
  11294. {
  11295. "name": "react/promise",
  11296. "version": "v3.1.0",
  11297. "source": {
  11298. "type": "git",
  11299. "url": "https://github.com/reactphp/promise.git",
  11300. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  11301. },
  11302. "dist": {
  11303. "type": "zip",
  11304. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  11305. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  11306. "shasum": "",
  11307. "mirrors": [
  11308. {
  11309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11310. "preferred": true
  11311. }
  11312. ]
  11313. },
  11314. "require": {
  11315. "php": ">=7.1.0"
  11316. },
  11317. "require-dev": {
  11318. "phpstan/phpstan": "1.10.39 || 1.4.10",
  11319. "phpunit/phpunit": "^9.6 || ^7.5"
  11320. },
  11321. "type": "library",
  11322. "autoload": {
  11323. "files": [
  11324. "src/functions_include.php"
  11325. ],
  11326. "psr-4": {
  11327. "React\\Promise\\": "src/"
  11328. }
  11329. },
  11330. "notification-url": "https://packagist.org/downloads/",
  11331. "license": [
  11332. "MIT"
  11333. ],
  11334. "authors": [
  11335. {
  11336. "name": "Jan Sorgalla",
  11337. "email": "jsorgalla@gmail.com",
  11338. "homepage": "https://sorgalla.com/"
  11339. },
  11340. {
  11341. "name": "Christian Lück",
  11342. "email": "christian@clue.engineering",
  11343. "homepage": "https://clue.engineering/"
  11344. },
  11345. {
  11346. "name": "Cees-Jan Kiewiet",
  11347. "email": "reactphp@ceesjankiewiet.nl",
  11348. "homepage": "https://wyrihaximus.net/"
  11349. },
  11350. {
  11351. "name": "Chris Boden",
  11352. "email": "cboden@gmail.com",
  11353. "homepage": "https://cboden.dev/"
  11354. }
  11355. ],
  11356. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  11357. "keywords": [
  11358. "promise",
  11359. "promises"
  11360. ],
  11361. "support": {
  11362. "issues": "https://github.com/reactphp/promise/issues",
  11363. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  11364. },
  11365. "funding": [
  11366. {
  11367. "url": "https://opencollective.com/reactphp",
  11368. "type": "open_collective"
  11369. }
  11370. ],
  11371. "time": "2023-11-16T16:21:57+00:00"
  11372. },
  11373. {
  11374. "name": "react/socket",
  11375. "version": "v1.15.0",
  11376. "source": {
  11377. "type": "git",
  11378. "url": "https://github.com/reactphp/socket.git",
  11379. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  11380. },
  11381. "dist": {
  11382. "type": "zip",
  11383. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  11384. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  11385. "shasum": "",
  11386. "mirrors": [
  11387. {
  11388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11389. "preferred": true
  11390. }
  11391. ]
  11392. },
  11393. "require": {
  11394. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11395. "php": ">=5.3.0",
  11396. "react/dns": "^1.11",
  11397. "react/event-loop": "^1.2",
  11398. "react/promise": "^3 || ^2.6 || ^1.2.1",
  11399. "react/stream": "^1.2"
  11400. },
  11401. "require-dev": {
  11402. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  11403. "react/async": "^4 || ^3 || ^2",
  11404. "react/promise-stream": "^1.4",
  11405. "react/promise-timer": "^1.10"
  11406. },
  11407. "type": "library",
  11408. "autoload": {
  11409. "psr-4": {
  11410. "React\\Socket\\": "src/"
  11411. }
  11412. },
  11413. "notification-url": "https://packagist.org/downloads/",
  11414. "license": [
  11415. "MIT"
  11416. ],
  11417. "authors": [
  11418. {
  11419. "name": "Christian Lück",
  11420. "email": "christian@clue.engineering",
  11421. "homepage": "https://clue.engineering/"
  11422. },
  11423. {
  11424. "name": "Cees-Jan Kiewiet",
  11425. "email": "reactphp@ceesjankiewiet.nl",
  11426. "homepage": "https://wyrihaximus.net/"
  11427. },
  11428. {
  11429. "name": "Jan Sorgalla",
  11430. "email": "jsorgalla@gmail.com",
  11431. "homepage": "https://sorgalla.com/"
  11432. },
  11433. {
  11434. "name": "Chris Boden",
  11435. "email": "cboden@gmail.com",
  11436. "homepage": "https://cboden.dev/"
  11437. }
  11438. ],
  11439. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  11440. "keywords": [
  11441. "Connection",
  11442. "Socket",
  11443. "async",
  11444. "reactphp",
  11445. "stream"
  11446. ],
  11447. "support": {
  11448. "issues": "https://github.com/reactphp/socket/issues",
  11449. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  11450. },
  11451. "funding": [
  11452. {
  11453. "url": "https://opencollective.com/reactphp",
  11454. "type": "open_collective"
  11455. }
  11456. ],
  11457. "time": "2023-12-15T11:02:10+00:00"
  11458. },
  11459. {
  11460. "name": "react/stream",
  11461. "version": "1.x-dev",
  11462. "source": {
  11463. "type": "git",
  11464. "url": "https://github.com/reactphp/stream.git",
  11465. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  11466. },
  11467. "dist": {
  11468. "type": "zip",
  11469. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  11470. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  11471. "shasum": "",
  11472. "mirrors": [
  11473. {
  11474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11475. "preferred": true
  11476. }
  11477. ]
  11478. },
  11479. "require": {
  11480. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  11481. "php": ">=5.3.8",
  11482. "react/event-loop": "^1.2"
  11483. },
  11484. "require-dev": {
  11485. "clue/stream-filter": "~1.2",
  11486. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  11487. },
  11488. "type": "library",
  11489. "autoload": {
  11490. "psr-4": {
  11491. "React\\Stream\\": "src/"
  11492. }
  11493. },
  11494. "notification-url": "https://packagist.org/downloads/",
  11495. "license": [
  11496. "MIT"
  11497. ],
  11498. "authors": [
  11499. {
  11500. "name": "Christian Lück",
  11501. "email": "christian@clue.engineering",
  11502. "homepage": "https://clue.engineering/"
  11503. },
  11504. {
  11505. "name": "Cees-Jan Kiewiet",
  11506. "email": "reactphp@ceesjankiewiet.nl",
  11507. "homepage": "https://wyrihaximus.net/"
  11508. },
  11509. {
  11510. "name": "Jan Sorgalla",
  11511. "email": "jsorgalla@gmail.com",
  11512. "homepage": "https://sorgalla.com/"
  11513. },
  11514. {
  11515. "name": "Chris Boden",
  11516. "email": "cboden@gmail.com",
  11517. "homepage": "https://cboden.dev/"
  11518. }
  11519. ],
  11520. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  11521. "keywords": [
  11522. "event-driven",
  11523. "io",
  11524. "non-blocking",
  11525. "pipe",
  11526. "reactphp",
  11527. "readable",
  11528. "stream",
  11529. "writable"
  11530. ],
  11531. "support": {
  11532. "issues": "https://github.com/reactphp/stream/issues",
  11533. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  11534. },
  11535. "funding": [
  11536. {
  11537. "url": "https://opencollective.com/reactphp",
  11538. "type": "open_collective"
  11539. }
  11540. ],
  11541. "time": "2024-06-11T12:45:25+00:00"
  11542. },
  11543. {
  11544. "name": "sebastian/cli-parser",
  11545. "version": "2.0.1",
  11546. "source": {
  11547. "type": "git",
  11548. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11549. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  11550. },
  11551. "dist": {
  11552. "type": "zip",
  11553. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  11554. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  11555. "shasum": "",
  11556. "mirrors": [
  11557. {
  11558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11559. "preferred": true
  11560. }
  11561. ]
  11562. },
  11563. "require": {
  11564. "php": ">=8.1"
  11565. },
  11566. "require-dev": {
  11567. "phpunit/phpunit": "^10.0"
  11568. },
  11569. "type": "library",
  11570. "extra": {
  11571. "branch-alias": {
  11572. "dev-main": "2.0-dev"
  11573. }
  11574. },
  11575. "autoload": {
  11576. "classmap": [
  11577. "src/"
  11578. ]
  11579. },
  11580. "notification-url": "https://packagist.org/downloads/",
  11581. "license": [
  11582. "BSD-3-Clause"
  11583. ],
  11584. "authors": [
  11585. {
  11586. "name": "Sebastian Bergmann",
  11587. "email": "sebastian@phpunit.de",
  11588. "role": "lead"
  11589. }
  11590. ],
  11591. "description": "Library for parsing CLI options",
  11592. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11593. "support": {
  11594. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11595. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11596. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  11597. },
  11598. "funding": [
  11599. {
  11600. "url": "https://github.com/sebastianbergmann",
  11601. "type": "github"
  11602. }
  11603. ],
  11604. "time": "2024-03-02T07:12:49+00:00"
  11605. },
  11606. {
  11607. "name": "sebastian/code-unit",
  11608. "version": "2.0.0",
  11609. "source": {
  11610. "type": "git",
  11611. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11612. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  11613. },
  11614. "dist": {
  11615. "type": "zip",
  11616. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  11617. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  11618. "shasum": "",
  11619. "mirrors": [
  11620. {
  11621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11622. "preferred": true
  11623. }
  11624. ]
  11625. },
  11626. "require": {
  11627. "php": ">=8.1"
  11628. },
  11629. "require-dev": {
  11630. "phpunit/phpunit": "^10.0"
  11631. },
  11632. "type": "library",
  11633. "extra": {
  11634. "branch-alias": {
  11635. "dev-main": "2.0-dev"
  11636. }
  11637. },
  11638. "autoload": {
  11639. "classmap": [
  11640. "src/"
  11641. ]
  11642. },
  11643. "notification-url": "https://packagist.org/downloads/",
  11644. "license": [
  11645. "BSD-3-Clause"
  11646. ],
  11647. "authors": [
  11648. {
  11649. "name": "Sebastian Bergmann",
  11650. "email": "sebastian@phpunit.de",
  11651. "role": "lead"
  11652. }
  11653. ],
  11654. "description": "Collection of value objects that represent the PHP code units",
  11655. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11656. "support": {
  11657. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11658. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  11659. },
  11660. "funding": [
  11661. {
  11662. "url": "https://github.com/sebastianbergmann",
  11663. "type": "github"
  11664. }
  11665. ],
  11666. "time": "2023-02-03T06:58:43+00:00"
  11667. },
  11668. {
  11669. "name": "sebastian/code-unit-reverse-lookup",
  11670. "version": "3.0.0",
  11671. "source": {
  11672. "type": "git",
  11673. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11674. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  11675. },
  11676. "dist": {
  11677. "type": "zip",
  11678. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  11679. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  11680. "shasum": "",
  11681. "mirrors": [
  11682. {
  11683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11684. "preferred": true
  11685. }
  11686. ]
  11687. },
  11688. "require": {
  11689. "php": ">=8.1"
  11690. },
  11691. "require-dev": {
  11692. "phpunit/phpunit": "^10.0"
  11693. },
  11694. "type": "library",
  11695. "extra": {
  11696. "branch-alias": {
  11697. "dev-main": "3.0-dev"
  11698. }
  11699. },
  11700. "autoload": {
  11701. "classmap": [
  11702. "src/"
  11703. ]
  11704. },
  11705. "notification-url": "https://packagist.org/downloads/",
  11706. "license": [
  11707. "BSD-3-Clause"
  11708. ],
  11709. "authors": [
  11710. {
  11711. "name": "Sebastian Bergmann",
  11712. "email": "sebastian@phpunit.de"
  11713. }
  11714. ],
  11715. "description": "Looks up which function or method a line of code belongs to",
  11716. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11717. "support": {
  11718. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11719. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  11720. },
  11721. "funding": [
  11722. {
  11723. "url": "https://github.com/sebastianbergmann",
  11724. "type": "github"
  11725. }
  11726. ],
  11727. "time": "2023-02-03T06:59:15+00:00"
  11728. },
  11729. {
  11730. "name": "sebastian/comparator",
  11731. "version": "5.0.3",
  11732. "source": {
  11733. "type": "git",
  11734. "url": "https://github.com/sebastianbergmann/comparator.git",
  11735. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  11736. },
  11737. "dist": {
  11738. "type": "zip",
  11739. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  11740. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  11741. "shasum": "",
  11742. "mirrors": [
  11743. {
  11744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11745. "preferred": true
  11746. }
  11747. ]
  11748. },
  11749. "require": {
  11750. "ext-dom": "*",
  11751. "ext-mbstring": "*",
  11752. "php": ">=8.1",
  11753. "sebastian/diff": "^5.0",
  11754. "sebastian/exporter": "^5.0"
  11755. },
  11756. "require-dev": {
  11757. "phpunit/phpunit": "^10.5"
  11758. },
  11759. "type": "library",
  11760. "extra": {
  11761. "branch-alias": {
  11762. "dev-main": "5.0-dev"
  11763. }
  11764. },
  11765. "autoload": {
  11766. "classmap": [
  11767. "src/"
  11768. ]
  11769. },
  11770. "notification-url": "https://packagist.org/downloads/",
  11771. "license": [
  11772. "BSD-3-Clause"
  11773. ],
  11774. "authors": [
  11775. {
  11776. "name": "Sebastian Bergmann",
  11777. "email": "sebastian@phpunit.de"
  11778. },
  11779. {
  11780. "name": "Jeff Welch",
  11781. "email": "whatthejeff@gmail.com"
  11782. },
  11783. {
  11784. "name": "Volker Dusch",
  11785. "email": "github@wallbash.com"
  11786. },
  11787. {
  11788. "name": "Bernhard Schussek",
  11789. "email": "bschussek@2bepublished.at"
  11790. }
  11791. ],
  11792. "description": "Provides the functionality to compare PHP values for equality",
  11793. "homepage": "https://github.com/sebastianbergmann/comparator",
  11794. "keywords": [
  11795. "comparator",
  11796. "compare",
  11797. "equality"
  11798. ],
  11799. "support": {
  11800. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11801. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11802. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  11803. },
  11804. "funding": [
  11805. {
  11806. "url": "https://github.com/sebastianbergmann",
  11807. "type": "github"
  11808. }
  11809. ],
  11810. "time": "2024-10-18T14:56:07+00:00"
  11811. },
  11812. {
  11813. "name": "sebastian/complexity",
  11814. "version": "3.2.0",
  11815. "source": {
  11816. "type": "git",
  11817. "url": "https://github.com/sebastianbergmann/complexity.git",
  11818. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  11819. },
  11820. "dist": {
  11821. "type": "zip",
  11822. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  11823. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  11824. "shasum": "",
  11825. "mirrors": [
  11826. {
  11827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11828. "preferred": true
  11829. }
  11830. ]
  11831. },
  11832. "require": {
  11833. "nikic/php-parser": "^4.18 || ^5.0",
  11834. "php": ">=8.1"
  11835. },
  11836. "require-dev": {
  11837. "phpunit/phpunit": "^10.0"
  11838. },
  11839. "type": "library",
  11840. "extra": {
  11841. "branch-alias": {
  11842. "dev-main": "3.2-dev"
  11843. }
  11844. },
  11845. "autoload": {
  11846. "classmap": [
  11847. "src/"
  11848. ]
  11849. },
  11850. "notification-url": "https://packagist.org/downloads/",
  11851. "license": [
  11852. "BSD-3-Clause"
  11853. ],
  11854. "authors": [
  11855. {
  11856. "name": "Sebastian Bergmann",
  11857. "email": "sebastian@phpunit.de",
  11858. "role": "lead"
  11859. }
  11860. ],
  11861. "description": "Library for calculating the complexity of PHP code units",
  11862. "homepage": "https://github.com/sebastianbergmann/complexity",
  11863. "support": {
  11864. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11865. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11866. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11867. },
  11868. "funding": [
  11869. {
  11870. "url": "https://github.com/sebastianbergmann",
  11871. "type": "github"
  11872. }
  11873. ],
  11874. "time": "2023-12-21T08:37:17+00:00"
  11875. },
  11876. {
  11877. "name": "sebastian/diff",
  11878. "version": "5.1.1",
  11879. "source": {
  11880. "type": "git",
  11881. "url": "https://github.com/sebastianbergmann/diff.git",
  11882. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11883. },
  11884. "dist": {
  11885. "type": "zip",
  11886. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11887. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11888. "shasum": "",
  11889. "mirrors": [
  11890. {
  11891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11892. "preferred": true
  11893. }
  11894. ]
  11895. },
  11896. "require": {
  11897. "php": ">=8.1"
  11898. },
  11899. "require-dev": {
  11900. "phpunit/phpunit": "^10.0",
  11901. "symfony/process": "^6.4"
  11902. },
  11903. "type": "library",
  11904. "extra": {
  11905. "branch-alias": {
  11906. "dev-main": "5.1-dev"
  11907. }
  11908. },
  11909. "autoload": {
  11910. "classmap": [
  11911. "src/"
  11912. ]
  11913. },
  11914. "notification-url": "https://packagist.org/downloads/",
  11915. "license": [
  11916. "BSD-3-Clause"
  11917. ],
  11918. "authors": [
  11919. {
  11920. "name": "Sebastian Bergmann",
  11921. "email": "sebastian@phpunit.de"
  11922. },
  11923. {
  11924. "name": "Kore Nordmann",
  11925. "email": "mail@kore-nordmann.de"
  11926. }
  11927. ],
  11928. "description": "Diff implementation",
  11929. "homepage": "https://github.com/sebastianbergmann/diff",
  11930. "keywords": [
  11931. "diff",
  11932. "udiff",
  11933. "unidiff",
  11934. "unified diff"
  11935. ],
  11936. "support": {
  11937. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11938. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11939. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11940. },
  11941. "funding": [
  11942. {
  11943. "url": "https://github.com/sebastianbergmann",
  11944. "type": "github"
  11945. }
  11946. ],
  11947. "time": "2024-03-02T07:15:17+00:00"
  11948. },
  11949. {
  11950. "name": "sebastian/environment",
  11951. "version": "6.1.0",
  11952. "source": {
  11953. "type": "git",
  11954. "url": "https://github.com/sebastianbergmann/environment.git",
  11955. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11956. },
  11957. "dist": {
  11958. "type": "zip",
  11959. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11960. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11961. "shasum": "",
  11962. "mirrors": [
  11963. {
  11964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11965. "preferred": true
  11966. }
  11967. ]
  11968. },
  11969. "require": {
  11970. "php": ">=8.1"
  11971. },
  11972. "require-dev": {
  11973. "phpunit/phpunit": "^10.0"
  11974. },
  11975. "suggest": {
  11976. "ext-posix": "*"
  11977. },
  11978. "type": "library",
  11979. "extra": {
  11980. "branch-alias": {
  11981. "dev-main": "6.1-dev"
  11982. }
  11983. },
  11984. "autoload": {
  11985. "classmap": [
  11986. "src/"
  11987. ]
  11988. },
  11989. "notification-url": "https://packagist.org/downloads/",
  11990. "license": [
  11991. "BSD-3-Clause"
  11992. ],
  11993. "authors": [
  11994. {
  11995. "name": "Sebastian Bergmann",
  11996. "email": "sebastian@phpunit.de"
  11997. }
  11998. ],
  11999. "description": "Provides functionality to handle HHVM/PHP environments",
  12000. "homepage": "https://github.com/sebastianbergmann/environment",
  12001. "keywords": [
  12002. "Xdebug",
  12003. "environment",
  12004. "hhvm"
  12005. ],
  12006. "support": {
  12007. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12008. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  12009. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  12010. },
  12011. "funding": [
  12012. {
  12013. "url": "https://github.com/sebastianbergmann",
  12014. "type": "github"
  12015. }
  12016. ],
  12017. "time": "2024-03-23T08:47:14+00:00"
  12018. },
  12019. {
  12020. "name": "sebastian/exporter",
  12021. "version": "5.1.2",
  12022. "source": {
  12023. "type": "git",
  12024. "url": "https://github.com/sebastianbergmann/exporter.git",
  12025. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  12026. },
  12027. "dist": {
  12028. "type": "zip",
  12029. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  12030. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  12031. "shasum": "",
  12032. "mirrors": [
  12033. {
  12034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12035. "preferred": true
  12036. }
  12037. ]
  12038. },
  12039. "require": {
  12040. "ext-mbstring": "*",
  12041. "php": ">=8.1",
  12042. "sebastian/recursion-context": "^5.0"
  12043. },
  12044. "require-dev": {
  12045. "phpunit/phpunit": "^10.0"
  12046. },
  12047. "type": "library",
  12048. "extra": {
  12049. "branch-alias": {
  12050. "dev-main": "5.1-dev"
  12051. }
  12052. },
  12053. "autoload": {
  12054. "classmap": [
  12055. "src/"
  12056. ]
  12057. },
  12058. "notification-url": "https://packagist.org/downloads/",
  12059. "license": [
  12060. "BSD-3-Clause"
  12061. ],
  12062. "authors": [
  12063. {
  12064. "name": "Sebastian Bergmann",
  12065. "email": "sebastian@phpunit.de"
  12066. },
  12067. {
  12068. "name": "Jeff Welch",
  12069. "email": "whatthejeff@gmail.com"
  12070. },
  12071. {
  12072. "name": "Volker Dusch",
  12073. "email": "github@wallbash.com"
  12074. },
  12075. {
  12076. "name": "Adam Harvey",
  12077. "email": "aharvey@php.net"
  12078. },
  12079. {
  12080. "name": "Bernhard Schussek",
  12081. "email": "bschussek@gmail.com"
  12082. }
  12083. ],
  12084. "description": "Provides the functionality to export PHP variables for visualization",
  12085. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12086. "keywords": [
  12087. "export",
  12088. "exporter"
  12089. ],
  12090. "support": {
  12091. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12092. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12093. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  12094. },
  12095. "funding": [
  12096. {
  12097. "url": "https://github.com/sebastianbergmann",
  12098. "type": "github"
  12099. }
  12100. ],
  12101. "time": "2024-03-02T07:17:12+00:00"
  12102. },
  12103. {
  12104. "name": "sebastian/global-state",
  12105. "version": "6.0.2",
  12106. "source": {
  12107. "type": "git",
  12108. "url": "https://github.com/sebastianbergmann/global-state.git",
  12109. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  12110. },
  12111. "dist": {
  12112. "type": "zip",
  12113. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  12114. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  12115. "shasum": "",
  12116. "mirrors": [
  12117. {
  12118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12119. "preferred": true
  12120. }
  12121. ]
  12122. },
  12123. "require": {
  12124. "php": ">=8.1",
  12125. "sebastian/object-reflector": "^3.0",
  12126. "sebastian/recursion-context": "^5.0"
  12127. },
  12128. "require-dev": {
  12129. "ext-dom": "*",
  12130. "phpunit/phpunit": "^10.0"
  12131. },
  12132. "type": "library",
  12133. "extra": {
  12134. "branch-alias": {
  12135. "dev-main": "6.0-dev"
  12136. }
  12137. },
  12138. "autoload": {
  12139. "classmap": [
  12140. "src/"
  12141. ]
  12142. },
  12143. "notification-url": "https://packagist.org/downloads/",
  12144. "license": [
  12145. "BSD-3-Clause"
  12146. ],
  12147. "authors": [
  12148. {
  12149. "name": "Sebastian Bergmann",
  12150. "email": "sebastian@phpunit.de"
  12151. }
  12152. ],
  12153. "description": "Snapshotting of global state",
  12154. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12155. "keywords": [
  12156. "global state"
  12157. ],
  12158. "support": {
  12159. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12160. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12161. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  12162. },
  12163. "funding": [
  12164. {
  12165. "url": "https://github.com/sebastianbergmann",
  12166. "type": "github"
  12167. }
  12168. ],
  12169. "time": "2024-03-02T07:19:19+00:00"
  12170. },
  12171. {
  12172. "name": "sebastian/lines-of-code",
  12173. "version": "2.0.2",
  12174. "source": {
  12175. "type": "git",
  12176. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12177. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  12178. },
  12179. "dist": {
  12180. "type": "zip",
  12181. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  12182. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  12183. "shasum": "",
  12184. "mirrors": [
  12185. {
  12186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12187. "preferred": true
  12188. }
  12189. ]
  12190. },
  12191. "require": {
  12192. "nikic/php-parser": "^4.18 || ^5.0",
  12193. "php": ">=8.1"
  12194. },
  12195. "require-dev": {
  12196. "phpunit/phpunit": "^10.0"
  12197. },
  12198. "type": "library",
  12199. "extra": {
  12200. "branch-alias": {
  12201. "dev-main": "2.0-dev"
  12202. }
  12203. },
  12204. "autoload": {
  12205. "classmap": [
  12206. "src/"
  12207. ]
  12208. },
  12209. "notification-url": "https://packagist.org/downloads/",
  12210. "license": [
  12211. "BSD-3-Clause"
  12212. ],
  12213. "authors": [
  12214. {
  12215. "name": "Sebastian Bergmann",
  12216. "email": "sebastian@phpunit.de",
  12217. "role": "lead"
  12218. }
  12219. ],
  12220. "description": "Library for counting the lines of code in PHP source code",
  12221. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12222. "support": {
  12223. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12224. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12225. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  12226. },
  12227. "funding": [
  12228. {
  12229. "url": "https://github.com/sebastianbergmann",
  12230. "type": "github"
  12231. }
  12232. ],
  12233. "time": "2023-12-21T08:38:20+00:00"
  12234. },
  12235. {
  12236. "name": "sebastian/object-enumerator",
  12237. "version": "5.0.0",
  12238. "source": {
  12239. "type": "git",
  12240. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12241. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  12242. },
  12243. "dist": {
  12244. "type": "zip",
  12245. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  12246. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  12247. "shasum": "",
  12248. "mirrors": [
  12249. {
  12250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12251. "preferred": true
  12252. }
  12253. ]
  12254. },
  12255. "require": {
  12256. "php": ">=8.1",
  12257. "sebastian/object-reflector": "^3.0",
  12258. "sebastian/recursion-context": "^5.0"
  12259. },
  12260. "require-dev": {
  12261. "phpunit/phpunit": "^10.0"
  12262. },
  12263. "type": "library",
  12264. "extra": {
  12265. "branch-alias": {
  12266. "dev-main": "5.0-dev"
  12267. }
  12268. },
  12269. "autoload": {
  12270. "classmap": [
  12271. "src/"
  12272. ]
  12273. },
  12274. "notification-url": "https://packagist.org/downloads/",
  12275. "license": [
  12276. "BSD-3-Clause"
  12277. ],
  12278. "authors": [
  12279. {
  12280. "name": "Sebastian Bergmann",
  12281. "email": "sebastian@phpunit.de"
  12282. }
  12283. ],
  12284. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12285. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12286. "support": {
  12287. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12288. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  12289. },
  12290. "funding": [
  12291. {
  12292. "url": "https://github.com/sebastianbergmann",
  12293. "type": "github"
  12294. }
  12295. ],
  12296. "time": "2023-02-03T07:08:32+00:00"
  12297. },
  12298. {
  12299. "name": "sebastian/object-reflector",
  12300. "version": "3.0.0",
  12301. "source": {
  12302. "type": "git",
  12303. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12304. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  12305. },
  12306. "dist": {
  12307. "type": "zip",
  12308. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  12309. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  12310. "shasum": "",
  12311. "mirrors": [
  12312. {
  12313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12314. "preferred": true
  12315. }
  12316. ]
  12317. },
  12318. "require": {
  12319. "php": ">=8.1"
  12320. },
  12321. "require-dev": {
  12322. "phpunit/phpunit": "^10.0"
  12323. },
  12324. "type": "library",
  12325. "extra": {
  12326. "branch-alias": {
  12327. "dev-main": "3.0-dev"
  12328. }
  12329. },
  12330. "autoload": {
  12331. "classmap": [
  12332. "src/"
  12333. ]
  12334. },
  12335. "notification-url": "https://packagist.org/downloads/",
  12336. "license": [
  12337. "BSD-3-Clause"
  12338. ],
  12339. "authors": [
  12340. {
  12341. "name": "Sebastian Bergmann",
  12342. "email": "sebastian@phpunit.de"
  12343. }
  12344. ],
  12345. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12346. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12347. "support": {
  12348. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12349. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  12350. },
  12351. "funding": [
  12352. {
  12353. "url": "https://github.com/sebastianbergmann",
  12354. "type": "github"
  12355. }
  12356. ],
  12357. "time": "2023-02-03T07:06:18+00:00"
  12358. },
  12359. {
  12360. "name": "sebastian/recursion-context",
  12361. "version": "5.0.0",
  12362. "source": {
  12363. "type": "git",
  12364. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12365. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  12366. },
  12367. "dist": {
  12368. "type": "zip",
  12369. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  12370. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  12371. "shasum": "",
  12372. "mirrors": [
  12373. {
  12374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12375. "preferred": true
  12376. }
  12377. ]
  12378. },
  12379. "require": {
  12380. "php": ">=8.1"
  12381. },
  12382. "require-dev": {
  12383. "phpunit/phpunit": "^10.0"
  12384. },
  12385. "type": "library",
  12386. "extra": {
  12387. "branch-alias": {
  12388. "dev-main": "5.0-dev"
  12389. }
  12390. },
  12391. "autoload": {
  12392. "classmap": [
  12393. "src/"
  12394. ]
  12395. },
  12396. "notification-url": "https://packagist.org/downloads/",
  12397. "license": [
  12398. "BSD-3-Clause"
  12399. ],
  12400. "authors": [
  12401. {
  12402. "name": "Sebastian Bergmann",
  12403. "email": "sebastian@phpunit.de"
  12404. },
  12405. {
  12406. "name": "Jeff Welch",
  12407. "email": "whatthejeff@gmail.com"
  12408. },
  12409. {
  12410. "name": "Adam Harvey",
  12411. "email": "aharvey@php.net"
  12412. }
  12413. ],
  12414. "description": "Provides functionality to recursively process PHP variables",
  12415. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12416. "support": {
  12417. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12418. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  12419. },
  12420. "funding": [
  12421. {
  12422. "url": "https://github.com/sebastianbergmann",
  12423. "type": "github"
  12424. }
  12425. ],
  12426. "time": "2023-02-03T07:05:40+00:00"
  12427. },
  12428. {
  12429. "name": "sebastian/type",
  12430. "version": "4.0.0",
  12431. "source": {
  12432. "type": "git",
  12433. "url": "https://github.com/sebastianbergmann/type.git",
  12434. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  12435. },
  12436. "dist": {
  12437. "type": "zip",
  12438. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  12439. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  12440. "shasum": "",
  12441. "mirrors": [
  12442. {
  12443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12444. "preferred": true
  12445. }
  12446. ]
  12447. },
  12448. "require": {
  12449. "php": ">=8.1"
  12450. },
  12451. "require-dev": {
  12452. "phpunit/phpunit": "^10.0"
  12453. },
  12454. "type": "library",
  12455. "extra": {
  12456. "branch-alias": {
  12457. "dev-main": "4.0-dev"
  12458. }
  12459. },
  12460. "autoload": {
  12461. "classmap": [
  12462. "src/"
  12463. ]
  12464. },
  12465. "notification-url": "https://packagist.org/downloads/",
  12466. "license": [
  12467. "BSD-3-Clause"
  12468. ],
  12469. "authors": [
  12470. {
  12471. "name": "Sebastian Bergmann",
  12472. "email": "sebastian@phpunit.de",
  12473. "role": "lead"
  12474. }
  12475. ],
  12476. "description": "Collection of value objects that represent the types of the PHP type system",
  12477. "homepage": "https://github.com/sebastianbergmann/type",
  12478. "support": {
  12479. "issues": "https://github.com/sebastianbergmann/type/issues",
  12480. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  12481. },
  12482. "funding": [
  12483. {
  12484. "url": "https://github.com/sebastianbergmann",
  12485. "type": "github"
  12486. }
  12487. ],
  12488. "time": "2023-02-03T07:10:45+00:00"
  12489. },
  12490. {
  12491. "name": "sebastian/version",
  12492. "version": "4.0.1",
  12493. "source": {
  12494. "type": "git",
  12495. "url": "https://github.com/sebastianbergmann/version.git",
  12496. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  12497. },
  12498. "dist": {
  12499. "type": "zip",
  12500. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  12501. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  12502. "shasum": "",
  12503. "mirrors": [
  12504. {
  12505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12506. "preferred": true
  12507. }
  12508. ]
  12509. },
  12510. "require": {
  12511. "php": ">=8.1"
  12512. },
  12513. "type": "library",
  12514. "extra": {
  12515. "branch-alias": {
  12516. "dev-main": "4.0-dev"
  12517. }
  12518. },
  12519. "autoload": {
  12520. "classmap": [
  12521. "src/"
  12522. ]
  12523. },
  12524. "notification-url": "https://packagist.org/downloads/",
  12525. "license": [
  12526. "BSD-3-Clause"
  12527. ],
  12528. "authors": [
  12529. {
  12530. "name": "Sebastian Bergmann",
  12531. "email": "sebastian@phpunit.de",
  12532. "role": "lead"
  12533. }
  12534. ],
  12535. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12536. "homepage": "https://github.com/sebastianbergmann/version",
  12537. "support": {
  12538. "issues": "https://github.com/sebastianbergmann/version/issues",
  12539. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  12540. },
  12541. "funding": [
  12542. {
  12543. "url": "https://github.com/sebastianbergmann",
  12544. "type": "github"
  12545. }
  12546. ],
  12547. "time": "2023-02-07T11:34:05+00:00"
  12548. },
  12549. {
  12550. "name": "swoole/ide-helper",
  12551. "version": "5.1.7",
  12552. "source": {
  12553. "type": "git",
  12554. "url": "https://github.com/swoole/ide-helper.git",
  12555. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  12556. },
  12557. "dist": {
  12558. "type": "zip",
  12559. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  12560. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  12561. "shasum": "",
  12562. "mirrors": [
  12563. {
  12564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12565. "preferred": true
  12566. }
  12567. ]
  12568. },
  12569. "type": "library",
  12570. "notification-url": "https://packagist.org/downloads/",
  12571. "license": [
  12572. "Apache-2.0"
  12573. ],
  12574. "authors": [
  12575. {
  12576. "name": "Team Swoole",
  12577. "email": "team@swoole.com"
  12578. }
  12579. ],
  12580. "description": "IDE help files for Swoole.",
  12581. "support": {
  12582. "issues": "https://github.com/swoole/ide-helper/issues",
  12583. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  12584. },
  12585. "time": "2025-03-22T23:53:02+00:00"
  12586. },
  12587. {
  12588. "name": "symfony/event-dispatcher",
  12589. "version": "v6.4.13",
  12590. "source": {
  12591. "type": "git",
  12592. "url": "https://github.com/symfony/event-dispatcher.git",
  12593. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  12594. },
  12595. "dist": {
  12596. "type": "zip",
  12597. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  12598. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  12599. "shasum": "",
  12600. "mirrors": [
  12601. {
  12602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12603. "preferred": true
  12604. }
  12605. ]
  12606. },
  12607. "require": {
  12608. "php": ">=8.1",
  12609. "symfony/event-dispatcher-contracts": "^2.5|^3"
  12610. },
  12611. "conflict": {
  12612. "symfony/dependency-injection": "<5.4",
  12613. "symfony/service-contracts": "<2.5"
  12614. },
  12615. "provide": {
  12616. "psr/event-dispatcher-implementation": "1.0",
  12617. "symfony/event-dispatcher-implementation": "2.0|3.0"
  12618. },
  12619. "require-dev": {
  12620. "psr/log": "^1|^2|^3",
  12621. "symfony/config": "^5.4|^6.0|^7.0",
  12622. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12623. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12624. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12625. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12626. "symfony/service-contracts": "^2.5|^3",
  12627. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  12628. },
  12629. "type": "library",
  12630. "autoload": {
  12631. "psr-4": {
  12632. "Symfony\\Component\\EventDispatcher\\": ""
  12633. },
  12634. "exclude-from-classmap": [
  12635. "/Tests/"
  12636. ]
  12637. },
  12638. "notification-url": "https://packagist.org/downloads/",
  12639. "license": [
  12640. "MIT"
  12641. ],
  12642. "authors": [
  12643. {
  12644. "name": "Fabien Potencier",
  12645. "email": "fabien@symfony.com"
  12646. },
  12647. {
  12648. "name": "Symfony Community",
  12649. "homepage": "https://symfony.com/contributors"
  12650. }
  12651. ],
  12652. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  12653. "homepage": "https://symfony.com",
  12654. "support": {
  12655. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  12656. },
  12657. "funding": [
  12658. {
  12659. "url": "https://symfony.com/sponsor",
  12660. "type": "custom"
  12661. },
  12662. {
  12663. "url": "https://github.com/fabpot",
  12664. "type": "github"
  12665. },
  12666. {
  12667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12668. "type": "tidelift"
  12669. }
  12670. ],
  12671. "time": "2024-09-25T14:18:03+00:00"
  12672. },
  12673. {
  12674. "name": "symfony/event-dispatcher-contracts",
  12675. "version": "v3.5.1",
  12676. "source": {
  12677. "type": "git",
  12678. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  12679. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  12680. },
  12681. "dist": {
  12682. "type": "zip",
  12683. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  12684. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  12685. "shasum": "",
  12686. "mirrors": [
  12687. {
  12688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12689. "preferred": true
  12690. }
  12691. ]
  12692. },
  12693. "require": {
  12694. "php": ">=8.1",
  12695. "psr/event-dispatcher": "^1"
  12696. },
  12697. "type": "library",
  12698. "extra": {
  12699. "thanks": {
  12700. "url": "https://github.com/symfony/contracts",
  12701. "name": "symfony/contracts"
  12702. },
  12703. "branch-alias": {
  12704. "dev-main": "3.5-dev"
  12705. }
  12706. },
  12707. "autoload": {
  12708. "psr-4": {
  12709. "Symfony\\Contracts\\EventDispatcher\\": ""
  12710. }
  12711. },
  12712. "notification-url": "https://packagist.org/downloads/",
  12713. "license": [
  12714. "MIT"
  12715. ],
  12716. "authors": [
  12717. {
  12718. "name": "Nicolas Grekas",
  12719. "email": "p@tchwork.com"
  12720. },
  12721. {
  12722. "name": "Symfony Community",
  12723. "homepage": "https://symfony.com/contributors"
  12724. }
  12725. ],
  12726. "description": "Generic abstractions related to dispatching event",
  12727. "homepage": "https://symfony.com",
  12728. "keywords": [
  12729. "abstractions",
  12730. "contracts",
  12731. "decoupling",
  12732. "interfaces",
  12733. "interoperability",
  12734. "standards"
  12735. ],
  12736. "support": {
  12737. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  12738. },
  12739. "funding": [
  12740. {
  12741. "url": "https://symfony.com/sponsor",
  12742. "type": "custom"
  12743. },
  12744. {
  12745. "url": "https://github.com/fabpot",
  12746. "type": "github"
  12747. },
  12748. {
  12749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12750. "type": "tidelift"
  12751. }
  12752. ],
  12753. "time": "2024-09-25T14:20:29+00:00"
  12754. },
  12755. {
  12756. "name": "symfony/filesystem",
  12757. "version": "v6.4.13",
  12758. "source": {
  12759. "type": "git",
  12760. "url": "https://github.com/symfony/filesystem.git",
  12761. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  12762. },
  12763. "dist": {
  12764. "type": "zip",
  12765. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  12766. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  12767. "shasum": "",
  12768. "mirrors": [
  12769. {
  12770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12771. "preferred": true
  12772. }
  12773. ]
  12774. },
  12775. "require": {
  12776. "php": ">=8.1",
  12777. "symfony/polyfill-ctype": "~1.8",
  12778. "symfony/polyfill-mbstring": "~1.8"
  12779. },
  12780. "require-dev": {
  12781. "symfony/process": "^5.4|^6.4|^7.0"
  12782. },
  12783. "type": "library",
  12784. "autoload": {
  12785. "psr-4": {
  12786. "Symfony\\Component\\Filesystem\\": ""
  12787. },
  12788. "exclude-from-classmap": [
  12789. "/Tests/"
  12790. ]
  12791. },
  12792. "notification-url": "https://packagist.org/downloads/",
  12793. "license": [
  12794. "MIT"
  12795. ],
  12796. "authors": [
  12797. {
  12798. "name": "Fabien Potencier",
  12799. "email": "fabien@symfony.com"
  12800. },
  12801. {
  12802. "name": "Symfony Community",
  12803. "homepage": "https://symfony.com/contributors"
  12804. }
  12805. ],
  12806. "description": "Provides basic utilities for the filesystem",
  12807. "homepage": "https://symfony.com",
  12808. "support": {
  12809. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  12810. },
  12811. "funding": [
  12812. {
  12813. "url": "https://symfony.com/sponsor",
  12814. "type": "custom"
  12815. },
  12816. {
  12817. "url": "https://github.com/fabpot",
  12818. "type": "github"
  12819. },
  12820. {
  12821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12822. "type": "tidelift"
  12823. }
  12824. ],
  12825. "time": "2024-10-25T15:07:50+00:00"
  12826. },
  12827. {
  12828. "name": "symfony/http-foundation",
  12829. "version": "v6.4.21",
  12830. "source": {
  12831. "type": "git",
  12832. "url": "https://github.com/symfony/http-foundation.git",
  12833. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  12834. },
  12835. "dist": {
  12836. "type": "zip",
  12837. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  12838. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  12839. "shasum": "",
  12840. "mirrors": [
  12841. {
  12842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12843. "preferred": true
  12844. }
  12845. ]
  12846. },
  12847. "require": {
  12848. "php": ">=8.1",
  12849. "symfony/deprecation-contracts": "^2.5|^3",
  12850. "symfony/polyfill-mbstring": "~1.1",
  12851. "symfony/polyfill-php83": "^1.27"
  12852. },
  12853. "conflict": {
  12854. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  12855. },
  12856. "require-dev": {
  12857. "doctrine/dbal": "^2.13.1|^3|^4",
  12858. "predis/predis": "^1.1|^2.0",
  12859. "symfony/cache": "^6.4.12|^7.1.5",
  12860. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12861. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12862. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  12863. "symfony/mime": "^5.4|^6.0|^7.0",
  12864. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  12865. },
  12866. "type": "library",
  12867. "autoload": {
  12868. "psr-4": {
  12869. "Symfony\\Component\\HttpFoundation\\": ""
  12870. },
  12871. "exclude-from-classmap": [
  12872. "/Tests/"
  12873. ]
  12874. },
  12875. "notification-url": "https://packagist.org/downloads/",
  12876. "license": [
  12877. "MIT"
  12878. ],
  12879. "authors": [
  12880. {
  12881. "name": "Fabien Potencier",
  12882. "email": "fabien@symfony.com"
  12883. },
  12884. {
  12885. "name": "Symfony Community",
  12886. "homepage": "https://symfony.com/contributors"
  12887. }
  12888. ],
  12889. "description": "Defines an object-oriented layer for the HTTP specification",
  12890. "homepage": "https://symfony.com",
  12891. "support": {
  12892. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  12893. },
  12894. "funding": [
  12895. {
  12896. "url": "https://symfony.com/sponsor",
  12897. "type": "custom"
  12898. },
  12899. {
  12900. "url": "https://github.com/fabpot",
  12901. "type": "github"
  12902. },
  12903. {
  12904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12905. "type": "tidelift"
  12906. }
  12907. ],
  12908. "time": "2025-04-27T13:27:38+00:00"
  12909. },
  12910. {
  12911. "name": "symfony/options-resolver",
  12912. "version": "v6.4.16",
  12913. "source": {
  12914. "type": "git",
  12915. "url": "https://github.com/symfony/options-resolver.git",
  12916. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  12917. },
  12918. "dist": {
  12919. "type": "zip",
  12920. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  12921. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  12922. "shasum": "",
  12923. "mirrors": [
  12924. {
  12925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12926. "preferred": true
  12927. }
  12928. ]
  12929. },
  12930. "require": {
  12931. "php": ">=8.1",
  12932. "symfony/deprecation-contracts": "^2.5|^3"
  12933. },
  12934. "type": "library",
  12935. "autoload": {
  12936. "psr-4": {
  12937. "Symfony\\Component\\OptionsResolver\\": ""
  12938. },
  12939. "exclude-from-classmap": [
  12940. "/Tests/"
  12941. ]
  12942. },
  12943. "notification-url": "https://packagist.org/downloads/",
  12944. "license": [
  12945. "MIT"
  12946. ],
  12947. "authors": [
  12948. {
  12949. "name": "Fabien Potencier",
  12950. "email": "fabien@symfony.com"
  12951. },
  12952. {
  12953. "name": "Symfony Community",
  12954. "homepage": "https://symfony.com/contributors"
  12955. }
  12956. ],
  12957. "description": "Provides an improved replacement for the array_replace PHP function",
  12958. "homepage": "https://symfony.com",
  12959. "keywords": [
  12960. "config",
  12961. "configuration",
  12962. "options"
  12963. ],
  12964. "support": {
  12965. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  12966. },
  12967. "funding": [
  12968. {
  12969. "url": "https://symfony.com/sponsor",
  12970. "type": "custom"
  12971. },
  12972. {
  12973. "url": "https://github.com/fabpot",
  12974. "type": "github"
  12975. },
  12976. {
  12977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12978. "type": "tidelift"
  12979. }
  12980. ],
  12981. "time": "2024-11-20T10:57:02+00:00"
  12982. },
  12983. {
  12984. "name": "symfony/polyfill-php81",
  12985. "version": "v1.31.0",
  12986. "source": {
  12987. "type": "git",
  12988. "url": "https://github.com/symfony/polyfill-php81.git",
  12989. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12990. },
  12991. "dist": {
  12992. "type": "zip",
  12993. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12994. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12995. "shasum": "",
  12996. "mirrors": [
  12997. {
  12998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12999. "preferred": true
  13000. }
  13001. ]
  13002. },
  13003. "require": {
  13004. "php": ">=7.2"
  13005. },
  13006. "type": "library",
  13007. "extra": {
  13008. "thanks": {
  13009. "url": "https://github.com/symfony/polyfill",
  13010. "name": "symfony/polyfill"
  13011. }
  13012. },
  13013. "autoload": {
  13014. "files": [
  13015. "bootstrap.php"
  13016. ],
  13017. "psr-4": {
  13018. "Symfony\\Polyfill\\Php81\\": ""
  13019. },
  13020. "classmap": [
  13021. "Resources/stubs"
  13022. ]
  13023. },
  13024. "notification-url": "https://packagist.org/downloads/",
  13025. "license": [
  13026. "MIT"
  13027. ],
  13028. "authors": [
  13029. {
  13030. "name": "Nicolas Grekas",
  13031. "email": "p@tchwork.com"
  13032. },
  13033. {
  13034. "name": "Symfony Community",
  13035. "homepage": "https://symfony.com/contributors"
  13036. }
  13037. ],
  13038. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  13039. "homepage": "https://symfony.com",
  13040. "keywords": [
  13041. "compatibility",
  13042. "polyfill",
  13043. "portable",
  13044. "shim"
  13045. ],
  13046. "support": {
  13047. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  13048. },
  13049. "funding": [
  13050. {
  13051. "url": "https://symfony.com/sponsor",
  13052. "type": "custom"
  13053. },
  13054. {
  13055. "url": "https://github.com/fabpot",
  13056. "type": "github"
  13057. },
  13058. {
  13059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13060. "type": "tidelift"
  13061. }
  13062. ],
  13063. "time": "2024-09-09T11:45:10+00:00"
  13064. },
  13065. {
  13066. "name": "symfony/polyfill-php83",
  13067. "version": "v1.31.0",
  13068. "source": {
  13069. "type": "git",
  13070. "url": "https://github.com/symfony/polyfill-php83.git",
  13071. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  13072. },
  13073. "dist": {
  13074. "type": "zip",
  13075. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  13076. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  13077. "shasum": "",
  13078. "mirrors": [
  13079. {
  13080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13081. "preferred": true
  13082. }
  13083. ]
  13084. },
  13085. "require": {
  13086. "php": ">=7.2"
  13087. },
  13088. "type": "library",
  13089. "extra": {
  13090. "thanks": {
  13091. "url": "https://github.com/symfony/polyfill",
  13092. "name": "symfony/polyfill"
  13093. }
  13094. },
  13095. "autoload": {
  13096. "files": [
  13097. "bootstrap.php"
  13098. ],
  13099. "psr-4": {
  13100. "Symfony\\Polyfill\\Php83\\": ""
  13101. },
  13102. "classmap": [
  13103. "Resources/stubs"
  13104. ]
  13105. },
  13106. "notification-url": "https://packagist.org/downloads/",
  13107. "license": [
  13108. "MIT"
  13109. ],
  13110. "authors": [
  13111. {
  13112. "name": "Nicolas Grekas",
  13113. "email": "p@tchwork.com"
  13114. },
  13115. {
  13116. "name": "Symfony Community",
  13117. "homepage": "https://symfony.com/contributors"
  13118. }
  13119. ],
  13120. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  13121. "homepage": "https://symfony.com",
  13122. "keywords": [
  13123. "compatibility",
  13124. "polyfill",
  13125. "portable",
  13126. "shim"
  13127. ],
  13128. "support": {
  13129. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  13130. },
  13131. "funding": [
  13132. {
  13133. "url": "https://symfony.com/sponsor",
  13134. "type": "custom"
  13135. },
  13136. {
  13137. "url": "https://github.com/fabpot",
  13138. "type": "github"
  13139. },
  13140. {
  13141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13142. "type": "tidelift"
  13143. }
  13144. ],
  13145. "time": "2024-09-09T11:45:10+00:00"
  13146. },
  13147. {
  13148. "name": "symfony/process",
  13149. "version": "v6.4.20",
  13150. "source": {
  13151. "type": "git",
  13152. "url": "https://github.com/symfony/process.git",
  13153. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  13154. },
  13155. "dist": {
  13156. "type": "zip",
  13157. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  13158. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  13159. "shasum": "",
  13160. "mirrors": [
  13161. {
  13162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13163. "preferred": true
  13164. }
  13165. ]
  13166. },
  13167. "require": {
  13168. "php": ">=8.1"
  13169. },
  13170. "type": "library",
  13171. "autoload": {
  13172. "psr-4": {
  13173. "Symfony\\Component\\Process\\": ""
  13174. },
  13175. "exclude-from-classmap": [
  13176. "/Tests/"
  13177. ]
  13178. },
  13179. "notification-url": "https://packagist.org/downloads/",
  13180. "license": [
  13181. "MIT"
  13182. ],
  13183. "authors": [
  13184. {
  13185. "name": "Fabien Potencier",
  13186. "email": "fabien@symfony.com"
  13187. },
  13188. {
  13189. "name": "Symfony Community",
  13190. "homepage": "https://symfony.com/contributors"
  13191. }
  13192. ],
  13193. "description": "Executes commands in sub-processes",
  13194. "homepage": "https://symfony.com",
  13195. "support": {
  13196. "source": "https://github.com/symfony/process/tree/v6.4.20"
  13197. },
  13198. "funding": [
  13199. {
  13200. "url": "https://symfony.com/sponsor",
  13201. "type": "custom"
  13202. },
  13203. {
  13204. "url": "https://github.com/fabpot",
  13205. "type": "github"
  13206. },
  13207. {
  13208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13209. "type": "tidelift"
  13210. }
  13211. ],
  13212. "time": "2025-03-10T17:11:00+00:00"
  13213. },
  13214. {
  13215. "name": "symfony/stopwatch",
  13216. "version": "v6.4.19",
  13217. "source": {
  13218. "type": "git",
  13219. "url": "https://github.com/symfony/stopwatch.git",
  13220. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  13221. },
  13222. "dist": {
  13223. "type": "zip",
  13224. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  13225. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  13226. "shasum": "",
  13227. "mirrors": [
  13228. {
  13229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13230. "preferred": true
  13231. }
  13232. ]
  13233. },
  13234. "require": {
  13235. "php": ">=8.1",
  13236. "symfony/service-contracts": "^2.5|^3"
  13237. },
  13238. "type": "library",
  13239. "autoload": {
  13240. "psr-4": {
  13241. "Symfony\\Component\\Stopwatch\\": ""
  13242. },
  13243. "exclude-from-classmap": [
  13244. "/Tests/"
  13245. ]
  13246. },
  13247. "notification-url": "https://packagist.org/downloads/",
  13248. "license": [
  13249. "MIT"
  13250. ],
  13251. "authors": [
  13252. {
  13253. "name": "Fabien Potencier",
  13254. "email": "fabien@symfony.com"
  13255. },
  13256. {
  13257. "name": "Symfony Community",
  13258. "homepage": "https://symfony.com/contributors"
  13259. }
  13260. ],
  13261. "description": "Provides a way to profile code",
  13262. "homepage": "https://symfony.com",
  13263. "support": {
  13264. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  13265. },
  13266. "funding": [
  13267. {
  13268. "url": "https://symfony.com/sponsor",
  13269. "type": "custom"
  13270. },
  13271. {
  13272. "url": "https://github.com/fabpot",
  13273. "type": "github"
  13274. },
  13275. {
  13276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13277. "type": "tidelift"
  13278. }
  13279. ],
  13280. "time": "2025-02-21T10:06:30+00:00"
  13281. },
  13282. {
  13283. "name": "theseer/tokenizer",
  13284. "version": "1.2.3",
  13285. "source": {
  13286. "type": "git",
  13287. "url": "https://github.com/theseer/tokenizer.git",
  13288. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13289. },
  13290. "dist": {
  13291. "type": "zip",
  13292. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13293. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13294. "shasum": "",
  13295. "mirrors": [
  13296. {
  13297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13298. "preferred": true
  13299. }
  13300. ]
  13301. },
  13302. "require": {
  13303. "ext-dom": "*",
  13304. "ext-tokenizer": "*",
  13305. "ext-xmlwriter": "*",
  13306. "php": "^7.2 || ^8.0"
  13307. },
  13308. "type": "library",
  13309. "autoload": {
  13310. "classmap": [
  13311. "src/"
  13312. ]
  13313. },
  13314. "notification-url": "https://packagist.org/downloads/",
  13315. "license": [
  13316. "BSD-3-Clause"
  13317. ],
  13318. "authors": [
  13319. {
  13320. "name": "Arne Blankerts",
  13321. "email": "arne@blankerts.de",
  13322. "role": "Developer"
  13323. }
  13324. ],
  13325. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13326. "support": {
  13327. "issues": "https://github.com/theseer/tokenizer/issues",
  13328. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13329. },
  13330. "funding": [
  13331. {
  13332. "url": "https://github.com/theseer",
  13333. "type": "github"
  13334. }
  13335. ],
  13336. "time": "2024-03-03T12:36:25+00:00"
  13337. },
  13338. {
  13339. "name": "zx/php-tools",
  13340. "version": "v0.0.1",
  13341. "source": {
  13342. "type": "git",
  13343. "url": "https://gitee.com/open-php/php-tools.git",
  13344. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  13345. },
  13346. "require": {
  13347. "php": ">=7.0"
  13348. },
  13349. "type": "library",
  13350. "autoload": {
  13351. "psr-4": {
  13352. "ZX\\": "src/"
  13353. }
  13354. },
  13355. "notification-url": "https://packagist.org/downloads/",
  13356. "license": [
  13357. "mit"
  13358. ],
  13359. "authors": [
  13360. {
  13361. "name": "zx",
  13362. "email": "903464207@qq.com"
  13363. }
  13364. ],
  13365. "description": "php-tools",
  13366. "time": "2023-06-25T06:24:10+00:00"
  13367. }
  13368. ],
  13369. "aliases": [],
  13370. "minimum-stability": "dev",
  13371. "stability-flags": {},
  13372. "prefer-stable": true,
  13373. "prefer-lowest": false,
  13374. "platform": {
  13375. "php": ">=8.1"
  13376. },
  13377. "platform-dev": {},
  13378. "plugin-api-version": "2.6.0"
  13379. }